1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
require 'librarian/source/basic_api'
require 'librarian/source/local'
module Librarian
module Source
class Path
include BasicApi
include Local
lock_name 'PATH'
spec_options []
attr_accessor :environment, :path
private :environment=, :path=
def initialize(environment, path, options)
self.environment = environment
self.path = path
end
def to_s
path.to_s
end
def ==(other)
other &&
self.class == other.class &&
self.path == other.path
end
alias :eql? :==
def hash
self.to_s.hash
end
def to_spec_args
[path.to_s, {}]
end
def to_lock_options
{:remote => path}
end
def pinned?
false
end
def unpin!
end
def cache!
end
def filesystem_path
@filesystem_path ||= Pathname.new(path).expand_path(environment.project_path)
end
end
end
end
|