14 lines
297 B
Ruby
14 lines
297 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
Dir[File.join(File.dirname(__FILE__), "..", "challenges", "shared", "**", "*.rb")].each do |file|
|
||
|
require file
|
||
|
end
|
||
|
|
||
|
Dir[File.join(File.dirname(__FILE__), "..", "challenges", "20*", "**", "*.rb")].each do |file|
|
||
|
require file
|
||
|
end
|
||
|
|
||
|
RSpec.configure do |config|
|
||
|
|
||
|
end
|