class Array
- alias :case_equal? :===
+ alias_method :case_equal?, :===
- def ===(other, counter = [0], my_rec = {}, his_rec = {}) # !> method redefined; discarding old eql?
+ def ===(other, counter = [0], my_rec = {}, his_rec = {}) # !> method redefined; discarding old ===
return true if other.object_id == self.object_id
return false unless other.is_a? Array
return true if other == self
require File.dirname(__FILE__) + '/../../../../spec/spec_helper'
+
plugin_spec_dir = File.dirname(__FILE__)
# ActiveRecord::Base.logger = Logger.new(plugin_spec_dir + "/debug.log")