compare specs run by rake & autotest
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rake_files = "#{list of files copied from console when rake command is run}" | |
autotest_files = "#{list of files copied from console when autotest command is run}" | |
r = rake_files.split(' ').map {|x| ar = x.split('/'); ar[(ar.length-2)..(ar.length-1)].join('/')} | |
a = autotest_files.split(' ').map {|x| ar = x.gsub(/'/,'').split('/'); ar[(ar.length-2)..(ar.length-1)].join('/')} | |
# autotest will generally be lacking some, as its config becomes out of date | |
diff = r - a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment