public
Description: An extensible bot for the Campfire web-based chat system #crc
Homepage:
Clone URL: git://github.com/timriley/campfire-bot.git
campfire-bot / .autotest
100644 12 lines (8 sloc) 0.224 kb
1
2
3
4
5
6
7
8
9
10
11
12
require 'autotest/redgreen'
Autotest.add_hook :initialize do |at|
  # Ignore files in tmp/
  at.add_exception %r%^\./tmp%
  
  at.add_mapping(/plugins\/(.+).rb/) do |f, _|
      at.files_matching(/.*spec.rb$/)
  end
  
end