omniauth-mlh 4.0.1 → 4.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 354aa7b0fc62afc09143d95359d8d9ee5f414bb8f38fbf5e9ee501ad2d547c98
4
- data.tar.gz: d21f4b91b2a41f297350a6adedf60b33adf3390c255f1254b4741713b0f75042
3
+ metadata.gz: 8e92f4278cc436382318b94bdac74133f166b1b7f9382e0920d03917c781ad2b
4
+ data.tar.gz: ced9efbd0c899c448bf511dca3250ce6741a73f76af4b5fc57d009824bad1e26
5
5
  SHA512:
6
- metadata.gz: a6302f3601f4338a87ccbdd0e77044742dd99b06cfe985af75373e089fe90102f3babb72a6fe22dacd674e9178f407d30baf34bb85bf3059fead97d466f7b2c6
7
- data.tar.gz: 0302bfd088521db00c27954a7bc0454219f46acc1112166655b16e449342839fcb385a73c223296c9a0ad05997ebe41bf9b432fdbb4d1f529cc382cbf2fcdc05
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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module OmniAuth
4
4
  module MLH
5
- VERSION = '4.0.1'
5
+ VERSION = '4.1.0'
6
6
  end
7
7
  end
@@ -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.1')
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
@@ -17,7 +17,7 @@ end
17
17
 
18
18
  require 'omniauth'
19
19
  require 'omniauth-oauth2'
20
- require 'omniauth_mlh'
20
+ require 'omniauth-mlh'
21
21
  require 'omniauth/strategies/mlh'
22
22
 
23
23
  Dir[File.expand_path('support/**/*.rb', __dir__)].sort.each { |f| require f }
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.1
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-15 00:00:00.000000000 Z
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