Skip to content

Commit

Permalink
DEV-2063 correct omniauth-mlh.rb file name (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
erinosher authored Nov 19, 2024
1 parent a8d2892 commit 39a6d39
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ AllCops:
TargetRubyVersion: '2.7.0'
Exclude:
- vendor/**/*
NewCops: disable
SuggestExtensions: false

Style/WordArray:
Description: Force arrays of words to use bracket notation instead of %w
Expand All @@ -25,4 +27,8 @@ Style/RegexpLiteral:

RSpec/MultipleExpectations:
Description: Allow tests to contain multiple expectations
Enabled: false
Enabled: false

Naming/FileName:
Exclude:
- lib/omniauth-mlh.rb
File renamed without changes.
2 changes: 1 addition & 1 deletion lib/omniauth-mlh/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module OmniAuth
module MLH
VERSION = '4.0.1'
VERSION = '4.0.2'
end
end
2 changes: 1 addition & 1 deletion spec/omni_auth/mlh_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
RSpec.describe OmniAuth::MLH do
it 'has a version number' do
expect(OmniAuth::MLH::VERSION).not_to be_nil
expect(OmniAuth::MLH::VERSION).to eq('4.0.1')
expect(OmniAuth::MLH::VERSION).to eq('4.0.2')
end

it 'loads the MLH strategy' do
Expand Down
2 changes: 1 addition & 1 deletion spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

require 'omniauth'
require 'omniauth-oauth2'
require 'omniauth_mlh'
require 'omniauth-mlh'
require 'omniauth/strategies/mlh'

Dir[File.expand_path('support/**/*.rb', __dir__)].sort.each { |f| require f }
Expand Down

0 comments on commit 39a6d39

Please sign in to comment.