vagrant-serverkit 0.0.1 → 0.0.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +18 -13
- data/Vagrantfile +0 -2
- data/lib/vagrant/serverkit/version.rb +1 -1
- data/vagrant-serverkit.gemspec +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 20187af06fa19ce656ba425bdd9d381e3b167e6d
|
4
|
+
data.tar.gz: a54700e1c8539a517e96222771b43d2a89da9d3f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 25e4f68cd628e542a5dbeddd8729ff300170cc3ec5d29adc5650352bd80426fbc70c587c4c4f192363d19b091a4949837ee51466361b61d99b4b16983db0d423
|
7
|
+
data.tar.gz: 7463411c5480b98c6bfa02523c3c01d2ca4a3cafbf97b0ae0105c529345ace4a24abe6911a9bede99a194e06595e72f4c1f7bf4f6af73243c3f4ae58aa36303f
|
data/CHANGELOG.md
ADDED
data/README.md
CHANGED
@@ -1,32 +1,29 @@
|
|
1
1
|
# vagrant-serverkit
|
2
2
|
[Vagrant](https://github.com/mitchellh/vagrant) plug-in for [Serverkit](https://github.com/r7kamura/serverkit).
|
3
3
|
|
4
|
-
|
4
|
+
- [Usage](#usage)
|
5
|
+
- [Install](#install)
|
6
|
+
- [Config](#config)
|
7
|
+
- [Example](#example)
|
8
|
+
- [Development](#development)
|
9
|
+
|
10
|
+
## Usage
|
11
|
+
### Install
|
5
12
|
```
|
6
13
|
$ vagrant plugin install vagrant-serverkit
|
7
14
|
```
|
8
15
|
|
9
|
-
|
16
|
+
### Config
|
10
17
|
The following configurations are available on serverkit provisioner:
|
11
18
|
|
12
19
|
- `recipe_path` - Path to serverkit recipe (e.g. `"recipe.yml"`)
|
13
20
|
- `variables_path` - Path to serverkit recipe variables (optional)
|
14
21
|
|
15
|
-
|
16
|
-
For vagrant-serverkit developers, an example Vagrantfile is provided in this repository.
|
17
|
-
To test provisioning with vagrant-serverkit, execute the following command.
|
18
|
-
|
19
|
-
```
|
20
|
-
$ bundle exec vagrant provision
|
21
|
-
```
|
22
|
-
|
23
|
-
## Example
|
22
|
+
### Example
|
24
23
|
Here are example files to provision your vagrant box with Serverkit.
|
25
24
|
|
26
25
|
```rb
|
27
26
|
# Vagrantfile
|
28
|
-
Vagrant.require_plugin("vagrant-serverkit")
|
29
|
-
|
30
27
|
Vagrant.configure("2") do |config|
|
31
28
|
config.vm.box = "ubuntu/trusty64"
|
32
29
|
|
@@ -52,3 +49,11 @@ package_names:
|
|
52
49
|
- vim
|
53
50
|
- wget
|
54
51
|
```
|
52
|
+
|
53
|
+
## Development
|
54
|
+
For vagrant-serverkit developers, an example Vagrantfile is provided in this repository.
|
55
|
+
To test provisioning with vagrant-serverkit, execute the following command.
|
56
|
+
|
57
|
+
```
|
58
|
+
$ bundle exec vagrant provision
|
59
|
+
```
|
data/Vagrantfile
CHANGED
data/vagrant-serverkit.gemspec
CHANGED
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
|
|
14
14
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
15
15
|
spec.require_paths = ["lib"]
|
16
16
|
|
17
|
-
spec.add_runtime_dependency "serverkit"
|
17
|
+
spec.add_runtime_dependency "serverkit", ">= 0.2.8"
|
18
18
|
spec.add_development_dependency "bundler"
|
19
19
|
spec.add_development_dependency "rake", "~> 10.0"
|
20
20
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-serverkit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryo Nakamura
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 0.2.8
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 0.2.8
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -61,6 +61,7 @@ extra_rdoc_files: []
|
|
61
61
|
files:
|
62
62
|
- ".gitignore"
|
63
63
|
- ".travis.yml"
|
64
|
+
- CHANGELOG.md
|
64
65
|
- Gemfile
|
65
66
|
- LICENSE.txt
|
66
67
|
- README.md
|