aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--activesupport/Rakefile6
-rw-r--r--railties/Rakefile1
2 files changed, 4 insertions, 3 deletions
diff --git a/activesupport/Rakefile b/activesupport/Rakefile
index 39d20dcbee..3abf82daaf 100644
--- a/activesupport/Rakefile
+++ b/activesupport/Rakefile
@@ -4,7 +4,7 @@ require 'rake/contrib/rubyforgepublisher'
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME = 'activesupport'
-PKG_VERSION = '1.0.0' + PKG_BUILD
+PKG_VERSION = '0.9.0' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
task :default => :test
@@ -18,8 +18,8 @@ dist_dirs = [ "lib", "test"]
spec = Gem::Specification.new do |s|
s.name = PKG_NAME
s.version = PKG_VERSION
- s.summary = "Support and utility classes."
- s.description = %q{Utility library which carries commonly used classes and goodies from the rails project}
+ s.summary = "Support and utility classes used by the Rails framework."
+ s.description = %q{Utility library which carries commonly used classes and goodies from the Rails framework}
s.files = [ "CHANGELOG" ] + Dir.glob( "lib/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
s.require_path = 'lib'
diff --git a/railties/Rakefile b/railties/Rakefile
index 53880a4f6e..d8e94ced79 100644
--- a/railties/Rakefile
+++ b/railties/Rakefile
@@ -242,6 +242,7 @@ spec = Gem::Specification.new do |s|
EOF
s.add_dependency('rake', '>= 0.4.15')
+ s.add_dependency('activesupport', '>= 0.9.0')
s.add_dependency('activerecord', '>= 1.6.0')
s.add_dependency('actionpack', '>= 1.4.0')
s.add_dependency('actionmailer', '>= 0.6.1')