Class: Gem::Specification

Inherits:
Object
  • Object
show all
Includes:
Bundler::MatchMetadata, Bundler::MatchPlatform, YamlBackfiller
Defined in:
lib/bundler/rubygems_ext.rb,
lib/bundler/rubygems_ext.rb

Overview

On universal Rubies, resolve the “universal” arch to the real CPU arch, without changing the extension directory.

Direct Known Subclasses

Bundler::EndpointSpecification

Defined Under Namespace

Modules: YamlBackfiller

Constant Summary collapse

LATEST_RUBY_WITHOUT_PATCH_VERSIONS =
Gem::Version.new("2.1")
ORIGINAL_LOCAL_PLATFORM =
local_platform.to_s.freeze

Constants included from Bundler::GemHelpers

Bundler::GemHelpers::GENERICS, Bundler::GemHelpers::GENERIC_CACHE

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Bundler::MatchPlatform

#match_platform, platforms_match?

Methods included from Bundler::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 Bundler::MatchMetadata

#matches_current_ruby?, #matches_current_rubygems?

Methods included from YamlBackfiller

#to_yaml

Instance Attribute Details

#locationObject

Returns the value of attribute location.



36
37
38
# File 'lib/bundler/rubygems_ext.rb', line 36

def location
  @location
end

#relative_loaded_fromObject

Returns the value of attribute relative_loaded_from.



36
37
38
# File 'lib/bundler/rubygems_ext.rb', line 36

def relative_loaded_from
  @relative_loaded_from
end

#remoteObject

Returns the value of attribute remote.



36
37
38
# File 'lib/bundler/rubygems_ext.rb', line 36

def remote
  @remote
end

#sourceObject



40
41
42
# File 'lib/bundler/rubygems_ext.rb', line 40

def source
  (defined?(@source) && @source) || Gem::Source::Installed.new
end

Instance Method Details

#deleted_gem?Boolean

Returns:

  • (Boolean)


135
136
137
# File 'lib/bundler/rubygems_ext.rb', line 135

def deleted_gem?
  !default_gem? && !File.directory?(full_gem_path)
end

#extension_dirObject



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

def extension_dir
  # following instance variable is already used in original method
  # and that is the reason to prefix it with bundler_ and add rubocop exception
  @bundler_extension_dir ||= if source.respond_to?(:extension_dir_name) # rubocop:disable Naming/MemoizedInstanceVariableName
    unique_extension_dir = [source.extension_dir_name, File.basename(full_gem_path)].uniq.join("-")
    File.expand_path(File.join(extensions_dir, unique_extension_dir))
  else
    rg_extension_dir
  end
end

#extensions_dirObject



335
336
337
338
339
# File 'lib/bundler/rubygems_ext.rb', line 335

def extensions_dir
  Gem.default_ext_dir_for(base_dir) ||
    File.join(base_dir, "extensions", ORIGINAL_LOCAL_PLATFORM,
              Gem.extension_api_version)
end

#full_gem_pathObject



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

def full_gem_path
  if source.respond_to?(:root)
    Pathname.new(loaded_from).dirname.expand_path(source.root).to_s.tap {|x| x.untaint if RUBY_VERSION < "2.7" }
  else
    rg_full_gem_path
  end
end

#gem_dirObject



80
81
82
# File 'lib/bundler/rubygems_ext.rb', line 80

def gem_dir
  full_gem_path
end

#git_versionObject



105
106
107
108
# File 'lib/bundler/rubygems_ext.rb', line 105

def git_version
  return unless loaded_from && source.is_a?(Bundler::Source::Git)
  " #{source.revision[0..6]}"
end

#groupsObject



101
102
103
# File 'lib/bundler/rubygems_ext.rb', line 101

def groups
  @groups ||= []
end

#load_pathsObject



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

def load_paths
  full_require_paths
end

#loaded_fromObject



55
56
57
58
59
60
61
# File 'lib/bundler/rubygems_ext.rb', line 55

def loaded_from
  if relative_loaded_from
    source.path.join(relative_loaded_from).to_s
  else
    rg_loaded_from
  end
end

#nondevelopment_dependenciesObject



131
132
133
# File 'lib/bundler/rubygems_ext.rb', line 131

def nondevelopment_dependencies
  dependencies - development_dependencies
end

#required_ruby_version=(req) ⇒ Object



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

def required_ruby_version=(req)
  self.rg_required_ruby_version = req

  @required_ruby_version.requirements.map! do |op, v|
    if v >= LATEST_RUBY_WITHOUT_PATCH_VERSIONS && v.release.segments.size == 4
      [op == "~>" ? "=" : op, Gem::Version.new(v.segments.tap {|s| s.delete_at(3) }.join("."))]
    else
      [op, v]
    end
  end
end

#rg_extension_dirObject



67
# File 'lib/bundler/rubygems_ext.rb', line 67

alias_method :rg_extension_dir, :extension_dir

#rg_full_gem_pathObject



44
# File 'lib/bundler/rubygems_ext.rb', line 44

alias_method :rg_full_gem_path, :full_gem_path

#rg_loaded_fromObject



45
# File 'lib/bundler/rubygems_ext.rb', line 45

alias_method :rg_loaded_from,   :loaded_from

#rg_required_ruby_version=Object



87
# File 'lib/bundler/rubygems_ext.rb', line 87

alias_method :rg_required_ruby_version=, :required_ruby_version=

#to_gemfile(path = nil) ⇒ Object



110
111
112
113
114
115
116
117
118
# File 'lib/bundler/rubygems_ext.rb', line 110

def to_gemfile(path = nil)
  gemfile = String.new("source 'https://rubygems.org'\n")
  gemfile << dependencies_to_gemfile(nondevelopment_dependencies)
  unless development_dependencies.empty?
    gemfile << "\n"
    gemfile << dependencies_to_gemfile(development_dependencies, :development)
  end
  gemfile
end