diff options
-rw-r--r-- | Rakefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -162,7 +162,9 @@ begin end task "setup_co" do - ENV["RUBYOPT"] = "-I#{File.expand_path ENV['RG']} #{rubyopt}" + rg = File.expand_path ENV['RG'] + puts "Running specs against Rubygems in #{rg}..." + ENV["RUBYOPT"] = "-I#{rg} #{rubyopt}" end task "co" => "setup_co" |