Class: Gem::Specification

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

Direct Known Subclasses

Bundler::EndpointSpecification

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, platform_specificity_match, select_best_platform_match

Instance Attribute Details

#locationObject

Returns the value of attribute location.



15
16
17
# File 'lib/bundler/rubygems_ext.rb', line 15

def location
  @location
end

#relative_loaded_fromObject

Returns the value of attribute relative_loaded_from.



15
16
17
# File 'lib/bundler/rubygems_ext.rb', line 15

def relative_loaded_from
  @relative_loaded_from
end

#remoteObject

Returns the value of attribute remote.



15
16
17
# File 'lib/bundler/rubygems_ext.rb', line 15

def remote
  @remote
end

#sourceObject



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

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

Instance Method Details

#extension_dirObject



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

def extension_dir
  @bundler_extension_dir ||= if source.respond_to?(:extension_dir_name)
    File.expand_path(File.join(extensions_dir, source.extension_dir_name))
  else
    rg_extension_dir
  end
end

#full_gem_pathObject



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

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



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

def gem_dir
  full_gem_path
end

#git_versionObject



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

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

#groupsObject



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

def groups
  @groups ||= []
end

#load_pathsObject



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

def load_paths
  full_require_paths
end

#loaded_fromObject



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

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

#nondevelopment_dependenciesObject



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

def nondevelopment_dependencies
  dependencies - development_dependencies
end

#rg_extension_dirObject



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

alias_method :rg_extension_dir, :extension_dir

#rg_full_gem_pathObject



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

alias_method :rg_full_gem_path, :full_gem_path

#rg_loaded_fromObject



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

alias_method :rg_loaded_from,   :loaded_from

#to_gemfile(path = nil) ⇒ Object



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

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