Changeset 628
- Timestamp:
- 02/15/05 16:35:07 (4 years ago)
- Files:
-
- trunk/activesupport/Rakefile (modified) (2 diffs)
- trunk/railties/Rakefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/activesupport/Rakefile
r624 r628 5 5 PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 6 6 PKG_NAME = 'activesupport' 7 PKG_VERSION = ' 1.0.0' + PKG_BUILD7 PKG_VERSION = '0.9.0' + PKG_BUILD 8 8 PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" 9 9 … … 19 19 s.name = PKG_NAME 20 20 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} 23 23 24 24 s.files = [ "CHANGELOG" ] + Dir.glob( "lib/**/*" ).delete_if { |item| item.include?( "\.svn" ) } trunk/railties/Rakefile
r624 r628 243 243 244 244 s.add_dependency('rake', '>= 0.4.15') 245 s.add_dependency('activesupport', '>= 0.9.0') 245 246 s.add_dependency('activerecord', '>= 1.6.0') 246 247 s.add_dependency('actionpack', '>= 1.4.0')