build_option(name, options, scope)
protected
Build an option and adds it to the given scope.
Parameters
# File lib/bundler/vendor/thor/lib/thor/base.rb, line 566
def build_option(name, options, scope) #:nodoc:
scope[name] = Bundler::Thor::Option.new(name, options.merge(:check_default_type => check_default_type?))
end