class Daedal::Filters::AndFilter

Public Instance Methods

to_hash() click to toggle source
Calls superclass method
# File lib/daedal/filters/and_filter.rb, line 9
def to_hash
  unless filters.empty?
    {:and => filters.map {|f| f.to_hash}}
  else
    super
  end
end