vgs_api_client 0.0.1.alpha202302151737 → 0.0.1.alpha202302162017
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/VERSION +1 -1
 - data/lib/openapi_client/api_client.rb +1 -1
 - data/lib/openapi_client/version.rb +1 -1
 - data/lib/version.rb +1 -1
 - data/scripts/assemble/run.sh +1 -1
 - data/scripts/test/run.sh +1 -1
 - metadata +2 -2
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 7b340d81b1292e502ec112d80c3c4614bc1f1512a8e9fb868c8faa3f3370484f
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 16dfe6ba6ce1b9923b74958b58f4962c61cea0e5d9ce5b25a6d3471bd37d2b58
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: e54fff942c0e11e5a8d2d9c7fe5caa5183737c079e80130aae3a00ee91ecfc0d8f56abec80aad56e018acdf567522103354588ef317127438a6c3380064dd998
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 3de780eec168b5bab9ab1a9d9ab4ad233eba4c0d6a83419855daffb7f0c2e674a7c9bd1ad65a2124592a81dc8de37296f7e033a564206c5c2664acf635839ba7
         
     | 
    
        data/VERSION
    CHANGED
    
    | 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            0.0.1. 
     | 
| 
      
 1 
     | 
    
         
            +
            0.0.1.alpha202302162017
         
     | 
| 
         @@ -31,7 +31,7 @@ module VgsApiClient 
     | 
|
| 
       31 
31 
     | 
    
         
             
                # @option config [Configuration] Configuration for initializing the object, default to Configuration.default
         
     | 
| 
       32 
32 
     | 
    
         
             
                def initialize(config = Configuration.default)
         
     | 
| 
       33 
33 
     | 
    
         
             
                  @config = config
         
     | 
| 
       34 
     | 
    
         
            -
                  @user_agent = "vgs-api-client/0.0.1. 
     | 
| 
      
 34 
     | 
    
         
            +
                  @user_agent = "vgs-api-client/0.0.1.alpha202302162017/ruby"
         
     | 
| 
       35 
35 
     | 
    
         
             
                  @default_headers = {
         
     | 
| 
       36 
36 
     | 
    
         
             
                    'Content-Type' => 'application/json',
         
     | 
| 
       37 
37 
     | 
    
         
             
                    'User-Agent' => @user_agent
         
     | 
    
        data/lib/version.rb
    CHANGED
    
    
    
        data/scripts/assemble/run.sh
    CHANGED
    
    | 
         @@ -3,7 +3,7 @@ 
     | 
|
| 
       3 
3 
     | 
    
         
             
            LIB_VERSION=${LIB_VERSION:-0.0.1.alpha$(date "+%Y%m%d%H%M")}
         
     | 
| 
       4 
4 
     | 
    
         | 
| 
       5 
5 
     | 
    
         
             
            # fix version
         
     | 
| 
       6 
     | 
    
         
            -
            grep -rl 0.0.1. 
     | 
| 
      
 6 
     | 
    
         
            +
            grep -rl 0.0.1.alpha202302162017 . | xargs sed -i "s/0.0.1.alpha202302162017/${LIB_VERSION}/g"
         
     | 
| 
       7 
7 
     | 
    
         | 
| 
       8 
8 
     | 
    
         
             
            # build
         
     | 
| 
       9 
9 
     | 
    
         
             
            gem build vgs_api_client.gemspec
         
     | 
    
        data/scripts/test/run.sh
    CHANGED
    
    | 
         @@ -5,7 +5,7 @@ set -e 
     | 
|
| 
       5 
5 
     | 
    
         
             
            echo "Installing lib from local sources"
         
     | 
| 
       6 
6 
     | 
    
         
             
            # fix version
         
     | 
| 
       7 
7 
     | 
    
         
             
            VERSION=0.0.1.alpha$(date "+%Y%m%d%H%M")
         
     | 
| 
       8 
     | 
    
         
            -
            grep -rl 0.0.1. 
     | 
| 
      
 8 
     | 
    
         
            +
            grep -rl 0.0.1.alpha202302162017 . | xargs sed -i "s/0.0.1.alpha202302162017/$VERSION/g"
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
       10 
10 
     | 
    
         
             
            bundle install
         
     | 
| 
       11 
11 
     | 
    
         | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: vgs_api_client
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0.0.1. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.0.1.alpha202302162017
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Very Good Security
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire:
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2023-02- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2023-02-16 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: typhoeus
         
     |