iron_functions 0.0.5 → 0.1.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/LICENSE +0 -0
- data/README.md +8 -9
- data/VERSION +1 -1
- data/docs/App.md +1 -0
- data/docs/AppWrapper.md +0 -0
- data/docs/AppsApi.md +0 -0
- data/docs/AppsWrapper.md +0 -0
- data/docs/Error.md +0 -0
- data/docs/ErrorBody.md +0 -0
- data/docs/NewTask.md +9 -0
- data/docs/NewTasksWrapper.md +0 -0
- data/docs/Route.md +3 -0
- data/docs/RouteWrapper.md +2 -0
- data/docs/RoutesApi.md +4 -4
- data/docs/RoutesWrapper.md +0 -1
- data/docs/Task.md +2 -0
- data/docs/TaskWrapper.md +0 -0
- data/docs/TasksApi.md +2 -2
- data/docs/TasksWrapper.md +0 -0
- data/git_push.sh +0 -0
- data/iron_functions.gemspec +3 -3
- data/lib/iron_functions.rb +3 -4
- data/lib/iron_functions/api/apps_api.rb +2 -2
- data/lib/iron_functions/api/routes_api.rb +7 -7
- data/lib/iron_functions/api/tasks_api.rb +5 -5
- data/lib/iron_functions/api_client.rb +2 -2
- data/lib/iron_functions/api_error.rb +2 -2
- data/lib/iron_functions/configuration.rb +2 -2
- data/lib/iron_functions/models/app.rb +18 -6
- data/lib/iron_functions/models/app_wrapper.rb +2 -2
- data/lib/iron_functions/models/apps_wrapper.rb +2 -2
- data/lib/iron_functions/models/error.rb +2 -2
- data/lib/iron_functions/models/error_body.rb +2 -2
- data/lib/iron_functions/models/new_task.rb +211 -0
- data/lib/iron_functions/models/new_tasks_wrapper.rb +1 -1
- data/lib/iron_functions/models/route.rb +71 -6
- data/lib/iron_functions/models/route_wrapper.rb +21 -3
- data/lib/iron_functions/models/routes_wrapper.rb +3 -13
- data/lib/iron_functions/models/task.rb +24 -3
- data/lib/iron_functions/models/task_wrapper.rb +2 -2
- data/lib/iron_functions/models/tasks_wrapper.rb +1 -1
- data/lib/iron_functions/version.rb +3 -3
- data/spec/api/apps_api_spec.rb +2 -2
- data/spec/api/routes_api_spec.rb +4 -4
- data/spec/api/tasks_api_spec.rb +3 -3
- data/spec/api_client_spec.rb +2 -2
- data/spec/configuration_spec.rb +2 -2
- data/spec/models/app_spec.rb +8 -2
- data/spec/models/app_wrapper_spec.rb +2 -2
- data/spec/models/apps_wrapper_spec.rb +2 -2
- data/spec/models/error_body_spec.rb +2 -2
- data/spec/models/error_spec.rb +2 -2
- data/spec/models/new_task_spec.rb +59 -0
- data/spec/models/new_tasks_wrapper_spec.rb +1 -1
- data/spec/models/route_spec.rb +24 -2
- data/spec/models/route_wrapper_spec.rb +14 -2
- data/spec/models/routes_wrapper_spec.rb +2 -8
- data/spec/models/task_spec.rb +14 -2
- data/spec/models/task_wrapper_spec.rb +2 -2
- data/spec/models/tasks_wrapper_spec.rb +1 -1
- data/spec/spec_helper.rb +2 -2
- metadata +11 -7
@@ -1,9 +1,9 @@
|
|
1
1
|
=begin
|
2
2
|
#IronFunctions
|
3
3
|
|
4
|
-
#
|
4
|
+
#The open source serverless platform.
|
5
5
|
|
6
|
-
OpenAPI spec version: 0.0
|
6
|
+
OpenAPI spec version: 0.1.0
|
7
7
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
@@ -43,6 +43,18 @@ describe 'RouteWrapper' do
|
|
43
43
|
expect(@instance).to be_instance_of(IronFunctions::RouteWrapper)
|
44
44
|
end
|
45
45
|
end
|
46
|
+
describe 'test attribute "message"' 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 "error"' 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
|
+
|
46
58
|
describe 'test attribute "route"' do
|
47
59
|
it 'should work' do
|
48
60
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -1,9 +1,9 @@
|
|
1
1
|
=begin
|
2
2
|
#IronFunctions
|
3
3
|
|
4
|
-
#
|
4
|
+
#The open source serverless platform.
|
5
5
|
|
6
|
-
OpenAPI spec version: 0.0
|
6
|
+
OpenAPI spec version: 0.1.0
|
7
7
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
@@ -49,12 +49,6 @@ describe 'RoutesWrapper' do
|
|
49
49
|
end
|
50
50
|
end
|
51
51
|
|
52
|
-
describe 'test attribute "cursor"' 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
52
|
describe 'test attribute "error"' do
|
59
53
|
it 'should work' do
|
60
54
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
data/spec/models/task_spec.rb
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
=begin
|
2
2
|
#IronFunctions
|
3
3
|
|
4
|
-
#
|
4
|
+
#The open source serverless platform.
|
5
5
|
|
6
|
-
OpenAPI spec version: 0.0
|
6
|
+
OpenAPI spec version: 0.1.0
|
7
7
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
9
|
|
@@ -43,6 +43,18 @@ describe 'Task' do
|
|
43
43
|
expect(@instance).to be_instance_of(IronFunctions::Task)
|
44
44
|
end
|
45
45
|
end
|
46
|
+
describe 'test attribute "image"' 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 "payload"' 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
|
+
|
46
58
|
describe 'test attribute "group_name"' do
|
47
59
|
it 'should work' do
|
48
60
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: iron_functions
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.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
|
+
date: 2016-11-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -206,6 +206,7 @@ files:
|
|
206
206
|
- docs/AppsWrapper.md
|
207
207
|
- docs/Error.md
|
208
208
|
- docs/ErrorBody.md
|
209
|
+
- docs/NewTask.md
|
209
210
|
- docs/NewTasksWrapper.md
|
210
211
|
- docs/Route.md
|
211
212
|
- docs/RouteWrapper.md
|
@@ -229,6 +230,7 @@ files:
|
|
229
230
|
- lib/iron_functions/models/apps_wrapper.rb
|
230
231
|
- lib/iron_functions/models/error.rb
|
231
232
|
- lib/iron_functions/models/error_body.rb
|
233
|
+
- lib/iron_functions/models/new_task.rb
|
232
234
|
- lib/iron_functions/models/new_tasks_wrapper.rb
|
233
235
|
- lib/iron_functions/models/route.rb
|
234
236
|
- lib/iron_functions/models/route_wrapper.rb
|
@@ -247,6 +249,7 @@ files:
|
|
247
249
|
- spec/models/apps_wrapper_spec.rb
|
248
250
|
- spec/models/error_body_spec.rb
|
249
251
|
- spec/models/error_spec.rb
|
252
|
+
- spec/models/new_task_spec.rb
|
250
253
|
- spec/models/new_tasks_wrapper_spec.rb
|
251
254
|
- spec/models/route_spec.rb
|
252
255
|
- spec/models/route_wrapper_spec.rb
|
@@ -257,7 +260,7 @@ files:
|
|
257
260
|
- spec/spec_helper.rb
|
258
261
|
homepage: https://github.com/iron-io/functions_ruby
|
259
262
|
licenses:
|
260
|
-
- Apache
|
263
|
+
- Apache-2.0
|
261
264
|
metadata: {}
|
262
265
|
post_install_message:
|
263
266
|
rdoc_options: []
|
@@ -275,7 +278,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
275
278
|
version: '0'
|
276
279
|
requirements: []
|
277
280
|
rubyforge_project:
|
278
|
-
rubygems_version: 2.6.
|
281
|
+
rubygems_version: 2.6.8
|
279
282
|
signing_key:
|
280
283
|
specification_version: 4
|
281
284
|
summary: Ruby gem for IronFunctions
|
@@ -285,16 +288,17 @@ test_files:
|
|
285
288
|
- spec/api/tasks_api_spec.rb
|
286
289
|
- spec/api_client_spec.rb
|
287
290
|
- spec/configuration_spec.rb
|
291
|
+
- spec/models/apps_wrapper_spec.rb
|
288
292
|
- spec/models/app_spec.rb
|
289
293
|
- spec/models/app_wrapper_spec.rb
|
290
|
-
- spec/models/apps_wrapper_spec.rb
|
291
294
|
- spec/models/error_body_spec.rb
|
292
295
|
- spec/models/error_spec.rb
|
293
296
|
- spec/models/new_tasks_wrapper_spec.rb
|
297
|
+
- spec/models/new_task_spec.rb
|
298
|
+
- spec/models/routes_wrapper_spec.rb
|
294
299
|
- spec/models/route_spec.rb
|
295
300
|
- spec/models/route_wrapper_spec.rb
|
296
|
-
- spec/models/
|
301
|
+
- spec/models/tasks_wrapper_spec.rb
|
297
302
|
- spec/models/task_spec.rb
|
298
303
|
- spec/models/task_wrapper_spec.rb
|
299
|
-
- spec/models/tasks_wrapper_spec.rb
|
300
304
|
- spec/spec_helper.rb
|