module Cucumber::Deprecate::ForDevelopers
Public Class Methods
call(message, method, remove_after_version)
click to toggle source
# File lib/cucumber/deprecate.rb, line 15 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