8 lines
94 B
Ruby
8 lines
94 B
Ruby
|
class FooController < ApplicationController
|
||
|
|
||
|
def index
|
||
|
render :text => 'Foo'
|
||
|
end
|
||
|
|
||
|
|
||
|
end
|