~ubuntu-branches/ubuntu/wily/ruby-cri/wily-proposed

« back to all changes in this revision

Viewing changes to lib/cri.rb

  • Committer: Package Import Robot
  • Author(s): Cédric Boutillier
  • Date: 2014-04-14 15:15:48 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20140414151548-xni482c106hiik3q
Tags: 2.6.0-1
* Imported Upstream version 2.6.0
* Add asciidoctor to Build-Depends, now that the README file has a .adoc
  extension
* Add privacy-breach.patch to remove remote badges from the README file

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# encoding: utf-8
 
2
 
2
3
require 'cri/version'
3
4
 
 
5
# The namespace for Cri, a library for building easy-to-use commandline tools
 
6
# with support for nested commands.
4
7
module Cri
5
8
 
6
9
  # A generic error class for all Cri-specific errors.
20
23
  autoload 'Command',           'cri/command'
21
24
  autoload 'CommandDSL',        'cri/command_dsl'
22
25
  autoload 'CommandRunner',     'cri/command_runner'
 
26
  autoload 'HelpRenderer',      'cri/help_renderer'
23
27
  autoload 'OptionParser',      'cri/option_parser'
24
28
 
25
29
end
27
31
require 'set'
28
32
 
29
33
require 'cri/core_ext'
 
34
require 'cri/argument_array'