metanorma-bipm 1.2.4 → 2.0.1

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: 7b55e6b85ef1f9cae4b1438df9d28fec022df67c5629e63b4a9439df340a3d27
4
- data.tar.gz: ea4b6c2f2866b8053b90762eff2f3e1025db86188381ff098be659557e91b024
3
+ metadata.gz: 11ecb67aae8958c82b27c329a4da4d7ff5032916592c3b59f2ab0e95a1db63bb
4
+ data.tar.gz: dbef26ccd044fa19355aba42ff3aa04a3dbdad55ccab94f82a90721d3d1f8b1b
5
5
  SHA512:
6
- metadata.gz: 75ba651aad86b1bfd223dfd10e89827c7d283e99ea8c7f268e9b9d223e4b61695d35663788b1502e2ad18333dae7fbf31bd950d1ad4dd1786d5249b904f164db
7
- data.tar.gz: 555657db61c387a6b88553b057b0675f358b527d5df75366fde52a22fc5ae6ef5dd3827c5a6705fa42ad638a5ff6d93dfe4238d741b5832b20e9328a6ec83ccf
6
+ metadata.gz: 885912719a809870d2f5cb61b402239b43a2c2d48b299a507a77464f7fb1fcdf5746cb3f31e465cca4da6354ce5bd3b9e2fa6629f5dc1249564fdf5e952ee805
7
+ data.tar.gz: d554c1e67a55ca23edce1c260c13bef95f9b062520e70e7293f3e422807ab62a8436ca95b0743665c9da14652df9572d6d86e65e5acbc9df7df4ff9141333bfe
@@ -9,35 +9,7 @@ on:
9
9
  pull_request:
10
10
 
11
11
  jobs:
12
- rake:
13
- name: Test on Ruby ${{ matrix.ruby }} ${{ matrix.os }}
14
- runs-on: ${{ matrix.os }}
15
- continue-on-error: ${{ matrix.experimental }}
16
- strategy:
17
- fail-fast: false
18
- matrix:
19
- ruby: [ '3.0', '2.7', '2.6', '2.5' ]
20
- os: [ ubuntu-latest, windows-latest, macos-latest ]
21
- experimental: [ false ]
22
- steps:
23
- - uses: actions/checkout@v2
24
- with:
25
- submodules: true
26
-
27
- - uses: ruby/setup-ruby@v1
28
- with:
29
- ruby-version: ${{ matrix.ruby }}
30
- bundler-cache: true
31
-
32
- - run: bundle exec rake
33
-
34
- tests-passed:
35
- needs: rake
36
- runs-on: ubuntu-latest
37
- steps:
38
- - uses: peter-evans/repository-dispatch@v1
39
- with:
40
- token: ${{ secrets.METANORMA_CI_PAT_TOKEN || secrets.GITHUB_TOKEN }}
41
- repository: ${{ github.repository }}
42
- event-type: tests-passed
43
- client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}'
12
+ notify:
13
+ uses: metanorma/metanorma-build-scripts/.github/workflows/mn-processor-rake.yml@main
14
+ secrets:
15
+ pat_token: ${{ secrets.METANORMA_CI_PAT_TOKEN }}
data/.gitignore CHANGED
@@ -2,3 +2,5 @@
2
2
  /.byebug_history
3
3
  /.rspec_status
4
4
  /coverage/
5
+ /Gemfile.devel
6
+ /Gemfile.lock
data/bin/console CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require "bundler/setup"
4
- require "asciidoctor/vsd"
4
+ require "metanorma/bipm"
5
5
 
6
6
  # You can add fixtures and/or initialization code here to make experimenting
7
7
  # with your gem easier. You can also use a different console, if you like.