Class: Gem::Specification
- Inherits:
-
Object
- Object
- Gem::Specification
show all
- Includes:
- Bundler::MatchPlatform
- Defined in:
- lib/bundler/rubygems_ext.rb,
lib/bundler/rubygems_ext.rb
Constant Summary
Bundler::GemHelpers::GENERICS, Bundler::GemHelpers::GENERIC_CACHE
Instance Attribute Summary collapse
Instance Method Summary
collapse
#match_platform, platforms_match?
generic, generic_local_platform, platform_specificity_match, select_best_platform_match
Instance Attribute Details
#location ⇒ Object
Returns the value of attribute location.
15
16
17
|
# File 'lib/bundler/rubygems_ext.rb', line 15
def location
@location
end
|
#relative_loaded_from ⇒ Object
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
|
#remote ⇒ Object
Returns the value of attribute remote.
15
16
17
|
# File 'lib/bundler/rubygems_ext.rb', line 15
def remote
@remote
end
|
#source ⇒ Object
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_dir ⇒ Object
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_path ⇒ Object
26
27
28
29
30
31
32
33
34
35
36
|
# File 'lib/bundler/rubygems_ext.rb', line 26
def full_gem_path
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_dir ⇒ Object
62
63
64
|
# File 'lib/bundler/rubygems_ext.rb', line 62
def gem_dir
full_gem_path
end
|
#git_version ⇒ Object
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
|
#groups ⇒ Object
66
67
68
|
# File 'lib/bundler/rubygems_ext.rb', line 66
def groups
@groups ||= []
end
|
#load_paths ⇒ Object
46
47
48
|
# File 'lib/bundler/rubygems_ext.rb', line 46
def load_paths
full_require_paths
end
|
#loaded_from ⇒ Object
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_dependencies ⇒ Object
85
86
87
|
# File 'lib/bundler/rubygems_ext.rb', line 85
def nondevelopment_dependencies
dependencies - development_dependencies
end
|
#rg_extension_dir ⇒ Object
51
|
# File 'lib/bundler/rubygems_ext.rb', line 51
alias_method :rg_extension_dir, :extension_dir
|
#rg_full_gem_path ⇒ Object
23
|
# File 'lib/bundler/rubygems_ext.rb', line 23
alias_method :rg_full_gem_path, :full_gem_path
|
#rg_loaded_from ⇒ Object
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
|