clitest 0.1.0 → 0.1.4
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.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +11 -0
- data/.gitignore +2 -2
- data/.rubocop_todo.yml +81 -0
- data/Gemfile.lock +141 -0
- data/SECURITY.md +21 -0
- data/clitest.gemspec +3 -2
- data/doc/Clitest/Cmdline.html +1223 -0
- data/doc/Clitest/Error.html +124 -0
- data/doc/Clitest.html +149 -0
- data/doc/_index.html +129 -0
- data/doc/class_list.html +51 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +58 -0
- data/doc/css/style.css +497 -0
- data/doc/file.README.html +115 -0
- data/doc/file_list.html +56 -0
- data/doc/frames.html +17 -0
- data/doc/index.html +115 -0
- data/doc/js/app.js +314 -0
- data/doc/js/full_list.js +216 -0
- data/doc/js/jquery.js +4 -0
- data/doc/method_list.html +99 -0
- data/doc/top-level-namespace.html +110 -0
- data/exe/cmd.sh +41 -0
- data/lib/clitest/cmdline.rb +55 -18
- data/lib/clitest/version.rb +1 -1
- data/lib/clitest.rb +1 -1
- metadata +30 -8
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: clitest
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- yasuo kominami
|
8
|
-
autorequire:
|
9
|
-
bindir:
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-07-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aruba
|
@@ -209,10 +209,12 @@ dependencies:
|
|
209
209
|
description: ruby gem for test of cli.
|
210
210
|
email:
|
211
211
|
- ykominami@gmail.com
|
212
|
-
executables:
|
212
|
+
executables:
|
213
|
+
- cmd.sh
|
213
214
|
extensions: []
|
214
215
|
extra_rdoc_files: []
|
215
216
|
files:
|
217
|
+
- ".github/dependabot.yml"
|
216
218
|
- ".github/workflows/main.yml"
|
217
219
|
- ".gitignore"
|
218
220
|
- ".rspec"
|
@@ -220,14 +222,34 @@ files:
|
|
220
222
|
- ".rubocop_todo.yml"
|
221
223
|
- CODE_OF_CONDUCT.md
|
222
224
|
- Gemfile
|
225
|
+
- Gemfile.lock
|
223
226
|
- LICENSE
|
224
227
|
- LICENSE.txt
|
225
228
|
- README.md
|
226
229
|
- Rakefile
|
230
|
+
- SECURITY.md
|
227
231
|
- bin/cmd.sh
|
228
232
|
- bin/console
|
229
233
|
- bin/setup
|
230
234
|
- clitest.gemspec
|
235
|
+
- doc/Clitest.html
|
236
|
+
- doc/Clitest/Cmdline.html
|
237
|
+
- doc/Clitest/Error.html
|
238
|
+
- doc/_index.html
|
239
|
+
- doc/class_list.html
|
240
|
+
- doc/css/common.css
|
241
|
+
- doc/css/full_list.css
|
242
|
+
- doc/css/style.css
|
243
|
+
- doc/file.README.html
|
244
|
+
- doc/file_list.html
|
245
|
+
- doc/frames.html
|
246
|
+
- doc/index.html
|
247
|
+
- doc/js/app.js
|
248
|
+
- doc/js/full_list.js
|
249
|
+
- doc/js/jquery.js
|
250
|
+
- doc/method_list.html
|
251
|
+
- doc/top-level-namespace.html
|
252
|
+
- exe/cmd.sh
|
231
253
|
- lib/clitest.rb
|
232
254
|
- lib/clitest/cmdline.rb
|
233
255
|
- lib/clitest/version.rb
|
@@ -237,7 +259,7 @@ licenses:
|
|
237
259
|
metadata:
|
238
260
|
homepage_uri: https://ykominami.github.io/clitest
|
239
261
|
source_code_uri: https://github.com/ykominami/clitest
|
240
|
-
post_install_message:
|
262
|
+
post_install_message:
|
241
263
|
rdoc_options: []
|
242
264
|
require_paths:
|
243
265
|
- lib
|
@@ -252,8 +274,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
252
274
|
- !ruby/object:Gem::Version
|
253
275
|
version: '0'
|
254
276
|
requirements: []
|
255
|
-
rubygems_version: 3.
|
256
|
-
signing_key:
|
277
|
+
rubygems_version: 3.5.14
|
278
|
+
signing_key:
|
257
279
|
specification_version: 4
|
258
280
|
summary: ruby gem for test of cli
|
259
281
|
test_files: []
|