Sha256: aa276824cd4b3f42842d94d340ab453314f94e31e21cfe61d2ecab66cae87e69
Contents?: true
Size: 733 Bytes
Versions: 1
Compression:
Stored size: 733 Bytes
Contents
# encoding: utf-8 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 # The current Cri version. VERSION = '2.0.0' autoload 'Command', 'cri/command' autoload 'CommandDSL', 'cri/command_dsl' autoload 'OptionParser', 'cri/option_parser' end require 'set' require 'cri/core_ext'
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cri-2.0.0 | lib/cri.rb |