metanorma-cc 1.8.4 → 2.0.2

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: 52349210dedcc74e07d51461b7b93f27d7a19b66fe3dc11df3012b1fb5dd26cb
4
- data.tar.gz: 55bcac678c4489d7777e07a341e238d41aec1afb309292e01de46d4548706319
3
+ metadata.gz: 53f1af93e381db0210b7022f002cc5eb940ef7c5c5ae80dad112daf746fe1701
4
+ data.tar.gz: 28c11bc2a0aa389821dbcbb7c379bbefebe41a85f79790f9ea73181e722f3eed
5
5
  SHA512:
6
- metadata.gz: 6e29004810ebfaeb721713b21c97ec3061ee0ddc0310202cdc34c44c33c03500753c1c93f57a1041ad231a9743c22461b2db912d88ba8afe64e9e35f7f3224cf
7
- data.tar.gz: 67d3593cc66b53b6752d78ed0c9c4b54f2262f11ddd2ebd8b4e059ccfbcd4f515dd31307b9ca6256a29924926c6b1f62014f5531c6bc7620df7266d63adc9e10
6
+ metadata.gz: f439fef05db79df3cf840a5673e58f6e8863a5720bd8a2a4533685f09abb0265867e44a5ab516443caab0f6f1607cc23b921f9f6ffbeeae9db66829124f6028e
7
+ data.tar.gz: 475ec99f5577c78a7d5ef2d41782fe4cb3443b080b5128a79a747458788d34fb32125e5b768371d2283ade446d44aeec45cd9da5971dfac2fb7c58bc131a7bdb
@@ -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.