Method: ProcMan::Process#manual
- Defined in:
- lib/proc_man/process.rb
#manual ⇒ Object
Returns whether this process is explicitly listed
38 39 40 41 |
# File 'lib/proc_man/process.rb', line 38 def manual return @manual unless @manual.nil? @manual = self.[:processes] && self.[:processes].split(',').include?(self.name.to_s) end |