myjohndeere 0.1.2 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b5764e00147e38d5c7c39529bab16636c2c21e18
4
- data.tar.gz: 41edd73dbc9702062cfa032d1d0d0fe0297a022d
3
+ metadata.gz: a103d41282240a43c5a50895a8c7b80721d06480
4
+ data.tar.gz: b365b4cbc76f7a51827c48f0ec3ecc40bfdbe0be
5
5
  SHA512:
6
- metadata.gz: 013bb1c5a4f0bec6c514c7e36f8da925d67c37b1baab996af584c8c7472d30fc2bc74dbab315aec191cb5fa45ace6005c2972f36dac1825886c051a46dfcd4c7
7
- data.tar.gz: d388153e644e20bd0bff01a04f566aaf68a303c1c128ff0a7cf37633ccff30f2e86f4563f41f998e4473f34c142a9b5cd2157cc738c781be20b5f152f022184a
6
+ metadata.gz: 5bee7f599ce78bd5a2b9250e703fbb74d06c5fec4fd734c654a3670aba8944868c346b2d39f2ce10f260f54af506a71939a9ccdd6035e08a999d93e4275da49a
7
+ data.tar.gz: fe5bde5aa03384c8e767ca38540df06e8023f3aed67fcbbef00c3bfb9fed496db2c281557fbecf40c3e5e476cec8e32f65c607bbb9ae671fe7c76d526e53ef28
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- myjohndeere (0.1.2)
4
+ myjohndeere (0.1.3)
5
5
  oauth (>= 0.5.3)
6
6
 
7
7
  GEM
@@ -28,8 +28,8 @@ module MyJohnDeere
28
28
  oauth_token_options = [:oauth_access_token_token, :oauth_access_token_secret]
29
29
  if request_token_options.all? { |i| options.key?(i) } then
30
30
  request_token = OAuth::RequestToken.from_hash(self.class.oauth_consumer, {
31
- oauth_token: options[:token],
32
- oauth_token_secret: options[:token_secret]
31
+ oauth_token: options[:request_token_token],
32
+ oauth_token_secret: options[:request_token_secret]
33
33
  })
34
34
  self.oauth_access_token = request_token.get_access_token(oauth_verifier: options[:verifier_code])
35
35
  elsif oauth_token_options.all? { |i| options.key?(i) } then
@@ -1,3 +1,3 @@
1
1
  module MyJohnDeere
2
- VERSION = '0.1.2'
2
+ VERSION = '0.1.3'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: myjohndeere
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Susmarski
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-09-27 00:00:00.000000000 Z
11
+ date: 2017-09-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: oauth