Created
October 19, 2009 18:35
-
-
Save anonymous/213592 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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