Sha256: 3c2ad8de2526f002ee7da62202a943c40b7494d80564e880073f69ef5600cdca

Contents?: true

Size: 1.74 KB

Versions: 3

Compression:

Stored size: 1.74 KB

Contents

require 'forwardable'

module Cucumber
  class Runtime
    # This is what a programming language will consider to be a runtime.
    # 
    # It's a thin class that directs the handul of methods needed by the
    # programming languages to the right place.
    class ForProgrammingLanguages
      extend Forwardable
    
      def initialize(support_code, user_interface)
        @support_code, @user_interface = support_code, user_interface
      end

      def_delegators :@user_interface,
        :embed,
        :ask,
        :announce,
        :features_paths,
        :step_match
    
      def_delegators :@support_code,
        :invoke_steps,
        :invoke,
        :load_programming_language
    
      # Returns a Cucumber::Ast::Table for +text_or_table+, which can either
      # be a String:
      #
      #   table(%{
      #     | account | description | amount |
      #     | INT-100 | Taxi        | 114    |
      #     | CUC-101 | Peeler      | 22     |
      #   })
      #
      # or a 2D Array:
      #
      #   table([
      #     %w{ account description amount },
      #     %w{ INT-100 Taxi        114    },
      #     %w{ CUC-101 Peeler      22     }
      #   ])
      #
      def table(text_or_table, file=nil, line_offset=0)
        if Array === text_or_table
          Ast::Table.new(text_or_table)
        else
          Ast::Table.parse(text_or_table, file, line_offset)
        end
      end

      # Returns a regular String for +string_with_triple_quotes+. Example:
      #
      #   """
      #    hello
      #   world
      #   """
      #
      # Is retured as: " hello\nworld"
      #
      def py_string(string_with_triple_quotes, file=nil, line_offset=0)
        Ast::PyString.parse(string_with_triple_quotes)
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
cucumber-0.10.3 lib/cucumber/runtime/for_programming_languages.rb
cucumber-0.10.2 lib/cucumber/runtime/for_programming_languages.rb
cucumber-0.10.1 lib/cucumber/runtime/for_programming_languages.rb