flexirest 1.6.5 → 1.6.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +92 -1243
- data/docs/associations.md +181 -0
- data/docs/authentication.md +76 -0
- data/docs/automatic-conversion-of-fields-to-datedatetime.md +34 -0
- data/docs/basic-usage.md +103 -0
- data/docs/body-types.md +33 -0
- data/docs/caching.md +26 -0
- data/docs/combined-example.md +72 -0
- data/docs/debugging.md +32 -0
- data/docs/default-parameters.md +37 -0
- data/docs/faking-calls.md +22 -0
- data/docs/faraday-configuration.md +28 -0
- data/docs/filtering-result-lists.md +16 -0
- data/docs/httpparse-error-handling.md +17 -0
- data/{CONTRIBUTING.md → docs/internals.md} +4 -6
- data/docs/json-api.md +42 -0
- data/docs/lazy-loading.md +31 -0
- data/{Migrating-from-ActiveRestClient.md → docs/migrating-from-activerestclient.md} +2 -2
- data/docs/parallel-requests.md +28 -0
- data/docs/per-request-parameter-encoding.md +32 -0
- data/docs/per-request-timeouts.md +13 -0
- data/docs/plain-requests.md +30 -0
- data/docs/proxying-apis.md +86 -0
- data/docs/raw-requests.md +38 -0
- data/docs/required-parameters.md +17 -0
- data/docs/root-elements.md +34 -0
- data/{Ruby-on-Rails-Integration.md → docs/ruby-on-rails-integration.md} +16 -12
- data/docs/{Flexirest Internals.graffle → source/Flexirest Internals.graffle} +0 -0
- data/docs/{Flexirest Logo.sketch → source/Flexirest Logo.sketch} +0 -0
- data/docs/translating-apis.md +31 -0
- data/docs/updating-only-changed-dirty-attributes.md +37 -0
- data/docs/using-callbacks.md +114 -0
- data/docs/validation.md +89 -0
- data/docs/xml-responses.md +58 -0
- data/lib/flexirest/configuration.rb +36 -20
- data/lib/flexirest/request.rb +12 -4
- data/lib/flexirest/version.rb +1 -1
- data/spec/lib/request_spec.rb +28 -0
- metadata +35 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3515fbcc420fd60dd7e4ba9bf60c7024746577f8
|
4
|
+
data.tar.gz: 2f0170a3acfdf49ea822579bd38bda1ebad2ccc5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1efda5ef18d2c289f1d0c82732b2cf65adce2ea7367dd9be11506d81e7858a95ba9944012c33d8fc6e8bc630a741201055f8054e24685bdf9222fe393b2c4d09
|
7
|
+
data.tar.gz: 7fe7c9f5276d3e17ccc7fd3d44244cd88707905c9c98c55f78d9776fc061f76f8144015cf6e9cbd411cba295ee94f25129f447abf7cc719dad68d989a84ed531
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.6.6
|
4
|
+
|
5
|
+
Feature:
|
6
|
+
|
7
|
+
- Username and Password can now take a block/proc for dynamically retrieving the username and password, and will pass in the object if called in a current object context (thanks to Sam Starling for suggesting this lack of functionality)
|
8
|
+
|
3
9
|
## 1.6.5
|
4
10
|
|
5
11
|
Bugfix:
|