author | Neil Smith <neil.git@njae.me.uk> | |
Mon, 2 Feb 2009 20:08:35 +0000 (20:08 +0000) | ||
committer | Neil Smith <neil.git@njae.me.uk> | |
Mon, 2 Feb 2009 20:08:35 +0000 (20:08 +0000) | ||
commit | 09cd438e77dd418b03b67e3e6a4b48ec95b72d1d | |
tree | 53f9e265cc0f801f508cb536c60f0b3900798973 | tree | snapshot |
parent | be9356cf35ae0ccfc15674b786386a61278bf305 | commit | diff |
README | [new file with mode: 0644] | blob |
Rakefile | [new file with mode: 0644] | blob |
app/controllers/application.rb | [new file with mode: 0644] | blob |
app/controllers/products_controller.rb | [new file with mode: 0644] | blob |
app/helpers/application_helper.rb | [new file with mode: 0644] | blob |
app/helpers/products_helper.rb | [new file with mode: 0644] | blob |
app/models/product.rb | [new file with mode: 0644] | blob |
app/views/layouts/products.html.erb | [new file with mode: 0644] | blob |
app/views/products/edit.html.erb | [new file with mode: 0644] | blob |
app/views/products/index.html.erb | [new file with mode: 0644] | blob |
app/views/products/new.html.erb | [new file with mode: 0644] | blob |
app/views/products/show.html.erb | [new file with mode: 0644] | blob |
config/boot.rb | [new file with mode: 0644] | blob |
config/database.yml | [new file with mode: 0644] | blob |
config/environment.rb | [new file with mode: 0644] | blob |
config/environments/development.rb | [new file with mode: 0644] | blob |
config/environments/production.rb | [new file with mode: 0644] | blob |
config/environments/test.rb | [new file with mode: 0644] | blob |
config/initializers/inflections.rb | [new file with mode: 0644] | blob |
config/initializers/mime_types.rb | [new file with mode: 0644] | blob |
config/initializers/new_rails_defaults.rb | [new file with mode: 0644] | blob |
config/locales/en.yml | [new file with mode: 0644] | blob |
config/routes.rb | [new file with mode: 0644] | blob |
db/migrate/20090202160210_create_products.rb | [new file with mode: 0644] | blob |
db/migrate/20090202160745_add_price_to_product.rb | [new file with mode: 0644] | blob |
db/migrate/20090202160925_add_date_available_to_product.rb | [new file with mode: 0644] | blob |
db/migrate/20090202163608_add_test_data.rb | [new file with mode: 0644] | blob |
db/schema.rb | [new file with mode: 0644] | blob |
doc/README_FOR_APP | [new file with mode: 0644] | blob |
log/development.log | [new file with mode: 0644] | blob |
log/production.log | [new file with mode: 0644] | blob |
log/server.log | [new file with mode: 0644] | blob |
log/test.log | [new file with mode: 0644] | blob |
nbproject/project.properties | [new file with mode: 0644] | blob |
nbproject/project.xml | [new file with mode: 0644] | blob |
public/404.html | [new file with mode: 0644] | blob |
public/422.html | [new file with mode: 0644] | blob |
public/500.html | [new file with mode: 0644] | blob |
public/dispatch.cgi | [new file with mode: 0755] | blob |
public/dispatch.fcgi | [new file with mode: 0755] | blob |
public/dispatch.rb | [new file with mode: 0755] | blob |
public/favicon.ico | [new file with mode: 0644] | blob |
public/images/can-of-air.jpg | [new file with mode: 0644] | blob |
public/images/cardboard-box.jpg | [new file with mode: 0644] | blob |
public/images/daisy.gif | [new file with mode: 0644] | blob |
public/images/rails.png | [new file with mode: 0644] | blob |
public/images/snowball.jpg | [new file with mode: 0644] | blob |
public/index.html | [new file with mode: 0644] | blob |
public/javascripts/application.js | [new file with mode: 0644] | blob |
public/javascripts/controls.js | [new file with mode: 0644] | blob |
public/javascripts/dragdrop.js | [new file with mode: 0644] | blob |
public/javascripts/effects.js | [new file with mode: 0644] | blob |
public/javascripts/prototype.js | [new file with mode: 0644] | blob |
public/robots.txt | [new file with mode: 0644] | blob |
public/stylesheets/depot.css | [new file with mode: 0644] | blob |
public/stylesheets/scaffold.css | [new file with mode: 0644] | blob |
script/about | [new file with mode: 0755] | blob |
script/console | [new file with mode: 0755] | blob |
script/dbconsole | [new file with mode: 0755] | blob |
script/destroy | [new file with mode: 0755] | blob |
script/generate | [new file with mode: 0755] | blob |
script/performance/benchmarker | [new file with mode: 0755] | blob |
script/performance/profiler | [new file with mode: 0755] | blob |
script/performance/request | [new file with mode: 0755] | blob |
script/plugin | [new file with mode: 0755] | blob |
script/process/inspector | [new file with mode: 0755] | blob |
script/process/reaper | [new file with mode: 0755] | blob |
script/process/spawner | [new file with mode: 0755] | blob |
script/runner | [new file with mode: 0755] | blob |
script/server | [new file with mode: 0755] | blob |
test/fixtures/products.yml | [new file with mode: 0644] | blob |
test/functional/products_controller_test.rb | [new file with mode: 0644] | blob |
test/performance/browsing_test.rb | [new file with mode: 0644] | blob |
test/test_helper.rb | [new file with mode: 0644] | blob |
test/unit/product_test.rb | [new file with mode: 0644] | blob |