Sha256: 16baa7b9aa91cbe6a1a3c692d0e071d5302c42f9e41002c9cb01144f52442114

Contents?: true

Size: 244 Bytes

Versions: 8

Compression:

Stored size: 244 Bytes

Contents

#!/usr/bin/env ruby
#
#  Created by Ritchie Young on 2007-04-24.
#  Copyright (c) 2007. All rights reserved.

class PeopleController < ApplicationController
  
  scaffold 'Person'
  
  def show
    @person = Person.find params[:id]
  end
  
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
rubysync-0.0.1 examples/ar_webapp/app/controllers/people_controller.rb
rubysync-0.0.5 examples/ar_webapp/app/controllers/people_controller.rb
rubysync-0.0.4 examples/ar_webapp/app/controllers/people_controller.rb
rubysync-0.0.3 examples/ar_webapp/app/controllers/people_controller.rb
rubysync-0.2.1 examples/ar_webapp/app/controllers/people_controller.rb
rubysync-0.1.1 examples/ar_webapp/app/controllers/people_controller.rb
rubysync-0.0.2 examples/ar_webapp/app/controllers/people_controller.rb
rubysync-0.1.0 examples/ar_webapp/app/controllers/people_controller.rb