Sha256: 90b5d405bcb9305befc2f43f52cc400c1214eadad80fa969a0ea415ff3c44733
Contents?: true
Size: 423 Bytes
Versions: 102
Compression:
Stored size: 423 Bytes
Contents
package com.jrjackson; import com.fasterxml.jackson.core.JsonParser; import java.io.IOException; import org.jruby.Ruby; import org.jruby.RubyObject; /** * * @author Guy Boertje */ public class RubyBigDecimalValueConverter implements RubyConverter { @Override public RubyObject convert(Ruby ruby, JsonParser jp) throws IOException { return RubyUtils.rubyBigDecimal(ruby, jp.getDecimalValue()); } }
Version data entries
102 entries across 90 versions & 17 rubygems