aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source
diff options
context:
space:
mode:
authorslainer68 <slainer68@gmail.com>2010-02-04 13:57:32 +0100
committerslainer68 <slainer68@gmail.com>2010-02-04 13:57:32 +0100
commit6241d4e5535190b817e546130cfe179b641da1ba (patch)
tree05c02a1b8b56c10eba9419a9b3960e1fd278c095 /railties/guides/source
parent17ecb1da873a6129dcf5cf6fcf80fb9bbe795c18 (diff)
downloadrails-6241d4e5535190b817e546130cfe179b641da1ba.tar.gz
rails-6241d4e5535190b817e546130cfe179b641da1ba.tar.bz2
rails-6241d4e5535190b817e546130cfe179b641da1ba.zip
Updates bundler information : Yahuda's blog post is now too old...
Diffstat (limited to 'railties/guides/source')
-rw-r--r--railties/guides/source/3_0_release_notes.textile4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/source/3_0_release_notes.textile b/railties/guides/source/3_0_release_notes.textile
index 5e96f8cf06..8f072df1e8 100644
--- a/railties/guides/source/3_0_release_notes.textile
+++ b/railties/guides/source/3_0_release_notes.textile
@@ -80,7 +80,7 @@ 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 processed by the "Bundler":http://github.com/carlhuda/bundler, which then installs all your dependencies. It can even install all the dependencies locally to your application so that it doesn't depend on the system gems.
-More information: - "Using bundler":http://yehudakatz.com/2009/11/03/using-the-new-gem-bundler-today/
+More information: - "bundler README on Github":http://github.com/carlhuda/bundler
h4. Living on the Edge
@@ -478,7 +478,7 @@ A large effort was made in Active Support to make it cherry pickable, that is, y
These are the main changes in Active Support:
* Large clean up of the library removing unused methods throughout.
-* Active Support no longer provides vendored versions of "TZInfo":http://tzinfo.rubyforge.org/, "Memcache Client":http://deveiate.org/projects/RMemCache/ and "Builder":http://builder.rubyforge.org/, these are all included as dependencies and installed via the <tt>gem bundle</tt> command.
+* Active Support no longer provides vendored versions of "TZInfo":http://tzinfo.rubyforge.org/, "Memcache Client":http://deveiate.org/projects/RMemCache/ and "Builder":http://builder.rubyforge.org/, these are all included as dependencies and installed via the <tt>bundle install</tt> command.
* Safe buffers are implemented in <tt>ActiveSupport::SafeBuffer</tt>.
* Added <tt>Array.uniq_by</tt> and <tt>Array.uniq_by!</tt>.
* Fixed bug on +TimeZone.seconds_to_utc_offset+ returning wrong value.