metanorma-mpfa 0.7.5 → 0.8.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: 7c09cb7532953cf42fbe4269d2445b66d07e8fcb526b7bc6823f55c2e89c6309
4
- data.tar.gz: 738bc439f45030ad22384275ded6236b11e34af84eceb929e2db46da19f79f27
3
+ metadata.gz: 4e0bb5a3bb3da6352f311c49939c682e1f11ce1087686a7f887b3dd5b54bab91
4
+ data.tar.gz: 6f3728352ad3ba016f70da19cad5072bb9e9d14b7ea3e12d8f7148b48b84935c
5
5
  SHA512:
6
- metadata.gz: 3b817b4da954ecea69d29fafe4589c0921f575fe271165d95157ec1bc8d30017ae6ab1699920a07395f2139a72a4399eacc180e7c02f3efc78a019bdeb91a96d
7
- data.tar.gz: 569c0ecf30e868952d70d295c3cb1c571bf594881d9d6320bc5c5e84eb358e31d39da75b2840cf5478096bd9c53a309c4c0d6cb77bc7eed3bb48a38939b034db
6
+ metadata.gz: edfa87bb2b2e2333e016719fd4511ccd3124883dcf065f1541b2ac8d98035773286d53a449870dd3043abc62585fab91eb17f4461d8588ca98664d7820fc2a78
7
+ data.tar.gz: 23f6a7b9033f7c98db75c5fbb14ecc0fef0bdef7c1971681137822a405125c56b75638d4304268fcb2abce88c6976910b9f6ecc58755a5e75e3ca12524336582
@@ -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/rsd"
4
+ require "metanorma-mpfa"
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.