class Gemirro::MirrorDirectory
The MirrorDirectory
is used for dealing with files and directories that are mirrored from an external source.
@!attribute [r] path
@return [String]
Attributes
Public Class Methods
Source
# File lib/gemirro/mirror_directory.rb, line 17 def initialize(path) @path = path end
@param [String] path
Public Instance Methods
Source
# File lib/gemirro/mirror_directory.rb, line 27 def add_directory(dir_path) full_path = File.join(@path, dir_path) FileUtils.mkdir_p(full_path) unless File.directory?(full_path) self.class.new(full_path) end
Creates directory or directories with the given path.
@param [String] dir_path @return [Gemirro::MirrorDirectory]
Source
# File lib/gemirro/mirror_directory.rb, line 41 def add_file(name, content) full_path = File.join(@path, name) file = MirrorFile.new(full_path) file.write(content) file end
Creates a new file with the given name and content.
@param [String] name @param [String] content @return [Gem::MirrorFile]
Source
# File lib/gemirro/mirror_directory.rb, line 56 def file_exists?(name) File.file?(File.join(@path, name)) end
Checks if a given file exists in the current directory.
@param [String] name @return [TrueClass|FalseClass]