clitest 0.1.4 → 0.1.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b30ecf111c3917305b878fa25265e9ea7bf4079c56c96c1a9406168d9f0167b9
4
- data.tar.gz: d49fd4171b9f72ab00e29dcf1654a3bcd06efffa9c7f0f769b07f1ddd110d3bc
3
+ metadata.gz: e6938fa6fd5056038c64826cc6d8be8a7f05b7e6085cae8329fa9bb48924d7f1
4
+ data.tar.gz: 98f268fa8cf3f7509bc4cdc44fde3840f42c8861084bd81c5e777710dd035a82
5
5
  SHA512:
6
- metadata.gz: fb6ddc636273373c2e4335ef646d08d8f8ac4065b6ac66dc22018f8f76a17f12009ccd7bdd6843ca5f21865cc2dbc81a313f5b6666e0b3540ab6b0625f1edf87
7
- data.tar.gz: e1a69fee770020327a8691eebf913906e969240ca88e60cac1e56abf76e3754a546b47d977bba7baffc7e8dcf6fd7f028e9171a67943dcca8eb09f877f8cf3b0
6
+ metadata.gz: 9ea4d6afe50625f7ca768bdbca4114c3bfda8cd43fc3df676231b6e405e475e73bd2a3ad97f28d639bbef8732cf5cc4e60577ed6cfac0e3355af67da77521aca
7
+ data.tar.gz: 2e4f46b377eea649e9a6d8725d3cbb57e08ba528a2bd4363c6bc1d42c377dbf79e149a55e2549da07b7355645f4b1107a545820940bd50de822d47115fd95b4b
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- clitest (0.1.4)
4
+ clitest (0.1.5)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/bin/clitest ADDED
@@ -0,0 +1,17 @@
1
+ pn = Pathname.new(__FILE__)
2
+ target_pn = pn.parent.join("cmd.sh").expand_path
3
+
4
+ =begin
5
+ puts target_pn.to_s
6
+
7
+ # system( "#{target_pn.to_s} #{*ARGSV}" )
8
+ # system( "#{target_pn.to_s} #{ARGV[0]}" )
9
+ p ARGV[0]
10
+ p ARGV[1]
11
+ p ARGV[2]
12
+
13
+ puts ARGV.join(" ")
14
+ =end
15
+
16
+ system( "#{target_pn.to_s} #{ARGV.join(' ')}" )
17
+
data/clitest.gemspec CHANGED
@@ -27,7 +27,7 @@ Gem::Specification.new do |spec|
27
27
  end
28
28
  spec.bindir = "bin"
29
29
  # spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
30
- spec.executables = ["cmd.sh"]
30
+ spec.executables = ["cmd.sh", "clitest"]
31
31
  spec.require_paths = ["lib"]
32
32
 
33
33
  # Uncomment to register a new dependency of your gem
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Clitest
4
- VERSION = "0.1.4"
4
+ VERSION = "0.1.5"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: clitest
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - yasuo kominami
@@ -211,6 +211,7 @@ email:
211
211
  - ykominami@gmail.com
212
212
  executables:
213
213
  - cmd.sh
214
+ - clitest
214
215
  extensions: []
215
216
  extra_rdoc_files: []
216
217
  files:
@@ -228,6 +229,7 @@ files:
228
229
  - README.md
229
230
  - Rakefile
230
231
  - SECURITY.md
232
+ - bin/clitest
231
233
  - bin/cmd.sh
232
234
  - bin/console
233
235
  - bin/setup