OSDN Git Service

t#29312:any update
authoryasushiito <yas@pen-chan.jp>
Mon, 20 Aug 2012 10:07:52 +0000 (19:07 +0900)
committeryasushiito <yas@pen-chan.jp>
Mon, 20 Aug 2012 10:07:52 +0000 (19:07 +0900)
commite3ed5d83fcbd2d94ea1f1d0af6d5b6a278bb201c
tree7062611b8b7e44d0db7eade25187027cd469d0eb
parentee23b26d102713542435028c7efe410e6f9199d7
t#29312:any update
127 files changed:
.gitignore
.rspec
Gemfile
Gemfile.lock
app/assets/javascripts/ie5.js [new file with mode: 0644]
app/controllers/application_controller.rb
app/controllers/artists_controller.rb
app/controllers/colors_controller.rb [new file with mode: 0644]
app/controllers/comics_controller.rb
app/controllers/ground_colors_controller.rb [new file with mode: 0644]
app/controllers/ground_pictures_controller.rb [new file with mode: 0644]
app/controllers/original_pictures_controller.rb
app/controllers/panel_colors_controller.rb [new file with mode: 0644]
app/controllers/panels_controller.rb
app/controllers/pictures_controller.rb
app/controllers/stories_controller.rb
app/helpers/colors_helper.rb [new file with mode: 0644]
app/helpers/ground_colors_helper.rb [new file with mode: 0644]
app/helpers/ground_pictures_helper.rb [new file with mode: 0644]
app/helpers/panel_colors_helper.rb [new file with mode: 0644]
app/models/artist.rb
app/models/author.rb
app/models/color.rb [new file with mode: 0644]
app/models/comic.rb
app/models/ground_color.rb [new file with mode: 0644]
app/models/ground_picture.rb [new file with mode: 0644]
app/models/license_group.rb
app/models/original_picture.rb
app/models/panel.rb
app/models/panel_color.rb [new file with mode: 0644]
app/models/panel_picture.rb
app/models/picture.rb
app/models/resource_picture.rb
app/models/system_picture.rb
app/views/artists/_form.html.erb
app/views/artists/list.html.erb
app/views/colors/index.html.erb [new file with mode: 0644]
app/views/comics/_form.html.erb
app/views/comics/browse.html.erb
app/views/comics/list.html.erb
app/views/comics/show.html.erb
app/views/ground_colors/index.html.erb [new file with mode: 0644]
app/views/ground_pictures/index.html.erb [new file with mode: 0644]
app/views/home/step3.html.erb
app/views/layouts/system.html.erb
app/views/layouts/test.html.erb
app/views/original_pictures/_artist_register.html.erb
app/views/original_pictures/_exist.html.erb [new file with mode: 0644]
app/views/original_pictures/_history_list.html.erb [new file with mode: 0644]
app/views/original_pictures/browse.html.erb
app/views/original_pictures/history.html.erb [new file with mode: 0644]
app/views/original_pictures/index.html.erb
app/views/original_pictures/list.html.erb
app/views/original_pictures/show.html.erb
app/views/panel_colors/index.html.erb [new file with mode: 0644]
app/views/pictures/_head.html.erb [new file with mode: 0644]
app/views/pictures/_tail.html.erb [new file with mode: 0644]
app/views/pictures/show.html.erb [new file with mode: 0644]
app/views/resource_pictures/index.html.erb
app/views/resource_pictures/show.html.erb
app/views/system/browse.html.erb
config/environment.rb
config/routes.rb
db/colors.json [new file with mode: 0644]
db/migrate/20120815021444_add_md5.rb [new file with mode: 0644]
db/migrate/20120815043236_rm_default_ls_on_artist.rb [new file with mode: 0644]
db/migrate/20120815045014_rm_default_size_on_comic.rb [new file with mode: 0644]
db/migrate/20120816022713_create_colors.rb [new file with mode: 0644]
db/migrate/20120816024744_create_ground_colors.rb [new file with mode: 0644]
db/migrate/20120816024915_create_panel_colors.rb [new file with mode: 0644]
db/migrate/20120816025308_create_ground_pictures.rb [new file with mode: 0644]
lib/tasks/licenses.rake [new file with mode: 0644]
lib/validators/resize_validator.rb
lib/validators/reverse_validator.rb
lib/validators/sync_vh_validator.rb
script/gem_builder.rb [new file with mode: 0644]
script/ls_helper.rb [new file with mode: 0644]
spec/cli/u/panels/create.json
spec/controllers/colors_controller_spec.rb [new file with mode: 0644]
spec/controllers/comics_controller_spec.rb
spec/controllers/ground_colors_controller_spec.rb [new file with mode: 0644]
spec/controllers/ground_pictures_controller_spec.rb [new file with mode: 0644]
spec/controllers/original_pictures_controller_spec.rb
spec/controllers/panel_colors_controller_spec.rb [new file with mode: 0644]
spec/controllers/panels_controller_spec.rb
spec/controllers/pictures_controller_spec.rb
spec/controllers/stories_controller_spec.rb
spec/factories.rb
spec/helpers/artists_helper_spec.rb
spec/helpers/authors_helper_spec.rb
spec/helpers/balloons_helper_spec.rb
spec/helpers/colors_helper_spec.rb [new file with mode: 0644]
spec/helpers/comics_helper_spec.rb
spec/helpers/ground_colors_helper_spec.rb [new file with mode: 0644]
spec/helpers/ground_pictures_helper_spec.rb [new file with mode: 0644]
spec/helpers/home_helper_spec.rb
spec/helpers/license_groups_helper_spec.rb
spec/helpers/licenses_helper_spec.rb
spec/helpers/original_picture_license_groups_helper_spec.rb
spec/helpers/original_pictures_helper_spec.rb
spec/helpers/panel_colors_helper_spec.rb [new file with mode: 0644]
spec/helpers/panel_pictures_helper_spec.rb
spec/helpers/panels_helper_spec.rb
spec/helpers/pictures_helper_spec.rb
spec/helpers/resource_pictures_helper_spec.rb
spec/helpers/speech_balloon_templates_helper_spec.rb
spec/helpers/speech_balloons_helper_spec.rb
spec/helpers/speeches_helper_spec.rb
spec/helpers/system_helper_spec.rb
spec/helpers/system_pictures_helper_spec.rb
spec/json/color.json [new file with mode: 0644]
spec/json/colors.json [new file with mode: 0644]
spec/json/license_group.json
spec/json/license_groups.json
spec/models/admin_spec.rb
spec/models/artist_spec.rb
spec/models/color_spec.rb [new file with mode: 0644]
spec/models/comic_spec.rb
spec/models/ground_color_spec.rb [new file with mode: 0644]
spec/models/ground_picture_spec.rb [new file with mode: 0644]
spec/models/original_picture_spec.rb
spec/models/panel_color_spec.rb [new file with mode: 0644]
spec/models/panel_picture_spec.rb
spec/models/panel_spec.rb
spec/models/picture_spec.rb
spec/models/resource_picture_spec.rb
spec/models/story_spec.rb