class DroidProj::RunnerContext

Attributes

app[RW]

Public Instance Methods

create_context() click to toggle source
# File lib/droidproj/runner.rb, line 61
def create_context
  Proc.new {}
end
method_missing(method, *args, &block) click to toggle source
Calls superclass method
# File lib/droidproj/runner.rb, line 65
def method_missing(method, *args, &block)
  if app.respond_to?(method)
    app.send(method, *args, &block)
  else
    super
  end
end