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