-
-
Notifications
You must be signed in to change notification settings - Fork 910
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
Drop support for deprecated Ruby (2.0 and 2.1) and Rails (4.0 and 4.1) versions #1032
Drop support for deprecated Ruby (2.0 and 2.1) and Rails (4.0 and 4.1) versions #1032
Conversation
7daf8d1
to
f5590df
Compare
👏 👏 👏 Great! Keep in mind that this means we'll need to bump to 4.0. I'm perfectly fine with that, but it's something to keep in mind. By the way -- I've been keeping a log of changes in NEWS.md. You may want to add this there (it's easier to do it as you go along rather than before a release). |
e69449d
to
a2a415a
Compare
@@ -548,7 +548,7 @@ def value_to_attribute_type(value) | |||
case value | |||
when true, false then :boolean | |||
when BigDecimal then :decimal | |||
when Fixnum then :fixnum | |||
when Integer then :fixnum |
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.
Indent when as deep as case.
@@ -548,7 +548,7 @@ def value_to_attribute_type(value) | |||
case value | |||
when true, false then :boolean | |||
when BigDecimal then :decimal | |||
when Fixnum then :fixnum | |||
when Integer then :fixnum |
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.
Indent when as deep as case.
a2a415a
to
7efb40a
Compare
Remove TravisCI support for Ruby 2.0 and 2.1 Merge Appraisal Gemfiles for different Ruby versions Remove unused variable in Appraisals file
7efb40a
to
abf4ccd
Compare
Thanks, @mcmire . I will keep NEWS.md updated. |
Support of Ruby 2.1 has ended on April, 1st 2017
https://www.ruby-lang.org/en/news/2017/04/01/support-of-ruby-2-1-has-ended/
Rails 4.1 has reached end of life in 2016
This is an important step to keep shoulda-matchers up to date with current ruby and rails versions and to keep the codebase clean and easier to contribute.