peddler 0.7.8 → 0.7.9
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/README.md +4 -3
- data/lib/mws.rb +1 -1
- data/lib/peddler/version.rb +1 -1
- data/test/unit/test_mws.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5fa0b5d3d2a19f2c2466f3b81f8b3af63c30efe9
|
|
4
|
+
data.tar.gz: f934d8b778d1c56c5c7533f9c5d59ebf0cf06550
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a6ca2e943bc525e08b7e8195bdd12e5b65075dbb30bad789328e8a92fc18d59f0df035538459a091b7069a9da5e9ecb27ccdc8d910208c7ab4b26405dcdad427
|
|
7
|
+
data.tar.gz: e3f5068c70c530a2f198cdfbe571ccb7c6b119125aed38b9b132f78da568891cb2ee1bfa5867254640a0747d831b9c50438cda2132d67f51d8a221d26d73388a
|
data/README.md
CHANGED
|
@@ -12,7 +12,7 @@ To use Amazon MWS, you must have an eligible seller account.
|
|
|
12
12
|
|
|
13
13
|
## Configuration
|
|
14
14
|
|
|
15
|
-
Require the library and instantiate a client
|
|
15
|
+
Require the library and instantiate a client:
|
|
16
16
|
|
|
17
17
|
```ruby
|
|
18
18
|
require 'peddler'
|
|
@@ -28,8 +28,9 @@ client = MWS.orders(
|
|
|
28
28
|
aws_access_key_id: 'AKIVICHZMZ2JRSSLC27W',
|
|
29
29
|
aws_secret_access_key: 'rOMa3ydPBTJ3AD0bxERTOX0Fv0fAC6Q0s6/czMZO'
|
|
30
30
|
)
|
|
31
|
+
```
|
|
31
32
|
|
|
32
|
-
Or you can set them via `Client#configure
|
|
33
|
+
Or you can set them via `Client#configure`:
|
|
33
34
|
|
|
34
35
|
```ruby
|
|
35
36
|
client.configure do |c|
|
|
@@ -40,7 +41,7 @@ client.configure do |c|
|
|
|
40
41
|
end
|
|
41
42
|
```
|
|
42
43
|
|
|
43
|
-
|
|
44
|
+
Alternatively, use environment variables if you only have a single set of credentials:
|
|
44
45
|
|
|
45
46
|
```sh
|
|
46
47
|
export MWS_MARKETPLACE_ID="A1F83G8C2ARO7P"
|
data/lib/mws.rb
CHANGED
data/lib/peddler/version.rb
CHANGED
data/test/unit/test_mws.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: peddler
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hakan Ensari
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-05-
|
|
11
|
+
date: 2014-05-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jeff
|