module PowerStencil module CommandProcessors class Adm include Climatic::Script::UnimplementedProcessor include Climatic::Proxy include PowerStencil::Project::Proxy include PowerStencil::Utils::Completion def execute if config[:'zsh-completion'] generate_zsh_completion 'power_stencil' return end if config[:'query-for-completion'] puts project.query_for_completion config[:'query-for-completion'].to_sym end end end end end