Sha256: 6b265978b5d5e88d10fef4fdbfe57416b252df66ca4eb93b3abfd63d887133c4
Contents?: true
Size: 777 Bytes
Versions: 79
Compression:
Stored size: 777 Bytes
Contents
## # 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 def local? # :nodoc: true end def pretty_print q # :nodoc: 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 end
Version data entries
79 entries across 51 versions & 4 rubygems