my_john_deere_api 2.3.2 → 2.3.3
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 +24 -1
- 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: e82399b62eca7ecbf5c1e1f9d7f0de2391c909bed4426ccafbc19a3b555a2df2
|
|
4
|
+
data.tar.gz: e38342e0db2b4adc5cc6a9a6bba54b91c7aeb2e56e819a25696fc3c0cde75447
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2e80cfb7dbd6f7fb209403d5d92405e1beacf5282612747f449d245dffea7b182e2dc913a57acbe478a9f986e8b6b421add72e525c9d34def8ffbfe22967dd15
|
|
7
|
+
data.tar.gz: 743a9373b0646e76ace34001ae95937555c1aa00eea2c9bbcc4b6d6896f4784d67d1ecd07b4e7116182de60066c01d5ab4468c595f2f68f0a9ad401baf727a69
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Ruby Client for the MyJohnDeere API
|
|
2
2
|
|
|
3
3
|
[](https://circleci.com/gh/Intellifarm/my_john_deere_api)
|
|
4
4
|
|
|
@@ -15,6 +15,7 @@ without having to code your own oauth process, API requests, and pagination.
|
|
|
15
15
|
## Table of Contents
|
|
16
16
|
|
|
17
17
|
* [How to Read This Documentation](#how-to-read-this-documentation)
|
|
18
|
+
* [Installation](#installation)
|
|
18
19
|
* [Authorizing with John Deere via oAuth 1.0](#authorizing-with-john-deere-via-oauth-10)
|
|
19
20
|
* [Interacting with the User's John Deere Account](#interacting-with-the-users-john-deere-account)
|
|
20
21
|
* [Using the Client to Do Stuff](#using-the-client-to-do-stuff)
|
|
@@ -53,6 +54,28 @@ It really means:
|
|
|
53
54
|
MyJohnDeereApi::Authorize
|
|
54
55
|
```
|
|
55
56
|
|
|
57
|
+
|
|
58
|
+
## Installation
|
|
59
|
+
|
|
60
|
+
This library is available as a gem. To use it, just install the gem:
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
gem install my_john_deere_api
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
If you're using [Bundler](https://bundler.io/) (and why wouldn't you?) then add the gem to your gemfile:
|
|
67
|
+
|
|
68
|
+
```ruby
|
|
69
|
+
gem 'my_john_deere_api'
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
and run:
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
bundle install
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
|
|
56
79
|
## Authorizing with John Deere via oAuth 1.0
|
|
57
80
|
|
|
58
81
|
This is the simplest path to authorization, though your user has to jump through an extra hoop of giving you the verification code:
|