my_john_deere_api 1.3.1 → 1.3.2
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/README.md +3 -0
- data/lib/my_john_deere_api/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a0027e1c7579f585d2e150514bb29a877b1d225e18849f630f144219a152a119
|
|
4
|
+
data.tar.gz: 434abf7be18591164d3e485ad1a415aed151ed2cd5a946f1d9d9e2de7d02795f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bc59c684cb03603aed6af5cc52b751b83fa0953494bbe4ccd4bcc84e9e9180aae5a7f11e0e7a2bcd8b5c3f4c572a7675183b7e669559b696bb6d73e5f2031dd3
|
|
7
|
+
data.tar.gz: 44f0a503630cc44b020c10f9610a95892ccc3b2d5a5d70c250f1b0f6ea78ec8826fb308fd5e251ca653f2c0ec2202b4b92f290714be20121c0f9a67cb91f0f69
|
data/README.md
CHANGED
|
@@ -8,6 +8,8 @@ without having to code your own oauth process, API requests, and pagination.
|
|
|
8
8
|
* Works with Rails, but does not require it
|
|
9
9
|
* Supports both sandbox and live mode
|
|
10
10
|
* Simplifies the oAuth negotiation process
|
|
11
|
+
* Provides an ActiveRecord-style interface to many endpoints
|
|
12
|
+
* Provides `get`, `create`, `put`, and `delete` methods to make easy, authenticated, direct API calls
|
|
11
13
|
* Uses ruby enumerables to handle pagination behind the scenes. Calls like `each`, `map`, etc will fetch new pages of data as needed.
|
|
12
14
|
|
|
13
15
|
## Documentation
|
|
@@ -475,6 +477,7 @@ The easiest way to contribute is:
|
|
|
475
477
|
* Create a feature branch
|
|
476
478
|
* Grep for "raise NotYetImplementedError" in the lib directory
|
|
477
479
|
* Replace one of these exceptions with working code, following the conventions used in the rest of the app
|
|
480
|
+
* TEST EVERYTHING!
|
|
478
481
|
* Run tests.
|
|
479
482
|
* You may need to regenerate all VCR cassettes from scratch.
|
|
480
483
|
* All VCR cassettes should be pre-recorded in `vcr_setup`
|