relaton-calconnect 0.3.0 → 0.4.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/.github/workflows/macos.yml +9 -4
 - data/.github/workflows/ubuntu.yml +9 -4
 - data/.github/workflows/windows.yml +9 -4
 - data/lib/relaton_calconnect/version.rb +1 -1
 - data/relaton_calconnect.gemspec +1 -1
 - metadata +4 -4
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: d34f2a015aa31e3fa37e06b6a7c9327efd79bf2b53eef2f356165a3a554a71e0
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: bbdd88049393baad6c44e111a82a16e5dcc92ac0f406586384a4f5eca66dc9b7
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 69ffd7b0b5b851368564ab26dc464c09b8d0a66e9dc7258eb527c933cd3c455b30578766391a4f230a5dfde6f978e5f8154b18570a171e6ad5ad4c962612faed
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: fd58778f0ead3c097800c4d38b4fc497ae940eab7b12ee23a0ecf86973552ea2a758923dad2a9f337ee920e20f0d4365e77b81eefa28e76bfb6da6cf60b3460a
         
     | 
    
        data/.github/workflows/macos.yml
    CHANGED
    
    | 
         @@ -1,14 +1,19 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            # Auto-generated  
     | 
| 
       2 
     | 
    
         
            -
            #  
     | 
| 
      
 1 
     | 
    
         
            +
            # Auto-generated by Cimas: Do not edit it manually!
         
     | 
| 
      
 2 
     | 
    
         
            +
            # See https://github.com/metanorma/cimas
         
     | 
| 
       3 
3 
     | 
    
         
             
            name: macos
         
     | 
| 
       4 
4 
     | 
    
         | 
| 
       5 
     | 
    
         
            -
            on: 
     | 
| 
      
 5 
     | 
    
         
            +
            on:
         
     | 
| 
      
 6 
     | 
    
         
            +
              push:
         
     | 
| 
      
 7 
     | 
    
         
            +
                branches: [ master ]
         
     | 
| 
      
 8 
     | 
    
         
            +
              pull_request:
         
     | 
| 
      
 9 
     | 
    
         
            +
                branches: [ '**' ]
         
     | 
| 
       6 
10 
     | 
    
         | 
| 
       7 
11 
     | 
    
         
             
            jobs:
         
     | 
| 
       8 
12 
     | 
    
         
             
              test-macos:
         
     | 
| 
       9 
13 
     | 
    
         
             
                name: Test on Ruby ${{ matrix.ruby }} macOS
         
     | 
| 
       10 
14 
     | 
    
         
             
                runs-on: macos-latest
         
     | 
| 
       11 
15 
     | 
    
         
             
                strategy:
         
     | 
| 
      
 16 
     | 
    
         
            +
                  fail-fast: false
         
     | 
| 
       12 
17 
     | 
    
         
             
                  matrix:
         
     | 
| 
       13 
18 
     | 
    
         
             
                    ruby: [ '2.6', '2.5', '2.4' ]
         
     | 
| 
       14 
19 
     | 
    
         
             
                steps:
         
     | 
| 
         @@ -20,7 +25,7 @@ jobs: 
     | 
|
| 
       20 
25 
     | 
    
         
             
                      architecture: 'x64'
         
     | 
| 
       21 
26 
     | 
    
         
             
                  - name: Update gems
         
     | 
| 
       22 
27 
     | 
    
         
             
                    run: |
         
     | 
| 
       23 
     | 
    
         
            -
                      sudo gem install bundler  
     | 
| 
      
 28 
     | 
    
         
            +
                      sudo gem install bundler --force
         
     | 
| 
       24 
29 
     | 
    
         
             
                      bundle install --jobs 4 --retry 3
         
     | 
| 
       25 
30 
     | 
    
         
             
                  - name: Run specs
         
     | 
| 
       26 
31 
     | 
    
         
             
                    run: |
         
     | 
| 
         @@ -1,14 +1,19 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            # Auto-generated  
     | 
| 
       2 
     | 
    
         
            -
            #  
     | 
| 
      
 1 
     | 
    
         
            +
            # Auto-generated by Cimas: Do not edit it manually!
         
     | 
| 
      
 2 
     | 
    
         
            +
            # See https://github.com/metanorma/cimas
         
     | 
| 
       3 
3 
     | 
    
         
             
            name: ubuntu
         
     | 
| 
       4 
4 
     | 
    
         | 
| 
       5 
     | 
    
         
            -
            on: 
     | 
| 
      
 5 
     | 
    
         
            +
            on:
         
     | 
| 
      
 6 
     | 
    
         
            +
              push:
         
     | 
| 
      
 7 
     | 
    
         
            +
                branches: [ master ]
         
     | 
| 
      
 8 
     | 
    
         
            +
              pull_request:
         
     | 
| 
      
 9 
     | 
    
         
            +
                branches: [ '**' ]
         
     | 
| 
       6 
10 
     | 
    
         | 
| 
       7 
11 
     | 
    
         
             
            jobs:
         
     | 
| 
       8 
12 
     | 
    
         
             
              test-linux:
         
     | 
| 
       9 
13 
     | 
    
         
             
                name: Test on Ruby ${{ matrix.ruby }} Ubuntu
         
     | 
| 
       10 
14 
     | 
    
         
             
                runs-on: ubuntu-latest
         
     | 
| 
       11 
15 
     | 
    
         
             
                strategy:
         
     | 
| 
      
 16 
     | 
    
         
            +
                  fail-fast: false
         
     | 
| 
       12 
17 
     | 
    
         
             
                  matrix:
         
     | 
| 
       13 
18 
     | 
    
         
             
                    ruby: [ '2.6', '2.5', '2.4' ]
         
     | 
| 
       14 
19 
     | 
    
         
             
                steps:
         
     | 
| 
         @@ -20,7 +25,7 @@ jobs: 
     | 
|
| 
       20 
25 
     | 
    
         
             
                      architecture: 'x64'
         
     | 
| 
       21 
26 
     | 
    
         
             
                  - name: Update gems
         
     | 
| 
       22 
27 
     | 
    
         
             
                    run: |
         
     | 
| 
       23 
     | 
    
         
            -
                      gem install bundler 
     | 
| 
      
 28 
     | 
    
         
            +
                      gem install bundler
         
     | 
| 
       24 
29 
     | 
    
         
             
                      bundle install --jobs 4 --retry 3
         
     | 
| 
       25 
30 
     | 
    
         
             
                  - name: Run specs
         
     | 
| 
       26 
31 
     | 
    
         
             
                    run: |
         
     | 
| 
         @@ -1,14 +1,19 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            # Auto-generated  
     | 
| 
       2 
     | 
    
         
            -
            #  
     | 
| 
      
 1 
     | 
    
         
            +
            # Auto-generated by Cimas: Do not edit it manually!
         
     | 
| 
      
 2 
     | 
    
         
            +
            # See https://github.com/metanorma/cimas
         
     | 
| 
       3 
3 
     | 
    
         
             
            name: windows
         
     | 
| 
       4 
4 
     | 
    
         | 
| 
       5 
     | 
    
         
            -
            on: 
     | 
| 
      
 5 
     | 
    
         
            +
            on:
         
     | 
| 
      
 6 
     | 
    
         
            +
              push:
         
     | 
| 
      
 7 
     | 
    
         
            +
                branches: [ master ]
         
     | 
| 
      
 8 
     | 
    
         
            +
              pull_request:
         
     | 
| 
      
 9 
     | 
    
         
            +
                branches: [ '**' ]
         
     | 
| 
       6 
10 
     | 
    
         | 
| 
       7 
11 
     | 
    
         
             
            jobs:
         
     | 
| 
       8 
12 
     | 
    
         
             
              test-windows:
         
     | 
| 
       9 
13 
     | 
    
         
             
                name: Test on Ruby ${{ matrix.ruby }} Windows
         
     | 
| 
       10 
14 
     | 
    
         
             
                runs-on: windows-latest
         
     | 
| 
       11 
15 
     | 
    
         
             
                strategy:
         
     | 
| 
      
 16 
     | 
    
         
            +
                  fail-fast: false
         
     | 
| 
       12 
17 
     | 
    
         
             
                  matrix:
         
     | 
| 
       13 
18 
     | 
    
         
             
                    ruby: [ '2.6', '2.5', '2.4' ]
         
     | 
| 
       14 
19 
     | 
    
         
             
                steps:
         
     | 
| 
         @@ -21,7 +26,7 @@ jobs: 
     | 
|
| 
       21 
26 
     | 
    
         
             
                  - name: Update gems
         
     | 
| 
       22 
27 
     | 
    
         
             
                    shell: pwsh
         
     | 
| 
       23 
28 
     | 
    
         
             
                    run: |
         
     | 
| 
       24 
     | 
    
         
            -
                      gem install bundler 
     | 
| 
      
 29 
     | 
    
         
            +
                      gem install bundler
         
     | 
| 
       25 
30 
     | 
    
         
             
                      bundle config --local path vendor/bundle
         
     | 
| 
       26 
31 
     | 
    
         
             
                      bundle update
         
     | 
| 
       27 
32 
     | 
    
         
             
                      bundle install --jobs 4 --retry 3
         
     | 
    
        data/relaton_calconnect.gemspec
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: relaton-calconnect
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.4.0
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Ribose Inc.
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: exe
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2020- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2020-02-15 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: debase
         
     | 
| 
         @@ -156,14 +156,14 @@ dependencies: 
     | 
|
| 
       156 
156 
     | 
    
         
             
                requirements:
         
     | 
| 
       157 
157 
     | 
    
         
             
                - - "~>"
         
     | 
| 
       158 
158 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       159 
     | 
    
         
            -
                    version: 0. 
     | 
| 
      
 159 
     | 
    
         
            +
                    version: 0.6.0
         
     | 
| 
       160 
160 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       161 
161 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       162 
162 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       163 
163 
     | 
    
         
             
                requirements:
         
     | 
| 
       164 
164 
     | 
    
         
             
                - - "~>"
         
     | 
| 
       165 
165 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       166 
     | 
    
         
            -
                    version: 0. 
     | 
| 
      
 166 
     | 
    
         
            +
                    version: 0.6.0
         
     | 
| 
       167 
167 
     | 
    
         
             
            description: 'RelatonIso: retrieve CC Standards for bibliographic use using the IsoBibliographicItem
         
     | 
| 
       168 
168 
     | 
    
         
             
              model'
         
     | 
| 
       169 
169 
     | 
    
         
             
            email:
         
     |