Class: IActionable::Objects::Challenge

Inherits:
IActionableObject show all
Defined in:
lib/iactionable/objects/challenge.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from IActionableObject

timestamp_regexp, timestamp_to_seconds

Constructor Details

#initialize(key_values = {}) ⇒ Challenge

Returns a new instance of Challenge.



10
11
12
13
# File 'lib/iactionable/objects/challenge.rb', line 10

def initialize(key_values={})
  initialize_awardable(key_values)
  super(key_values)
end

Instance Attribute Details

#descriptionObject

Returns the value of attribute description.



7
8
9
# File 'lib/iactionable/objects/challenge.rb', line 7

def description
  @description
end

#keyObject

Returns the value of attribute key.



6
7
8
# File 'lib/iactionable/objects/challenge.rb', line 6

def key
  @key
end

#nameObject

Returns the value of attribute name.



8
9
10
# File 'lib/iactionable/objects/challenge.rb', line 8

def name
  @name
end

Instance Method Details

#to_hashObject



15
16
17
18
19
20
21
22
23
24
# File 'lib/iactionable/objects/challenge.rb', line 15

def to_hash
  hash = {
    "Key" => @key,
    "Description" => @description,
    "Name" => @name
  }
  hash.merge!(awardable_hash) unless @progress.empty?
  hash.delete("AwardDate") if @award_date.nil?
  hash
end