Method: Bundler::CLI::Config::Base#initialize
- Defined in:
- lib/bundler/cli/config.rb
permalink #initialize(options, name, value, thor) ⇒ Base
Returns a new instance of Base.
63 64 65 66 67 68 69 70 |
# File 'lib/bundler/cli/config.rb', line 63 def initialize(, name, value, thor) @options = @name = name value = Array(value) @value = value.empty? ? nil : value.join(" ") @thor = thor validate_scope! end |