diff options
author | Nicholas E. May (on Enterprise) <may@greentext.net> | 2010-10-02 22:43:45 -0500 |
---|---|---|
committer | Nicholas E. May (on Enterprise) <may@greentext.net> | 2010-10-02 22:43:45 -0500 |
commit | ab7b99f150ade08c079fc3425e23a297ea0a3e41 (patch) | |
tree | 2efe6ea057f0fba2aaf32ec30d246b6040ff5b9d /railties/guides | |
parent | ffe24354cc55a59ae5efafd69d51dd8e2c5f00fe (diff) | |
download | rails-ab7b99f150ade08c079fc3425e23a297ea0a3e41.tar.gz rails-ab7b99f150ade08c079fc3425e23a297ea0a3e41.tar.bz2 rails-ab7b99f150ade08c079fc3425e23a297ea0a3e41.zip |
Section 3.3: '# bundle install' instead of just 'bundle install'
Diffstat (limited to 'railties/guides')
-rw-r--r-- | railties/guides/source/getting_started.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index 41563a5704..ed2a4188db 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -195,7 +195,7 @@ h4. Installing the Required Gems Rails applications manage gem dependencies with "Bundler":http://gembundler.com/v1.0/index.html by default. As we don't need any other gems beyond the ones in the generated +Gemfile+ we can directly run <shell> -bundle install +# bundle install </shell> to have them ready. |