unitsml 0.2.3 → 0.2.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/release.yml +2 -2
- data/lib/unitsml/version.rb +1 -1
- data/unitsdb/dimensions.yaml +859 -0
- data/unitsdb/docs/README.adoc +12 -0
- data/unitsdb/docs/navigation.adoc +7 -0
- data/unitsdb/prefixes.yaml +294 -0
- data/unitsdb/quantities.yaml +2467 -0
- data/unitsdb/unit_systems.yaml +16 -0
- data/unitsdb/units.yaml +10502 -0
- metadata +9 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 03b2a6214da74d2f202535a66b83ceb4d791b417cbb75d8d7014afea8d7c6c43
|
4
|
+
data.tar.gz: 462b872352f908d2e6d0cbefda1a3743a3d015185c74b891c07ed9880c45644a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ffc12b0ce80125d25c8eb35ae1ff710bbc167dfe1a61f470e53f27ac2bf3223548cbdbd23951f4dfc31fce5150161f40bb769eb3c3d088e3e2ccab0fdbcc672e
|
7
|
+
data.tar.gz: af0356bfc0f7f00fc4971ce7bb2ed313b495950d5e0f3d1ef10925d2d85b77273efda223fc5fd76daf48e9d95f72fd57a3275364ec85c1fe72207de5866e3601
|
@@ -13,9 +13,9 @@ on:
|
|
13
13
|
|
14
14
|
jobs:
|
15
15
|
release:
|
16
|
-
uses: metanorma/ci/.github/workflows/rubygems-release.yml@
|
16
|
+
uses: metanorma/ci/.github/workflows/rubygems-release.yml@feature/submodules_for_release
|
17
17
|
with:
|
18
18
|
next_version: ${{ github.event.inputs.next_version }}
|
19
|
-
|
19
|
+
submodules: true
|
20
20
|
secrets:
|
21
21
|
rubygems-api-key: ${{ secrets.UNITSML_CI_RUBYGEMS_API_KEY }}
|
data/lib/unitsml/version.rb
CHANGED