Skip to content

Commit 4697065

Browse files
committed
Fix guides for 8.0
Which dropped support for Ruby 3.1
1 parent 9d68127 commit 4697065

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

Diff for: README.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
* RVM
66

7+
* `rvm install 3.2.5`
8+
79
* `rvm install 3.1.4`
810

911
* `rvm install 2.7.6`
@@ -20,6 +22,8 @@
2022

2123
* `rvm use 3.1.4 do gem install bundler --no-doc`
2224

25+
* `rvm use 3.2.5 do gem install bundler --no-doc`
26+
2327
* `kindlegen` must be in `PATH` ([download](http://www.amazon.com/gp/feature.html?docId=1000765211)))
2428

2529
* Install imagemagick, for `convert`, used by the guides generator

Diff for: lib/generators/config/main.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module Generators
22
module Config
33
module Main
44
def ruby_version
5-
'3.1.4'
5+
'3.2.5'
66
end
77

88
def api_output

Diff for: lib/generators/config/release.rb

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ def ruby_version
1111
'2.5.3'
1212
elsif version_number < '7.2.0'
1313
'2.7.6'
14-
else
14+
elsif version_number < '8.0'
1515
'3.1.4'
16+
else
17+
'3.2.5'
1618
end
1719
end
1820

0 commit comments

Comments
 (0)