aboutsummaryrefslogtreecommitdiffstats
path: root/tasks/rspec.rake
diff options
context:
space:
mode:
Diffstat (limited to 'tasks/rspec.rake')
-rw-r--r--tasks/rspec.rake6
1 files changed, 6 insertions, 0 deletions
diff --git a/tasks/rspec.rake b/tasks/rspec.rake
new file mode 100644
index 0000000..c89c0d7
--- /dev/null
+++ b/tasks/rspec.rake
@@ -0,0 +1,6 @@
+require 'rspec/core/rake_task'
+
+desc "Run specs"
+RSpec::Core::RakeTask.new do |t|
+ t.pattern = "./spec"
+end