forked from activemerchant/active_merchant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
activemerchant.gemspec
35 lines (29 loc) · 1.57 KB
/
activemerchant.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
$:.push File.expand_path("../lib", __FILE__)
require 'active_merchant/version'
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'activemerchant'
s.version = ActiveMerchant::VERSION
s.summary = 'Framework and tools for dealing with credit card transactions.'
s.description = 'Active Merchant is a simple payment abstraction library used in and sponsored by Shopify. It is written by Tobias Luetke, Cody Fauser, and contributors. The aim of the project is to feel natural to Ruby users and to abstract as many parts as possible away from the user to offer a consistent interface across all supported gateways.'
s.author = 'Tobias Luetke'
s.email = '[email protected]'
s.homepage = 'http://activemerchant.org/'
s.rubyforge_project = 'activemerchant'
s.files = Dir['CHANGELOG', 'README.md', 'MIT-LICENSE', 'CONTRIBUTORS', 'gem-public_cert.pem', 'lib/**/*', 'vendor/**/*']
s.require_path = 'lib'
s.has_rdoc = true if Gem::VERSION < '1.7.0'
s.add_dependency('activesupport', '>= 2.3.14', '< 5.0.0')
s.add_dependency('i18n', '~> 0.5')
s.add_dependency('money', '< 6.0.0')
s.add_dependency('builder', '>= 2.1.2', '< 4.0.0')
s.add_dependency('json', '~> 1.7')
s.add_dependency('active_utils', '~> 2.0', '>= 2.0.1')
s.add_dependency('nokogiri', "~> 1.4")
s.add_development_dependency('rake')
s.add_development_dependency('mocha', '~> 0.13.0')
s.add_development_dependency('rails', '>= 2.3.14')
s.add_development_dependency('thor')
s.signing_key = ENV['GEM_PRIVATE_KEY']
s.cert_chain = ['gem-public_cert.pem']
end