Sha256: 0a2479dc11f27916f24d726ba0f5872e83e2c4315e0ac90b1d2b508b7283c99f
Contents?: true
Size: 938 Bytes
Versions: 19
Compression:
Stored size: 938 Bytes
Contents
module RSpec # This is defined in rspec-core, but we can't assume it's loaded since # rspec-expectations should be usable w/o rspec-core. unless respond_to?(:deprecate) 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 end end
Version data entries
19 entries across 19 versions & 3 rubygems