README.md in tracker_api-1.2.1 vs README.md in tracker_api-1.3.0
- old
+ new
@@ -54,9 +54,11 @@
story.name = 'Save the Ewoks' # Update a single story attribute
story.attributes = { name: 'Save the Ewoks', description: '...' } # Update multiple story attributes
story.add_label('Endor') # Add a new label to an existing story
story.save # Save changes made to a story
+story = client.story(117596687) # Get a story with story ID only
+
story = TrackerApi::Resources::Story.new( client: client,
project_id: 123456,
id: 847762630) # Use the Story resource to get the story
comments = story.comments # comments without first fetching the story