From 13f8a4d28280978f46cc722854dbbd4c8a2ae32e Mon Sep 17 00:00:00 2001 From: Roland Walker Date: Fri, 6 Jun 2014 17:09:42 -0400 Subject: [PATCH] remove issues_url and nullcommand from help output necessitated by Homebrew's switch to Ruby 2.x Fixes #4728 Fixes #4726 --- lib/cask/cli.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cask/cli.rb b/lib/cask/cli.rb index 149e2d51a..f0795ff52 100644 --- a/lib/cask/cli.rb +++ b/lib/cask/cli.rb @@ -23,7 +23,7 @@ require 'cask/cli/update' class Cask::CLI ISSUES_URL = "https://github.com/caskroom/homebrew-cask/issues" def self.commands - Cask::CLI.constants - ["NullCommand", "ISSUES_URL"] + Cask::CLI.constants - [:NullCommand, :ISSUES_URL, "NullCommand", "ISSUES_URL"] end def self.lookup_command(command_string)