re-namespacing a touch

This commit is contained in:
Dan Buch
2012-04-03 23:02:32 -04:00
parent 62d2e11e31
commit 38c85ad7c7
122 changed files with 19625 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
# Methods added to this helper will be available to all templates in the application.
module ApplicationHelper
end

View File

@@ -0,0 +1,2 @@
module MapsHelper
end

View File

@@ -0,0 +1,9 @@
module MashTournamentsHelper
def total_rounds_options_for_select
options = []
@mash_tournament.total_rounds_options.each do |n|
options << [n, n]
end
options
end
end

View File

@@ -0,0 +1,2 @@
module MashesHelper
end