From 6e8095efa6f8912429d527b38f2a89a6752d8aa0 Mon Sep 17 00:00:00 2001 From: Parth <73950482+Parth-Rewind@users.noreply.github.com> Date: Tue, 26 Sep 2023 13:51:59 -0600 Subject: [PATCH] Fix/rename omniuth entry point file (#9) * Refactor file name * Update version --- CHANGELOG.md | 4 ++++ Gemfile.lock | 2 +- lib/omni_auth/azure_devops/version.rb | 2 +- lib/{omniauth_azure_devops.rb => omniauth-azure-devops.rb} | 0 spec/spec_helper.rb | 2 +- 5 files changed, 7 insertions(+), 3 deletions(-) rename lib/{omniauth_azure_devops.rb => omniauth-azure-devops.rb} (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md index cabb7a3..ad5025a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [1.0.1] + +- Rename the entry point file + ## [1.0.0] - Initial Release diff --git a/Gemfile.lock b/Gemfile.lock index 1c9b232..74a4a02 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - omniauth-azure-devops (1.0.0) + omniauth-azure-devops (1.0.1) omniauth (>= 1, < 3) omniauth-oauth2 (~> 1.1) diff --git a/lib/omni_auth/azure_devops/version.rb b/lib/omni_auth/azure_devops/version.rb index e788297..5684ffc 100644 --- a/lib/omni_auth/azure_devops/version.rb +++ b/lib/omni_auth/azure_devops/version.rb @@ -2,6 +2,6 @@ module OmniAuth module AzureDevops - VERSION = '1.0.0' + VERSION = '1.0.1' end end diff --git a/lib/omniauth_azure_devops.rb b/lib/omniauth-azure-devops.rb similarity index 100% rename from lib/omniauth_azure_devops.rb rename to lib/omniauth-azure-devops.rb diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 8bca50c..728be62 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -17,7 +17,7 @@ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration RSpec.configure do |config| require 'omniauth' - require 'omniauth_azure_devops' + require 'omniauth-azure-devops' config.extend OmniAuth::Test::StrategyMacros, type: :strategy OmniAuth.config.test_mode = true