README.md in cistern-2.0.1 vs README.md in cistern-2.0.2
- old
+ new
@@ -1,11 +1,13 @@
# Cistern
[![Build Status](https://secure.travis-ci.org/lanej/cistern.png)](http://travis-ci.org/lanej/cistern)
[![Dependencies](https://gemnasium.com/lanej/cistern.png)](https://gemnasium.com/lanej/cistern.png)
+[![Gem Version](https://badge.fury.io/rb/cistern.svg)](http://badge.fury.io/rb/cistern)
+[![Code Climate](https://codeclimate.com/github/lanej/cistern/badges/gpa.svg)](https://codeclimate.com/github/lanej/cistern)
-Cistern helps you consistenly build your API clients and faciliates building mock support.
+Cistern helps you consistently build your API clients and faciliates building mock support.
## Usage
### Service
@@ -79,10 +81,11 @@
end
end
Foo::Client.new.respond_to?(:get_bars) # false
Foo::Client.new.get_all_the_bars # "all the bars"
+```
All declared requests can be listed via `Cistern::Service#requests`.
```ruby
Foo::Client.requests # => [Foo::Client::GetBars, Foo::Client::GetBar]
@@ -288,9 +291,10 @@
```
## Examples
* [zendesk2](https://github.com/lanej/zendesk2)
+* [you_track](https://github.com/lanej/you_track)
## Releasing
$ gem bump -trv (major|minor|patch)