Sha256: 5168f397fcc0f5323dee45af2bd8962d6b46d814482d56ad50302a30dfdd40c0

Contents?: true

Size: 992 Bytes

Versions: 4

Compression:

Stored size: 992 Bytes

Contents

module ActsAsTaggableOn::Compatibility
  def has_many_with_compatibility(name, options = {}, &extention)
    if ActiveRecord::VERSION::MAJOR >= 4
      scope, opts = build_scope_and_options(options)
      has_many(name, scope, opts, &extention)
    else
      has_many(name, options, &extention)
    end
  end

  def build_scope_and_options(opts)
    scope_opts, opts = parse_options(opts)

    unless scope_opts.empty?
      scope = lambda do 
        scope_opts.inject(self) { |result, hash| result.send *hash }
      end
    end

    [defined?(scope) ? scope : nil, opts]
  end

  def parse_options(opts)
    scope_opts = {}
    [:order, :having, :select, :group, :limit, :offset, :readonly].each do |o|
      scope_opts[o] = opts.delete o if opts[o]
    end
    scope_opts[:where] = opts.delete :conditions if opts[:conditions]
    scope_opts[:joins] = opts.delete :include if opts [:include]
    scope_opts[:distinct] = opts.delete :uniq if opts[:uniq]

    [scope_opts, opts]
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
acts-as-taggable-on-3.0.2 lib/acts_as_taggable_on/acts_as_taggable_on/compatibility.rb
acts-as-taggable-on-3.0.1 lib/acts_as_taggable_on/acts_as_taggable_on/compatibility.rb
acts-as-taggable-on-3.0.0 lib/acts_as_taggable_on/acts_as_taggable_on/compatibility.rb
acts_as_taggable_on-3.0.0.rc2 lib/acts_as_taggable_on/acts_as_taggable_on/compatibility.rb