Skip to content

Commit b7007e7

Browse files
committed
Use Ruby 2.5.0
1 parent 0ba74a5 commit b7007e7

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

.ruby-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.1
1+
2.5.0

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ After modeling your application, which typically takes about an hour, you can
1313
instantly start implementing the meat of your application.
1414

1515
`Katapult` only supports a single Ruby and Rails version, currently it's Rails
16-
5.1.4 and Ruby 2.4.1.
16+
5.1.4 and Ruby 2.5.0.
1717

1818

1919
## Installation

lib/katapult/binary_util.rb

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# require any gems in order to prevent version conflicts
55
require_relative '../katapult/version'
66
require 'bundler'
7+
require 'io/console'
78

89
module Katapult
910
module BinaryUtil

script/update

+5-4
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,16 @@ u.job "update Rails version (current: #{Katapult::RAILS_VERSION})", "#{version_p
5151
end
5252
end
5353

54-
u.job 'update README' do
55-
system 'rake update_readme'
56-
end
57-
5854
u.job 'update installed gems' do
5955
system 'bundle update'
6056
end
6157

58+
u.job 'update README' do
59+
system 'rake update_readme'
60+
end
61+
6262
u.job 'wipe tmp directory' do
63+
puts 'Wiping ...'
6364
FileUtils.rm_rf 'tmp'
6465
end
6566

0 commit comments

Comments
 (0)