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