module Humpyard::ActiveRecord::Acts::Element::ClassMethods
def method_missing(meth, *args, &blk)
element.send(meth, *args, &blk)
rescue NoMethodError
super
end
Public Instance Methods
is_humpyard_container_element?()
click to toggle source
# File lib/humpyard/active_record/acts/element.rb 62 def is_humpyard_container_element? 63 false 64 end
is_humpyard_element?()
click to toggle source
# File lib/humpyard/active_record/acts/element.rb 58 def is_humpyard_element? 59 true 60 end