From 5432853f5b8d783bca29faefbf0a72bdfa2b0da4 Mon Sep 17 00:00:00 2001 From: Andy Jeffries Date: Mon, 9 May 2016 10:05:46 +0100 Subject: [PATCH] Reflect ActiveRestClient's deprecation --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5825d722..93ce24d8 100644 --- a/README.md +++ b/README.md @@ -143,13 +143,13 @@ single configuration line: This will automatically sign all outgoing ActiveResource requests from your app. -### Active Rest Client +### Flexirest -ApiAuth also works with [ActiveRestClient](https://github.com/whichdigital/active-rest-client) in a very similar way. -Simply add this configuration to your ActiveRestClient initializer in your app and it will automatically sign all outgoing requests. +ApiAuth also works with [Flexirest](https://github.com/andyjeffries/flexirest) (used to be ActiveRestClient, but that is now unsupported) in a very similar way. +Simply add this configuration to your Flexirest initializer in your app and it will automatically sign all outgoing requests. ``` ruby -ActiveRestClient::Base.api_auth_credentials(@access_id, @secret_key) +Flexirest::Base.api_auth_credentials(@access_id, @secret_key) ``` ## Server