forked from rodjek/puppet-lint
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #178 from puppetlabs/maint-release_prep
(maint) - Release prep v4.2.2
- Loading branch information
Showing
2 changed files
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
class PuppetLint | ||
VERSION = '5.0.0'.freeze | ||
VERSION = '4.2.2'.freeze | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,12 +2,14 @@ $LOAD_PATH.push(File.expand_path('lib', __dir__)) | |
require 'puppet-lint/version' | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = 'puppetlabs-puppet-lint' | ||
spec.name = 'puppet-lint' | ||
spec.version = PuppetLint::VERSION.dup | ||
spec.homepage = 'https://github.com/puppetlabs/puppet-lint/' | ||
spec.summary = 'Ensure your Puppet manifests conform with the Puppetlabs style guide' | ||
spec.description = <<-EOF | ||
Checks your Puppet manifests against the Puppetlabs style guide and alerts you to any discrepancies. | ||
Note: Support for this gem has been moved under the github rubygems registry and as such any future updates from | ||
the Puppet team will be released under `https://github.com/orgs/puppetlabs/packages/rubygems/puppet-lint`. | ||
EOF | ||
|
||
spec.files = Dir[ | ||
|
@@ -27,6 +29,7 @@ Gem::Specification.new do |spec| | |
'Community Contributors', | ||
] | ||
spec.email = [ | ||
'[email protected]', | ||
'[email protected]', | ||
] | ||
spec.license = 'MIT' | ||
|