Skip to content

Commit 9650075

Browse files
authored
Refactor global DEBUG_ENABLED to module-based configuration (exoego#220)
1 parent 53ad9b1 commit 9650075

File tree

1 file changed

+31
-21
lines changed

1 file changed

+31
-21
lines changed

lib/rspec/openapi.rb

+31-21
Original file line numberDiff line numberDiff line change
@@ -15,30 +15,17 @@
1515
require 'rspec/openapi/extractors'
1616
require 'rspec/openapi/extractors/rack'
1717

18-
if ENV['OPENAPI']
19-
DEBUG_ENABLED = ['', '1', 'true'].include?(ENV['DEBUG']&.downcase)
20-
21-
begin
22-
require 'hanami'
23-
rescue LoadError
24-
warn 'Hanami not detected' if DEBUG_ENABLED
25-
else
26-
require 'rspec/openapi/extractors/hanami'
27-
end
18+
module RSpec::OpenAPI
19+
class Config
20+
class << self
21+
attr_accessor :debug_enabled
2822

29-
begin
30-
require 'rails'
31-
rescue LoadError
32-
warn 'Rails not detected' if DEBUG_ENABLED
33-
else
34-
require 'rspec/openapi/extractors/rails'
23+
def load_environment_settings
24+
@debug_enabled = ['', '1', 'true'].include?(ENV['DEBUG']&.downcase)
25+
end
26+
end
3527
end
36-
end
3728

38-
require 'rspec/openapi/minitest_hooks' if Object.const_defined?('Minitest')
39-
require 'rspec/openapi/rspec_hooks' if ENV['OPENAPI'] && Object.const_defined?('RSpec')
40-
41-
module RSpec::OpenAPI
4229
@path = 'doc/openapi.yaml'
4330
@title = File.basename(Dir.pwd)
4431
@comment = nil
@@ -84,3 +71,26 @@ class << self
8471
attr_reader :config_filename
8572
end
8673
end
74+
75+
if ENV['OPENAPI']
76+
RSpec::OpenAPI::Config.load_environment_settings
77+
78+
begin
79+
require 'hanami'
80+
rescue LoadError
81+
warn 'Hanami not detected' if RSpec::OpenAPI::Config.debug_enabled
82+
else
83+
require 'rspec/openapi/extractors/hanami'
84+
end
85+
86+
begin
87+
require 'rails'
88+
rescue LoadError
89+
warn 'Rails not detected' if RSpec::OpenAPI::Config.debug_enabled
90+
else
91+
require 'rspec/openapi/extractors/rails'
92+
end
93+
end
94+
95+
require 'rspec/openapi/minitest_hooks' if Object.const_defined?('Minitest')
96+
require 'rspec/openapi/rspec_hooks' if ENV['OPENAPI'] && Object.const_defined?('RSpec')

0 commit comments

Comments
 (0)