# frozen_string_literal: true
require_relative "package"
module Bundler
class Resolver
#
# Represents the Gemfile from the resolver's perspective. It's the root
# package and Gemfile entries depend on it.
#
class Root < Package
def initialize(name)
@name = name
end
def meta?
true
end
def root?
true
end
end
end
end
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| base.rb | File | 2.42 KB | 0644 |
|
| candidate.rb | File | 2.13 KB | 0644 |
|
| incompatibility.rb | File | 408 B | 0644 |
|
| package.rb | File | 1.72 KB | 0644 |
|
| root.rb | File | 408 B | 0644 |
|
| spec_group.rb | File | 1.79 KB | 0644 |
|