Method: Gem::Commands::LockCommand#complain

Defined in:
lib/rubygems/commands/lock_command.rb

#complain(message) ⇒ Object



61
62
63
64
65
66
67
# File 'lib/rubygems/commands/lock_command.rb', line 61

def complain(message)
  if options[:strict]
    raise Gem::Exception, message
  else
    say "# #{message}"
  end
end