activerecord-hackery--ransack/lib/ransack.rb

37 lines
834 B
Ruby
Raw Normal View History

require 'active_support/core_ext'
2011-03-31 00:31:39 +00:00
require 'ransack/configuration'
2015-05-22 15:00:03 +00:00
require 'ransack/adapters'
2016-04-04 09:29:49 +00:00
2015-05-22 15:00:03 +00:00
Ransack::Adapters.require_constants
2011-03-31 00:31:39 +00:00
module Ransack
extend Configuration
class UntraversableAssociationError < StandardError; end;
2015-09-23 14:03:04 +00:00
SUPPORTS_ATTRIBUTE_ALIAS =
begin
ActiveRecord::Base.respond_to?(:attribute_aliases)
rescue NameError
false
end
2011-03-31 00:31:39 +00:00
end
Ransack.configure do |config|
Ransack::Constants::AREL_PREDICATES.each do |name|
config.add_predicate name, :arel_predicate => name
2011-03-31 00:31:39 +00:00
end
Ransack::Constants::DERIVED_PREDICATES.each do |args|
config.add_predicate *args
2011-03-31 00:31:39 +00:00
end
end
require 'ransack/search'
require 'ransack/ransacker'
2011-03-31 00:31:39 +00:00
require 'ransack/helpers'
require 'action_controller'
require 'ransack/translate'
2015-05-22 15:00:03 +00:00
Ransack::Adapters.require_adapter
ActionController::Base.helper Ransack::Helpers::FormHelper