module Cucumber::Deprecate::ForDevelopers
Public Class Methods
call(_message, _method, remove_after_version)
click to toggle source
# File lib/cucumber/deprecate.rb, line 16 def self.call(_message, _method, remove_after_version) if Cucumber::VERSION > remove_after_version raise "This method is due for removal after version #{remove_after_version}" end end