Used internally by RSpec to display standard deprecation warnings. This is also defined in rspec-core, but we can't assume it's loaded since rspec-expectations should be usable w/o rspec-core.
# File lib/rspec/expectations/deprecation.rb, line 7 def deprecate(method, alternate_method=nil, version=nil) version_string = version ? "rspec-#{version}" : "a future version of RSpec" message = *****************************************************************DEPRECATION WARNING: you are using deprecated behaviour that willbe removed from #{version_string}.#{caller(0)[2]}* #{method} is deprecated. if alternate_method message << * please use #{alternate_method} instead. end message << "*****************************************************************" warn_deprecation(message) end
Used internally by RSpec to display custom deprecation warnings. This is also defined in rspec-core, but we can't assume it's loaded since rspec-expectations should be usable w/o rspec-core.
# File lib/rspec/expectations/deprecation.rb, line 33 def warn_deprecation(message) warn(message) end
Generated with the Darkfish Rdoc Generator 2.