metanorma-csa 1.9.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: 52b62cc7064b035d413c88f8a3de6d094eced063f016624b43f44bce1e5bf3e3
4
- data.tar.gz: f4740d1004f59307a4c5280ba6c538cbeb7e891ee03c725f4753afad4349efee
3
+ metadata.gz: c181909c6ba03043074b9ae8e334a7e940d97f991e72ad4ae8e085aed200528e
4
+ data.tar.gz: '0687a4b9f94e153a996ce8ff23f5cd20203990218595d7b9ca867544216c7244'
5
5
  SHA512:
6
- metadata.gz: 9f63606c5204e50d7e53133dfaa6bde5131ff34d9f5e3626699b2a32c847f5754048bbbf358d719f94d7a2a8813f33aa1f8e0f0c67f90d7e5f4d63e2a8321b54
7
- data.tar.gz: 33d553fb0447c97833a2fd77c6b65bc0fbcbc9c102220037f2967418581ff6ee4d520d6a92dc128a2f283800b54279574e4fdad758edcda40bae63b13553da45
6
+ metadata.gz: 6f2a242121325744a55be91d7683d5fd358edba1a054b5696ce03a26e8ccdc560985920767760dd1603d56e99ab8c544af251dff0fdcb6f243d51d7ebd77423e
7
+ data.tar.gz: c872d1ceda93be01755d56ea94a5f68390f4ba59985536b446193a3834c88cc5dba32eb64662c6e703061ad52425735a1b3fea7332b5aea464b3f74749160074
@@ -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
@@ -8,3 +8,6 @@
8
8
  /test.*
9
9
 
10
10
  .rubocop-https--*
11
+
12
+ /Gemfile.devel
13
+ /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/csa'
4
+ require 'metanorma-csa'
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.