Method: ClassRoom::Client::ProxyObject.method_missing

Defined in:
lib/classroom.rb

.method_missing(method, *args) ⇒ Object

If we’re getting methods called on the proxy, they must be for the remote class rather than a method, so ask the ClassRoom server to run the class_method on the supplied object



225
226
227
# File 'lib/classroom.rb', line 225

def self.method_missing(method, *args)
  drb.send(:class_method, class_name, method, *args)
end