We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
A default Ruby is specified in the Gemfile, which is useful for development, but makes it hard to test different versions of Ruby on travis.
s.required_ruby_version = '>= 2.3.0'
ruby
rubocop.yml
The text was updated successfully, but these errors were encountered:
Merge pull request #42 from roberts1000/41_remove_default_ruby
472fdee
[PR for issue #41] Remove default ruby
roberts1000
Successfully merging a pull request may close this issue.
A default Ruby is specified in the Gemfile, which is useful for development, but makes it hard to test different versions of Ruby on travis.
s.required_ruby_version = '>= 2.3.0'
to the gemspec to set the minimum Ruby that's supported.ruby
line from the Gemfile. Development can happen on any Ruby that's supported. Rubocop and automated tests will catch problems with Ruby.rubocop.yml
to target Ruby 2.3.8.The text was updated successfully, but these errors were encountered: