Sha256: d9c284e7d8f70c4074b9c19d4e03187bff8fd865f10711e0620adb6d3c6efa44

Contents?: true

Size: 315 Bytes

Versions: 28

Compression:

Stored size: 315 Bytes

Contents

class HearAction < Action
  def action_type
    "Hear"
  end

  def verb
    "heard"
  end

  def sentence
    " heard from you"
  end
  
  def quip
    "heard from us (via #{subtype.downcase})"
  end

  def self.subtypes
    ["Email", "Phone", "Postal", "Meeting", "Twitter", "Facebook", "Blog", "Press"]
  end
end

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
artfully_ose-1.2.0.pre.7 app/models/actions/hear_action.rb
artfully_ose-1.2.0.pre.6 app/models/actions/hear_action.rb
artfully_ose-1.2.0.pre.5 app/models/actions/hear_action.rb
artfully_ose-1.2.0.pre.4 app/models/actions/hear_action.rb
artfully_ose-1.2.0.pre.3 app/models/actions/hear_action.rb
artfully_ose-1.2.0.pre.2 app/models/actions/hear_action.rb
artfully_ose-1.2.0.pre.1 app/models/actions/hear_action.rb
artfully_ose-1.2.0.pre app/models/actions/hear_action.rb