Sha256: 22be337d31d8e3f8cdb3b9140af62abbd53667fceb278c945362df3813f53f21
Contents?: true
Size: 1.91 KB
Versions: 1
Compression:
Stored size: 1.91 KB
Contents
require 'base64' module Antrapol module ToolRack module DataConversionUtils include ConditionUtils def from_b64(str) if not_empty?(str) # decode operation supports both strict or non strict output Base64.decode64(str) else str end end def to_b64(bin) if not_empty?(bin) # Base64 standard output which has new line in the middle of the output Base64.encode64(bin) else bin end end def to_b64_strict(bin) if not_empty?(bin) # strict base64 shall have NO new line in the middle of the output Base64.strict_encode64(bin) else bin end end def from_b64_strict(str) if not_empty?(str) Base64.strict_decode64(str) else str end end def from_hex(str) if not_empty?(str) str.scan(/../).map { |x| x.hex.chr }.join else str end end alias_method :from_hex_string, :from_hex def hex_to_number(str) if not_empty?(str) str.to_i(16) else str end end alias_method :hex_to_num, :hex_to_number alias_method :hex_to_int, :hex_to_number def to_hex(bin) if not_empty?(bin) case bin when String bin.each_byte.map { |b| b.to_s(16).rjust(2,'0') }.join when Integer bin.to_s(16) else bin end else bin end end def string_to_bool(str) if not_empty?(str) and is_str_bool?(str) s = str.to_s.strip.downcase case s when "true" true when "false" false else nil end else nil end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
toolrack-0.7.0 | lib/toolrack/data_conversion_utils.rb |