Class: SocialButterfly::AbstractService

Inherits:
Object
  • Object
show all
Defined in:
lib/social_butterfly/abstract_service.rb

Class Method Summary collapse

Class Method Details

.share(content, service_options = {}) ⇒ Object



6
7
8
# 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 = {}) ⇒ Object



10
11
12
# 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