summaryrefslogtreecommitdiffhomepage
path: root/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile23
1 files changed, 0 insertions, 23 deletions
diff --git a/Rakefile b/Rakefile
deleted file mode 100644
index 6a31bd72..00000000
--- a/Rakefile
+++ /dev/null
@@ -1,23 +0,0 @@
-task default: %w[encoding yaml return_code]
-$failure = 0
-task :encoding do
- begin
- ruby 'tests/encoding.rb'
- rescue Exception => msg
- puts msg
- $failure += 1
- end
-end
-task :yaml do
- begin
- ruby 'tests/yaml.rb'
- rescue Exception => msg
- puts msg
- $failure += 1
- end
-end
-task :return_code do
- if $failure != 0
- raise "Failed #{$failure} tests!!"
- end
-end