Class: Gem::PlatformMismatch

Inherits:
ErrorReason show all
Defined in:
lib/rubygems/errors.rb

Overview

Generated when trying to lookup a gem to indicate that the gem was found, but that it isn’t usable on the current platform.

fetch and install read these and report them to the user to aid in figuring out why a gem couldn’t be installed.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, version) ⇒ PlatformMismatch

Returns a new instance of PlatformMismatch.



44
45
46
47
48
# File 'lib/rubygems/errors.rb', line 44

def initialize(name, version)
  @name = name
  @version = version
  @platforms = []
end

Instance Attribute Details

#nameObject (readonly)

the name of the gem



34
35
36
# File 'lib/rubygems/errors.rb', line 34

def name
  @name
end

#platformsObject (readonly)

The platforms that are mismatched



42
43
44
# File 'lib/rubygems/errors.rb', line 42

def platforms
  @platforms
end

#versionObject (readonly)

the version



38
39
40
# File 'lib/rubygems/errors.rb', line 38

def version
  @version
end

Instance Method Details

#add_platform(platform) ⇒ Object

append a platform to the list of mismatched platforms.

Platforms are added via this instead of injected via the constructor so that we can loop over a list of mismatches and just add them rather than perform some kind of calculation mismatch summary before creation.



56
57
58
# File 'lib/rubygems/errors.rb', line 56

def add_platform(platform)
  @platforms << platform
end

#wordyObject

A wordy description of the error.



62
63
64
65
66
67
68
# File 'lib/rubygems/errors.rb', line 62

def wordy
  "Found %s (%s), but was for platform%s %s" %
    [@name,
     @version,
     @platforms.size == 1 ? '' : 's',
     @platforms.join(' ,')]
end