mirror of
https://github.com/rails/execjs
synced 2023-03-27 23:21:20 -04:00
Module#constants returns an array of symbols, not strings, in 1.9
This commit is contained in:
parent
e9e1b97b26
commit
f0cf69b6f7
1 changed files with 1 additions and 1 deletions
2
Rakefile
2
Rakefile
|
@ -8,7 +8,7 @@ require "execjs/runtimes"
|
|||
tests = namespace :test do |tests|
|
||||
ExecJS::Runtimes.names.each do |name|
|
||||
task(name.downcase) do
|
||||
ENV["EXECJS_RUNTIME"] = name
|
||||
ENV["EXECJS_RUNTIME"] = name.to_s
|
||||
end
|
||||
|
||||
Rake::TestTask.new(name.downcase) do |t|
|
||||
|
|
Loading…
Reference in a new issue