Sha256: a6c6ead2a1949e93798dd93a882857397fd13460796fdab800d6e885b517dfa8
Contents?: true
Size: 373 Bytes
Versions: 102
Compression:
Stored size: 373 Bytes
Contents
package com.jrjackson; import com.fasterxml.jackson.core.*; import java.io.IOException; import org.jruby.Ruby; import org.jruby.RubyObject; public class RubyStringKeyConverter implements RubyKeyConverter { @Override public RubyObject convert(Ruby ruby, JsonParser jp) throws IOException { return RubyUtils.rubyString(ruby, jp.getCurrentName()); } }
Version data entries
102 entries across 90 versions & 17 rubygems