Sha256: c8babc3203d3474bf9666b430986d78d96d70225a0f12fa588adf9d61ba0f672

Contents?: true

Size: 595 Bytes

Versions: 133

Compression:

Stored size: 595 Bytes

Contents

module Gherkin
  module Rubify
    if defined?(JRUBY_VERSION)
      # Translate Java objects to Ruby.
      # This is especially important to convert java.util.List coming
      # from Java and back to a Ruby Array.
      def rubify(o)
        case(o)
        when Java.java.util.Collection, Array
          o.map{|e| rubify(e)}
        when Java.gherkin.formatter.model.PyString
          require 'gherkin/formatter/model'
          Formatter::Model::PyString.new(o.value, o.line)
        else
          o
        end
      end
    else
      def rubify(o)
        o
      end
    end
  end
end

Version data entries

133 entries across 133 versions & 4 rubygems

Version Path
gherkin-2.1.2-i386-mingw32 lib/gherkin/rubify.rb
gherkin-2.1.2-universal-dotnet lib/gherkin/rubify.rb
gherkin-2.1.2-java lib/gherkin/rubify.rb
gherkin-2.1.1 lib/gherkin/rubify.rb
gherkin-2.1.1-i386-mswin32 lib/gherkin/rubify.rb
gherkin-2.1.1-i386-mingw32 lib/gherkin/rubify.rb
gherkin-2.1.1-universal-dotnet lib/gherkin/rubify.rb
gherkin-2.1.1-java lib/gherkin/rubify.rb
gherkin-2.1.0-i386-mswin32 lib/gherkin/rubify.rb
gherkin-2.1.0-i386-mingw32 lib/gherkin/rubify.rb
gherkin-2.1.0 lib/gherkin/rubify.rb
gherkin-2.1.0-universal-dotnet lib/gherkin/rubify.rb
gherkin-2.1.0-java lib/gherkin/rubify.rb