README.md in tracker_api-0.2.10 vs README.md in tracker_api-0.2.11

- old
+ new

@@ -51,11 +51,11 @@ story = project.story(847762630) # Find a story with the given ID story.activity # Get a list of all the activity performed on this story story.name = 'Save the Ewoks' # Update a single story attribute story.attributes = { name: 'Save the Ewoks', description: '...' } # Update multiple story attributes -story.labels << Label.new(name: 'Endor') # Add a new label to an existing story +story.labels << TrackerApi::Resources::Label.new(name: 'Endor') # Add a new label to an existing story story.save # Save changes made to a story epics = project.epics # Get all epics for a project epic = epics.first label = epic.label # Get an epic's label @@ -69,9 +69,11 @@ client = TrackerApi::Client.new(token: 'my-api-token') # Create API client client.project(project_id, fields: ':default,labels(name)') # Eagerly get labels with a project client.project(project_id, fields: ':default,epics') # Eagerly get epics with a project client.project(project_id).stories(fields: ':default,tasks') # Eagerly get stories with tasks +client.project.stories(fields: ':default,comments(:default,person)') # Eagerly get stories with comments and the person that made the comment +story.comments(fields: ':default,person') # Eagerly get comments and the person that made the comment for a story ``` ## TODO - Add missing resources and endpoints