mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
b7a61cb485
Unclear why, but https://github.com/rubygems/rubygems/commit/2e05dadbc5de created some warnings in ruby-core CI, so let's revert it. https://github.com/rubygems/rubygems/commit/729ce3a6e1
23 lines
531 B
Ruby
23 lines
531 B
Ruby
# frozen_string_literal: true
|
|
require "rubygems/command_manager"
|
|
|
|
##
|
|
# This is an example of exactly what NOT to do.
|
|
#
|
|
# DO NOT include code like this in your rubygems_plugin.rb
|
|
|
|
module Gem::Commands
|
|
remove_const(:InterruptCommand) if defined?(InterruptCommand)
|
|
end
|
|
|
|
class Gem::Commands::InterruptCommand < Gem::Command
|
|
def initialize
|
|
super("interrupt", "Raises an Interrupt Exception", {})
|
|
end
|
|
|
|
def execute
|
|
raise Interrupt, "Interrupt exception"
|
|
end
|
|
end
|
|
|
|
Gem::CommandManager.instance.register_command :interrupt
|