aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2010-02-04 13:36:57 +0000
committerPratik Naik <pratiknaik@gmail.com>2010-02-04 13:36:57 +0000
commit66f501e9a242849abdc248fdb452bf3aaae3af2f (patch)
tree9e2e4640865a68e1ad4ef114476fc65a932617b1 /railties
parent8260f0b40f8954f1822a0f856f7c0706afbba0bd (diff)
downloadrails-66f501e9a242849abdc248fdb452bf3aaae3af2f.tar.gz
rails-66f501e9a242849abdc248fdb452bf3aaae3af2f.tar.bz2
rails-66f501e9a242849abdc248fdb452bf3aaae3af2f.zip
Add rails --dev to release notes
Diffstat (limited to 'railties')
-rw-r--r--railties/guides/source/3_0_release_notes.textile13
1 files changed, 5 insertions, 8 deletions
diff --git a/railties/guides/source/3_0_release_notes.textile b/railties/guides/source/3_0_release_notes.textile
index 8f072df1e8..48ff85f71a 100644
--- a/railties/guides/source/3_0_release_notes.textile
+++ b/railties/guides/source/3_0_release_notes.textile
@@ -65,7 +65,6 @@ Aside from Rails Upgrade tool, if you need more help, there are people on IRC an
More information - "The Path to Rails 3: Approaching the upgrade":http://omgbloglol.com/post/353978923/the-path-to-rails-3-approaching-the-upgrade
-
h3. Creating a Rails 3.0 application
The new installing rails sequence (for the beta) is:
@@ -82,32 +81,30 @@ Rails now uses a +Gemfile+ in the application root to determine the gems you req
More information: - "bundler README on Github":http://github.com/carlhuda/bundler
-
h4. Living on the Edge
+Bundler+ and +Gemfile+ makes freezing your Rails application easy as pie with the new dedicated <tt>bundle</tt> command, so <tt>rake freeze</tt> is no longer relevant and has been dropped.
-If you want to bundle straight from the Git repository, you can pass the edge flag:
+If you want to bundle straight from the Git repository, you can pass the +--edge+ flag:
<shell>
$ rails myapp --edge
</shell>
-More information:
-* "Spinning up a new Rails app":http://yehudakatz.com/2009/12/31/spinning-up-a-new-rails-app/
-* "Rails 3 and Passenger":http://cakebaker.42dh.com/2010/01/17/rails-3-and-passenger/
+If you have a local checkout of the Rails repository and want to generate an application using that, you can pass the +--dev+ flag:
+<shell>
+$ ruby /path/to/rails/railties/bin/rails myapp --dev
+</shell>
h3. Rails Architectural Changes
There are six major changes in the architecture of Rails.
-
h4. Railties Restrung
Railties was updated to provide a consistent plugin API for the entire Rails framework as well as a total rewrite of generators and the Rails bindings, the result is that developers can now hook into any significant stage of the generators and application framework in a consistent, defined manner.
-
h4. All Rails core components are decoupled
With the merge of Merb and Rails, one of the big jobs was to remove the tight coupling between Rails core components. This has now been achieved, and all Rails core components are now using the same API that you can use for developing plugins. This means any plugin you make, or any core component replacement (like DataMapper or Sequel) can access all the functionality that the Rails core components have access to and extend and enhance at will.