tpitale/staccato

View on GitHub
lib/staccato/social.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Staccato
  # Social Hit type field definitions
  # @author Tony Pitale
  class Social
    # Social field definitions
    FIELDS = {
      action: 'sa',
      network: 'sn',
      target: 'st'
    }

    include Hit

    # social hit type
    def type
      :social
    end
  end
end