block.rb 241 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 class Block < ActiveRecord::Base acts_as_list :scope => :box belongs_to :box def content(main_content = nil) "This is block number %d" % self.id end def editor { :controller => 'block_editor', :id => self.id } end end