Sha256: be182bfdb5f5d7cf43e015dda5efb95a87b7b5c93258c628b794184dd78e9151
Contents?: true
Size: 1.62 KB
Versions: 3
Compression:
Stored size: 1.62 KB
Contents
module Trackerific # Provides details for a tracking event class Event include OptionsHelper # Provides a new instance of Event # @param [Hash] details The details of the event # @api private def initialize(details = {}) required_details = [:date, :description, :location] validate_options details, required_details @date = details[:date] @description = details[:description] @location = details[:location] end # The date and time of the event # @example Get the date of an event # date = details.events.first.date # @return [DateTime] # @api public def date @date end # The event's description # @example Get the description of an event # description = details.events.first.description # @return [String] # @api public def description @description end # Where the event took place (usually in City State Zip format) # @example Get the location of an event # location = details.events.first.location # @return [String] # @api public def location @location end # Converts the event into a string # @example Get a human-readable string from an event # event = details.event.to_s # @example A bulleted list of events in haml # %ul # - details.events.each do |event| # %li= event # @return [String] converts the event into a string # @api public def to_s dte = self.date.strftime('%b %d %I:%M %P') des = self.description loc = self.location "#{dte} #{des} #{loc}" end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
trackerific-0.6.2 | lib/trackerific/event.rb |
trackerific-0.6.1 | lib/trackerific/event.rb |
trackerific-0.6.0 | lib/trackerific/event.rb |