Alex Pilon wrote:

> def myaction
> render :text myvar.inspect
> end
> 
> im also from a php background and am used to being able to do anything i 
> want anywhere in the app.. in rails its a bit weird to have to .. hack 
> out variable dumping.. but anyway i hope that helps..

def myaction
   raise myvar.inspect
end

that trick is in the book. However, you should have many unit tests 
("functional" tests) for each of your actions, so you should be able to just do 
this:

   def myaction
     pp myvar
   end

then run all the tests.

-- 
   Phlip
   http://flea.sourceforge.net/resume.html


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to