Classes and Modules
Public Class methods
after_load(app, default_help_order: nil)
[show source]
# File lib/rodish/plugins/help_order.rb 17 def self.after_load(app, default_help_order: nil) 18 if default_help_order 19 app::DSL::Command.class_exec do 20 define_method(:default_help_order){default_help_order.dup} 21 alias_method(:default_help_order, :default_help_order) 22 private(:default_help_order) 23 end 24 end 25 end