metanorma-csa 1.9.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: bafc881cbffc3a575e225d56264d50e18d46cbe74e91e92ed369603623f2398a
4
- data.tar.gz: a45f716f6d4f93ca5c4aa845499732466b1e784b7b9a3486ca492c6dcca7e054
3
+ metadata.gz: d20f7755dca9f82f064b1db6b8f2bb3100dd4b3506c3a8ca92b7aeaa1e21ea7b
4
+ data.tar.gz: 39b73c01d414cbf4c3d3a59ca6ace6f34629a2251ca197cc748b31d4e3b7c326
5
5
  SHA512:
6
- metadata.gz: b29c772a70fc9f0251c0b32710147f206685d7db9cf02ad726d9f51336dfd833a235b73fd7c936a6a140f1576842610fc8c681eaa65d21b136df03bd7b126023
7
- data.tar.gz: 654a0ebc73f3de10bbd72f71caf11f97268d7fd83d3fcd9373b1f1b0d48106decd19d7ac72ba24d5ef4b659337f0814694b961de824068246d7bbea3016832ad
6
+ metadata.gz: fc81f1d3ede7d04ff6d80771195d60d45ffc85c56d6a086bed1d07a9aa93ab4143fc9dac3a15901a2e809105ae440231ad2f0428b94bf463afa87cbb7bfc967e
7
+ data.tar.gz: 2abdac525e3c556e4a6a2b0a5071c07826f9e88337316b8e15bb1a2e95c8b1b01a98fa41d2217bca18b5a4bb5129ccbbff921ded2ea4954ab6d47c180666b46e
@@ -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.