Method: VacmanController::Kernel.all
- Defined in:
- lib/vacman_controller/kernel.rb
.all ⇒ Object Also known as: to_h
Returns all configured parameters
30 31 32 33 34 |
# File 'lib/vacman_controller/kernel.rb', line 30 def all property_names.inject({}) do |h, name| h.update(name => (self[name] rescue "ERROR: #$!")) end end |