forked from jordoh/sdk-core-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpaypal-sdk-core.gemspec
More file actions
24 lines (20 loc) · 972 Bytes
/
paypal-sdk-core.gemspec
File metadata and controls
24 lines (20 loc) · 972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'paypal-sdk/core/version'
Gem::Specification.new do |gem|
gem.name = "paypal-sdk-core"
gem.version = PayPal::SDK::Core::VERSION
gem.authors = ["PayPal"]
gem.email = ["DL-PP-Platform-Ruby-SDK@ebay.com"]
gem.description = %q{Core library for PayPal ruby SDKs}
gem.summary = %q{Core library for PayPal ruby SDKs}
gem.homepage = "https://developer.paypal.com"
gem.license = "PayPal SDK License"
gem.files = Dir["{bin,spec,lib,data}/**/*"] + ["Rakefile", "README.md", "Gemfile", "CHANGELOG.txt", "LICENSE.txt"]
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('xml-simple')
gem.add_dependency('multi_json', '~> 1.0')
end