Icinga / puppet-icinga2-legacy

(legacy) Puppet module for Icinga 2 (EOL)
GNU General Public License v2.0
55 stars 93 forks source link

correct Gemfile #155

Closed Reamer closed 8 years ago

Reamer commented 8 years ago

I think we made a mistake in our testing configuration Without ".0" every puppet 3.x test is a puppet 3.8.3 test.

Example: https://travis-ci.org/Icinga/puppet-icinga2/jobs/86680988 Search "Using puppet 3" on this site

Most of the version specifiers, like >= 1.0, are self-explanatory. The specifier ~> has a special meaning, best shown by example. ~> 2.0.3 is identical to >= 2.0.3 and < 2.1. ~> 2.1 is identical to >= 2.1 and < 3.0. ~> 2.2.beta will match prerelease versions like 2.2.beta.12. http://bundler.io/gemfile.html

Now, we have some failed tests, probably because this https://docs.puppetlabs.com/guides/platforms.html#ruby-versions

There is also a mistake with puppet ENV 3.0. Puppet Version 3.0.2 will not be used. I don't know why.

Greetings Reamer

arioch commented 8 years ago

Thanks for catching this!

arioch commented 8 years ago

Merged upstream.