losant_rest 1.7.0 → 1.7.1
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/docs/_schemas.md +401 -20
- data/docs/device.md +42 -0
- data/docs/experience.md +51 -0
- data/lib/losant_rest/client.rb +6 -2
- data/lib/losant_rest/device.rb +49 -0
- data/lib/losant_rest/experience.rb +89 -0
- data/lib/losant_rest/version.rb +1 -1
- data/lib/losant_rest.rb +1 -0
- data/schemas/applicationApiTokenPost.json +3 -0
- data/schemas/deviceConnectionStatus.json +115 -0
- data/schemas/experienceEndpoint.json +66 -0
- data/schemas/experienceEndpointPatch.json +66 -0
- data/schemas/experienceEndpointPost.json +66 -0
- data/schemas/experienceEndpoints.json +66 -0
- data/schemas/org.json +0 -4
- data/schemas/orgInvitePost.json +0 -4
- data/schemas/orgInvites.json +0 -4
- data/schemas/orgMemberPatch.json +0 -4
- data/schemas/orgs.json +0 -4
- metadata +6 -3
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: losant_rest
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.7.
|
4
|
+
version: 1.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Kuehl
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-08-
|
11
|
+
date: 2018-08-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httparty
|
@@ -105,6 +105,7 @@ files:
|
|
105
105
|
- docs/edgeDeployments.md
|
106
106
|
- docs/event.md
|
107
107
|
- docs/events.md
|
108
|
+
- docs/experience.md
|
108
109
|
- docs/experienceDomain.md
|
109
110
|
- docs/experienceDomains.md
|
110
111
|
- docs/experienceEndpoint.md
|
@@ -161,6 +162,7 @@ files:
|
|
161
162
|
- lib/losant_rest/error.rb
|
162
163
|
- lib/losant_rest/event.rb
|
163
164
|
- lib/losant_rest/events.rb
|
165
|
+
- lib/losant_rest/experience.rb
|
164
166
|
- lib/losant_rest/experience_domain.rb
|
165
167
|
- lib/losant_rest/experience_domains.rb
|
166
168
|
- lib/losant_rest/experience_endpoint.rb
|
@@ -231,6 +233,7 @@ files:
|
|
231
233
|
- schemas/device.json
|
232
234
|
- schemas/deviceCommand.json
|
233
235
|
- schemas/deviceCommands.json
|
236
|
+
- schemas/deviceConnectionStatus.json
|
234
237
|
- schemas/deviceCredentials.json
|
235
238
|
- schemas/deviceLog.json
|
236
239
|
- schemas/devicePatch.json
|
@@ -362,7 +365,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
362
365
|
version: '0'
|
363
366
|
requirements: []
|
364
367
|
rubyforge_project:
|
365
|
-
rubygems_version: 2.
|
368
|
+
rubygems_version: 2.5.2.3
|
366
369
|
signing_key:
|
367
370
|
specification_version: 4
|
368
371
|
summary: Provides a simple ruby wrapper around the Losant REST API
|