class String

Copyright © 2012 National ICT Australia Limited (NICTA). This software may be used and distributed solely under the terms of the MIT license (License). You should find a copy of the License in LICENSE.TXT or at opensource.org/licenses/MIT. By downloading or using this software you accept the terms and the liability disclaimer in the License.

Public Instance Methods

ducktype() click to toggle source
# File lib/omf_common/core_ext/string.rb, line 7
def ducktype
  return self if self =~ /^0.+/
  Integer(self) rescue Float(self) rescue self
end