From c2ce69860a01205a68dce1d642a02da5595094b6 Mon Sep 17 00:00:00 2001 From: Rick Olson Date: Sun, 30 Mar 2008 18:22:31 +0000 Subject: [PATCH] whoops, typo in the CHANGELOG git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9148 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- railties/CHANGELOG | 6 +++--- railties/lib/initializer.rb | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/railties/CHANGELOG b/railties/CHANGELOG index 97bb718e37..7076d58118 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -18,9 +18,9 @@ * Added config.gem for specifying which gems are required by the application, as well as rake tasks for installing and freezing gems. [rick] Rails::Initializer.run do |config| - config.gems "bj" - config.gems "hpricot", :version => '0.6', :source => "http://code.whytheluckystiff.net" - config.gems "aws-s3", :lib => "aws/s3" + config.gem "bj" + config.gem "hpricot", :version => '0.6', :source => "http://code.whytheluckystiff.net" + config.gem "aws-s3", :lib => "aws/s3" end # List required gems. diff --git a/railties/lib/initializer.rb b/railties/lib/initializer.rb index ec3e1d79d6..20e1f01926 100644 --- a/railties/lib/initializer.rb +++ b/railties/lib/initializer.rb @@ -522,7 +522,7 @@ def plugins=(plugins) # # rake gems:install # - # You can add with the #gem method. + # You can add gems with the #gem method. attr_accessor :gems # Adds a single Gem dependency to the rails application. -- GitLab