omniauth-line-messenger 0.2.0 → 0.3.0
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/.gitignore +1 -0
- data/README.md +1 -1
- data/lib/omniauth/strategies/line_messenger.rb +1 -1
- data/lib/omniauth-line-messenger/version.rb +1 -1
- data/spec/omniauth/strategies/line_messenger_spec.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: b4f633757637917b3e6d0ac631f5ad18d960f149a410eed666f0f5c196664d2f
|
4
|
+
data.tar.gz: 5000748d681f6af312ee54e838b5814c1d46b6dd1778062f3c0df0a047ebe7a7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d02f5821662155b740b8850a62cb6ae24047dcc6767ec5c7f57af7a4f1b3ebbf363ede89be1c641ed4380b29ec40260afa76146482e64d1faee8a7b43422eab
|
7
|
+
data.tar.gz: 3061ea877c62726fd42f9ec9d7a9e98e0e290c69fba2e0fb4f1c512b94d1e162ba256df2c8adf7aa851e1c5d6b7b368be283da495df0c58f302176b8d8306607
|
data/.gitignore
CHANGED
data/README.md
CHANGED
@@ -17,7 +17,7 @@ Next, tell OmniAuth about this provider. For a Rails app, your `config/initializ
|
|
17
17
|
```ruby
|
18
18
|
# PROFILE permission required!!
|
19
19
|
Rails.application.config.middleware.use OmniAuth::Builder do
|
20
|
-
provider :
|
20
|
+
provider :line, "Channel_ID", "Channel_Secret"
|
21
21
|
end
|
22
22
|
```
|
23
23
|
|
@@ -14,7 +14,7 @@ describe OmniAuth::Strategies::LineMessenger do
|
|
14
14
|
|
15
15
|
describe 'client options' do
|
16
16
|
it 'should have correct name' do
|
17
|
-
expect(subject.options.name).to eq('
|
17
|
+
expect(subject.options.name).to eq('line')
|
18
18
|
end
|
19
19
|
|
20
20
|
it 'should have correct site' do
|