rbcli 0.2.2 → 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +14 -0
  3. data/Gemfile.lock +2 -2
  4. data/README.md +6 -1
  5. data/docs-src/docs/advanced/interactive_commands.md +37 -0
  6. data/docs-src/docs/imported/changelog.md +14 -0
  7. data/docs-src/docs/tutorial/40-options_parameters_and_arguments.md +25 -0
  8. data/docs-src/makesite.sh +1 -1
  9. data/docs-src/mkdocs.yml +3 -1
  10. data/docs/404.html +36 -12
  11. data/docs/advanced/automatic_updates/index.html +36 -12
  12. data/docs/advanced/command_types/index.html +34 -10
  13. data/docs/advanced/distributed_state_locking/index.html +34 -10
  14. data/docs/advanced/hooks/index.html +36 -12
  15. data/docs/advanced/interactive_commands/index.html +829 -0
  16. data/docs/advanced/logging/index.html +833 -0
  17. data/docs/advanced/remote_execution/index.html +36 -12
  18. data/docs/advanced/state_storage/index.html +34 -10
  19. data/docs/advanced/user_config_files/index.html +34 -10
  20. data/docs/assets/javascripts/application.583bbe55.js +1 -0
  21. data/docs/assets/stylesheets/application-palette.22915126.css +1176 -0
  22. data/docs/assets/stylesheets/application.451f80e5.css +2552 -0
  23. data/docs/development/code_of_conduct/index.html +34 -10
  24. data/docs/development/contributing/index.html +36 -12
  25. data/docs/development/license/index.html +34 -10
  26. data/docs/imported/changelog/index.html +132 -27
  27. data/docs/imported/quick_reference/index.html +34 -10
  28. data/docs/index.html +36 -12
  29. data/docs/search/search_index.json +1 -639
  30. data/docs/sitemap.xml +48 -38
  31. data/docs/sitemap.xml.gz +0 -0
  32. data/docs/tutorial/10-getting_started/index.html +34 -10
  33. data/docs/tutorial/20-project_layout/index.html +34 -10
  34. data/docs/tutorial/30-your_first_command/index.html +34 -10
  35. data/docs/tutorial/40-options_parameters_and_arguments/index.html +75 -10
  36. data/docs/tutorial/50-publishing/index.html +34 -10
  37. data/docs/whoami/index.html +36 -12
  38. data/exe/rbcli +1 -1
  39. data/lib/rbcli/engine/command.rb +28 -2
  40. data/lib/rbcli/version.rb +1 -1
  41. data/rbcli.gemspec +1 -1
  42. data/skeletons/project/application/commands/command.erb +1 -1
  43. metadata +10 -6
  44. data/docs/assets/javascripts/application.a59e2a89.js +0 -1
  45. data/docs/assets/stylesheets/application-palette.6079476c.css +0 -2
  46. data/docs/assets/stylesheets/application.ba0fd1a6.css +0 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3c95c762e32d8b39e339da91ac4fe5955781d9ce830a470812bb43aa332544fa
4
- data.tar.gz: 6798d59641964853ddc589207b314a8ea7f37aa10d56e4c5ec348619786d77be
3
+ metadata.gz: e284561733ecb0914676fbf1e92bb9543b3ea33dd5ed89984fcea0f6ac048475
4
+ data.tar.gz: 354a1c9daa25b93a151e6af1b6f48b2327a32111450c1f8d095954142cd8b7fc
5
5
  SHA512:
6
- metadata.gz: ba4a2817e0e0e5dcc737e50552edb82f818de31c035854e53f4cd4bd32c93745d6d2c7ca7af08ceabad949061e534c1cc6e8c02bc374844a20044c56b1b590c6
7
- data.tar.gz: dd7e786652b140b17c7563d2f59e320d2d8355e1c58c3d1dda0ee884e168e2388d60ae97df6aa1c9c633ac17f910279222a99f0e1854f9ddaa3a9aafcd1a6aa7
6
+ metadata.gz: 5c848c533eb62d95e95c47fc50816745df15c54d3ca556d7ad9b6c2f9289a9414e745e85779c3f5398aeaff0726c0082b5838ad36dc3a772f23d6dc6a9a84f34
7
+ data.tar.gz: 17c14ab57ab7257b0c192e0f9de56717cfef0ffd410f676be69fc6d53c8d96e5598b71d5cadb30677cbfffe92cb2d78fecc933c8e77f1ce04f26051eb4a7b583
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.4 (Sep 4, 2018)
4
+
5
+ * This is a dummy release required to update the License in the Gemspec file. The license has not changed (GPLv3).
6
+
7
+ ## 0.2.3 (Sep 4, 2018)
8
+
9
+ ### Features
10
+
11
+ * Interactive Commands -- Prompt the user for parameters with a given value
12
+
13
+ ### Improvements
14
+
15
+ * Added documentation on logging
16
+
3
17
  ## 0.2.2 (Aug 22, 2018)
4
18
 
5
19
  ### Features
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rbcli (0.2.2)
4
+ rbcli (0.2.4)
5
5
  aws-sdk-dynamodb (~> 1.6)
6
6
  colorize (~> 0.8)
7
7
  deep_merge (~> 1.2)
@@ -71,4 +71,4 @@ DEPENDENCIES
71
71
  rbcli!
72
72
 
73
73
  BUNDLED WITH
74
- 1.16.2
74
+ 1.16.4
data/README.md CHANGED
@@ -2,7 +2,11 @@
2
2
 
3
3
  RBCli is currently in Alpha stages of development. All releases can be considered stable, though breaking changes may be made between versions.
4
4
 
5
- Latest Release: v0.2.2 (Aug 22, 2018) -- See the [changelog][changelog] for complete details.
5
+ Latest Release: v0.2.4 (Sep 4, 2018) -- See the [changelog][changelog] for complete details.
6
+
7
+ * Interactive Commands
8
+
9
+ Previous Release: v0.2.2 (Aug 22, 2018)
6
10
 
7
11
  * Lazy loading for improved startup time
8
12
  * Hooks are now defined under `Rbcli.Configurate.hooks`.
@@ -53,6 +57,7 @@ Some of its key features include:
53
57
 
54
58
  * __Remote Execution__: Automatically execute commands on remote machines via SSH
55
59
 
60
+ * __Interactive Commands__: Automatically prompt users for paramter values if not given on the command line. This pattern allows for easy user interaction while still allowing scripting without the use of _expect_.
56
61
 
57
62
  For more information, take a look at the __[official documentation][documentation_home]__ or keep reading for a quick reference.
58
63
 
@@ -0,0 +1,37 @@
1
+ # Interactive Commands
2
+
3
+ ## Why interactive commands?
4
+
5
+ When catering to an audience of users who are not accustomed to scripting, you may want to prompt them for the information directly (the typical CS-101 'puts' and 'gets' pattern). This can be a lot more straightforward than having to read the help texts of your tool, and trying multiple times to enter all of the required data.
6
+
7
+ Of course, we want to make sure that scripting with the tool still works well (headless interaction). We accomplish this by extending our parameters with a `prompt` option; RBCli will continue to accept the parameter as usual, but if the parameter is omitted then it will prompt the user with the given text.
8
+
9
+ ## How to do it with Rbcli
10
+
11
+ There is an option when declaring a command's parameters to prompt the user for a value if not entered on the command line. This can be done with the `prompt:` keyword. For example:
12
+
13
+ ```ruby
14
+ class Mycmd < Rbcli::Command
15
+ parameter :sort, 'Sort output alphabetically', type: :boolean, default: false, prompt: "Sort output alphabetically?"
16
+ action do |params, args, global_opts, config|
17
+ puts params[:sort]
18
+ end
19
+ end
20
+ ```
21
+
22
+ Now, if we run the command while omitting the `--sort` parameter, as such:
23
+
24
+ ```bash
25
+ mytool mycmd
26
+ ```
27
+
28
+ That should give you the prompt:
29
+
30
+ ```
31
+ Sort output alphabetically? (y/N):
32
+ ```
33
+
34
+ Because we set the parameter to default to `false` the default here is `N`, which is used if the user hits enter without entering a letter. If the default was set to `true`, then the `Y` would be capitalized and be the default.
35
+
36
+ String parameters behave similarly, but default to the string defined instead of a boolean value.
37
+
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.4 (Sep 4, 2018)
4
+
5
+ * This is a dummy release required to update the License in the Gemspec file. The license has not changed (GPLv3).
6
+
7
+ ## 0.2.3 (Sep 4, 2018)
8
+
9
+ ### Features
10
+
11
+ * Interactive Commands -- Prompt the user for parameters with a given value
12
+
13
+ ### Improvements
14
+
15
+ * Added documentation on logging
16
+
3
17
  ## 0.2.2 (Aug 22, 2018)
4
18
 
5
19
  ### Features
@@ -139,6 +139,30 @@ mytool -c list -asd
139
139
 
140
140
  Note how the parameters come after the `list` command in the syntax above. As you create more commands, each will have its own unique set of parameters, while the options remain _before_ the command and are available to all of them.
141
141
 
142
+ ### User Prompting
143
+
144
+ There is an additional option when declaring parameters to prompt the user for a value if not entered on the command line. This can be done with the `prompt:` keyword. Let's change one of our parameters to utilize it:
145
+
146
+ ```ruby
147
+ parameter :sort, 'Sort output alphabetically', type: :boolean, default: false, prompt: "Sort output alphabetically?"
148
+ ```
149
+
150
+ Now, let's run the tool while omitting the `--sort` parameter, as such:
151
+
152
+ ```bash
153
+ mytool -c list -ad
154
+ ```
155
+
156
+ This should give you the prompt:
157
+
158
+ ```
159
+ Sort output alphabetically? (y/N):
160
+ ```
161
+
162
+ Because we set the parameter to default to `false` the default here is `N`, which is used if the user hits enter without entering a letter. If the default was set to `true`, then the `Y` would be capitalized and be the default.
163
+
164
+ For more information, see the documentation on [Interactive Commands][interactive_commands].
165
+
142
166
  ## Arguments
143
167
 
144
168
  Lastly on the command line, there are arguments. Arguments are simply strings without the `-` character in front, and automatically get passed into an array in your applicaiton. Let's take a look at how we can use them.
@@ -249,3 +273,4 @@ Next, we're going to take a quick look at how to publish and distribute your app
249
273
 
250
274
  [user_config_documentation]: ../advanced/user_config_files.md
251
275
  [regex_explanation]: https://medium.com/factory-mind/regex-tutorial-a-simple-cheatsheet-by-examples-649dc1c3f285
276
+ [interactive_commands]: ../advanced/interactive_commands.md
@@ -2,7 +2,7 @@
2
2
 
3
3
  if ! pip list | grep mkdocs &> /dev/null; then
4
4
  echo "Python package mkdocs not found. Installing..."
5
- pip install mkdocs mkdocs-material
5
+ sudo -H pip install mkdocs mkdocs-material
6
6
  fi
7
7
 
8
8
  DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
@@ -18,16 +18,18 @@ pages:
18
18
  - Command Types: advanced/command_types.md
19
19
  - User Config Files: advanced/user_config_files.md
20
20
  - Hooks: advanced/hooks.md
21
+ - Logging: advanced/logging.md
21
22
  - Automatic Updates: advanced/automatic_updates.md
22
23
  - State Storage: advanced/state_storage.md
23
24
  - Distributed State Locking: advanced/distributed_state_locking.md
24
25
  - Remote Execution: advanced/remote_execution.md
26
+ - Interactive Commands: advanced/interactive_commands.md
25
27
  - Development:
26
28
  - Contribution Guide: development/contributing.md
27
29
  - License Info: development/license.md
28
30
  - Code of Conduct: development/code_of_conduct.md
29
31
  - Changelog: imported/changelog.md
30
- - $ whoami: whoami.md
32
+ - whoami: whoami.md
31
33
 
32
34
  # The repo link on the top-right of the page
33
35
  #repo_name: GitHub
@@ -36,7 +36,7 @@
36
36
  <meta name="lang:search.tokenizer" content="[\s\-]+">
37
37
 
38
38
  <link rel="shortcut icon" href="/assets/images/favicon.png">
39
- <meta name="generator" content="mkdocs-0.17.5, mkdocs-material-2.9.2">
39
+ <meta name="generator" content="mkdocs-1.0.3, mkdocs-material-3.0.4">
40
40
 
41
41
 
42
42
 
@@ -44,7 +44,7 @@
44
44
 
45
45
 
46
46
 
47
- <link rel="stylesheet" href="/assets/stylesheets/application.ba0fd1a6.css">
47
+ <link rel="stylesheet" href="/assets/stylesheets/application.451f80e5.css">
48
48
 
49
49
 
50
50
 
@@ -52,8 +52,8 @@
52
52
  <script src="/assets/javascripts/modernizr.1aa3b519.js"></script>
53
53
 
54
54
 
55
- <link href="https://fonts.gstatic.com" rel="preconnect" crossorigin>
56
55
 
56
+ <link href="https://fonts.gstatic.com" rel="preconnect" crossorigin>
57
57
  <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700|Roboto+Mono">
58
58
  <style>body,input{font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono","Courier New",Courier,monospace}</style>
59
59
 
@@ -99,7 +99,7 @@
99
99
  <nav class="md-header-nav md-grid">
100
100
  <div class="md-flex">
101
101
  <div class="md-flex__cell md-flex__cell--shrink">
102
- <a href="/" title="RBCli Documentation" class="md-header-nav__button md-logo">
102
+ <a href="/." title="RBCli Documentation" class="md-header-nav__button md-logo">
103
103
 
104
104
  <i class="md-icon">devices</i>
105
105
 
@@ -195,7 +195,7 @@
195
195
 
196
196
  <li class="md-tabs__item">
197
197
 
198
- <a href="/" title="Home" class="md-tabs__link md-tabs__link--active">
198
+ <a href="/." title="Home" class="md-tabs__link md-tabs__link--active">
199
199
  Home
200
200
  </a>
201
201
 
@@ -258,11 +258,11 @@
258
258
  <div class="md-sidebar__inner">
259
259
  <nav class="md-nav md-nav--primary" data-md-level="0">
260
260
  <label class="md-nav__title md-nav__title--site" for="__drawer">
261
- <span class="md-nav__button md-logo">
261
+ <a href="/." title="RBCli Documentation" class="md-nav__button md-logo">
262
262
 
263
263
  <i class="md-icon">devices</i>
264
264
 
265
- </span>
265
+ </a>
266
266
  RBCli Documentation
267
267
  </label>
268
268
 
@@ -296,7 +296,7 @@
296
296
 
297
297
 
298
298
  <li class="md-nav__item">
299
- <a href="/" title="Home" class="md-nav__link">
299
+ <a href="/." title="Home" class="md-nav__link">
300
300
  Home
301
301
  </a>
302
302
  </li>
@@ -458,6 +458,18 @@
458
458
 
459
459
 
460
460
 
461
+ <li class="md-nav__item">
462
+ <a href="/advanced/logging/" title="Logging" class="md-nav__link">
463
+ Logging
464
+ </a>
465
+ </li>
466
+
467
+
468
+
469
+
470
+
471
+
472
+
461
473
  <li class="md-nav__item">
462
474
  <a href="/advanced/automatic_updates/" title="Automatic Updates" class="md-nav__link">
463
475
  Automatic Updates
@@ -501,6 +513,18 @@
501
513
  </li>
502
514
 
503
515
 
516
+
517
+
518
+
519
+
520
+
521
+ <li class="md-nav__item">
522
+ <a href="/advanced/interactive_commands/" title="Interactive Commands" class="md-nav__link">
523
+ Interactive Commands
524
+ </a>
525
+ </li>
526
+
527
+
504
528
  </ul>
505
529
  </nav>
506
530
  </li>
@@ -584,8 +608,8 @@
584
608
 
585
609
 
586
610
  <li class="md-nav__item">
587
- <a href="/whoami/" title="$ whoami" class="md-nav__link">
588
- $ whoami
611
+ <a href="/whoami/" title="whoami" class="md-nav__link">
612
+ whoami
589
613
  </a>
590
614
  </li>
591
615
 
@@ -639,9 +663,9 @@
639
663
 
640
664
  </div>
641
665
 
642
- <script src="/assets/javascripts/application.a59e2a89.js"></script>
666
+ <script src="/assets/javascripts/application.583bbe55.js"></script>
643
667
 
644
- <script>app.initialize({version:"0.17.5",url:{base:""}})</script>
668
+ <script>app.initialize({version:"1.0.3",url:{base:"/"}})</script>
645
669
 
646
670
 
647
671
 
@@ -36,7 +36,7 @@
36
36
  <meta name="lang:search.tokenizer" content="[\s\-]+">
37
37
 
38
38
  <link rel="shortcut icon" href="../../assets/images/favicon.png">
39
- <meta name="generator" content="mkdocs-0.17.5, mkdocs-material-2.9.2">
39
+ <meta name="generator" content="mkdocs-1.0.3, mkdocs-material-3.0.4">
40
40
 
41
41
 
42
42
 
@@ -44,7 +44,7 @@
44
44
 
45
45
 
46
46
 
47
- <link rel="stylesheet" href="../../assets/stylesheets/application.ba0fd1a6.css">
47
+ <link rel="stylesheet" href="../../assets/stylesheets/application.451f80e5.css">
48
48
 
49
49
 
50
50
 
@@ -52,8 +52,8 @@
52
52
  <script src="../../assets/javascripts/modernizr.1aa3b519.js"></script>
53
53
 
54
54
 
55
- <link href="https://fonts.gstatic.com" rel="preconnect" crossorigin>
56
55
 
56
+ <link href="https://fonts.gstatic.com" rel="preconnect" crossorigin>
57
57
  <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700|Roboto+Mono">
58
58
  <style>body,input{font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono","Courier New",Courier,monospace}</style>
59
59
 
@@ -94,7 +94,7 @@
94
94
  <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
95
95
  <label class="md-overlay" data-md-component="overlay" for="__drawer"></label>
96
96
 
97
- <a href="#automatic-updates" tabindex="1" class="md-skip">
97
+ <a href="../../#automatic-updates" tabindex="1" class="md-skip">
98
98
  Skip to content
99
99
  </a>
100
100
 
@@ -264,11 +264,11 @@
264
264
  <div class="md-sidebar__inner">
265
265
  <nav class="md-nav md-nav--primary" data-md-level="0">
266
266
  <label class="md-nav__title md-nav__title--site" for="__drawer">
267
- <span class="md-nav__button md-logo">
267
+ <a href="../.." title="RBCli Documentation" class="md-nav__button md-logo">
268
268
 
269
269
  <i class="md-icon">devices</i>
270
270
 
271
- </span>
271
+ </a>
272
272
  RBCli Documentation
273
273
  </label>
274
274
 
@@ -465,6 +465,18 @@
465
465
 
466
466
 
467
467
 
468
+
469
+ <li class="md-nav__item">
470
+ <a href="../logging/" title="Logging" class="md-nav__link">
471
+ Logging
472
+ </a>
473
+ </li>
474
+
475
+
476
+
477
+
478
+
479
+
468
480
 
469
481
 
470
482
 
@@ -554,6 +566,18 @@
554
566
  </li>
555
567
 
556
568
 
569
+
570
+
571
+
572
+
573
+
574
+ <li class="md-nav__item">
575
+ <a href="../interactive_commands/" title="Interactive Commands" class="md-nav__link">
576
+ Interactive Commands
577
+ </a>
578
+ </li>
579
+
580
+
557
581
  </ul>
558
582
  </nav>
559
583
  </li>
@@ -637,8 +661,8 @@
637
661
 
638
662
 
639
663
  <li class="md-nav__item">
640
- <a href="../../whoami/" title="$ whoami" class="md-nav__link">
641
- $ whoami
664
+ <a href="../../whoami/" title="whoami" class="md-nav__link">
665
+ whoami
642
666
  </a>
643
667
  </li>
644
668
 
@@ -736,7 +760,7 @@
736
760
  <div class="md-footer-nav">
737
761
  <nav class="md-footer-nav__inner md-grid">
738
762
 
739
- <a href="../hooks/" title="Hooks" class="md-flex md-footer-nav__link md-footer-nav__link--prev" rel="prev">
763
+ <a href="../logging/" title="Logging" class="md-flex md-footer-nav__link md-footer-nav__link--prev" rel="prev">
740
764
  <div class="md-flex__cell md-flex__cell--shrink">
741
765
  <i class="md-icon md-icon--arrow-back md-footer-nav__button"></i>
742
766
  </div>
@@ -745,7 +769,7 @@
745
769
  <span class="md-footer-nav__direction">
746
770
  Previous
747
771
  </span>
748
- Hooks
772
+ Logging
749
773
  </span>
750
774
  </div>
751
775
  </a>
@@ -791,9 +815,9 @@
791
815
 
792
816
  </div>
793
817
 
794
- <script src="../../assets/javascripts/application.a59e2a89.js"></script>
818
+ <script src="../../assets/javascripts/application.583bbe55.js"></script>
795
819
 
796
- <script>app.initialize({version:"0.17.5",url:{base:"../.."}})</script>
820
+ <script>app.initialize({version:"1.0.3",url:{base:"../.."}})</script>
797
821
 
798
822
 
799
823
 
@@ -36,7 +36,7 @@
36
36
  <meta name="lang:search.tokenizer" content="[\s\-]+">
37
37
 
38
38
  <link rel="shortcut icon" href="../../assets/images/favicon.png">
39
- <meta name="generator" content="mkdocs-0.17.5, mkdocs-material-2.9.2">
39
+ <meta name="generator" content="mkdocs-1.0.3, mkdocs-material-3.0.4">
40
40
 
41
41
 
42
42
 
@@ -44,7 +44,7 @@
44
44
 
45
45
 
46
46
 
47
- <link rel="stylesheet" href="../../assets/stylesheets/application.ba0fd1a6.css">
47
+ <link rel="stylesheet" href="../../assets/stylesheets/application.451f80e5.css">
48
48
 
49
49
 
50
50
 
@@ -52,8 +52,8 @@
52
52
  <script src="../../assets/javascripts/modernizr.1aa3b519.js"></script>
53
53
 
54
54
 
55
- <link href="https://fonts.gstatic.com" rel="preconnect" crossorigin>
56
55
 
56
+ <link href="https://fonts.gstatic.com" rel="preconnect" crossorigin>
57
57
  <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700|Roboto+Mono">
58
58
  <style>body,input{font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono","Courier New",Courier,monospace}</style>
59
59
 
@@ -94,7 +94,7 @@
94
94
  <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
95
95
  <label class="md-overlay" data-md-component="overlay" for="__drawer"></label>
96
96
 
97
- <a href="#advanced-command-types" tabindex="1" class="md-skip">
97
+ <a href="../../#advanced-command-types" tabindex="1" class="md-skip">
98
98
  Skip to content
99
99
  </a>
100
100
 
@@ -264,11 +264,11 @@
264
264
  <div class="md-sidebar__inner">
265
265
  <nav class="md-nav md-nav--primary" data-md-level="0">
266
266
  <label class="md-nav__title md-nav__title--site" for="__drawer">
267
- <span class="md-nav__button md-logo">
267
+ <a href="../.." title="RBCli Documentation" class="md-nav__button md-logo">
268
268
 
269
269
  <i class="md-icon">devices</i>
270
270
 
271
- </span>
271
+ </a>
272
272
  RBCli Documentation
273
273
  </label>
274
274
 
@@ -545,6 +545,18 @@
545
545
 
546
546
 
547
547
 
548
+ <li class="md-nav__item">
549
+ <a href="../logging/" title="Logging" class="md-nav__link">
550
+ Logging
551
+ </a>
552
+ </li>
553
+
554
+
555
+
556
+
557
+
558
+
559
+
548
560
  <li class="md-nav__item">
549
561
  <a href="../automatic_updates/" title="Automatic Updates" class="md-nav__link">
550
562
  Automatic Updates
@@ -588,6 +600,18 @@
588
600
  </li>
589
601
 
590
602
 
603
+
604
+
605
+
606
+
607
+
608
+ <li class="md-nav__item">
609
+ <a href="../interactive_commands/" title="Interactive Commands" class="md-nav__link">
610
+ Interactive Commands
611
+ </a>
612
+ </li>
613
+
614
+
591
615
  </ul>
592
616
  </nav>
593
617
  </li>
@@ -671,8 +695,8 @@
671
695
 
672
696
 
673
697
  <li class="md-nav__item">
674
- <a href="../../whoami/" title="$ whoami" class="md-nav__link">
675
- $ whoami
698
+ <a href="../../whoami/" title="whoami" class="md-nav__link">
699
+ whoami
676
700
  </a>
677
701
  </li>
678
702
 
@@ -946,9 +970,9 @@ end
946
970
 
947
971
  </div>
948
972
 
949
- <script src="../../assets/javascripts/application.a59e2a89.js"></script>
973
+ <script src="../../assets/javascripts/application.583bbe55.js"></script>
950
974
 
951
- <script>app.initialize({version:"0.17.5",url:{base:"../.."}})</script>
975
+ <script>app.initialize({version:"1.0.3",url:{base:"../.."}})</script>
952
976
 
953
977
 
954
978