ecdict 1.3.0 → 1.3.2
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/bin/ecdict +763 -762
- data/lib/ecdict.rb +16 -0
- metadata +7 -6
data/lib/ecdict.rb
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
# ---------------------------------------------------------------
|
2
|
+
# File : ecdict.rb
|
3
|
+
# Authors : ccmywish <ccmywish@qq.com>
|
4
|
+
# Created on : <2022-04-29>
|
5
|
+
# Last modified : <2023-02-27>
|
6
|
+
#
|
7
|
+
# ecdict:
|
8
|
+
#
|
9
|
+
# ecdict lib
|
10
|
+
# ---------------------------------------------------------------
|
11
|
+
|
12
|
+
module ECDict
|
13
|
+
|
14
|
+
VERSION = "1.3.2"
|
15
|
+
|
16
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ecdict
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ccmywish
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-02-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sqlite3
|
@@ -77,13 +77,14 @@ extensions: []
|
|
77
77
|
extra_rdoc_files: []
|
78
78
|
files:
|
79
79
|
- bin/ecdict
|
80
|
+
- lib/ecdict.rb
|
80
81
|
homepage: https://gitee.com/ccmywish/ecdict
|
81
82
|
licenses:
|
82
83
|
- MIT
|
83
84
|
metadata:
|
84
85
|
bug_tracker_uri: https://gitee.com/ccmywish/ecdict/issues
|
85
86
|
source_code_uri: https://gitee.com/ccmywish/ecdict
|
86
|
-
post_install_message:
|
87
|
+
post_install_message:
|
87
88
|
rdoc_options: []
|
88
89
|
require_paths:
|
89
90
|
- lib
|
@@ -98,8 +99,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
98
99
|
- !ruby/object:Gem::Version
|
99
100
|
version: '0'
|
100
101
|
requirements: []
|
101
|
-
rubygems_version: 3.
|
102
|
-
signing_key:
|
102
|
+
rubygems_version: 3.4.1
|
103
|
+
signing_key:
|
103
104
|
specification_version: 4
|
104
105
|
summary: 'ecdict: English-to-Chinese dictionary on the cli.'
|
105
106
|
test_files: []
|