1
0
Fork 0
mirror of https://github.com/activerecord-hackery/ransack.git synced 2022-11-09 13:47:45 -05:00
activerecord-hackery--ransack/lib/ransack/ransacker.rb
2011-06-10 09:33:02 -04:00

24 lines
No EOL
594 B
Ruby

module Ransack
class Ransacker
attr_reader :name, :type, :formatter, :args
delegate :call, :to => :@callable
def initialize(klass, name, opts = {}, &block)
@klass, @name = klass, name
@type = opts[:type] || :string
@args = opts[:args] || [:parent]
@formatter = opts[:formatter]
@callable = opts[:callable] || block ||
(@klass.method(name) if @klass.respond_to?(name)) ||
proc {|parent| parent.table[name]}
end
def attr_from(bindable)
call(*args.map {|arg| bindable.send(arg)})
end
end
end