Sha256: f478feab82a41fcc909a6fbada6645d27577e4fd8973167c31605b974dcee885
Contents?: true
Size: 867 Bytes
Versions: 12
Compression:
Stored size: 867 Bytes
Contents
# frozen_string_literal: true require "refinements/pathnames" module Rubysmith # Represents a pathway which has source start and destination end. Pathway = Struct.new :start_root, :start_path, :end_root, keyword_init: true do using Refinements::Pathnames def initialize *arguments super each_pair { |key, value| self[key] = Pathname value } self[:start_path] = start_path.absolute? ? start_path : start_root.join(start_path) freeze end def with attributes self.class.new to_h.merge(attributes) end def end_path end_root.join from_parent, start_path.basename end def partial? start_path.basename.fnmatch? "_*" end private def from_parent return end_root.join start_path.parent if start_path.relative? start_path.relative_parent start_root end end end
Version data entries
12 entries across 12 versions & 1 rubygems