Module: TrackMe::Event

Defined in:
lib/trackme/event.rb

Defined Under Namespace

Modules: ClassMethods

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#actorObject

Returns the value of attribute actor.



3
4
5
# File 'lib/trackme/event.rb', line 3

def actor
  @actor
end

#categoryObject

Returns the value of attribute category.



3
4
5
# File 'lib/trackme/event.rb', line 3

def category
  @category
end

#created_atObject

Returns the value of attribute created_at.



3
4
5
# File 'lib/trackme/event.rb', line 3

def created_at
  @created_at
end

#labelObject

Returns the value of attribute label.



3
4
5
# File 'lib/trackme/event.rb', line 3

def label
  @label
end

#valueObject

Returns the value of attribute value.



3
4
5
# File 'lib/trackme/event.rb', line 3

def value
  @value
end

Class Method Details

.included(base) ⇒ Object



6
7
8
# File 'lib/trackme/event.rb', line 6

def self.included(base)
  base.extend(ClassMethods)
end