Actually mashing maps now, but not handling form post-back or making it pretty

This commit is contained in:
Dan Buch
2012-03-07 09:32:33 -05:00
parent dd73309ed1
commit b1e17869b1
22 changed files with 447 additions and 42 deletions

View File

@@ -3,3 +3,5 @@
# Add new mime types for use in respond_to blocks:
# Mime::Type.register "text/richtext", :rtf
# Mime::Type.register_alias "text/html", :iphone
Mime::Type.register 'image/png', :png

View File

@@ -1,3 +1,6 @@
ActionController::Routing::Routes.draw do |map|
map.resources :maps
map.resources :mashes
map.root :controller => 'mashes', :action => 'index'
end