Repository URL to install this package:
|
Version:
0.3.0.0 ▾
|
module ProcessHost
module Controls
module Process
def self.example
Example.new
end
module Name
def self.example
:example_process
end
end
class Example
include ProcessHost::Process
process_name Name.example
attr_accessor :started
def start
self.started = true
end
module Assertions
def started?
started ? true : false
end
end
end
end
end
end