relaton-iso-bib 1.13.0 → 1.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b6108f40cdf5538df2b0dddc35aad58ac942e74b80872f8b86bf8bcb3564548f
4
- data.tar.gz: c5cc9a8c77d7d4e287ad7340bb0551f8469749889efc70601edca2ac063d1468
3
+ metadata.gz: 9178932b5f1aeda46f0f96953c3af24f9a0f972b2a814a944fac874b1750aa18
4
+ data.tar.gz: bc4581d1396b7da73f085dbfb2dc24563a7f5ff3e9d304364a68950e856f3841
5
5
  SHA512:
6
- metadata.gz: 300a7636f43743f323e2ef175ec7b8176c5864ee03bfca7df84a4c785c8d93f80a1849f67239ad2cba561b05033ea71d6b3198b5e4cce668b4cafabb04fedf52
7
- data.tar.gz: 4490673960ee031d455eaea27b6fe4d36c5ea4fe1f789e5a907236f4d764dcfd70cfb4bb8bba75e978c3fc6a7faeb7882fe93af486cc69260a2a9d24939606ff
6
+ metadata.gz: e2323ef8d43d2c64d4638f1c0ef7da3e7cce6cf9e0c660a4256c81062f60d26c293cc58165215f7472174936cd5fa3a746b5423183ad0ddeee8ebf40c5125ebd
7
+ data.tar.gz: f5713dd3d4ec1e6b37e8623bec3ac3bd1b524f4bdf0a58cdcbde60f18303e6e05c05671c91daf69b0070413e8b7d60ea550d1375611e3da934fd4beb7ffc2252
@@ -0,0 +1,24 @@
1
+ # Auto-generated by Cimas: Do not edit it manually!
2
+ # See https://github.com/metanorma/cimas
3
+ name: release
4
+
5
+ on:
6
+ workflow_dispatch:
7
+ inputs:
8
+ next_version:
9
+ description: |
10
+ Next release version. Possible values: x.y.z, major, minor, patch (or pre|rc|etc).
11
+ Also, you can pass 'skip' to skip 'git tag' and do 'gem push' for the current version
12
+ required: true
13
+ default: 'skip'
14
+ repository_dispatch:
15
+ types: [ do-release ]
16
+
17
+
18
+ jobs:
19
+ release:
20
+ uses: relaton/support/.github/workflows/release.yml@master
21
+ with:
22
+ next_version: ${{ github.event.inputs.next_version }}
23
+ secrets:
24
+ rubygems-api-key: ${{ secrets.RELATON_CI_RUBYGEMS_API_KEY }}
data/.gitignore CHANGED
@@ -7,6 +7,7 @@
7
7
  /spec/reports/
8
8
  /tmp/
9
9
  .vscode/
10
+ /vendor/
10
11
  .rubocop-https---raw-githubusercontent-com-riboseinc-oss-guides-master-ci-rubocop-yml
11
12
 
12
13
  # rspec failure tracking
data/.rubocop.yml CHANGED
@@ -7,6 +7,6 @@ require: rubocop-rails
7
7
  inherit_from:
8
8
  - https://raw.githubusercontent.com/riboseinc/oss-guides/master/ci/rubocop.yml
9
9
  AllCops:
10
- TargetRubyVersion: 2.5
10
+ TargetRubyVersion: 2.7
11
11
  Rails:
12
12
  Enabled: false
data/Gemfile CHANGED
@@ -2,3 +2,10 @@ source "https://rubygems.org"
2
2
 
3
3
  # Specify your gem's dependencies in relaton_iso_bib.gemspec
4
4
  gemspec
5
+
6
+ gem "equivalent-xml", "~> 0.6"
7
+ gem "pry-byebug"
8
+ gem "rake", "~> 13.0"
9
+ gem "rspec", "~> 3.0"
10
+ gem "ruby-jing"
11
+ gem "simplecov"