Copying stable branch from trunk
authorNeil Smith <neil.git@njae.me.uk>
Fri, 17 Jul 2009 19:52:22 +0000 (19:52 +0000)
committerNeil Smith <neil.git@njae.me.uk>
Fri, 17 Jul 2009 19:52:22 +0000 (19:52 +0000)
commit82247fa3f0996b1daa5f273ea029c99b498f7df7
tree2d8ddc8e2a4bc2659a3c00aa486afbe6f5b90fdd
parent1e6a24f1ced03fb5aad2e15d5975ded6fb5cfd34
Copying stable branch from trunk
60 files changed:
trunk/README [new file with mode: 0644]
trunk/Rakefile [new file with mode: 0644]
trunk/app/controllers/application_controller.rb [new file with mode: 0644]
trunk/app/controllers/feed_controller.rb [new file with mode: 0644]
trunk/app/helpers/application_helper.rb [new file with mode: 0644]
trunk/app/helpers/feed_helper.rb [new file with mode: 0644]
trunk/app/models/feed_item.rb [new file with mode: 0644]
trunk/app/views/feed/index.html.erb [new file with mode: 0644]
trunk/app/views/feed/index.rss.builder [new file with mode: 0644]
trunk/app/views/feed/show.html.erb [new file with mode: 0644]
trunk/app/views/feed/show.rss.builder [new file with mode: 0644]
trunk/app/views/feed/update.html.erb [new file with mode: 0644]
trunk/app/views/layouts/application.html.erb [new file with mode: 0644]
trunk/config/boot.rb [new file with mode: 0644]
trunk/config/database.sample.yml [new file with mode: 0644]
trunk/config/deploy.rb [new file with mode: 0644]
trunk/config/environment.rb [new file with mode: 0644]
trunk/config/environments/development.rb [new file with mode: 0644]
trunk/config/environments/production.rb [new file with mode: 0644]
trunk/config/environments/test.rb [new file with mode: 0644]
trunk/config/initializers/backtrace_silencers.rb [new file with mode: 0644]
trunk/config/initializers/inflections.rb [new file with mode: 0644]
trunk/config/initializers/mime_types.rb [new file with mode: 0644]
trunk/config/initializers/new_rails_defaults.rb [new file with mode: 0644]
trunk/config/initializers/session_store.rb [new file with mode: 0644]
trunk/config/locales/en.yml [new file with mode: 0644]
trunk/config/routes.rb [new file with mode: 0644]
trunk/db/migrate/20090717095501_create_feed_items.rb [new file with mode: 0644]
trunk/db/migrate/20090717095948_add_test_data.rb [new file with mode: 0644]
trunk/db/schema.rb [new file with mode: 0644]
trunk/doc/README_FOR_APP [new file with mode: 0644]
trunk/nbproject/project.properties [new file with mode: 0644]
trunk/nbproject/project.xml [new file with mode: 0644]
trunk/public/404.html [new file with mode: 0644]
trunk/public/422.html [new file with mode: 0644]
trunk/public/500.html [new file with mode: 0644]
trunk/public/favicon.ico [new file with mode: 0644]
trunk/public/images/rails.png [new file with mode: 0644]
trunk/public/javascripts/application.js [new file with mode: 0644]
trunk/public/javascripts/controls.js [new file with mode: 0644]
trunk/public/javascripts/dragdrop.js [new file with mode: 0644]
trunk/public/javascripts/effects.js [new file with mode: 0644]
trunk/public/javascripts/prototype.js [new file with mode: 0644]
trunk/public/robots.txt [new file with mode: 0644]
trunk/script/about [new file with mode: 0755]
trunk/script/console [new file with mode: 0755]
trunk/script/dbconsole [new file with mode: 0755]
trunk/script/destroy [new file with mode: 0755]
trunk/script/generate [new file with mode: 0755]
trunk/script/performance/benchmarker [new file with mode: 0755]
trunk/script/performance/profiler [new file with mode: 0755]
trunk/script/plugin [new file with mode: 0755]
trunk/script/runner [new file with mode: 0755]
trunk/script/server [new file with mode: 0755]
trunk/test/fixtures/feed_items.yml [new file with mode: 0644]
trunk/test/functional/feed_controller_test.rb [new file with mode: 0644]
trunk/test/performance/browsing_test.rb [new file with mode: 0644]
trunk/test/test_helper.rb [new file with mode: 0644]
trunk/test/unit/feed_item_test.rb [new file with mode: 0644]
trunk/test/unit/helpers/feed_helper_test.rb [new file with mode: 0644]