-
Notifications
You must be signed in to change notification settings - Fork 58
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
Require Ruby 2.1+ #99
Conversation
spec.add_dependency "inspec", ">=0.22.0", "<1.0.0" | ||
spec.add_dependency "test-kitchen", "~> 1.6" | ||
spec.add_development_dependency "countloc", "~> 0.4" | ||
spec.add_development_dependency "bundler", "~> 1.10" | ||
spec.add_development_dependency "rake", "~> 10.0" | ||
spec.add_development_dependency "rake", "~> 11.0" |
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.
I think we should remove the development dependencies from gemspec and place them into gemfile. @tas50 What do you think?
I think we should only have:
spec.add_dependency "inspec", ">=0.22.0", "<1.0.0"
spec.add_dependency "test-kitchen", "~> 1.6"
here
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.
We've moved to putting our dev deps in the Gemfile. I'm totally fine with that. I didn't want to change things to much in this PR since I wasn't sure how you folks like to do things, but I can make that change now that I know you're OK with it.
@chris-rock This should be good to go now |
Signed-off-by: Tim Smith <tsmith@chef.io>
Thanks for the improvement @tas50 |
Ruby 1.9 and 2.0 are EOL and we shouldn't be supporting them anymore.
#98 needs to get merged first for this to make sense