class Hash
Public Instance Methods
ids_selection()
click to toggle source
# File lib/marso/launcher.rb, line 19 def ids_selection self[:select].nil? ? [] : self[:select].is_a?(Array) ? self[:select] : [self[:select]] end
include_mode()
click to toggle source
# File lib/marso/launcher.rb, line 11 def include_mode self[:include_mode].nil? ? :none : self[:include_mode] end
rootpath()
click to toggle source
# File lib/marso/launcher.rb, line 15 def rootpath (self[:rootpath].nil? || self[:rootpath].empty?) ? Dir.pwd : self[:rootpath] end