Skip to content

Commit cbabbc5

Browse files
committed
Move 'gem install bundler' and 'bundle install' into separate boxes
...so that people are less likely to paste the whole blob into their terminal and potentially get a bad result Fixes railsbridge#600
1 parent ee55c62 commit cbabbc5

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

sites/en/installfest/deploy_a_rails_app.step

+8-4
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,14 @@ step "Deploy your app to Heroku" do
8585
message "SQLite and PostgreSQL are different kinds of databases. We're using SQLite for our development and test environments because it's simple to install. We're using PostgreSQL in our production environment because Heroku has done the hard work of installing it for us and it's more powerful than SQLite. We have separate test, development and production databases by default in Rails."
8686
end
8787

88-
console <<-BASH
89-
gem install bundler
90-
bundle install --without production
91-
BASH
88+
console "gem install bundler"
89+
90+
fuzzy_result <<-OUTPUT
91+
Successfully installed bundler-{FUZZY}1.14.3{/FUZZY}
92+
1 gem installed
93+
OUTPUT
94+
95+
console "bundle install --without production"
9296

9397
message "Again, wait for the console prompt, and look for the 'Bundle complete!' message just above."
9498
end

0 commit comments

Comments
 (0)