# File lib/plugins/command_plus.rb, line 4 def delete_command(arg) if @commands.delete(arg.to_sym) puts "#{arg} command is deleted." else raise "#{arg} command is not found." end end