Skip to content

Instantly share code, notes, and snippets.

@dribble13
Created October 18, 2012 05:56
Show Gist options
  • Select an option

  • Save dribble13/3910105 to your computer and use it in GitHub Desktop.

Select an option

Save dribble13/3910105 to your computer and use it in GitHub Desktop.
thor namespace sample 3
module Foo
class Hoge < Thor
# namespace :foo
desc "hoge", "hogehoge!!"
method_option :delete_flg, :type => :boolean, :aliases => "-d"
def hoge()
p "hoge"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment