command_line_helper 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +22 -0
- data/LICENSE +22 -0
- data/README.md +70 -0
- data/Rakefile +23 -0
- data/command_line_helper.gemspec +20 -0
- data/lib/command_line_helper.rb +8 -0
- data/lib/command_line_helper.rb~ +8 -0
- data/lib/command_line_helper/base.rb~ +70 -0
- data/lib/command_line_helper/help.rb~ +67 -0
- data/lib/command_line_helper/help_text.rb +67 -0
- data/lib/command_line_helper/helper.rb~ +59 -0
- data/lib/command_line_helper/program_name.rb +9 -0
- data/lib/command_line_helper/program_name.rb~ +12 -0
- data/lib/command_line_helper/version.rb +3 -0
- data/spec/lib/command_line_helper/base_spec.rb~ +73 -0
- data/spec/lib/command_line_helper/help_text_spec.rb +65 -0
- data/spec/lib/command_line_helper/help_text_spec.rb~ +79 -0
- data/spec/lib/command_line_helper/helper.rb~ +23 -0
- data/spec/lib/command_line_helper/helper_spec.rb~ +22 -0
- data/spec/lib/command_line_helper/program_name_spec.rb +20 -0
- data/spec/lib/command_line_helper/program_name_spec.rb~ +20 -0
- data/spec/reports/SPEC-CommandLineHelper-Base-help-info.0.xml +11 -0
- data/spec/reports/SPEC-CommandLineHelper-Base-help-info.1.xml +11 -0
- data/spec/reports/SPEC-CommandLineHelper-Base-help-info.2.xml +11 -0
- data/spec/reports/SPEC-CommandLineHelper-Base-help-info.3.xml +11 -0
- data/spec/reports/SPEC-CommandLineHelper-Base-help-info.xml +11 -0
- data/spec/reports/SPEC-CommandLineHelper-Base-option-details.0.xml +9 -0
- data/spec/reports/SPEC-CommandLineHelper-Base-option-details.1.xml +9 -0
- data/spec/reports/SPEC-CommandLineHelper-Base-option-details.2.xml +9 -0
- data/spec/reports/SPEC-CommandLineHelper-Base-option-details.3.xml +9 -0
- data/spec/reports/SPEC-CommandLineHelper-Base-option-details.xml +9 -0
- data/spec/reports/SPEC-CommandLineHelper-Base-program-name.0.xml +13 -0
- data/spec/reports/SPEC-CommandLineHelper-Base-program-name.1.xml +13 -0
- data/spec/reports/SPEC-CommandLineHelper-Base-program-name.2.xml +13 -0
- data/spec/reports/SPEC-CommandLineHelper-Base-program-name.3.xml +13 -0
- data/spec/reports/SPEC-CommandLineHelper-Base-program-name.xml +13 -0
- data/spec/reports/SPEC-CommandLineHelper-Base-short-hand-option.0.xml +11 -0
- data/spec/reports/SPEC-CommandLineHelper-Base-short-hand-option.1.xml +11 -0
- data/spec/reports/SPEC-CommandLineHelper-Base-short-hand-option.2.xml +11 -0
- data/spec/reports/SPEC-CommandLineHelper-Base-short-hand-option.3.xml +11 -0
- data/spec/reports/SPEC-CommandLineHelper-Base-short-hand-option.xml +11 -0
- data/spec/reports/SPEC-CommandLineHelper-Base.0.xml +7 -0
- data/spec/reports/SPEC-CommandLineHelper-Base.1.xml +9 -0
- data/spec/reports/SPEC-CommandLineHelper-Base.2.xml +7 -0
- data/spec/reports/SPEC-CommandLineHelper-Base.3.xml +9 -0
- data/spec/reports/SPEC-CommandLineHelper-Base.4.xml +7 -0
- data/spec/reports/SPEC-CommandLineHelper-Base.5.xml +9 -0
- data/spec/reports/SPEC-CommandLineHelper-Base.6.xml +7 -0
- data/spec/reports/SPEC-CommandLineHelper-Base.7.xml +9 -0
- data/spec/reports/SPEC-CommandLineHelper-Base.8.xml +7 -0
- data/spec/reports/SPEC-CommandLineHelper-Base.xml +9 -0
- data/spec/reports/SPEC-CommandLineHelper-HelpText-help-info.xml +11 -0
- data/spec/reports/SPEC-CommandLineHelper-HelpText-option-details.xml +9 -0
- data/spec/reports/SPEC-CommandLineHelper-HelpText-short-hand-option.xml +11 -0
- data/spec/reports/SPEC-CommandLineHelper-HelpText.0.xml +7 -0
- data/spec/reports/SPEC-CommandLineHelper-HelpText.xml +9 -0
- data/spec/reports/SPEC-CommandLineHelper-ProgramName-program-name.xml +11 -0
- data/spec/reports/SPEC-CommandLineHelper-ProgramName.xml +7 -0
- data/spec/spec_helper.rb +23 -0
- data/spec/spec_helper.rb~ +20 -0
- metadata +169 -0
@@ -0,0 +1,9 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="CommandLineHelper::Base#option_details" tests="1" time="0.000589" failures="0" errors="0" skipped="0">
|
3
|
+
<testcase name="CommandLineHelper::Base#option_details should return nice things" time="0.000392">
|
4
|
+
</testcase>
|
5
|
+
<system-out>
|
6
|
+
</system-out>
|
7
|
+
<system-err>
|
8
|
+
</system-err>
|
9
|
+
</testsuite>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="CommandLineHelper::Base#program_name" tests="3" time="0.005042" failures="0" errors="0" skipped="0">
|
3
|
+
<testcase name="CommandLineHelper::Base#program_name " time="0.000665">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="CommandLineHelper::Base#program_name " time="0.000522">
|
6
|
+
</testcase>
|
7
|
+
<testcase name="CommandLineHelper::Base#program_name " time="0.000564">
|
8
|
+
</testcase>
|
9
|
+
<system-out>
|
10
|
+
</system-out>
|
11
|
+
<system-err>
|
12
|
+
</system-err>
|
13
|
+
</testsuite>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="CommandLineHelper::Base#program_name" tests="3" time="0.001801" failures="0" errors="0" skipped="0">
|
3
|
+
<testcase name="CommandLineHelper::Base#program_name " time="0.000362">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="CommandLineHelper::Base#program_name " time="0.000507">
|
6
|
+
</testcase>
|
7
|
+
<testcase name="CommandLineHelper::Base#program_name " time="0.000586">
|
8
|
+
</testcase>
|
9
|
+
<system-out>
|
10
|
+
</system-out>
|
11
|
+
<system-err>
|
12
|
+
</system-err>
|
13
|
+
</testsuite>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="CommandLineHelper::Base#program_name" tests="3" time="0.001416" failures="0" errors="0" skipped="0">
|
3
|
+
<testcase name="CommandLineHelper::Base#program_name " time="0.000497">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="CommandLineHelper::Base#program_name " time="0.000372">
|
6
|
+
</testcase>
|
7
|
+
<testcase name="CommandLineHelper::Base#program_name " time="0.00032">
|
8
|
+
</testcase>
|
9
|
+
<system-out>
|
10
|
+
</system-out>
|
11
|
+
<system-err>
|
12
|
+
</system-err>
|
13
|
+
</testsuite>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="CommandLineHelper::Base#program_name" tests="3" time="0.004186" failures="0" errors="0" skipped="0">
|
3
|
+
<testcase name="CommandLineHelper::Base#program_name " time="0.000841">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="CommandLineHelper::Base#program_name " time="0.000498">
|
6
|
+
</testcase>
|
7
|
+
<testcase name="CommandLineHelper::Base#program_name " time="0.00031">
|
8
|
+
</testcase>
|
9
|
+
<system-out>
|
10
|
+
</system-out>
|
11
|
+
<system-err>
|
12
|
+
</system-err>
|
13
|
+
</testsuite>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="CommandLineHelper::Base#program_name" tests="3" time="0.001701" failures="0" errors="0" skipped="0">
|
3
|
+
<testcase name="CommandLineHelper::Base#program_name " time="0.000462">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="CommandLineHelper::Base#program_name " time="0.00036">
|
6
|
+
</testcase>
|
7
|
+
<testcase name="CommandLineHelper::Base#program_name " time="0.000507">
|
8
|
+
</testcase>
|
9
|
+
<system-out>
|
10
|
+
</system-out>
|
11
|
+
<system-err>
|
12
|
+
</system-err>
|
13
|
+
</testsuite>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="CommandLineHelper::Base#short_hand_option" tests="2" time="0.000954" failures="0" errors="0" skipped="0">
|
3
|
+
<testcase name="CommandLineHelper::Base#short_hand_option should return '--foo|-f argument'" time="0.000356">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="CommandLineHelper::Base#short_hand_option should return '--bar|-b'" time="0.000351">
|
6
|
+
</testcase>
|
7
|
+
<system-out>
|
8
|
+
</system-out>
|
9
|
+
<system-err>
|
10
|
+
</system-err>
|
11
|
+
</testsuite>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="CommandLineHelper::Base#short_hand_option" tests="2" time="0.000988" failures="0" errors="0" skipped="0">
|
3
|
+
<testcase name="CommandLineHelper::Base#short_hand_option should return '--foo|-f argument'" time="0.000472">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="CommandLineHelper::Base#short_hand_option should return '--bar|-b'" time="0.000317">
|
6
|
+
</testcase>
|
7
|
+
<system-out>
|
8
|
+
</system-out>
|
9
|
+
<system-err>
|
10
|
+
</system-err>
|
11
|
+
</testsuite>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="CommandLineHelper::Base#short_hand_option" tests="2" time="0.003069" failures="0" errors="0" skipped="0">
|
3
|
+
<testcase name="CommandLineHelper::Base#short_hand_option should return '--foo|-f argument'" time="0.00037">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="CommandLineHelper::Base#short_hand_option should return '--bar|-b'" time="0.000337">
|
6
|
+
</testcase>
|
7
|
+
<system-out>
|
8
|
+
</system-out>
|
9
|
+
<system-err>
|
10
|
+
</system-err>
|
11
|
+
</testsuite>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="CommandLineHelper::Base#short_hand_option" tests="2" time="0.000971" failures="0" errors="0" skipped="0">
|
3
|
+
<testcase name="CommandLineHelper::Base#short_hand_option should return '--foo|-f argument'" time="0.000469">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="CommandLineHelper::Base#short_hand_option should return '--bar|-b'" time="0.000304">
|
6
|
+
</testcase>
|
7
|
+
<system-out>
|
8
|
+
</system-out>
|
9
|
+
<system-err>
|
10
|
+
</system-err>
|
11
|
+
</testsuite>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="CommandLineHelper::Base#short_hand_option" tests="2" time="0.000945" failures="0" errors="0" skipped="0">
|
3
|
+
<testcase name="CommandLineHelper::Base#short_hand_option should return '--bar|-b'" time="0.000464">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="CommandLineHelper::Base#short_hand_option should return '--foo|-f argument'" time="0.000282">
|
6
|
+
</testcase>
|
7
|
+
<system-out>
|
8
|
+
</system-out>
|
9
|
+
<system-err>
|
10
|
+
</system-err>
|
11
|
+
</testsuite>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="CommandLineHelper::Base" tests="1" time="0.002602" failures="0" errors="0" skipped="0">
|
3
|
+
<testcase name="CommandLineHelper::Base " time="0.002312">
|
4
|
+
</testcase>
|
5
|
+
<system-out>
|
6
|
+
</system-out>
|
7
|
+
<system-err>
|
8
|
+
</system-err>
|
9
|
+
</testsuite>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="CommandLineHelper::Base" tests="1" time="0.001377" failures="0" errors="0" skipped="0">
|
3
|
+
<testcase name="CommandLineHelper::Base " time="0.001188">
|
4
|
+
</testcase>
|
5
|
+
<system-out>
|
6
|
+
</system-out>
|
7
|
+
<system-err>
|
8
|
+
</system-err>
|
9
|
+
</testsuite>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="CommandLineHelper::Base" tests="1" time="0.001616" failures="0" errors="0" skipped="0">
|
3
|
+
<testcase name="CommandLineHelper::Base " time="0.001401">
|
4
|
+
</testcase>
|
5
|
+
<system-out>
|
6
|
+
</system-out>
|
7
|
+
<system-err>
|
8
|
+
</system-err>
|
9
|
+
</testsuite>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="CommandLineHelper::Base" tests="1" time="0.001359" failures="0" errors="0" skipped="0">
|
3
|
+
<testcase name="CommandLineHelper::Base " time="0.001173">
|
4
|
+
</testcase>
|
5
|
+
<system-out>
|
6
|
+
</system-out>
|
7
|
+
<system-err>
|
8
|
+
</system-err>
|
9
|
+
</testsuite>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="CommandLineHelper::Base" tests="1" time="0.001194" failures="0" errors="0" skipped="0">
|
3
|
+
<testcase name="CommandLineHelper::Base " time="0.00101">
|
4
|
+
</testcase>
|
5
|
+
<system-out>
|
6
|
+
</system-out>
|
7
|
+
<system-err>
|
8
|
+
</system-err>
|
9
|
+
</testsuite>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="CommandLineHelper::HelpText#help_info" tests="2" time="0.002046" failures="0" errors="0" skipped="0">
|
3
|
+
<testcase name="CommandLineHelper::HelpText#help_info should return helpful information based on options" time="0.000973">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="CommandLineHelper::HelpText#help_info should return the nice string" time="0.000818">
|
6
|
+
</testcase>
|
7
|
+
<system-out>
|
8
|
+
</system-out>
|
9
|
+
<system-err>
|
10
|
+
</system-err>
|
11
|
+
</testsuite>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="CommandLineHelper::HelpText#option_details" tests="1" time="0.003971" failures="0" errors="0" skipped="0">
|
3
|
+
<testcase name="CommandLineHelper::HelpText#option_details should return nice things" time="0.000759">
|
4
|
+
</testcase>
|
5
|
+
<system-out>
|
6
|
+
</system-out>
|
7
|
+
<system-err>
|
8
|
+
</system-err>
|
9
|
+
</testsuite>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="CommandLineHelper::HelpText#short_hand_option" tests="2" time="0.001321" failures="0" errors="0" skipped="0">
|
3
|
+
<testcase name="CommandLineHelper::HelpText#short_hand_option should return '--bar|-b'" time="0.00052">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="CommandLineHelper::HelpText#short_hand_option should return '--foo|-f argument'" time="0.000458">
|
6
|
+
</testcase>
|
7
|
+
<system-out>
|
8
|
+
</system-out>
|
9
|
+
<system-err>
|
10
|
+
</system-err>
|
11
|
+
</testsuite>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="CommandLineHelper::HelpText" tests="1" time="0.001428" failures="0" errors="0" skipped="0">
|
3
|
+
<testcase name="CommandLineHelper::HelpText " time="0.001169">
|
4
|
+
</testcase>
|
5
|
+
<system-out>
|
6
|
+
</system-out>
|
7
|
+
<system-err>
|
8
|
+
</system-err>
|
9
|
+
</testsuite>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<testsuite name="CommandLineHelper::ProgramName#program_name" tests="2" time="0.001214" failures="0" errors="0" skipped="0">
|
3
|
+
<testcase name="CommandLineHelper::ProgramName#program_name " time="0.000483">
|
4
|
+
</testcase>
|
5
|
+
<testcase name="CommandLineHelper::ProgramName#program_name " time="0.000237">
|
6
|
+
</testcase>
|
7
|
+
<system-out>
|
8
|
+
</system-out>
|
9
|
+
<system-err>
|
10
|
+
</system-err>
|
11
|
+
</testsuite>
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# This file was generated by the `rspec --init` command. Conventionally, all
|
2
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
3
|
+
# Require this file using `require "spec_helper"` to ensure that it is only
|
4
|
+
# loaded once.
|
5
|
+
#
|
6
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
7
|
+
|
8
|
+
require "rspec/core"
|
9
|
+
require "rspec/mocks"
|
10
|
+
|
11
|
+
require 'command_line_helper'
|
12
|
+
|
13
|
+
RSpec.configure do |config|
|
14
|
+
config.treat_symbols_as_metadata_keys_with_true_values = true
|
15
|
+
config.run_all_when_everything_filtered = true
|
16
|
+
config.filter_run :focus
|
17
|
+
|
18
|
+
# Run specs in random order to surface order dependencies. If you find an
|
19
|
+
# order dependency and want to debug it, you can fix the order by providing
|
20
|
+
# the seed, which is printed after each run.
|
21
|
+
# --seed 1234
|
22
|
+
config.order = 'random'
|
23
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# This file was generated by the `rspec --init` command. Conventionally, all
|
2
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
3
|
+
# Require this file using `require "spec_helper"` to ensure that it is only
|
4
|
+
# loaded once.
|
5
|
+
#
|
6
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
7
|
+
|
8
|
+
require 'command_line_helper'
|
9
|
+
|
10
|
+
RSpec.configure do |config|
|
11
|
+
config.treat_symbols_as_metadata_keys_with_true_values = true
|
12
|
+
config.run_all_when_everything_filtered = true
|
13
|
+
config.filter_run :focus
|
14
|
+
|
15
|
+
# Run specs in random order to surface order dependencies. If you find an
|
16
|
+
# order dependency and want to debug it, you can fix the order by providing
|
17
|
+
# the seed, which is printed after each run.
|
18
|
+
# --seed 1234
|
19
|
+
config.order = 'random'
|
20
|
+
end
|
metadata
ADDED
@@ -0,0 +1,169 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: command_line_helper
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Juan C. Müller
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-11-16 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: activesupport
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
30
|
+
description: Helper for CLI apps.
|
31
|
+
email:
|
32
|
+
- jcmuller@gmail.com
|
33
|
+
executables: []
|
34
|
+
extensions: []
|
35
|
+
extra_rdoc_files: []
|
36
|
+
files:
|
37
|
+
- lib/command_line_helper/base.rb~
|
38
|
+
- lib/command_line_helper/help.rb~
|
39
|
+
- lib/command_line_helper/help_text.rb
|
40
|
+
- lib/command_line_helper/helper.rb~
|
41
|
+
- lib/command_line_helper/program_name.rb
|
42
|
+
- lib/command_line_helper/program_name.rb~
|
43
|
+
- lib/command_line_helper/version.rb
|
44
|
+
- lib/command_line_helper.rb
|
45
|
+
- lib/command_line_helper.rb~
|
46
|
+
- command_line_helper.gemspec
|
47
|
+
- Gemfile
|
48
|
+
- LICENSE
|
49
|
+
- Rakefile
|
50
|
+
- README.md
|
51
|
+
- spec/lib/command_line_helper/base_spec.rb~
|
52
|
+
- spec/lib/command_line_helper/help_text_spec.rb
|
53
|
+
- spec/lib/command_line_helper/help_text_spec.rb~
|
54
|
+
- spec/lib/command_line_helper/helper.rb~
|
55
|
+
- spec/lib/command_line_helper/helper_spec.rb~
|
56
|
+
- spec/lib/command_line_helper/program_name_spec.rb
|
57
|
+
- spec/lib/command_line_helper/program_name_spec.rb~
|
58
|
+
- spec/reports/SPEC-CommandLineHelper-Base-help-info.0.xml
|
59
|
+
- spec/reports/SPEC-CommandLineHelper-Base-help-info.1.xml
|
60
|
+
- spec/reports/SPEC-CommandLineHelper-Base-help-info.2.xml
|
61
|
+
- spec/reports/SPEC-CommandLineHelper-Base-help-info.3.xml
|
62
|
+
- spec/reports/SPEC-CommandLineHelper-Base-help-info.xml
|
63
|
+
- spec/reports/SPEC-CommandLineHelper-Base-option-details.0.xml
|
64
|
+
- spec/reports/SPEC-CommandLineHelper-Base-option-details.1.xml
|
65
|
+
- spec/reports/SPEC-CommandLineHelper-Base-option-details.2.xml
|
66
|
+
- spec/reports/SPEC-CommandLineHelper-Base-option-details.3.xml
|
67
|
+
- spec/reports/SPEC-CommandLineHelper-Base-option-details.xml
|
68
|
+
- spec/reports/SPEC-CommandLineHelper-Base-program-name.0.xml
|
69
|
+
- spec/reports/SPEC-CommandLineHelper-Base-program-name.1.xml
|
70
|
+
- spec/reports/SPEC-CommandLineHelper-Base-program-name.2.xml
|
71
|
+
- spec/reports/SPEC-CommandLineHelper-Base-program-name.3.xml
|
72
|
+
- spec/reports/SPEC-CommandLineHelper-Base-program-name.xml
|
73
|
+
- spec/reports/SPEC-CommandLineHelper-Base-short-hand-option.0.xml
|
74
|
+
- spec/reports/SPEC-CommandLineHelper-Base-short-hand-option.1.xml
|
75
|
+
- spec/reports/SPEC-CommandLineHelper-Base-short-hand-option.2.xml
|
76
|
+
- spec/reports/SPEC-CommandLineHelper-Base-short-hand-option.3.xml
|
77
|
+
- spec/reports/SPEC-CommandLineHelper-Base-short-hand-option.xml
|
78
|
+
- spec/reports/SPEC-CommandLineHelper-Base.0.xml
|
79
|
+
- spec/reports/SPEC-CommandLineHelper-Base.1.xml
|
80
|
+
- spec/reports/SPEC-CommandLineHelper-Base.2.xml
|
81
|
+
- spec/reports/SPEC-CommandLineHelper-Base.3.xml
|
82
|
+
- spec/reports/SPEC-CommandLineHelper-Base.4.xml
|
83
|
+
- spec/reports/SPEC-CommandLineHelper-Base.5.xml
|
84
|
+
- spec/reports/SPEC-CommandLineHelper-Base.6.xml
|
85
|
+
- spec/reports/SPEC-CommandLineHelper-Base.7.xml
|
86
|
+
- spec/reports/SPEC-CommandLineHelper-Base.8.xml
|
87
|
+
- spec/reports/SPEC-CommandLineHelper-Base.xml
|
88
|
+
- spec/reports/SPEC-CommandLineHelper-HelpText-help-info.xml
|
89
|
+
- spec/reports/SPEC-CommandLineHelper-HelpText-option-details.xml
|
90
|
+
- spec/reports/SPEC-CommandLineHelper-HelpText-short-hand-option.xml
|
91
|
+
- spec/reports/SPEC-CommandLineHelper-HelpText.0.xml
|
92
|
+
- spec/reports/SPEC-CommandLineHelper-HelpText.xml
|
93
|
+
- spec/reports/SPEC-CommandLineHelper-ProgramName-program-name.xml
|
94
|
+
- spec/reports/SPEC-CommandLineHelper-ProgramName.xml
|
95
|
+
- spec/spec_helper.rb
|
96
|
+
- spec/spec_helper.rb~
|
97
|
+
homepage: ''
|
98
|
+
licenses: []
|
99
|
+
post_install_message:
|
100
|
+
rdoc_options: []
|
101
|
+
require_paths:
|
102
|
+
- lib
|
103
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
104
|
+
none: false
|
105
|
+
requirements:
|
106
|
+
- - ! '>='
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
version: '0'
|
109
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
110
|
+
none: false
|
111
|
+
requirements:
|
112
|
+
- - ! '>='
|
113
|
+
- !ruby/object:Gem::Version
|
114
|
+
version: '0'
|
115
|
+
requirements: []
|
116
|
+
rubyforge_project:
|
117
|
+
rubygems_version: 1.8.24
|
118
|
+
signing_key:
|
119
|
+
specification_version: 3
|
120
|
+
summary: This library provides a module that helps with some common CLI tasks (mainly
|
121
|
+
showing help texts and options)
|
122
|
+
test_files:
|
123
|
+
- spec/lib/command_line_helper/base_spec.rb~
|
124
|
+
- spec/lib/command_line_helper/help_text_spec.rb
|
125
|
+
- spec/lib/command_line_helper/help_text_spec.rb~
|
126
|
+
- spec/lib/command_line_helper/helper.rb~
|
127
|
+
- spec/lib/command_line_helper/helper_spec.rb~
|
128
|
+
- spec/lib/command_line_helper/program_name_spec.rb
|
129
|
+
- spec/lib/command_line_helper/program_name_spec.rb~
|
130
|
+
- spec/reports/SPEC-CommandLineHelper-Base-help-info.0.xml
|
131
|
+
- spec/reports/SPEC-CommandLineHelper-Base-help-info.1.xml
|
132
|
+
- spec/reports/SPEC-CommandLineHelper-Base-help-info.2.xml
|
133
|
+
- spec/reports/SPEC-CommandLineHelper-Base-help-info.3.xml
|
134
|
+
- spec/reports/SPEC-CommandLineHelper-Base-help-info.xml
|
135
|
+
- spec/reports/SPEC-CommandLineHelper-Base-option-details.0.xml
|
136
|
+
- spec/reports/SPEC-CommandLineHelper-Base-option-details.1.xml
|
137
|
+
- spec/reports/SPEC-CommandLineHelper-Base-option-details.2.xml
|
138
|
+
- spec/reports/SPEC-CommandLineHelper-Base-option-details.3.xml
|
139
|
+
- spec/reports/SPEC-CommandLineHelper-Base-option-details.xml
|
140
|
+
- spec/reports/SPEC-CommandLineHelper-Base-program-name.0.xml
|
141
|
+
- spec/reports/SPEC-CommandLineHelper-Base-program-name.1.xml
|
142
|
+
- spec/reports/SPEC-CommandLineHelper-Base-program-name.2.xml
|
143
|
+
- spec/reports/SPEC-CommandLineHelper-Base-program-name.3.xml
|
144
|
+
- spec/reports/SPEC-CommandLineHelper-Base-program-name.xml
|
145
|
+
- spec/reports/SPEC-CommandLineHelper-Base-short-hand-option.0.xml
|
146
|
+
- spec/reports/SPEC-CommandLineHelper-Base-short-hand-option.1.xml
|
147
|
+
- spec/reports/SPEC-CommandLineHelper-Base-short-hand-option.2.xml
|
148
|
+
- spec/reports/SPEC-CommandLineHelper-Base-short-hand-option.3.xml
|
149
|
+
- spec/reports/SPEC-CommandLineHelper-Base-short-hand-option.xml
|
150
|
+
- spec/reports/SPEC-CommandLineHelper-Base.0.xml
|
151
|
+
- spec/reports/SPEC-CommandLineHelper-Base.1.xml
|
152
|
+
- spec/reports/SPEC-CommandLineHelper-Base.2.xml
|
153
|
+
- spec/reports/SPEC-CommandLineHelper-Base.3.xml
|
154
|
+
- spec/reports/SPEC-CommandLineHelper-Base.4.xml
|
155
|
+
- spec/reports/SPEC-CommandLineHelper-Base.5.xml
|
156
|
+
- spec/reports/SPEC-CommandLineHelper-Base.6.xml
|
157
|
+
- spec/reports/SPEC-CommandLineHelper-Base.7.xml
|
158
|
+
- spec/reports/SPEC-CommandLineHelper-Base.8.xml
|
159
|
+
- spec/reports/SPEC-CommandLineHelper-Base.xml
|
160
|
+
- spec/reports/SPEC-CommandLineHelper-HelpText-help-info.xml
|
161
|
+
- spec/reports/SPEC-CommandLineHelper-HelpText-option-details.xml
|
162
|
+
- spec/reports/SPEC-CommandLineHelper-HelpText-short-hand-option.xml
|
163
|
+
- spec/reports/SPEC-CommandLineHelper-HelpText.0.xml
|
164
|
+
- spec/reports/SPEC-CommandLineHelper-HelpText.xml
|
165
|
+
- spec/reports/SPEC-CommandLineHelper-ProgramName-program-name.xml
|
166
|
+
- spec/reports/SPEC-CommandLineHelper-ProgramName.xml
|
167
|
+
- spec/spec_helper.rb
|
168
|
+
- spec/spec_helper.rb~
|
169
|
+
has_rdoc:
|