README.md in trav3-0.0.2 vs README.md in trav3-0.0.3

- old
+ new

@@ -30,12 +30,22 @@ ```ruby require 'trav3' project = Trav3::Travis.new("name/example") project.builds project.build(12345) +project.build_jobs(12345) project.job(1234) project.log(1234) project.text_log(1234) + +# API Request Options +project.defaults(limit: 25) + +# Pagination +builds = project.builds +builds.page.next +builds.page.first +builds.page.last ``` ## Development After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.