insales_api 0.1.1 → 0.1.2
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/.travis.yml +3 -0
- data/lib/insales_api.rb +3 -0
- data/lib/insales_api/category.rb +1 -0
- data/lib/insales_api/collection.rb +3 -1
- data/lib/insales_api/currency.rb +6 -0
- data/lib/insales_api/price_kind.rb +8 -0
- data/lib/insales_api/resource/with_updated_since.rb +4 -0
- data/lib/insales_api/stock_currency.rb +5 -0
- data/lib/insales_api/version.rb +1 -1
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 775a094a7936896bf5c2016863c25252ee1b4d00
|
4
|
+
data.tar.gz: a1f9c51de691498d2ee419c5656936bcb80813d6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 716796fb7b345110807446c862e623c989197145cab86b0ae70210939b815f76c3e9c06a1bb3d0bcb64c740a12c6da5703ad8f4bfdcaea8733f97178df107568
|
7
|
+
data.tar.gz: a443fc4c21aa6096f30ef7350fa6a2199d387ed99366480f4178d0b2154c8bf2aba950125a51ef0126f35aa65662bb8fd5f0dd50d2d2d441b333f650b6b9f470
|
data/.travis.yml
CHANGED
data/lib/insales_api.rb
CHANGED
@@ -25,6 +25,7 @@ module InsalesApi
|
|
25
25
|
autoload :ClientGroup
|
26
26
|
autoload :Collect
|
27
27
|
autoload :Collection
|
28
|
+
autoload :Currency
|
28
29
|
autoload :DeliveryVariant
|
29
30
|
autoload :DiscountCode
|
30
31
|
autoload :Domain
|
@@ -39,12 +40,14 @@ module InsalesApi
|
|
39
40
|
autoload :OrderLine
|
40
41
|
autoload :Page
|
41
42
|
autoload :PaymentGateway
|
43
|
+
autoload :PriceKind
|
42
44
|
autoload :Product
|
43
45
|
autoload :ProductField
|
44
46
|
autoload :ProductFieldValue
|
45
47
|
autoload :Property
|
46
48
|
autoload :Characteristic
|
47
49
|
autoload :RecurringApplicationCharge
|
50
|
+
autoload :StockCurrency
|
48
51
|
autoload :Theme
|
49
52
|
autoload :User
|
50
53
|
autoload :Variant
|
data/lib/insales_api/category.rb
CHANGED
data/lib/insales_api/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: insales_api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- InSales
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-08-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -100,6 +100,7 @@ files:
|
|
100
100
|
- lib/insales_api/client_group.rb
|
101
101
|
- lib/insales_api/collect.rb
|
102
102
|
- lib/insales_api/collection.rb
|
103
|
+
- lib/insales_api/currency.rb
|
103
104
|
- lib/insales_api/delivery_variant.rb
|
104
105
|
- lib/insales_api/discount_code.rb
|
105
106
|
- lib/insales_api/domain.rb
|
@@ -117,6 +118,7 @@ files:
|
|
117
118
|
- lib/insales_api/page.rb
|
118
119
|
- lib/insales_api/password.rb
|
119
120
|
- lib/insales_api/payment_gateway.rb
|
121
|
+
- lib/insales_api/price_kind.rb
|
120
122
|
- lib/insales_api/product.rb
|
121
123
|
- lib/insales_api/product_field.rb
|
122
124
|
- lib/insales_api/product_field_value.rb
|
@@ -125,6 +127,7 @@ files:
|
|
125
127
|
- lib/insales_api/resource/countable.rb
|
126
128
|
- lib/insales_api/resource/paginated.rb
|
127
129
|
- lib/insales_api/resource/with_updated_since.rb
|
130
|
+
- lib/insales_api/stock_currency.rb
|
128
131
|
- lib/insales_api/theme.rb
|
129
132
|
- lib/insales_api/user.rb
|
130
133
|
- lib/insales_api/variant.rb
|
@@ -153,7 +156,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
153
156
|
version: '0'
|
154
157
|
requirements: []
|
155
158
|
rubyforge_project: insales_api
|
156
|
-
rubygems_version: 2.
|
159
|
+
rubygems_version: 2.5.1
|
157
160
|
signing_key:
|
158
161
|
specification_version: 4
|
159
162
|
summary: Gem for accessing the InSales REST web services
|