Sha256: dea359a250312901ffaf5687f611f5cb1ca4d42c3dc2a794ef3355cb8df26fae
Contents?: true
Size: 533 Bytes
Versions: 21
Compression:
Stored size: 533 Bytes
Contents
# 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
Version data entries
21 entries across 21 versions & 1 rubygems