nimbu-api 0.3.0 → 0.4.0
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 +5 -5
- data/.gitignore +1 -0
- data/lib/nimbu-api.rb +9 -0
- data/lib/nimbu-api/client.rb +8 -0
- data/lib/nimbu-api/connection.rb +4 -5
- data/lib/nimbu-api/endpoints/activities.rb +16 -0
- data/lib/nimbu-api/endpoints/channels.rb +23 -0
- data/lib/nimbu-api/endpoints/channels/entries.rb +20 -2
- data/lib/nimbu-api/endpoints/coupons.rb +50 -0
- data/lib/nimbu-api/endpoints/customers.rb +6 -0
- data/lib/nimbu-api/endpoints/devices.rb +60 -0
- data/lib/nimbu-api/endpoints/functions.rb +16 -0
- data/lib/nimbu-api/endpoints/jobs.rb +16 -0
- data/lib/nimbu-api/endpoints/orders.rb +30 -0
- data/lib/nimbu-api/endpoints/products.rb +6 -0
- data/lib/nimbu-api/endpoints/roles.rb +44 -0
- data/lib/nimbu-api/endpoints/translations.rb +50 -0
- data/lib/nimbu-api/endpoints/webhooks.rb +31 -0
- data/lib/nimbu-api/request/oauth2.rb +1 -2
- data/lib/nimbu-api/response/mashify.rb +5 -1
- data/lib/nimbu-api/version.rb +1 -1
- data/nimbu-api.gemspec +1 -1
- data/vendor/cacert.pem +1452 -2033
- metadata +16 -7
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nimbu-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Dedene
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-08-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: hashie
|
@@ -28,16 +28,16 @@ dependencies:
|
|
28
28
|
name: faraday
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- -
|
31
|
+
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.
|
33
|
+
version: '0.15'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- -
|
38
|
+
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 0.
|
40
|
+
version: '0.15'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: multi_json
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -184,13 +184,20 @@ files:
|
|
184
184
|
- lib/nimbu-api/configuration.rb
|
185
185
|
- lib/nimbu-api/connection.rb
|
186
186
|
- lib/nimbu-api/endpoint.rb
|
187
|
+
- lib/nimbu-api/endpoints/activities.rb
|
187
188
|
- lib/nimbu-api/endpoints/authorizations.rb
|
188
189
|
- lib/nimbu-api/endpoints/channels.rb
|
189
190
|
- lib/nimbu-api/endpoints/channels/entries.rb
|
190
191
|
- lib/nimbu-api/endpoints/collections.rb
|
192
|
+
- lib/nimbu-api/endpoints/coupons.rb
|
191
193
|
- lib/nimbu-api/endpoints/customers.rb
|
194
|
+
- lib/nimbu-api/endpoints/devices.rb
|
195
|
+
- lib/nimbu-api/endpoints/functions.rb
|
196
|
+
- lib/nimbu-api/endpoints/jobs.rb
|
192
197
|
- lib/nimbu-api/endpoints/login.rb
|
198
|
+
- lib/nimbu-api/endpoints/orders.rb
|
193
199
|
- lib/nimbu-api/endpoints/products.rb
|
200
|
+
- lib/nimbu-api/endpoints/roles.rb
|
194
201
|
- lib/nimbu-api/endpoints/simulator.rb
|
195
202
|
- lib/nimbu-api/endpoints/sites.rb
|
196
203
|
- lib/nimbu-api/endpoints/themes.rb
|
@@ -198,7 +205,9 @@ files:
|
|
198
205
|
- lib/nimbu-api/endpoints/themes/layouts.rb
|
199
206
|
- lib/nimbu-api/endpoints/themes/snippets.rb
|
200
207
|
- lib/nimbu-api/endpoints/themes/templates.rb
|
208
|
+
- lib/nimbu-api/endpoints/translations.rb
|
201
209
|
- lib/nimbu-api/endpoints/videos.rb
|
210
|
+
- lib/nimbu-api/endpoints/webhooks.rb
|
202
211
|
- lib/nimbu-api/errors.rb
|
203
212
|
- lib/nimbu-api/errors/bad_gateway.rb
|
204
213
|
- lib/nimbu-api/errors/bad_request.rb
|
@@ -272,7 +281,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
272
281
|
version: '0'
|
273
282
|
requirements: []
|
274
283
|
rubyforge_project:
|
275
|
-
rubygems_version: 2.
|
284
|
+
rubygems_version: 2.7.6
|
276
285
|
signing_key:
|
277
286
|
specification_version: 4
|
278
287
|
summary: Ruby bindings for the Nimbu API
|