Module: Twenty::Command::CommonOptionMixin
Class Method Summary collapse
Class Method Details
.included(mod) ⇒ Object
5 6 7 8 9 10 11 12 13 |
# File 'lib/twenty/cli/command/mixin/common_option_mixin.rb', line 5 def self.included(mod) mod.module_eval do set_option "-d PATH", "--database PATH", "The path to an alternate SQLite3 database", as: String, default: nil end end |