whichruby 0.1.0
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 +7 -0
- data/exe/whichruby +14 -0
- metadata +47 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 5471a97309813036da47b55df4484f8325d98ab6a7290704f076c16b09229119
|
4
|
+
data.tar.gz: 6c1128329cf6fa0dcc79e391b1dd569b53e3191591c68745ee59982f56be4234
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 326aa779fadc5be9ff01b9ecd379348fb5ba6a7b31419ae158e169b5b461be8a0e711df3d478f53a7a3a9654455b7be7ea7b91d84b78f0ea6708a4bf47c2c3dd
|
7
|
+
data.tar.gz: 3545c703fd009edc3bd2bda9166c8d976ebaa39ed6b727401e6b3b1d1f921c784c0020ec52957e1b63ee3a72877408aa203520144084e344103bd52dfcbc4e5a
|
data/exe/whichruby
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# ---------------------------------------------------------------
|
3
|
+
# File : whichruby.rb
|
4
|
+
# Authors : ccmywish <ccmywish@qq.com>
|
5
|
+
# Created on : <2022-05-06>
|
6
|
+
# Last modified : <2022-05-06>
|
7
|
+
#
|
8
|
+
# whichruby:
|
9
|
+
#
|
10
|
+
# Test which ruby is called using this gem.
|
11
|
+
#
|
12
|
+
# ---------------------------------------------------------------
|
13
|
+
|
14
|
+
puts RUBY_DESCRIPTION
|
metadata
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: whichruby
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- ccmywish
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2022-05-06 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: Test which ruby is called using this gem.
|
14
|
+
email:
|
15
|
+
- ccmywish@qq.com
|
16
|
+
executables:
|
17
|
+
- whichruby
|
18
|
+
extensions: []
|
19
|
+
extra_rdoc_files: []
|
20
|
+
files:
|
21
|
+
- exe/whichruby
|
22
|
+
homepage: https://github.com/ccmywish/whichruby
|
23
|
+
licenses: []
|
24
|
+
metadata:
|
25
|
+
homepage_uri: https://github.com/ccmywish/whichruby
|
26
|
+
source_code_uri: https://github.com/ccmywish/whichruby
|
27
|
+
changelog_uri: https://github.com/ccmywish/whichruby
|
28
|
+
post_install_message:
|
29
|
+
rdoc_options: []
|
30
|
+
require_paths:
|
31
|
+
- lib
|
32
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
33
|
+
requirements:
|
34
|
+
- - ">="
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: 1.8.6
|
37
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - ">="
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: '0'
|
42
|
+
requirements: []
|
43
|
+
rubygems_version: 3.2.33
|
44
|
+
signing_key:
|
45
|
+
specification_version: 4
|
46
|
+
summary: Test which ruby is called using this gem.
|
47
|
+
test_files: []
|