Sha256: ca1c3bc3d7b9d0c8b8de5a2c35d17ee0288ba0318dd6f59a69eea87519cbe104

Contents?: true

Size: 1.11 KB

Versions: 1

Compression:

Stored size: 1.11 KB

Contents

require 'mobility/backends/sequel/pg_hash'

module Mobility
  module Backends
=begin

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

@see Mobility::Backends::Sequel::HashValued

=end
    module Sequel
      class Json < PgHash
        require 'mobility/backends/sequel/json/query_methods'

        # @!group Backend Accessors
        #
        # @note Translation may be any json type, but querying will only work on
        #   string-typed values.
        # @param [Symbol] locale Locale to read
        # @param [Hash] options
        # @return [String,Integer,Boolean] Value of translation
        # @!method read(locale, **options)

        # @!group Backend Accessors
        # @note Translation may be any json type, but querying will only work on
        #   string-typed values.
        # @param [Symbol] locale Locale to write
        # @param [String,Integer,Boolean] value Value to write
        # @param [Hash] options
        # @return [String,Integer,Boolean] Updated value
        # @!method write(locale, value, **options)

        setup_query_methods(QueryMethods)
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mobility-0.6.0 lib/mobility/backends/sequel/json.rb