Sha256: 9e961fad19d29369adaf33b266ed151e47fc57044d9d21bb9268797f1b14f7b5

Contents?: true

Size: 280 Bytes

Versions: 2

Compression:

Stored size: 280 Bytes

Contents

module ScrumLint

  class Card

    attr_accessor :trello_card, :list

    def initialize(trello_card, list:)
      self.trello_card = trello_card
      self.list = list
    end

    def desc
      trello_card.desc
    end

    def name
      trello_card.name
    end

  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
scrum_lint-0.0.2 lib/scrum_lint/models/card.rb
scrum_lint-0.0.1 lib/scrum_lint/models/card.rb