File tree Expand file tree Collapse file tree 6 files changed +137632
-139994
lines changed Expand file tree Collapse file tree 6 files changed +137632
-139994
lines changed Original file line number Diff line number Diff line change 1
- ruby-2.3.1
1
+ ruby-2.3.3
Original file line number Diff line number Diff line change 8
8
GEM
9
9
remote: https://rubygems.org/
10
10
specs:
11
- activesupport (4.2.7.1 )
11
+ activesupport (4.2.8 )
12
12
i18n (~> 0.7 )
13
- json (~> 1.7 , >= 1.7.7 )
14
13
minitest (~> 5.1 )
15
14
thread_safe (~> 0.3 , >= 0.3.4 )
16
15
tzinfo (~> 1.1 )
17
- addressable (2.4.0 )
16
+ addressable (2.5.0 )
17
+ public_suffix (~> 2.0 , >= 2.0.2 )
18
18
akami (1.3.1 )
19
19
gyoku (>= 0.4.0 )
20
20
nokogiri
21
- builder (3.2.2 )
21
+ builder (3.2.3 )
22
22
crack (0.4.3 )
23
23
safe_yaml (~> 1.0.0 )
24
- diff-lcs (1.2.5 )
24
+ diff-lcs (1.3 )
25
25
docile (1.1.5 )
26
26
gyoku (1.3.1 )
27
27
builder (>= 2.1.2 )
28
- hashdiff (0.3.0 )
28
+ hashdiff (0.3.2 )
29
29
httpi (2.4.2 )
30
30
rack
31
31
socksify
32
- i18n (0.7.0 )
33
- json (1.8 .3 )
32
+ i18n (0.8.1 )
33
+ json (2.0 .3 )
34
34
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 )
37
37
mini_portile2 (~> 2.1.0 )
38
- pkg-config (~> 1.1.7 )
39
38
nori (2.6.0 )
40
- pkg-config ( 1.1.7 )
39
+ public_suffix ( 2.0.5 )
41
40
rack (2.0.1 )
42
41
rspec (3.5.0 )
43
42
rspec-core (~> 3.5.0 )
44
43
rspec-expectations (~> 3.5.0 )
45
44
rspec-mocks (~> 3.5.0 )
46
- rspec-core (3.5.3 )
45
+ rspec-core (3.5.4 )
47
46
rspec-support (~> 3.5.0 )
48
47
rspec-expectations (3.5.0 )
49
48
diff-lcs (>= 1.2.0 , < 2.0 )
61
60
nokogiri (>= 1.4.0 )
62
61
nori (~> 2.4 )
63
62
wasabi (~> 3.4 )
64
- simplecov (0.12.0 )
63
+ simplecov (0.14.1 )
65
64
docile (~> 1.1.0 )
66
65
json (>= 1.8 , < 3 )
67
66
simplecov-html (~> 0.10.0 )
68
67
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 )
71
70
tzinfo (1.2.2 )
72
71
thread_safe (~> 0.1 )
73
72
wasabi (3.5.0 )
74
73
httpi (~> 2.0 )
75
74
nokogiri (>= 1.4.2 )
76
- webmock (2.1.0 )
75
+ webmock (2.3.2 )
77
76
addressable (>= 2.3.6 )
78
77
crack (>= 0.3.2 )
79
78
hashdiff
@@ -89,4 +88,4 @@ DEPENDENCIES
89
88
webmock (~> 2.0 )
90
89
91
90
BUNDLED WITH
92
- 1.12.5
91
+ 1.14.6
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ Installation
10
10
11
11
` Gemfile ` :
12
12
13
- gem 'ebay_client', '~> 0.2 .0'
13
+ gem 'ebay_client', '~> 0.3 .0'
14
14
15
15
` config/ebay_client.yml ` :
16
16
@@ -46,7 +46,7 @@ e.g. `rails console`:
46
46
Notes
47
47
-----
48
48
* 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 )
50
50
* Names (Methods, Types, Members) are mapped from ` CamelCase ` \< =\> ` snake_case `
51
51
* ` eBay ` is mapped to ` ebay ` , i.e. ` GeteBayOfficialTime ` \< =\>
52
52
` get_ebay_official_time `
60
60
` ebay_client.yml ` . On initialization, the EbayClient will randomly
61
61
choose one of them. If you run out of API calls, it will automatically
62
62
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.
63
65
* Pull requests and bug reports are welcome!
Original file line number Diff line number Diff line change 1
1
defaults : &defaults
2
- version : 981
2
+ version : 997
3
3
# 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'
5
5
routing : default
6
6
siteid : 0
7
7
preload : false
Original file line number Diff line number Diff line change 1
1
module EbayClient
2
- VERSION = '0.2 .0.981 '
2
+ VERSION = '0.3 .0.997 '
3
3
end
You can’t perform that action at this time.
0 commit comments