Fork Of

gist: 213592 by anonymous

Revisions

gist: 213598 Download_button fork
public
Public Clone URL: git://gist.github.com/213598.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
10
11
 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'
 30 Spec::Rake::SpecTask.new(:job_specs) do |t|
 31 >---t.spec_files = FileList['jobs/spec/**/*_spec.rb']
 32 >---t.spec_opts = ['--options', 'jobs/spec/spec.opts']
 33 end
 40 end