relaton-ogc 0.1.4 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4fc1958734875b66e073ab0ecf6fd84b4fbb18f08dcb85d985180c60a8c741c3
4
- data.tar.gz: 2cc394a875c0d1b67387c0678777e188748fefb6657e784379bb4acfe4d2ae80
3
+ metadata.gz: 827edd4be37d5dd65a71f73db3b783f24ff1ed1f195901efabdd57516d49868b
4
+ data.tar.gz: 71394cb5322d025882219d34293273ca719cbb198fa439bd413c1d0002a0a4b1
5
5
  SHA512:
6
- metadata.gz: f9ec33d010f7b885310565255db7ae146f8def03c47a65c27f9e8ff1f550200d37f89c4427d212426b7b7c639473266e065f2b6065af7116069131bff4b2ad64
7
- data.tar.gz: ee48d651d562088071c3f2cf1dc8b1729859aa2dff36157af622344b75367e2157c202115644343a1c46f7d3dc5b6a5d26b3558a7404467430fbe772a30b75dc
6
+ metadata.gz: d0f06d1c80a322828ef132c0c8b6c6853565ad486a327611141df6606f5b0783a9d5f93a4d38ed419bfd7d447a9ad9cabb07a8ad336801f0651d6e339affb235
7
+ data.tar.gz: a8d9afd5d3048e265ae96ca9a539a14efb081bf4c8530c10f923f600f55b57f51187367b3124f44bc4404d37759e95ca067360b2203d92ed063288db9ecb6332
@@ -0,0 +1,27 @@
1
+ # Auto-generated !!! Do not edit it manually
2
+ # use ci-master https://github.com/metanorma/metanorma-build-scripts
3
+ name: macos
4
+
5
+ on: [push]
6
+
7
+ jobs:
8
+ test-macos:
9
+ name: Test on Ruby ${{ matrix.ruby }} macOS
10
+ runs-on: macos-latest
11
+ strategy:
12
+ matrix:
13
+ ruby: [ '2.6', '2.5', '2.4' ]
14
+ steps:
15
+ - uses: actions/checkout@master
16
+ - name: Use Ruby
17
+ uses: actions/setup-ruby@v1
18
+ with:
19
+ ruby-version: ${{ matrix.ruby }}
20
+ architecture: 'x64'
21
+ - name: Update gems
22
+ run: |
23
+ sudo gem install bundler -v "~> 2" --force
24
+ bundle install --jobs 4 --retry 3
25
+ - name: Run specs
26
+ run: |
27
+ bundle exec rake
@@ -0,0 +1,27 @@
1
+ # Auto-generated !!! Do not edit it manually
2
+ # use ci-master https://github.com/metanorma/metanorma-build-scripts
3
+ name: ubuntu
4
+
5
+ on: [push]
6
+
7
+ jobs:
8
+ test-linux:
9
+ name: Test on Ruby ${{ matrix.ruby }} Ubuntu
10
+ runs-on: ubuntu-latest
11
+ strategy:
12
+ matrix:
13
+ ruby: [ '2.6', '2.5', '2.4' ]
14
+ steps:
15
+ - uses: actions/checkout@master
16
+ - name: Use Ruby
17
+ uses: actions/setup-ruby@v1
18
+ with:
19
+ ruby-version: ${{ matrix.ruby }}
20
+ architecture: 'x64'
21
+ - name: Update gems
22
+ run: |
23
+ gem install bundler -v "~> 2"
24
+ bundle install --jobs 4 --retry 3
25
+ - name: Run specs
26
+ run: |
27
+ bundle exec rake
@@ -0,0 +1,30 @@
1
+ # Auto-generated !!! Do not edit it manually
2
+ # use ci-master https://github.com/metanorma/metanorma-build-scripts
3
+ name: windows
4
+
5
+ on: [push]
6
+
7
+ jobs:
8
+ test-windows:
9
+ name: Test on Ruby ${{ matrix.ruby }} Windows
10
+ runs-on: windows-latest
11
+ strategy:
12
+ matrix:
13
+ ruby: [ '2.6', '2.5', '2.4' ]
14
+ steps:
15
+ - uses: actions/checkout@master
16
+ - name: Use Ruby
17
+ uses: actions/setup-ruby@v1
18
+ with:
19
+ ruby-version: ${{ matrix.ruby }}
20
+ architecture: 'x64'
21
+ - name: Update gems
22
+ shell: pwsh
23
+ run: |
24
+ gem install bundler -v "~> 2"
25
+ bundle config --local path vendor/bundle
26
+ bundle update
27
+ bundle install --jobs 4 --retry 3
28
+ - name: Run specs
29
+ run: |
30
+ bundle exec rake
data/Gemfile.lock CHANGED
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- relaton-ogc (0.1.4)
4
+ relaton-ogc (0.2.0)
5
5
  faraday
6
- relaton-iso-bib (~> 0.3.0)
6
+ relaton-iso-bib (~> 0.4.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
@@ -19,23 +19,24 @@ GEM
19
19
  docile (1.3.2)
20
20
  equivalent-xml (0.6.0)
21
21
  nokogiri (>= 1.4.3)
22
- faraday (0.17.0)
22
+ faraday (0.17.1)
23
23
  multipart-post (>= 1.2, < 3)
24
24
  hashdiff (1.0.0)
25
25
  isoics (0.1.8)
26
26
  json (2.2.0)
27
27
  mini_portile2 (2.4.0)
28
28
  multipart-post (2.1.1)
29
- nokogiri (1.10.4)
29
+ nokogiri (1.10.7)
30
30
  mini_portile2 (~> 2.4.0)
31
+ optout (0.0.2)
31
32
  public_suffix (4.0.1)
32
33
  rake (10.5.0)
33
- relaton-bib (0.3.12)
34
+ relaton-bib (0.4.0)
34
35
  addressable
35
36
  nokogiri
36
- relaton-iso-bib (0.3.12)
37
+ relaton-iso-bib (0.4.0)
37
38
  isoics (~> 0.1.6)
38
- relaton-bib (~> 0.3.0)
39
+ relaton-bib (~> 0.4.0)
39
40
  ruby_deep_clone (~> 0.8.0)
40
41
  rspec (3.8.0)
41
42
  rspec-core (~> 3.8.0)
@@ -52,6 +53,8 @@ GEM
52
53
  rspec-support (3.8.2)
53
54
  ruby-debug-ide (0.7.0)
54
55
  rake (>= 0.8.1)
56
+ ruby-jing (0.0.1)
57
+ optout (>= 0.0.2)
55
58
  ruby_deep_clone (0.8.0)
56
59
  safe_yaml (1.0.5)
57
60
  simplecov (0.17.0)
@@ -76,9 +79,10 @@ DEPENDENCIES
76
79
  relaton-ogc!
77
80
  rspec (~> 3.0)
78
81
  ruby-debug-ide
82
+ ruby-jing
79
83
  simplecov
80
84
  vcr
81
85
  webmock
82
86
 
83
87
  BUNDLED WITH
84
- 2.0.1
88
+ 2.0.2