:nodoc:
6 7 8 9 10 11 12 13 14 15 16
# File 'lib/humanoid/extensions/hash/criteria_helpers.rb', line 6 def expand_complex_criteria hsh = {} self.each_pair do |k,v| if k.class == Humanoid::Criterion::Complex hsh[k.key] = {"$#{k.operator}" => v} else hsh[k] = v end end hsh end