Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 9148

Show
Ignore:
Timestamp:
03/30/08 18:22:31 (5 months ago)
Author:
rick
Message:

whoops, typo in the CHANGELOG

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/railties/CHANGELOG

    r9141 r9148  
    1919 
    2020  Rails::Initializer.run do |config| 
    21     config.gems "bj" 
    22     config.gems "hpricot", :version => '0.6', :source => "http://code.whytheluckystiff.net" 
    23     config.gems "aws-s3", :lib => "aws/s3" 
     21    config.gem "bj" 
     22    config.gem "hpricot", :version => '0.6', :source => "http://code.whytheluckystiff.net" 
     23    config.gem "aws-s3", :lib => "aws/s3" 
    2424  end 
    2525   
  • trunk/railties/lib/initializer.rb

    r9141 r9148  
    523523    #   rake gems:install 
    524524    # 
    525     # You can add with the #gem method. 
     525    # You can add gems with the #gem method. 
    526526    attr_accessor :gems 
    527527