Class: Gem::PlatformMismatch
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
self,
ErrorReason
|
|
Instance Chain:
self,
ErrorReason
|
|
Inherits: |
Gem::ErrorReason
|
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.
Class Method Summary
- .new(name, version) ⇒ PlatformMismatch constructor
Instance Attribute Summary
-
#name
readonly
the name of the gem.
-
#platforms
readonly
The platforms that are mismatched.
-
#version
readonly
the version.
Instance Method Summary
-
#add_platform(platform)
append a platform to the list of mismatched platforms.
-
#wordy
A wordy description of the error.
Constructor Details
.new(name, version) ⇒ PlatformMismatch
Instance Attribute Details
#name (readonly)
the name of the gem
# File 'lib/rubygems/errors.rb', line 65
attr_reader :name
#platforms (readonly)
The platforms that are mismatched
# File 'lib/rubygems/errors.rb', line 73
attr_reader :platforms
#version (readonly)
the version
# File 'lib/rubygems/errors.rb', line 69
attr_reader :version
Instance Method Details
#add_platform(platform)
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.
# File 'lib/rubygems/errors.rb', line 87
def add_platform(platform) @platforms << platform end
#wordy
A wordy description of the error.
# File 'lib/rubygems/errors.rb', line 93
def wordy "Found %s (%s), but was for platform%s %s" % [@name, @version, @platforms.size == 1 ? '' : 's', @platforms.join(' ,')] end