LoginSignup
2
2

More than 5 years have passed since last update.

Rails5にActive Admin

Last updated at Posted at 2016-08-04

Rails 4 & Active Admin

Gemfile

gem 'activeadmin', github: 'activeadmin'
gem 'devise'
gem 'inherited_resources', github: 'activeadmin/inherited_resources'
gem 'ransack',             github: 'activerecord-hackery/ransack'
gem 'draper',              '> 3.x'
bundle install

インストール

rails g active_admin:install
rails db:migrate
rails db:seed

※ 5からは、rakeじゃなくてrails

お試し

rails g model Article title:string sentence:string
rails g active_admin:resource Article

Rails 4 & Active Admin

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2