Method: Bundler::CLI::Common.without_groups_message

Defined in:
lib/bundler/cli/common.rb

.without_groups_message(command) ⇒ Object



37
38
39
40
41
# File 'lib/bundler/cli/common.rb', line 37

def self.without_groups_message(command)
  command_in_past_tense = command == :install ? "installed" : "updated"
  groups = Bundler.settings[:without]
  "Gems in the #{verbalize_groups(groups)} were not #{command_in_past_tense}."
end