Guest User

Untitled

a guest
Apr 25th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. require 'rubygems'
  2. require 'thor'
  3.  
  4. class Test < Thor
  5. class_options %w(password -p) => :required
  6.  
  7. def initialize(*)
  8. super
  9. puts options.inspect
  10. end
  11.  
  12. desc "show", "test"
  13. method_options :ha => :string
  14. def show
  15. puts "test"
  16. end
  17. end
  18.  
  19. Test.start
Add Comment
Please, Sign In to add comment