module Cleanroom::InstanceMethods
Instance Methods
Public Instance Methods
evaluate(*args, &block)
click to toggle source
Evaluate the contents against the current instance.
@param (see Cleanroom.evaluate_file) @return [self]
# File lib/cleanroom.rb, line 183 def evaluate(*args, &block) self.class.evaluate(self, *args, &block) self end
evaluate_file(filepath)
click to toggle source
Evaluate the file against the current instance.
@param (see Cleanroom.evaluate_file) @return [self]
# File lib/cleanroom.rb, line 172 def evaluate_file(filepath) self.class.evaluate_file(self, filepath) self end