class FileStr
Enable use of File, Dir, and FileUtils class methods straight from {FileStr}/String objects.
Constants
- VERSION
Public Class Methods
extend( klass = String )
click to toggle source
Extend a class (String
) with {FileStr} features.
@param klass [Constant] Class to extend.
# File lib/filestr.rb, line 78 def FileStr.extend( klass = String ) klass.send( :include, FileStrModule ) end
support()
click to toggle source
Return hash describing {FileStr} provided File/Dir support.
# File lib/filestr.rb, line 83 def FileStr.support @@fileStrSupport end
version()
click to toggle source
# File lib/version.rb, line 3 def FileStr.version FileStr::VERSION end