Sha256: 73cacdfbfb1c1eb306508e196ee4ba9e164fdc69312ae84be54cc7a201dacd54
Contents?: true
Size: 1.75 KB
Versions: 5
Compression:
Stored size: 1.75 KB
Contents
require 'singleton' class ToolsFiles include Singleton def initialize(options = {}) end # Create a directory in work area # # Sample # ToolsFiles.create_dir Tools.home + '/2018/xykotools/tools/home', 'tools_home' # home = (ToolsUtil.get_variable 'tools_home') => ~/2018/xykotools/tools/home # # @param directory # @param directory_name # @return def self.create_dir directory, directory_name unless directory.end_with? '/' directory += '/' end complete_file = (directory + '/').gsub('//','/') unless File.exists? complete_file Dir.mkdir(complete_file) end ToolsUtil.set_variable directory_name, complete_file end # Create a file in work area # # Sample # # ToolsFiles.create_file home, 'xyko_file.txt', 'xyko_file' # xyko = (ToolsUtil.get_variable 'xyko_file') => ~/2018/xykotools/tools/home/xyko_file.txt # # @param directory # @param file_name # @param file_name_set # @return def self.create_file directory, file_name, file_name_set complete_file = (directory + '/' + file_name).gsub('//','/') unless File.exists? complete_file file = File.open( complete_file , 'w') end ToolsUtil.set_variable file_name_set, complete_file end # Load a file in work area # # Sample # # ToolsFiles.load_file file_to_load # @param file_to_load Object # @return def self.load_file file_to_load if File.exists? file_to_load file = File.open( file_to_load , 'r') return file end end def self.open_file file, default_editor=nil begin if default_editor.nil? TTY::Editor.open( file, command: :vi) else TTY::Editor.open( file, command: default_editor) end rescue Exception => e return e end end end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
tools-0.4.4 | lib/lib/files.rb |
tools-0.4.3 | lib/lib/files.rb |
tools-0.4.2 | lib/lib/files.rb |
tools-0.4.1 | lib/lib/files.rb |
tools-0.3.9 | lib/lib/files.rb |