Module: Reactio::Utils

Included in:
Service
Defined in:
lib/reactio/utils.rb

Constant Summary collapse

NIL_STRING =
'null'.freeze

Instance Method Summary collapse

Instance Method Details

#to_option_string(symbol) ⇒ Object



5
6
7
8
# File 'lib/reactio/utils.rb', line 5

def to_option_string(symbol)
  return NIL_STRING if symbol.nil?
  symbol.to_s.gsub('_', '-')
end