Skip to content

Commit

Permalink
Update readme and changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
forest committed Mar 25, 2014
1 parent 059e593 commit fa553f5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
0.1.0
---
- Initial release.

0.2.0
---
- Feature: Added auto pagination.
- Bug: Added `current_velocity` attribute to `Project`.
- Bug: Removed attributes from `Iteration` that don't exist.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ client.project(project_id, fields: ':default,epics') # Eage

## TODO

- Pagination
- Create, Update, Delete of Resources
- Add missing resources and endpoints
- Add create, update, delete for resources

## Contributing

Expand Down
3 changes: 1 addition & 2 deletions lib/tracker_api/client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,8 @@ def initialize(options={})
@logger = options.fetch(:logger, Logger.new(nil))
adapter = options.fetch(:adapter, :net_http)
connection_options = options.fetch(:connection_options, { ssl: { verify: true } })
@token = options[:token]
@auto_paginate = options.fetch(:auto_paginate, true)

@token = options[:token]
raise 'Missing required options: :token' unless @token

@connection = Faraday.new({ url: @url }.merge(connection_options)) do |builder|
Expand Down

0 comments on commit fa553f5

Please sign in to comment.