Class: Gem::Specification

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

Direct Known Subclasses

Bundler::EndpointSpecification

Defined Under Namespace

Modules: YamlBackfiller

Constant Summary

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

Methods included from YamlBackfiller

#to_yaml

Instance Attribute Details

#locationObject

Returns the value of attribute location.



13
14
15
# File 'lib/bundler/rubygems_ext.rb', line 13

def location
  @location
end

#relative_loaded_fromObject

Returns the value of attribute relative_loaded_from.



13
14
15
# File 'lib/bundler/rubygems_ext.rb', line 13

def relative_loaded_from
  @relative_loaded_from
end

#remoteObject

Returns the value of attribute remote.



13
14
15
# File 'lib/bundler/rubygems_ext.rb', line 13

def remote
  @remote
end

#sourceObject



17
18
19
# File 'lib/bundler/rubygems_ext.rb', line 17

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

Instance Method Details

#deleted_gem?Boolean

Returns:

  • (Boolean)


97
98
99
# File 'lib/bundler/rubygems_ext.rb', line 97

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

#extension_dirObject



49
50
51
52
53
54
55
56
# File 'lib/bundler/rubygems_ext.rb', line 49

def extension_dir
  @bundler_extension_dir ||= if source.respond_to?(:extension_dir_name)
    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

#full_gem_pathObject



24
25
26
27
28
29
30
31
32
33
34
# File 'lib/bundler/rubygems_ext.rb', line 24

def full_gem_path
  # this cannot check source.is_a?(Bundler::Plugin::API::Source)
  # because that _could_ trip the autoload, and if there are unresolved
  # gems at that time, this method could be called inside another require,
  # thus raising with that constant being undefined. Better to check a method
  if source.respond_to?(:path) || (source.respond_to?(:bundler_plugin_api_source?) && source.bundler_plugin_api_source?)
    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



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

def gem_dir
  full_gem_path
end

#git_versionObject



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

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

#groupsObject



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

def groups
  @groups ||= []
end

#load_pathsObject



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

def load_paths
  full_require_paths
end

#loaded_fromObject



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

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

#nondevelopment_dependenciesObject



93
94
95
# File 'lib/bundler/rubygems_ext.rb', line 93

def nondevelopment_dependencies
  dependencies - development_dependencies
end

#rg_extension_dirObject



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

alias_method :rg_extension_dir, :extension_dir

#rg_full_gem_pathObject



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

alias_method :rg_full_gem_path, :full_gem_path

#rg_loaded_fromObject



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

alias_method :rg_loaded_from,   :loaded_from

#to_gemfile(path = nil) ⇒ Object



72
73
74
75
76
77
78
79
80
# File 'lib/bundler/rubygems_ext.rb', line 72

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