-
Notifications
You must be signed in to change notification settings - Fork 71
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
Use the latest Puppet 3 version #96
Conversation
Can you also do this to rubocop? Picking up point releases is safe. |
An alternative format would be |
@@ -54,7 +54,7 @@ else | |||
gem 'facter', :require => false, :groups => [:test] | |||
end | |||
|
|||
ENV['PUPPET_VERSION'].nil? ? puppetversion = '3.8.6' : puppetversion = ENV['PUPPET_VERSION'].to_s | |||
ENV['PUPPET_VERSION'].nil? ? puppetversion = '>~ 3.0' : puppetversion = ENV['PUPPET_VERSION'].to_s |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wrong direction?
Use the latest Puppet 3 version
@@ -36,7 +36,7 @@ Gemfile: | |||
- gem: voxpupuli-release | |||
git: https://github.com/voxpupuli/voxpupuli-release-gem.git | |||
- gem: rubocop | |||
version: '0.38.0' | |||
version: '~> 0.38' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
really hope this doesn't come back to bite us, since rubocop is still 0.x, and hence, semver-free-for-all
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should result in 0.38.z, NOT 0.38-0.99999999, so unless rubocop gets even WORSE about point releases, we should be relatively safe.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
here's hoping ;)
No description provided.