Module: StartingBlocks::Watcher

Includes:
Displayable
Defined in:
lib/starting_blocks/watcher.rb

Constant Summary collapse

TEST_FILE_CLUES =
["_test", "test_", "_spec"]

Class Method Summary collapse

Methods included from Displayable

included

Class Method Details

.add_it(file_that_changed) ⇒ Object



28
29
30
31
32
# File 'lib/starting_blocks/watcher.rb', line 28

def add_it(file_that_changed)
  return if not_concerned_about? file_that_changed
  display "Adding: #{file_that_changed}"
  @all_files << file_that_changed
end

.delete_it(file_that_changed) ⇒ Object



43
44
45
46
47
# File 'lib/starting_blocks/watcher.rb', line 43

def delete_it(file_that_changed)
  return if not_concerned_about? file_that_changed
  display "Deleting: #{file_that_changed}"
  @all_files.delete(file_that_changed)
end

.run_it(file_that_changed) ⇒ Object



34
35
36
37
38
39
40
41
# File 'lib/starting_blocks/watcher.rb', line 34

def run_it(file_that_changed)
  @running = true
  specs = get_the_specs_to_run file_that_changed
  display "Matches: #{specs.inspect}"
  results = @runner.run_files specs
  store_the_specs_if_they_failed results, specs
  @running = false
end

.start_watching(dir, options) ⇒ Object



13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/starting_blocks/watcher.rb', line 13

def start_watching(dir, options)
  set_up_the_runner options

  location = dir.getwd
  @all_files = Dir['**/*']

  puts "Listening to: #{location}"
  Listen.to!(location) do |modified, added, removed|
    StartingBlocks::Watcher.add_it(added[0])      if added.count > 0
    StartingBlocks::Watcher.delete_it(removed[0]) if removed.count > 0
    return if @running
    StartingBlocks::Watcher.run_it(modified[0])   if modified.count > 0
  end
end