2016-02-01 15:43:26 +03:00
|
|
|
# frozen_string_literal: true
|
2013-11-25 23:14:49 +04: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-14 07:30:02 +04:00
|
|
|
def local? # :nodoc:
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2018-11-21 13:20:47 +03:00
|
|
|
def pretty_print(q) # :nodoc:
|
2014-09-14 07: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 23:14:49 +04:00
|
|
|
end
|