class Bundler::CLI::Install

def normalize_groups

def normalize_groups
  check_for_group_conflicts_in_cli_options
  # need to nil them out first to get around validation for backwards compatibility
  Bundler.settings.set_command_option :without, nil
  Bundler.settings.set_command_option :with,    nil
  Bundler.settings.set_command_option :without, options[:without]
  Bundler.settings.set_command_option :with,    options[:with]
end