Class: Bundler::StubSpecification

Inherits:
RemoteSpecification show all
Defined in:
lib/bundler/stub_specification.rb

Constant Summary

Constants included from GemHelpers

GemHelpers::GENERICS, GemHelpers::GENERIC_CACHE

Instance Attribute Summary collapse

Attributes inherited from RemoteSpecification

#dependencies, #name, #platform, #remote, #source, #version

Stub Delegates collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from RemoteSpecification

#<=>, #__swap__, #fetch_platform, #full_name, #git_version, #initialize, #respond_to?, #sort_obj, #to_s

Methods included from MatchPlatform

#match_platform, platforms_match?

Methods included from GemHelpers

generic, generic_local_platform, local_platform, platform_specificity_match, same_deps, same_specificity, select_best_platform_match, sort_best_platform_match

Methods included from MatchMetadata

#matches_current_ruby?, #matches_current_rubygems?

Methods included from FetchMetadata

#matches_current_ruby?, #matches_current_rubygems?

Constructor Details

This class inherits a constructor from Bundler::RemoteSpecification

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Bundler::RemoteSpecification

Instance Attribute Details

#ignoredObject

Returns the value of attribute ignored.



12
13
14
# File 'lib/bundler/stub_specification.rb', line 12

def ignored
  @ignored
end

#stubObject

Returns the value of attribute stub.



12
13
14
# File 'lib/bundler/stub_specification.rb', line 12

def stub
  @stub
end

Class Method Details

.from_stub(stub) ⇒ Object



5
6
7
8
9
10
# File 'lib/bundler/stub_specification.rb', line 5

def self.from_stub(stub)
  return stub if stub.is_a?(Bundler::StubSpecification)
  spec = new(stub.name, stub.version, stub.platform, nil)
  spec.stub = stub
  spec
end

Instance Method Details

#activatedObject



47
48
49
# File 'lib/bundler/stub_specification.rb', line 47

def activated
  stub.activated
end

#activated=(activated) ⇒ Object



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

def activated=(activated)
  stub.instance_variable_set(:@activated, activated)
end

#default_gem?Boolean

Returns:

  • (Boolean)


63
64
65
# File 'lib/bundler/stub_specification.rb', line 63

def default_gem?
  stub.default_gem?
end

#extensionsObject



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

def extensions
  stub.extensions
end

#full_gem_pathObject



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

def full_gem_path
  stub.full_gem_path
end

#full_gem_path=(path) ⇒ Object



71
72
73
# File 'lib/bundler/stub_specification.rb', line 71

def full_gem_path=(path)
  stub.full_gem_path = path
end

#full_require_pathsObject



75
76
77
# File 'lib/bundler/stub_specification.rb', line 75

def full_require_paths
  stub.full_require_paths
end

#gem_build_complete_pathObject



59
60
61
# File 'lib/bundler/stub_specification.rb', line 59

def gem_build_complete_path
  stub.gem_build_complete_path
end

#load_pathsObject



79
80
81
# File 'lib/bundler/stub_specification.rb', line 79

def load_paths
  full_require_paths
end

#loaded_fromObject



83
84
85
# File 'lib/bundler/stub_specification.rb', line 83

def loaded_from
  stub.loaded_from
end

#manually_installed?Boolean

Returns:

  • (Boolean)


30
31
32
33
34
35
# File 'lib/bundler/stub_specification.rb', line 30

def manually_installed?
  # This is for manually installed gems which are gems that were fixed in place after a
  # failed installation. Once the issue was resolved, the user then manually created
  # the gem specification using the instructions provided by `gem help install`
  installed_by_version == Gem::Version.new(0)
end

#matches_for_glob(glob) ⇒ Object



87
88
89
# File 'lib/bundler/stub_specification.rb', line 87

def matches_for_glob(glob)
  stub.matches_for_glob(glob)
end

#missing_extensions?Boolean

This is defined directly to avoid having to loading the full spec

Returns:

  • (Boolean)


38
39
40
41
42
43
44
45
# File 'lib/bundler/stub_specification.rb', line 38

def missing_extensions?
  return false if default_gem?
  return false if extensions.empty?
  return false if File.exist? gem_build_complete_path
  return false if manually_installed?

  true
end

#raw_require_pathsObject



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

def raw_require_paths
  stub.raw_require_paths
end

#source=(source) ⇒ Object



14
15
16
17
18
19
20
21
22
# File 'lib/bundler/stub_specification.rb', line 14

def source=(source)
  super
  # Stub has no concept of source, which means that extension_dir may be wrong
  # This is the case for git-based gems. So, instead manually assign the extension dir
  return unless source.respond_to?(:extension_dir_name)
  unique_extension_dir = [source.extension_dir_name, File.basename(full_gem_path)].uniq.join("-")
  path = File.join(stub.extensions_dir, unique_extension_dir)
  stub.extension_dir = File.expand_path(path)
end

#to_yamlObject



24
25
26
# File 'lib/bundler/stub_specification.rb', line 24

def to_yaml
  _remote_specification.to_yaml
end