From f0cf69b6f71152671530c2f3d28d24b43891eece Mon Sep 17 00:00:00 2001 From: Sam Stephenson Date: Wed, 1 Jun 2011 21:29:05 -0500 Subject: [PATCH] Module#constants returns an array of symbols, not strings, in 1.9 --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 50cc3cf..ba512a4 100644 --- a/Rakefile +++ b/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|