Class: Bundler::Source::Path
Defined Under Namespace
Classes: Installer
Constant Summary
collapse
- DEFAULT_GLOB =
"{,*,*/*}.gemspec".freeze
Instance Attribute Summary collapse
#dependency_names
Class Method Summary
collapse
Instance Method Summary
collapse
#can_lock?, #dependency_names_to_double_check, #double_check_for, #extension_cache_path, #include?, #inspect, #path?, #unmet_deps, #version_message
Constructor Details
#initialize(options) ⇒ Path
Returns a new instance of Path.
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
|
# File 'lib/bundler/source/path.rb', line 16
def initialize(options)
@options = options.dup
@glob = options["glob"] || DEFAULT_GLOB
@allow_cached = false
@allow_remote = false
@root_path = options["root_path"] || root
if options["path"]
@path = Pathname.new(options["path"])
expanded_path = expand(@path)
@path = if @path.relative?
expanded_path.relative_path_from(root_path.expand_path)
else
expanded_path
end
end
@name = options["name"]
@version = options["version"]
@original_path = @path
end
|
Instance Attribute Details
#name ⇒ Object
80
81
82
|
# File 'lib/bundler/source/path.rb', line 80
def name
File.basename(expanded_path.to_s)
end
|
#options ⇒ Object
Returns the value of attribute options.
8
9
10
|
# File 'lib/bundler/source/path.rb', line 8
def options
@options
end
|
#path ⇒ Object
Returns the value of attribute path.
8
9
10
|
# File 'lib/bundler/source/path.rb', line 8
def path
@path
end
|
#root_path ⇒ Object
Returns the value of attribute root_path.
8
9
10
|
# File 'lib/bundler/source/path.rb', line 8
def root_path
@root_path
end
|
#version ⇒ Object
Returns the value of attribute version.
10
11
12
|
# File 'lib/bundler/source/path.rb', line 10
def version
@version
end
|
Class Method Details
.from_lock(options) ⇒ Object
53
54
55
|
# File 'lib/bundler/source/path.rb', line 53
def self.from_lock(options)
new(options.merge("path" => options.delete("remote")))
end
|
Instance Method Details
#app_cache_dirname ⇒ Object
116
117
118
|
# File 'lib/bundler/source/path.rb', line 116
def app_cache_dirname
name
end
|
#cache(spec, custom_path = nil) ⇒ Object
90
91
92
93
94
95
96
97
98
99
100
101
102
|
# File 'lib/bundler/source/path.rb', line 90
def cache(spec, custom_path = nil)
app_cache_path = app_cache_path(custom_path)
return unless Bundler.feature_flag.cache_all?
return if expand(@original_path).to_s.index(root_path.to_s + "/") == 0
unless @original_path.exist?
raise GemNotFound, "Can't cache gem #{version_message(spec)} because #{self} is missing!"
end
FileUtils.rm_rf(app_cache_path)
FileUtils.cp_r("#{@original_path}/.", app_cache_path)
FileUtils.touch(app_cache_path.join(".bundlecache"))
end
|
#cached! ⇒ Object
48
49
50
51
|
# File 'lib/bundler/source/path.rb', line 48
def cached!
@local_specs = nil
@allow_cached = true
end
|
#eql?(other) ⇒ Boolean
Also known as:
==
72
73
74
75
76
|
# File 'lib/bundler/source/path.rb', line 72
def eql?(other)
return unless other.class == self.class
expanded_original_path == other.expanded_original_path &&
version == other.version
end
|
#expanded_original_path ⇒ Object
124
125
126
|
# File 'lib/bundler/source/path.rb', line 124
def expanded_original_path
@expanded_original_path ||= expand(original_path)
end
|
#hash ⇒ Object
68
69
70
|
# File 'lib/bundler/source/path.rb', line 68
def hash
[self.class, expanded_path, version].hash
end
|
#install(spec, options = {}) ⇒ Object
84
85
86
87
88
|
# File 'lib/bundler/source/path.rb', line 84
def install(spec, options = {})
print_using_message "Using #{version_message(spec)} from #{self}"
generate_bin(spec, :disable_extensions => true)
nil end
|
#local_specs ⇒ Object
104
105
106
|
# File 'lib/bundler/source/path.rb', line 104
def local_specs(*)
@local_specs ||= load_spec_files
end
|
#remote! ⇒ Object
43
44
45
46
|
# File 'lib/bundler/source/path.rb', line 43
def remote!
@local_specs = nil
@allow_remote = true
end
|
#root ⇒ Object
120
121
122
|
# File 'lib/bundler/source/path.rb', line 120
def root
Bundler.root
end
|
#specs ⇒ Object
108
109
110
111
112
113
114
|
# File 'lib/bundler/source/path.rb', line 108
def specs
if has_app_cache?
@path = app_cache_path
@expanded_path = nil end
local_specs
end
|
#to_lock ⇒ Object
57
58
59
60
61
62
|
# File 'lib/bundler/source/path.rb', line 57
def to_lock
out = String.new("PATH\n")
out << " remote: #{lockfile_path}\n"
out << " glob: #{@glob}\n" unless @glob == DEFAULT_GLOB
out << " specs:\n"
end
|
#to_s ⇒ Object
64
65
66
|
# File 'lib/bundler/source/path.rb', line 64
def to_s
"source at `#{@path}`"
end
|