class OraNumber

def encode_with coder

Other tags:
    Private: -
def encode_with coder
  coder.scalar = self.to_s
end

def init_with coder

Other tags:
    Private: -
def init_with coder
  initialize(coder.scalar)
end

def to_json(options=nil)

Other tags:
    Private: -
def to_json(options=nil)
  to_s
end

def to_yaml(opts = {})

Other tags:
    Private: -
def to_yaml(opts = {})
  YAML.quick_emit(object_id, opts) do |out|
    out.scalar(taguri, self.to_s, :plain)
  end
end

def yaml_initialize(type, val)

Other tags:
    Private: -
def yaml_initialize(type, val)
  initialize(val)
end