fn_ruby 0.1.29 → 0.1.30

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 (61) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +31 -31
  3. data/VERSION +1 -1
  4. data/docs/App.md +1 -1
  5. data/docs/AppWrapper.md +1 -1
  6. data/docs/AppsApi.md +13 -13
  7. data/docs/AppsWrapper.md +1 -1
  8. data/docs/Error.md +1 -1
  9. data/docs/ErrorBody.md +1 -1
  10. data/docs/NewTask.md +1 -1
  11. data/docs/Route.md +1 -1
  12. data/docs/RouteWrapper.md +1 -1
  13. data/docs/RoutesApi.md +13 -13
  14. data/docs/RoutesWrapper.md +1 -1
  15. data/docs/Task.md +1 -1
  16. data/docs/TaskWrapper.md +1 -1
  17. data/docs/TasksApi.md +3 -3
  18. data/docs/Version.md +1 -1
  19. data/docs/VersionApi.md +3 -3
  20. data/fn_ruby-0.1.29.gem +0 -0
  21. data/fn_ruby.gemspec +3 -3
  22. data/lib/fn_ruby/api/apps_api.rb +1 -1
  23. data/lib/fn_ruby/api/routes_api.rb +1 -1
  24. data/lib/fn_ruby/api/tasks_api.rb +1 -1
  25. data/lib/fn_ruby/api/version_api.rb +1 -1
  26. data/lib/fn_ruby/api_client.rb +2 -2
  27. data/lib/fn_ruby/api_error.rb +1 -1
  28. data/lib/fn_ruby/configuration.rb +1 -1
  29. data/lib/fn_ruby/models/app.rb +2 -2
  30. data/lib/fn_ruby/models/app_wrapper.rb +2 -2
  31. data/lib/fn_ruby/models/apps_wrapper.rb +2 -2
  32. data/lib/fn_ruby/models/error.rb +2 -2
  33. data/lib/fn_ruby/models/error_body.rb +2 -2
  34. data/lib/fn_ruby/models/new_task.rb +2 -2
  35. data/lib/fn_ruby/models/route.rb +2 -2
  36. data/lib/fn_ruby/models/route_wrapper.rb +2 -2
  37. data/lib/fn_ruby/models/routes_wrapper.rb +2 -2
  38. data/lib/fn_ruby/models/task.rb +2 -2
  39. data/lib/fn_ruby/models/task_wrapper.rb +2 -2
  40. data/lib/fn_ruby/models/version.rb +2 -2
  41. data/lib/fn_ruby/version.rb +2 -2
  42. data/lib/fn_ruby.rb +2 -2
  43. data/spec/api/apps_api_spec.rb +3 -3
  44. data/spec/api/routes_api_spec.rb +3 -3
  45. data/spec/api/tasks_api_spec.rb +3 -3
  46. data/spec/api/version_api_spec.rb +3 -3
  47. data/spec/api_client_spec.rb +29 -29
  48. data/spec/configuration_spec.rb +3 -3
  49. data/spec/models/app_spec.rb +3 -3
  50. data/spec/models/app_wrapper_spec.rb +3 -3
  51. data/spec/models/apps_wrapper_spec.rb +3 -3
  52. data/spec/models/error_body_spec.rb +3 -3
  53. data/spec/models/error_spec.rb +3 -3
  54. data/spec/models/new_task_spec.rb +3 -3
  55. data/spec/models/route_spec.rb +3 -3
  56. data/spec/models/route_wrapper_spec.rb +3 -3
  57. data/spec/models/routes_wrapper_spec.rb +3 -3
  58. data/spec/models/task_spec.rb +3 -3
  59. data/spec/models/task_wrapper_spec.rb +3 -3
  60. data/spec/models/version_spec.rb +3 -3
  61. metadata +4 -3
@@ -14,13 +14,13 @@ require 'spec_helper'
14
14
  require 'json'
15
15
  require 'date'
16
16
 
17
- # Unit tests for OracleFunctions::Task
17
+ # Unit tests for Fn::Task
18
18
  # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
19
  # Please update as you see appropriate
20
20
  describe 'Task' do
21
21
  before do
22
22
  # run before each test
23
- @instance = OracleFunctions::Task.new
23
+ @instance = Fn::Task.new
24
24
  end
25
25
 
26
26
  after do
@@ -29,7 +29,7 @@ describe 'Task' do
29
29
 
30
30
  describe 'test an instance of Task' do
31
31
  it 'should create an instance of Task' do
32
- expect(@instance).to be_instance_of(OracleFunctions::Task)
32
+ expect(@instance).to be_instance_of(Fn::Task)
33
33
  end
34
34
  end
35
35
  describe 'test attribute "image"' do
@@ -14,13 +14,13 @@ require 'spec_helper'
14
14
  require 'json'
15
15
  require 'date'
16
16
 
17
- # Unit tests for OracleFunctions::TaskWrapper
17
+ # Unit tests for Fn::TaskWrapper
18
18
  # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
19
  # Please update as you see appropriate
20
20
  describe 'TaskWrapper' do
21
21
  before do
22
22
  # run before each test
23
- @instance = OracleFunctions::TaskWrapper.new
23
+ @instance = Fn::TaskWrapper.new
24
24
  end
25
25
 
26
26
  after do
@@ -29,7 +29,7 @@ describe 'TaskWrapper' do
29
29
 
30
30
  describe 'test an instance of TaskWrapper' do
31
31
  it 'should create an instance of TaskWrapper' do
32
- expect(@instance).to be_instance_of(OracleFunctions::TaskWrapper)
32
+ expect(@instance).to be_instance_of(Fn::TaskWrapper)
33
33
  end
34
34
  end
35
35
  describe 'test attribute "task"' do
@@ -14,13 +14,13 @@ require 'spec_helper'
14
14
  require 'json'
15
15
  require 'date'
16
16
 
17
- # Unit tests for OracleFunctions::Version
17
+ # Unit tests for Fn::Version
18
18
  # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
19
  # Please update as you see appropriate
20
20
  describe 'Version' do
21
21
  before do
22
22
  # run before each test
23
- @instance = OracleFunctions::Version.new
23
+ @instance = Fn::Version.new
24
24
  end
25
25
 
26
26
  after do
@@ -29,7 +29,7 @@ describe 'Version' do
29
29
 
30
30
  describe 'test an instance of Version' do
31
31
  it 'should create an instance of Version' do
32
- expect(@instance).to be_instance_of(OracleFunctions::Version)
32
+ expect(@instance).to be_instance_of(Fn::Version)
33
33
  end
34
34
  end
35
35
  describe 'test attribute "version"' do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fn_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.29
4
+ version: 0.1.30
5
5
  platform: ruby
6
6
  authors:
7
7
  - Swagger-Codegen
@@ -190,7 +190,7 @@ dependencies:
190
190
  - - ">="
191
191
  - !ruby/object:Gem::Version
192
192
  version: 0.2.12
193
- description: Ruby gem for Oracle Functions.
193
+ description: Ruby gem for Fn Project.
194
194
  email:
195
195
  - treeder@gmail.com
196
196
  executables: []
@@ -218,6 +218,7 @@ files:
218
218
  - docs/TasksApi.md
219
219
  - docs/Version.md
220
220
  - docs/VersionApi.md
221
+ - fn_ruby-0.1.29.gem
221
222
  - fn_ruby.gemspec
222
223
  - git_push.sh
223
224
  - lib/fn_ruby.rb
@@ -282,7 +283,7 @@ rubyforge_project:
282
283
  rubygems_version: 2.6.11
283
284
  signing_key:
284
285
  specification_version: 4
285
- summary: Ruby gem for Oracle Functions
286
+ summary: Ruby gem for Fn Project
286
287
  test_files:
287
288
  - spec/api/apps_api_spec.rb
288
289
  - spec/api/routes_api_spec.rb