Sha256: 2ac384c57dbe214f7d92d0500b0725f5ceed71de45f4aa63ac0bbcde00f6d51c
Contents?: true
Size: 729 Bytes
Versions: 69
Compression:
Stored size: 729 Bytes
Contents
= New Features * The render plugin :escape option value can now be a string or an array of strings, and then the plugin will will only add the :escape template option for those specific template engines given. By default, the :escape plugin option adds the :escape template option for all engines, which breaks the usage with some engines (such as the rcsv engine). * The convert! and convert_each! methods in the typecast_params plugin now support a :skip_missing option to support not storing missing parameters: typecast_params.convert! do |tp| tp.int('missing') end # => {'missing'=>nil} typecast_params.convert!(skip_missing: false) do |tp| tp.int('missing') end # => {}
Version data entries
69 entries across 69 versions & 1 rubygems