Class: Stratify::Foursquare::Presenter

Inherits:
Object
  • Object
show all
Defined in:
lib/stratify-foursquare/presenter.rb

Instance Method Summary collapse

Constructor Details

#initialize(activity) ⇒ Presenter

Returns a new instance of Presenter.



6
7
8
# File 'lib/stratify-foursquare/presenter.rb', line 6

def initialize(activity)
  @activity = activity
end

Instance Method Details

#summaryObject



10
11
12
13
# File 'lib/stratify-foursquare/presenter.rb', line 10

def summary
  summary_with_venue_name = "Checked in at <strong>#{venue_name}</strong>"
  has_location_info? ? "#{summary_with_venue_name} in <strong>#{location}</strong>" : summary_with_venue_name
end