I'm working through Hartl's Ruby on Rails Tutorial for Rails 3, and there's a few things I'm trying to get setup, and I'm a bit stumped. First, autotest seems to run fine in and of itself. It does seem to take a bit longer than anything I've seen as to run two tests it's taking over seven seconds, but it works. However, I'm trying to get it to give Growl notifications. I found this question and I'm a bit lost by the answer. The answer advises to modify the .autotest file in the working directory, in this case sample_app. However, I don't have any .autotest files in that directory. The only ones I seem to have are in other gems in the main Ruby directory in the gem libraries. Also, I'm unfamiliar with his Gemlist file as I've got a Gemlist.Lock file that looks similar in that directory, but it has no references to autotest. The actual Gemfile he posted is the same, but he does have Spork and the Win32 Process which I don't seem to have.
So if I'm supposed to have an .autotest file in my sample_app directory, how do I get one there? And why doesn't it seem to be in my Gemlist.lock file?
If needed, here's the output from when I run autotest:
C:\Ruby193\work\rails_tutorial\sample_app>autotest
loading autotest/rails_rspec2
C:\Ruby193\bin\ruby -rrubygems -S 'C:/Ruby193/lib/ruby/gems/1.9.1/gems/rspec-core-2.11.1/exe/rspec' --tty 'C:/Ruby193/work/rails_tutorial/sample_app/spec/controllers/pages_controller_spec.rb'
..
Finished in 8.57 seconds
2 examples, 0 failures
Randomized with seed 6674
Any suggestions/assistance would be greatly appreciated. Thank you.