File Manager

Path: /opt/cpanel/ea-ruby27/root/usr/local/share/gems/gems/bundler-2.4.22/lib/bundler/resolver/

Viewing File: root.rb

# 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