module DTK::Client::CommandHelperMixin

Constants

Loaded

Public Instance Methods

Helper(helper_class_name) click to toggle source
# File lib/command_helper.rb, line 20
def Helper(helper_class_name)
  unless Loaded[helper_class_name]
    dtk_nested_require('command_helpers',helper_class_name)
    Loaded[helper_class_name] = true
  end
  CommandHelper.const_get Common::Aux.snake_to_camel_case(helper_class_name.to_s)
end