09/18/2010: Active Relation Explained
Action Relation is an implementation of map-reduce. The predicate map the data. And the operations reduce it.
09/16/2010: Tracking RSPEC Test Execution So Debugging Statements Are Segmented
Tracking RSPEC Test Execution So Debugging Statements Are Segmented
Throw the following into an initializer:
module Spec
module Example
module ExampleMethods
def execute_with_print_logging(run_options, instance_variables)
p "RSPEC TRACE: #{description} => #{@_proxy.location}"
execute_without_print_logging(run_options, instance_variables)
end
alias_method_chain :execute, :print_logging
end
end
end