summaryrefslogtreecommitdiff
path: root/ruby-tests.rake
diff options
context:
space:
mode:
Diffstat (limited to 'ruby-tests.rake')
-rw-r--r--ruby-tests.rake7
1 files changed, 7 insertions, 0 deletions
diff --git a/ruby-tests.rake b/ruby-tests.rake
new file mode 100644
index 0000000..89a753d
--- /dev/null
+++ b/ruby-tests.rake
@@ -0,0 +1,7 @@
+require 'rspec/core/rake_task'
+
+RSpec::Core::RakeTask.new(:spec) do |spec|
+ spec.pattern = './spec/**/*_spec.rb'
+end
+
+task :default => :spec