-
-
Save technicalpickles/213598 to your computer and use it in GitHub Desktop.
This file contains 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' | |
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment