module FunWith::Files::CoreExtensions::String
Public Instance Methods
fwf_blank?()
click to toggle source
# File lib/fun_with/files/core_extensions/string.rb, line 5 def fwf_blank? self.strip.length == 0 end
fwf_filepath( *args )
click to toggle source
# File lib/fun_with/files/core_extensions/string.rb, line 9 def fwf_filepath( *args ) FunWith::Files::FilePath.new( self, *args ) end
to_pathname()
click to toggle source
# File lib/fun_with/files/core_extensions/string.rb, line 13 def to_pathname Pathname.new( self ) end