whoops, typo in the CHANGELOG

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9148 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Rick Olson
2008-03-30 18:22:31 +00:00
parent a5b7f131ed
commit c2ce69860a
2 changed files with 4 additions and 4 deletions

View File

@@ -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.

View File

@@ -522,7 +522,7 @@ module Rails
#
# 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.