diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2012-12-08 23:02:18 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2012-12-08 23:02:52 +0530 |
commit | 4085dd60108a95da22854ee4ecb683578a9a3e7d (patch) | |
tree | 261ac40bdf2cac65f4138e4e0f5d4e752c664e4e /guides/source | |
parent | aa1b9037bf609d11ed0a2a4d5f2028c66ffc2351 (diff) | |
download | rails-4085dd60108a95da22854ee4ecb683578a9a3e7d.tar.gz rails-4085dd60108a95da22854ee4ecb683578a9a3e7d.tar.bz2 rails-4085dd60108a95da22854ee4ecb683578a9a3e7d.zip |
Revert "Introduce Bundler and Gemfiles in a NOTE"
This reverts commit 83cb6fbd13f3c5ea3106b9a57964b1a6fb243682.
Reason: very trivial
[ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/getting_started.md | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index 37760e4393..54200768e6 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -115,8 +115,6 @@ $ rails new blog This will create a Rails application called Blog in a directory called blog and install the gem dependencies that are already mentioned in `Gemfile` using `bundle install`. -NOTE: A Gemfile is a file that contains the list of all the gems that you require to run your application - the so called dependencies. With it, a program called Bundler can make sure that your machine has all of the requirements installed. This is the de facto way in Ruby to make sure that a machine is set up correctly to run a given program and Rails takes advantage of it to install some commonly-used gems. For more information, visit [Bundler's homepage](http://gembundler.com/). - TIP: You can see all of the command line options that the Rails application builder accepts by running `rails new -h`. |