Class: Gem::Source::Local

Inherits:
Gem::Source show all
Defined in:
lib/rubygems/source/local.rb

Overview

The local source finds gems in the current directory for fulfilling dependencies.

Constant Summary

Constants inherited from Gem::Source

FILES

Instance Attribute Summary

Attributes inherited from Gem::Source

#uri

Instance Method Summary collapse

Methods inherited from Gem::Source

#==, #cache_dir, #dependency_resolver_set, #hash, #typo_squatting?, #update_cache?

Methods included from Text

#clean_text, #format_text, #levenshtein_distance, #min3, #truncate_text

Constructor Details

#initializeLocal

:nodoc:



8
9
10
11
12
13
# File 'lib/rubygems/source/local.rb', line 8

def initialize # :nodoc:
  @specs   = nil
  @api_uri = nil
  @uri     = nil
  @load_specs_names = {}
end

Instance Method Details

#<=>(other) ⇒ Object

Local sorts before Gem::Source and after Gem::Source::Installed



18
19
20
21
22
23
24
25
26
27
28
# File 'lib/rubygems/source/local.rb', line 18

def <=>(other)
  case other
  when Gem::Source::Installed,
       Gem::Source::Lock then
    -1
  when Gem::Source::Local then
    0
  when Gem::Source then
    1
  end
end

#download(spec, cache_dir = nil) ⇒ Object

:nodoc:

Raises:



109
110
111
112
113
114
115
116
117
# File 'lib/rubygems/source/local.rb', line 109

def download(spec, cache_dir = nil) # :nodoc:
  load_specs :complete

  @specs.each do |_name, data|
    return data[0] if data[1].spec == spec
  end

  raise Gem::Exception, "Unable to find file for '#{spec.full_name}'"
end

#fetch_spec(name) ⇒ Object

:nodoc:



99
100
101
102
103
104
105
106
107
# File 'lib/rubygems/source/local.rb', line 99

def fetch_spec(name) # :nodoc:
  load_specs :complete

  if data = @specs[name]
    data.last.spec
  else
    raise Gem::Exception, "Unable to find spec for #{name.inspect}"
  end
end

#find_gem(gem_name, version = Gem::Requirement.default, prerelease = false) ⇒ Object

:nodoc:



78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# File 'lib/rubygems/source/local.rb', line 78

def find_gem(gem_name, version = Gem::Requirement.default, prerelease = false) # :nodoc:
  load_specs :complete

  found = []

  @specs.each do |n, data|
    next unless n.name == gem_name
    s = data[1].spec

    if version.satisfied_by?(s.version)
      if prerelease
        found << s
      elsif !s.version.prerelease? || version.prerelease?
        found << s
      end
    end
  end

  found.max_by(&:version)
end

#inspectObject

:nodoc:



30
31
32
33
# File 'lib/rubygems/source/local.rb', line 30

def inspect # :nodoc:
  keys = @specs ? @specs.keys.sort : "NOT LOADED"
  format("#<%s specs: %p>", self.class, keys)
end

#load_specs(type) ⇒ Object

:nodoc:



35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# File 'lib/rubygems/source/local.rb', line 35

def load_specs(type) # :nodoc:
  @load_specs_names[type] ||= begin
    names = []

    @specs = {}

    Dir["*.gem"].each do |file|
      pkg = Gem::Package.new(file)
      spec = pkg.spec
    rescue SystemCallError, Gem::Package::FormatError
      # ignore
    else
      tup = spec.name_tuple
      @specs[tup] = [File.expand_path(file), pkg]

      case type
      when :released
        unless pkg.spec.version.prerelease?
          names << pkg.spec.name_tuple
        end
      when :prerelease
        if pkg.spec.version.prerelease?
          names << pkg.spec.name_tuple
        end
      when :latest
        tup = pkg.spec.name_tuple

        cur = names.find {|x| x.name == tup.name }
        if !cur
          names << tup
        elsif cur.version < tup.version
          names.delete cur
          names << tup
        end
      else
        names << pkg.spec.name_tuple
      end
    end

    names
  end
end

#pretty_print(q) ⇒ Object

:nodoc:



119
120
121
122
123
124
125
126
# File 'lib/rubygems/source/local.rb', line 119

def pretty_print(q) # :nodoc:
  q.group 2, "[Local gems:", "]" do
    q.breakable
    q.seplist @specs.keys do |v|
      q.text v.full_name
    end
  end
end