2016-02-01 07:43:26 -05:00
|
|
|
# frozen_string_literal: true
|
2013-11-25 14:14:49 -05:00
|
|
|
##
|
|
|
|
# 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
|
|
|
|
|
2014-09-13 23:30:02 -04:00
|
|
|
def local? # :nodoc:
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2018-11-21 05:20:47 -05:00
|
|
|
def pretty_print(q) # :nodoc:
|
2014-09-13 23:30:02 -04:00
|
|
|
q.group 2, "[LocalSpecification", "]" do
|
|
|
|
q.breakable
|
|
|
|
q.text "name: #{name}"
|
|
|
|
|
|
|
|
q.breakable
|
|
|
|
q.text "version: #{version}"
|
|
|
|
|
|
|
|
q.breakable
|
|
|
|
q.text "platform: #{platform}"
|
|
|
|
|
|
|
|
q.breakable
|
|
|
|
q.text "dependencies:"
|
|
|
|
q.breakable
|
|
|
|
q.pp dependencies
|
|
|
|
|
|
|
|
q.breakable
|
|
|
|
q.text "source: #{@source.path}"
|
|
|
|
end
|
|
|
|
end
|
2013-11-25 14:14:49 -05:00
|
|
|
end
|