class ScrumLint::Card
Attributes
list[RW]
trello_card[RW]
Public Class Methods
new(trello_card, list:)
click to toggle source
# File lib/scrum_lint/models/card.rb, line 7 def initialize(trello_card, list:) self.trello_card = trello_card self.list = list end
Public Instance Methods
desc()
click to toggle source
# File lib/scrum_lint/models/card.rb, line 12 def desc trello_card.desc end
name()
click to toggle source
# File lib/scrum_lint/models/card.rb, line 16 def name trello_card.name end