vagrant-vyos 1.1.7 → 1.1.9

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: 81e57d8d196ff0fc92e3f13a2980264fb150391f1a261e9c7c37701131aaa379
4
- data.tar.gz: 4c719b4300d4414a32b23ab4bfed6007705602270c51678a27e0ccaeb30f08e5
3
+ metadata.gz: 86f6b425cded6da9d45eb1847bd09ea742a6294f44c057cba941d9482ce11642
4
+ data.tar.gz: 2d397f4941dd5b0612c36cee75d628e1bfc61581052a5eafef641503ebf02451
5
5
  SHA512:
6
- metadata.gz: 844302a75984bf656548a2c7d9ee5f4ba5caa456def2c0e838d7eeaabf4ad4ccfdd99b41db3f3bfb580fbdfee4b34b6932a02a39ca1feff6123a02cf2eb00652
7
- data.tar.gz: 85cfe560eb9bd8e23d1def4b41602d4651d47209b560f72c79720ed32f5cb489990f41c58a83c3d0d450d124d7c79406fead88db6b28b378ebbcc49f645ecafb
6
+ metadata.gz: 20133bc88d95688885a25c53ce6913ff84d4a6b40324b2bf0d67e05d07514c4d420ce1c0a9861cd7e829cabf991fccaf7035e22d31f2378e02dbb0afa2bd64a0
7
+ data.tar.gz: c2680c126cd0f0933bc9564694fdc1041514a1e0889e1c0b4052f54fbd40f01a8b4645ece3c23c160101548543e72af51be57e2cd7466876849f9ebfeec1fb6f
@@ -0,0 +1,4 @@
1
+ releaseType: ruby
2
+ versionFile: lib/vagrant-vyos/version.rb
3
+ primaryBranch: master
4
+ handleGHRelease: true
@@ -0,0 +1,41 @@
1
+ name: release
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - master
7
+
8
+ jobs:
9
+ release:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: GoogleCloudPlatform/release-please-action@v2
13
+ id: release
14
+ with:
15
+ release-type: ruby
16
+ version-file: lib/vagrant-vyos/version.rb
17
+
18
+ - uses: actions/checkout@v2
19
+ if: ${{ steps.release.outputs.release_created }}
20
+
21
+ - name: Set up Ruby 2.6
22
+ uses: ruby/setup-ruby@v1
23
+ with:
24
+ ruby-version: 2.6
25
+ bundler-cache: true
26
+ if: ${{ steps.release.outputs.release_created }}
27
+
28
+ - name: Build
29
+ run: gem build *.gemspec
30
+ if: ${{ steps.release.outputs.release_created }}
31
+
32
+ - name: Publish
33
+ run: |
34
+ mkdir -p $HOME/.gem
35
+ touch $HOME/.gem/credentials
36
+ chmod 0600 $HOME/.gem/credentials
37
+ printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
38
+ gem push *.gem
39
+ if: ${{ steps.release.outputs.release_created }}
40
+ env:
41
+ GEM_HOST_API_KEY: ${{secrets.RUBYGEMS_AUTH_TOKEN}}
@@ -1,24 +1,19 @@
1
- name: Ruby Gem
1
+ name: test
2
2
 
3
3
  on: [push]
4
4
 
5
5
  jobs:
6
6
  build:
7
- name: Test
7
+ name: test
8
8
  runs-on: ubuntu-latest
9
9
 
10
10
  steps:
11
- - uses: actions/checkout@master
11
+ - uses: actions/checkout@v2
12
12
  - name: Set up Ruby 2.6
13
- uses: actions/setup-ruby@v1
13
+ uses: ruby/setup-ruby@v1
14
14
  with:
15
- ruby-version: 2.6.x
16
- - uses: actions/cache@v2
17
- with:
18
- path: vendor/bundle
19
- key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
20
- restore-keys: |
21
- ${{ runner.os }}-gems-
15
+ ruby-version: 2.6
16
+ bundler-cache: true
22
17
  - name: Test
23
18
  run: |
24
19
  gem install bundler
data/.gitignore CHANGED
@@ -18,3 +18,4 @@ tmp
18
18
  .ruby-version
19
19
  .rbenv-gemsets
20
20
  .scannerwork/
21
+ Gemfile.lock
data/CHANGELOG.md ADDED
@@ -0,0 +1,16 @@
1
+ # Changelog
2
+
3
+ ### [1.1.9](https://www.github.com/higebu/vagrant-vyos/compare/v1.1.8...v1.1.9) (2021-07-07)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * remove Gemfile.lock ([7544922](https://www.github.com/higebu/vagrant-vyos/commit/75449224262d8c9405a7a23e2433691518c56021))
9
+
10
+ ### [1.1.8](https://www.github.com/higebu/vagrant-vyos/compare/v1.1.7...v1.1.8) (2021-07-07)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * gempush.yml ([2072747](https://www.github.com/higebu/vagrant-vyos/commit/2072747871785f61a11ff12c671b1f61fd7c08cd))
16
+ * update Gemfile.lock ([cb089e3](https://www.github.com/higebu/vagrant-vyos/commit/cb089e3b78eecdf0b44d0c97afca5cff6530d4c0))
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module GuestVyOS
3
- VERSION = "1.1.7"
3
+ VERSION = "1.1.9"
4
4
  end
5
5
  end
data/renovate.json CHANGED
@@ -1,5 +1,25 @@
1
1
  {
2
2
  "extends": [
3
- "config:base"
3
+ ":separateMajorReleases",
4
+ ":combinePatchMinorReleases",
5
+ ":ignoreUnstable",
6
+ ":prImmediately",
7
+ ":semanticPrefixFixDepsChoreOthers",
8
+ ":updateNotScheduled",
9
+ ":automergeMinor",
10
+ ":automergeDigest",
11
+ ":ignoreModulesAndTests",
12
+ ":maintainLockFilesDisabled",
13
+ ":autodetectPinVersions",
14
+ ":prHourlyLimitNone",
15
+ "group:monorepos",
16
+ "group:recommended",
17
+ ":timezone(Asia/Tokyo)",
18
+ "schedule:nonOfficeHours",
19
+ ":label(renovate)"
20
+ ],
21
+ "prConcurrentLimit": 1,
22
+ "baseBranches": [
23
+ "master"
4
24
  ]
5
25
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-vyos
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.7
4
+ version: 1.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - KUSAKABE Yuya
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-01-06 00:00:00.000000000 Z
11
+ date: 2021-07-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -73,13 +73,14 @@ executables: []
73
73
  extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
- - ".github/workflows/gempush.yml"
76
+ - ".github/release-please.yml"
77
+ - ".github/workflows/release.yml"
77
78
  - ".github/workflows/test.yml"
78
79
  - ".gitignore"
79
80
  - ".rspec"
80
81
  - ".travis.yml"
82
+ - CHANGELOG.md
81
83
  - Gemfile
82
- - Gemfile.lock
83
84
  - LICENSE
84
85
  - README.md
85
86
  - Rakefile
@@ -115,7 +116,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
115
116
  - !ruby/object:Gem::Version
116
117
  version: 1.3.6
117
118
  requirements: []
118
- rubygems_version: 3.0.3
119
+ rubygems_version: 3.0.3.1
119
120
  signing_key:
120
121
  specification_version: 4
121
122
  summary: A small gem that adds vyos guest support to vagrant.
@@ -1,31 +0,0 @@
1
- name: Ruby Gem
2
-
3
- on:
4
- push:
5
- tags:
6
- - 'v*'
7
-
8
- jobs:
9
- build:
10
- name: Build + Publish
11
- runs-on: ubuntu-latest
12
- steps:
13
- - uses: actions/checkout@master
14
- - name: Set up Ruby 2.6
15
- uses: actions/setup-ruby@v1
16
- with:
17
- ruby-version: 2.6.x
18
-
19
- - name: Build
20
- run: gem build *.gemspec
21
-
22
- - name: Publish
23
- run: |
24
- mkdir -p $HOME/.gem
25
- touch $HOME/.gem/credentials
26
- chmod 0600 $HOME/.gem/credentials
27
- printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
28
- gem push *.gem
29
- if: github.event_name == 'push'
30
- env:
31
- GEM_HOST_API_KEY: ${{secrets.RUBYGEMS_AUTH_TOKEN}}
data/Gemfile.lock DELETED
@@ -1,148 +0,0 @@
1
- GIT
2
- remote: https://github.com/hashicorp/vagrant.git
3
- revision: 22795b161bf67a4c0ebbe32c9ce8777cb888c4a7
4
- specs:
5
- vagrant (2.2.11.dev)
6
- bcrypt_pbkdf (~> 1.0.0)
7
- childprocess (~> 4.0.0)
8
- ed25519 (~> 1.2.4)
9
- erubi
10
- hashicorp-checkpoint (~> 0.1.5)
11
- i18n (~> 1.8)
12
- listen (~> 3.1)
13
- log4r (~> 1.1.9, < 1.1.11)
14
- mime (~> 0.4.4)
15
- net-scp (~> 1.2.0)
16
- net-sftp (~> 3.0)
17
- net-ssh (~> 6.0)
18
- rb-kqueue (~> 0.2.0)
19
- rest-client (>= 1.6.0, < 3.0)
20
- ruby_dep (<= 1.3.1)
21
- rubyzip (~> 2.0)
22
- vagrant_cloud (~> 2.0.3)
23
- wdm (~> 0.1.0)
24
- winrm (>= 2.3.4, < 3.0)
25
- winrm-elevated (>= 1.2.1, < 2.0)
26
- winrm-fs (>= 1.3.4, < 2.0)
27
-
28
- PATH
29
- remote: .
30
- specs:
31
- vagrant-vyos (1.1.6)
32
-
33
- GEM
34
- remote: https://rubygems.org/
35
- specs:
36
- bcrypt_pbkdf (1.0.1)
37
- builder (3.2.4)
38
- childprocess (4.0.0)
39
- codecov (0.2.15)
40
- simplecov (>= 0.15, < 0.21)
41
- concurrent-ruby (1.1.7)
42
- diff-lcs (1.4.4)
43
- docile (1.3.4)
44
- domain_name (0.5.20190701)
45
- unf (>= 0.0.5, < 1.0.0)
46
- ed25519 (1.2.4)
47
- erubi (1.10.0)
48
- ffi (1.14.2)
49
- gssapi (1.3.1)
50
- ffi (>= 1.0.1)
51
- gyoku (1.3.1)
52
- builder (>= 2.1.2)
53
- hashicorp-checkpoint (0.1.5)
54
- http-cookie (1.0.3)
55
- domain_name (~> 0.5)
56
- httpclient (2.8.3)
57
- i18n (1.8.7)
58
- concurrent-ruby (~> 1.0)
59
- listen (3.4.0)
60
- rb-fsevent (~> 0.10, >= 0.10.3)
61
- rb-inotify (~> 0.9, >= 0.9.10)
62
- little-plugger (1.1.4)
63
- log4r (1.1.10)
64
- logging (2.3.0)
65
- little-plugger (~> 1.1)
66
- multi_json (~> 1.14)
67
- mime (0.4.4)
68
- mime-types (3.3.1)
69
- mime-types-data (~> 3.2015)
70
- mime-types-data (3.2020.1104)
71
- multi_json (1.15.0)
72
- net-scp (1.2.1)
73
- net-ssh (>= 2.6.5)
74
- net-sftp (3.0.0)
75
- net-ssh (>= 5.0.0, < 7.0.0)
76
- net-ssh (6.1.0)
77
- netrc (0.11.0)
78
- nori (2.6.0)
79
- rake (13.0.3)
80
- rb-fsevent (0.10.4)
81
- rb-inotify (0.10.1)
82
- ffi (~> 1.0)
83
- rb-kqueue (0.2.5)
84
- ffi (>= 0.5.0)
85
- rest-client (2.0.2)
86
- http-cookie (>= 1.0.2, < 2.0)
87
- mime-types (>= 1.16, < 4.0)
88
- netrc (~> 0.8)
89
- rspec (3.10.0)
90
- rspec-core (~> 3.10.0)
91
- rspec-expectations (~> 3.10.0)
92
- rspec-mocks (~> 3.10.0)
93
- rspec-core (3.10.1)
94
- rspec-support (~> 3.10.0)
95
- rspec-expectations (3.10.1)
96
- diff-lcs (>= 1.2.0, < 2.0)
97
- rspec-support (~> 3.10.0)
98
- rspec-mocks (3.10.1)
99
- diff-lcs (>= 1.2.0, < 2.0)
100
- rspec-support (~> 3.10.0)
101
- rspec-support (3.10.1)
102
- ruby_dep (1.3.1)
103
- rubyntlm (0.6.2)
104
- rubyzip (2.3.0)
105
- simplecov (0.20.0)
106
- docile (~> 1.1)
107
- simplecov-html (~> 0.11)
108
- simplecov_json_formatter (~> 0.1)
109
- simplecov-html (0.12.3)
110
- simplecov_json_formatter (0.1.2)
111
- unf (0.1.4)
112
- unf_ext
113
- unf_ext (0.0.7.7)
114
- vagrant_cloud (2.0.3)
115
- rest-client (~> 2.0.2)
116
- wdm (0.1.1)
117
- winrm (2.3.5)
118
- builder (>= 2.1.2)
119
- erubi (~> 1.8)
120
- gssapi (~> 1.2)
121
- gyoku (~> 1.0)
122
- httpclient (~> 2.2, >= 2.2.0.2)
123
- logging (>= 1.6.1, < 3.0)
124
- nori (~> 2.0)
125
- rubyntlm (~> 0.6.0, >= 0.6.1)
126
- winrm-elevated (1.2.3)
127
- erubi (~> 1.8)
128
- winrm (~> 2.0)
129
- winrm-fs (~> 1.0)
130
- winrm-fs (1.3.5)
131
- erubi (~> 1.8)
132
- logging (>= 1.6.1, < 3.0)
133
- rubyzip (~> 2.0)
134
- winrm (~> 2.0)
135
-
136
- PLATFORMS
137
- x86_64-linux
138
-
139
- DEPENDENCIES
140
- codecov
141
- rake
142
- rspec (~> 3.4)
143
- simplecov
144
- vagrant!
145
- vagrant-vyos!
146
-
147
- BUNDLED WITH
148
- 2.2.4