class AssistedWorkflow::Addons::PivotalStory
Public Class Methods
new(story)
click to toggle source
Calls superclass method
# File lib/assisted_workflow/addons/pivotal.rb, line 9 def initialize(story) super end
Public Instance Methods
owners_str()
click to toggle source
# File lib/assisted_workflow/addons/pivotal.rb, line 13 def owners_str url = "/projects/#{project_id}/stories/#{id}/owners" client.get(url).body.map{|owner| owner["name"]}.join(", ") end