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

Changeset 628

Show
Ignore:
Timestamp:
02/15/05 16:35:07 (4 years ago)
Author:
david
Message:

Require the Active Support gem

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/activesupport/Rakefile

    r624 r628  
    55PKG_BUILD     = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 
    66PKG_NAME      = 'activesupport' 
    7 PKG_VERSION   = '1.0.0' + PKG_BUILD 
     7PKG_VERSION   = '0.9.0' + PKG_BUILD 
    88PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" 
    99 
     
    1919  s.name = PKG_NAME 
    2020  s.version = PKG_VERSION 
    21   s.summary = "Support and utility classes." 
    22   s.description = %q{Utility library which carries commonly used classes and goodies from the rails project
     21  s.summary = "Support and utility classes used by the Rails framework." 
     22  s.description = %q{Utility library which carries commonly used classes and goodies from the Rails framework
    2323 
    2424  s.files = [ "CHANGELOG" ] + Dir.glob( "lib/**/*" ).delete_if { |item| item.include?( "\.svn" ) } 
  • trunk/railties/Rakefile

    r624 r628  
    243243 
    244244  s.add_dependency('rake', '>= 0.4.15') 
     245  s.add_dependency('activesupport', '>= 0.9.0') 
    245246  s.add_dependency('activerecord', '>= 1.6.0') 
    246247  s.add_dependency('actionpack', '>= 1.4.0')