2016-02-01 07:43:26 -05:00
|
|
|
# frozen_string_literal: true
|
2013-07-09 19:21:36 -04:00
|
|
|
##
|
2013-11-10 12:51:40 -05:00
|
|
|
# Represents a specification retrieved via the rubygems.org API.
|
|
|
|
#
|
|
|
|
# This is used to avoid loading the full Specification object when all we need
|
|
|
|
# is the name, version, and dependencies.
|
2013-07-09 19:21:36 -04:00
|
|
|
|
2013-11-18 19:34:13 -05:00
|
|
|
class Gem::Resolver::APISpecification < Gem::Resolver::Specification
|
2013-11-10 12:51:40 -05:00
|
|
|
##
|
|
|
|
# Creates an APISpecification for the given +set+ from the rubygems.org
|
|
|
|
# +api_data+.
|
|
|
|
#
|
2020-01-31 21:14:04 -05:00
|
|
|
# See https://guides.rubygems.org/rubygems-org-api/#misc_methods for the
|
2013-11-10 12:51:40 -05:00
|
|
|
# format of the +api_data+.
|
2013-07-09 19:21:36 -04:00
|
|
|
|
|
|
|
def initialize(set, api_data)
|
2013-11-10 12:51:40 -05:00
|
|
|
super()
|
|
|
|
|
2013-07-09 19:21:36 -04:00
|
|
|
@set = set
|
|
|
|
@name = api_data[:name]
|
|
|
|
@version = Gem::Version.new api_data[:number]
|
2014-12-06 19:53:01 -05:00
|
|
|
@platform = Gem::Platform.new api_data[:platform]
|
2018-05-30 09:01:35 -04:00
|
|
|
@original_platform = api_data[:platform]
|
2013-07-09 19:21:36 -04:00
|
|
|
@dependencies = api_data[:dependencies].map do |name, ver|
|
|
|
|
Gem::Dependency.new name, ver.split(/\s*,\s*/)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-21 05:20:47 -05:00
|
|
|
def ==(other) # :nodoc:
|
2013-07-09 19:21:36 -04:00
|
|
|
self.class === other and
|
|
|
|
@set == other.set and
|
|
|
|
@name == other.name and
|
|
|
|
@version == other.version and
|
2013-09-09 20:52:14 -04:00
|
|
|
@platform == other.platform and
|
2013-07-09 19:21:36 -04:00
|
|
|
@dependencies == other.dependencies
|
|
|
|
end
|
|
|
|
|
2014-09-13 23:30:02 -04:00
|
|
|
def fetch_development_dependencies # :nodoc:
|
|
|
|
spec = source.fetch_spec Gem::NameTuple.new @name, @version, @platform
|
|
|
|
|
|
|
|
@dependencies = spec.dependencies
|
|
|
|
end
|
|
|
|
|
2013-11-25 14:14:49 -05:00
|
|
|
def installable_platform? # :nodoc:
|
|
|
|
Gem::Platform.match @platform
|
|
|
|
end
|
|
|
|
|
2018-11-21 05:20:47 -05:00
|
|
|
def pretty_print(q) # :nodoc:
|
2013-11-21 18:27:30 -05:00
|
|
|
q.group 2, '[APISpecification', ']' 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 "set uri: #{@set.dep_uri}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Fetches a Gem::Specification for this APISpecification.
|
|
|
|
|
|
|
|
def spec # :nodoc:
|
|
|
|
@spec ||=
|
|
|
|
begin
|
|
|
|
tuple = Gem::NameTuple.new @name, @version, @platform
|
2018-05-30 09:01:35 -04:00
|
|
|
source.fetch_spec tuple
|
|
|
|
rescue Gem::RemoteFetcher::FetchError
|
|
|
|
raise if @original_platform == @platform
|
2013-11-21 18:27:30 -05:00
|
|
|
|
2018-05-30 09:01:35 -04:00
|
|
|
tuple = Gem::NameTuple.new @name, @version, @original_platform
|
2013-11-21 18:27:30 -05:00
|
|
|
source.fetch_spec tuple
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def source # :nodoc:
|
|
|
|
@set.source
|
|
|
|
end
|
2013-07-09 19:21:36 -04:00
|
|
|
end
|