Add articles and setup roles. And oh yeah, will_paginate
commitbbbe181c59fb3ac58532a2f3c046af437bab2f5b
authorPratik Naik <pratiknaik@gmail.com>
Fri, 14 Dec 2007 04:41:23 +0000 (14 04:41 +0000)
committerPratik Naik <pratiknaik@gmail.com>
Fri, 14 Dec 2007 04:41:23 +0000 (14 04:41 +0000)
tree2cb862124e82d4972bb6b3d1783142f0ef53569e
parentad4f6a46aa53ebaa1a2e5a508531f380ef00d1dd
Add articles and setup roles. And oh yeah, will_paginate
49 files changed:
app/controllers/articles_controller.rb [new file with mode: 0644]
app/helpers/articles_helper.rb [new file with mode: 0644]
app/models/article.rb [new file with mode: 0644]
app/models/role.rb
app/models/user.rb
app/views/articles/edit.html.erb [new file with mode: 0644]
app/views/articles/index.html.erb [new file with mode: 0644]
app/views/articles/new.html.erb [new file with mode: 0644]
app/views/articles/show.html.erb [new file with mode: 0644]
config/environment.rb
config/routes.rb
db/migrate/003_create_articles.rb [new file with mode: 0644]
db/schema.rb
test/fixtures/articles.yml [new file with mode: 0644]
test/functional/articles_controller_test.rb [new file with mode: 0644]
test/functional/sessions_controller_test.rb
test/test_helper.rb
test/unit/article_test.rb [new file with mode: 0644]
test/unit/user_test.rb
vendor/plugins/will_paginate/LICENSE [new file with mode: 0644]
vendor/plugins/will_paginate/README [new file with mode: 0644]
vendor/plugins/will_paginate/Rakefile [new file with mode: 0644]
vendor/plugins/will_paginate/init.rb [new file with mode: 0644]
vendor/plugins/will_paginate/lib/will_paginate.rb [new file with mode: 0644]
vendor/plugins/will_paginate/lib/will_paginate/collection.rb [new file with mode: 0644]
vendor/plugins/will_paginate/lib/will_paginate/core_ext.rb [new file with mode: 0644]
vendor/plugins/will_paginate/lib/will_paginate/finder.rb [new file with mode: 0644]
vendor/plugins/will_paginate/lib/will_paginate/view_helpers.rb [new file with mode: 0644]
vendor/plugins/will_paginate/test/array_pagination_test.rb [new file with mode: 0644]
vendor/plugins/will_paginate/test/boot.rb [new file with mode: 0644]
vendor/plugins/will_paginate/test/console [new file with mode: 0755]
vendor/plugins/will_paginate/test/finder_test.rb [new file with mode: 0644]
vendor/plugins/will_paginate/test/fixtures/admin.rb [new file with mode: 0644]
vendor/plugins/will_paginate/test/fixtures/developer.rb [new file with mode: 0644]
vendor/plugins/will_paginate/test/fixtures/developers_projects.yml [new file with mode: 0644]
vendor/plugins/will_paginate/test/fixtures/project.rb [new file with mode: 0644]
vendor/plugins/will_paginate/test/fixtures/projects.yml [new file with mode: 0644]
vendor/plugins/will_paginate/test/fixtures/replies.yml [new file with mode: 0644]
vendor/plugins/will_paginate/test/fixtures/reply.rb [new file with mode: 0644]
vendor/plugins/will_paginate/test/fixtures/schema.rb [new file with mode: 0644]
vendor/plugins/will_paginate/test/fixtures/topic.rb [new file with mode: 0644]
vendor/plugins/will_paginate/test/fixtures/topics.yml [new file with mode: 0644]
vendor/plugins/will_paginate/test/fixtures/user.rb [new file with mode: 0644]
vendor/plugins/will_paginate/test/fixtures/users.yml [new file with mode: 0644]
vendor/plugins/will_paginate/test/helper.rb [new file with mode: 0644]
vendor/plugins/will_paginate/test/lib/activerecord_test_case.rb [new file with mode: 0644]
vendor/plugins/will_paginate/test/lib/activerecord_test_connector.rb [new file with mode: 0644]
vendor/plugins/will_paginate/test/lib/load_fixtures.rb [new file with mode: 0644]
vendor/plugins/will_paginate/test/pagination_test.rb [new file with mode: 0644]