summaryrefslogtreecommitdiff
path: root/.autotest
blob: ef753adf972725003baebdd2ce70e8928a972ace (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- ruby -*-

require 'autotest/restart'

# Autotest.add_hook :initialize do |at|
#   at.extra_files << "../some/external/dependency.rb"
#
#   at.libs << ":../some/external"
#
#   at.add_exception 'vendor'
#
#   at.add_mapping(/dependency.rb/) do |f, _|
#     at.files_matching(/test_.*rb$/)
#   end
#
#   %w(TestA TestB).each do |klass|
#     at.extra_class_map[klass] = "test/test_misc.rb"
#   end
# end

# Autotest.add_hook :run_command do |at|
#   system "rake build"
# end