summaryrefslogtreecommitdiff
path: root/lib/sampling/double_blind.rb
diff options
context:
space:
mode:
authorLuke Shumaker <shumakl@purdue.edu>2014-04-27 22:24:08 -0400
committerLuke Shumaker <shumakl@purdue.edu>2014-04-27 22:24:08 -0400
commit049637ce9ac37f807234e0f679e9da6dba48767a (patch)
treeb74a63ea23b309c196d40920db2d4f4551cd7795 /lib/sampling/double_blind.rb
parent105612b151eced803238a24180c29f92e9685dc8 (diff)
dissable sampling/double_blind
Diffstat (limited to 'lib/sampling/double_blind.rb')
-rw-r--r--lib/sampling/double_blind.rb35
1 files changed, 0 insertions, 35 deletions
diff --git a/lib/sampling/double_blind.rb b/lib/sampling/double_blind.rb
deleted file mode 100644
index 409da10..0000000
--- a/lib/sampling/double_blind.rb
+++ /dev/null
@@ -1,35 +0,0 @@
-module Sampling
- module DoubleBlind
- def self.works_with?(game)
- return true
- end
-
- def self.uses_remote?
- return false
- end
-
- def self.set_remote_name(user, game, value)
- raise "This sampling method doesn't use remote usernames."
- end
-
- def self.get_remote_name(value)
- raise "This sampling method doesn't use remote usernames."
- end
-
- def self.sampling_start(match)
- # TODO
- end
-
- def self.sampling_done?(match)
- # TODO
- end
-
- def self.render_user_interaction(match, user)
- # TODO
- end
-
- def self.handle_user_interaction(match, user, sampling_params)
- # TODO
- end
- end
-end