Method: Pkgr::Process#initialize
- Defined in:
- lib/pkgr/process.rb
#initialize(name, command, scale = 1) ⇒ Process
Returns a new instance of Process.
8 9 10 11 12 |
# File 'lib/pkgr/process.rb', line 8 def initialize(name, command, scale = 1) @name = name @command = command @scale = scale || 1 end |