README.md in airborne-0.1.5 vs README.md in airborne-0.1.6
- old
+ new
@@ -106,11 +106,11 @@
end
```
##Making requests
-Airborne uses `rest_client` to make the HTTP request, and supports all HTTP verbs. When creating a test, you can call any of the following methods: `get`, `post`, `put`, `patch`, `delete`, `head`. This will then give you access the following properties:
+Airborne uses `rest_client` to make the HTTP request, and supports all HTTP verbs. When creating a test, you can call any of the following methods: `get`, `post`, `put`, `patch`, `delete`, `head`, `options`. This will then give you access the following properties:
* `response` - The HTTP response returned from the request
* `headers` - A symbolized hash of the response headers returned by the request
* `body` - The raw HTTP body returned from the request
* `json_body` - A symbolized hash representation of the JSON returned by the request
@@ -348,14 +348,19 @@
expect_json_types({name: :string})
end
end
```
-### Run it from the CLI
+## Run it from the CLI
$ cd your/project
$ rspec spec
+## Authors
+* [Seth Pollack](https://github.com/sethpollack)
+* [Alex Friedman](https://github.com/brooklynDev)
+## Contributors
+https://github.com/brooklynDev/airborne/graphs/contributors
## License
The MIT License
Copyright (c) 2014 [brooklyndev](https://github.com/brooklynDev), [sethpollack](https://github.com/sethpollack)