Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add gpg_home parameter to support setting --homedir on gpg command #28

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Update Rakefile
  • Loading branch information
Scott Brimhall committed Jul 27, 2017

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit debe9ecf3cf61e4b9e6cac9f1697775749707b28
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -11,9 +11,9 @@ matrix:
env: PUPPET_GEM_VERSION="~> 3.8"
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.8"
- rvm: 2.1.0
- rvm: 2.1.10
env: PUPPET_GEM_VERSION="~> 4.0"
- rvm: 2.4.0
- rvm: 2.4.1
env: PUPPET_GEM_VERSION="~> 5.0"
notifications:
email: [email protected]
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
source ENV['GEM_SOURCE'] || 'https://rubygems.org'

puppetversion = ENV.key?('PUPPET_VERSION') ? ENV['PUPPET_VERSION'] : ['>= 3.3']
puppetversion = ENV.key?('PUPPET_GEM_VERSION') ? ENV['PUPPET_GEM_VERSION'] : ['>= 3.8.7']
gem 'metadata-json-lint'
gem 'puppet', puppetversion
gem 'puppetlabs_spec_helper', '>= 1.2.0'
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
require 'rake'
require 'puppetlabs_spec_helper/rake_tasks'
require 'puppet-lint/tasks/puppet-lint'
require 'metadata-json-lint/rake_task'
@@ -8,7 +9,6 @@ if RUBY_VERSION >= '1.9'
end

PuppetLint.configuration.send('disable_80chars')
PuppetLint.configuration.send
PuppetLint.configuration.relative = true
PuppetLint.configuration.send("disable_80chars")
PuppetLint.configuration.send('disable_class_parameter_defaults')