Sha256: a417e9eedc9fc25d81a7748e74184aac427d1989905179c28a0e33a70ce9bc5f

Contents?: true

Size: 403 Bytes

Versions: 3

Compression:

Stored size: 403 Bytes

Contents

require_relative 'log_utils'

# = Parse Gherkins into my mental models
#
# Init Parser and get to action on a given location
# @
module Cuker
  class GherkinParser
    include LoggerSetup

    attr_accessor :lex_ary

    def initialize lex = []
      init_logger
      @lex_ary = lex
      @log.trace "init parser for lexer with items: "
    end

    def parse

    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
cuker-0.4.0 lib/cuker/gherkin_parser.rb
cuker-0.3.17 lib/cuker/gherkin_parser.rb
cuker-0.3.15 lib/cuker/gherkin_parser.rb