Class: Gem::Specification
Constant Summary
collapse
- LATEST_RUBY_WITHOUT_PATCH_VERSIONS =
Gem::Version.new("2.1")
Bundler::GemHelpers::GENERICS, Bundler::GemHelpers::GENERIC_CACHE
Instance Attribute Summary collapse
Instance Method Summary
collapse
#match_platform, platforms_match?
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
#matches_current_metadata?, #matches_current_ruby?, #matches_current_rubygems?
Instance Attribute Details
#location ⇒ Object
Returns the value of attribute location.
66
67
68
|
# File 'lib/bundler/rubygems_ext.rb', line 66
def location
@location
end
|
#relative_loaded_from ⇒ Object
Returns the value of attribute relative_loaded_from.
66
67
68
|
# File 'lib/bundler/rubygems_ext.rb', line 66
def relative_loaded_from
@relative_loaded_from
end
|
#remote ⇒ Object
Returns the value of attribute remote.
66
67
68
|
# File 'lib/bundler/rubygems_ext.rb', line 66
def remote
@remote
end
|
#source ⇒ Object
70
71
72
|
# File 'lib/bundler/rubygems_ext.rb', line 70
def source
(defined?(@source) && @source) || Gem::Source::Installed.new
end
|
Instance Method Details
#deleted_gem? ⇒ Boolean
154
155
156
|
# File 'lib/bundler/rubygems_ext.rb', line 154
def deleted_gem?
!default_gem? && !File.directory?(full_gem_path)
end
|
#extension_dir ⇒ Object
98
99
100
101
102
103
104
105
106
107
|
# File 'lib/bundler/rubygems_ext.rb', line 98
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_path ⇒ Object
77
78
79
80
81
82
83
|
# File 'lib/bundler/rubygems_ext.rb', line 77
def full_gem_path
if source.respond_to?(:root)
File.expand_path(File.dirname(loaded_from), source.root)
else
rg_full_gem_path
end
end
|
#gem_dir ⇒ Object
110
111
112
|
# File 'lib/bundler/rubygems_ext.rb', line 110
def gem_dir
full_gem_path
end
|
#git_version ⇒ Object
135
136
137
138
|
# File 'lib/bundler/rubygems_ext.rb', line 135
def git_version
return unless loaded_from && source.is_a?(Bundler::Source::Git)
" #{source.revision[0..6]}"
end
|
#groups ⇒ Object
131
132
133
|
# File 'lib/bundler/rubygems_ext.rb', line 131
def groups
@groups ||= []
end
|
#load_paths ⇒ Object
93
94
95
|
# File 'lib/bundler/rubygems_ext.rb', line 93
def load_paths
full_require_paths
end
|
#loaded_from ⇒ Object
85
86
87
88
89
90
91
|
# File 'lib/bundler/rubygems_ext.rb', line 85
def loaded_from
if relative_loaded_from
source.path.join(relative_loaded_from).to_s
else
rg_loaded_from
end
end
|
#nondevelopment_dependencies ⇒ Object
150
151
152
|
# File 'lib/bundler/rubygems_ext.rb', line 150
def nondevelopment_dependencies
dependencies - development_dependencies
end
|
#required_ruby_version=(req) ⇒ Object
118
119
120
121
122
123
124
125
126
127
128
|
# File 'lib/bundler/rubygems_ext.rb', line 118
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_dir ⇒ Object
97
|
# File 'lib/bundler/rubygems_ext.rb', line 97
alias_method :rg_extension_dir, :extension_dir
|
#rg_full_gem_path ⇒ Object
74
|
# File 'lib/bundler/rubygems_ext.rb', line 74
alias_method :rg_full_gem_path, :full_gem_path
|
#rg_loaded_from ⇒ Object
75
|
# File 'lib/bundler/rubygems_ext.rb', line 75
alias_method :rg_loaded_from, :loaded_from
|
#rg_required_ruby_version= ⇒ Object
117
|
# File 'lib/bundler/rubygems_ext.rb', line 117
alias_method :rg_required_ruby_version=, :required_ruby_version=
|
#to_gemfile(path = nil) ⇒ Object
140
141
142
143
144
145
146
147
148
|
# File 'lib/bundler/rubygems_ext.rb', line 140
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
|
#validate_for_resolution ⇒ Object