ebay-trader 0.9.5 → 0.9.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ebay_trader.gemspec +2 -2
- data/lib/ebay_trader/request.rb +1 -1
- data/lib/ebay_trader/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 70e25a96ef06e497856a1c836ccffc8ead623367
|
|
4
|
+
data.tar.gz: 5c2cd26fd539784fe7badcc3f603a31f61b9cbde
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3aa718e7ae703eedf45a7c3445d5d0e16fdc5cf5ac4cfe4ba96b1263f506b59c842f202452cf025ae1e980b516f004aabd725dd48fffb6f68681194aab93c5da
|
|
7
|
+
data.tar.gz: 750e235ff6f982b7d5359c059db419c180b36ee8a03bd5099c41f09ce18c466c4c28310cbb19f2d0d3906cde4781bd81eabc8b6362b176c444460a18edea7e5d
|
data/ebay_trader.gemspec
CHANGED
|
@@ -9,9 +9,9 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ['Rob Graham']
|
|
10
10
|
spec.email = ['rob@altabyte.com']
|
|
11
11
|
|
|
12
|
-
spec.summary = %q{A
|
|
12
|
+
spec.summary = %q{A lightweight easy to use Ruby gem for interacting with eBay's Trading API.}
|
|
13
13
|
spec.description = <<-DESC
|
|
14
|
-
|
|
14
|
+
A lightweight easy to use Ruby gem for interacting with eBay's Trading API.
|
|
15
15
|
Using its simple DSL you can quickly and intuitively post XML requests to eBay and rapidly interpret the responses.
|
|
16
16
|
DESC
|
|
17
17
|
spec.homepage = 'https://github.com/altabyte/ebay_trader'
|
data/lib/ebay_trader/request.rb
CHANGED
|
@@ -101,7 +101,7 @@ module EbayTrader
|
|
|
101
101
|
time = Time.now
|
|
102
102
|
@call_name = call_name.freeze
|
|
103
103
|
|
|
104
|
-
auth_token = %w"GetSessionID FetchToken
|
|
104
|
+
auth_token = %w"GetSessionID FetchToken".include?(call_name) ?
|
|
105
105
|
nil : (args[:auth_token] || EbayTrader.configuration.auth_token)
|
|
106
106
|
@auth_token = auth_token.freeze
|
|
107
107
|
|
data/lib/ebay_trader/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ebay-trader
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rob Graham
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-09-
|
|
11
|
+
date: 2015-09-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -81,7 +81,7 @@ dependencies:
|
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '2.2'
|
|
83
83
|
description: |2
|
|
84
|
-
|
|
84
|
+
A lightweight easy to use Ruby gem for interacting with eBay's Trading API.
|
|
85
85
|
Using its simple DSL you can quickly and intuitively post XML requests to eBay and rapidly interpret the responses.
|
|
86
86
|
email:
|
|
87
87
|
- rob@altabyte.com
|
|
@@ -133,6 +133,6 @@ rubyforge_project:
|
|
|
133
133
|
rubygems_version: 2.4.6
|
|
134
134
|
signing_key:
|
|
135
135
|
specification_version: 4
|
|
136
|
-
summary: A
|
|
136
|
+
summary: A lightweight easy to use Ruby gem for interacting with eBay's Trading API.
|
|
137
137
|
test_files: []
|
|
138
138
|
has_rdoc:
|