README.md in tracker_api-0.2.1 vs README.md in tracker_api-0.2.2
- old
+ new
@@ -33,9 +33,11 @@
## Basic Usage
```ruby
client = TrackerApi::Client.new(token: 'my-api-token') # Create API client
+user_email = client.me.email # Get authenticated user's email
+
projects = client.projects # Get all projects
project = client.project(123456) # Find project with given ID
project.stories # Get all stories for a project
project.stories(with_state: :unscheduled, limit: 10) # Get 10 unscheduled stories for a project