Class: Chef::Provider::Package::Rubygems::AlternateGemEnvironment

Inherits:
GemEnvironment show all
Includes:
Mixin::ShellOut
Defined in:
lib/chef/provider/package/rubygems.rb

Constant Summary collapse

JRUBY_PLATFORM =
/(:?universal|x86_64|x86)\-java\-[0-9\.]+/

Constants included from Mixin::ShellOut

Mixin::ShellOut::DEPRECATED_OPTIONS

Constants inherited from GemEnvironment

GemEnvironment::DEFAULT_UNINSTALLER_OPTS

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Mixin::ShellOut

#run_command_compatible_options, #shell_out, #shell_out!

Methods inherited from GemEnvironment

#candidate_version_from_file, #dependency_installer, #find_newest_remote_version, #install, #installed_versions, #uninstall, #uninstaller, #with_correct_verbosity, #with_gem_sources

Constructor Details

#initialize(gem_binary_location) ⇒ AlternateGemEnvironment

Returns a new instance of AlternateGemEnvironment.



248
249
250
# File 'lib/chef/provider/package/rubygems.rb', line 248

def initialize(gem_binary_location)
  @gem_binary_location = gem_binary_location
end

Instance Attribute Details

#gem_binary_locationObject (readonly)

Returns the value of attribute gem_binary_location.



246
247
248
# File 'lib/chef/provider/package/rubygems.rb', line 246

def gem_binary_location
  @gem_binary_location
end

Class Method Details

.gempath_cacheObject



236
237
238
# File 'lib/chef/provider/package/rubygems.rb', line 236

def self.gempath_cache
  @gempath_cache ||= {}
end

.platform_cacheObject



240
241
242
# File 'lib/chef/provider/package/rubygems.rb', line 240

def self.platform_cache
  @platform_cache ||= {}
end

Instance Method Details

#candidate_version_from_remote(gem_dependency, *sources) ⇒ Object



313
314
315
316
317
318
319
# File 'lib/chef/provider/package/rubygems.rb', line 313

def candidate_version_from_remote(gem_dependency, *sources)
  with_gem_sources(*sources) do
    with_gem_platforms(*gem_platforms) do
      find_newest_remote_version(gem_dependency, *sources)
    end
  end
end

#gem_pathsObject



252
253
254
255
256
257
258
259
260
261
262
# File 'lib/chef/provider/package/rubygems.rb', line 252

def gem_paths
  if self.class.gempath_cache.key?(@gem_binary_location)
    self.class.gempath_cache[@gem_binary_location]
  else
    # shellout! is a fork/exec which won't work on windows
    shell_style_paths = shell_out!("#{@gem_binary_location} env gempath").stdout
    # on windows, the path separator is (usually? always?) semicolon
    paths = shell_style_paths.split(::File::PATH_SEPARATOR).map { |path| path.strip }
    self.class.gempath_cache[@gem_binary_location] = paths
  end
end

#gem_platformsObject

Attempt to detect the correct platform settings for the target gem environment.

In practice, this only makes a difference if different versions are available depending on platform, and only if the target gem environment has a radically different platform (i.e., jruby), so we just try to detect jruby and fall back to the current platforms (Gem.platforms) if we don’t detect it.

Returns

String|Gem::Platform

returns an array of Gem::Platform-compatible

objects, i.e., Strings that are valid for Gem::Platform or actual Gem::Platform objects.



291
292
293
294
295
296
297
298
299
300
301
302
# File 'lib/chef/provider/package/rubygems.rb', line 291

def gem_platforms
  if self.class.platform_cache.key?(@gem_binary_location)
    self.class.platform_cache[@gem_binary_location]
  else
    gem_environment = shell_out!("#{@gem_binary_location} env").stdout
    if jruby = gem_environment[JRUBY_PLATFORM]
      self.class.platform_cache[@gem_binary_location] = ['ruby', Gem::Platform.new(jruby)]
    else
      self.class.platform_cache[@gem_binary_location] = Gem.platforms
    end
  end
end

#gem_source_indexObject



264
265
266
# File 'lib/chef/provider/package/rubygems.rb', line 264

def gem_source_index
  @source_index ||= Gem::SourceIndex.from_gems_in(*gem_paths.map { |p| p + '/specifications' })
end

#gem_specificationObject



268
269
270
271
272
273
274
275
# File 'lib/chef/provider/package/rubygems.rb', line 268

def gem_specification
  # Only once, dirs calls a reset
  unless @specification
    Gem::Specification.dirs = gem_paths
    @specification = Gem::Specification
  end
  @specification
end

#with_gem_platforms(*alt_gem_platforms) ⇒ Object



304
305
306
307
308
309
310
311
# File 'lib/chef/provider/package/rubygems.rb', line 304

def with_gem_platforms(*alt_gem_platforms)
  alt_gem_platforms.flatten!
  original_gem_platforms = Gem.platforms
  Gem.platforms = alt_gem_platforms
  yield
ensure
  Gem.platforms = original_gem_platforms
end