class ParamsReady::Value::SymbolCoder

Public Class Methods

coerce(input, _) click to toggle source
# File lib/params_ready/value/coder.rb, line 156
def self.coerce(input, _)
  input.to_sym
end
format(value, format) click to toggle source
# File lib/params_ready/value/coder.rb, line 160
def self.format(value, format)
  value.to_s
end