kitchen-appbundle-updater 0.0.3 → 0.0.4
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/README.md +5 -5
- data/lib/kitchen-appbundle-updater/version.rb +1 -1
- data/lib/kitchen/provisioner/chef_github.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 169dcc72297817ef7f1f8775acd66e65cd66291c
|
|
4
|
+
data.tar.gz: 3e94b22a7dc3578be8207a02789690a4bdeddedb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0ae9b53d1734d787a48172f1718f6f1bd7bcd15774c0670641b87bd250abf9943825f85adacee583057e0b79053485580cf9a130a079b7e8a59153ccff5cd484
|
|
7
|
+
data.tar.gz: 8b785ea8891a717f03508823cd684b45ad3b25626de74e4d8dfe6a807e37691beba7457bab7597ab35a7c74fb6665ad1cfc6eee8969bcd480de0dc818ae99e05
|
data/README.md
CHANGED
|
@@ -11,8 +11,8 @@ This provider requires [Test-Kitchen](https://github.com/test-kitchen/test-kitch
|
|
|
11
11
|
## <a name="installation"></a> Installation and Setup
|
|
12
12
|
Add the following to your Gemfile:
|
|
13
13
|
```ruby
|
|
14
|
-
gem "test-kitchen", "~> 1.4.0
|
|
15
|
-
gem 'kitchen-appbundle-updater'
|
|
14
|
+
gem "test-kitchen", "~> 1.4.0"
|
|
15
|
+
gem 'kitchen-appbundle-updater'
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
You can use the provided provisioner by modifying the `provisioner` section
|
|
@@ -24,15 +24,15 @@ provisioner:
|
|
|
24
24
|
|
|
25
25
|
## <a name="config"></a> Configuration
|
|
26
26
|
|
|
27
|
-
### <a name="config-
|
|
27
|
+
### <a name="config-refname"></a> refname
|
|
28
28
|
|
|
29
29
|
The branch, tag, or SHA to use. The default value is `master`.
|
|
30
30
|
|
|
31
|
-
### <a name="config-
|
|
31
|
+
### <a name="config-github-owner"></a> github_owner
|
|
32
32
|
|
|
33
33
|
The Github org or user which owns the repository. The default value is `chef`.
|
|
34
34
|
|
|
35
|
-
### <a name="config-
|
|
35
|
+
### <a name="config-github-repo"></a> github_repo
|
|
36
36
|
|
|
37
37
|
The name of the repository. The default value is `chef`.
|
|
38
38
|
|
|
@@ -24,7 +24,7 @@ module Kitchen
|
|
|
24
24
|
end
|
|
25
25
|
|
|
26
26
|
def latest_chef_appbundle_updater
|
|
27
|
-
url = "https://api.github.com/repos/
|
|
27
|
+
url = "https://api.github.com/repos/jaym/chef-appbundle-updater/releases/latest"
|
|
28
28
|
url += "?access_token=#{config[:github_access_token]}" if config[:github_access_token]
|
|
29
29
|
|
|
30
30
|
@cookbook_url ||= open(url) do |r|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kitchen-appbundle-updater
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jay Mundrawala
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-06-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -123,7 +123,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
123
123
|
version: '0'
|
|
124
124
|
requirements: []
|
|
125
125
|
rubyforge_project:
|
|
126
|
-
rubygems_version: 2.4.
|
|
126
|
+
rubygems_version: 2.4.5
|
|
127
127
|
signing_key:
|
|
128
128
|
specification_version: 4
|
|
129
129
|
summary: A Test Kitchen Driver for Appbundle-updater
|