Sha256: 5809ed59e93b704843b36450814811b8675daf42ca00100a74e2dc5db52f107c
Contents?: true
Size: 478 Bytes
Versions: 23
Compression:
Stored size: 478 Bytes
Contents
require 'cucumber/multiline_argument' module Cucumber module Ast def self.const_missing(const_name) if const_name == :Table warn "`Cucumber::Ast::Table` has been deprecated. Use `Cucumber::MultilineArgument::DataTable` instead." return Cucumber::MultilineArgument::DataTable end raise "`Cucumber::Ast` no longer exists. These classes have moved into the `Cucumber::Core::Ast` namespace, but may not have the same API." end end end
Version data entries
23 entries across 23 versions & 2 rubygems