We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17f5dc3 commit 98e2f0fCopy full SHA for 98e2f0f
Rakefile
@@ -1,15 +1,15 @@
1
require 'rake'
2
-require 'rspec/core/rake_task'
3
4
task :default => :spec
5
6
-RSpec::Core::RakeTask.new(:spec) do |t|
7
- #t.spec_opts = ['--options', "\"#{File.dirname(__FILE__)}/spec/spec.opts\""]
8
- t.pattern = 'test/*_spec.rb'
9
-end
10
-
11
desc "Run all specs"
12
-task :spec
+task :spec do
+ require 'rspec/core/rake_task'
+ RSpec::Core::RakeTask.new(:spec) do |t|
+ #t.spec_opts = ['--options', "\"#{File.dirname(__FILE__)}/spec/spec.opts\""]
+ t.pattern = 'test/*_spec.rb'
+ end
+end
13
14
def templated_build(name, opts={})
15
# Create a rule that uses the .tmpl.{pre,post} stuff to make a final,
0 commit comments