crx_packmgr_api_client 0.1.0 → 1.0.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.
Files changed (74) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +33 -16
  3. data/crx_packmgr_api_client-0.2.0.gem +0 -0
  4. data/crx_packmgr_api_client.gemspec +9 -4
  5. data/docs/DefaultApi.md +457 -7
  6. data/docs/{PackageFilter.md → Filter.md} +2 -2
  7. data/docs/FilterRule.md +9 -0
  8. data/docs/Group.md +11 -0
  9. data/docs/{InlineResponse200.md → GroupList.md} +2 -2
  10. data/docs/InitData.md +13 -0
  11. data/docs/InstallStatus.md +8 -0
  12. data/docs/InstallStatusStatus.md +9 -0
  13. data/docs/Package.md +1 -1
  14. data/docs/PackageList.md +1 -0
  15. data/docs/ServiceResponse.md +12 -0
  16. data/docs/ServiceResponseRequest.md +8 -0
  17. data/docs/ServiceResponseRequestParam.md +9 -0
  18. data/docs/ServiceResponseResponse.md +9 -0
  19. data/docs/UpdateStatus.md +10 -0
  20. data/git_push.sh +1 -1
  21. data/lib/crx_packmgr_api_client.rb +13 -2
  22. data/lib/crx_packmgr_api_client/api/default_api.rb +491 -8
  23. data/lib/crx_packmgr_api_client/api_client.rb +1 -1
  24. data/lib/crx_packmgr_api_client/api_error.rb +1 -1
  25. data/lib/crx_packmgr_api_client/configuration.rb +1 -1
  26. data/lib/crx_packmgr_api_client/models/{package_filter.rb → filter.rb} +3 -3
  27. data/lib/crx_packmgr_api_client/models/filter_rule.rb +241 -0
  28. data/lib/crx_packmgr_api_client/models/group.rb +226 -0
  29. data/lib/crx_packmgr_api_client/models/{inline_response_200.rb → group_list.rb} +10 -10
  30. data/lib/crx_packmgr_api_client/models/init_data.rb +246 -0
  31. data/lib/crx_packmgr_api_client/models/install_status.rb +199 -0
  32. data/lib/crx_packmgr_api_client/models/install_status_status.rb +208 -0
  33. data/lib/crx_packmgr_api_client/models/package.rb +2 -2
  34. data/lib/crx_packmgr_api_client/models/package_list.rb +14 -5
  35. data/lib/crx_packmgr_api_client/models/service_response.rb +235 -0
  36. data/lib/crx_packmgr_api_client/models/service_response_request.rb +201 -0
  37. data/lib/crx_packmgr_api_client/models/service_response_request_param.rb +208 -0
  38. data/lib/crx_packmgr_api_client/models/service_response_response.rb +208 -0
  39. data/lib/crx_packmgr_api_client/models/update_status.rb +217 -0
  40. data/lib/crx_packmgr_api_client/version.rb +2 -2
  41. data/spec/acceptance/default_api_spec.rb +150 -0
  42. data/spec/api/default_api_spec.rb +2 -14
  43. data/spec/api/download_api_spec.rb +95 -0
  44. data/spec/api/groups_api_spec.rb +193 -0
  45. data/spec/api/init_api_spec.rb +104 -0
  46. data/spec/api/installstatus_api_spec.rb +91 -0
  47. data/spec/api/list_api_spec.rb +130 -0
  48. data/spec/api/screenshot_api_spec.rb +93 -0
  49. data/spec/api/service_api_spec.rb +374 -0
  50. data/spec/api/thumbnail_api_spec.rb +93 -0
  51. data/spec/api_client_spec.rb +1 -1
  52. data/spec/configuration_spec.rb +1 -1
  53. data/spec/files/list.json +533 -0
  54. data/spec/files/service_response.txt +11 -0
  55. data/spec/files/service_response1.txt +12 -0
  56. data/spec/files/test-1.0.0.zip +0 -0
  57. data/spec/files/thumbnail.png +0 -0
  58. data/spec/models/filter_rule_spec.rb +63 -0
  59. data/spec/models/{package_filter_spec.rb → filter_spec.rb} +7 -7
  60. data/spec/models/{inline_response_200_spec.rb → group_list_spec.rb} +8 -8
  61. data/spec/models/group_spec.rb +71 -0
  62. data/spec/models/init_data_spec.rb +83 -0
  63. data/spec/models/install_status_spec.rb +53 -0
  64. data/spec/models/install_status_status_spec.rb +59 -0
  65. data/spec/models/package_list_spec.rb +1 -1
  66. data/spec/models/package_spec.rb +1 -1
  67. data/spec/models/service_response_request_param_spec.rb +59 -0
  68. data/spec/models/service_response_request_spec.rb +53 -0
  69. data/spec/models/service_response_response_spec.rb +59 -0
  70. data/spec/models/service_response_spec.rb +77 -0
  71. data/spec/models/update_status_spec.rb +65 -0
  72. data/spec/spec_helper.rb +10 -1
  73. data/spec/spec_helper_acceptance.rb +19 -0
  74. metadata +130 -17
@@ -3,7 +3,7 @@
3
3
 
4
4
  #API for interacting with the CRX Package Manager in AEM.
5
5
 
6
- OpenAPI spec version: 1.0.0
6
+ OpenAPI spec version: 6.2.0
7
7
  Contact: bryan.stopp@gmail.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -0,0 +1,59 @@
1
+ =begin
2
+ #CRX Package Manager API
3
+
4
+ #API for interacting with the CRX Package Manager in AEM.
5
+
6
+ OpenAPI spec version: 6.2.0
7
+ Contact: bryan.stopp@gmail.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+
10
+ Licensed under the Apache License, Version 2.0 (the "License");
11
+ you may not use this file except in compliance with the License.
12
+ You may obtain a copy of the License at
13
+
14
+ http://www.apache.org/licenses/LICENSE-2.0
15
+
16
+ Unless required by applicable law or agreed to in writing, software
17
+ distributed under the License is distributed on an "AS IS" BASIS,
18
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
+ See the License for the specific language governing permissions and
20
+ limitations under the License.
21
+
22
+ =end
23
+
24
+ require 'spec_helper'
25
+ require 'json'
26
+ require 'date'
27
+
28
+ # Unit tests for CrxPackageManager::ServiceResponseRequestParam
29
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
30
+ # Please update as you see appropriate
31
+ describe 'ServiceResponseRequestParam' do
32
+ before do
33
+ # run before each test
34
+ @instance = CrxPackageManager::ServiceResponseRequestParam.new
35
+ end
36
+
37
+ after do
38
+ # run after each test
39
+ end
40
+
41
+ describe 'test an instance of ServiceResponseRequestParam' do
42
+ it 'should create an instact of ServiceResponseRequestParam' do
43
+ expect(@instance).to be_instance_of(CrxPackageManager::ServiceResponseRequestParam)
44
+ end
45
+ end
46
+ describe 'test attribute "name"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "value"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
58
+ end
59
+
@@ -0,0 +1,53 @@
1
+ =begin
2
+ #CRX Package Manager API
3
+
4
+ #API for interacting with the CRX Package Manager in AEM.
5
+
6
+ OpenAPI spec version: 6.2.0
7
+ Contact: bryan.stopp@gmail.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+
10
+ Licensed under the Apache License, Version 2.0 (the "License");
11
+ you may not use this file except in compliance with the License.
12
+ You may obtain a copy of the License at
13
+
14
+ http://www.apache.org/licenses/LICENSE-2.0
15
+
16
+ Unless required by applicable law or agreed to in writing, software
17
+ distributed under the License is distributed on an "AS IS" BASIS,
18
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
+ See the License for the specific language governing permissions and
20
+ limitations under the License.
21
+
22
+ =end
23
+
24
+ require 'spec_helper'
25
+ require 'json'
26
+ require 'date'
27
+
28
+ # Unit tests for CrxPackageManager::ServiceResponseRequest
29
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
30
+ # Please update as you see appropriate
31
+ describe 'ServiceResponseRequest' do
32
+ before do
33
+ # run before each test
34
+ @instance = CrxPackageManager::ServiceResponseRequest.new
35
+ end
36
+
37
+ after do
38
+ # run after each test
39
+ end
40
+
41
+ describe 'test an instance of ServiceResponseRequest' do
42
+ it 'should create an instact of ServiceResponseRequest' do
43
+ expect(@instance).to be_instance_of(CrxPackageManager::ServiceResponseRequest)
44
+ end
45
+ end
46
+ describe 'test attribute "param"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
52
+ end
53
+
@@ -0,0 +1,59 @@
1
+ =begin
2
+ #CRX Package Manager API
3
+
4
+ #API for interacting with the CRX Package Manager in AEM.
5
+
6
+ OpenAPI spec version: 6.2.0
7
+ Contact: bryan.stopp@gmail.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+
10
+ Licensed under the Apache License, Version 2.0 (the "License");
11
+ you may not use this file except in compliance with the License.
12
+ You may obtain a copy of the License at
13
+
14
+ http://www.apache.org/licenses/LICENSE-2.0
15
+
16
+ Unless required by applicable law or agreed to in writing, software
17
+ distributed under the License is distributed on an "AS IS" BASIS,
18
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
+ See the License for the specific language governing permissions and
20
+ limitations under the License.
21
+
22
+ =end
23
+
24
+ require 'spec_helper'
25
+ require 'json'
26
+ require 'date'
27
+
28
+ # Unit tests for CrxPackageManager::ServiceResponseResponse
29
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
30
+ # Please update as you see appropriate
31
+ describe 'ServiceResponseResponse' do
32
+ before do
33
+ # run before each test
34
+ @instance = CrxPackageManager::ServiceResponseResponse.new
35
+ end
36
+
37
+ after do
38
+ # run after each test
39
+ end
40
+
41
+ describe 'test an instance of ServiceResponseResponse' do
42
+ it 'should create an instact of ServiceResponseResponse' do
43
+ expect(@instance).to be_instance_of(CrxPackageManager::ServiceResponseResponse)
44
+ end
45
+ end
46
+ describe 'test attribute "data"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "status"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
58
+ end
59
+
@@ -0,0 +1,77 @@
1
+ =begin
2
+ #CRX Package Manager API
3
+
4
+ #API for interacting with the CRX Package Manager in AEM.
5
+
6
+ OpenAPI spec version: 6.2.0
7
+ Contact: bryan.stopp@gmail.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+
10
+ Licensed under the Apache License, Version 2.0 (the "License");
11
+ you may not use this file except in compliance with the License.
12
+ You may obtain a copy of the License at
13
+
14
+ http://www.apache.org/licenses/LICENSE-2.0
15
+
16
+ Unless required by applicable law or agreed to in writing, software
17
+ distributed under the License is distributed on an "AS IS" BASIS,
18
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
+ See the License for the specific language governing permissions and
20
+ limitations under the License.
21
+
22
+ =end
23
+
24
+ require 'spec_helper'
25
+ require 'json'
26
+ require 'date'
27
+
28
+ # Unit tests for CrxPackageManager::ServiceResponse
29
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
30
+ # Please update as you see appropriate
31
+ describe 'ServiceResponse' do
32
+ before do
33
+ # run before each test
34
+ @instance = CrxPackageManager::ServiceResponse.new
35
+ end
36
+
37
+ after do
38
+ # run after each test
39
+ end
40
+
41
+ describe 'test an instance of ServiceResponse' do
42
+ it 'should create an instact of ServiceResponse' do
43
+ expect(@instance).to be_instance_of(CrxPackageManager::ServiceResponse)
44
+ end
45
+ end
46
+ describe 'test attribute "version"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "user"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
58
+ describe 'test attribute "workspace"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
61
+ end
62
+ end
63
+
64
+ describe 'test attribute "request"' do
65
+ it 'should work' do
66
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
67
+ end
68
+ end
69
+
70
+ describe 'test attribute "response"' do
71
+ it 'should work' do
72
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
73
+ end
74
+ end
75
+
76
+ end
77
+
@@ -0,0 +1,65 @@
1
+ =begin
2
+ #CRX Package Manager API
3
+
4
+ #API for interacting with the CRX Package Manager in AEM.
5
+
6
+ OpenAPI spec version: 6.2.0
7
+ Contact: bryan.stopp@gmail.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+
10
+ Licensed under the Apache License, Version 2.0 (the "License");
11
+ you may not use this file except in compliance with the License.
12
+ You may obtain a copy of the License at
13
+
14
+ http://www.apache.org/licenses/LICENSE-2.0
15
+
16
+ Unless required by applicable law or agreed to in writing, software
17
+ distributed under the License is distributed on an "AS IS" BASIS,
18
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
+ See the License for the specific language governing permissions and
20
+ limitations under the License.
21
+
22
+ =end
23
+
24
+ require 'spec_helper'
25
+ require 'json'
26
+ require 'date'
27
+
28
+ # Unit tests for CrxPackageManager::UpdateStatus
29
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
30
+ # Please update as you see appropriate
31
+ describe 'UpdateStatus' do
32
+ before do
33
+ # run before each test
34
+ @instance = CrxPackageManager::UpdateStatus.new
35
+ end
36
+
37
+ after do
38
+ # run after each test
39
+ end
40
+
41
+ describe 'test an instance of UpdateStatus' do
42
+ it 'should create an instact of UpdateStatus' do
43
+ expect(@instance).to be_instance_of(CrxPackageManager::UpdateStatus)
44
+ end
45
+ end
46
+ describe 'test attribute "success"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "msg"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
58
+ describe 'test attribute "path"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
61
+ end
62
+ end
63
+
64
+ end
65
+
@@ -3,7 +3,7 @@
3
3
 
4
4
  #API for interacting with the CRX Package Manager in AEM.
5
5
 
6
- OpenAPI spec version: 1.0.0
6
+ OpenAPI spec version: 6.2.0
7
7
  Contact: bryan.stopp@gmail.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -22,8 +22,17 @@ limitations under the License.
22
22
  =end
23
23
 
24
24
  # load the gem
25
+ require 'simplecov'
26
+ SimpleCov.start do
27
+ add_filter '/spec/'
28
+ end
29
+
25
30
  require 'crx_packmgr_api_client'
26
31
 
32
+ require 'rubygems'
33
+ require 'rspec/mocks'
34
+ require 'webmock/rspec'
35
+
27
36
  # The following was generated by the `rspec --init` command. Conventionally, all
28
37
  # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
29
38
  # The generated `.rspec` file contains `--require spec_helper` which will cause
@@ -0,0 +1,19 @@
1
+
2
+ require 'crx_packmgr_api_client'
3
+
4
+ require 'rubygems'
5
+ require 'rspec/mocks'
6
+
7
+ WebMock.disable!
8
+
9
+ RSpec.configure do |config|
10
+
11
+ config.expect_with :rspec do |expectations|
12
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
13
+ end
14
+
15
+ config.mock_with :rspec do |mocks|
16
+ mocks.verify_partial_doubles = true
17
+ end
18
+
19
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: crx_packmgr_api_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Swagger-Codegen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-24 00:00:00.000000000 Z
11
+ date: 2016-12-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -96,20 +96,20 @@ dependencies:
96
96
  requirements:
97
97
  - - "~>"
98
98
  - !ruby/object:Gem::Version
99
- version: '1.24'
99
+ version: '2.3'
100
100
  - - ">="
101
101
  - !ruby/object:Gem::Version
102
- version: 1.24.3
102
+ version: 2.3.1
103
103
  type: :development
104
104
  prerelease: false
105
105
  version_requirements: !ruby/object:Gem::Requirement
106
106
  requirements:
107
107
  - - "~>"
108
108
  - !ruby/object:Gem::Version
109
- version: '1.24'
109
+ version: '2.3'
110
110
  - - ">="
111
111
  - !ruby/object:Gem::Version
112
- version: 1.24.3
112
+ version: 2.3.1
113
113
  - !ruby/object:Gem::Dependency
114
114
  name: autotest
115
115
  requirement: !ruby/object:Gem::Requirement
@@ -190,6 +190,48 @@ dependencies:
190
190
  - - ">="
191
191
  - !ruby/object:Gem::Version
192
192
  version: 0.2.11
193
+ - !ruby/object:Gem::Dependency
194
+ name: rubocop
195
+ requirement: !ruby/object:Gem::Requirement
196
+ requirements:
197
+ - - ">="
198
+ - !ruby/object:Gem::Version
199
+ version: '0'
200
+ type: :development
201
+ prerelease: false
202
+ version_requirements: !ruby/object:Gem::Requirement
203
+ requirements:
204
+ - - ">="
205
+ - !ruby/object:Gem::Version
206
+ version: '0'
207
+ - !ruby/object:Gem::Dependency
208
+ name: simplecov
209
+ requirement: !ruby/object:Gem::Requirement
210
+ requirements:
211
+ - - ">="
212
+ - !ruby/object:Gem::Version
213
+ version: '0'
214
+ type: :development
215
+ prerelease: false
216
+ version_requirements: !ruby/object:Gem::Requirement
217
+ requirements:
218
+ - - ">="
219
+ - !ruby/object:Gem::Version
220
+ version: '0'
221
+ - !ruby/object:Gem::Dependency
222
+ name: codeclimate-test-reporter
223
+ requirement: !ruby/object:Gem::Requirement
224
+ requirements:
225
+ - - ">="
226
+ - !ruby/object:Gem::Version
227
+ version: '0'
228
+ type: :development
229
+ prerelease: false
230
+ version_requirements: !ruby/object:Gem::Requirement
231
+ requirements:
232
+ - - ">="
233
+ - !ruby/object:Gem::Version
234
+ version: '0'
193
235
  description: API for interacting with the CRX Package Manager in AEM.
194
236
  email:
195
237
  - bryan.stopp@gmail.com
@@ -199,34 +241,80 @@ extra_rdoc_files: []
199
241
  files:
200
242
  - LICENSE
201
243
  - README.md
244
+ - crx_packmgr_api_client-0.2.0.gem
202
245
  - crx_packmgr_api_client.gemspec
203
246
  - docs/DefaultApi.md
204
- - docs/InlineResponse200.md
247
+ - docs/Filter.md
248
+ - docs/FilterRule.md
249
+ - docs/Group.md
250
+ - docs/GroupList.md
251
+ - docs/InitData.md
252
+ - docs/InstallStatus.md
253
+ - docs/InstallStatusStatus.md
205
254
  - docs/Package.md
206
- - docs/PackageFilter.md
207
255
  - docs/PackageList.md
256
+ - docs/ServiceResponse.md
257
+ - docs/ServiceResponseRequest.md
258
+ - docs/ServiceResponseRequestParam.md
259
+ - docs/ServiceResponseResponse.md
260
+ - docs/UpdateStatus.md
208
261
  - git_push.sh
209
262
  - lib/crx_packmgr_api_client.rb
210
263
  - lib/crx_packmgr_api_client/api/default_api.rb
211
264
  - lib/crx_packmgr_api_client/api_client.rb
212
265
  - lib/crx_packmgr_api_client/api_error.rb
213
266
  - lib/crx_packmgr_api_client/configuration.rb
214
- - lib/crx_packmgr_api_client/models/inline_response_200.rb
267
+ - lib/crx_packmgr_api_client/models/filter.rb
268
+ - lib/crx_packmgr_api_client/models/filter_rule.rb
269
+ - lib/crx_packmgr_api_client/models/group.rb
270
+ - lib/crx_packmgr_api_client/models/group_list.rb
271
+ - lib/crx_packmgr_api_client/models/init_data.rb
272
+ - lib/crx_packmgr_api_client/models/install_status.rb
273
+ - lib/crx_packmgr_api_client/models/install_status_status.rb
215
274
  - lib/crx_packmgr_api_client/models/package.rb
216
- - lib/crx_packmgr_api_client/models/package_filter.rb
217
275
  - lib/crx_packmgr_api_client/models/package_list.rb
276
+ - lib/crx_packmgr_api_client/models/service_response.rb
277
+ - lib/crx_packmgr_api_client/models/service_response_request.rb
278
+ - lib/crx_packmgr_api_client/models/service_response_request_param.rb
279
+ - lib/crx_packmgr_api_client/models/service_response_response.rb
280
+ - lib/crx_packmgr_api_client/models/update_status.rb
218
281
  - lib/crx_packmgr_api_client/version.rb
282
+ - spec/acceptance/default_api_spec.rb
219
283
  - spec/api/default_api_spec.rb
284
+ - spec/api/download_api_spec.rb
285
+ - spec/api/groups_api_spec.rb
286
+ - spec/api/init_api_spec.rb
287
+ - spec/api/installstatus_api_spec.rb
288
+ - spec/api/list_api_spec.rb
289
+ - spec/api/screenshot_api_spec.rb
290
+ - spec/api/service_api_spec.rb
291
+ - spec/api/thumbnail_api_spec.rb
220
292
  - spec/api_client_spec.rb
221
293
  - spec/configuration_spec.rb
222
- - spec/models/inline_response_200_spec.rb
223
- - spec/models/package_filter_spec.rb
294
+ - spec/files/list.json
295
+ - spec/files/service_response.txt
296
+ - spec/files/service_response1.txt
297
+ - spec/files/test-1.0.0.zip
298
+ - spec/files/thumbnail.png
299
+ - spec/models/filter_rule_spec.rb
300
+ - spec/models/filter_spec.rb
301
+ - spec/models/group_list_spec.rb
302
+ - spec/models/group_spec.rb
303
+ - spec/models/init_data_spec.rb
304
+ - spec/models/install_status_spec.rb
305
+ - spec/models/install_status_status_spec.rb
224
306
  - spec/models/package_list_spec.rb
225
307
  - spec/models/package_spec.rb
308
+ - spec/models/service_response_request_param_spec.rb
309
+ - spec/models/service_response_request_spec.rb
310
+ - spec/models/service_response_response_spec.rb
311
+ - spec/models/service_response_spec.rb
312
+ - spec/models/update_status_spec.rb
226
313
  - spec/spec_helper.rb
227
- homepage: https://github.com/swagger-api/swagger-codegen
314
+ - spec/spec_helper_acceptance.rb
315
+ homepage: https://github.com/bstopp/crx-packmgr-api-client-gem
228
316
  licenses:
229
- - Apache 2.0
317
+ - Apache-2.0
230
318
  metadata: {}
231
319
  post_install_message:
232
320
  rdoc_options: []
@@ -236,7 +324,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
236
324
  requirements:
237
325
  - - ">="
238
326
  - !ruby/object:Gem::Version
239
- version: '0'
327
+ version: '1.9'
240
328
  required_rubygems_version: !ruby/object:Gem::Requirement
241
329
  requirements:
242
330
  - - ">="
@@ -249,11 +337,36 @@ signing_key:
249
337
  specification_version: 4
250
338
  summary: CRX Package Manager API Ruby Gem
251
339
  test_files:
340
+ - spec/acceptance/default_api_spec.rb
252
341
  - spec/api/default_api_spec.rb
342
+ - spec/api/download_api_spec.rb
343
+ - spec/api/groups_api_spec.rb
344
+ - spec/api/init_api_spec.rb
345
+ - spec/api/installstatus_api_spec.rb
346
+ - spec/api/list_api_spec.rb
347
+ - spec/api/screenshot_api_spec.rb
348
+ - spec/api/service_api_spec.rb
349
+ - spec/api/thumbnail_api_spec.rb
253
350
  - spec/api_client_spec.rb
254
351
  - spec/configuration_spec.rb
255
- - spec/models/inline_response_200_spec.rb
256
- - spec/models/package_filter_spec.rb
352
+ - spec/files/list.json
353
+ - spec/files/service_response.txt
354
+ - spec/files/service_response1.txt
355
+ - spec/files/test-1.0.0.zip
356
+ - spec/files/thumbnail.png
357
+ - spec/models/filter_rule_spec.rb
358
+ - spec/models/filter_spec.rb
359
+ - spec/models/group_list_spec.rb
360
+ - spec/models/group_spec.rb
361
+ - spec/models/init_data_spec.rb
362
+ - spec/models/install_status_spec.rb
363
+ - spec/models/install_status_status_spec.rb
257
364
  - spec/models/package_list_spec.rb
258
365
  - spec/models/package_spec.rb
366
+ - spec/models/service_response_request_param_spec.rb
367
+ - spec/models/service_response_request_spec.rb
368
+ - spec/models/service_response_response_spec.rb
369
+ - spec/models/service_response_spec.rb
370
+ - spec/models/update_status_spec.rb
259
371
  - spec/spec_helper.rb
372
+ - spec/spec_helper_acceptance.rb