diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-02-15 16:35:07 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-02-15 16:35:07 +0000 |
commit | 787aa28d618e54e90ec57bf764d1b625afc90a5c (patch) | |
tree | 66c5c5b8c367cc598d41f35774ee6bb442d39ba1 /activesupport | |
parent | dcfd6aa3bd91c93adf6ed47453a084327f018000 (diff) | |
download | rails-787aa28d618e54e90ec57bf764d1b625afc90a5c.tar.gz rails-787aa28d618e54e90ec57bf764d1b625afc90a5c.tar.bz2 rails-787aa28d618e54e90ec57bf764d1b625afc90a5c.zip |
Require the Active Support gem
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@628 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/Rakefile | 6 |
1 files changed, 3 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' |