Skip to content

Commit 5550402

Browse files
committed
Add minor tweaks
1 parent c1f65c4 commit 5550402

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/setup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ In the future we'd like to provide it fully packaged inside a Docker container,
1414

1515
Shipit provides you with a Rails template. To bootstrap your Shipit installation:
1616

17-
1. If you don't have Rails installed, run this command: `gem install rails -v 7.1.1`
18-
2. Run this command: `rails _7.0_ new shipit --skip-action-cable --skip-turbolinks --skip-action-mailer --skip-active-storage --skip-webpack-install --skip-action-mailbox --skip-action-text -m https://raw.githubusercontent.com/Shopify/shipit-engine/main/template.rb`
17+
1. If you don't have Rails installed, run this command: `gem install rails -v 7.1`
18+
2. Run this command: `rails _7.1_ new shipit --skip-action-cable --skip-turbolinks --skip-action-mailer --skip-active-storage --skip-webpack-install --skip-action-mailbox --skip-action-text -m https://raw.githubusercontent.com/Shopify/shipit-engine/main/template.rb`
1919

2020
## Creating the GitHub App
2121

template.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.7')
44
raise Thor::Error, "You need at least Ruby 2.7 to install shipit"
55
end
6-
if Gem::Version.new(Rails::VERSION::STRING) < Gem::Version.new('7.1.1')
7-
raise Thor::Error, "You need Rails 7.1.1 to install shipit"
6+
if Gem::Version.new(Rails::VERSION::STRING) < Gem::Version.new('7.1')
7+
raise Thor::Error, "You need Rails 7.1 to install shipit"
88
end
99

1010
route %(mount Shipit::Engine, at: '/')

0 commit comments

Comments
 (0)