relaton-cli 0.3.14 → 0.3.19
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/macos.yml +29 -0
- data/.github/workflows/ubuntu.yml +29 -0
- data/.github/workflows/windows.yml +32 -0
- data/Gemfile.lock +9 -9
- data/lib/relaton/cli/version.rb +1 -1
- metadata +5 -4
- data/.travis.yml +0 -18
- data/appveyor.yml +0 -37
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 49700260c4656f0110900e6e5de35ec9b86cf38e82284590f71b642c646ebdae
|
4
|
+
data.tar.gz: 01fed80124ae478c252726e7cf2f53b5b0a43f754ada0e97db5e83c464527e87
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4e6eaa052195a89e8123a35bcf2d2c10925920d8a01355a67c08f1a159ea255f81e04324e844acb1ca19e95eb959daf838ed19597a31caa343bb7538062299f1
|
7
|
+
data.tar.gz: a2b654be412bcb5d8776eda9c0307a2c4738ffa48fa92a169136f45c01453d6d9bd4152b9dadbea994e90d7d301380a547442136560b1fe5e1bb1ef6282fd811
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# Auto-generated !!! Do not edit it manually
|
2
|
+
# use ci-master https://github.com/metanorma/metanorma-build-scripts
|
3
|
+
name: macos
|
4
|
+
|
5
|
+
on: [push]
|
6
|
+
|
7
|
+
jobs:
|
8
|
+
test-macos:
|
9
|
+
name: Test on Ruby ${{ matrix.ruby }} macOS
|
10
|
+
runs-on: macos-latest
|
11
|
+
strategy:
|
12
|
+
matrix:
|
13
|
+
ruby: [ '2.6', '2.5', '2.4' ]
|
14
|
+
steps:
|
15
|
+
- uses: actions/checkout@master
|
16
|
+
with:
|
17
|
+
submodules: recursive
|
18
|
+
- name: Use Ruby
|
19
|
+
uses: actions/setup-ruby@v1
|
20
|
+
with:
|
21
|
+
ruby-version: ${{ matrix.ruby }}
|
22
|
+
architecture: 'x64'
|
23
|
+
- name: Update gems
|
24
|
+
run: |
|
25
|
+
sudo gem install bundler -v "~> 2" --force
|
26
|
+
bundle install --jobs 4 --retry 3
|
27
|
+
- name: Run specs
|
28
|
+
run: |
|
29
|
+
bundle exec rake
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# Auto-generated !!! Do not edit it manually
|
2
|
+
# use ci-master https://github.com/metanorma/metanorma-build-scripts
|
3
|
+
name: ubuntu
|
4
|
+
|
5
|
+
on: [push]
|
6
|
+
|
7
|
+
jobs:
|
8
|
+
test-linux:
|
9
|
+
name: Test on Ruby ${{ matrix.ruby }} Ubuntu
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
strategy:
|
12
|
+
matrix:
|
13
|
+
ruby: [ '2.6', '2.5', '2.4' ]
|
14
|
+
steps:
|
15
|
+
- uses: actions/checkout@master
|
16
|
+
with:
|
17
|
+
submodules: recursive
|
18
|
+
- name: Use Ruby
|
19
|
+
uses: actions/setup-ruby@v1
|
20
|
+
with:
|
21
|
+
ruby-version: ${{ matrix.ruby }}
|
22
|
+
architecture: 'x64'
|
23
|
+
- name: Update gems
|
24
|
+
run: |
|
25
|
+
gem install bundler -v "~> 2"
|
26
|
+
bundle install --jobs 4 --retry 3
|
27
|
+
- name: Run specs
|
28
|
+
run: |
|
29
|
+
bundle exec rake
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# Auto-generated !!! Do not edit it manually
|
2
|
+
# use ci-master https://github.com/metanorma/metanorma-build-scripts
|
3
|
+
name: windows
|
4
|
+
|
5
|
+
on: [push]
|
6
|
+
|
7
|
+
jobs:
|
8
|
+
test-windows:
|
9
|
+
name: Test on Ruby ${{ matrix.ruby }} Windows
|
10
|
+
runs-on: windows-latest
|
11
|
+
strategy:
|
12
|
+
matrix:
|
13
|
+
ruby: [ '2.6', '2.5', '2.4' ]
|
14
|
+
steps:
|
15
|
+
- uses: actions/checkout@master
|
16
|
+
with:
|
17
|
+
submodules: recursive
|
18
|
+
- name: Use Ruby
|
19
|
+
uses: actions/setup-ruby@v1
|
20
|
+
with:
|
21
|
+
ruby-version: ${{ matrix.ruby }}
|
22
|
+
architecture: 'x64'
|
23
|
+
- name: Update gems
|
24
|
+
shell: pwsh
|
25
|
+
run: |
|
26
|
+
gem install bundler -v "~> 2"
|
27
|
+
bundle config --local path vendor/bundle
|
28
|
+
bundle update
|
29
|
+
bundle install --jobs 4 --retry 3
|
30
|
+
- name: Run specs
|
31
|
+
run: |
|
32
|
+
bundle exec rake
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
relaton-cli (0.3.
|
4
|
+
relaton-cli (0.3.19)
|
5
5
|
liquid
|
6
6
|
relaton (~> 0.5)
|
7
7
|
thor
|
@@ -21,7 +21,7 @@ GEM
|
|
21
21
|
docile (1.3.2)
|
22
22
|
equivalent-xml (0.6.0)
|
23
23
|
nokogiri (>= 1.4.3)
|
24
|
-
faraday (0.17.
|
24
|
+
faraday (0.17.1)
|
25
25
|
multipart-post (>= 1.2, < 3)
|
26
26
|
gb-agencies (0.0.6)
|
27
27
|
isoics (0.1.8)
|
@@ -38,7 +38,7 @@ GEM
|
|
38
38
|
method_source (~> 0.9.0)
|
39
39
|
public_suffix (4.0.1)
|
40
40
|
rake (12.3.3)
|
41
|
-
relaton (0.5.
|
41
|
+
relaton (0.5.19)
|
42
42
|
relaton-calconnect (~> 0.1.0)
|
43
43
|
relaton-gb (~> 0.6.0)
|
44
44
|
relaton-iec (~> 0.4.0)
|
@@ -50,28 +50,28 @@ GEM
|
|
50
50
|
relaton-bib (0.3.12)
|
51
51
|
addressable
|
52
52
|
nokogiri
|
53
|
-
relaton-calconnect (0.1.
|
53
|
+
relaton-calconnect (0.1.2)
|
54
54
|
faraday
|
55
55
|
relaton-iso-bib (~> 0.3.0)
|
56
|
-
relaton-gb (0.6.
|
56
|
+
relaton-gb (0.6.8)
|
57
57
|
cnccs (~> 0.1.1)
|
58
58
|
gb-agencies (~> 0.0.1)
|
59
59
|
relaton-iso-bib (~> 0.3.0)
|
60
|
-
relaton-iec (0.4.
|
60
|
+
relaton-iec (0.4.12)
|
61
61
|
addressable
|
62
62
|
relaton-iso-bib (~> 0.3.0)
|
63
63
|
relaton-ietf (0.6.10)
|
64
64
|
relaton-bib (~> 0.3.0)
|
65
|
-
relaton-iso (0.6.
|
65
|
+
relaton-iso (0.6.10)
|
66
66
|
relaton-iec (~> 0.4.0)
|
67
67
|
relaton-iso-bib (~> 0.3.0)
|
68
68
|
relaton-iso-bib (0.3.12)
|
69
69
|
isoics (~> 0.1.6)
|
70
70
|
relaton-bib (~> 0.3.0)
|
71
71
|
ruby_deep_clone (~> 0.8.0)
|
72
|
-
relaton-itu (0.3.
|
72
|
+
relaton-itu (0.3.11)
|
73
73
|
relaton-iso-bib (~> 0.3.0)
|
74
|
-
relaton-nist (0.3.
|
74
|
+
relaton-nist (0.3.9)
|
75
75
|
relaton-bib (~> 0.3.0)
|
76
76
|
rubyzip
|
77
77
|
relaton-ogc (0.1.4)
|
data/lib/relaton/cli/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: relaton-cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.19
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-12-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -202,16 +202,17 @@ extra_rdoc_files:
|
|
202
202
|
- docs/README.adoc
|
203
203
|
- LICENSE
|
204
204
|
files:
|
205
|
+
- ".github/workflows/macos.yml"
|
206
|
+
- ".github/workflows/ubuntu.yml"
|
207
|
+
- ".github/workflows/windows.yml"
|
205
208
|
- ".gitignore"
|
206
209
|
- ".hound.yml"
|
207
210
|
- ".rubocop.yml"
|
208
|
-
- ".travis.yml"
|
209
211
|
- CHANGELOG.md
|
210
212
|
- Gemfile
|
211
213
|
- Gemfile.lock
|
212
214
|
- LICENSE
|
213
215
|
- Rakefile
|
214
|
-
- appveyor.yml
|
215
216
|
- bin/console
|
216
217
|
- bin/rspec
|
217
218
|
- bin/setup
|
data/.travis.yml
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
# Auto-generated !!! Do not edit it manually
|
2
|
-
# use ci-master https://github.com/metanorma/metanorma-build-scripts
|
3
|
-
language: ruby
|
4
|
-
cache: bundler
|
5
|
-
os:
|
6
|
-
- linux
|
7
|
-
- osx
|
8
|
-
rvm:
|
9
|
-
- 2.6
|
10
|
-
- 2.5
|
11
|
-
- 2.4
|
12
|
-
- ruby-head
|
13
|
-
before_install:
|
14
|
-
- gem install bundler -v "~> 2"
|
15
|
-
- bundle update
|
16
|
-
matrix:
|
17
|
-
allow_failures:
|
18
|
-
- rvm: ruby-head
|
data/appveyor.yml
DELETED
@@ -1,37 +0,0 @@
|
|
1
|
-
# Auto-generated !!! Do not edit it manually
|
2
|
-
# use ci-master https://github.com/metanorma/metanorma-build-scripts
|
3
|
-
version: '{build}'
|
4
|
-
|
5
|
-
cache:
|
6
|
-
- vendor/bundle
|
7
|
-
|
8
|
-
environment:
|
9
|
-
matrix:
|
10
|
-
- RUBY_VERSION: 26
|
11
|
-
- RUBY_VERSION: 25
|
12
|
-
- RUBY_VERSION: 24
|
13
|
-
- RUBY_VERSION: _trunk
|
14
|
-
|
15
|
-
matrix:
|
16
|
-
allow_failures:
|
17
|
-
- RUBY_VERSION: _trunk
|
18
|
-
|
19
|
-
install:
|
20
|
-
- ps: . { iwr -useb https://raw.githubusercontent.com/metanorma/metanorma-build-scripts/master/appveyor.ps1 } | iex
|
21
|
-
- refreshenv
|
22
|
-
|
23
|
-
build_script:
|
24
|
-
- set PATH=C:\Ruby%RUBY_VERSION%\bin;%PATH%
|
25
|
-
- set GIT_TERMINAL_PROMPT=0
|
26
|
-
- gem install bundler -v "~> 2"
|
27
|
-
- bundle config --local path vendor/bundle
|
28
|
-
- bundle update
|
29
|
-
- bundle install
|
30
|
-
|
31
|
-
before_test:
|
32
|
-
- ruby -v
|
33
|
-
- gem -v
|
34
|
-
- bundle -v
|
35
|
-
|
36
|
-
test_script:
|
37
|
-
- bundle exec rake
|