| DIR: /opt/alt/ruby21/lib64/ruby/2.1.0/rubygems/resolver/ |
| Current File : //opt/alt/ruby21/lib64/ruby/2.1.0/rubygems/resolver/local_specification.rb |
##
# A LocalSpecification comes from a .gem file on the local filesystem.
class Gem::Resolver::LocalSpecification < Gem::Resolver::SpecSpecification
##
# Returns +true+ if this gem is installable for the current platform.
def installable_platform?
return true if @source.kind_of? Gem::Source::SpecificFile
super
end
end
|