omniauth-instagram_basic 1.0.0 → 1.0.1

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
  SHA256:
3
- metadata.gz: 76340ef7fad12138924b33eb436fe8f6e1a1d978925c61dc8d7bf5ea55e990d0
4
- data.tar.gz: 16fe1e9712e7b813cf5e922caa49038b398d2ac9ffe43b7d3523ce252fbf68a3
3
+ metadata.gz: 2cd3b0cc3352999ebb33eb082c24ffe6d77547350fff36d1cf7d6f2db1ed0139
4
+ data.tar.gz: bd7c8967be5646f68137586a15b924dba5920ed6114e17837ad0f3ba02cfd88b
5
5
  SHA512:
6
- metadata.gz: 5b619ced8cca20557ed9ad31c9068b98d42b6a116294fe892dbd7c16597b64c3270a393fa62f88b8714d15928ebc80f29c462af362abe4514e309b59d532c22c
7
- data.tar.gz: 385e7bfa03bf8165930367aa5c9bff479c93c1459fe4ca6f91e7e53fe4dd3e71a933db3d2dd487b9a64c21fc775e8bc2e3a628878b5e8a1111c7d4250807f951
6
+ metadata.gz: ff5c59813c5926632541a1e1271d1521fa8e71c95f24b241b33e18b976b0fdd9f1cb817689db6230ed8116566ec850026782e1a8c932363487ffcd18815f2980
7
+ data.tar.gz: b9b7a3807d4f35263943fcc38bea40d237f19f1049733c89578fd23e7b6acd27bba7e74b74876e1cec1834e2f09cbae3bfb80c44f2bf79daddd7681cadfbb0d7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [1.0.1] - 2022-09-09
4
+
5
+ - Fix UID return results
3
6
  ## [1.0.0] - 2022-09-07
4
7
 
5
8
  - Initial release
data/README.md CHANGED
@@ -59,6 +59,13 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
59
59
 
60
60
  To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
61
61
 
62
+ To update gem on RubyGems.org
63
+ ```
64
+ gem build
65
+ gem signin
66
+ gem push omniauth-instagram_bas...
67
+ ```
68
+
62
69
  ## Contributing
63
70
 
64
71
  Bug reports and pull requests are welcome on GitHub at https://github.com/cameronbarker/omniauth-instagram_basic. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/cameronbarker/omniauth-instagram_basic/blob/main/CODE_OF_CONDUCT.md).
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Omniauth
4
4
  module InstagramBasic
5
- VERSION = "1.0.0"
5
+ VERSION = "1.0.1"
6
6
  end
7
7
  end
@@ -11,7 +11,7 @@ module OmniAuth
11
11
  option :token_options, TOKEN_OPTIONS
12
12
  option :name, 'instagram_basic'
13
13
 
14
- uid { access_token.response.parsed["user_id"] }
14
+ uid { access_token.to_hash["user_id"] }
15
15
  extra { { raw_info: raw_info } }
16
16
  info { info_generator }
17
17
  credentials { credentials_generator }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-instagram_basic
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cameron Barker
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-09-08 00:00:00.000000000 Z
11
+ date: 2022-09-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: omniauth