lib/cri.rb in cri-2.3.0 vs lib/cri.rb in cri-2.4.0
- old
+ new
@@ -1,6 +1,7 @@
# encoding: utf-8
+require 'cri/version'
module Cri
# A generic error class for all Cri-specific errors.
class Error < ::StandardError
@@ -13,12 +14,9 @@
# 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.3.0'
autoload 'Command', 'cri/command'
autoload 'CommandDSL', 'cri/command_dsl'
autoload 'CommandRunner', 'cri/command_runner'
autoload 'OptionParser', 'cri/option_parser'