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 +4 -4
- data/CHANGELOG.md +3 -0
- data/README.md +7 -0
- data/lib/omniauth/instagram_basic/version.rb +1 -1
- data/lib/omniauth/strategies/instagram_basic.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2cd3b0cc3352999ebb33eb082c24ffe6d77547350fff36d1cf7d6f2db1ed0139
|
4
|
+
data.tar.gz: bd7c8967be5646f68137586a15b924dba5920ed6114e17837ad0f3ba02cfd88b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ff5c59813c5926632541a1e1271d1521fa8e71c95f24b241b33e18b976b0fdd9f1cb817689db6230ed8116566ec850026782e1a8c932363487ffcd18815f2980
|
7
|
+
data.tar.gz: b9b7a3807d4f35263943fcc38bea40d237f19f1049733c89578fd23e7b6acd27bba7e74b74876e1cec1834e2f09cbae3bfb80c44f2bf79daddd7681cadfbb0d7
|
data/CHANGELOG.md
CHANGED
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).
|
@@ -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.
|
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.
|
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-
|
11
|
+
date: 2022-09-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: omniauth
|