class FooController < ActionController:Base
layout :figure_out_layout
def figure_out_layout
if action_name = ~ /pretty
'pretty'
else
'standard'
end
end
end
class FooController < ActionController:Base
layout :figure_out_layout
def figure_out_layout
if action_name = ~ /pretty
'pretty'
else
'standard'
end
end
end