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::CURRENT_SPECIFICATION_VERSION, Gem::Specification::DateLike, Gem::Specification::DateTimeFormat, Gem::Specification::INITIALIZE_CODE_FOR_DEFAULTS, Gem::Specification::LATEST_RUBY_WITHOUT_PATCH_VERSIONS, Gem::Specification::MARSHAL_FIELDS, Gem::Specification::NONEXISTENT_SPECIFICATION_VERSION, Gem::Specification::NOT_FOUND, Gem::Specification::REMOVED_METHODS, Gem::Specification::SPECIFICATION_VERSION_HISTORY, Gem::Specification::TODAY, Gem::Specification::VALID_NAME_PATTERN

Constants included from GemHelpers

GemHelpers::GENERICS, GemHelpers::GENERIC_CACHE

Constants inherited from Gem::BasicSpecification

Gem::BasicSpecification::ORIGINAL_LOCAL_PLATFORM

Instance Attribute Summary collapse

Attributes inherited from Gem::Specification

#activated, #autorequire, #cert_chain, #default_executable, #description, #email, #homepage, #location, #metadata, #original_platform, #relative_loaded_from, #required_ruby_version, #required_rubygems_version, #rubygems_version, #signing_key, #specification_version, #summary

Attributes inherited from Gem::BasicSpecification

#base_dir, #extension_dir, #full_gem_path, #ignored, #loaded_from

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

#<=>, #==, _all, #_dump, _latest_specs, _load, _resort!, #abbreviate, #activate, #activate_dependencies, #add_bindir, #add_development_dependency, #add_runtime_dependency, #add_self_to_load_path, add_spec, all, all=, all_names, array_attributes, attribute_names, #author, #author=, #authors, #authors=, #base_dir, #bin_dir, #bin_file, #build_args, #build_extensions, #build_info_dir, #build_info_file, #cache_dir, #cache_file, #conficts_when_loaded_with?, #conflicts, #date, #date=, default_stubs, #default_value, #deleted_gem?, #dependent_gems, #dependent_specs, #development_dependencies, dirs, dirs=, #doc_dir, each, each_gemspec, each_spec, #encode_with, #eql?, #executable, #executable=, #executables=, #extension_dir, #extensions=, #extensions_dir, #extra_rdoc_files, #extra_rdoc_files=, #file_name, #files, #files=, find_active_stub_by_path, find_all_by_full_name, find_all_by_name, find_by_full_name, find_by_name, find_by_path, find_in_unresolved, find_in_unresolved_tree, find_inactive_by_path, #flatten_require_paths, #for_cache, from_yaml, #full_gem_path, #full_name, #gem_dir, #gems_dir, #git_version, #groups, #has_conflicts?, #has_rdoc, #has_rdoc=, #has_unit_tests?, #hash, #init_with, #initialize_copy, #inspect, #installed_by_version, #installed_by_version=, #internal_init, #keep_only_files_and_directories, latest_spec_for, latest_specs, #lib_files, #license, #license=, #licenses, #licenses=, load, load_defaults, #loaded_from, #mark_version, #method_missing, #missing_extensions?, #name_tuple, non_nil_attributes, #nondevelopment_dependencies, #normalize, normalize_yaml_input, #original_name, outdated, outdated_and_latest_version, #platform=, #pretty_print, #raise_if_conflicts, #raw_require_paths, #rdoc_options, #rdoc_options=, remove_spec, #removed_method_calls, #require_path, #require_path=, #require_paths=, required_attribute?, required_attributes, #requirements, #requirements=, reset, #reset_nil_attributes_to_default, #respond_to_missing?, #rg_extension_dir, #rg_full_gem_path, #rg_loaded_from, #rg_required_ruby_version=, #ri_dir, #runtime_dependencies, #sanitize, #sanitize_string, #satisfies_requirement?, #sort_obj, #spec_dir, #spec_file, #spec_name, #stubbed?, stubs, stubs_for, stubs_for_pattern, #test_file, #test_file=, #test_files, #test_files=, #to_gemfile, #to_ruby, #to_ruby_for_cache, #to_s, #to_spec, #to_yaml, #traverse, unresolved_deps, #validate, #validate_dependencies, #validate_metadata, #validate_permissions, #yaml_initialize

Methods included from Gem::Deprecate

#deprecate, next_rubygems_major_version, rubygems_deprecate, rubygems_deprecate_command, skip, skip=, skip_during

Methods included from Enumerable

#to_set

Methods included from MatchPlatform

#match_platform, platforms_match?

Methods included from GemHelpers

force_ruby_platform, generic, generic_local_platform, generic_local_platform_is_ruby?, local_platform, platform_specificity_match, same_deps, same_specificity, select_best_platform_match, sort_best_platform_match

Methods inherited from Gem::BasicSpecification

#activated?, #contains_requirable_file?, #datadir, #default_gem?, default_specifications_dir, #extensions_dir, #full_name, #full_require_paths, #gem_build_complete_path, #gem_dir, #gems_dir, #internal_init, #lib_dirs_glob, #matches_for_glob, #plugins, #raw_require_paths, #source_paths, #stubbed?, #this, #to_fullpath, #to_spec

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

  ()
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Gem::Specification

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

#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

#sourceObject

Returns the value of attribute source.



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

def source
  @source
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



102
103
104
105
# File 'lib/bundler/endpoint_specification.rb', line 102

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

#_local_specificationObject



95
96
97
98
99
100
# File 'lib/bundler/endpoint_specification.rb', line 95

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



63
64
65
66
67
68
69
70
71
# File 'lib/bundler/endpoint_specification.rb', line 63

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

#executablesObject

needed for binstubs



52
53
54
55
56
57
58
59
60
# File 'lib/bundler/endpoint_specification.rb', line 52

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



85
86
87
88
89
90
91
92
93
# File 'lib/bundler/endpoint_specification.rb', line 85

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

#fetch_platformObject



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

def fetch_platform
  @platform
end

#load_pathsObject

needed for inline



42
43
44
45
46
47
48
49
# File 'lib/bundler/endpoint_specification.rb', line 42

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

#post_install_messageObject

needed for post_install_messages during install



74
75
76
77
78
79
80
81
82
# File 'lib/bundler/endpoint_specification.rb', line 74

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



31
32
33
34
35
36
37
38
39
# File 'lib/bundler/endpoint_specification.rb', line 31

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