mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-18 08:10:13 +01:00
8 lines
154 B
Ruby
8 lines
154 B
Ruby
|
|
dir = File.dirname(__FILE__)
|
||
|
|
Dir["#{dir}/**/*_example.rb"].each do |file|
|
||
|
|
require file
|
||
|
|
end
|
||
|
|
Dir["#{dir}/**/*_spec.rb"].each do |file|
|
||
|
|
require file
|
||
|
|
end
|