aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/cask.rb
diff options
context:
space:
mode:
authorMarkus Reiter2017-03-06 11:39:07 +0100
committerMarkus Reiter2017-03-06 11:41:29 +0100
commit3e7f94d5b54799db72917b9c2d99f3e592c892a1 (patch)
treebb69c78ccbad901a107342d1c7078ac37458a824 /Library/Homebrew/cmd/cask.rb
parent29f431e85eedfeed7a44fc0300bd5797c481bfe0 (diff)
downloadbrew-3e7f94d5b54799db72917b9c2d99f3e592c892a1.tar.bz2
Move `cask` to `cmd/`.
Diffstat (limited to 'Library/Homebrew/cmd/cask.rb')
-rw-r--r--Library/Homebrew/cmd/cask.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/Library/Homebrew/cmd/cask.rb b/Library/Homebrew/cmd/cask.rb
new file mode 100644
index 000000000..8a68b8d9a
--- /dev/null
+++ b/Library/Homebrew/cmd/cask.rb
@@ -0,0 +1,10 @@
+$LOAD_PATH.unshift("#{HOMEBREW_LIBRARY_PATH}/cask/lib")
+require "hbc"
+
+module Homebrew
+ module_function
+
+ def cask
+ Hbc::CLI.process(ARGV)
+ end
+end