class StartlingTrello::Story

Attributes

card[RW]

Public Class Methods

new(card) click to toggle source
# File lib/startling_trello/story.rb, line 7
def initialize(card)
  @card = card
end

Public Instance Methods

pull_request_body_text() click to toggle source
# File lib/startling_trello/story.rb, line 15
def pull_request_body_text
  card.short_url
end
pull_request_title() click to toggle source
# File lib/startling_trello/story.rb, line 11
def pull_request_title
  card.name
end