-
Notifications
You must be signed in to change notification settings - Fork 152
Fix tests + Make quotes coherent in Gemfile #136
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
base: master
Are you sure you want to change the base?
Conversation
|
The tests are failing because of the las_comment method that has been removed after being deprecated for a while. References: |
|
#70 pinned rspec to < 3.2.0 for all ruby versions when it was failing only for ruby <= 1.8.7, so changing that. |
…n CONTRIBUTING.md
|
The following error can be fixed by unpinning the rubocop gem: So added a fix for when ruby >= 2 + upgrade to latest version that supports ruby 1.9. |
e29e22e to
b24714d
Compare
|
The next issue to fix is: That is caused by the fact that we clear the coverage task without checking if it exists. (it seems it has been dropped in the latest versions so it doesn't exist anymore). |
363c085 to
8641c85
Compare
8641c85 to
19f49f2
Compare
|
Now Rubocop is failing on ruby 1.9 with the error: In ruby >=2 with: |
3993b2d to
f365145
Compare
f365145 to
1673539
Compare
|
Well, now rubocop fails with: Will send the fix. |
|
Weird, works on puppet 4.2 with ruby 2.3 but with
|
b84bdc7 to
fb314c8
Compare
fb314c8 to
9d16343
Compare
|
We should be good to go now. |
The current tests are failing with most of the versions of ruby and puppet.
In the Gemfiles we have a mix of simple and double quotes.
It would be cleaner to have only 1 type so we stay coherent in the syntax used.
It's just cosmetics.