Module: GherkinRuby

Defined in:
lib/gherkin_ruby.rb,
lib/gherkin_ruby/ast.rb,
lib/gherkin_ruby/version.rb,
lib/gherkin_ruby/parser/parser.rb

Defined Under Namespace

Modules: AST Classes: Parser

Constant Summary collapse

VERSION =
"0.3.2"

Class Method Summary collapse

Class Method Details

.parse(input) ⇒ Object



6
7
8
9
# File 'lib/gherkin_ruby.rb', line 6

def self.parse(input)
  parser = Parser.new
  parser.parse(input)
end