Skip to content

Commit

Permalink
Drop support for ruby 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
grzegorz-jakubiak committed Jan 26, 2020
1 parent a06da97 commit d3abe24
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ before_install:
- gem install bundler
- bundle update --bundler
rvm:
- 2.3
- 2.4
- 2.5
- 2.6
- 2.6
- 2.7
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

ActiveAdmin is holding off on pulling Mongoid support into the core ActiveAdmin application. This repo was pulled into the ActiveAdmin org from previous work done by Elia Schito, and will be maintained by Grzegorz Jakubiak, Nic Boie, JD Guzman, Elia Schito and other ActiveAdmin and community members.

### Requirements for version 0.9.0
* Ruby 2.3.0 or greater. (Note, ruby-2.4.0 fails specs, see [this issue](https://github.com/DatabaseCleaner/database_cleaner/issues/466))
### Requirements for version 1.0.0
* Ruby 2.4.0 or greater.
* Tested working on Rails 5.2.3
* Mongoid 6.x (**WARNING**:, using a Mongoid version >= 6.1.x has resulted in a fair amount of errors seen in the wild. Test your upgrade very carefully with any apps in which you're using this gem with Mongoid >= 6.1.x!)
* ActiveAdmin 1.4.3
Expand Down
4 changes: 2 additions & 2 deletions activeadmin-mongoid.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ Gem::Specification.new do |gem|
gem.require_paths = ['lib']
gem.version = ActiveAdmin::Mongoid::VERSION
gem.license = 'MIT'
gem.required_ruby_version = '>= 2.3'

gem.required_ruby_version = '>= 2.4'

gem.add_runtime_dependency 'mongoid', ['~> 6.0']
gem.add_runtime_dependency 'activeadmin', '>= 1.4.3'
Expand Down
2 changes: 1 addition & 1 deletion lib/active_admin/mongoid/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module ActiveAdmin
module Mongoid
VERSION = '0.9.0'
VERSION = '1.0.0'
end
end

0 comments on commit d3abe24

Please sign in to comment.