diff options
author | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-04-07 03:39:54 -0700 |
---|---|---|
committer | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-04-08 21:07:30 -0700 |
commit | 1baca665b842c6b346e524aaa14b75479e294db9 (patch) | |
tree | 5c24c26605979a288d5c17329c3dd92af3c23f13 /Rakefile | |
parent | a2b4f54dc673935785807ab0ffeef120032adbab (diff) |
Remove Travis-CI
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 23 |
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 |