Method: SymbolOperatorMethods#to_google_analytics

Defined in:
lib/garb/core_ext/symbol.rb

#to_google_analyticsObject



22
23
24
25
26
27
# File 'lib/garb/core_ext/symbol.rb', line 22

def to_google_analytics
  t = Garb.to_google_analytics @field || @target
  o = OPERATORS[@operator]

  [:desc, :descending].include?(@operator) ? "#{o}#{t}" : "#{t}#{o}"
end