Method: AX::Element#methods

Defined in:
lib/ax/element.rb

#methods(include_super = true) ⇒ Object

Like #respond_to?, this is overriden to include attribute methods. Though, it does include dynamic predicate methods at the moment.



507
508
509
# File 'lib/ax/element.rb', line 507

def methods include_super = true
  super.concat(attributes).concat(parameterized_attributes)
end