module Abt

Constants

VERSION

Public Class Methods

scheme_provider(scheme) click to toggle source
# File lib/abt.rb, line 22
def self.scheme_provider(scheme)
  const_name = Helpers.command_to_const(scheme)
  Providers.const_get(const_name) if Providers.const_defined?(const_name)
end
schemes() click to toggle source
# File lib/abt.rb, line 18
def self.schemes
  Providers.constants.sort.map { |constant_name| Helpers.const_to_command(constant_name) }
end