vagrant-sakura 0.4.0 → 0.4.2

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: ff62058f6d3ce51b240bbdad45b0fe7f9942394cb52a5df629f535a7bc9e9184
4
- data.tar.gz: f03df4f5117fc2451e9609365e880d8cf8c698c46a360d678fac0efb20c9a8dd
3
+ metadata.gz: 2ac5bd309695b4f433c107878c79409d19957714751fd10f446b3e0643533831
4
+ data.tar.gz: 547cf4d2531ce4b7b6b59835f7f09721b550710f104d69d662cb1b4879e831f9
5
5
  SHA512:
6
- metadata.gz: b27a402df3a7561cc214d1c9018b82ab2c9f4c32787c42b33389196d987fcaab93cb62e3f314af9ea0717374f17da38f3e5bdbbaab65d794ac205415058e3eab
7
- data.tar.gz: 1e77021af5c82b5b8fc15ca335181ea44f3275c34863cfd57db58258b31936fcb823296dc6689c4c408d54529f0856bb4241628217c3dc6ce6344a9ced99cfa0
6
+ metadata.gz: d164e746811fa345335e3eac6d74e60dd89d62f20674782399159579c14d4da7213891d046e30a198aa072321e2493f8f7fe5a7d1d6d442e26c733d3b54ebbc6
7
+ data.tar.gz: f0b7c9df6f5a7ddb7ef8aa1d08e8d245aeb467236f2c6f54a057c29618e3a7d596df0a98b62289d3efe92eeead10bd21b8d5ae66c4e8efa9af543059e027261e
@@ -0,0 +1,18 @@
1
+ name: Tests
2
+ on: [push, pull_request]
3
+ jobs:
4
+ test:
5
+ strategy:
6
+ fail-fast: false
7
+ matrix:
8
+ os: [ubuntu]
9
+ ruby: [2.5, 2.6, 2.7]
10
+ runs-on: ${{ matrix.os }}-latest
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - uses: ruby/setup-ruby@v1
14
+ with:
15
+ ruby-version: ${{ matrix.ruby }}
16
+ bundler-cache: true
17
+ - run: bundle install
18
+ - run: bundle exec rake test
@@ -1,6 +1,16 @@
1
1
  # CHANGELOG
2
2
 
3
- ## 0.3.2 (2019/11/21)
3
+ ## 0.4.2 (2020/10/09)
4
+
5
+ - Github Actions [#52] (@yamamoto-febc)
6
+ - Use vagrant 2.2.10 [#51] (@yamamoto-febc)
7
+ - Remove ruby-2.3.7 from test targets on TravisCI [#49] (@yamamoto-febc)
8
+
9
+ ## 0.4.1 (2020/10/08)
10
+
11
+ - Ubuntu 20.04 (#48)
12
+
13
+ ## 0.4.0 (2019/11/21)
4
14
 
5
15
  - os_typeの追加 (#43)
6
16
 
data/Gemfile CHANGED
@@ -1,10 +1,10 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  group :development do
4
- gem "vagrant", :git => "git://github.com/mitchellh/vagrant.git", :tag => 'v2.1.2'
4
+ gem "vagrant", :git => "git://github.com/hashicorp/vagrant.git", :tag => 'v2.2.10'
5
5
  gem "test-unit", "~> 3.2.3"
6
6
  # gem "test-unit-rr", "~> 1.0.5"
7
- gem "rake", "~> 12.0.0"
7
+ gem "rake", ">= 12.3.3"
8
8
  end
9
9
 
10
10
  group :plugins do
data/README.md CHANGED
@@ -184,6 +184,7 @@ $ vagrant sakura-list-id
184
184
  |指定可能な値|SSHユーザー名|Vagrantfileの例|備考|
185
185
  |---|---|:---:|---|
186
186
  |`ubuntu`(デフォルト)|`ubuntu`| [example](examples/ubuntu.md) | - |
187
+ |`ubuntu-20.04`|`ubuntu`| - | - |
187
188
  |`ubuntu-18.04`|`ubuntu`| - | - |
188
189
  |`ubuntu-16.04`|`ubuntu`| - | - |
189
190
  |`centos`|`root`| [example](examples/centos.md) | - |
@@ -223,17 +224,18 @@ $ vagrant sakura-list-id
223
224
  ```sh
224
225
  $ bundle
225
226
  ```
226
- 依存パッケージが入ったら、。。。
227
- 開発を始められます。
228
- ``Vagrantfile`` を clone したディレクトリに置いて
229
- (.gitignore に書いてあるので git には無視されます)、
230
- 以下の行を ``Vagrantfile`` に足してやれば、プラグインをインストールしなくても
231
- 開発中の Vagrant 環境をテストすることができます。
232
- ```Ruby
233
- Vagrant.require_plugin "vagrant-sakura"
227
+
228
+ 開発中のプラグインをテストするには以下のようにビルドしてから`vagrant plugin`コマンドでプラグインをインストールします。
229
+
230
+ ```sh
231
+ bundle exec rake build
232
+ vagrant plugin install pkg/vagrant-sakura-*.gem
234
233
  ```
235
234
 
236
- Vagrant を実行する時は bundler を使ってください:
235
+ プラグインをインストール後、``Vagrantfile`` clone したディレクトリに置いて
236
+ (.gitignore に書いてあるので git には無視されます)、
237
+
238
+ 開発中の Vagrant 環境をテストすることができます。
237
239
  ```sh
238
- $ bundle exec vagrant up --provider=sakura
240
+ $ vagrant up
239
241
  ```
@@ -17,6 +17,9 @@ module VagrantPlugins
17
17
  "ubuntu" => {
18
18
  "Tags.Name" => [%w(current-stable distro-ubuntu)]
19
19
  },
20
+ "ubuntu-20.04" => {
21
+ "Tags.Name" => [%w(ubuntu-20.04-latest)]
22
+ },
20
23
  "ubuntu-18.04" => {
21
24
  "Tags.Name" => [%w(ubuntu-18.04-latest)]
22
25
  },
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module Sakura
3
- VERSION = "0.4.0"
3
+ VERSION = "0.4.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-sakura
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tomoyuki Sahara
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-11-21 00:00:00.000000000 Z
12
+ date: 2020-10-09 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: Enables Vagrant to manage machines in Sakura Cloud.
15
15
  email:
@@ -18,8 +18,8 @@ executables: []
18
18
  extensions: []
19
19
  extra_rdoc_files: []
20
20
  files:
21
+ - ".github/workflows/tests.yaml"
21
22
  - ".gitignore"
22
- - ".travis.yml"
23
23
  - CHANGELOG.md
24
24
  - Gemfile
25
25
  - LICENSE-vagrant-aws.txt
@@ -90,8 +90,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
90
90
  - !ruby/object:Gem::Version
91
91
  version: '0'
92
92
  requirements: []
93
- rubyforge_project:
94
- rubygems_version: 2.7.7
93
+ rubygems_version: 3.1.2
95
94
  signing_key:
96
95
  specification_version: 4
97
96
  summary: Enables Vagrant to manage machines in Sakura Cloud.
@@ -1,30 +0,0 @@
1
- sudo: false
2
- language: ruby
3
- cache: bundler
4
-
5
- addons:
6
- apt:
7
- packages:
8
- - bsdtar
9
- rvm:
10
- - 2.3.7
11
- - 2.4.4
12
- - 2.5.0
13
- - 2.5.1
14
-
15
- env:
16
- global:
17
- - NOKOGIRI_USE_SYSTEM_LIBRARIES=true
18
-
19
- script: bundle exec rake test
20
-
21
- deploy:
22
- provider: rubygems
23
- api_key:
24
- secure: dPtjpKnaDadiUGiO/ZZG+CK0GRChirb6qbr5UawJff3X1POtU/Q7AXOfwYkMEZv55NT098jvtqPDcAA7ilqQu6Pb1YO51FnHqXk5UPqksCMcAucQX6ByL3V1X8Vliw2rbvKw8BTg9IoNotu6bDIFMDdU0Gz0iU35U9efkxIX+Rc=
25
- on:
26
- tags: true
27
-
28
- notifications:
29
- slack:
30
- secure: d9jmDMPRbEHfKTmY+FqYNovtDTag+NNBVE2W3YYkGLp4QCGiaHSlV6rCDDmX02fUOtLgA1FrsJJpS17/3sBG6JX3aWh4wIWW8XCzrzUmItWa25J/Fj3KutbJN0pYXeEVDR8Cw0OoAZpzlgBOBbe5mcCpPhHhe3gTUaRBxqCiQII=