Sha256: 3323940c35661e09067fbf5a71f491e93107132918c64431168c6a90162414c2

Contents?: true

Size: 1.03 KB

Versions: 1

Compression:

Stored size: 1.03 KB

Contents

# encoding: utf-8

require 'cri/version'

# The namespace for Cri, a library for building easy-to-use commandline tools
# with support for nested commands.
module Cri
  # A generic error class for all Cri-specific errors.
  class Error < ::StandardError
  end

  # Error that will be raised when an implementation for a method or command
  # is missing. For commands, this may mean that a run block is missing.
  class NotImplementedError < Error
  end

  # Error that will be raised when no help is available because the help
  # command has no supercommand for which to show help.
  class NoHelpAvailableError < Error
  end

  autoload 'Command',           'cri/command'
  autoload 'StringFormatter',   'cri/string_formatter'
  autoload 'CommandDSL',        'cri/command_dsl'
  autoload 'CommandRunner',     'cri/command_runner'
  autoload 'HelpRenderer',      'cri/help_renderer'
  autoload 'OptionParser',      'cri/option_parser'
  autoload 'Platform',          'cri/platform'
end

require 'set'

require 'cri/core_ext'
require 'cri/argument_array'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cri-2.7.0 lib/cri.rb