tpitale/staccato

View on GitHub
lib/staccato/screenview.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Staccato
  # Screenview Hit type field definitions
  # @author Tony Pitale
  class Screenview
    # Screenview field definitions
    FIELDS = {}

    include Hit

    # pageview hit type
    def type
      :screenview
    end
  end
end