Module Sequel::Plugins::ForceEncoding::ClassMethods
In: lib/sequel/plugins/force_encoding.rb

Methods

call  

Attributes

forced_encoding  [RW]  The string encoding to force on a column string values

Public Instance methods

[Source]

    # File lib/sequel/plugins/force_encoding.rb, line 39
39:         def call(values)
40:           o = super
41:           o.send(:force_hash_encoding, o.values)
42:           o
43:         end

[Validate]