paypal-sdk-rest 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,24 @@
1
+ require 'bundler/setup'
2
+
3
+ if ENV['COVERAGE']
4
+ require 'simplecov'
5
+ SimpleCov.start do
6
+ add_filter "/spec/"
7
+ end
8
+ end
9
+
10
+ Bundler.require :default, :test
11
+ PayPal::SDK::Core::Config.load(File.expand_path('../config/paypal.yml', __FILE__), 'test')
12
+
13
+ require 'paypal-sdk-rest'
14
+
15
+ include PayPal::SDK::REST
16
+ include PayPal::SDK::Core::Logging
17
+
18
+ # Set logger for http
19
+ http_log = File.open(File.expand_path('../log/http.log', __FILE__), "w")
20
+ Payment.api.http.set_debug_output(http_log)
21
+
22
+ RSpec.configure do |config|
23
+ # config.include PayPal::SDK::REST::DataTypes
24
+ end
metadata ADDED
@@ -0,0 +1,98 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: paypal-sdk-rest
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.5.0
5
+ platform: ruby
6
+ authors:
7
+ - PayPal
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-03-08 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: paypal-sdk-core
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: 0.2.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 0.2.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: uuidtools
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '2.1'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '2.1'
41
+ description: The PayPal Adaptive REST SDK provides Ruby APIs to create, process and
42
+ manage simple and complex (parallel and chained) rest, and pre-approvals using the
43
+ Adaptive REST API.
44
+ email:
45
+ - DL-PP-Platform-Ruby-SDK@ebay.com
46
+ executables: []
47
+ extensions: []
48
+ extra_rdoc_files: []
49
+ files:
50
+ - spec/log/http.log
51
+ - spec/payments_examples_spec.rb
52
+ - spec/spec_helper.rb
53
+ - spec/config/cacert.pem
54
+ - spec/config/paypal.yml
55
+ - spec/config/cert_key.pem
56
+ - lib/paypal-sdk-rest.rb
57
+ - lib/paypal.rb
58
+ - lib/paypal-sdk/rest.rb
59
+ - lib/paypal-sdk/rest/error_hash.rb
60
+ - lib/paypal-sdk/rest/get_api.rb
61
+ - lib/paypal-sdk/rest/api.rb
62
+ - lib/paypal-sdk/rest/version.rb
63
+ - lib/paypal-sdk/rest/set_api.rb
64
+ - lib/paypal-sdk/rest/request_data_type.rb
65
+ - lib/paypal-sdk/rest/data_types.rb
66
+ - Rakefile
67
+ - README.md
68
+ - Gemfile
69
+ homepage: https://www.x.com/
70
+ licenses: []
71
+ metadata: {}
72
+ post_install_message:
73
+ rdoc_options: []
74
+ require_paths:
75
+ - lib
76
+ required_ruby_version: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - - ! '>='
79
+ - !ruby/object:Gem::Version
80
+ version: '0'
81
+ required_rubygems_version: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ requirements: []
87
+ rubyforge_project:
88
+ rubygems_version: 2.0.0
89
+ signing_key:
90
+ specification_version: 4
91
+ summary: PayPal Adaptive REST SDK
92
+ test_files:
93
+ - spec/log/http.log
94
+ - spec/payments_examples_spec.rb
95
+ - spec/spec_helper.rb
96
+ - spec/config/cacert.pem
97
+ - spec/config/paypal.yml
98
+ - spec/config/cert_key.pem