-
-
Save wycats/1765183 to your computer and use it in GitHub Desktop.
canhaz
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'thor' | |
require 'pathname' | |
module Canhaz | |
class CLI | |
class Recipes < Thor | |
desc "apply", "apply" | |
def apply | |
puts "applying" | |
end | |
end | |
class Main < Thor | |
desc "deploy","deploy" | |
def deploy | |
puts "deploying" | |
end | |
desc "recipes", "recipes" | |
subcommand :recipes, Recipes | |
end | |
end | |
end | |
Canhaz::CLI::Main.start(ARGV) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment