diff options
author | Sebastian Martinez <sebastian@wyeworks.com> | 2011-05-25 20:13:49 -0300 |
---|---|---|
committer | Sebastian Martinez <sebastian@wyeworks.com> | 2011-05-25 20:13:49 -0300 |
commit | ab3c87a2d2a907e6e1e44e22def4ff2cc89f46ba (patch) | |
tree | affed67b74374f9a4fba0f07459a3beebd0ed39c /railties/guides/source/initialization.textile | |
parent | 4c566940a42bbcff5c202460319b872a44c35140 (diff) | |
download | rails-ab3c87a2d2a907e6e1e44e22def4ff2cc89f46ba.tar.gz rails-ab3c87a2d2a907e6e1e44e22def4ff2cc89f46ba.tar.bz2 rails-ab3c87a2d2a907e6e1e44e22def4ff2cc89f46ba.zip |
Revert this, commited by mistake.
Diffstat (limited to 'railties/guides/source/initialization.textile')
-rw-r--r-- | railties/guides/source/initialization.textile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/railties/guides/source/initialization.textile b/railties/guides/source/initialization.textile index e4da77eee1..638830cd83 100644 --- a/railties/guides/source/initialization.textile +++ b/railties/guides/source/initialization.textile @@ -155,13 +155,13 @@ h4. +config/boot.rb+ In a standard Rails application, there's a +Gemfile+ which declares all dependencies of the application. +config/boot.rb+ sets +ENV["BUNDLE_GEMFILE"]+ to the location of this file, then requires Bundler and calls +Bundler.setup+ which adds the dependencies of the application (including all the Rails parts) to the load path, making them available for the application to load. The gems that a Rails 3.1 application depends on are as follows: * abstract (1.0.0) -* actionmailer (3.1.0.rc1) -* actionpack (3.1.0.rc1) -* activemodel (3.1.0.rc1) -* activerecord (3.1.0.rc1) -* activeresource (3.1.0.rc1) -* activesupport (3.1.0.rc1) -* arel (2.1.0) +* actionmailer (3.1.0.beta) +* actionpack (3.1.0.beta) +* activemodel (3.1.0.beta) +* activerecord (3.1.0.beta) +* activeresource (3.1.0.beta) +* activesupport (3.1.0.beta) +* arel (2.0.7) * builder (3.0.0) * bundler (1.0.6) * erubis (2.6.6) |