danger-puppet_lint 1.0.0 → 1.0.1
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/.yardoc/checksums +1 -1
- data/.yardoc/objects/root.dat +0 -0
- data/danger-puppet_lint.gemspec +1 -1
- data/lib/puppet_lint/gem_version.rb +1 -1
- data/lib/puppet_lint/plugin.rb +1 -2
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4896dc50b309ea0c968b9a90594ec0617e77fbc6
|
|
4
|
+
data.tar.gz: e967b37ebf293542fb02cff0ac66bd0483a2b2ce
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c050b803f7ffdda422f8f9131dc3d3225a519c92c05c8038a5b1ccdabab95bd84221b7e10d9215db33395869da72242c6ea3f36ee0ad5993cf9c7c929af2ea22
|
|
7
|
+
data.tar.gz: 3c4447cecedf8959ab6291d692e7ee0786c8ab23c69474f25addef72e1e161f2bad64b98265fbfb541ac9757337ca0e448d1254cfe71076d7a85c388ec5bcca2
|
data/.yardoc/checksums
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/Users/patrick/Developer/danger-puppet_lint/lib/danger_plugin.rb 346ce1ac8177427c62f1144e41d657f0f8624a88
|
|
2
2
|
/Users/patrick/Developer/danger-puppet_lint/lib/danger_puppet_lint.rb 1308caa9b4514d2dd3ade6cbc41c493122bf7bb0
|
|
3
|
-
/Users/patrick/Developer/danger-puppet_lint/lib/puppet_lint/gem_version.rb
|
|
3
|
+
/Users/patrick/Developer/danger-puppet_lint/lib/puppet_lint/gem_version.rb a8c343bd9d72c12585b8946bb8951e0415e5073d
|
|
4
4
|
/Users/patrick/Developer/danger-puppet_lint/lib/puppet_lint/plugin.rb ec31dd7511a2928934af5d66270b023343727a58
|
data/.yardoc/objects/root.dat
CHANGED
|
Binary file
|
data/danger-puppet_lint.gemspec
CHANGED
|
@@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
|
|
|
7
7
|
spec.name = 'danger-puppet_lint'
|
|
8
8
|
spec.version = PuppetLint::VERSION
|
|
9
9
|
spec.authors = ['Patrick Butkiewicz']
|
|
10
|
-
spec.email = ['
|
|
10
|
+
spec.email = ['pat.butkiewicz@accenture.com']
|
|
11
11
|
spec.description = %q{Shows formatted puppet lint violations using Danger}
|
|
12
12
|
spec.summary = %q{Reads puppet-lint output files and reports them using Danger}
|
|
13
13
|
spec.homepage = 'https://github.com/IntrepidPursuits/danger-puppet_lint'
|
data/lib/puppet_lint/plugin.rb
CHANGED
|
@@ -66,8 +66,7 @@ module Danger
|
|
|
66
66
|
def summary_message(warning_count, error_count)
|
|
67
67
|
violations = warning_count + error_count
|
|
68
68
|
|
|
69
|
-
"Puppet-Lint Summary: Found #{violations} violations. #{warning_count}
|
|
70
|
-
Warnings and #{error_count} Errors."
|
|
69
|
+
"Puppet-Lint Summary: Found #{violations} violations. #{warning_count} Warnings and #{error_count} Errors."
|
|
71
70
|
end
|
|
72
71
|
|
|
73
72
|
# A method that returns a formatted string for a violation
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: danger-puppet_lint
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Patrick Butkiewicz
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-01-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: danger-plugin-api
|
|
@@ -166,7 +166,7 @@ dependencies:
|
|
|
166
166
|
version: '0'
|
|
167
167
|
description: Shows formatted puppet lint violations using Danger
|
|
168
168
|
email:
|
|
169
|
-
-
|
|
169
|
+
- pat.butkiewicz@accenture.com
|
|
170
170
|
executables: []
|
|
171
171
|
extensions: []
|
|
172
172
|
extra_rdoc_files: []
|
|
@@ -215,7 +215,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
215
215
|
version: '0'
|
|
216
216
|
requirements: []
|
|
217
217
|
rubyforge_project:
|
|
218
|
-
rubygems_version: 2.
|
|
218
|
+
rubygems_version: 2.5.1
|
|
219
219
|
signing_key:
|
|
220
220
|
specification_version: 4
|
|
221
221
|
summary: Reads puppet-lint output files and reports them using Danger
|