summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorLee Jarvis <lee@jarvis.co>2010-11-26 22:47:13 +0000
committerLee Jarvis <lee@jarvis.co>2010-11-26 22:47:13 +0000
commit898c75986091e091dfa22ed8c905f350b9d96b75 (patch)
tree8fefb059957ba51ec8462f01202b226b5ac726cf /Rakefile
parent77ddfc735031d229adac07522f7718a560fdd1a1 (diff)
downloadslop-898c75986091e091dfa22ed8c905f350b9d96b75.tar.gz
added rakefile with default spec task
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
new file mode 100644
index 0000000..65e6342
--- /dev/null
+++ b/Rakefile
@@ -0,0 +1,8 @@
+require 'rspec/core/rake_task'
+
+RSpec::Core::RakeTask.new(:spec) do |spec|
+ spec.rspec_opts = ["-c", "--fail-fast", "-f documentation"]
+ spec.pattern = 'spec/**/*_spec.rb'
+end
+
+task :default => :spec \ No newline at end of file