class Nonnative::Runner
Attributes
proxy[R]
service[R]
Public Class Methods
new(service)
click to toggle source
# File lib/nonnative/runner.rb, line 7 def initialize(service) @service = service @proxy = Nonnative::ProxyFactory.create(service) end
Public Instance Methods
name()
click to toggle source
# File lib/nonnative/runner.rb, line 12 def name service.name end
Protected Instance Methods
wait_start()
click to toggle source
# File lib/nonnative/runner.rb, line 20 def wait_start sleep 0.1 end
wait_stop()
click to toggle source
# File lib/nonnative/runner.rb, line 24 def wait_stop sleep 0.1 end