-
Notifications
You must be signed in to change notification settings - Fork 24
/
paypal-payouts-sdk.gemspec
27 lines (23 loc) · 1.09 KB
/
paypal-payouts-sdk.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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'core/version'
Gem::Specification.new do |spec|
spec.name = 'paypal-payouts-sdk'
spec.version = PayPal::VERSION
spec.summary = "This repository contains PayPal's Ruby SDK for Payouts REST API"
spec.description = "This repository contains PayPal's Ruby SDK for Payouts REST API"
spec.authors = ["http://developer.paypal.com"]
spec.email = 'dl-paypal-payouts-sdk@paypal.com'
spec.homepage = 'https://github.com/paypal/Payouts-Ruby-SDK'
spec.license = 'https://github.com/paypal/Payouts-Ruby-SDK/blob/master/LICENSE'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_dependency 'paypalhttp', '~> 1.0.0'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'webmock'
end