Sha256: 3036a0f10d5cffe63639e664f48f71d78438efd340130b71c6098ce637ee56e0
Contents?: true
Size: 995 Bytes
Versions: 1
Compression:
Stored size: 995 Bytes
Contents
# frozen_string_literal: true module Stashify class Directory attr_reader :name, :files, :path def initialize(name: nil, path: nil, files: []) raise StandardError, "name or path must be defined" unless name || path @path = path @name = name || ::File.basename(path) @files = files end def find(name) if directory?(name) directory(name) elsif file?(name) file(name) end end def write(file) if file.is_a?(Stashify::Directory) write_directory(file) else write_file(file) end end def write_directory(directory) subdir = self.directory(directory.name) directory.files.each { |file| subdir.write(file) } end def ==(other) files == other.files end def eql?(other) self.class == other.class && name == other.name && path == other.path end private def path_of(*name) ::File.join(path, *name) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
stashify-2.1.0 | lib/stashify/directory.rb |