Sha256: d3be5976929ba0d98416fd5bb37bc84a5e860cd5bda69f18dc8e7e11ad3d13cc

Contents?: true

Size: 1.59 KB

Versions: 1

Compression:

Stored size: 1.59 KB

Contents

$:.unshift(File.dirname(__FILE__)) unless
  $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))

module SluggableFinder
  VERSION = '2.0.5'

  @@not_found_exception = nil

  def self.not_found_exception=(ex)
    @@not_found_exception = ex
  end

  def self.not_found_exception
    @@not_found_exception || ActiveRecord::RecordNotFound
  end

  class << self

    def enable_activerecord
      ActiveRecord::Base.extend SluggableFinder::Orm::ClassMethods
      # support for associations
      a = ActiveRecord::Associations
      returning([ a::AssociationCollection ]) { |classes|
        # detect http://dev.rubyonrails.org/changeset/9230
        unless a::HasManyThroughAssociation.superclass == a::HasManyAssociation
          classes << a::HasManyThroughAssociation
        end
      }.each do |klass|
        klass.send :include, SluggableFinder::Finder
        klass.send :include, SluggableFinder::AssociationProxyFinder
        klass.alias_method_chain :find, :slug
      end

    end

  end

  def self.encode(str)
    if defined?(ActiveSupport::Inflector.parameterize)
      ActiveSupport::Inflector.parameterize(str).to_s
    else
      ActiveSupport::Multibyte::Handlers::UTF8Handler.
        normalize(str,:d).split(//u).reject { |e| e.length > 1 }.join.strip.gsub(/[^a-z0-9]+/i, '-').downcase
    end
  end

end

require 'rubygems'
require 'active_record'

Dir.glob(File.dirname(__FILE__)+'/sluggable_finder/*.rb').each do |file|
  require file
end

SluggableFinder.enable_activerecord if (defined?(ActiveRecord) && !ActiveRecord::Base.respond_to?(:sluggable_finder))

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
nagybence-sluggable_finder-2.0.6 lib/sluggable_finder.rb