Massive Cleanup
authorIra W. Snyder <devel@irasnyder.com>
Mon, 26 Nov 2007 19:34:40 +0000 (11:34 -0800)
committerIra W. Snyder <devel@irasnyder.com>
Mon, 26 Nov 2007 19:34:40 +0000 (11:34 -0800)
commit064ef703594868b7ace2ebe131ba145e27aef6d2
treeb48529641cf7d17e6b8cb2a8cf058cdfee44207a
parentf102e2d11bd1633579c7cfc244a38a9d8929bd06
Massive Cleanup

Signed-off-by: Ira W. Snyder <devel@irasnyder.com>
91 files changed:
app/controllers/game_genre_controller.rb [new file with mode: 0644]
app/controllers/game_platform_controller.rb [new file with mode: 0644]
app/controllers/gamegenre_controller.rb [deleted file]
app/controllers/gameplatform_controller.rb [deleted file]
app/controllers/media_controller.rb [deleted file]
app/controllers/video_genre_controller.rb [new file with mode: 0644]
app/controllers/video_media_controller.rb [new file with mode: 0644]
app/controllers/videogenre_controller.rb [deleted file]
app/helpers/game_genre_helper.rb [new file with mode: 0644]
app/helpers/game_platform_helper.rb [new file with mode: 0644]
app/helpers/gamegenre_helper.rb [deleted file]
app/helpers/gameplatform_helper.rb [deleted file]
app/helpers/media_helper.rb [deleted file]
app/helpers/video_genre_helper.rb [new file with mode: 0644]
app/helpers/video_media_helper.rb [new file with mode: 0644]
app/helpers/videogenre_helper.rb [deleted file]
app/models/game.rb
app/models/game_genre.rb [new file with mode: 0644]
app/models/game_platform.rb [new file with mode: 0644]
app/models/gamegenre.rb [deleted file]
app/models/gameplatform.rb [deleted file]
app/models/video.rb
app/models/video_genre.rb [moved from app/models/media.rb with 59% similarity]
app/models/video_media.rb [moved from app/models/videogenre.rb with 59% similarity]
app/views/game/_form.rhtml
app/views/game/list.rhtml
app/views/game/searchresults.rhtml
app/views/game/show.rhtml
app/views/game_genre/_form.rhtml [new file with mode: 0644]
app/views/game_genre/edit.rhtml [new file with mode: 0644]
app/views/game_genre/list.rhtml [new file with mode: 0644]
app/views/game_genre/new.rhtml [moved from app/views/videogenre/new.rhtml with 86% similarity]
app/views/game_genre/show.rhtml [new file with mode: 0644]
app/views/game_platform/_form.rhtml [new file with mode: 0644]
app/views/game_platform/edit.rhtml [new file with mode: 0644]
app/views/game_platform/list.rhtml [new file with mode: 0644]
app/views/game_platform/new.rhtml [moved from app/views/gameplatform/new.rhtml with 85% similarity]
app/views/game_platform/show.rhtml [new file with mode: 0644]
app/views/gamegenre/_form.rhtml [deleted file]
app/views/gamegenre/edit.rhtml [deleted file]
app/views/gamegenre/list.rhtml [deleted file]
app/views/gamegenre/show.rhtml [deleted file]
app/views/gameplatform/_form.rhtml [deleted file]
app/views/gameplatform/edit.rhtml [deleted file]
app/views/gameplatform/list.rhtml [deleted file]
app/views/gameplatform/show.rhtml [deleted file]
app/views/layouts/game_genre.rhtml [moved from app/views/layouts/gamegenre.rhtml with 87% similarity]
app/views/layouts/game_platform.rhtml [moved from app/views/layouts/gameplatform.rhtml with 87% similarity]
app/views/layouts/video_genre.rhtml [moved from app/views/layouts/media.rhtml with 87% similarity]
app/views/layouts/video_media.rhtml [moved from app/views/layouts/videogenre.rhtml with 87% similarity]
app/views/media/_form.rhtml [deleted file]
app/views/media/edit.rhtml [deleted file]
app/views/media/list.rhtml [deleted file]
app/views/media/show.rhtml [deleted file]
app/views/video/_form.rhtml
app/views/video/list.rhtml
app/views/video/searchresults.rhtml
app/views/video/show.rhtml
app/views/video_genre/_form.rhtml [new file with mode: 0644]
app/views/video_genre/edit.rhtml [new file with mode: 0644]
app/views/video_genre/list.rhtml [new file with mode: 0644]
app/views/video_genre/new.rhtml [moved from app/views/media/new.rhtml with 86% similarity]
app/views/video_genre/show.rhtml [new file with mode: 0644]
app/views/video_media/_form.rhtml [new file with mode: 0644]
app/views/video_media/edit.rhtml [new file with mode: 0644]
app/views/video_media/list.rhtml [new file with mode: 0644]
app/views/video_media/new.rhtml [moved from app/views/gamegenre/new.rhtml with 86% similarity]
app/views/video_media/show.rhtml [new file with mode: 0644]
app/views/videogenre/_form.rhtml [deleted file]
app/views/videogenre/edit.rhtml [deleted file]
app/views/videogenre/list.rhtml [deleted file]
app/views/videogenre/show.rhtml [deleted file]
db/development.sqlite3
db/migrate/028_create_video_genres.rb [new file with mode: 0644]
db/migrate/029_create_video_medias.rb [new file with mode: 0644]
db/migrate/030_create_game_genres.rb [new file with mode: 0644]
db/migrate/031_create_game_platforms.rb [new file with mode: 0644]
db/migrate/032_fix_rentables.rb [new file with mode: 0644]
db/schema.rb
test/fixtures/game_genres.yml [moved from test/fixtures/gamegenres.yml with 100% similarity]
test/fixtures/game_platforms.yml [moved from test/fixtures/gameplatforms.yml with 100% similarity]
test/fixtures/video_genres.yml [moved from test/fixtures/medias.yml with 100% similarity]
test/fixtures/video_medias.yml [moved from test/fixtures/videogenres.yml with 100% similarity]
test/functional/game_genre_controller_test.rb [moved from test/functional/gamegenre_controller_test.rb with 63% similarity]
test/functional/game_platform_controller_test.rb [moved from test/functional/gameplatform_controller_test.rb with 62% similarity]
test/functional/video_genre_controller_test.rb [moved from test/functional/videogenre_controller_test.rb with 63% similarity]
test/functional/video_media_controller_test.rb [moved from test/functional/media_controller_test.rb with 63% similarity]
test/unit/game_genre_test.rb [moved from test/unit/gamegenre_test.rb with 66% similarity]
test/unit/game_platform_test.rb [moved from test/unit/gameplatform_test.rb with 64% similarity]
test/unit/video_genre_test.rb [moved from test/unit/media_test.rb with 66% similarity]
test/unit/video_media_test.rb [moved from test/unit/videogenre_test.rb with 66% similarity]