metanorma-csa 1.9.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: 66ca53f2971c3c8b24244645436763b4364e2079c3b11acb640f4b060ee9a57d
4
- data.tar.gz: 198e7317b14ef809400cbfc7e0e971983fa94a01568dc43aa7abbc63b26686f6
3
+ metadata.gz: 1823fac74c1082a8842d6ae0c1dc75bae45c729a1cb6e5a120f54066835593a8
4
+ data.tar.gz: 175e8dd9c390ece8085dc3f14cdef90cd5e3ff81f223570cdcb83a017cc2ad40
5
5
  SHA512:
6
- metadata.gz: f1e682fb80e0cc8266df7647dc9e34dacb907672d5a656b5c2fae8263033341bf2dc87908e0de0a412282e4a8e3c30ff9f39daee2e265ea291d6fb5a80fc482f
7
- data.tar.gz: 1942e2add4e423acd3afdc3b49580595db3806fffacebea44c4ffd4c7249364ad528b472010e48e9b2c9461d105e8499786ef49d350ad7b2c19edc3c7b3908eb
6
+ metadata.gz: 07257f56eff8961f381ad29bc629648eae2f2ab245206642249fe5cce342dd7289da0cfb1a907409b40c69d0f4dfc600a91aa229aece8060c0bb349cfba54776
7
+ data.tar.gz: 795de1a97d2ce5acaacbedcd17fc374cdabe68a413eb86cf9457b757736fc72f024c6567097af4d7a47ae00461ea04245657b2fcb178bee63de1dd220bcc0ff0
@@ -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.