module Onering module Util module String def nil_empty return nil if (self.strip.chomp.empty? rescue true) self.strip.chomp end end end end class String include Onering::Util::String end