Skip to Content Skip to Search

A LocalSpecification comes from a .gem file on the local filesystem.

Methods
I

Instance Public methods

installable_platform?()

Returns true if this gem is installable for the current platform.

# File ruby/lib/rubygems/resolver/local_specification.rb, line 10
def installable_platform?
  return true if @source.is_a? Gem::Source::SpecificFile

  super
end