class Rspec::HashWithDeprecationNotice

def []=(k,v)

def []=(k,v)
  Rspec.deprecate(@method, @alternate_method)
  super
end

def initialize(method, alternate_method=nil, &block)

def initialize(method, alternate_method=nil, &block)
  @method, @alternate_method = method, alternate_method
end