tx_nlp 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +16 -10
- data/README.md +1 -0
- data/lib/tx_nlp/helper/config_helper.rb +3 -1
- data/lib/tx_nlp/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1313dd90366286c56789dc8339a0482aac1c60aece0763bf0aae3895d5ccb229
|
4
|
+
data.tar.gz: 263ea98e1397ae6fad73579c327d63cd1f31545364f4b08de731b83a190e02ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6e742b5f4dc40c55749cf3294f151680070ef80eb9441269c759e9b7bb6280fa320da15709aeec7e58838dd889a471042f3b426973ff998e3508b6d52ca0563f
|
7
|
+
data.tar.gz: 93673bf6c8a646322b1dd41a738585d49951021b02c1ac550768a498caeb9711032a1370eef2264a5ae20344629b5836e2449c48b27adb161ae1a84e73173ae5
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
tx_nlp (0.0.
|
4
|
+
tx_nlp (0.0.2)
|
5
5
|
activesupport
|
6
6
|
httparty
|
7
7
|
json
|
@@ -11,32 +11,37 @@ PATH
|
|
11
11
|
GEM
|
12
12
|
remote: http://rubygems.org/
|
13
13
|
specs:
|
14
|
-
activesupport (
|
14
|
+
activesupport (6.0.1)
|
15
15
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
16
16
|
i18n (>= 0.7, < 2)
|
17
17
|
minitest (~> 5.1)
|
18
18
|
tzinfo (~> 1.1)
|
19
|
+
zeitwerk (~> 2.2)
|
19
20
|
colorize (0.8.1)
|
20
21
|
concurrent-ruby (1.1.5)
|
21
|
-
domain_name (0.5.
|
22
|
+
domain_name (0.5.20190701)
|
22
23
|
unf (>= 0.0.5, < 1.0.0)
|
24
|
+
http-accept (1.7.0)
|
23
25
|
http-cookie (1.0.3)
|
24
26
|
domain_name (~> 0.5)
|
25
|
-
httparty (0.
|
27
|
+
httparty (0.17.1)
|
26
28
|
mime-types (~> 3.0)
|
27
29
|
multi_xml (>= 0.5.2)
|
28
|
-
i18n (1.
|
30
|
+
i18n (1.7.0)
|
29
31
|
concurrent-ruby (~> 1.0)
|
32
|
+
ipaddr (1.2.2)
|
30
33
|
json (2.2.0)
|
31
|
-
mime-types (3.
|
34
|
+
mime-types (3.3)
|
32
35
|
mime-types-data (~> 3.2015)
|
33
|
-
mime-types-data (3.2019.
|
34
|
-
minitest (5.
|
36
|
+
mime-types-data (3.2019.1009)
|
37
|
+
minitest (5.13.0)
|
35
38
|
multi_xml (0.6.0)
|
36
39
|
netrc (0.11.0)
|
37
40
|
openssl (2.1.2)
|
41
|
+
ipaddr
|
38
42
|
rake (10.5.0)
|
39
|
-
rest-client (2.0
|
43
|
+
rest-client (2.1.0)
|
44
|
+
http-accept (>= 1.7.0, < 2.0)
|
40
45
|
http-cookie (>= 1.0.2, < 2.0)
|
41
46
|
mime-types (>= 1.16, < 4.0)
|
42
47
|
netrc (~> 0.8)
|
@@ -50,7 +55,8 @@ GEM
|
|
50
55
|
thread_safe (~> 0.1)
|
51
56
|
unf (0.1.4)
|
52
57
|
unf_ext
|
53
|
-
unf_ext (0.0.7.
|
58
|
+
unf_ext (0.0.7.6)
|
59
|
+
zeitwerk (2.2.1)
|
54
60
|
|
55
61
|
PLATFORMS
|
56
62
|
ruby
|
data/README.md
CHANGED
@@ -24,7 +24,9 @@ module TxNlp
|
|
24
24
|
# use user settings
|
25
25
|
config_path
|
26
26
|
else
|
27
|
-
|
27
|
+
system "mkdir #{config_path}"
|
28
|
+
config_path
|
29
|
+
#raise "Can't find config directory. please init by command: 'mygem config'.'"
|
28
30
|
end
|
29
31
|
end
|
30
32
|
|
data/lib/tx_nlp/version.rb
CHANGED