Skip to content

Commit

Permalink
Drop support for rails 4.2.x
Browse files Browse the repository at this point in the history
No longer supported by rails so no longer supported by me. I will support 5.0 and 5.1 for a bit because it is easy as of now.
  • Loading branch information
jnunemaker committed Jun 12, 2020
1 parent 1f48efd commit b9ba5af
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 9 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,3 @@ env:
- RAILS_VERSION=5.2.3 SQLITE3_VERSION=1.3.11
- RAILS_VERSION=5.1.4 SQLITE3_VERSION=1.3.11
- RAILS_VERSION=5.0.0 SQLITE3_VERSION=1.3.11
- RAILS_VERSION=4.2.5 SQLITE3_VERSION=1.3.11
1 change: 0 additions & 1 deletion docs/active_record/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ An ActiveRecord adapter for [Flipper](https://github.com/jnunemaker/flipper).

Supported Active Record versions:

* 4.2.x
* 5.0.x
* 6.0.x

Expand Down
2 changes: 1 addition & 1 deletion flipper-active_record.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ Gem::Specification.new do |gem|
gem.metadata = Flipper::METADATA

gem.add_dependency 'flipper', "~> #{Flipper::VERSION}"
gem.add_dependency 'activerecord', '>= 4.2', '< 7'
gem.add_dependency 'activerecord', '>= 5.0', '< 7'
end
2 changes: 1 addition & 1 deletion flipper-active_support_cache_store.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ Gem::Specification.new do |gem|
gem.metadata = Flipper::METADATA

gem.add_dependency 'flipper', "~> #{Flipper::VERSION}"
gem.add_dependency 'activesupport', '>= 4.2', '< 7'
gem.add_dependency 'activesupport', '>= 5.0', '< 7'
end
5 changes: 0 additions & 5 deletions script/test
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,6 @@ cd $(dirname "$0")/..
exit 0
}

export RAILS_VERSION=4.2.5
export SQLITE3_VERSION=1.3.11
script/bootstrap || bundle update
bundle exec rake

export RAILS_VERSION=5.0.0
export SQLITE3_VERSION=1.3.11
script/bootstrap || bundle update
Expand Down

0 comments on commit b9ba5af

Please sign in to comment.