Skip to content

Commit 4ea6529

Browse files
author
Burkhard Vogel-Kreykenbohm
committed
update version and ebay api
Signed-off-by: Burkhard Vogel-Kreykenbohm <[email protected]>
1 parent 56990eb commit 4ea6529

File tree

6 files changed

+137632
-139994
lines changed

6 files changed

+137632
-139994
lines changed

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ruby-2.3.1
1+
ruby-2.3.3

Gemfile.lock

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -8,42 +8,41 @@ PATH
88
GEM
99
remote: https://rubygems.org/
1010
specs:
11-
activesupport (4.2.7.1)
11+
activesupport (4.2.8)
1212
i18n (~> 0.7)
13-
json (~> 1.7, >= 1.7.7)
1413
minitest (~> 5.1)
1514
thread_safe (~> 0.3, >= 0.3.4)
1615
tzinfo (~> 1.1)
17-
addressable (2.4.0)
16+
addressable (2.5.0)
17+
public_suffix (~> 2.0, >= 2.0.2)
1818
akami (1.3.1)
1919
gyoku (>= 0.4.0)
2020
nokogiri
21-
builder (3.2.2)
21+
builder (3.2.3)
2222
crack (0.4.3)
2323
safe_yaml (~> 1.0.0)
24-
diff-lcs (1.2.5)
24+
diff-lcs (1.3)
2525
docile (1.1.5)
2626
gyoku (1.3.1)
2727
builder (>= 2.1.2)
28-
hashdiff (0.3.0)
28+
hashdiff (0.3.2)
2929
httpi (2.4.2)
3030
rack
3131
socksify
32-
i18n (0.7.0)
33-
json (1.8.3)
32+
i18n (0.8.1)
33+
json (2.0.3)
3434
mini_portile2 (2.1.0)
35-
minitest (5.9.1)
36-
nokogiri (1.6.8)
35+
minitest (5.10.1)
36+
nokogiri (1.7.1)
3737
mini_portile2 (~> 2.1.0)
38-
pkg-config (~> 1.1.7)
3938
nori (2.6.0)
40-
pkg-config (1.1.7)
39+
public_suffix (2.0.5)
4140
rack (2.0.1)
4241
rspec (3.5.0)
4342
rspec-core (~> 3.5.0)
4443
rspec-expectations (~> 3.5.0)
4544
rspec-mocks (~> 3.5.0)
46-
rspec-core (3.5.3)
45+
rspec-core (3.5.4)
4746
rspec-support (~> 3.5.0)
4847
rspec-expectations (3.5.0)
4948
diff-lcs (>= 1.2.0, < 2.0)
@@ -61,19 +60,19 @@ GEM
6160
nokogiri (>= 1.4.0)
6261
nori (~> 2.4)
6362
wasabi (~> 3.4)
64-
simplecov (0.12.0)
63+
simplecov (0.14.1)
6564
docile (~> 1.1.0)
6665
json (>= 1.8, < 3)
6766
simplecov-html (~> 0.10.0)
6867
simplecov-html (0.10.0)
69-
socksify (1.7.0)
70-
thread_safe (0.3.5)
68+
socksify (1.7.1)
69+
thread_safe (0.3.6)
7170
tzinfo (1.2.2)
7271
thread_safe (~> 0.1)
7372
wasabi (3.5.0)
7473
httpi (~> 2.0)
7574
nokogiri (>= 1.4.2)
76-
webmock (2.1.0)
75+
webmock (2.3.2)
7776
addressable (>= 2.3.6)
7877
crack (>= 0.3.2)
7978
hashdiff
@@ -89,4 +88,4 @@ DEPENDENCIES
8988
webmock (~> 2.0)
9089

9190
BUNDLED WITH
92-
1.12.5
91+
1.14.6

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Installation
1010

1111
`Gemfile`:
1212

13-
gem 'ebay_client', '~> 0.2.0'
13+
gem 'ebay_client', '~> 0.3.0'
1414

1515
`config/ebay_client.yml`:
1616

@@ -46,7 +46,7 @@ e.g. `rails console`:
4646
Notes
4747
-----
4848
* An overview of possible API calls can be found at the
49-
[eBay Trading API docs](http://developer.ebay.com/DevZone/XML/docs/Reference/eBay/)
49+
[eBay Trading API docs](https://developer.ebay.com/devzone/xml/docs/Reference/eBay/index.html)
5050
* Names (Methods, Types, Members) are mapped from `CamelCase` \<=\> `snake_case`
5151
* `eBay` is mapped to `ebay`, i.e. `GeteBayOfficialTime` \<=\>
5252
`get_ebay_official_time`
@@ -60,4 +60,6 @@ Notes
6060
`ebay_client.yml`. On initialization, the EbayClient will randomly
6161
choose one of them. If you run out of API calls, it will automatically
6262
switch to another key.
63+
* You can set your secrets as ENV variables as the `ebay_client.yml` will be parsed
64+
by the ERB interpreter.
6365
* Pull requests and bug reports are welcome!

config/defaults.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defaults: &defaults
2-
version: 981
2+
version: 997
33
# use local file as default
4-
#wsdl_file: 'http://developer.ebay.com/webservices/981/eBaySvc.wsdl'
4+
#wsdl_file: 'http://developer.ebay.com/webservices/997/eBaySvc.wsdl'
55
routing: default
66
siteid: 0
77
preload: false

lib/ebay_client/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module EbayClient
2-
VERSION = '0.2.0.981'
2+
VERSION = '0.3.0.997'
33
end

0 commit comments

Comments
 (0)