Parent

Bundler::Source::Path

Constants

DEFAULT_GLOB

Attributes

name[W]

Kind of a hack, but needed for the lock file parser

options[R]
path[R]
version[RW]

Public Class Methods

from_lock(options) click to toggle source
# File lib/bundler/source.rb, line 298
def self.from_lock(options)
  new(options.merge("path" => options.delete("remote")))
end
new(options) click to toggle source
# File lib/bundler/source.rb, line 274
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 = @path.expand_path(Bundler.root) unless @path.relative?
  end

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

Public Instance Methods

==(o) click to toggle source
Alias for: eql?
cache(spec) click to toggle source
# File lib/bundler/source.rb, line 408
def cache(spec)
  unless path.expand_path(Bundler.root).to_s.index(Bundler.root.to_s) == 0
    Bundler.ui.warn "  * #{spec.name} at `#{path}` will not be cached."
  end
end
cached!() click to toggle source
# File lib/bundler/source.rb, line 294
def cached!
  @allow_cached = true
end
eql?(o) click to toggle source
# File lib/bundler/source.rb, line 317
def eql?(o)
  o.instance_of?(Path) &&
  path.expand_path(Bundler.root) == o.path.expand_path(Bundler.root) &&
  name == o.name &&
  version == o.version
end
Also aliased as: ==
hash() click to toggle source
# File lib/bundler/source.rb, line 313
def hash
  self.class.hash
end
install(spec) click to toggle source
# File lib/bundler/source.rb, line 396
def install(spec)
  Bundler.ui.info "Using #{spec.name} (#{spec.version}) from #{to_s} "
  # Let's be honest, when we're working from a path, we can't
  # really expect native extensions to work because the whole point
  # is to just be able to modify what's in that path and go. So, let's
  # not put ourselves through the pain of actually trying to generate
  # the full gem.
  Installer.new(spec).generate_bin
end
load_spec_files() click to toggle source
# File lib/bundler/source.rb, line 330
def load_spec_files
  index = Index.new

  expanded_path = path.expand_path(Bundler.root)

  if File.directory?(expanded_path)
    Dir["#{expanded_path}/#{@glob}"].each do |file|
      spec = Bundler.load_gemspec(file)
      if spec
        spec.loaded_from = file.to_s
        spec.source = self
        index << spec
      end
    end

    if index.empty? && @name && @version
      index << Gem::Specification.new do |s|
        s.name     = @name
        s.source   = self
        s.version  = Gem::Version.new(@version)
        s.platform = Gem::Platform::RUBY
        s.summary  = "Fake gemspec for #{@name}"
        s.relative_loaded_from = "#{@name}.gemspec"
        if expanded_path.join("bin").exist?
          binaries = expanded_path.join("bin").children.map{|c| c.basename.to_s }
          s.executables = binaries
        end
      end
    end
  else
    raise PathError, "The path `#{expanded_path}` does not exist."
  end

  index
end
local_specs() click to toggle source
# File lib/bundler/source.rb, line 366
def local_specs
  @local_specs ||= load_spec_files
end
Also aliased as: specs
name() click to toggle source
# File lib/bundler/source.rb, line 326
def name
  File.basename(@path.to_s)
end
remote!() click to toggle source
# File lib/bundler/source.rb, line 290
def remote!
  @allow_remote = true
end
specs() click to toggle source
Alias for: local_specs
to_lock() click to toggle source
# File lib/bundler/source.rb, line 302
def to_lock
  out = "PATH\n"
  out << "  remote: #{relative_path}\n"
  out << "  glob: #{@glob}\n" unless @glob == DEFAULT_GLOB
  out << "  specs:\n"
end
to_s() click to toggle source
# File lib/bundler/source.rb, line 309
def to_s
  "source at #{@path}"
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.