Class: Chef::Provider::Package::Rubygems::CurrentGemEnvironment
Constant Summary
GemEnvironment::DEFAULT_UNINSTALLER_OPTS
Instance Method Summary
collapse
#candidate_version_from_file, #dependency_installer, #find_newest_remote_version, #install, #installed_versions, #spec_from_file, #uninstall, #uninstaller, #with_correct_verbosity, #with_gem_sources
Instance Method Details
#candidate_version_from_remote(gem_dependency, *sources) ⇒ Object
258
259
260
261
262
|
# File 'lib/chef/provider/package/rubygems.rb', line 258
def candidate_version_from_remote(gem_dependency, *sources)
with_gem_sources(*sources) do
find_newest_remote_version(gem_dependency, *sources)
end
end
|
#gem_paths ⇒ Object
246
247
248
|
# File 'lib/chef/provider/package/rubygems.rb', line 246
def gem_paths
Gem.path
end
|
#gem_source_index ⇒ Object
250
251
252
|
# File 'lib/chef/provider/package/rubygems.rb', line 250
def gem_source_index
Gem.source_index
end
|
#gem_specification ⇒ Object
254
255
256
|
# File 'lib/chef/provider/package/rubygems.rb', line 254
def gem_specification
Gem::Specification
end
|