Tagged Questions
0
votes
1answer
225 views
Using Pivotal Tracker API to get all stories in Backlog or Current?
I am using the pivotal-tracker gem: https://github.com/jsmestad/pivotal-tracker.
As a result, I'm easily able to stories by state, e.g.
project.stories.all(:current_state => 'started')
However, ...
0
votes
2answers
97 views
calculating the sum of specific array values in ruby?
Pivotal Tracker is a project management tool that I use. I'm using the Pivotal Tracker Ruby Gem to access the API.
I'm trying to create a hash of each member with the number of points that they have ...
0
votes
0answers
47 views
retrieve tokens using pivotal_tracker
I have a task to retrieve tokens from pivotaltracker, it means that I have to build task in lib/tasks.I choosed plugin on github https://github.com/jsmestad/pivotal-tracker . I installed that, but ...
0
votes
1answer
88 views
Sum of points of stories in PivotalTracker gem
I have started using the PivotalTracker gem in my Ruby on Sinatra-Padrino.
It provides really good API(s), but I am stuck in a requirement. I want the sum of the points/estimates of all the stories ...
2
votes
5answers
1k views
Convert XML collection (of Pivotal Tracker stories) to Ruby hash/object
I have a collection of stories in an XML format. I would like to parse the file and return each story as either hash or Ruby object, so that I can further manipulate the data within a Ruby script.
...