summaryrefslogtreecommitdiff
path: root/app/models
diff options
context:
space:
mode:
authornfoy <nfoy@purdue.edu>2014-04-26 23:45:25 -0400
committernfoy <nfoy@purdue.edu>2014-04-26 23:45:25 -0400
commit6f19b51f0adf95b1d9bd8317388ecdbcb3756be7 (patch)
treec4be583ba9db126ef58db7a1900468ec0929df25 /app/models
parent9d8d6b023ce3390f3ccf9808e630505a15ebebe6 (diff)
parent9dd899559e4533c61089c3f9429574d2de20925e (diff)
Merge branch 'master' of https://github.com/LukeShu/leaguer
Diffstat (limited to 'app/models')
-rw-r--r--app/models/tournament.rb25
-rw-r--r--app/models/tournament_stage.rb23
2 files changed, 25 insertions, 23 deletions
diff --git a/app/models/tournament.rb b/app/models/tournament.rb
index 61b4700..2d4d6b6 100644
--- a/app/models/tournament.rb
+++ b/app/models/tournament.rb
@@ -93,4 +93,29 @@ class Tournament < ActiveRecord::Base
def sampling
@sampling ||= "Sampling::#{self.sampling_method.camelcase}".constantize
end
+
+ # YISSSSSS
+ def self.make_methods(dir)
+ @methods ||= {}
+ if @methods[dir].nil? or Rails.env.development?
+ @methods[dir] = Dir.glob("#{Rails.root}/lib/#{dir}/*.rb").map{|filename| File.basename(filename, ".rb").humanize }
+ end
+ return @methods[dir]
+ end
+
+ def self.scoring_methods
+ make_methods "scoring"
+ end
+
+ def self.sampling_methods
+ make_methods "sampling"
+ end
+
+ def self.scheduling_methods
+ make_methods "scheduling"
+ end
+
+ def self.seeding_methods
+ make_methods "seeding"
+ end
end
diff --git a/app/models/tournament_stage.rb b/app/models/tournament_stage.rb
index 84519b9..9352137 100644
--- a/app/models/tournament_stage.rb
+++ b/app/models/tournament_stage.rb
@@ -25,29 +25,6 @@ class TournamentStage < ActiveRecord::Base
return seeding.seed.pair(matches, players)
end
- def make_methods(dir)
- if @methods[dir].nil? or Rails.env.development?
- @methods[dir] = Dir.glob("#{Rails.root}/lib/#{dir}/*.rb").map{|filename| filename.sub(/.*\/(.*)\.rb/, /\1/)}
- end
- return @methods[dir]
- end
-
- def scoring_methods
- make_methods "scoring"
- end
-
- def sampling_methods
- make_methods "sampling"
- end
-
- def scheduling_methods
- make_methods "scheduling"
- end
-
- def seeding_methods
- make_methods "seeding"
- end
-
# Accessors to the configured methods
def scoring