class TrelloBackupRenderer::Rendering::CardPresenter
Public Instance Methods
comments()
click to toggle source
Calls superclass method
# File lib/trello_backup_renderer/rendering.rb, line 62 def comments super.map { |comment| CommentPresenter.new(comment) } end
desc()
click to toggle source
Calls superclass method
# File lib/trello_backup_renderer/rendering.rb, line 58 def desc ERB::Util.h(super) if super end
labels()
click to toggle source
Calls superclass method
# File lib/trello_backup_renderer/rendering.rb, line 66 def labels super.map { |label| LabelPresenter.new(label) } end
name()
click to toggle source
Calls superclass method
# File lib/trello_backup_renderer/rendering.rb, line 70 def name ERB::Util.h(super) end