Method: NilClass#method_missing
- Defined in:
- lib/ext/nil.rb
#method_missing(name, *args, &block) ⇒ Object
52 53 54 55 56 57 58 59 |
# File 'lib/ext/nil.rb', line 52 def method_missing(name, *args, &block) if null? self else nil! super end end |