Sha256: 881c4c50d0d3fbd22f9c9157c46d94544bd7d664b0506429e932c8a343690a20

Contents?: true

Size: 262 Bytes

Versions: 1

Compression:

Stored size: 262 Bytes

Contents

class TicketComment
  
  def initialize(attributes={})
    @attributes = attributes
  end
  
  attr_reader :attributes
  
  def user
    attributes[:user]
  end
  
  def remote_id
    attributes[:remote_id]
  end
  
  def body
    attributes[:body]
  end
  
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
houston-core-0.5.0.beta1 app/models/ticket_comment.rb