aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/3_0_release_notes.textile
diff options
context:
space:
mode:
authorMikel Lindsaar <raasdnil@gmail.com>2010-02-02 13:29:39 +1100
committerMikel Lindsaar <raasdnil@gmail.com>2010-02-02 13:29:39 +1100
commit49a26c533366eff63acd3c99ed0dffc04f85f55c (patch)
treed5cb6bc734f4e6efcb5294c689086abda586980f /railties/guides/source/3_0_release_notes.textile
parent7ec7328f2af7eb82d4377cfe9fc3f3296feb184d (diff)
downloadrails-49a26c533366eff63acd3c99ed0dffc04f85f55c.tar.gz
rails-49a26c533366eff63acd3c99ed0dffc04f85f55c.tar.bz2
rails-49a26c533366eff63acd3c99ed0dffc04f85f55c.zip
Updating install docs
Diffstat (limited to 'railties/guides/source/3_0_release_notes.textile')
-rw-r--r--railties/guides/source/3_0_release_notes.textile12
1 files changed, 8 insertions, 4 deletions
diff --git a/railties/guides/source/3_0_release_notes.textile b/railties/guides/source/3_0_release_notes.textile
index 690bda0427..d62290166f 100644
--- a/railties/guides/source/3_0_release_notes.textile
+++ b/railties/guides/source/3_0_release_notes.textile
@@ -62,13 +62,17 @@ Rails 3.0 is designed to run on 1.8.7 and also support Ruby 1.9.
There have been a few changes to the +rails+ script that's used to generate Rails applications:
* The application name, <tt>rails my_app</tt>, can now optionally be a path instead <tt>rails ~/code/my_app</tt>, your rails application will be name spaced under the application name you pass the +rails+ command.
-* Additionally, any flags you need to generate the application now need to come after the application path, for example:
+* Additionally, any flags you need to generate the application now need to come after the application path.
+
+The new installing rails sequence (for the beta) is:
<shell>
-$ rails myapp --database=mysql
+$ gem install rails --prerelease
+$ rails myapp
+$ cd myapp
+$ bundle install
</shell>
-
h4. Vendoring Gems
Rails now uses a +Gemfile+ in the application root to determine the gems you require for your application to start. This +Gemfile+ is then read and acted on by the new "Bundler":http://github.com/wycats/bundler gem, which then vendors all your gems into the vendor directory, making your Rails application isolated from system gems.
@@ -78,7 +82,7 @@ More information: - "Using bundler":http://yehudakatz.com/2009/11/03/using-the-n
h4. Living on the Edge
-Due to the use of +Gemfile+, the concept of freezing Rails was dropped, because it's always bundled/frozen inside your application. By default, it uses your system gems when bundling; however, if you want to bundle straight from the Git repository, you can pass the edge flag:
+Due to the use of +Gemfile+, your Rails app is "frozen" by default, that is, all the gems you depend on are kept in your vendor directory, these gems are copied from your system gems by default or from gemcutter. If you want to bundle straight from the Git repository, you can pass the edge flag:
<shell>
$ rails myapp --edge