jsmestad / pivotal-tracker

Ruby gem that provides an AR-style interface for the Pivotal Tracker API
http://github.com/jsmestad/pivotal-tracker
MIT License
352 stars 184 forks source link

Setting label to story #99

Closed SPopenko closed 8 years ago

SPopenko commented 10 years ago

Hi there! :) Is it possible to set label to story using this gem?

anuja-joshi commented 8 years ago

@SPopenko you can set label to story using update method

     @story.update(labels: 'some label')

Found this out from: story.rb

SPopenko commented 8 years ago

Thanks @anuja-joshi