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 38
38:         def call(values)
39:           o = super
40:           o.send(:force_hash_encoding, o.values)
41:           o
42:         end

[Validate]