class DokkaaCfg::Provider

Public Class Methods

new() click to toggle source
# File lib/dokkaacfg/provider.rb, line 4
def initialize
end

Public Instance Methods

execute(cmd, args, options) click to toggle source
# File lib/dokkaacfg/provider.rb, line 7
def execute(cmd, args, options)
  cmd = cmd.to_sym
  if self.respond_to?(cmd)
    self.send(cmd, args, options)
  end
end