Class: Bundler::Source::Git
- Inherits:
-
Path
show all
- Defined in:
- lib/bundler/source/git.rb,
lib/bundler/source/git/git_proxy.rb
Defined Under Namespace
Classes: GitCommandError, GitNotAllowedError, GitNotInstalledError, GitProxy
Constant Summary
Constants inherited
from Path
Path::DEFAULT_GLOB
Instance Attribute Summary collapse
Attributes inherited from Path
#version
#dependency_names
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from Path
#cached!, #local_specs, #remote!
#can_lock?, #include?, #unmet_deps, #version_message
Constructor Details
#initialize(options) ⇒ Git
Returns a new instance of Git.
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# File 'lib/bundler/source/git.rb', line 13
def initialize(options)
@options = options
@glob = options["glob"] || DEFAULT_GLOB
@allow_cached = false
@allow_remote = false
%w(ref branch tag revision).each{|k| options[k] = options[k].to_s if options[k] }
@uri = options["uri"] || ''
@branch = options["branch"]
@ref = options["ref"] || options["branch"] || options["tag"] || 'master'
@submodules = options["submodules"]
@name = options["name"]
@version = options["version"]
@copied = false
@local = false
end
|
Instance Attribute Details
#branch ⇒ Object
Returns the value of attribute branch.
11
12
13
|
# File 'lib/bundler/source/git.rb', line 11
def branch
@branch
end
|
#options ⇒ Object
Returns the value of attribute options.
11
12
13
|
# File 'lib/bundler/source/git.rb', line 11
def options
@options
end
|
#ref ⇒ Object
Returns the value of attribute ref.
11
12
13
|
# File 'lib/bundler/source/git.rb', line 11
def ref
@ref
end
|
#submodules ⇒ Object
Returns the value of attribute submodules.
11
12
13
|
# File 'lib/bundler/source/git.rb', line 11
def submodules
@submodules
end
|
#uri ⇒ Object
Returns the value of attribute uri.
11
12
13
|
# File 'lib/bundler/source/git.rb', line 11
def uri
@uri
end
|
Class Method Details
.from_lock(options) ⇒ Object
34
35
36
|
# File 'lib/bundler/source/git.rb', line 34
def self.from_lock(options)
new(options.merge("uri" => options.delete("remote")))
end
|
Instance Method Details
#allow_git_ops? ⇒ Boolean
218
219
220
|
# File 'lib/bundler/source/git.rb', line 218
def allow_git_ops?
@allow_remote || @allow_cached
end
|
#app_cache_dirname ⇒ Object
210
211
212
|
# File 'lib/bundler/source/git.rb', line 210
def app_cache_dirname
"#{base_name}-#{shortref_for_path(cached_revision || revision)}"
end
|
#cache(spec, custom_path = nil) ⇒ Object
176
177
178
179
180
181
182
183
184
185
|
# File 'lib/bundler/source/git.rb', line 176
def cache(spec, custom_path = nil)
app_cache_path = app_cache_path(custom_path)
return unless Bundler.settings[:cache_all]
return if path == app_cache_path
cached!
FileUtils.rm_rf(app_cache_path)
git_proxy.checkout if requires_checkout?
git_proxy.copy_to(app_cache_path, @submodules)
serialize_gemspecs_in(app_cache_path)
end
|
#cache_path ⇒ Object
This is the path which is going to contain a cache of the git repository. When using the same git repository across different projects, this cache will be shared. When using local git repos, this is set to the local repo.
198
199
200
201
202
203
204
205
206
207
208
|
# File 'lib/bundler/source/git.rb', line 198
def cache_path
@cache_path ||= begin
git_scope = "#{base_name}-#{uri_hash}"
if Bundler.requires_sudo?
Bundler.user_bundle_path.join("cache/git", git_scope)
else
Bundler.cache.join("git", git_scope)
end
end
end
|
#eql?(o) ⇒ Boolean
Also known as:
==
53
54
55
56
57
58
59
60
61
|
# File 'lib/bundler/source/git.rb', line 53
def eql?(o)
o.is_a?(Git) &&
uri == o.uri &&
ref == o.ref &&
branch == o.branch &&
name == o.name &&
version == o.version &&
submodules == o.submodules
end
|
#extension_dir_name ⇒ Object
98
99
100
|
# File 'lib/bundler/source/git.rb', line 98
def extension_dir_name
"#{base_name}-#{shortref_for_path(revision)}"
end
|
#hash ⇒ Object
49
50
51
|
# File 'lib/bundler/source/git.rb', line 49
def hash
[self.class, uri, ref, branch, name, version, submodules].hash
end
|
#install(spec, force = false) ⇒ Object
162
163
164
165
166
167
168
169
170
171
172
173
174
|
# File 'lib/bundler/source/git.rb', line 162
def install(spec, force = false)
Bundler.ui.info "Using #{version_message(spec)} from #{to_s}"
if requires_checkout? && !@copied && !force
Bundler.ui.debug " * Checking out revision: #{ref}"
git_proxy.copy_to(install_path, submodules)
serialize_gemspecs_in(install_path)
@copied = true
end
generate_bin(spec)
requires_checkout? ? spec.post_install_message : nil
end
|
#install_path ⇒ Object
Also known as:
path
This is the path which is going to contain a specific checkout of the git repository. When using local git repos, this is set to the local repo.
#load_spec_files ⇒ Object
187
188
189
190
191
192
|
# File 'lib/bundler/source/git.rb', line 187
def load_spec_files
super
rescue PathError => e
Bundler.ui.trace e
raise GitError, "#{to_s} is not yet checked out. Run `bundle install` first."
end
|
#local_override!(path) ⇒ Object
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
# File 'lib/bundler/source/git.rb', line 107
def local_override!(path)
return false if local?
path = Pathname.new(path)
path = path.expand_path(Bundler.root) unless path.relative?
unless options["branch"] || Bundler.settings[:disable_local_branch_check]
raise GitError, "Cannot use local override for #{name} at #{path} because " \
":branch is not specified in Gemfile. Specify a branch or use " \
"`bundle config --delete` to remove the local override"
end
unless path.exist?
raise GitError, "Cannot use local override for #{name} because #{path} " \
"does not exist. Check `bundle config --delete` to remove the local override"
end
set_local!(path)
@git_proxy = GitProxy.new(path, uri, ref)
if git_proxy.branch != options["branch"] && !Bundler.settings[:disable_local_branch_check]
raise GitError, "Local override for #{name} at #{path} is using branch " \
"#{git_proxy.branch} but Gemfile specifies #{options["branch"]}"
end
changed = cached_revision && cached_revision != git_proxy.revision
if changed && !@unlocked && !git_proxy.contains?(cached_revision)
raise GitError, "The Gemfile lock is pointing to revision #{shortref_for_display(cached_revision)} " \
"but the current branch in your local override for #{name} does not contain such commit. " \
"Please make sure your branch is up to date."
end
changed
end
|
#name ⇒ Object
76
77
78
|
# File 'lib/bundler/source/git.rb', line 76
def name
File.basename(@uri, '.git')
end
|
#revision ⇒ Object
214
215
216
|
# File 'lib/bundler/source/git.rb', line 214
def revision
git_proxy.revision
end
|
#specs ⇒ Object
TODO: actually cache git specs
147
148
149
150
151
152
153
154
155
156
157
158
159
160
|
# File 'lib/bundler/source/git.rb', line 147
def specs(*)
if has_app_cache? && !local?
set_local!(app_cache_path)
end
if requires_checkout? && !@copied
git_proxy.checkout
git_proxy.copy_to(install_path, submodules)
serialize_gemspecs_in(install_path)
@copied = true
end
local_specs
end
|
#to_lock ⇒ Object
38
39
40
41
42
43
44
45
46
47
|
# File 'lib/bundler/source/git.rb', line 38
def to_lock
out = "GIT\n"
out << " remote: #{@uri}\n"
out << " revision: #{revision}\n"
%w(ref branch tag submodules).each do |opt|
out << " #{opt}: #{options[opt]}\n" if options[opt]
end
out << " glob: #{@glob}\n" unless @glob == DEFAULT_GLOB
out << " specs:\n"
end
|
#to_s ⇒ Object
65
66
67
68
69
70
71
72
73
74
|
# File 'lib/bundler/source/git.rb', line 65
def to_s
at = if local?
path
elsif options["ref"]
shortref_for_display(options["ref"])
else
ref
end
"#{uri} (at #{at})"
end
|
#unlock! ⇒ Object
102
103
104
105
|
# File 'lib/bundler/source/git.rb', line 102
def unlock!
git_proxy.revision = nil
@unlocked = true
end
|