Sha256: ad75e080b6d322e634f06e7c04d084a7300df1513cbd8e1a073c5140b9117d74
Contents?: true
Size: 534 Bytes
Versions: 25
Compression:
Stored size: 534 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
25 entries across 25 versions & 2 rubygems