metanorma-cc 1.8.3 → 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: '09051dfdeea6a295286b0b55b546ff965f76427554632f50b995ddc7f3842a9e'
4
- data.tar.gz: '08f80ffd700b0947b75a81ef3ccc6031b8f6044f69dde7e291d8606ee2cbd412'
3
+ metadata.gz: 2dc670a6e88bcb6696b43502534106626c8efc687ae2571e1035999376210384
4
+ data.tar.gz: 28e9b8eb44cf8a59bcad76034bdc928da4098bd44d5bae5a5249f816504a6a81
5
5
  SHA512:
6
- metadata.gz: 341a642e16714923295261707ce8d4efbd8dd06aadb54fb6c25b5bca7eb474ba3ca3ebb6218c045c2ef30447c897dc774571241f212d1d65c66c2d14eda7da37
7
- data.tar.gz: d2a80f70cf8ca48edde2ef672befcfd7a38204e61f4da62b091b1422f4a6044a0bac1215aa2f126498a933c581eddadda588ed306a929363ce75c0ac57984be7
6
+ metadata.gz: 19c4728ac759a15ad101d3a22593394e5850aca5f19e5fa492bc0398b5b5589b0b635a6d950aad256ac1c30b3b9f867dbd86c909b6bab0687b1c4117a487fb46
7
+ data.tar.gz: c6eb6288354842e2573dc89ebb8cfb9222b212cbc12f6ff6756842d00e5de6afa704781f74e8d5bccf62df773138ea9e02f7e8579fda5a085e3a973d261ff347
@@ -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.