module Mobility::Backends::Sequel

Implements the {Mobility::Backends::Hstore} backend for Sequel models.

@see Mobility::Backends::HashValued

Implements the {Mobility::Backends::Json} backend for Sequel models.

@see Mobility::Backends::HashValued

Implements the {Mobility::Backends::Jsonb} backend for Sequel models.

@see Mobility::Backends::HashValued

Internal class used by Sequel backends backed by a Postgres data type (hstore, jsonb).

Public Class Methods

included(backend_class) click to toggle source
# File lib/mobility/backends/sequel.rb, line 7
def self.included(backend_class)
  backend_class.include Backend
  backend_class.extend ClassMethods
end