2011-08-09 10:33:51 +00:00
|
|
|
class FooController < ApplicationController
|
2011-08-09 11:03:28 +00:00
|
|
|
layout :figure_out_layout
|
2011-08-09 10:41:10 +00:00
|
|
|
|
2011-08-09 10:33:51 +00:00
|
|
|
def index
|
|
|
|
end
|
|
|
|
|
2011-08-09 11:03:28 +00:00
|
|
|
def pretty
|
|
|
|
end
|
|
|
|
|
|
|
|
def figure_out_layout
|
|
|
|
if action_name =~ /pretty/
|
|
|
|
'pretty'
|
|
|
|
else
|
|
|
|
'standard'
|
|
|
|
end
|
2011-08-09 10:41:10 +00:00
|
|
|
end
|
|
|
|
|
2011-08-09 10:33:51 +00:00
|
|
|
end
|