# activeadmin-mongoid **Repository Path**: rubygems/activeadmin-mongoid ## Basic Information - **Project Name**: activeadmin-mongoid - **Description**: No description available - **Primary Language**: Ruby - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2016-10-14 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### ♻️ INFO **Official support** has started, subscribe to [activeadmin#2714](https://github.com/activeadmin/activeadmin/issues/2714) for updates! ### ⚠️ ALERT For the reason above **I'm no longer actively maintaining the projec**. I will still accept any pull request for recent rails/mongoid/activeadmin and adding new specs. --- # ActiveAdmin::Mongoid [![Build Status](https://secure.travis-ci.org/elia/activeadmin-mongoid.png?branch=master)](http://travis-ci.org/elia/activeadmin-mongoid) [![Gem Version](https://badge.fury.io/rb/activeadmin-mongoid.png)](http://badge.fury.io/rb/activeadmin-mongoid) ActiveAdmin hacks to support Mongoid. Some ActiveAdmin features are disabled or not working properly: - comments are disabled by default - filters are somehow broken For more on Mongoid support in ActiveAdmin see [this issue](https://github.com/gregbell/active_admin/issues/26). ## Installation ### Some Gems Add the following gems to your application's Gemfile: ```ruby gem 'activeadmin-mongoid' ``` You can safely remove the following lines, since are already activeadmin-mongoid dependencies: ```ruby gem 'activeadmin' gem 'meta_search', '>= 1.1.0.pre' gem 'sass-rails', ['~> 3.1', '>= 3.1.4'] ``` ### Remove Application Dependencies In your config/application.rb, replace : ```ruby require 'rails/all' ``` with : ```ruby require "action_controller/railtie" require "action_mailer/railtie" require "active_resource/railtie" require "sprockets/railtie" require "rails/test_unit/railtie" ``` rails/all includes elements requiring ActiveRecord::Connection ... ### Bundle & Crank Execute: $ bundle $ rails g devise:install $ rails g active_admin:install Check that the generated initializers/devise.rb file requires mongoid orm. You may find a line like this : ```ruby require 'devise/orm/mongoid' ``` Then create the admin user: $ rails console >> AdminUser.create :email => 'admin@example.com', :password => 'password', :password_confirmation => 'password' And that's pretty much it ! ## Contributing 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Added some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create new Pull Request ## Copyright Copyright © 2012 Elia Schito. See LICENSE for details.