- Notifications
You must be signed in to change notification settings - Fork205
ActiveAdmin hacks to support Mongoid
License
activeadmin/activeadmin-mongoid
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
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.
- 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 or greater
ransack-mongoid- it needs to be explicitly declared in Gemfile, pointing to github's master since it has no releases on rubygems yet.
- Rails 4.x with Mongoid 5.x use branch rails4-mongoid5
- Rails 4.x with Mongoid 4.x branch rails4
- Mongoid 3.x with older versions of rails use v 0.3.0
This gem has been brought into the ActiveAdmin org for support and maintenance.
ActiveAdmin hacks to support Mongoid.Some ActiveAdmin features are disabled or not working properly:
- comments are disabled by default
- filters are somewhat broken
For more on Mongoid support in ActiveAdmin seethis issue.
Add the following gems to your application's Gemfile, and lock the version:
gem'activeadmin-mongoid','1.0.0'gem'ransack-mongoid',github:'activerecord-hackery/ransack-mongoid'
You can safely remove the following lines, since are already activeadmin-mongoid dependencies:
gem'activeadmin'
In your config/application.rb, replace:
require'rails/all'
with:
require"action_controller/railtie"require"action_mailer/railtie"require"active_resource/railtie"require"action_view/railtie"require"sprockets/railtie"require"rails/test_unit/railtie"
NOTE: This gem will NOT work if you use both ActiveRecord AND Mongoid in the same app. rails/all includes elements requiring ActiveRecord::Connection
Execute:
$ bundle$ rails g devise:install$ rails g active_admin:installCheck that the generated initializers/devise.rb file requires mongoid orm.You may find a line like this :
require'devise/orm/mongoid'
Then create an admin user:
$ bundle exec rails console>> AdminUser.create email: 'admin@example.com', password: 'password', password_confirmation: 'password'And that's pretty much it !
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Added some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request
Copyright © 2012 Elia Schito. See LICENSE for details.
About
ActiveAdmin hacks to support Mongoid
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.