Skip to content

Instantly share code, notes, and snippets.

@YumaInaura
Created October 29, 2015 03:44
Show Gist options
  • Select an option

  • Save YumaInaura/05e4e99f036bbee057eb to your computer and use it in GitHub Desktop.

Select an option

Save YumaInaura/05e4e99f036bbee057eb to your computer and use it in GitHub Desktop.
ActiveAdmin でのモデルの追加方法 (基本) ref: http://qiita.com/Yinaura/items/bb822b42d50234b1a31b
ActiveAdmin.register Book do
permit_params :title, :author
end
rails generate model book title:string author:string
rake db:migrate
rails generate active_admin:resource book
rails server
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment