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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f37eb9172418859fd2a4144cdd0d4b47c657162e02117cfb9fe73a33fe9ca0e2
4
- data.tar.gz: 4791fbaf136985e1b16a4dba7daaf2fc2dbcee8ed85508d2e3c65b5b3f4575b9
3
+ metadata.gz: e2a12a2f333461d8fa3fac8446e159180758be7e42a7f5f20fd537a1b43aa8d7
4
+ data.tar.gz: 559deb9e18b0decf0770ad5c6c4c4f39f4e142238b15c58a7bbd07e90f10fb53
5
5
  SHA512:
6
- metadata.gz: 5961c24e760831bf52f6edb82c5972aefb023d99639091fb2c12d95f083ef57e9e2703fd441dbb0c1d5e44b5e386834679e910873e44825c9a7c103243fa2c6c
7
- data.tar.gz: 9e41dcfb72bfe2f5b801506c50725a4a0da2f56a09a8ddeedb8cb7d4b8ae82864008c89cdf2da837ced1c83d39d2e7d53640bba5f7dcb459d434e0d173862659
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
@@ -0,0 +1,7 @@
1
+ repos:
2
+ - repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook
3
+ rev: v5.0.0
4
+ hooks:
5
+ - id: commitlint
6
+ stages: [commit-msg]
7
+ additional_dependencies: ['@commitlint/config-conventional']
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [0.4.3] - 2021-09-28
2
+
3
+ ### Fixed
4
+
5
+ * A Nokogiri's [security vulnerability](https://github.com/advisories/GHSA-2rr5-8q37-2w7h)
6
+
7
+
1
8
  ## [0.4.2] - 2021-08-30
2
9
 
3
10
  ### Added
data/Gemfile.lock CHANGED
@@ -1,15 +1,15 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- junoser (0.4.2)
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.5.3)
11
- nokogiri (1.11.7)
12
- mini_portile2 (~> 2.5.0)
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
- [![Build Status](https://travis-ci.org/codeout/junoser.svg)](https://travis-ci.org/codeout/junoser)
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
 
@@ -0,0 +1,5 @@
1
+ module.exports = {
2
+ extends: ["@commitlint/config-conventional"],
3
+ rules: {
4
+ },
5
+ };
@@ -1,3 +1,3 @@
1
1
  module Junoser
2
- VERSION = "0.4.2"
2
+ VERSION = "0.4.3"
3
3
  end
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.2
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-08-29 00:00:00.000000000 Z
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
- - ".travis.yml"
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
data/.travis.yml DELETED
@@ -1,15 +0,0 @@
1
- language: ruby
2
-
3
- rvm:
4
- - 2.6
5
- - 2.7
6
- - 3.0
7
- - ruby-head
8
-
9
- before_install:
10
- - gem update --system
11
- - gem install bundler
12
-
13
- matrix:
14
- allow_failures:
15
- - rvm: ruby-head