Am working my way through Michael Hartl's Rails Tutorial and he says in Chapter 5 that one should configure Mac OS X to run auto test. The code he provides for OS X is:
Autotest.add_hook :initialize do |autotest|
autotest.add_mapping(/^spec\/requests\/.*_spec\.rb$/) do
autotest.files_matching(/^spec\/requests\/.*_spec\.rb$/)
end
end
My question is where does this file go to handle the integration? Thanks in advance.