Class: Bundler::Source::Path

Inherits:
Bundler::Source show all
Defined in:
lib/bundler/source/path.rb,
lib/bundler/source/path/installer.rb

Direct Known Subclasses

Git

Defined Under Namespace

Classes: Installer

Constant Summary collapse

DEFAULT_GLOB =
"{,*,*/*}.gemspec"

Instance Attribute Summary collapse

Attributes inherited from Bundler::Source

#dependency_names

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Bundler::Source

#can_lock?, mirror_for, #unmet_deps, #version_message

Constructor Details

#initialize(options) ⇒ Path

Returns a new instance of Path.



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# File 'lib/bundler/source/path.rb', line 13

def initialize(options)
  @options = options
  @glob = options["glob"] || DEFAULT_GLOB

  @allow_cached = false
  @allow_remote = false

  if options["path"]
    @path = Pathname.new(options["path"])
    @path = expand(@path) unless @path.relative?
  end

  @name    = options["name"]
  @version = options["version"]

  # Stores the original path. If at any point we move to the
  # cached directory, we still have the original path to copy from.
  @original_path = @path
end

Instance Attribute Details

#nameObject



68
69
70
# File 'lib/bundler/source/path.rb', line 68

def name
  File.basename(expanded_path.to_s)
end

#optionsObject (readonly)

Returns the value of attribute options.



7
8
9
# File 'lib/bundler/source/path.rb', line 7

def options
  @options
end

#pathObject (readonly)

Returns the value of attribute path.



7
8
9
# File 'lib/bundler/source/path.rb', line 7

def path
  @path
end

#versionObject

Returns the value of attribute version.



9
10
11
# File 'lib/bundler/source/path.rb', line 9

def version
  @version
end

Class Method Details

.from_lock(options) ⇒ Object



41
42
43
# File 'lib/bundler/source/path.rb', line 41

def self.from_lock(options)
  new(options.merge("path" => options.delete("remote")))
end

Instance Method Details

#app_cache_dirnameObject



103
104
105
# File 'lib/bundler/source/path.rb', line 103

def app_cache_dirname
  name
end

#cache(spec, custom_path = nil) ⇒ Object



77
78
79
80
81
82
83
84
85
86
87
88
89
# File 'lib/bundler/source/path.rb', line 77

def cache(spec, custom_path = nil)
  app_cache_path = app_cache_path(custom_path)
  return unless Bundler.settings[:cache_all]
  return if expand(@original_path).to_s.index(Bundler.root.to_s) == 0

  unless @original_path.exist?
    raise GemNotFound, "Can't cache gem #{version_message(spec)} because #{to_s} 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



37
38
39
# File 'lib/bundler/source/path.rb', line 37

def cached!
  @allow_cached = true
end

#eql?(o) ⇒ Boolean Also known as: ==

Returns:

  • (Boolean)


60
61
62
63
64
# File 'lib/bundler/source/path.rb', line 60

def eql?(o)
  o.instance_of?(Path) &&
  expanded_path == expand(o.path) &&
  version == o.version
end

#hashObject



56
57
58
# File 'lib/bundler/source/path.rb', line 56

def hash
  [self.class, expanded_path, version].hash
end

#install(spec) ⇒ Object



72
73
74
75
# File 'lib/bundler/source/path.rb', line 72

def install(spec)
  generate_bin(spec, :disable_extensions)
  ["Using #{version_message(spec)} from #{to_s}", nil]
end

#local_specsObject



91
92
93
# File 'lib/bundler/source/path.rb', line 91

def local_specs(*)
  @local_specs ||= load_spec_files
end

#remote!Object



33
34
35
# File 'lib/bundler/source/path.rb', line 33

def remote!
  @allow_remote = true
end

#specsObject



95
96
97
98
99
100
101
# File 'lib/bundler/source/path.rb', line 95

def specs
  if has_app_cache?
    @path = app_cache_path
    @expanded_path = nil # Invalidate
  end
  local_specs
end

#to_lockObject



45
46
47
48
49
50
# File 'lib/bundler/source/path.rb', line 45

def to_lock
  out = "PATH\n"
  out << "  remote: #{relative_path}\n"
  out << "  glob: #{@glob}\n" unless @glob == DEFAULT_GLOB
  out << "  specs:\n"
end

#to_sObject



52
53
54
# File 'lib/bundler/source/path.rb', line 52

def to_s
  "source at #{@path}"
end