Class: InheritedResources::BlankSlate

Inherits:
Object
  • Object
show all
Defined in:
lib/inherited_resources/blank_slate.rb

Overview

An object from BlankSlate simply discards all messages sent to it.

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(*args) ⇒ Object



8
9
10
# File 'lib/inherited_resources/blank_slate.rb', line 8

def method_missing(*args)
  nil
end