Sha256: a05b0c1b90bf99ad2ae390fea130ede4a249ac3610cb2c6370cfb10e80d2be8d
Contents?: true
Size: 778 Bytes
Versions: 17
Compression:
Stored size: 778 Bytes
Contents
module ActiveAdmin # This is the class where all the register_page blocks are evaluated. class PageDSL < DSL # Page content. # # The block should define the view using Arbre. # # Example: # # ActiveAdmin.register "My Page" do # content do # para "Sweet!" # end # end # def content(options = {}, &block) config.set_page_presenter :index, ActiveAdmin::PagePresenter.new(options, &block) end def page_action(name, options = {}, &block) config.page_actions << ControllerAction.new(name, options) controller do define_method(name, &block || Proc.new {}) end end def belongs_to(target, options = {}) config.belongs_to(target, options) end end end
Version data entries
17 entries across 17 versions & 2 rubygems