-
Notifications
You must be signed in to change notification settings - Fork 1
/
braintree_transaction_gateway.gemspec
30 lines (26 loc) · 1.2 KB
/
braintree_transaction_gateway.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'braintree_transaction_gateway/version'
Gem::Specification.new do |spec|
spec.name = "braintree_transaction_gateway"
spec.version = BraintreeTransactionGateway::VERSION
spec.authors = ["Tim Cooper", "Jonathon M. Abbott"]
spec.email = ["coop@latrobest.com", "jma@dandaraga.net"]
spec.summary = %q{Braintree Transaction API Gateway}
spec.homepage = "https://github.com/everydayhero/braintree_transaction_gateway"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.5"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
spec.add_development_dependency "webmock"
spec.add_development_dependency "vcr"
spec.add_runtime_dependency "braintree", "~> 2.101.0"
spec.add_runtime_dependency "activesupport", ">= 4.0.0"
spec.add_runtime_dependency "i18n"
spec.add_runtime_dependency "money"
spec.add_runtime_dependency "monetize"
end