command_kit 0.4.1 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ruby.yml +1 -1
  3. data/.rubocop.yml +7 -1
  4. data/ChangeLog.md +11 -0
  5. data/Gemfile +2 -0
  6. data/README.md +3 -0
  7. data/Rakefile +2 -0
  8. data/command_kit.gemspec +8 -6
  9. data/lib/command_kit/arguments/argument.rb +3 -1
  10. data/lib/command_kit/arguments/argument_value.rb +2 -0
  11. data/lib/command_kit/arguments.rb +5 -5
  12. data/lib/command_kit/bug_report.rb +4 -2
  13. data/lib/command_kit/colors.rb +2 -2
  14. data/lib/command_kit/command.rb +13 -11
  15. data/lib/command_kit/command_name.rb +3 -1
  16. data/lib/command_kit/commands/auto_load/subcommand.rb +3 -1
  17. data/lib/command_kit/commands/auto_load.rb +3 -3
  18. data/lib/command_kit/commands/auto_require.rb +5 -3
  19. data/lib/command_kit/commands/command.rb +4 -2
  20. data/lib/command_kit/commands/help.rb +2 -2
  21. data/lib/command_kit/commands/parent_command.rb +2 -0
  22. data/lib/command_kit/commands/subcommand.rb +2 -0
  23. data/lib/command_kit/commands.rb +8 -8
  24. data/lib/command_kit/completion/install.rb +277 -0
  25. data/lib/command_kit/description.rb +3 -1
  26. data/lib/command_kit/edit.rb +1 -1
  27. data/lib/command_kit/env/home.rb +1 -1
  28. data/lib/command_kit/env/path.rb +1 -1
  29. data/lib/command_kit/env/prefix.rb +41 -0
  30. data/lib/command_kit/env/shell.rb +58 -0
  31. data/lib/command_kit/env.rb +2 -0
  32. data/lib/command_kit/examples.rb +4 -2
  33. data/lib/command_kit/exception_handler.rb +4 -2
  34. data/lib/command_kit/file_utils.rb +2 -0
  35. data/lib/command_kit/help/man.rb +4 -4
  36. data/lib/command_kit/help.rb +2 -0
  37. data/lib/command_kit/interactive.rb +1 -1
  38. data/lib/command_kit/main.rb +2 -0
  39. data/lib/command_kit/open_app.rb +4 -2
  40. data/lib/command_kit/options/option.rb +3 -1
  41. data/lib/command_kit/options/option_value.rb +2 -2
  42. data/lib/command_kit/options/parser.rb +3 -3
  43. data/lib/command_kit/options/quiet.rb +3 -1
  44. data/lib/command_kit/options/verbose.rb +3 -1
  45. data/lib/command_kit/options/version.rb +3 -1
  46. data/lib/command_kit/options.rb +5 -3
  47. data/lib/command_kit/os/linux.rb +3 -1
  48. data/lib/command_kit/os.rb +2 -0
  49. data/lib/command_kit/package_manager.rb +6 -4
  50. data/lib/command_kit/pager.rb +4 -4
  51. data/lib/command_kit/printing/fields.rb +3 -1
  52. data/lib/command_kit/printing/indent.rb +2 -0
  53. data/lib/command_kit/printing/lists.rb +1 -1
  54. data/lib/command_kit/printing/tables/border_style.rb +2 -0
  55. data/lib/command_kit/printing/tables/row_builder.rb +3 -1
  56. data/lib/command_kit/printing/tables/style.rb +1 -1
  57. data/lib/command_kit/printing/tables/table_builder.rb +3 -1
  58. data/lib/command_kit/printing/tables.rb +4 -4
  59. data/lib/command_kit/printing.rb +1 -1
  60. data/lib/command_kit/program_name.rb +2 -0
  61. data/lib/command_kit/stdio.rb +2 -0
  62. data/lib/command_kit/sudo.rb +1 -1
  63. data/lib/command_kit/terminal.rb +4 -2
  64. data/lib/command_kit/usage.rb +4 -2
  65. data/lib/command_kit/version.rb +3 -1
  66. data/lib/command_kit/xdg.rb +4 -2
  67. data/lib/command_kit.rb +4 -2
  68. metadata +5 -65
  69. data/spec/arguments/argument_spec.rb +0 -133
  70. data/spec/arguments/argument_value_spec.rb +0 -66
  71. data/spec/arguments_spec.rb +0 -279
  72. data/spec/bug_report_spec.rb +0 -266
  73. data/spec/colors_spec.rb +0 -771
  74. data/spec/command_kit_spec.rb +0 -8
  75. data/spec/command_name_spec.rb +0 -130
  76. data/spec/command_spec.rb +0 -123
  77. data/spec/commands/auto_load/subcommand_spec.rb +0 -82
  78. data/spec/commands/auto_load_spec.rb +0 -159
  79. data/spec/commands/auto_require_spec.rb +0 -142
  80. data/spec/commands/fixtures/test_auto_load/cli/commands/test1.rb +0 -10
  81. data/spec/commands/fixtures/test_auto_load/cli/commands/test2.rb +0 -10
  82. data/spec/commands/fixtures/test_auto_require/lib/test_auto_require/cli/commands/test1.rb +0 -10
  83. data/spec/commands/help_spec.rb +0 -66
  84. data/spec/commands/parent_command_spec.rb +0 -40
  85. data/spec/commands/subcommand_spec.rb +0 -99
  86. data/spec/commands_spec.rb +0 -865
  87. data/spec/description_spec.rb +0 -179
  88. data/spec/edit_spec.rb +0 -72
  89. data/spec/env/home_spec.rb +0 -46
  90. data/spec/env/path_spec.rb +0 -84
  91. data/spec/env_spec.rb +0 -123
  92. data/spec/examples_spec.rb +0 -211
  93. data/spec/exception_handler_spec.rb +0 -103
  94. data/spec/file_utils_spec.rb +0 -59
  95. data/spec/fixtures/template.erb +0 -5
  96. data/spec/help/man_spec.rb +0 -345
  97. data/spec/help_spec.rb +0 -94
  98. data/spec/inflector_spec.rb +0 -166
  99. data/spec/interactive_spec.rb +0 -415
  100. data/spec/main_spec.rb +0 -179
  101. data/spec/man_spec.rb +0 -46
  102. data/spec/open_app_spec.rb +0 -85
  103. data/spec/options/option_spec.rb +0 -343
  104. data/spec/options/option_value_spec.rb +0 -171
  105. data/spec/options/parser_spec.rb +0 -274
  106. data/spec/options/quiet_spec.rb +0 -51
  107. data/spec/options/verbose_spec.rb +0 -51
  108. data/spec/options/version_spec.rb +0 -146
  109. data/spec/options_spec.rb +0 -465
  110. data/spec/os/linux_spec.rb +0 -164
  111. data/spec/os_spec.rb +0 -233
  112. data/spec/package_manager_spec.rb +0 -806
  113. data/spec/pager_spec.rb +0 -217
  114. data/spec/printing/fields_spec.rb +0 -167
  115. data/spec/printing/indent_spec.rb +0 -132
  116. data/spec/printing/lists_spec.rb +0 -99
  117. data/spec/printing/tables/border_style.rb +0 -43
  118. data/spec/printing/tables/cell_builer_spec.rb +0 -135
  119. data/spec/printing/tables/row_builder_spec.rb +0 -165
  120. data/spec/printing/tables/style_spec.rb +0 -377
  121. data/spec/printing/tables/table_builder_spec.rb +0 -252
  122. data/spec/printing/tables/table_formatter_spec.rb +0 -1190
  123. data/spec/printing/tables_spec.rb +0 -1069
  124. data/spec/printing_spec.rb +0 -106
  125. data/spec/program_name_spec.rb +0 -70
  126. data/spec/spec_helper.rb +0 -3
  127. data/spec/stdio_spec.rb +0 -264
  128. data/spec/sudo_spec.rb +0 -51
  129. data/spec/terminal_spec.rb +0 -231
  130. data/spec/usage_spec.rb +0 -237
  131. data/spec/xdg_spec.rb +0 -191
@@ -0,0 +1,41 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative '../env'
4
+
5
+ module CommandKit
6
+ module Env
7
+ #
8
+ # Methods related to the `PREFIX` environment variable.
9
+ #
10
+ # ## Environment Variables
11
+ #
12
+ # * `PREFIX` - The optional root prefix of the file-system.
13
+ #
14
+ # @since 0.5.0
15
+ #
16
+ module Prefix
17
+ include Env
18
+
19
+ # The root of the file-system.
20
+ #
21
+ # @return [String]
22
+ # The `PREFIX` environment variable, or `/` if no `PREFIX` environment
23
+ # variable is given.
24
+ attr_reader :root
25
+
26
+ #
27
+ # Initialize {#root} based on the `PREFIX` environment
28
+ #
29
+ # @param [Hash{Symbol => Object}] kwargs
30
+ # Additional keyword arguments.
31
+ #
32
+ # @api public
33
+ #
34
+ def initialize(**kwargs)
35
+ super(**kwargs)
36
+
37
+ @root = env.fetch('PREFIX','/')
38
+ end
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,58 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative '../env'
4
+
5
+ module CommandKit
6
+ module Env
7
+ #
8
+ # Methods related to the `SHELL` environment variable.
9
+ #
10
+ # ## Environment Variables
11
+ #
12
+ # * `SHELL` - The current shell.
13
+ #
14
+ # @since 0.5.0
15
+ #
16
+ module Shell
17
+ include Env
18
+
19
+ # The current shell.
20
+ #
21
+ # @return [String, nil]
22
+ attr_reader :shell
23
+
24
+ # The current shell type.
25
+ #
26
+ # @return [:bash, :zsh, :fish, :dash, :mksh, :ksh, :tcsh, :csh, :sh, nil]
27
+ attr_reader :shell_type
28
+
29
+ #
30
+ # Initialize {#shell} and {#shell_type} based on the `SHELL` environment
31
+ # variable.
32
+ #
33
+ # @param [Hash{Symbol => Object}] kwargs
34
+ # Additional keyword arguments.
35
+ #
36
+ # @api public
37
+ #
38
+ def initialize(**kwargs)
39
+ super(**kwargs)
40
+
41
+ @shell = env['SHELL']
42
+ @shell_type = if @shell
43
+ case File.basename(@shell)
44
+ when /bash/ then :bash
45
+ when /zsh/ then :zsh
46
+ when /fish/ then :fish
47
+ when /dash/ then :dash
48
+ when /mksh/ then :mksh
49
+ when /ksh/ then :ksh
50
+ when /tcsh/ then :tcsh
51
+ when /csh/ then :csh
52
+ when /sh/ then :sh
53
+ end
54
+ end
55
+ end
56
+ end
57
+ end
58
+ end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module CommandKit
2
4
  #
3
5
  # Provides access to environment variables.
@@ -1,5 +1,7 @@
1
- require 'command_kit/help'
2
- require 'command_kit/command_name'
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'help'
4
+ require_relative 'command_name'
3
5
 
4
6
  module CommandKit
5
7
  #
@@ -1,5 +1,7 @@
1
- require 'command_kit/main'
2
- require 'command_kit/printing'
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'main'
4
+ require_relative 'printing'
3
5
 
4
6
  module CommandKit
5
7
  #
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'fileutils'
2
4
  require 'erb'
3
5
 
@@ -1,9 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'command_kit/command_name'
4
- require 'command_kit/help'
5
- require 'command_kit/stdio'
6
- require 'command_kit/man'
3
+ require_relative '../command_name'
4
+ require_relative '../help'
5
+ require_relative '../stdio'
6
+ require_relative '../man'
7
7
 
8
8
  module CommandKit
9
9
  module Help
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module CommandKit
2
4
  #
3
5
  # Defines a place-holder {Help#help help} method.
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'command_kit/stdio'
3
+ require_relative 'stdio'
4
4
 
5
5
  module CommandKit
6
6
  #
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module CommandKit
2
4
  #
3
5
  # Defines a `main` method.
@@ -1,5 +1,7 @@
1
- require 'command_kit/os'
2
- require 'command_kit/env/path'
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'os'
4
+ require_relative 'env/path'
3
5
 
4
6
  module CommandKit
5
7
  #
@@ -1,4 +1,6 @@
1
- require 'command_kit/options/option_value'
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'option_value'
2
4
 
3
5
  require 'optparse'
4
6
  require 'date'
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'command_kit/arguments/argument_value'
4
- require 'command_kit/inflector'
3
+ require_relative '../arguments/argument_value'
4
+ require_relative '../inflector'
5
5
 
6
6
  require 'optparse'
7
7
  require 'date'
@@ -1,8 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'command_kit/main'
4
- require 'command_kit/usage'
5
- require 'command_kit/printing'
3
+ require_relative '../main'
4
+ require_relative '../usage'
5
+ require_relative '../printing'
6
6
 
7
7
  require 'optparse'
8
8
 
@@ -1,4 +1,6 @@
1
- require 'command_kit/options'
1
+ # frozen_string_literal: true
2
+
3
+ require_relative '../options'
2
4
 
3
5
  module CommandKit
4
6
  module Options
@@ -1,4 +1,6 @@
1
- require 'command_kit/options'
1
+ # frozen_string_literal: true
2
+
3
+ require_relative '../options'
2
4
 
3
5
  module CommandKit
4
6
  module Options
@@ -1,4 +1,6 @@
1
- require 'command_kit/options'
1
+ # frozen_string_literal: true
2
+
3
+ require_relative '../options'
2
4
 
3
5
  module CommandKit
4
6
  module Options
@@ -1,6 +1,8 @@
1
- require 'command_kit/arguments'
2
- require 'command_kit/options/option'
3
- require 'command_kit/options/parser'
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'arguments'
4
+ require_relative 'options/option'
5
+ require_relative 'options/parser'
4
6
 
5
7
  module CommandKit
6
8
  #
@@ -1,4 +1,6 @@
1
- require 'command_kit/os'
1
+ # frozen_string_literal: true
2
+
3
+ require_relative '../os'
2
4
 
3
5
  module CommandKit
4
6
  module OS
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module CommandKit
2
4
  #
3
5
  # Provides methods for determining the current OS.
@@ -1,7 +1,9 @@
1
- require 'command_kit/os'
2
- require 'command_kit/os/linux'
3
- require 'command_kit/env/path'
4
- require 'command_kit/sudo'
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'os'
4
+ require_relative 'os/linux'
5
+ require_relative 'env/path'
6
+ require_relative 'sudo'
5
7
 
6
8
  module CommandKit
7
9
  #
@@ -1,9 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'command_kit/env'
4
- require 'command_kit/env/path'
5
- require 'command_kit/stdio'
6
- require 'command_kit/terminal'
3
+ require_relative 'env'
4
+ require_relative 'env/path'
5
+ require_relative 'stdio'
6
+ require_relative 'terminal'
7
7
 
8
8
  require 'shellwords'
9
9
 
@@ -1,4 +1,6 @@
1
- require 'command_kit/printing/indent'
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'indent'
2
4
 
3
5
  module CommandKit
4
6
  module Printing
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module CommandKit
2
4
  module Printing
3
5
  #
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'command_kit/printing/indent'
3
+ require_relative 'indent'
4
4
 
5
5
  module CommandKit
6
6
  module Printing
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module CommandKit
2
4
  module Printing
3
5
  module Tables
@@ -1,4 +1,6 @@
1
- require 'command_kit/printing/tables/cell_builder'
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'cell_builder'
2
4
 
3
5
  module CommandKit
4
6
  module Printing
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'command_kit/printing/tables/border_style'
3
+ require_relative 'border_style'
4
4
 
5
5
  module CommandKit
6
6
  module Printing
@@ -1,4 +1,6 @@
1
- require 'command_kit/printing/tables/row_builder'
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'row_builder'
2
4
 
3
5
  module CommandKit
4
6
  module Printing
@@ -1,9 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'command_kit/printing/indent'
4
- require 'command_kit/printing/tables/table_builder'
5
- require 'command_kit/printing/tables/style'
6
- require 'command_kit/printing/tables/table_formatter'
3
+ require_relative 'indent'
4
+ require_relative 'tables/table_builder'
5
+ require_relative 'tables/style'
6
+ require_relative 'tables/table_formatter'
7
7
 
8
8
  module CommandKit
9
9
  module Printing
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'command_kit/stdio'
3
+ require_relative 'stdio'
4
4
 
5
5
  module CommandKit
6
6
  #
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module CommandKit
2
4
  #
3
5
  # Retrieves the current program name (`$PROGRAM_NAME`).
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module CommandKit
2
4
  #
3
5
  # Provides access to stdin, stdout, and stderr streams.
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'command_kit/os'
3
+ require_relative 'os'
4
4
 
5
5
  module CommandKit
6
6
  #
@@ -1,5 +1,7 @@
1
- require 'command_kit/stdio'
2
- require 'command_kit/env'
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'stdio'
4
+ require_relative 'env'
3
5
 
4
6
  begin
5
7
  require 'io/console'
@@ -1,5 +1,7 @@
1
- require 'command_kit/command_name'
2
- require 'command_kit/help'
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'command_name'
4
+ require_relative 'help'
3
5
 
4
6
  module CommandKit
5
7
  #
@@ -1,4 +1,6 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module CommandKit
2
4
  # command_kit version
3
- VERSION = "0.4.1"
5
+ VERSION = "0.5.1"
4
6
  end
@@ -1,5 +1,7 @@
1
- require 'command_kit/command_name'
2
- require 'command_kit/env/home'
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'command_name'
4
+ require_relative 'env/home'
3
5
 
4
6
  module CommandKit
5
7
  #
data/lib/command_kit.rb CHANGED
@@ -1,2 +1,4 @@
1
- require 'command_kit/command'
2
- require 'command_kit/version'
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'command_kit/command'
4
+ require_relative 'command_kit/version'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: command_kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Postmodern
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-04 00:00:00.000000000 Z
11
+ date: 2024-01-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -73,11 +73,14 @@ files:
73
73
  - lib/command_kit/commands/help.rb
74
74
  - lib/command_kit/commands/parent_command.rb
75
75
  - lib/command_kit/commands/subcommand.rb
76
+ - lib/command_kit/completion/install.rb
76
77
  - lib/command_kit/description.rb
77
78
  - lib/command_kit/edit.rb
78
79
  - lib/command_kit/env.rb
79
80
  - lib/command_kit/env/home.rb
80
81
  - lib/command_kit/env/path.rb
82
+ - lib/command_kit/env/prefix.rb
83
+ - lib/command_kit/env/shell.rb
81
84
  - lib/command_kit/examples.rb
82
85
  - lib/command_kit/exception_handler.rb
83
86
  - lib/command_kit/file_utils.rb
@@ -117,69 +120,6 @@ files:
117
120
  - lib/command_kit/usage.rb
118
121
  - lib/command_kit/version.rb
119
122
  - lib/command_kit/xdg.rb
120
- - spec/arguments/argument_spec.rb
121
- - spec/arguments/argument_value_spec.rb
122
- - spec/arguments_spec.rb
123
- - spec/bug_report_spec.rb
124
- - spec/colors_spec.rb
125
- - spec/command_kit_spec.rb
126
- - spec/command_name_spec.rb
127
- - spec/command_spec.rb
128
- - spec/commands/auto_load/subcommand_spec.rb
129
- - spec/commands/auto_load_spec.rb
130
- - spec/commands/auto_require_spec.rb
131
- - spec/commands/fixtures/test_auto_load/cli/commands/test1.rb
132
- - spec/commands/fixtures/test_auto_load/cli/commands/test2.rb
133
- - spec/commands/fixtures/test_auto_require/lib/test_auto_require/cli/commands/test1.rb
134
- - spec/commands/help_spec.rb
135
- - spec/commands/parent_command_spec.rb
136
- - spec/commands/subcommand_spec.rb
137
- - spec/commands_spec.rb
138
- - spec/description_spec.rb
139
- - spec/edit_spec.rb
140
- - spec/env/home_spec.rb
141
- - spec/env/path_spec.rb
142
- - spec/env_spec.rb
143
- - spec/examples_spec.rb
144
- - spec/exception_handler_spec.rb
145
- - spec/file_utils_spec.rb
146
- - spec/fixtures/template.erb
147
- - spec/help/man_spec.rb
148
- - spec/help_spec.rb
149
- - spec/inflector_spec.rb
150
- - spec/interactive_spec.rb
151
- - spec/main_spec.rb
152
- - spec/man_spec.rb
153
- - spec/open_app_spec.rb
154
- - spec/options/option_spec.rb
155
- - spec/options/option_value_spec.rb
156
- - spec/options/parser_spec.rb
157
- - spec/options/quiet_spec.rb
158
- - spec/options/verbose_spec.rb
159
- - spec/options/version_spec.rb
160
- - spec/options_spec.rb
161
- - spec/os/linux_spec.rb
162
- - spec/os_spec.rb
163
- - spec/package_manager_spec.rb
164
- - spec/pager_spec.rb
165
- - spec/printing/fields_spec.rb
166
- - spec/printing/indent_spec.rb
167
- - spec/printing/lists_spec.rb
168
- - spec/printing/tables/border_style.rb
169
- - spec/printing/tables/cell_builer_spec.rb
170
- - spec/printing/tables/row_builder_spec.rb
171
- - spec/printing/tables/style_spec.rb
172
- - spec/printing/tables/table_builder_spec.rb
173
- - spec/printing/tables/table_formatter_spec.rb
174
- - spec/printing/tables_spec.rb
175
- - spec/printing_spec.rb
176
- - spec/program_name_spec.rb
177
- - spec/spec_helper.rb
178
- - spec/stdio_spec.rb
179
- - spec/sudo_spec.rb
180
- - spec/terminal_spec.rb
181
- - spec/usage_spec.rb
182
- - spec/xdg_spec.rb
183
123
  homepage: https://github.com/postmodern/command_kit.rb#readme
184
124
  licenses:
185
125
  - MIT