class String

© Alexander Semyonov, 2011—2013, MIT License # Author: Alexander Semyonov <al@semyonov.us> #

Public Class Methods

from_xommelier(value) click to toggle source
# File lib/xommelier/core_ext/string.rb, line 9
def self.from_xommelier(value)
  return nil if value.is_a?(NilClass)
  value.to_s
end

Public Instance Methods

to_xommelier() click to toggle source
# File lib/xommelier/core_ext/string.rb, line 14
def to_xommelier
  self
end