summaryrefslogtreecommitdiffhomepage
path: root/Rakefile
diff options
context:
space:
mode:
authorTom Black <[email protected]>2018-10-30 15:55:09 -0400
committerTom Black <[email protected]>2018-10-30 15:55:09 -0400
commitfd8b90bd1d5e874f0402af069fd7dd266b68532f (patch)
treec5a42bfd92e00ecc8085f7cef0cb5ec5b5bab8b3 /Rakefile
parentbbd56099ebb359db02c8344b8af42e0bd1b7a835 (diff)
downloadruby2d-fd8b90bd1d5e874f0402af069fd7dd266b68532f.tar.gz
ruby2d-fd8b90bd1d5e874f0402af069fd7dd266b68532f.zip
Fix deprecation warnings
Also use `-w` flag when running MRI tests
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 99382e5..16911c1 100644
--- a/Rakefile
+++ b/Rakefile
@@ -24,7 +24,7 @@ end
def run_int_test(file)
print_task "Running interpreted test: #{file}.rb"
- run_cmd "( cd test/ && ruby #{file}.rb )"
+ run_cmd "( cd test/ && ruby -w #{file}.rb )"
end
def run_native_test(file)