Skip to content

Commit d3abe24

Browse files
Drop support for ruby 2.3
1 parent a06da97 commit d3abe24

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ before_install:
66
- gem install bundler
77
- bundle update --bundler
88
rvm:
9-
- 2.3
109
- 2.4
1110
- 2.5
12-
- 2.6
11+
- 2.6
1312
- 2.7

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
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.
88

9-
### Requirements for version 0.9.0
10-
* Ruby 2.3.0 or greater. (Note, ruby-2.4.0 fails specs, see [this issue](https://github.com/DatabaseCleaner/database_cleaner/issues/466))
9+
### Requirements for version 1.0.0
10+
* Ruby 2.4.0 or greater.
1111
* Tested working on Rails 5.2.3
1212
* 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!)
1313
* ActiveAdmin 1.4.3

activeadmin-mongoid.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ Gem::Specification.new do |gem|
1717
gem.require_paths = ['lib']
1818
gem.version = ActiveAdmin::Mongoid::VERSION
1919
gem.license = 'MIT'
20-
21-
gem.required_ruby_version = '>= 2.3'
20+
21+
gem.required_ruby_version = '>= 2.4'
2222

2323
gem.add_runtime_dependency 'mongoid', ['~> 6.0']
2424
gem.add_runtime_dependency 'activeadmin', '>= 1.4.3'

lib/active_admin/mongoid/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module ActiveAdmin
22
module Mongoid
3-
VERSION = '0.9.0'
3+
VERSION = '1.0.0'
44
end
55
end

0 commit comments

Comments
 (0)