Rakefile in activemerchant-1.3.2 vs Rakefile in activemerchant-1.4.0
- old
+ new
@@ -6,11 +6,11 @@
require 'rake/contrib/rubyforgepublisher'
require File.dirname(__FILE__) + '/lib/tasks/cia'
require File.dirname(__FILE__) + '/lib/support/gateway_support'
-PKG_VERSION = "1.3.2"
+PKG_VERSION = "1.4.0"
PKG_NAME = "activemerchant"
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
PKG_FILES = FileList[
"lib/**/*", "test/**/*", "script/**/*", "[a-zA-Z]*"
@@ -78,12 +78,12 @@
s.summary = "Framework and tools for dealing with credit card transactions."
s.has_rdoc = true
s.files = PKG_FILES
+ s.rubyforge_project = "activemerchant"
s.require_path = 'lib'
- s.autorequire = 'active_merchant'
s.author = "Tobias Luetke"
s.email = "tobi@leetsoft.com"
s.homepage = "http://activemerchant.org/"
s.add_dependency('activesupport', '>= 1.4.1')
@@ -113,10 +113,11 @@
require 'rubyforge'
packages = %w( gem tgz zip ).collect{ |ext| "pkg/#{PKG_NAME}-#{PKG_VERSION}.#{ext}" }
rubyforge = RubyForge.new
+ rubyforge.configure
rubyforge.login
rubyforge.add_release(PKG_NAME, PKG_NAME, "REL #{PKG_VERSION}", *packages)
end
desc 'Upload RDoc to RubyForge'
@@ -155,6 +156,6 @@
end
end
end
-
\ No newline at end of file
+