orchestrate 0.6.3 → 0.7.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 +4 -4
- data/README.md +64 -27
- data/lib/orchestrate.rb +6 -1
- data/lib/orchestrate/api.rb +1 -0
- data/lib/orchestrate/api/errors.rb +3 -1
- data/lib/orchestrate/api/helpers.rb +1 -0
- data/lib/orchestrate/api/response.rb +43 -10
- data/lib/orchestrate/application.rb +55 -0
- data/lib/orchestrate/client.rb +5 -24
- data/lib/orchestrate/collection.rb +310 -0
- data/lib/orchestrate/key_value.rb +232 -0
- data/lib/orchestrate/version.rb +2 -1
- data/orchestrate.gemspec +1 -1
- data/test/orchestrate/api/{collections_test.rb → collections_api_test.rb} +1 -1
- data/test/orchestrate/api/exceptions_test.rb +9 -55
- data/test/orchestrate/api/{key_value_test.rb → key_value_api_test.rb} +1 -1
- data/test/orchestrate/application_test.rb +44 -0
- data/test/orchestrate/client_test.rb +19 -17
- data/test/orchestrate/collection_enumeration_test.rb +116 -0
- data/test/orchestrate/collection_kv_accessors_test.rb +145 -0
- data/test/orchestrate/collection_test.rb +63 -0
- data/test/orchestrate/key_value_persistence_test.rb +161 -0
- data/test/orchestrate/key_value_test.rb +116 -0
- data/test/test_helper.rb +134 -8
- metadata +24 -15
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: orchestrate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matthew Lyon
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2014-
|
13
|
+
date: 2014-07-01 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: faraday
|
@@ -27,25 +27,19 @@ dependencies:
|
|
27
27
|
- !ruby/object:Gem::Version
|
28
28
|
version: '0.9'
|
29
29
|
- !ruby/object:Gem::Dependency
|
30
|
-
name:
|
30
|
+
name: net-http-persistent
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
32
32
|
requirements:
|
33
33
|
- - "~>"
|
34
34
|
- !ruby/object:Gem::Version
|
35
|
-
version: '
|
36
|
-
- - ">="
|
37
|
-
- !ruby/object:Gem::Version
|
38
|
-
version: 0.9.1
|
35
|
+
version: '2.9'
|
39
36
|
type: :runtime
|
40
37
|
prerelease: false
|
41
38
|
version_requirements: !ruby/object:Gem::Requirement
|
42
39
|
requirements:
|
43
40
|
- - "~>"
|
44
41
|
- !ruby/object:Gem::Version
|
45
|
-
version: '
|
46
|
-
- - ">="
|
47
|
-
- !ruby/object:Gem::Version
|
48
|
-
version: 0.9.1
|
42
|
+
version: '2.9'
|
49
43
|
- !ruby/object:Gem::Dependency
|
50
44
|
name: bundler
|
51
45
|
requirement: !ruby/object:Gem::Requirement
|
@@ -137,16 +131,25 @@ files:
|
|
137
131
|
- lib/orchestrate/api/errors.rb
|
138
132
|
- lib/orchestrate/api/helpers.rb
|
139
133
|
- lib/orchestrate/api/response.rb
|
134
|
+
- lib/orchestrate/application.rb
|
140
135
|
- lib/orchestrate/client.rb
|
136
|
+
- lib/orchestrate/collection.rb
|
137
|
+
- lib/orchestrate/key_value.rb
|
141
138
|
- lib/orchestrate/version.rb
|
142
139
|
- orchestrate.gemspec
|
143
|
-
- test/orchestrate/api/
|
140
|
+
- test/orchestrate/api/collections_api_test.rb
|
144
141
|
- test/orchestrate/api/event_test.rb
|
145
142
|
- test/orchestrate/api/exceptions_test.rb
|
146
143
|
- test/orchestrate/api/graph_test.rb
|
147
|
-
- test/orchestrate/api/
|
144
|
+
- test/orchestrate/api/key_value_api_test.rb
|
148
145
|
- test/orchestrate/api/response_test.rb
|
146
|
+
- test/orchestrate/application_test.rb
|
149
147
|
- test/orchestrate/client_test.rb
|
148
|
+
- test/orchestrate/collection_enumeration_test.rb
|
149
|
+
- test/orchestrate/collection_kv_accessors_test.rb
|
150
|
+
- test/orchestrate/collection_test.rb
|
151
|
+
- test/orchestrate/key_value_persistence_test.rb
|
152
|
+
- test/orchestrate/key_value_test.rb
|
150
153
|
- test/test_helper.rb
|
151
154
|
homepage: https://github.com/orchestrate-io/orchestrate-ruby
|
152
155
|
licenses:
|
@@ -173,12 +176,18 @@ signing_key:
|
|
173
176
|
specification_version: 4
|
174
177
|
summary: Ruby client for Orchestrate.io
|
175
178
|
test_files:
|
176
|
-
- test/orchestrate/api/
|
179
|
+
- test/orchestrate/api/collections_api_test.rb
|
177
180
|
- test/orchestrate/api/event_test.rb
|
178
181
|
- test/orchestrate/api/exceptions_test.rb
|
179
182
|
- test/orchestrate/api/graph_test.rb
|
180
|
-
- test/orchestrate/api/
|
183
|
+
- test/orchestrate/api/key_value_api_test.rb
|
181
184
|
- test/orchestrate/api/response_test.rb
|
185
|
+
- test/orchestrate/application_test.rb
|
182
186
|
- test/orchestrate/client_test.rb
|
187
|
+
- test/orchestrate/collection_enumeration_test.rb
|
188
|
+
- test/orchestrate/collection_kv_accessors_test.rb
|
189
|
+
- test/orchestrate/collection_test.rb
|
190
|
+
- test/orchestrate/key_value_persistence_test.rb
|
191
|
+
- test/orchestrate/key_value_test.rb
|
183
192
|
- test/test_helper.rb
|
184
193
|
has_rdoc:
|