Methods
- C
-
- I
-
- M
-
- R
-
Instance Public methods
Source:
show
| on GitHub
def inherited(base)
raise "You cannot inherit from a #{self.superclass.name} child"
end
Source:
show
| on GitHub
def respond_to?(*args)
super || instance.respond_to?(*args)
end
Instance Protected methods
method_missing(*args, &block)
Source:
show
| on GitHub
def method_missing(*args, &block)
instance.send(*args, &block)
end