scout-gear 1.1.1 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitmodules +4 -0
- data/.vimproject +604 -1
- data/Rakefile +1 -0
- data/VERSION +1 -1
- data/bin/scout +28 -0
- data/lib/scout/indiferent_hash.rb +0 -30
- data/lib/scout/log/progress/report.rb +1 -1
- data/lib/scout/log/progress/util.rb +0 -1
- data/lib/scout/log.rb +1 -1
- data/lib/scout/meta_extension.rb +15 -1
- data/lib/scout/misc/format.rb +227 -0
- data/lib/scout/misc.rb +14 -0
- data/lib/scout/path/find.rb +88 -33
- data/lib/scout/path/util.rb +51 -0
- data/lib/scout/path.rb +23 -10
- data/lib/scout/simple_opt/accessor.rb +54 -0
- data/lib/scout/simple_opt/doc.rb +120 -0
- data/lib/scout/simple_opt/get.rb +57 -0
- data/lib/scout/simple_opt/parse.rb +66 -0
- data/lib/scout/simple_opt/setup.rb +26 -0
- data/lib/scout/simple_opt.rb +5 -0
- data/lib/scout/tmpfile.rb +2 -6
- data/lib/scout-gear.rb +2 -0
- data/scout-gear.gemspec +19 -3
- data/test/scout/indiferent_hash/test_case_insensitive.rb +16 -0
- data/test/scout/path/test_find.rb +42 -1
- data/test/scout/path/test_util.rb +22 -0
- data/test/scout/simple_opt/test_get.rb +11 -0
- data/test/scout/simple_opt/test_parse.rb +10 -0
- data/test/scout/simple_opt/test_setup.rb +77 -0
- data/test/scout/test_meta_extension.rb +16 -2
- data/test/scout/test_misc.rb +13 -0
- data/test/scout/test_path.rb +16 -0
- metadata +18 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: scout-gear
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Miguel Vazquez
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-03-
|
11
|
+
date: 2023-03-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: term-ansicolor
|
@@ -90,6 +90,7 @@ extra_rdoc_files:
|
|
90
90
|
- README.rdoc
|
91
91
|
files:
|
92
92
|
- ".document"
|
93
|
+
- ".gitmodules"
|
93
94
|
- ".vimproject"
|
94
95
|
- LICENSE.txt
|
95
96
|
- README.rdoc
|
@@ -109,16 +110,31 @@ files:
|
|
109
110
|
- lib/scout/log/progress/report.rb
|
110
111
|
- lib/scout/log/progress/util.rb
|
111
112
|
- lib/scout/meta_extension.rb
|
113
|
+
- lib/scout/misc.rb
|
114
|
+
- lib/scout/misc/format.rb
|
112
115
|
- lib/scout/path.rb
|
113
116
|
- lib/scout/path/find.rb
|
117
|
+
- lib/scout/path/util.rb
|
118
|
+
- lib/scout/simple_opt.rb
|
119
|
+
- lib/scout/simple_opt/accessor.rb
|
120
|
+
- lib/scout/simple_opt/doc.rb
|
121
|
+
- lib/scout/simple_opt/get.rb
|
122
|
+
- lib/scout/simple_opt/parse.rb
|
123
|
+
- lib/scout/simple_opt/setup.rb
|
114
124
|
- lib/scout/tmpfile.rb
|
115
125
|
- scout-gear.gemspec
|
126
|
+
- test/scout/indiferent_hash/test_case_insensitive.rb
|
116
127
|
- test/scout/indiferent_hash/test_options.rb
|
117
128
|
- test/scout/log/test_progress.rb
|
118
129
|
- test/scout/path/test_find.rb
|
130
|
+
- test/scout/path/test_util.rb
|
131
|
+
- test/scout/simple_opt/test_get.rb
|
132
|
+
- test/scout/simple_opt/test_parse.rb
|
133
|
+
- test/scout/simple_opt/test_setup.rb
|
119
134
|
- test/scout/test_indiferent_hash.rb
|
120
135
|
- test/scout/test_log.rb
|
121
136
|
- test/scout/test_meta_extension.rb
|
137
|
+
- test/scout/test_misc.rb
|
122
138
|
- test/scout/test_path.rb
|
123
139
|
- test/scout/test_tmpfile.rb
|
124
140
|
- test/test_helper.rb
|