metanorma-cc 1.8.2 → 2.0.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: 0a70b63c39dbfa99e161dda2eba79052dabeb4efbfab474054145acf4ca2339b
4
- data.tar.gz: 1f13bcf1324580e3bc5d13d81e44fbfc47df21a6069ab3c2c52fae274f782538
3
+ metadata.gz: a13c3b9103cb6e5549dfb198916febc6ee0145b699b64f316a8396bc31000b94
4
+ data.tar.gz: 36f66bbe98c4101a13ec38a4d42b91420da8f90c01fb6fc1ec5dab0950bc87eb
5
5
  SHA512:
6
- metadata.gz: 9603323530cb1fc79dc14f0d878525e30422d67353e3ac3a551574dc3a346441d0ba9f94826650bfcf628b869abf3cfd9e95436d5daef296a8e31dedf04d282a
7
- data.tar.gz: 687665318c2b8dce4384a54ca562d749a68413e6f035875d3c69dfd5f48d185ed5a4cf09a81dc168457368f7c5c87790cfc74fdff274a5d4376d20b6f32d0065
6
+ metadata.gz: 64d050b1f7e1387e99302baa92716dffd59a6e23363190a6d1065bbd2e223e33be46ded2716cf46b9b7e921575d14bbca73d467661ed575b7df2d181b1b9ba7c
7
+ data.tar.gz: 89e4fa2b0c5f6bb5994ccbde444225e1325f8304ceb41b5255b2259a379825d37d111727b993b7ca79854768d9225f0d66f9662f048a1d128ad5999ee6fb7987
@@ -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
@@ -1,3 +1,8 @@
1
1
  .DS_Store
2
2
 
3
3
  .rubocop-https--*
4
+
5
+ /.rspec_status
6
+ /Gemfile.devel
7
+ /Gemfile.lock
8
+ /coverage/
data/bin/console CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require "bundler/setup"
4
- require "asciidoctor/csd"
4
+ require "metanorma/cc"
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.