Add customers model-view-controller
authorIra W. Snyder <devel@irasnyder.com>
Wed, 21 Nov 2007 15:50:38 +0000 (07:50 -0800)
committerIra W. Snyder <devel@irasnyder.com>
Wed, 21 Nov 2007 15:50:38 +0000 (07:50 -0800)
commitf09365a8d79a8a4a756fdba732bb753829df0df2
tree7f6bbd35b879e8e05fc4f8a65e43ffd517b4a7a6
parent344d975e26054e2f69ee044c80a8b3232145cd47
Add customers model-view-controller

Signed-off-by: Ira W. Snyder <devel@irasnyder.com>
15 files changed:
app/controllers/customer_controller.rb [new file with mode: 0644]
app/helpers/customer_helper.rb [new file with mode: 0644]
app/models/customer.rb [new file with mode: 0644]
app/views/customer/_form.rhtml [new file with mode: 0644]
app/views/customer/edit.rhtml [new file with mode: 0644]
app/views/customer/list.rhtml [new file with mode: 0644]
app/views/customer/new.rhtml [new file with mode: 0644]
app/views/customer/show.rhtml [new file with mode: 0644]
app/views/layouts/customer.rhtml [new file with mode: 0644]
db/development.sqlite3 [new file with mode: 0644]
db/migrate/001_create_customers.rb [new file with mode: 0644]
db/schema.rb [new file with mode: 0644]
test/fixtures/customers.yml [new file with mode: 0644]
test/functional/customer_controller_test.rb [new file with mode: 0644]
test/unit/customer_test.rb [new file with mode: 0644]