class PeopleController

Public Instance Methods

index() click to toggle source
# File test/controller_method_test.rb, line 29
def index
  @array = []
  respond_with(@array) do |format|
    format.html { render :text => "Success!" }
  end
end