Sha256: 0ae1cc9e49a87feff14883d489c2b7668533ff8490a867809333f63f6f2da3db
Contents?: true
Size: 1.23 KB
Versions: 2
Compression:
Stored size: 1.23 KB
Contents
module Mobility module Backends module ActiveRecord =begin Defines query method overrides to handle translated attributes for ActiveRecord models. For details see backend-specific subclasses. =end class QueryMethods < Module # @param [Array<String>] attributes Translated attributes def initialize(attributes, _) @attributes = attributes end # @param [ActiveRecord::Relation] relation Relation being extended # @note Only want to define this once, even if multiple QueryMethods # modules are included, so define it here in extended method def extended(relation) unless relation.methods(false).include?(:mobility_where_chain) relation.define_singleton_method(:mobility_where_chain) do @mobility_where_chain ||= Class.new(::ActiveRecord::QueryMethods::WhereChain) end relation.define_singleton_method :where do |opts = :chain, *rest| opts == :chain ? mobility_where_chain.new(spawn) : super(opts, *rest) end end end def extract_attributes(opts) opts.is_a?(Hash) && (opts.keys.map(&:to_s) & @attributes).presence end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mobility-0.4.1 | lib/mobility/backends/active_record/query_methods.rb |
mobility-0.4.0 | lib/mobility/backends/active_record/query_methods.rb |