-
Notifications
You must be signed in to change notification settings - Fork 215
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
Add ruby 2.2 and 2.3 to travis build #116
Conversation
5a3b0cd
to
cc1a804
Compare
/cc @laserlemon |
Gemfile
Outdated
@@ -5,4 +5,5 @@ gemspec | |||
group :test do | |||
gem "codeclimate-test-reporter", require: false | |||
gem "rspec", "~> 3.1" | |||
gem "json", "< 2.0.0" if RUBY_VERSION < '2' |
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.
Is this necessary to green the suite? Was Ruby 1.9.3 failing prior to this?
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.
now it not neccessary ruby/json@3015920
.travis.yml
Outdated
@@ -18,5 +18,7 @@ rvm: | |||
- 1.9.3 | |||
- "2.0" | |||
- "2.1" | |||
- "2.2" | |||
- "2.3" |
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.
Is there any reason not to include Ruby 2.4 now as well?
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.
2.4 added
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.
Ugh, it failed on 2.4 because RVM doesn't seem to want to fuzzy match. We may have to be more specific for 2.4.
6471297
to
b632369
Compare
🍏 |
Thank you! 👏 |
No description provided.