up vote 2 down vote favorite
2
share [g+] share [fb]

Is there some way to determine what file currently is being rendered by Rails (2.2) in a helper method. An example result would be "/sessions/new.html.erb" or something similar.

I am trying to write a helper function that does something based on the file name that is being rendered, so I need a reliable way to obtain this information. Is there an official way to get this information?

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

In Rails 2.2 you can use @template.template

link|improve this answer
feedback

I now have this extremely ugly solution. Anybody a better idea?


begin
  raise "Nasty hack"
rescue 
  render = $@.detect { |bti| /\/app\/views\/(.+)\:\d+\:in \`_run_erb_/ =~ bti }
  return $1
end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.