Skip to content

Commit 90c0d77

Browse files
Merge pull request #128 from activeadmin/feature/drop-ruby-2.2
Change Ruby supported minimum to 2.3
2 parents 884b5b0 + 5e6a079 commit 90c0d77

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ language: ruby
22
services:
33
- mongodb
44
rvm:
5-
- 2.2
65
- 2.3
76
- 2.4
87
- 2.5

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
# ActiveAdmin-Mongoid
2+
[![Build Status](https://travis-ci.org/activeadmin/activeadmin-mongoid.svg?branch=master)](https://travis-ci.org/activeadmin/activeadmin-mongoid)
23

34
## Updates
45

56
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 Nic Boie, JD Guzman, Elia Schito and other ActiveAdmin and community members.
67

7-
### Requirements for version 0.7.0
8-
* Ruby 2.2.2 or greater. (Note, ruby-2.4.0 fails specs, see [this issue](https://github.com/DatabaseCleaner/database_cleaner/issues/466))
8+
### Requirements for version 0.8.0
9+
* Ruby 2.3.0 or greater. (Note, ruby-2.4.0 fails specs, see [this issue](https://github.com/DatabaseCleaner/database_cleaner/issues/466))
910
* Tested working on Rails 5.1.x
1011
* 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!)
1112
* ActiveAdmin 1.3
@@ -19,9 +20,6 @@ ActiveAdmin is holding off on pulling Mongoid support into the core ActiveAdmin
1920

2021
This gem has been brought into the ActiveAdmin org for support and maintenance.
2122

22-
<!-- [![Build Status](https://secure.travis-ci.org/elia/activeadmin-mongoid.svg?branch=master)](http://travis-ci.org/elia/activeadmin-mongoid)
23-
[![Gem Version](https://badge.fury.io/rb/activeadmin-mongoid.svg)](http://badge.fury.io/rb/activeadmin-mongoid) -->
24-
2523
# ActiveAdmin::Mongoid
2624

2725
ActiveAdmin hacks to support Mongoid.

activeadmin-mongoid.gemspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +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'
2022

2123
gem.add_runtime_dependency 'mongoid', ['~> 6.0']
2224
gem.add_runtime_dependency 'activeadmin', '>= 1.3.0'
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.7.0'
3+
VERSION = '0.8.0'
44
end
55
end

0 commit comments

Comments
 (0)