diff options
Diffstat (limited to 'actionwebservice/Rakefile')
-rw-r--r-- | actionwebservice/Rakefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/actionwebservice/Rakefile b/actionwebservice/Rakefile index 71f7290988..f713636047 100644 --- a/actionwebservice/Rakefile +++ b/actionwebservice/Rakefile @@ -9,7 +9,7 @@ require 'fileutils' PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' PKG_NAME = 'actionwebservice' -PKG_VERSION = '0.5.0' + PKG_BUILD +PKG_VERSION = '0.6.0' + PKG_BUILD PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}" @@ -56,9 +56,9 @@ spec = Gem::Specification.new do |s| s.rubyforge_project = "aws" s.homepage = "http://www.rubyonrails.org" - s.add_dependency('actionpack', '>= 1.5.0' + PKG_BUILD) - s.add_dependency('activerecord', '>= 1.7.0' + PKG_BUILD) - s.add_dependency('activesupport', '>= 1.0.0' + PKG_BUILD) + s.add_dependency('actionpack', '>= 1.5.1' + PKG_BUILD) + s.add_dependency('activerecord', '>= 1.8.0' + PKG_BUILD) + s.add_dependency('activesupport', '>= 1.0.1' + PKG_BUILD) s.has_rdoc = true s.requirements << 'none' |