iron_functions 0.0.5 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (63) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +0 -0
  3. data/README.md +8 -9
  4. data/VERSION +1 -1
  5. data/docs/App.md +1 -0
  6. data/docs/AppWrapper.md +0 -0
  7. data/docs/AppsApi.md +0 -0
  8. data/docs/AppsWrapper.md +0 -0
  9. data/docs/Error.md +0 -0
  10. data/docs/ErrorBody.md +0 -0
  11. data/docs/NewTask.md +9 -0
  12. data/docs/NewTasksWrapper.md +0 -0
  13. data/docs/Route.md +3 -0
  14. data/docs/RouteWrapper.md +2 -0
  15. data/docs/RoutesApi.md +4 -4
  16. data/docs/RoutesWrapper.md +0 -1
  17. data/docs/Task.md +2 -0
  18. data/docs/TaskWrapper.md +0 -0
  19. data/docs/TasksApi.md +2 -2
  20. data/docs/TasksWrapper.md +0 -0
  21. data/git_push.sh +0 -0
  22. data/iron_functions.gemspec +3 -3
  23. data/lib/iron_functions.rb +3 -4
  24. data/lib/iron_functions/api/apps_api.rb +2 -2
  25. data/lib/iron_functions/api/routes_api.rb +7 -7
  26. data/lib/iron_functions/api/tasks_api.rb +5 -5
  27. data/lib/iron_functions/api_client.rb +2 -2
  28. data/lib/iron_functions/api_error.rb +2 -2
  29. data/lib/iron_functions/configuration.rb +2 -2
  30. data/lib/iron_functions/models/app.rb +18 -6
  31. data/lib/iron_functions/models/app_wrapper.rb +2 -2
  32. data/lib/iron_functions/models/apps_wrapper.rb +2 -2
  33. data/lib/iron_functions/models/error.rb +2 -2
  34. data/lib/iron_functions/models/error_body.rb +2 -2
  35. data/lib/iron_functions/models/new_task.rb +211 -0
  36. data/lib/iron_functions/models/new_tasks_wrapper.rb +1 -1
  37. data/lib/iron_functions/models/route.rb +71 -6
  38. data/lib/iron_functions/models/route_wrapper.rb +21 -3
  39. data/lib/iron_functions/models/routes_wrapper.rb +3 -13
  40. data/lib/iron_functions/models/task.rb +24 -3
  41. data/lib/iron_functions/models/task_wrapper.rb +2 -2
  42. data/lib/iron_functions/models/tasks_wrapper.rb +1 -1
  43. data/lib/iron_functions/version.rb +3 -3
  44. data/spec/api/apps_api_spec.rb +2 -2
  45. data/spec/api/routes_api_spec.rb +4 -4
  46. data/spec/api/tasks_api_spec.rb +3 -3
  47. data/spec/api_client_spec.rb +2 -2
  48. data/spec/configuration_spec.rb +2 -2
  49. data/spec/models/app_spec.rb +8 -2
  50. data/spec/models/app_wrapper_spec.rb +2 -2
  51. data/spec/models/apps_wrapper_spec.rb +2 -2
  52. data/spec/models/error_body_spec.rb +2 -2
  53. data/spec/models/error_spec.rb +2 -2
  54. data/spec/models/new_task_spec.rb +59 -0
  55. data/spec/models/new_tasks_wrapper_spec.rb +1 -1
  56. data/spec/models/route_spec.rb +24 -2
  57. data/spec/models/route_wrapper_spec.rb +14 -2
  58. data/spec/models/routes_wrapper_spec.rb +2 -8
  59. data/spec/models/task_spec.rb +14 -2
  60. data/spec/models/task_wrapper_spec.rb +2 -2
  61. data/spec/models/tasks_wrapper_spec.rb +1 -1
  62. data/spec/spec_helper.rb +2 -2
  63. metadata +11 -7
@@ -1,9 +1,9 @@
1
1
  =begin
2
2
  #IronFunctions
3
3
 
4
- #null
4
+ #The open source serverless platform.
5
5
 
6
- OpenAPI spec version: 0.0.5
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
- #null
4
+ #The open source serverless platform.
5
5
 
6
- OpenAPI spec version: 0.0.5
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
@@ -1,9 +1,9 @@
1
1
  =begin
2
2
  #IronFunctions
3
3
 
4
- #null
4
+ #The open source serverless platform.
5
5
 
6
- OpenAPI spec version: 0.0.5
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
@@ -1,9 +1,9 @@
1
1
  =begin
2
2
  #IronFunctions
3
3
 
4
- #null
4
+ #The open source serverless platform.
5
5
 
6
- OpenAPI spec version: 0.0.5
6
+ OpenAPI spec version: 0.1.0
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -3,7 +3,7 @@
3
3
 
4
4
  #null
5
5
 
6
- OpenAPI spec version: 0.0.5
6
+ OpenAPI spec version: 0.0.4
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
@@ -1,9 +1,9 @@
1
1
  =begin
2
2
  #IronFunctions
3
3
 
4
- #null
4
+ #The open source serverless platform.
5
5
 
6
- OpenAPI spec version: 0.0.5
6
+ OpenAPI spec version: 0.1.0
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
 
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.5
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-10-14 00:00:00.000000000 Z
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 2.0
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.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/routes_wrapper_spec.rb
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