README.md in flexirest-1.10.8 vs README.md in flexirest-1.10.9

- old
+ new

@@ -2,11 +2,11 @@ > Access your REST APIs in a flexible way. > > Write your API classes in an ActiveRecord-style; like ActiveResource but Flexirest works where the resource naming doesn't follow Rails conventions, it has built-in caching and is much more flexible. -[![Build](https://github.com/flexirest/flexirest/actions/workflows/build_test.yml/badge.svg)](https://github.com/flexirest/flexirest/actions/workflows/build.yml) +[![Build](https://github.com/flexirest/flexirest/actions/workflows/build.yml/badge.svg)](https://github.com/flexirest/flexirest/actions/workflows/build.yml) [![Coverage Status](https://coveralls.io/repos/github/flexirest/flexirest/badge.svg?branch=master)](https://coveralls.io/github/flexirest/flexirest?branch=master) [![Code Climate](https://codeclimate.com/github/flexirest/flexirest.png)](https://codeclimate.com/github/flexirest/flexirest) [![Gem Version](https://badge.fury.io/rb/flexirest.png)](http://badge.fury.io/rb/flexirest) [![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/flexirest/flexirest.svg)](http://isitmaintained.com/project/flexirest/flexirest "Average time to resolve an issue") [![Percentage of issues still open](http://isitmaintained.com/badge/open/flexirest/flexirest.svg)](http://isitmaintained.com/project/flexirest/flexirest "Percentage of issues still open") @@ -47,12 +47,12 @@ You can then use your new class like this: ```ruby # Create a new person @person = Person.create( - first_name:"John" - last_name:"Smith" + first_name: "John", + last_name: "Smith" ) # Find a person (not needed after creating) id = @person.id @person = Person.find(id) @@ -80,9 +80,10 @@ - [Caching](docs/caching.md) - [Using callbacks](docs/using-callbacks.md) - [Lazy loading](docs/lazy-loading.md) - [Authentication](docs/authentication.md) - [Body types](docs/body-types.md) +- [Empty body handling](docs/empty-body-handling.md) - [Parallel requests](docs/parallel-requests.md) - [Faking calls](docs/faking-calls.md) - [Per-request timeouts](docs/per-request-timeouts.md) - [Per-request parameter encoding](docs/per-request-parameter-encoding.md) - [Automatic conversion of fields to Date/DateTime](docs/automatic-conversion-of-fields-to-datedatetime.md)