Methods
- C
-
- I
-
- M
-
- R
-
Instance Public methods
Source: show
| on GitHub
23: def configure(&block)
24: class_eval(&block)
25: end
Source: show
| on GitHub
11: def inherited(base)
12: raise "You cannot inherit from a #{self.superclass.name} child"
13: end
Source: show
| on GitHub
15: def instance
16: @instance ||= new
17: end
Source: show
| on GitHub
19: def respond_to?(*args)
20: super || instance.respond_to?(*args)
21: end
Instance Protected methods
method_missing(*args, &block)
Source: show
| on GitHub
29: def method_missing(*args, &block)
30: instance.send(*args, &block)
31: end