class SocialButterfly::AbstractService

Public Class Methods

share(content, service_options={}) click to toggle source
# File lib/social_butterfly/abstract_service.rb, line 6
def self.share(content, service_options={})
  puts "You must override the share(content, service_options) method."
end
track(content, service_options={}) click to toggle source
# File lib/social_butterfly/abstract_service.rb, line 10
def self.track(content, service_options={})
  puts "You must override the track(content, service_options) method."
end