class RightAws::ActiveSdb::IntegerSerialization
Public Instance Methods
deserialize(string)
click to toggle source
# File lib/sdb/active_sdb.rb, line 1115 def deserialize(string) string.to_i end
serialize(int)
click to toggle source
# File lib/sdb/active_sdb.rb, line 1111 def serialize(int) int.to_s end