I have an application that runs in 2 environments, DEV and PROD. While 
running in DEV I'd like to see @time information for different expressions. 
But not in PROD. Any ideas about how can this be done so that I don't end 
up littering my code with conditionals, such as: 

if DEV 
  @time expr 
else 
  expr
end

Thanks!

Reply via email to