public
Description: Miscellaneous Rake tasks and so on that I use on most projects.
Homepage:
Clone URL: git://github.com/airblade/air_blade_tools.git
air_blade_tools / .autotest
100644 9 lines (7 sloc) 0.206 kb
1
2
3
4
5
6
7
8
9
global_autotest_file = File.expand_path('~/.autotest')
load(global_autotest_file) if File.exists?(global_autotest_file)
 
class Autotest
  def tests_for_file(filename)
    Dir['test/**/*_test.rb']
  end
end