README.md in airborne-0.1.15 vs README.md in airborne-0.1.16
- old
+ new
@@ -135,9 +135,15 @@
```ruby
post 'http://example.com/api/v1/my_api', {:name => 'John Doe'}, {'x-auth-token' => 'my_token'}
```
+For requests that require Query params you can pass a params hash into headers.
+
+```ruby
+post 'http://example.com/api/v1/my_api', {}, {'params' => {'param_key' => 'param_value'}
+```
+
##Testing Rack Applications
If you have an existing Rack application like `sinatra` or `grape` you can run Airborne against your application and test without actually having a server running. To do that, just specify your rack application in your Airborne configuration:
```ruby