junoser 0.4.2 → 0.4.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/test-linux.yaml +30 -0
- data/.pre-commit-config.yaml +7 -0
- data/CHANGELOG.md +7 -0
- data/Gemfile.lock +4 -4
- data/README.md +1 -1
- data/commitlint.config.js +5 -0
- data/lib/junoser/version.rb +1 -1
- metadata +5 -3
- data/.travis.yml +0 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e2a12a2f333461d8fa3fac8446e159180758be7e42a7f5f20fd537a1b43aa8d7
|
4
|
+
data.tar.gz: 559deb9e18b0decf0770ad5c6c4c4f39f4e142238b15c58a7bbd07e90f10fb53
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ccea46701226315660767308ac13e2df613ce936277462c7c9712c95b68a6203d8f45a8a35cbc56633a09134be9915d1b60e1e62b46a74f722341b44d5c2ddff
|
7
|
+
data.tar.gz: 472c7756ec33f8c973051a6a0d8a63f8f563e9ca79b883439c50a27224546267561869b22ef70ec576b3d81793dcd6f8c4dbe7b8f972bbafe09baeb997c5c642
|
@@ -0,0 +1,30 @@
|
|
1
|
+
name: Test on Ubuntu
|
2
|
+
|
3
|
+
on: [push, pull_request]
|
4
|
+
|
5
|
+
jobs:
|
6
|
+
test:
|
7
|
+
runs-on: ${{ matrix.os }}
|
8
|
+
continue-on-error: ${{ matrix.experimental }}
|
9
|
+
strategy:
|
10
|
+
fail-fast: false
|
11
|
+
matrix:
|
12
|
+
ruby-version: ['3.0', '2.7', '2.6']
|
13
|
+
os: [ubuntu-latest]
|
14
|
+
experimental: [false]
|
15
|
+
include:
|
16
|
+
- ruby-version: head
|
17
|
+
os: ubuntu-latest
|
18
|
+
experimental: true
|
19
|
+
|
20
|
+
name: Test with ruby ${{ matrix.ruby-version }} on ${{ matrix.os }}
|
21
|
+
steps:
|
22
|
+
- uses: actions/checkout@v2
|
23
|
+
- name: Set up Ruby
|
24
|
+
uses: ruby/setup-ruby@v1
|
25
|
+
with:
|
26
|
+
ruby-version: ${{ matrix.ruby-version }}
|
27
|
+
- name: Install dependencies
|
28
|
+
run: bundle install
|
29
|
+
- name: Run tests
|
30
|
+
run: bundle exec rake test
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
junoser (0.4.
|
4
|
+
junoser (0.4.3)
|
5
5
|
parslet
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
mini_portile2 (2.
|
11
|
-
nokogiri (1.
|
12
|
-
mini_portile2 (~> 2.
|
10
|
+
mini_portile2 (2.6.1)
|
11
|
+
nokogiri (1.12.5)
|
12
|
+
mini_portile2 (~> 2.6.1)
|
13
13
|
racc (~> 1.4)
|
14
14
|
parslet (2.0.0)
|
15
15
|
power_assert (2.0.0)
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Junoser
|
2
2
|
|
3
|
-
[![
|
3
|
+
[![Test on Ubuntu](https://github.com/codeout/junoser/actions/workflows/test-linux.yaml/badge.svg)](https://github.com/codeout/junoser/actions/workflows/test-linux.yaml)
|
4
4
|
[![Code Climate](https://codeclimate.com/github/codeout/junoser.png)](https://codeclimate.com/github/codeout/junoser)
|
5
5
|
[![Inline docs](http://inch-ci.org/github/codeout/junoser.svg)](http://inch-ci.org/github/codeout/junoser)
|
6
6
|
|
data/lib/junoser/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: junoser
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shintaro Kojima
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-09-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: parslet
|
@@ -89,8 +89,9 @@ executables:
|
|
89
89
|
extensions: []
|
90
90
|
extra_rdoc_files: []
|
91
91
|
files:
|
92
|
+
- ".github/workflows/test-linux.yaml"
|
92
93
|
- ".gitignore"
|
93
|
-
- ".
|
94
|
+
- ".pre-commit-config.yaml"
|
94
95
|
- CHANGELOG.md
|
95
96
|
- Gemfile
|
96
97
|
- Gemfile.lock
|
@@ -99,6 +100,7 @@ files:
|
|
99
100
|
- Rakefile
|
100
101
|
- bin/console
|
101
102
|
- bin/setup
|
103
|
+
- commitlint.config.js
|
102
104
|
- example/get-schema.xml
|
103
105
|
- example/junos-18.1R3-S9.rb
|
104
106
|
- example/mx-19.3R3-S1.3.rb
|