xpost 0.1.3.2 → 0.1.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.DS_Store +0 -0
- data/.gitignore +0 -0
- data/.rspec +0 -0
- data/Gemfile +0 -0
- data/LICENSE +0 -0
- data/README.md +0 -0
- data/TODO.md +0 -0
- data/lib/.DS_Store +0 -0
- data/lib/xpost.rb +0 -0
- data/lib/xpost/.DS_Store +0 -0
- data/lib/xpost/address.rb +0 -0
- data/lib/xpost/authentication.rb +0 -0
- data/lib/xpost/configuration.rb +0 -0
- data/lib/xpost/item.rb +0 -0
- data/lib/xpost/order.rb +0 -0
- data/lib/xpost/orders.rb +0 -0
- data/lib/xpost/statuses.rb +0 -0
- data/lib/xpost/version.rb +1 -1
- data/sample/sample_essential_order_details.json +0 -0
- data/sample/sample_xpost_order-confirmed.json +0 -0
- data/sample/sample_xpost_order-for-pickup.json +0 -0
- data/sample/sample_xpost_order-pending.json +0 -0
- data/sample/webhook_sample.json +0 -0
- data/spec/factories/addresses.rb +0 -0
- data/spec/factories/items.rb +0 -0
- data/spec/factories/orders.rb +0 -0
- data/spec/helpers.rb +0 -0
- data/spec/order/address/address_spec.rb +0 -0
- data/spec/order/cancel_spec.rb +0 -0
- data/spec/order/confirm_spec.rb +0 -0
- data/spec/order/create_spec.rb +0 -0
- data/spec/order/for_pickup_spec.rb +0 -0
- data/spec/order/get_shipping_label_spec.rb +0 -0
- data/spec/order/items/item_spec.rb +0 -0
- data/spec/order/order_spec.rb +0 -0
- data/spec/orders/find_spec.rb +0 -0
- data/spec/orders/track_spec.rb +0 -0
- data/spec/spec_helper.rb +0 -0
- data/spec/xpost_spec.rb +0 -0
- data/xpost.gemspec +2 -1
- metadata +2 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: fc907dfe9463a9ae1ddf666c99137575baa7bbac8eab8d4c86f14c4d204037c2
|
4
|
+
data.tar.gz: f0470ed297ea5c84c30c0a0e39ce34cbce9c4aec46c293fe4729674143a3b460
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 85c5b2c753f3c9845f9efc472dd7633f8b549cea7077e0fa40bb016a1ca0aaac5cb0e9086cff3ca1e2ca009eb75513fe7f61f49f43836dce007da8b8415d79b2
|
7
|
+
data.tar.gz: f83068498e50f178ca74b0c93a7d2f8d5056ed34128869452208e6b92670fbc30da85abc5cb7f987dd0e599627e5f43236bdfe95f26385a9bc503c0794c4af79
|
data/.DS_Store
CHANGED
File without changes
|
data/.gitignore
CHANGED
File without changes
|
data/.rspec
CHANGED
File without changes
|
data/Gemfile
CHANGED
File without changes
|
data/LICENSE
CHANGED
File without changes
|
data/README.md
CHANGED
File without changes
|
data/TODO.md
CHANGED
File without changes
|
data/lib/.DS_Store
CHANGED
File without changes
|
data/lib/xpost.rb
CHANGED
File without changes
|
data/lib/xpost/.DS_Store
CHANGED
File without changes
|
data/lib/xpost/address.rb
CHANGED
File without changes
|
data/lib/xpost/authentication.rb
CHANGED
File without changes
|
data/lib/xpost/configuration.rb
CHANGED
File without changes
|
data/lib/xpost/item.rb
CHANGED
File without changes
|
data/lib/xpost/order.rb
CHANGED
File without changes
|
data/lib/xpost/orders.rb
CHANGED
File without changes
|
data/lib/xpost/statuses.rb
CHANGED
File without changes
|
data/lib/xpost/version.rb
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/sample/webhook_sample.json
CHANGED
File without changes
|
data/spec/factories/addresses.rb
CHANGED
File without changes
|
data/spec/factories/items.rb
CHANGED
File without changes
|
data/spec/factories/orders.rb
CHANGED
File without changes
|
data/spec/helpers.rb
CHANGED
File without changes
|
File without changes
|
data/spec/order/cancel_spec.rb
CHANGED
File without changes
|
data/spec/order/confirm_spec.rb
CHANGED
File without changes
|
data/spec/order/create_spec.rb
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/spec/order/order_spec.rb
CHANGED
File without changes
|
data/spec/orders/find_spec.rb
CHANGED
File without changes
|
data/spec/orders/track_spec.rb
CHANGED
File without changes
|
data/spec/spec_helper.rb
CHANGED
File without changes
|
data/spec/xpost_spec.rb
CHANGED
File without changes
|
data/xpost.gemspec
CHANGED
@@ -17,7 +17,8 @@ Gem::Specification.new do |s|
|
|
17
17
|
s.files = `git ls-files`.split("\n")
|
18
18
|
s.require_paths = ["lib"]
|
19
19
|
|
20
|
-
s.
|
20
|
+
s.add_runtime_dependency 'activemodel', '~> 5.1'
|
21
|
+
|
21
22
|
s.add_dependency 'typhoeus', '~> 1.3'
|
22
23
|
s.add_dependency 'factory_bot', '~> 4.8'
|
23
24
|
s.add_dependency 'fast_jsonapi', '~> 1.3'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xpost
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.3.
|
4
|
+
version: 0.1.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Marquez
|
@@ -201,8 +201,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
201
201
|
- !ruby/object:Gem::Version
|
202
202
|
version: '0'
|
203
203
|
requirements: []
|
204
|
-
|
205
|
-
rubygems_version: 2.6.14
|
204
|
+
rubygems_version: 3.0.1
|
206
205
|
signing_key:
|
207
206
|
specification_version: 4
|
208
207
|
summary: xpost Ruby API
|