diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-02-24 13:06:17 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-02-24 13:06:17 +0000 |
commit | d9168fd20649bfaf9e44aa050bd23f9052c8e84a (patch) | |
tree | cbccded75de41a89e7439fb56505b224e60f4e44 /actionmailer | |
parent | 2a947f185a23e427db332d0ae51d1efe2b8c5fb6 (diff) | |
download | rails-d9168fd20649bfaf9e44aa050bd23f9052c8e84a.tar.gz rails-d9168fd20649bfaf9e44aa050bd23f9052c8e84a.tar.bz2 rails-d9168fd20649bfaf9e44aa050bd23f9052c8e84a.zip |
Made ready for 0.10.0 release
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@795 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionmailer')
-rwxr-xr-x | actionmailer/Rakefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actionmailer/Rakefile b/actionmailer/Rakefile index 811f8b4523..f1fbafb798 100755 --- a/actionmailer/Rakefile +++ b/actionmailer/Rakefile @@ -8,7 +8,7 @@ require 'rake/contrib/rubyforgepublisher' PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' PKG_NAME = 'actionmailer' -PKG_VERSION = '0.6.1' + PKG_BUILD +PKG_VERSION = '0.7.0' + PKG_BUILD PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" desc "Default Task" @@ -48,9 +48,9 @@ spec = Gem::Specification.new do |s| s.author = "David Heinemeier Hansson" s.email = "david@loudthinking.com" s.rubyforge_project = "actionmailer" - s.homepage = "http://actionmailer.rubyonrails.org" + s.homepage = "http://www.rubyonrails.org" - s.add_dependency('actionpack', '>= 0.9.5') + s.add_dependency('actionpack', '= 1.5.0' + PKG_BUILD) s.has_rdoc = true s.requirements << 'none' |