File: README.md

package info (click to toggle)
ruby-cri 2.15.12-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 384 kB
  • sloc: ruby: 2,776; makefile: 11
file content (586 lines) | stat: -rw-r--r-- 16,816 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
# Cri

Cri is a library for building easy-to-use command-line tools with support for
nested commands.

## Requirements

Cri requires Ruby 2.6 or newer (including Ruby 3.x).

## Compatibility policy

Cri is guaranteed to be supported on any [officially supported Ruby version](https://www.ruby-lang.org/en/downloads/branches/), as well as the version of Ruby that comes by default on

- the last two [Ubuntu LTS releases](https://wiki.ubuntu.com/Releases)
- the last two major [macOS releases](https://en.wikipedia.org/wiki/MacOS_version_history)

## Usage

The central concept in Cri is the _command_, which has option definitions as
well as code for actually executing itself. In Cri, the command-line tool
itself is a command as well.

Here’s a sample command definition:

```ruby
command = Cri::Command.define do
  name        'dostuff'
  usage       'dostuff [options]'
  aliases     :ds, :stuff
  summary     'does stuff'
  description 'This command does a lot of stuff. I really mean a lot.'

  flag   :h,  :help,  'show help for this command' do |value, cmd|
    puts cmd.help
    exit 0
  end
  flag   nil, :more,  'do even more stuff'
  option :s,  :stuff, 'specify stuff to do', argument: :required

  run do |opts, args, cmd|
    stuff = opts.fetch(:stuff, 'generic stuff')
    puts "Doing #{stuff}!"

    if opts[:more]
      puts 'Doing it even more!'
    end
  end
end
```

To run this command, invoke the `#run` method with the raw arguments. For
example, for a root command (the command-line tool itself), the command could
be called like this:

```ruby
command.run(ARGV)
```

Each command has automatically generated help. This help can be printed using
`Cri::Command#help`; something like this will be shown:

```
usage: dostuff [options]

does stuff

    This command does a lot of stuff. I really mean a lot.

options:

    -h --help      show help for this command
       --more      do even more stuff
    -s --stuff     specify stuff to do
```

### General command metadata

Let’s disect the command definition and start with the first five lines:

```ruby
name        'dostuff'
usage       'dostuff [options]'
aliases     :ds, :stuff
summary     'does stuff'
description 'This command does a lot of stuff. I really mean a lot.'
```

These lines of the command definition specify the name of the command (or the
command-line tool, if the command is the root command), the usage, a list of
aliases that can be used to call this command, a one-line summary and a (long)
description. The usage should not include a “usage:” prefix nor the name of
the supercommand, because the latter will be automatically prepended.

Aliases don’t make sense for root commands, but for subcommands they do.

### Command-line options

The next few lines contain the command’s option definitions:

```ruby
flag   :h,  :help,  'show help for this command' do |value, cmd|
  puts cmd.help
  exit 0
end
flag   nil, :more,  'do even more stuff'
option :s,  :stuff, 'specify stuff to do', argument: :required
```

The most generic way of definition an option is using either `#option` or `#opt`. It takes the following arguments:

1. a short option name
2. a long option name
3. a description
4. optional extra parameters
   - `argument:` (default: `:forbidden`)
   - `transform:`
   - `default:`
   - `multiple:` (default: `false`)
5. optionally, a block

In more detail:

- The short option name is a symbol containing one character, to be used in single-dash options, e.g. `:f` (corresponds to `-f`). The long option name is a symbol containing a string, to be used in double-dash options, e.g. `:force` (corresponds to `--force`). Either the short or the long option name can be nil, but not both.

- The description is a short, one-line text that shows up in the command’s help. For example, the `-v`/`--version` option might have the description `show version information and quit`.

- The extra parameters, `argument:`, `multiple:`, `default:`, and `transform:`, are described in the sections below.

- The block, if given, will be executed when the option is found. The arguments to the block are the option value (`true` in case the option does not have an argument) and the command.

There are several convenience methods that are alternatives to `#option`/`#opt`:

- `#flag` sets `argument:` to `:forbidden`
- (**deprecated**) `#required` sets `argument:` to `:required` -- deprecated because `#required` suggests that the option is required, wich is incorrect; the _argument_ is required.)
- (**deprecated**) `#optional` sets `argument:` to `:optional` -- deprecated because `#optional` looks too similar to `#option`.

#### Forbidden, required, and optional arguments (`argument:`)

The `:argument` parameter can be set to `:forbidden`, `:required`, or `:optional`.

- `:forbidden` means that when the option is present, the value will be set to `true`, and `false` otherwise. For example:

  ```ruby
  option :f, :force, 'push with force', argument: :forbidden

  run do |opts, args, cmd|
    puts "Force? #{opts[:force]}"
  end
  ```

  ```sh
  % ./push mypackage.zip
  Force? false

  % ./push --force mypackage.zip
  Force? true
  ```

  `:argument` is set to `:forbidden` by default.

- `:required` means that the option must be followed by an argument, which will then be treated as the value for the option. It does not mean that the option itself is required. For example:

  ```ruby
  option :o, :output, 'specify output file', argument: :required
  option :f, :fast, 'fetch faster', argument: :forbidden

  run do |opts, args, cmd|
    puts "Output file: #{opts[:output]}"
  end
  ```

  ```sh
  % ./fetch http://example.com/source.zip
  Output file: nil

  % ./fetch --output example.zip http://example.com/source.zip
  Output file: example.zip

  % ./fetch http://example.com/source.zip --output
  fetch: option requires an argument -- output

  % ./fetch --output --fast http://example.com/source.zip
  fetch: option requires an argument -- output
  ```

- `:optional` means that the option can be followed by an argument. If it is, then the argument is treated as the value for the option; if it isn’t, the value for the option will be `true`. For example:

  ```ruby
  option :o, :output, 'specify output file', argument: :optional
  option :f, :fast, 'fetch faster', argument: :forbidden

  run do |opts, args, cmd|
    puts "Output file: #{opts[:output]}"
  end
  ```

  ```sh
  % ./fetch http://example.com/source.zip
  Output file: nil

  % ./fetch --output example.zip http://example.com/source.zip
  Output file: example.zip

  % ./fetch http://example.com/source.zip --output
  Output file: true

  % ./fetch --output --fast http://example.com/source.zip
  Output file: true
  ```

#### Transforming options (`transform:`)

The `:transform` parameter specifies how the value should be transformed. It takes any object that responds to `#call`:

```ruby
option :p, :port, 'set port', argument: :required,
  transform: -> (x) { Integer(x) }
```

The following example uses `#Integer` to transform a string into an integer:

```ruby
option :p, :port, 'set port', argument: :required, transform: method(:Integer)
```

The following example uses a custom object to perform transformation, as well as validation:

```ruby
class PortTransformer
  def call(str)
    raise ArgumentError unless str.is_a?(String)
    Integer(str).tap do |int|
      raise unless (0x0001..0xffff).include?(int)
    end
  end
end

option :p, :port, 'set port', argument: :required, transform: PortTransformer.new
```

Default values are not transformed:

```ruby
option :p, :port, 'set port', argument: :required, default: 8080, transform: PortTransformer.new
```

#### Options with default values (`default:`)

The `:default` parameter sets the option value that will be used if the option is passed without an argument or isn't passed at all:

```ruby
option :a, :animal, 'add animal', default: 'giraffe', argument: :optional
```

In the example above, the value for the `--animal` option will be the string
`"giraffe"`, unless otherwise specified:

```
OPTIONS
    -a --animal[=<value>]      add animal (default: giraffe)
```

If the option is not given on the command line, the `options` hash will not have key for this option, but will still have a default value:

```ruby
option :a, :animal, 'add animal', default: 'giraffe', argument: :required

run do |opts, args, cmd|
  puts "Animal = #{opts[:animal]}"
  puts "Option given? #{opts.key?(:animal)}"
end
```

```sh
% ./run --animal=donkey
Animal = donkey
Option given? true

% ./run --animal=giraffe
Animal = giraffe
Option given? true

% ./run
Animal = giraffe
Option given? false
```

This can be useful to distinguish between an explicitly-passed-in value and a default value. In the example above, the `animal` option is set to `giraffe` in the second and third cases, but it is possible to detect whether the value is a default or not.

#### Multivalued options (`multiple:`)

The `:multiple` parameter allows an option to be specified more than once on the command line. When set to `true`, multiple option valus are accepted, and the option values will be stored in an array.

For example, to parse the command line options string `-o foo.txt -o bar.txt`
into an array, so that `options[:output]` contains `[ 'foo.txt', 'bar.txt' ]`,
you can use an option definition like this:

```ruby
option :o, :output, 'specify output paths', argument: :required, multiple: true
```

This can also be used for flags (options without arguments). In this case, the
length of the options array is relevant.

For example, you can allow setting the verbosity level using `-v -v -v`. The
value of `options[:verbose].size` would then be the verbosity level (three in
this example). The option definition would then look like this:

```ruby
flag :v, :verbose, 'be verbose (use up to three times)', multiple: true
```

#### Skipping option parsing

If you want to skip option parsing for your command or subcommand, you can add
the `skip_option_parsing` method to your command definition and everything on your
command line after the command name will be passed to your command as arguments.

```ruby
command = Cri::Command.define do
  name        'dostuff'
  usage       'dostuff [args]'
  aliases     :ds, :stuff
  summary     'does stuff'
  description 'This command does a lot of stuff, but not option parsing.'

  skip_option_parsing

  run do |opts, args, cmd|
    puts args.inspect
  end
end
```

When executing this command with `dostuff --some=value -f yes`, the `opts` hash
that is passed to your `run` block will be empty and the `args` array will be
`["--some=value", "-f", "yes"]`.

### Argument parsing

Cri supports parsing arguments, as well as parsing options. To define the
parameters of a command, use `#param`, which takes a symbol containing the name
of the parameter. For example:

```ruby
command = Cri::Command.define do
  name        'publish'
  usage       'publish filename'
  summary     'publishes the given file'
  description 'This command does a lot of stuff, but not option parsing.'

  flag :q, :quick, 'publish quicker'
  param :filename

  run do |opts, args, cmd|
    puts "Publishing #{args[:filename]}…"
  end
end
```

The command in this example has one parameter named `filename`. This means that
the command takes a single argument, named `filename`.

As with options, parameter definitions take `transform:`, which can be used for transforming and validating arguments:

```ruby
param :port, transform: method(:Integer)
```

(_Why the distinction between argument and parameter?_ A parameter is a name, e.g. `filename`, while an argument is a value for a parameter, e.g. `kitten.jpg`.)

### Allowing arbitrary arguments

If no parameters are specified, Cri performs no argument parsing or validation;
any number of arguments is allowed.

```ruby
command = Cri::Command.define do
  name        'publish'
  usage       'publish [filename...]'
  summary     'publishes the given file(s)'
  description 'This command does a lot of stuff, but not option parsing.'

  flag :q, :quick, 'publish quicker'

  run do |opts, args, cmd|
    args.each do |arg|
      puts "Publishing #{arg}…"
    end
  end
end
```

```bash
% my-tool publish foo.zip bar.zip
Publishing foo.zip…
Publishing bar.zip…
%
```

### Forbidding any arguments

To explicitly specify that a command has no parameters, use `#no_params`:

```ruby
name        'reset'
usage       'reset'
summary     'resets the site'
description '…'
no_params

run do |opts, args, cmd|
  puts "Resetting…"
end
```

```
% my-tool reset x
reset: incorrect number of arguments given: expected 0, but got 1
% my-tool reset
Resetting…
%
```

A future version of Cri will likely make `#no_params` the default behavior.

### The run block

The last part of the command defines the execution itself:

```ruby
run do |opts, args, cmd|
  stuff = opts.fetch(:stuff, 'generic stuff')
  puts "Doing #{stuff}!"

  if opts[:more]
    puts 'Doing it even more!'
  end
end
```

The +Cri::CommandDSL#run+ method takes a block with the actual code to
execute. This block takes three arguments: the options, any arguments passed
to the command, and the command itself.

### The command runner

Instead of defining a run block, it is possible to declare a class, the _command runner_ class that will perform the actual execution of the command. This makes it easier to break up large run blocks into manageable pieces.

```ruby
name 'push'
option :f, :force, 'force'
param :filename

class MyRunner < Cri::CommandRunner
  def run
    puts "Pushing #{arguments[:filename]}…"
    puts "… with force!" if options[:force]
  end
end

runner MyRunner
```

To create a command runner, subclass `Cri::CommandRunner`, and define a `#run` method with no params. Inside the `#run` block, you can access `options` and `arguments`. Lastly, to connect the command to the command runner, call `#runner` with the class of the command runner.

Here is an example interaction with the example command, defined above:

```
% push
push: incorrect number of arguments given: expected 1, but got 0

% push a
Pushing a…

% push -f
push: incorrect number of arguments given: expected 1, but got 0

% push -f a
Pushing a…
… with force!
```

### Subcommands

Commands can have subcommands. For example, the `git` command-line tool would be
represented by a command that has subcommands named `commit`, `add`, and so on.
Commands with subcommands do not use a run block; execution will always be
dispatched to a subcommand (or none, if no subcommand is found).

To add a command as a subcommand to another command, use the
`Cri::Command#add_command` method, like this:

```ruby
root_cmd.add_command(cmd_add)
root_cmd.add_command(cmd_commit)
root_cmd.add_command(cmd_init)
```

You can also define a subcommand on the fly without creating a class first
using `Cri::Command#define_command` (name can be skipped if you set it inside
the block instead):

```ruby
root_cmd.define_command('add') do
  # option ...
  run do |opts, args, cmd|
    # ...
  end
end
```

You can specify a default subcommand. This subcommand will be executed when the
command has subcommands, and no subcommands are otherwise explicitly specified:

```ruby
default_subcommand 'compile'
```

### Loading commands from separate files

You can use `Cri::Command.load_file` to load a command from a file.

For example, given the file _commands/check.rb_ with the following contents:

```ruby
name        'check'
usage       'check'
summary     'runs all checks'
description '…'

run do |opts, args, cmd|
  puts "Running checks…"
end
```

To load this command:

```ruby
Cri::Command.load_file('commands/check.rb')
```

`Cri::Command.load_file` expects the file to be in UTF-8.

You can also use it to load subcommands:

```ruby
root_cmd = Cri::Command.load_file('commands/nanoc.rb')
root_cmd.add_command(Cri::Command.load_file('commands/comile.rb'))
root_cmd.add_command(Cri::Command.load_file('commands/view.rb'))
root_cmd.add_command(Cri::Command.load_file('commands/check.rb'))
```

#### Automatically inferring command names

Pass `infer_name: true` to `Cri::Command.load_file` to use the file basename as the name of the command.

For example, given a file _commands/check.rb_ with the following contents:

```ruby
usage       'check'
summary     'runs all checks'
description '…'

run do |opts, args, cmd|
  puts "Running checks…"
end
```

To load this command and infer the name:

```ruby
cmd = Cri::Command.load_file('commands/check.rb', infer_name: true)
```

`cmd.name` will be `check`, derived from the filename.

## Contributors

- Bart Mesuere
- Ken Coar
- Tim Sharpe
- Toon Willems

Thanks for Lee “injekt” Jarvis for [Slop](https://github.com/injekt/slop),
which has inspired the design of Cri 2.0.