Sha256: e7de5d7adb6727bc8bf5f3702980d14036b8c1f1f0ac4fcba5b468a9190b430b

Contents?: true

Size: 1.46 KB

Versions: 10

Compression:

Stored size: 1.46 KB

Contents

# Run me with:
#
#   $ watchr specs.watchr

# --------------------------------------------------
# Convenience Methods
# --------------------------------------------------
def all_spec_files
  Dir['spec/**/*_spec.rb']
end

def run_spec_matching(thing_to_match)
  matches = all_spec_files.grep(/#{thing_to_match}/i)
  if matches.empty?
    puts "Sorry, thanks for playing, but there were no matches for #{thing_to_match}"  
  else
    run matches.join(' ')
  end
end

def run(files_to_run)
  puts("Running: #{files_to_run}")
  system("clear;ruby -Ilib bin/rspec -c #{files_to_run}")
  no_int_for_you
end

def run_all_specs
  run(all_spec_files.join(' '))
end

# --------------------------------------------------
# Watchr Rules
# --------------------------------------------------
watch('^spec/(.*)_spec\.rb')   { |m| run_spec_matching(m[1]) }
watch('^lib/(.*)\.rb')         { |m| run_spec_matching(m[1]) }
watch('^spec/spec_helper\.rb') { run_all_specs }
watch('^spec/support/.*\.rb')   { run_all_specs }

# --------------------------------------------------
# Signal Handling
# --------------------------------------------------

def no_int_for_you
  @sent_an_int = nil
end

Signal.trap 'INT' do
  if @sent_an_int then      
    puts "   A second INT?  Ok, I get the message.  Shutting down now."
    exit
  else
    puts "   Did you just send me an INT? Ugh.  I'll quit for real if you do it again."
    @sent_an_int = true
    Kernel.sleep 1.5
    run_all_specs
  end
end

# vim:ft=ruby

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
rspec-core-2.0.0.rc specs.watchr
rspec-core-2.0.0.beta.22 specs.watchr
rspec-core-2.0.0.beta.20 specs.watchr
rspec-core-2.0.0.beta.19 specs.watchr
rspec-core-2.0.0.beta.18 specs.watchr
rspec-core-2.0.0.beta.17 specs.watchr
rspec-core-2.0.0.beta.16 specs.watchr
rspec-core-2.0.0.beta.15 specs.watchr
rspec-core-2.0.0.beta.14 specs.watchr
rspec-core-2.0.0.beta.13 specs.watchr