omniauth-mlh 4.0.1 → 4.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +7 -1
- data/lib/omniauth-mlh/version.rb +1 -1
- data/spec/omni_auth/mlh_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- metadata +3 -3
- /data/lib/{omniauth_mlh.rb → omniauth-mlh.rb} +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8e92f4278cc436382318b94bdac74133f166b1b7f9382e0920d03917c781ad2b
|
4
|
+
data.tar.gz: ced9efbd0c899c448bf511dca3250ce6741a73f76af4b5fc57d009824bad1e26
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1fba79bb10779ad12ee4b83a3230980fcb7431a82c10aa63274fc0ebf12b5df47d3914f077fc84e05738f0f60bb3e36fb4968b53ba3b1d2fa71a4fa3d73f4968
|
7
|
+
data.tar.gz: 6035b246c632882bc231356f6d9500b79276252de689bd0f8660adc1fe5ef6abecc83210c9b1bbe1c57d22b8849276c03e37265a6f53edd1b0cf5f85a1e43bc3
|
data/.rubocop.yml
CHANGED
@@ -7,6 +7,8 @@ AllCops:
|
|
7
7
|
TargetRubyVersion: '2.7.0'
|
8
8
|
Exclude:
|
9
9
|
- vendor/**/*
|
10
|
+
NewCops: disable
|
11
|
+
SuggestExtensions: false
|
10
12
|
|
11
13
|
Style/WordArray:
|
12
14
|
Description: Force arrays of words to use bracket notation instead of %w
|
@@ -25,4 +27,8 @@ Style/RegexpLiteral:
|
|
25
27
|
|
26
28
|
RSpec/MultipleExpectations:
|
27
29
|
Description: Allow tests to contain multiple expectations
|
28
|
-
Enabled: false
|
30
|
+
Enabled: false
|
31
|
+
|
32
|
+
Naming/FileName:
|
33
|
+
Exclude:
|
34
|
+
- lib/omniauth-mlh.rb
|
data/lib/omniauth-mlh/version.rb
CHANGED
data/spec/omni_auth/mlh_spec.rb
CHANGED
@@ -5,7 +5,7 @@ require 'spec_helper'
|
|
5
5
|
RSpec.describe OmniAuth::MLH do
|
6
6
|
it 'has a version number' do
|
7
7
|
expect(OmniAuth::MLH::VERSION).not_to be_nil
|
8
|
-
expect(OmniAuth::MLH::VERSION).to eq('4.0
|
8
|
+
expect(OmniAuth::MLH::VERSION).to eq('4.1.0')
|
9
9
|
end
|
10
10
|
|
11
11
|
it 'loads the MLH strategy' do
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: omniauth-mlh
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0
|
4
|
+
version: 4.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Major League Hacking (MLH)
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-11-
|
11
|
+
date: 2024-11-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: oauth2
|
@@ -182,9 +182,9 @@ files:
|
|
182
182
|
- LICENSE.txt
|
183
183
|
- README.md
|
184
184
|
- Rakefile
|
185
|
+
- lib/omniauth-mlh.rb
|
185
186
|
- lib/omniauth-mlh/version.rb
|
186
187
|
- lib/omniauth/strategies/mlh.rb
|
187
|
-
- lib/omniauth_mlh.rb
|
188
188
|
- omniauth-mlh.gemspec
|
189
189
|
- spec/omni_auth/mlh_spec.rb
|
190
190
|
- spec/omni_auth/strategies/mlh_spec.rb
|
File without changes
|