aboutsummaryrefslogtreecommitdiff
path: root/ruby/Rakefile
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2018-09-05 09:00:35 -0400
committerPaul Duncan <pabs@pablotron.org>2018-09-05 09:00:35 -0400
commitf523b828d1612eb51fdd86b4179a40663ac6a0e6 (patch)
tree1c9ee226bbdd603322ff53c1ad59c94318e1e0c2 /ruby/Rakefile
parent7fd6c6611252dbe1aae0ae61afab78f936b47c1f (diff)
downloadluigi-template-f523b828d1612eb51fdd86b4179a40663ac6a0e6.tar.bz2
luigi-template-f523b828d1612eb51fdd86b4179a40663ac6a0e6.zip
ruby: add errors, to_s, freezes, and tests
Diffstat (limited to 'ruby/Rakefile')
-rw-r--r--ruby/Rakefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/ruby/Rakefile b/ruby/Rakefile
new file mode 100644
index 0000000..debc11c
--- /dev/null
+++ b/ruby/Rakefile
@@ -0,0 +1,8 @@
+require 'rake/testtask'
+
+Rake::TestTask.new do |t|
+ t.libs << 'test'
+end
+
+desc "Run tests"
+task :default => :test