relaton-iso-bib 0.3.12 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7fde43ad2b5ed4626156837d01cbba679ac0fdf0a37079a1c2484de05b6229b7
4
- data.tar.gz: ecc80f5059c2a14f2ed74635619b2ae673a9b93f1ce99a778bc756c5c9465961
3
+ metadata.gz: 72edf59d822559e645392073f71dc461f5beab5880213877f7949f2b724cf4e2
4
+ data.tar.gz: 82cade86fc96e803f9a83b46db1b9819e69b044cc26b7f15b743ee1f4f942b52
5
5
  SHA512:
6
- metadata.gz: 86fecd91650295317ba9863fc6a1d3d3c07234dda2c9d6f589413d5161d1fbdc1c2bf442a02baf1b205ca30931d965553225b2eae3513d0820e8f2e768c7fdb2
7
- data.tar.gz: 8b4d38686f0bfb31994403212bb9c0c3f04872ac61e0fa0ee5b31b0ec914e16bca029c6a825b2608bd05cf07e7138a042c903adfb144da6373281c51e3aa3252
6
+ metadata.gz: 5a1d5d944e45627e500dcf9dc315471f2f720e353b396461026d10ebea449273b3e942ae93c81b8d9c63ade80616bb00707a920dad91f558bcf3b7cae43bb59e
7
+ data.tar.gz: 5475c1ebd01df72def8af750eab69416eefff0835f71c0689b74fab34cf4d49b05612add0c5cc1b8ac6169143a5b0cf1817d37b932808d8c62ac390d04ce6c89
@@ -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-iso-bib (0.3.12)
4
+ relaton-iso-bib (0.4.0)
5
5
  isoics (~> 0.1.6)
6
- relaton-bib (~> 0.3.0)
6
+ relaton-bib (~> 0.4.0)
7
7
  ruby_deep_clone (~> 0.8.0)
8
8
 
9
9
  GEM
@@ -24,8 +24,9 @@ GEM
24
24
  json (2.2.0)
25
25
  method_source (0.9.2)
26
26
  mini_portile2 (2.4.0)
27
- nokogiri (1.10.4)
27
+ nokogiri (1.10.7)
28
28
  mini_portile2 (~> 2.4.0)
29
+ optout (0.0.2)
29
30
  pry (0.12.2)
30
31
  coderay (~> 1.1.0)
31
32
  method_source (~> 0.9.0)
@@ -34,7 +35,7 @@ GEM
34
35
  pry (~> 0.10)
35
36
  public_suffix (4.0.1)
36
37
  rake (10.5.0)
37
- relaton-bib (0.3.12)
38
+ relaton-bib (0.4.0)
38
39
  addressable
39
40
  nokogiri
40
41
  rspec (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
  simplecov (0.17.1)
57
60
  docile (~> 1.1)
@@ -71,7 +74,8 @@ DEPENDENCIES
71
74
  relaton-iso-bib!
72
75
  rspec (~> 3.0)
73
76
  ruby-debug-ide
77
+ ruby-jing
74
78
  simplecov
75
79
 
76
80
  BUNDLED WITH
77
- 2.0.1
81
+ 2.0.2