module Casting::MethodConsolidator

Public Instance Methods

methods(all = true) click to toggle source
Calls superclass method
# File lib/casting/method_consolidator.rb, line 3
def methods(all = true)
  (super + delegated_methods(all)).uniq
end
private_methods(include_super = true) click to toggle source
Calls superclass method
# File lib/casting/method_consolidator.rb, line 15
def private_methods(include_super = true)
  (super + delegated_private_methods(include_super)).uniq
end
protected_methods(include_super = true) click to toggle source
Calls superclass method
# File lib/casting/method_consolidator.rb, line 11
def protected_methods(include_super = true)
  (super + delegated_protected_methods(include_super)).uniq
end
public_methods(include_super = true) click to toggle source
Calls superclass method
# File lib/casting/method_consolidator.rb, line 7
def public_methods(include_super = true)
  (super + delegated_public_methods(include_super)).uniq
end