lib/staccato/pageview.rb in staccato-0.0.2 vs lib/staccato/pageview.rb in staccato-0.0.3

- old
+ new

@@ -1,14 +1,18 @@ module Staccato + # Pageview Hit type field definitions + # @author Tony Pitale class Pageview + # Pageview field definitions FIELDS = { hostname: 'dh', path: 'dp', title: 'dt' } include Hit + # pageview hit type def type :pageview end end end