13 lines
152 B
Ruby
13 lines
152 B
Ruby
class FooController < ApplicationController
|
|
layout 'bar'
|
|
|
|
def index
|
|
end
|
|
|
|
def count
|
|
@data = [1,2,3]
|
|
render :layout => 'count'
|
|
end
|
|
|
|
end
|