Class: Bundler::EndpointSpecification

Inherits:
Gem::Specification show all
Includes:
MatchRemoteMetadata
Defined in:
lib/bundler/endpoint_specification.rb

Overview

used for Creating Specifications from the Gemcutter Endpoint

Constant Summary

Constants inherited from Gem::Specification

Gem::Specification::LATEST_RUBY_WITHOUT_PATCH_VERSIONS

Constants included from GemHelpers

GemHelpers::GENERICS, GemHelpers::GENERIC_CACHE

Instance Attribute Summary collapse

Attributes inherited from Gem::Specification

#relative_loaded_from

Attributes included from Gem::Specification::AllowSettingSource

#source

Instance Method Summary collapse

Methods included from MatchMetadata

#matches_current_metadata?, #matches_current_ruby?, #matches_current_rubygems?

Methods included from FetchMetadata

#matches_current_ruby?, #matches_current_rubygems?

Methods inherited from Gem::Specification

#deleted_gem?, #extension_dir, #flatten_require_paths, #full_gem_path, #gem_dir, #git_version, #groups, #loaded_from, #nondevelopment_dependencies, #required_ruby_version=, #rg_extension_dir, #rg_full_gem_path, #rg_loaded_from, #rg_required_ruby_version=, #to_gemfile, #validate_for_resolution

Methods included from Gem::Specification::RequirePathFlattener

#from_yaml

Methods included from MatchPlatform

#match_platform, platforms_match?

Methods included from GemHelpers

generic, generic_local_platform, generic_local_platform_is_ruby?, local_platform, platform_specificity_match, same_deps, same_specificity, select_all_platform_match, select_best_local_platform_match, select_best_platform_match, sort_and_filter_best_platform_match, sort_best_platform_match

Constructor Details

#initialize(name, version, platform, spec_fetcher, dependencies, metadata = nil) ⇒ EndpointSpecification

Returns a new instance of EndpointSpecification.



11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/bundler/endpoint_specification.rb', line 11

def initialize(name, version, platform, spec_fetcher, dependencies,  = nil)
  super()
  @name         = name
  @version      = Gem::Version.create version
  @platform     = Gem::Platform.new(platform)
  @spec_fetcher = spec_fetcher
  @dependencies = dependencies.map {|dep, reqs| build_dependency(dep, reqs) }

  @loaded_from          = nil
  @remote_specification = nil
  @locked_platform = nil

  ()
end

Instance Attribute Details

#checksumObject (readonly)

Returns the value of attribute checksum.



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

def checksum
  @checksum
end

#dependenciesObject

Returns the value of attribute dependencies.



9
10
11
# File 'lib/bundler/endpoint_specification.rb', line 9

def dependencies
  @dependencies
end

#locked_platformObject

Returns the value of attribute locked_platform.



9
10
11
# File 'lib/bundler/endpoint_specification.rb', line 9

def locked_platform
  @locked_platform
end

#nameObject (readonly)

Returns the value of attribute name.



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

def name
  @name
end

#platformObject (readonly)

Returns the value of attribute platform.



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

def platform
  @platform
end

#remoteObject

Returns the value of attribute remote.



9
10
11
# File 'lib/bundler/endpoint_specification.rb', line 9

def remote
  @remote
end

#versionObject (readonly)

Returns the value of attribute version.



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

def version
  @version
end

Instance Method Details

#__swap__(spec) ⇒ Object



118
119
120
121
# File 'lib/bundler/endpoint_specification.rb', line 118

def __swap__(spec)
  SharedHelpers.ensure_same_dependencies(self, dependencies, spec.dependencies)
  @remote_specification = spec
end

#_local_specificationObject



111
112
113
114
115
116
# File 'lib/bundler/endpoint_specification.rb', line 111

def _local_specification
  return unless @loaded_from && File.exist?(local_specification_path)
  eval(File.read(local_specification_path), nil, local_specification_path).tap do |spec|
    spec.loaded_from = @loaded_from
  end
end

#bindirObject

needed for bundle clean



68
69
70
71
72
73
74
75
76
# File 'lib/bundler/endpoint_specification.rb', line 68

def bindir
  if @remote_specification
    @remote_specification.bindir
  elsif _local_specification
    _local_specification.bindir
  else
    super
  end
end

#executablesObject

needed for binstubs



57
58
59
60
61
62
63
64
65
# File 'lib/bundler/endpoint_specification.rb', line 57

def executables
  if @remote_specification
    @remote_specification.executables
  elsif _local_specification
    _local_specification.executables
  else
    super
  end
end

#extensionsObject

needed for “with native extensions” during install



90
91
92
93
94
95
96
97
98
# File 'lib/bundler/endpoint_specification.rb', line 90

def extensions
  if @remote_specification
    @remote_specification.extensions
  elsif _local_specification
    _local_specification.extensions
  else
    super
  end
end

#fetch_platformObject



30
31
32
# File 'lib/bundler/endpoint_specification.rb', line 30

def fetch_platform
  @platform
end

#insecurely_materialized?Boolean

Returns:

  • (Boolean)


26
27
28
# File 'lib/bundler/endpoint_specification.rb', line 26

def insecurely_materialized?
  @locked_platform.to_s != @platform.to_s
end

#inspectObject



123
124
125
# File 'lib/bundler/endpoint_specification.rb', line 123

def inspect
  "#<#{self.class} @name=\"#{name}\" (#{full_name.delete_prefix("#{name}-")})>"
end

#load_pathsObject

needed for inline



47
48
49
50
51
52
53
54
# File 'lib/bundler/endpoint_specification.rb', line 47

def load_paths
  # remote specs aren't installed, and can't have load_paths
  if _local_specification
    _local_specification.load_paths
  else
    super
  end
end

#metadataObject

needed for ‘bundle fund`



101
102
103
104
105
106
107
108
109
# File 'lib/bundler/endpoint_specification.rb', line 101

def 
  if @remote_specification
    @remote_specification.
  elsif _local_specification
    _local_specification.
  else
    super
  end
end

#post_install_messageObject

needed for post_install_messages during install



79
80
81
82
83
84
85
86
87
# File 'lib/bundler/endpoint_specification.rb', line 79

def post_install_message
  if @remote_specification
    @remote_specification.post_install_message
  elsif _local_specification
    _local_specification.post_install_message
  else
    super
  end
end

#require_pathsObject

needed for standalone, load required_paths from local gemspec after the gem is installed



36
37
38
39
40
41
42
43
44
# File 'lib/bundler/endpoint_specification.rb', line 36

def require_paths
  if @remote_specification
    @remote_specification.require_paths
  elsif _local_specification
    _local_specification.require_paths
  else
    super
  end
end