If you're creating a reasonably complex Thor CLI, you'll likely want to reuse common method options. Here's a simple way to do that.

#ruby #rubyonrails

@hschne there is also `class_option` which has the same signature as method_option but applies to the whole class. Regardless another handy tip is that sharable methods can also live in a module which is nice for sharing between different classes.