tpitale/staccato

View on GitHub
lib/staccato/event.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Staccato
  # Event Hit type field definitions
  # @author Tony Pitale
  class Event
    # Event field definitions
    FIELDS = {
      category: 'ec',
      action: 'ea',
      label: 'el',
      value: 'ev'
    }

    include Hit

    # event hit type
    def type
      :event
    end
  end
end