module Berkshelf class PathLocation < Location::Base class << self # Expand and return a string representation of the given path if it is # absolute or a path in the users home directory. # # Returns the given relative path otherwise. # # @param [#to_s] path # # @return [String] def normalize_path(path) path = path.to_s if (path[0] == '~') || Pathname.new(path).absolute? File.expand_path(path) else path end end end set_location_key :path set_valid_options :path, :metadata attr_accessor :path # @param [#to_s] dependency # @param [Solve::Constraint] version_constraint # @param [Hash] options # # @option options [#to_s] :path # a filepath to the cookbook on your local disk # @option options [Boolean] :metadata # true if this is a metadata source def initialize(dependency, options = {}) super @path = options[:path].to_s @metadata = options[:metadata] end def do_download CachedCookbook.from_path(path, name: name) end # Returns true if the location is a metadata location. By default, no # locations are the metadata location. # # @return [Boolean] def metadata? !!@metadata end # Return this PathLocation's path relative to the given target. # # @param [#to_s] target # the path to a file or directory to be relative to # # @return [String] # the relative path relative to the target def relative_path(target = '.') my_path = Pathname.new(path).expand_path target_path = Pathname.new(target.to_s).expand_path target_path = target_path.dirname if target_path.file? new_path = my_path.relative_path_from(target_path).to_s return new_path if new_path.index('.') == 0 "./#{new_path}" end def to_hash super.merge(value: self.path) end # The string representation of this PathLocation # # @example # loc.to_s #=> artifact (1.4.0) at path: '/Users/Seth/Dev/artifact' # # @return [String] def to_s "#{self.class.location_key}: '#{File.expand_path(path)}'" end end end