Rakefile 426 B

1234567891011121314
  1. #!/usr/bin/env rake
  2. # Add your own tasks in files placed in lib/tasks ending in .rake,
  3. # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
  4. require File.expand_path('../config/application', __FILE__)
  5. Huginn::Application.load_tasks
  6. task("spec").clear
  7. RSpec::Core::RakeTask.new(:spec) do |t|
  8. t.pattern = ['spec/**/*_spec.rb', 'agents/**/spec/**/*_spec.rb']
  9. end
  10. task :default => :spec