Sha256: 0ba6040d4d267e0087c864612652194dae691a06788453f7024597f2192e6731
Contents?: true
Size: 412 Bytes
Versions: 102
Compression:
Stored size: 412 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 RubyFloatValueConverter implements RubyConverter { @Override public RubyObject convert(Ruby ruby, JsonParser jp) throws IOException { return RubyUtils.rubyFloat(ruby, jp.getDoubleValue()); } }
Version data entries
102 entries across 90 versions & 17 rubygems