knife-changelog 1.0.3 → 1.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 +5 -5
- data/lib/knife/changelog/changelog.rb +2 -8
- data/lib/knife/changelog/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 1d5eab5f193893c7ae463e7ddecd7e001aacca5eb46aebf9aa9952835e58fef9
|
|
4
|
+
data.tar.gz: 314cd0c501054eac81c9112cd8f6e735997241269e1048cfe281bf18c0bb195d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 37099d51c2a1f18a7fd9b51f158cf9dde20c76676df96f82806fd879da24b78c285afa0f89e815d9d359569bfa5fb691c382a75730709f79f9e522537f7e0fe9
|
|
7
|
+
data.tar.gz: 7db47e191620e1278f9b1daa15448dc5e44e83926ada6f55a20a8b495aee8f44601754852bd4f41a9c05804b40e6510a714e7715e7ca6f0d6066f8b2904c9501
|
|
@@ -172,14 +172,8 @@ class KnifeChangelog
|
|
|
172
172
|
url = get_from_supermarket_sources(name)
|
|
173
173
|
raise "No source found in supermarket for cookbook '#{name}'" unless url
|
|
174
174
|
Chef::Log.debug("Using #{url} as source url")
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
url = "https://#{$1}.com/#{$2.chomp('/')}.git"
|
|
178
|
-
location = Location.new(url, guess_version_for(name), 'master')
|
|
179
|
-
handle_git(name, location)
|
|
180
|
-
else
|
|
181
|
-
fail "External url #{url} points to unusable location! (cookbook: #{name})"
|
|
182
|
-
end
|
|
175
|
+
location = Location.new(url, guess_version_for(name), 'master')
|
|
176
|
+
handle_git(name, location)
|
|
183
177
|
end
|
|
184
178
|
|
|
185
179
|
def detect_cur_revision(name, rev, git)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: knife-changelog
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gregoire Seux
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-11-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -213,7 +213,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
213
213
|
version: '0'
|
|
214
214
|
requirements: []
|
|
215
215
|
rubyforge_project:
|
|
216
|
-
rubygems_version: 2.
|
|
216
|
+
rubygems_version: 2.7.2
|
|
217
217
|
signing_key:
|
|
218
218
|
specification_version: 4
|
|
219
219
|
summary: Facilitate access to cookbooks changelog
|