Skip to content

Instantly share code, notes, and snippets.

@YumaInaura
Created November 10, 2015 08:11
Show Gist options
  • Save YumaInaura/8f34b2d89bf9c51910c6 to your computer and use it in GitHub Desktop.
Save YumaInaura/8f34b2d89bf9c51910c6 to your computer and use it in GitHub Desktop.
ActiveAdmin でデータベースと関連しないフォームを作成する方法 ref: http://qiita.com/Yinaura/items/658b1d7b6009261da8f8
class Book < ActiveRecord::Base
attr_accessor :message
end
ActiveAdmin.register Book do
form do |f|
f.inputs do
f.input :title
f.input :message
end
f.actions
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment