V_SPACING_OK = {} #------------------------------------------------------------------------------- # Class length #------------------------------------------------------------------------------- V_SPACING_OK[:class_five_code_lines] = %Q{class Party include Clowns def barrel_roll end end} V_SPACING_OK[:embedded_class_five_code_lines] = %Q{class Party class Pizza include Cheese end end} #------------------------------------------------------------------------------- # Method length #------------------------------------------------------------------------------- V_SPACING_OK[:method_3_code_lines] = %Q{def thing puts 'hi' end} V_SPACING_OK[:embedded_method_3_code_lines] = %Q{def outter_thing def thing; puts 'hi'; end end}