Sha256: 1b7fe64a31336edd3d2782c3a268f5db4a9f61f2aed5abf5e3e05b7fbf2d6fc8
Contents?: true
Size: 1008 Bytes
Versions: 19
Compression:
Stored size: 1008 Bytes
Contents
module RSpec class << self def deprecate(method, alternate_method=nil, version=nil) version_string = version ? "rspec-#{version}" : "a future version of RSpec" message = <<-NOTICE ***************************************************************** DEPRECATION WARNING: you are using deprecated behaviour that will be removed from #{version_string}. #{caller(0)[2]} * #{method} is deprecated. NOTICE if alternate_method message << <<-ADDITIONAL * please use #{alternate_method} instead. ADDITIONAL end message << "*****************************************************************" warn_deprecation(message) end def warn_deprecation(message) send :warn, message end end class HashWithDeprecationNotice < Hash def initialize(method, alternate_method=nil) @method, @alternate_method = method, alternate_method end def []=(k,v) RSpec.deprecate(@method, @alternate_method) super(k,v) end end end
Version data entries
19 entries across 19 versions & 2 rubygems