Skip to content

Instantly share code, notes, and snippets.

Created October 19, 2009 18:35
Show Gist options
  • Save anonymous/213592 to your computer and use it in GitHub Desktop.
Save anonymous/213592 to your computer and use it in GitHub Desktop.
22 task :spec => [ "spec:default", "spec:job_specs" ]
23
24 namespace :spec do
25
26 desc 'This will run all of the specs for the jobs... if you have permission'
27 task :job_specs do
30 Spec::Rake::SpecTask.new do |t|
31 >-------t.spec_files = FileList['jobs/spec/**/*_spec.rb']
32 >-------t.spec_opts = ['--options', 'jobs/spec/spec.opts']
33 end
37 end
38
39
40 end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment