@@ -15,12 +15,12 @@ while you focus on problem solving!
15
15
- [ Call your solution module manually] ( #call-your-solution-module-manually )
16
16
- [ TL; DR] ( #tl-dr )
17
17
- [ Available Commands] ( #available-commands )
18
- - [ mix. aoc.open] ( #mixaocopen )
19
- - [ mix. aoc.create] ( #mixaoccreate )
20
- - [ mix. aoc.test] ( #mixaoctest )
21
- - [ mix. aoc.run] ( #mixaocrun )
22
- - [ mix. aoc.fetch] ( #mixaocfetch )
23
- - [ mix. aoc.url] ( #mixaocurl )
18
+ - [ mix aoc.open] ( #mix-aocopen )
19
+ - [ mix aoc.create] ( #mix-aoccreate )
20
+ - [ mix aoc.test] ( #mix-aoctest )
21
+ - [ mix aoc.run] ( #mix-aocrun )
22
+ - [ mix aoc.fetch] ( #mix-aocfetch )
23
+ - [ mix aoc.url] ( #mix-aocurl )
24
24
- [ Custom default values for commands] ( #custom-default-values-for-commands )
25
25
- [ Upgrading to ` 0.12 ` ] ( #upgrading-to-012 )
26
26
@@ -365,7 +365,7 @@ You may also get a quick summary of options by calling those commands with the
365
365
366
366
367
367
<!-- block:mix.aoc.open -->
368
- ### mix. aoc.open
368
+ ### mix aoc.open
369
369
370
370
Opens the puzzle page with your defined browser on on adventofcode.com.
371
371
@@ -377,15 +377,14 @@ The command to call with the URL will be defined in the following order:
377
377
378
378
#### Usage
379
379
380
- ``` shell
381
- mix aoc.open [options]
382
- ```
380
+ mix aoc.open [options]
381
+
383
382
384
383
#### Options
385
384
386
- * ` -y, --year <integer> ` - Year of the puzzle Defaults to today's year or custom default.
387
- * ` -d, --day <integer> ` - Day of the puzzle Defaults to today's day or custom default.
388
- * ` --help ` - Displays this help.
385
+ * ` -y, --year <integer> ` - Year of the puzzle Defaults to today's year or custom default.
386
+ * ` -d, --day <integer> ` - Day of the puzzle Defaults to today's day or custom default.
387
+ * ` --help ` - Displays this help.
389
388
390
389
391
390
<!-- endblock:mix.aoc.open -->
@@ -394,7 +393,7 @@ mix aoc.open [options]
394
393
395
394
396
395
<!-- block:mix.aoc.create -->
397
- ### mix. aoc.create
396
+ ### mix aoc.create
398
397
399
398
This task will execute the following operations:
400
399
@@ -415,15 +414,14 @@ option:
415
414
416
415
#### Usage
417
416
418
- ``` shell
419
- mix aoc.create [options]
420
- ```
417
+ mix aoc.create [options]
418
+
421
419
422
420
#### Options
423
421
424
- * ` -y, --year <integer> ` - Year of the puzzle Defaults to today's year or custom default.
425
- * ` -d, --day <integer> ` - Day of the puzzle Defaults to today's day or custom default.
426
- * ` --help ` - Displays this help.
422
+ * ` -y, --year <integer> ` - Year of the puzzle Defaults to today's year or custom default.
423
+ * ` -d, --day <integer> ` - Day of the puzzle Defaults to today's day or custom default.
424
+ * ` --help ` - Displays this help.
427
425
428
426
429
427
<!-- endblock:mix.aoc.create -->
@@ -432,7 +430,7 @@ mix aoc.create [options]
432
430
433
431
434
432
<!-- block:mix.aoc.test -->
435
- ### mix. aoc.test
433
+ ### mix aoc.test
436
434
437
435
Runs your test file for the Advent of Code puzzle.
438
436
@@ -459,20 +457,19 @@ end
459
457
460
458
#### Usage
461
459
462
- ``` shell
463
- mix aoc.test [options]
464
- ```
460
+ mix aoc.test [options]
461
+
465
462
466
463
#### Options
467
464
468
- * ` -y, --year <integer> ` - Year of the puzzle Defaults to today's year or custom default.
469
- * ` -d, --day <integer> ` - Day of the puzzle Defaults to today's day or custom default.
470
- * ` --trace ` - forward option to ` mix test `
471
- * ` --stale ` - forward option to ` mix test `
472
- * ` --failed ` - forward option to ` mix test `
473
- * ` --seed <integer> ` - forward option to ` mix test `
474
- * ` --max-failures <integer> ` - forward option to ` mix test `
475
- * ` --help ` - Displays this help.
465
+ * ` -y, --year <integer> ` - Year of the puzzle Defaults to today's year or custom default.
466
+ * ` -d, --day <integer> ` - Day of the puzzle Defaults to today's day or custom default.
467
+ * ` --trace ` - forward option to ` mix test `
468
+ * ` --stale ` - forward option to ` mix test `
469
+ * ` --failed ` - forward option to ` mix test `
470
+ * ` --seed <integer> ` - forward option to ` mix test `
471
+ * ` --max-failures <integer> ` - forward option to ` mix test `
472
+ * ` --help ` - Displays this help.
476
473
477
474
478
475
<!-- endblock:mix.aoc.test -->
@@ -481,23 +478,22 @@ mix aoc.test [options]
481
478
482
479
483
480
<!-- block:mix.aoc.run -->
484
- ### mix. aoc.run
481
+ ### mix aoc.run
485
482
486
483
Runs your solution with the corresponding year/day input from ` priv/inputs ` .
487
484
488
485
#### Usage
489
486
490
- ``` shell
491
- mix aoc.run [options]
492
- ```
487
+ mix aoc.run [options]
488
+
493
489
494
490
#### Options
495
491
496
- * ` -y, --year <integer> ` - Year of the puzzle Defaults to today's year or custom default.
497
- * ` -d, --day <integer> ` - Day of the puzzle Defaults to today's day or custom default.
498
- * ` -p, --part <integer> ` - Part of the puzzle Defaults to both parts.
499
- * ` -b, --benchmark ` - Runs the solution parts repeatedly for 5 seconds to print statistics about execution time. Defaults to ` false ` .
500
- * ` --help ` - Displays this help.
492
+ * ` -y, --year <integer> ` - Year of the puzzle Defaults to today's year or custom default.
493
+ * ` -d, --day <integer> ` - Day of the puzzle Defaults to today's day or custom default.
494
+ * ` -p, --part <integer> ` - Part of the puzzle Defaults to both parts.
495
+ * ` -b, --benchmark ` - Runs the solution parts repeatedly for 5 seconds to print statistics about execution time. Defaults to ` false ` .
496
+ * ` --help ` - Displays this help.
501
497
502
498
503
499
<!-- endblock:mix.aoc.run -->
@@ -506,23 +502,22 @@ mix aoc.run [options]
506
502
507
503
508
504
<!-- block:mix.aoc.fetch -->
509
- ### mix. aoc.fetch
505
+ ### mix aoc.fetch
510
506
511
507
This task will fetch the puzzle into ` priv/inputs ` .
512
508
513
509
It will not overwrite an existing input file.
514
510
515
511
#### Usage
516
512
517
- ``` shell
518
- mix aoc.fetch [options]
519
- ```
513
+ mix aoc.fetch [options]
514
+
520
515
521
516
#### Options
522
517
523
- * ` -y, --year <integer> ` - Year of the puzzle Defaults to today's year or custom default.
524
- * ` -d, --day <integer> ` - Day of the puzzle Defaults to today's day or custom default.
525
- * ` --help ` - Displays this help.
518
+ * ` -y, --year <integer> ` - Year of the puzzle Defaults to today's year or custom default.
519
+ * ` -d, --day <integer> ` - Day of the puzzle Defaults to today's day or custom default.
520
+ * ` --help ` - Displays this help.
526
521
527
522
528
523
<!-- endblock:mix.aoc.fetch -->
@@ -531,7 +526,7 @@ mix aoc.fetch [options]
531
526
532
527
533
528
<!-- block:mix.aoc.url -->
534
- ### mix. aoc.url
529
+ ### mix aoc.url
535
530
536
531
Outputs the on adventofcode.com URL for a puzzle.
537
532
@@ -546,15 +541,14 @@ xdg-open $(mix aoc.url | grep 'https')
546
541
547
542
#### Usage
548
543
549
- ``` shell
550
- mix aoc.url [options]
551
- ```
544
+ mix aoc.url [options]
545
+
552
546
553
547
#### Options
554
548
555
- * ` -y, --year <integer> ` - Year of the puzzle Defaults to today's year or custom default.
556
- * ` -d, --day <integer> ` - Day of the puzzle Defaults to today's day or custom default.
557
- * ` --help ` - Displays this help.
549
+ * ` -y, --year <integer> ` - Year of the puzzle Defaults to today's year or custom default.
550
+ * ` -d, --day <integer> ` - Day of the puzzle Defaults to today's day or custom default.
551
+ * ` --help ` - Displays this help.
558
552
559
553
560
554
<!-- endblock:mix.aoc.url -->
@@ -596,4 +590,4 @@ move your old modules.
596
590
597
591
Sorry for the inconvenience. That change was necessary to have a clean ordering
598
592
of files in the solutions directories and to allow everyone to generate the
599
- modules in a directory according to their prefix .
593
+ modules in a directory according to their preferred namespace .
0 commit comments