Class: Kameleoon::KameleoonClient::EvaluatedExperiment
- Inherits:
-
Object
- Object
- Kameleoon::KameleoonClient::EvaluatedExperiment
- Defined in:
- lib/kameleoon/kameleoon_client.rb
Instance Attribute Summary collapse
-
#experiment ⇒ Object
readonly
Returns the value of attribute experiment.
-
#rule_type ⇒ Object
readonly
Returns the value of attribute rule_type.
-
#var_by_exp ⇒ Object
readonly
Returns the value of attribute var_by_exp.
Class Method Summary collapse
- .from_forced_experiment_variation(forced_variation) ⇒ Object
- .from_forced_variation(forced_variation) ⇒ Object
- .from_var_by_exp_rule(var_by_exp, rule) ⇒ Object
Instance Method Summary collapse
-
#initialize(var_by_exp, experiment, rule_type) ⇒ EvaluatedExperiment
constructor
A new instance of EvaluatedExperiment.
Constructor Details
#initialize(var_by_exp, experiment, rule_type) ⇒ EvaluatedExperiment
Returns a new instance of EvaluatedExperiment.
1208 1209 1210 1211 1212 |
# File 'lib/kameleoon/kameleoon_client.rb', line 1208 def initialize(var_by_exp, experiment, rule_type) @var_by_exp = var_by_exp @experiment = experiment @rule_type = rule_type end |
Instance Attribute Details
#experiment ⇒ Object (readonly)
Returns the value of attribute experiment.
1206 1207 1208 |
# File 'lib/kameleoon/kameleoon_client.rb', line 1206 def experiment @experiment end |
#rule_type ⇒ Object (readonly)
Returns the value of attribute rule_type.
1206 1207 1208 |
# File 'lib/kameleoon/kameleoon_client.rb', line 1206 def rule_type @rule_type end |
#var_by_exp ⇒ Object (readonly)
Returns the value of attribute var_by_exp.
1206 1207 1208 |
# File 'lib/kameleoon/kameleoon_client.rb', line 1206 def var_by_exp @var_by_exp end |
Class Method Details
.from_forced_experiment_variation(forced_variation) ⇒ Object
1226 1227 1228 |
# File 'lib/kameleoon/kameleoon_client.rb', line 1226 def self.from_forced_experiment_variation(forced_variation) EvaluatedExperiment.from_var_by_exp_rule(forced_variation.var_by_exp, forced_variation.rule) end |
.from_forced_variation(forced_variation) ⇒ Object
1218 1219 1220 1221 1222 1223 1224 |
# File 'lib/kameleoon/kameleoon_client.rb', line 1218 def self.from_forced_variation(forced_variation) if forced_variation.var_by_exp.nil? || forced_variation.rule.nil? nil else EvaluatedExperiment.from_var_by_exp_rule(forced_variation.var_by_exp, forced_variation.rule) end end |
.from_var_by_exp_rule(var_by_exp, rule) ⇒ Object
1214 1215 1216 |
# File 'lib/kameleoon/kameleoon_client.rb', line 1214 def self.from_var_by_exp_rule(var_by_exp, rule) EvaluatedExperiment.new(var_by_exp, rule.experiment, rule.type) end |