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".freeze

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.



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

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

  @allow_cached = false
  @allow_remote = false

  @root_path = options["root_path"] || Bundler.root

  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



70
71
72
# File 'lib/bundler/source/path.rb', line 70

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

#root_pathObject (readonly)

Returns the value of attribute root_path.



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

def root_path
  @root_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



43
44
45
# File 'lib/bundler/source/path.rb', line 43

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

Instance Method Details

#app_cache_dirnameObject



106
107
108
# File 'lib/bundler/source/path.rb', line 106

def app_cache_dirname
  name
end

#cache(spec, custom_path = nil) ⇒ Object



80
81
82
83
84
85
86
87
88
89
90
91
92
# File 'lib/bundler/source/path.rb', line 80

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(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



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

def cached!
  @allow_cached = true
end

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

Returns:

  • (Boolean)


62
63
64
65
66
# File 'lib/bundler/source/path.rb', line 62

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

#hashObject



58
59
60
# File 'lib/bundler/source/path.rb', line 58

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

#install(spec, force = false) ⇒ Object



74
75
76
77
78
# File 'lib/bundler/source/path.rb', line 74

def install(spec, force = false)
  Bundler.ui.info "Using #{version_message(spec)} from #{self}"
  generate_bin(spec, :disable_extensions)
  nil # no post-install message
end

#local_specsObject



94
95
96
# File 'lib/bundler/source/path.rb', line 94

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

#remote!Object



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

def remote!
  @allow_remote = true
end

#specsObject



98
99
100
101
102
103
104
# File 'lib/bundler/source/path.rb', line 98

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

#to_lockObject



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

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

#to_sObject



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

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