Sha256: 40da2f687ca222fc18623ad801f58d64cead5a46312ce3d25f183e1dbe5c9200
Contents?: true
Size: 409 Bytes
Versions: 5
Compression:
Stored size: 409 Bytes
Contents
class Ruby_process #Returns a numeric value like a integer. This methods exists because it isnt possible to do: "Integer.new(5)". #===Examples # proxy_int = rp.numeric(5) # proxy_int.__rp_marshal #=> 5 def numeric(val) return send(:cmd => :numeric, :val => val) end #Process-method for the 'numeric'-method. def cmd_numeric(obj) return handle_return_object(obj[:val].to_i) end end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
ruby_process-0.0.9 | cmds/numeric.rb |
ruby_process-0.0.8 | cmds/numeric.rb |
ruby_process-0.0.7 | cmds/numeric.rb |
ruby_process-0.0.5 | cmds/numeric.rb |
ruby_process-0.0.4 | cmds/numeric.rb |