forked from dmitry-matveyev/rest-api-sdk-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaypal-sdk-rest.gemspec
22 lines (19 loc) · 986 Bytes
/
paypal-sdk-rest.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'paypal-sdk/rest/version'
Gem::Specification.new do |gem|
gem.name = "paypal-sdk-rest"
gem.version = PayPal::SDK::REST::VERSION
gem.authors = ["PayPal"]
gem.email = ["[email protected]"]
gem.summary = %q{The PayPal REST SDK provides Ruby APIs to create, process and manage payment.}
gem.description = %q{The PayPal REST SDK provides Ruby APIs to create, process and manage payment.}
gem.homepage = "https://developer.paypal.com"
gem.files = Dir["{bin,spec,lib}/**/*"] + ["Rakefile", "README.md", "Gemfile"]
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency('paypal-sdk-core', '~> 0.3.1')
gem.add_dependency('uuidtools', '~> 2.1')
end