Fixes an issue with macOS require order.

This commit is contained in:
iMacTia 2019-03-06 09:20:47 +00:00
parent 28e995d9c6
commit 04dff67cfa

View File

@ -31,7 +31,7 @@ end
# Ensure all /lib files are loaded
# so they will be included in the test coverage report.
Dir['./lib/**/*.rb'].each { |file| require file }
Dir['./lib/**/*.rb'].sort.each { |file| require file }
require 'faraday'
require 'pry'