method

new

ruby latest stable - Class: Bundler::CLI::Config

Method not available on this version

This method is only available on newer versions. The first available version (v2_6_3) is shown here.

new(options, args, thor)
public

No documentation available.

# File lib/bundler/cli/config.rb, line 8
    def initialize(options, args, thor)
      @options = options
      @args = args
      @thor = thor
      @name = peek = args.shift
      @scope = "global"
      return unless peek && peek.start_with?("--")
      @name = args.shift
      @scope = peek[2..-1]
    end