1
0
Fork 0
mirror of https://github.com/rails/execjs synced 2023-03-27 23:21:20 -04:00

to_s name

This commit is contained in:
Joshua Peek 2012-05-17 12:47:14 -05:00
parent 2871eaf7cf
commit 049699e323

View file

@ -7,7 +7,7 @@ require "execjs/runtimes"
tests = namespace :test do |tests|
ExecJS::Runtimes.names.each do |name|
next if (name == :Disabled || name == "Disabled")
next if name.to_s == "Disabled"
task(name.downcase) do
ENV["EXECJS_RUNTIME"] = name.to_s