mirror of
https://github.com/mistergibson/gxg-web-client.git
synced 2026-08-15 03:26:00 -07:00
27 lines
604 B
Ruby
27 lines
604 B
Ruby
module Rubinius
|
|
def self.pack_to_float(obj)
|
|
unless obj.kind_of?(Numeric)
|
|
raise TypeError, "unable to convert String to Float"
|
|
end
|
|
Type.coerce_to obj, Float, :to_f
|
|
end
|
|
|
|
def self.pack_to_int(obj)
|
|
Rubinius::Type.coerce_to obj, Integer, :to_int
|
|
end
|
|
|
|
def self.pack_to_str(obj)
|
|
Rubinius::Type.coerce_to obj, String, :to_str
|
|
end
|
|
|
|
def self.pack_to_str_or_nil(obj)
|
|
return "" if obj.nil?
|
|
Rubinius::Type.coerce_to obj, String, :to_str
|
|
end
|
|
|
|
def self.pack_to_s(obj)
|
|
str = obj.to_s
|
|
str = obj.inspect unless Type.object_kind_of? str, String
|
|
str
|
|
end
|
|
end
|