class Clubhouse::Epic::Comment

Public Class Methods

all() click to toggle source
# File lib/clubhouse/epic.rb, line 33
def self.all
  raise NotImplemented
end
find(id = nil) click to toggle source
# File lib/clubhouse/epic.rb, line 29
def self.find(id = nil)
  raise NotImplemented
end

Public Instance Methods

comments() click to toggle source
# File lib/clubhouse/epic.rb, line 21
def comments
  @_comments ||= Array(@comments).collect {|c| Comment.new.update_object_from_payload(c) }
end
save() click to toggle source
# File lib/clubhouse/epic.rb, line 25
def save
  raise NotImplemented
end