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?, #include?, #unmet_deps, #version_message

Constructor Details

#initialize(options) ⇒ Path

Returns a new instance of Path.



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

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



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

def name
  File.basename(expanded_path.to_s)
end

#optionsObject (readonly)

Returns the value of attribute options.



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

def options
  @options
end

#pathObject (readonly)

Returns the value of attribute path.



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

def path
  @path
end

#versionObject

Returns the value of attribute version.



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

def version
  @version
end

Class Method Details

.from_lock(options) ⇒ Object



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

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



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

def cached!
  @allow_cached = true
end

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

Returns:

  • (Boolean)


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

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

#hashObject



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

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

#install(spec, force = false) ⇒ Object



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

def install(spec, force = false)
  Bundler.ui.info "Using #{version_message(spec)} from #{to_s}"
  generate_bin(spec, :disable_extensions)
  nil # no post-install message
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



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

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



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

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



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

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