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.
- checksums.yaml +4 -4
 - data/README.md +31 -31
 - data/VERSION +1 -1
 - data/docs/App.md +1 -1
 - data/docs/AppWrapper.md +1 -1
 - data/docs/AppsApi.md +13 -13
 - data/docs/AppsWrapper.md +1 -1
 - data/docs/Error.md +1 -1
 - data/docs/ErrorBody.md +1 -1
 - data/docs/NewTask.md +1 -1
 - data/docs/Route.md +1 -1
 - data/docs/RouteWrapper.md +1 -1
 - data/docs/RoutesApi.md +13 -13
 - data/docs/RoutesWrapper.md +1 -1
 - data/docs/Task.md +1 -1
 - data/docs/TaskWrapper.md +1 -1
 - data/docs/TasksApi.md +3 -3
 - data/docs/Version.md +1 -1
 - data/docs/VersionApi.md +3 -3
 - data/fn_ruby-0.1.29.gem +0 -0
 - data/fn_ruby.gemspec +3 -3
 - data/lib/fn_ruby/api/apps_api.rb +1 -1
 - data/lib/fn_ruby/api/routes_api.rb +1 -1
 - data/lib/fn_ruby/api/tasks_api.rb +1 -1
 - data/lib/fn_ruby/api/version_api.rb +1 -1
 - data/lib/fn_ruby/api_client.rb +2 -2
 - data/lib/fn_ruby/api_error.rb +1 -1
 - data/lib/fn_ruby/configuration.rb +1 -1
 - data/lib/fn_ruby/models/app.rb +2 -2
 - data/lib/fn_ruby/models/app_wrapper.rb +2 -2
 - data/lib/fn_ruby/models/apps_wrapper.rb +2 -2
 - data/lib/fn_ruby/models/error.rb +2 -2
 - data/lib/fn_ruby/models/error_body.rb +2 -2
 - data/lib/fn_ruby/models/new_task.rb +2 -2
 - data/lib/fn_ruby/models/route.rb +2 -2
 - data/lib/fn_ruby/models/route_wrapper.rb +2 -2
 - data/lib/fn_ruby/models/routes_wrapper.rb +2 -2
 - data/lib/fn_ruby/models/task.rb +2 -2
 - data/lib/fn_ruby/models/task_wrapper.rb +2 -2
 - data/lib/fn_ruby/models/version.rb +2 -2
 - data/lib/fn_ruby/version.rb +2 -2
 - data/lib/fn_ruby.rb +2 -2
 - data/spec/api/apps_api_spec.rb +3 -3
 - data/spec/api/routes_api_spec.rb +3 -3
 - data/spec/api/tasks_api_spec.rb +3 -3
 - data/spec/api/version_api_spec.rb +3 -3
 - data/spec/api_client_spec.rb +29 -29
 - data/spec/configuration_spec.rb +3 -3
 - data/spec/models/app_spec.rb +3 -3
 - data/spec/models/app_wrapper_spec.rb +3 -3
 - data/spec/models/apps_wrapper_spec.rb +3 -3
 - data/spec/models/error_body_spec.rb +3 -3
 - data/spec/models/error_spec.rb +3 -3
 - data/spec/models/new_task_spec.rb +3 -3
 - data/spec/models/route_spec.rb +3 -3
 - data/spec/models/route_wrapper_spec.rb +3 -3
 - data/spec/models/routes_wrapper_spec.rb +3 -3
 - data/spec/models/task_spec.rb +3 -3
 - data/spec/models/task_wrapper_spec.rb +3 -3
 - data/spec/models/version_spec.rb +3 -3
 - metadata +4 -3
 
    
        data/spec/models/task_spec.rb
    CHANGED
    
    | 
         @@ -14,13 +14,13 @@ require 'spec_helper' 
     | 
|
| 
       14 
14 
     | 
    
         
             
            require 'json'
         
     | 
| 
       15 
15 
     | 
    
         
             
            require 'date'
         
     | 
| 
       16 
16 
     | 
    
         | 
| 
       17 
     | 
    
         
            -
            # Unit tests for  
     | 
| 
      
 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 =  
     | 
| 
      
 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( 
     | 
| 
      
 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  
     | 
| 
      
 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 =  
     | 
| 
      
 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( 
     | 
| 
      
 32 
     | 
    
         
            +
                  expect(@instance).to be_instance_of(Fn::TaskWrapper)
         
     | 
| 
       33 
33 
     | 
    
         
             
                end
         
     | 
| 
       34 
34 
     | 
    
         
             
              end
         
     | 
| 
       35 
35 
     | 
    
         
             
              describe 'test attribute "task"' do
         
     | 
    
        data/spec/models/version_spec.rb
    CHANGED
    
    | 
         @@ -14,13 +14,13 @@ require 'spec_helper' 
     | 
|
| 
       14 
14 
     | 
    
         
             
            require 'json'
         
     | 
| 
       15 
15 
     | 
    
         
             
            require 'date'
         
     | 
| 
       16 
16 
     | 
    
         | 
| 
       17 
     | 
    
         
            -
            # Unit tests for  
     | 
| 
      
 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 =  
     | 
| 
      
 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( 
     | 
| 
      
 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. 
     | 
| 
      
 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  
     | 
| 
      
 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  
     | 
| 
      
 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
         
     |