class Ransack::Nodes::Grouping
def method_missing(method_id, *args)
def method_missing(method_id, *args) method_name = method_id.to_s writer = method_name.sub!(/\=$/, '') if attribute_method?(method_name) writer ? write_attribute(method_name, *args) : read_attribute(method_name) else super end end