# Author:: Eric Crane (mailto:eric.crane@mac.com) # Copyright:: Copyright (c) 202 Eric Crane. All rights reserved. # # Conversion tool: String to Decimal. # module Gloo module Convert class StringToDecimal # # Convert the given string value to an integer. # def convert( value ) return value.to_f end end end end