Module: Roda::RodaPlugins::TypecastParams::DateParseInputHandler
- Defined in:
- lib/roda/plugins/typecast_params.rb
Instance Method Summary collapse
-
#_string_parse!(klass, v) ⇒ Object
Pass input string to date parsing through handle_date_parse_input.
Instance Method Details
#_string_parse!(klass, v) ⇒ Object
Pass input string to date parsing through handle_date_parse_input.
421 422 423 424 |
# File 'lib/roda/plugins/typecast_params.rb', line 421 def _string_parse!(klass, v) v = handle_date_parse_input(v) super end |