semantic_analysis 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/.rspec +3 -0
- data/.rubocop.yml +26 -0
- data/.ruby-version +1 -0
- data/CHANGELOG.md +5 -0
- data/Cargo.lock +292 -0
- data/Cargo.toml +19 -0
- data/Dockerfile +12 -0
- data/Gemfile +14 -0
- data/Gemfile.lock +63 -0
- data/LICENSE.txt +21 -0
- data/README.md +39 -0
- data/Rakefile +35 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/lib/libsemantic_analysis.dylib +0 -0
- data/lib/libsemantic_analysis.so +0 -0
- data/lib/semantic_analysis/version.rb +5 -0
- data/lib/semantic_analysis.rb +12 -0
- data/semantic_analysis.gemspec +43 -0
- data/src/lib.rs +45 -0
- metadata +107 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 8c1eb318d7279e1704cc10836d48cfda848860f698b8c2ce87fc629a3120250f
|
4
|
+
data.tar.gz: 05d58d821be5f114106250d3e49351eb827baebfe8889293a11c516500fb7ca3
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 630f3d465a39cb9d3dc18688f003bfad7da339ea476a5db9ff0a496b6773823e972bac159bfb052603f636249f7bc32b0f7c6b2b9c902e46d88ff4df4bd8ddd3
|
7
|
+
data.tar.gz: 7b0efc10e4c5a15b513408bae20b7d138e39c81ad97f02dc4b66f63b1cbf9446f5295c939d1e82550d4ed7661f1517110b126b81d86f8795856e01695384e4be
|
data/.rspec
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
AllCops:
|
2
|
+
NewCops: enable
|
3
|
+
Include:
|
4
|
+
- '**/*.rb'
|
5
|
+
- '**/*.pryrc'
|
6
|
+
- '**/*.rake'
|
7
|
+
- '.env'
|
8
|
+
- '.simplecov'
|
9
|
+
- '**/config.ru'
|
10
|
+
- '**/Gemfile'
|
11
|
+
- '**/Guardfile'
|
12
|
+
- '**/Rakefile'
|
13
|
+
Exclude:
|
14
|
+
- 'tmp/**/*'
|
15
|
+
- 'lib/.git/**/*'
|
16
|
+
- 'db/**/*'
|
17
|
+
- 'db/migrate/**'
|
18
|
+
- 'bin/**/*'
|
19
|
+
- 'node_modules/**/*'
|
20
|
+
- 'railroader/**/*'
|
21
|
+
- '.pryrc'
|
22
|
+
- 'license_okay'
|
23
|
+
Layout/LineLength:
|
24
|
+
Max: 200
|
25
|
+
Metrics/MethodLength:
|
26
|
+
Max: 50
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.7.3
|
data/CHANGELOG.md
ADDED
data/Cargo.lock
ADDED
@@ -0,0 +1,292 @@
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
2
|
+
# It is not intended for manual editing.
|
3
|
+
version = 3
|
4
|
+
|
5
|
+
[[package]]
|
6
|
+
name = "aho-corasick"
|
7
|
+
version = "0.7.18"
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
+
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
|
10
|
+
dependencies = [
|
11
|
+
"memchr",
|
12
|
+
]
|
13
|
+
|
14
|
+
[[package]]
|
15
|
+
name = "anyhow"
|
16
|
+
version = "1.0.51"
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
18
|
+
checksum = "8b26702f315f53b6071259e15dd9d64528213b44d61de1ec926eca7715d62203"
|
19
|
+
|
20
|
+
[[package]]
|
21
|
+
name = "autocfg"
|
22
|
+
version = "1.0.1"
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
+
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
|
25
|
+
|
26
|
+
[[package]]
|
27
|
+
name = "cfg-if"
|
28
|
+
version = "1.0.0"
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
30
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
31
|
+
|
32
|
+
[[package]]
|
33
|
+
name = "chrono"
|
34
|
+
version = "0.4.19"
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
36
|
+
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
|
37
|
+
dependencies = [
|
38
|
+
"libc",
|
39
|
+
"num-integer",
|
40
|
+
"num-traits",
|
41
|
+
"serde",
|
42
|
+
"time",
|
43
|
+
"winapi",
|
44
|
+
]
|
45
|
+
|
46
|
+
[[package]]
|
47
|
+
name = "itoa"
|
48
|
+
version = "0.4.8"
|
49
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
50
|
+
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
|
51
|
+
|
52
|
+
[[package]]
|
53
|
+
name = "lazy_static"
|
54
|
+
version = "1.4.0"
|
55
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
56
|
+
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
57
|
+
|
58
|
+
[[package]]
|
59
|
+
name = "libc"
|
60
|
+
version = "0.2.112"
|
61
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
62
|
+
checksum = "1b03d17f364a3a042d5e5d46b053bbbf82c92c9430c592dd4c064dc6ee997125"
|
63
|
+
|
64
|
+
[[package]]
|
65
|
+
name = "log"
|
66
|
+
version = "0.4.14"
|
67
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
68
|
+
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
|
69
|
+
dependencies = [
|
70
|
+
"cfg-if",
|
71
|
+
]
|
72
|
+
|
73
|
+
[[package]]
|
74
|
+
name = "maplit"
|
75
|
+
version = "1.0.2"
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
77
|
+
checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
|
78
|
+
|
79
|
+
[[package]]
|
80
|
+
name = "memchr"
|
81
|
+
version = "2.4.1"
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
83
|
+
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
|
84
|
+
|
85
|
+
[[package]]
|
86
|
+
name = "num-integer"
|
87
|
+
version = "0.1.44"
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
89
|
+
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
|
90
|
+
dependencies = [
|
91
|
+
"autocfg",
|
92
|
+
"num-traits",
|
93
|
+
]
|
94
|
+
|
95
|
+
[[package]]
|
96
|
+
name = "num-traits"
|
97
|
+
version = "0.2.14"
|
98
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
99
|
+
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
|
100
|
+
dependencies = [
|
101
|
+
"autocfg",
|
102
|
+
]
|
103
|
+
|
104
|
+
[[package]]
|
105
|
+
name = "proc-macro2"
|
106
|
+
version = "1.0.33"
|
107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
108
|
+
checksum = "fb37d2df5df740e582f28f8560cf425f52bb267d872fe58358eadb554909f07a"
|
109
|
+
dependencies = [
|
110
|
+
"unicode-xid",
|
111
|
+
]
|
112
|
+
|
113
|
+
[[package]]
|
114
|
+
name = "quote"
|
115
|
+
version = "1.0.10"
|
116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
117
|
+
checksum = "38bc8cc6a5f2e3655e0899c1b848643b2562f853f114bfec7be120678e3ace05"
|
118
|
+
dependencies = [
|
119
|
+
"proc-macro2",
|
120
|
+
]
|
121
|
+
|
122
|
+
[[package]]
|
123
|
+
name = "regex"
|
124
|
+
version = "1.5.4"
|
125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
126
|
+
checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
|
127
|
+
dependencies = [
|
128
|
+
"aho-corasick",
|
129
|
+
"memchr",
|
130
|
+
"regex-syntax",
|
131
|
+
]
|
132
|
+
|
133
|
+
[[package]]
|
134
|
+
name = "regex-syntax"
|
135
|
+
version = "0.6.25"
|
136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
137
|
+
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
|
138
|
+
|
139
|
+
[[package]]
|
140
|
+
name = "rutie"
|
141
|
+
version = "0.8.3"
|
142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
143
|
+
checksum = "0d81d2a2dec78b6202e8058dea842a39a65135ce8915e66e40d3935f12e52346"
|
144
|
+
dependencies = [
|
145
|
+
"lazy_static",
|
146
|
+
"libc",
|
147
|
+
]
|
148
|
+
|
149
|
+
[[package]]
|
150
|
+
name = "rutie-serde"
|
151
|
+
version = "0.3.0"
|
152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
153
|
+
checksum = "663c70929431738665d773c9555c067f7d177649362e70995f46eaa9aa30e425"
|
154
|
+
dependencies = [
|
155
|
+
"log",
|
156
|
+
"rutie",
|
157
|
+
"serde",
|
158
|
+
]
|
159
|
+
|
160
|
+
[[package]]
|
161
|
+
name = "ryu"
|
162
|
+
version = "1.0.9"
|
163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
164
|
+
checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
|
165
|
+
|
166
|
+
[[package]]
|
167
|
+
name = "semantic_analysis"
|
168
|
+
version = "0.1.0"
|
169
|
+
dependencies = [
|
170
|
+
"anyhow",
|
171
|
+
"chrono",
|
172
|
+
"libc",
|
173
|
+
"log",
|
174
|
+
"rutie",
|
175
|
+
"rutie-serde",
|
176
|
+
"serde",
|
177
|
+
"serde_json",
|
178
|
+
"vader_sentiment",
|
179
|
+
]
|
180
|
+
|
181
|
+
[[package]]
|
182
|
+
name = "serde"
|
183
|
+
version = "1.0.131"
|
184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
185
|
+
checksum = "b4ad69dfbd3e45369132cc64e6748c2d65cdfb001a2b1c232d128b4ad60561c1"
|
186
|
+
dependencies = [
|
187
|
+
"serde_derive",
|
188
|
+
]
|
189
|
+
|
190
|
+
[[package]]
|
191
|
+
name = "serde_derive"
|
192
|
+
version = "1.0.131"
|
193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
194
|
+
checksum = "b710a83c4e0dff6a3d511946b95274ad9ca9e5d3ae497b63fda866ac955358d2"
|
195
|
+
dependencies = [
|
196
|
+
"proc-macro2",
|
197
|
+
"quote",
|
198
|
+
"syn",
|
199
|
+
]
|
200
|
+
|
201
|
+
[[package]]
|
202
|
+
name = "serde_json"
|
203
|
+
version = "1.0.72"
|
204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
205
|
+
checksum = "d0ffa0837f2dfa6fb90868c2b5468cad482e175f7dad97e7421951e663f2b527"
|
206
|
+
dependencies = [
|
207
|
+
"itoa",
|
208
|
+
"ryu",
|
209
|
+
"serde",
|
210
|
+
]
|
211
|
+
|
212
|
+
[[package]]
|
213
|
+
name = "syn"
|
214
|
+
version = "1.0.82"
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
216
|
+
checksum = "8daf5dd0bb60cbd4137b1b587d2fc0ae729bc07cf01cd70b36a1ed5ade3b9d59"
|
217
|
+
dependencies = [
|
218
|
+
"proc-macro2",
|
219
|
+
"quote",
|
220
|
+
"unicode-xid",
|
221
|
+
]
|
222
|
+
|
223
|
+
[[package]]
|
224
|
+
name = "time"
|
225
|
+
version = "0.1.44"
|
226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
227
|
+
checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
|
228
|
+
dependencies = [
|
229
|
+
"libc",
|
230
|
+
"wasi",
|
231
|
+
"winapi",
|
232
|
+
]
|
233
|
+
|
234
|
+
[[package]]
|
235
|
+
name = "unicase"
|
236
|
+
version = "2.6.0"
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
238
|
+
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
|
239
|
+
dependencies = [
|
240
|
+
"version_check",
|
241
|
+
]
|
242
|
+
|
243
|
+
[[package]]
|
244
|
+
name = "unicode-xid"
|
245
|
+
version = "0.2.2"
|
246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
247
|
+
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
|
248
|
+
|
249
|
+
[[package]]
|
250
|
+
name = "vader_sentiment"
|
251
|
+
version = "0.1.1"
|
252
|
+
source = "git+https://github.com/kind-io/vader-sentiment-rust#36095df134dc4d50f2659a9884c83fb467bb3879"
|
253
|
+
dependencies = [
|
254
|
+
"lazy_static",
|
255
|
+
"maplit",
|
256
|
+
"regex",
|
257
|
+
"unicase",
|
258
|
+
]
|
259
|
+
|
260
|
+
[[package]]
|
261
|
+
name = "version_check"
|
262
|
+
version = "0.9.3"
|
263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
264
|
+
checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
|
265
|
+
|
266
|
+
[[package]]
|
267
|
+
name = "wasi"
|
268
|
+
version = "0.10.0+wasi-snapshot-preview1"
|
269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
270
|
+
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
|
271
|
+
|
272
|
+
[[package]]
|
273
|
+
name = "winapi"
|
274
|
+
version = "0.3.9"
|
275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
276
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
277
|
+
dependencies = [
|
278
|
+
"winapi-i686-pc-windows-gnu",
|
279
|
+
"winapi-x86_64-pc-windows-gnu",
|
280
|
+
]
|
281
|
+
|
282
|
+
[[package]]
|
283
|
+
name = "winapi-i686-pc-windows-gnu"
|
284
|
+
version = "0.4.0"
|
285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
286
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
287
|
+
|
288
|
+
[[package]]
|
289
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
290
|
+
version = "0.4.0"
|
291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
292
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
data/Cargo.toml
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
[package]
|
2
|
+
name = "semantic_analysis"
|
3
|
+
version = "0.1.0"
|
4
|
+
edition = "2018"
|
5
|
+
authors = ["Pete Taylor <pete.jc.taylor@hey.com>"]
|
6
|
+
|
7
|
+
[lib]
|
8
|
+
crate-type = ["cdylib"]
|
9
|
+
|
10
|
+
[dependencies]
|
11
|
+
serde = { version = "1.0.115", features = ["derive"] }
|
12
|
+
serde_json = "1.0.57"
|
13
|
+
log = "0.4"
|
14
|
+
chrono = { version = "0.4", features = [ "serde" ] }
|
15
|
+
anyhow = { version = "~1.0"}
|
16
|
+
libc = "0.2"
|
17
|
+
rutie = "0.8.2"
|
18
|
+
rutie-serde = "0.3"
|
19
|
+
vader_sentiment = { git = "https://github.com/kind-io/vader-sentiment-rust" }
|
data/Dockerfile
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
# for building rust to x86 linux
|
2
|
+
FROM ubuntu:latest
|
3
|
+
|
4
|
+
RUN apt-get update \
|
5
|
+
&& apt-get install -y ca-certificates tzdata \
|
6
|
+
&& apt-get install -y software-properties-common \
|
7
|
+
&& apt-get install -y ruby2.7 ruby2.7-dev \
|
8
|
+
&& apt-get install -y curl \
|
9
|
+
&& apt-get install -y build-essential \
|
10
|
+
&& rm -rf /var/lib/apt/lists/*
|
11
|
+
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
12
|
+
WORKDIR /source
|
data/Gemfile
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
|
5
|
+
# Specify your gem's dependencies in semantic_analysis.gemspec
|
6
|
+
gemspec
|
7
|
+
|
8
|
+
gem 'rake', '~> 13.0'
|
9
|
+
|
10
|
+
gem 'rspec', '~> 3.0'
|
11
|
+
|
12
|
+
gem 'rubocop', '~> 1.21'
|
13
|
+
|
14
|
+
gem 'rutie', '~> 0.0.3'
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,63 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
semantic_analysis (0.1.0)
|
5
|
+
ffi
|
6
|
+
json
|
7
|
+
rutie (~> 0.0.3)
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: https://rubygems.org/
|
11
|
+
specs:
|
12
|
+
ast (2.4.2)
|
13
|
+
diff-lcs (1.4.4)
|
14
|
+
ffi (1.15.4)
|
15
|
+
json (2.6.1)
|
16
|
+
parallel (1.21.0)
|
17
|
+
parser (3.0.3.2)
|
18
|
+
ast (~> 2.4.1)
|
19
|
+
rainbow (3.0.0)
|
20
|
+
rake (13.0.6)
|
21
|
+
regexp_parser (2.2.0)
|
22
|
+
rexml (3.2.5)
|
23
|
+
rspec (3.10.0)
|
24
|
+
rspec-core (~> 3.10.0)
|
25
|
+
rspec-expectations (~> 3.10.0)
|
26
|
+
rspec-mocks (~> 3.10.0)
|
27
|
+
rspec-core (3.10.1)
|
28
|
+
rspec-support (~> 3.10.0)
|
29
|
+
rspec-expectations (3.10.1)
|
30
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
31
|
+
rspec-support (~> 3.10.0)
|
32
|
+
rspec-mocks (3.10.2)
|
33
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
34
|
+
rspec-support (~> 3.10.0)
|
35
|
+
rspec-support (3.10.3)
|
36
|
+
rubocop (1.23.0)
|
37
|
+
parallel (~> 1.10)
|
38
|
+
parser (>= 3.0.0.0)
|
39
|
+
rainbow (>= 2.2.2, < 4.0)
|
40
|
+
regexp_parser (>= 1.8, < 3.0)
|
41
|
+
rexml
|
42
|
+
rubocop-ast (>= 1.12.0, < 2.0)
|
43
|
+
ruby-progressbar (~> 1.7)
|
44
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
45
|
+
rubocop-ast (1.15.0)
|
46
|
+
parser (>= 3.0.1.1)
|
47
|
+
ruby-progressbar (1.11.0)
|
48
|
+
rutie (0.0.4)
|
49
|
+
unicode-display_width (2.1.0)
|
50
|
+
|
51
|
+
PLATFORMS
|
52
|
+
ruby
|
53
|
+
x86_64-darwin-21
|
54
|
+
|
55
|
+
DEPENDENCIES
|
56
|
+
rake (~> 13.0)
|
57
|
+
rspec (~> 3.0)
|
58
|
+
rubocop (~> 1.21)
|
59
|
+
rutie (~> 0.0.3)
|
60
|
+
semantic_analysis!
|
61
|
+
|
62
|
+
BUNDLED WITH
|
63
|
+
2.2.32
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2021 Pete Taylor
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
# SemanticAnalysis
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/semantic_analysis`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'semantic_analysis'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle install
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install semantic_analysis
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
+
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/semantic_analysis.
|
36
|
+
|
37
|
+
## License
|
38
|
+
|
39
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'bundler/gem_tasks'
|
4
|
+
require 'rspec/core/rake_task'
|
5
|
+
require 'ffi'
|
6
|
+
|
7
|
+
RSpec::Core::RakeTask.new(:spec)
|
8
|
+
|
9
|
+
require 'rubocop/rake_task'
|
10
|
+
|
11
|
+
RuboCop::RakeTask.new
|
12
|
+
|
13
|
+
task default: %i[spec rubocop]
|
14
|
+
|
15
|
+
lib_name = 'semantic_analysis'
|
16
|
+
|
17
|
+
task :rust_build do
|
18
|
+
`cargo build --release`
|
19
|
+
`cp ./target/release/lib#{lib_name}.#{FFI::Platform::LIBSUFFIX} ./lib/`
|
20
|
+
end
|
21
|
+
|
22
|
+
task :rust_clean do
|
23
|
+
`cargo clean`
|
24
|
+
`rm -f ./lib/#{lib_name}/lib#{lib_name}.#{FFI::Platform::LIBSUFFIX}`
|
25
|
+
end
|
26
|
+
|
27
|
+
task :cross_compile_mac_to_linux do
|
28
|
+
`cargo build --release --target x86_64-unknown-linux-gnu`
|
29
|
+
end
|
30
|
+
|
31
|
+
task clean: :rust_clean
|
32
|
+
|
33
|
+
task build: :rust_build
|
34
|
+
|
35
|
+
task default: :build
|
data/bin/console
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
require "bundler/setup"
|
5
|
+
require "semantic_analysis"
|
6
|
+
|
7
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
8
|
+
# with your gem easier. You can also use a different console, if you like.
|
9
|
+
|
10
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
11
|
+
# require "pry"
|
12
|
+
# Pry.start
|
13
|
+
|
14
|
+
require "irb"
|
15
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
Binary file
|
Binary file
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'ffi'
|
4
|
+
require_relative 'semantic_analysis/version'
|
5
|
+
require 'rutie'
|
6
|
+
|
7
|
+
# Semantic Analysis Module
|
8
|
+
module SemanticAnalysis
|
9
|
+
class Error < StandardError; end
|
10
|
+
|
11
|
+
Rutie.new(:semantic_analysis).init 'Init_semantic_analyzer', __dir__
|
12
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'lib/semantic_analysis/version'
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = 'semantic_analysis'
|
7
|
+
spec.version = SemanticAnalysis::VERSION
|
8
|
+
spec.authors = ['Pete Taylor']
|
9
|
+
spec.email = ['pete.jc.taylor@hey.com']
|
10
|
+
|
11
|
+
spec.summary = 'Semantic Analysis based on VADER Sentiment'
|
12
|
+
spec.description = 'Semantic analysis is an excellent tool for determining polarity of text, this exposes a rust-based semantic analysis tool to Ruby'
|
13
|
+
|
14
|
+
spec.required_ruby_version = '>= 2.7.0'
|
15
|
+
|
16
|
+
spec.metadata['source_code_uri'] = 'https://github.com/kind-io/semantic_analysis'
|
17
|
+
spec.metadata['changelog_uri'] = 'https://github.com/kind-io/semantic_analysis/CHANGELOG.md'
|
18
|
+
spec.license = 'MIT'
|
19
|
+
|
20
|
+
spec.add_dependency 'ffi'
|
21
|
+
spec.add_dependency 'json'
|
22
|
+
spec.add_dependency 'rutie', '~> 0.0.3'
|
23
|
+
|
24
|
+
# Specify which files should be added to the gem when it is released.
|
25
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
26
|
+
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
27
|
+
`git ls-files -z`.split("\x0").reject do |f|
|
28
|
+
(f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
|
29
|
+
end
|
30
|
+
end
|
31
|
+
spec.bindir = 'exe'
|
32
|
+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
33
|
+
spec.require_paths = ['lib']
|
34
|
+
|
35
|
+
# Uncomment to register a new dependency of your gem
|
36
|
+
# spec.add_dependency "example-gem", "~> 1.0"
|
37
|
+
|
38
|
+
# For more information and examples about making a new gem, checkout our
|
39
|
+
# guide at: https://bundler.io/guides/creating_gem.html
|
40
|
+
spec.metadata = {
|
41
|
+
'rubygems_mfa_required' => 'true'
|
42
|
+
}
|
43
|
+
end
|
data/src/lib.rs
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
#[macro_use]
|
2
|
+
extern crate rutie;
|
3
|
+
extern crate vader_sentiment;
|
4
|
+
|
5
|
+
use rutie::{Class, Object};
|
6
|
+
use rutie_serde::{ruby_class, rutie_serde_methods};
|
7
|
+
use vader_sentiment::SentimentIntensityAnalyzer;
|
8
|
+
use serde::{Deserialize, Serialize};
|
9
|
+
|
10
|
+
#[derive(Clone, Serialize, Deserialize, Debug)]
|
11
|
+
struct SentimentOutput {
|
12
|
+
pub compound: f64,
|
13
|
+
pub pos: f64,
|
14
|
+
pub neg: f64,
|
15
|
+
pub neu: f64
|
16
|
+
}
|
17
|
+
|
18
|
+
|
19
|
+
class!(SemanticAnalyzer);
|
20
|
+
|
21
|
+
rutie_serde_methods!(
|
22
|
+
SemanticAnalyzer,
|
23
|
+
_rtself,
|
24
|
+
ruby_class!(Exception),
|
25
|
+
fn pub_score_polarity(
|
26
|
+
input: String,
|
27
|
+
) -> SentimentOutput {
|
28
|
+
let analyzer = SentimentIntensityAnalyzer::new();
|
29
|
+
let out = analyzer.polarity_scores(&input.as_str());
|
30
|
+
SentimentOutput {
|
31
|
+
compound: out["compound"],
|
32
|
+
pos: out["pos"],
|
33
|
+
neg: out["neg"],
|
34
|
+
neu: out["neu"]
|
35
|
+
}
|
36
|
+
}
|
37
|
+
);
|
38
|
+
|
39
|
+
#[allow(non_snake_case)]
|
40
|
+
#[no_mangle]
|
41
|
+
pub extern "C" fn Init_semantic_analyzer() {
|
42
|
+
Class::new("SemanticAnalyzer", None).define(|klass| {
|
43
|
+
klass.def_self("score_polarity", pub_score_polarity);
|
44
|
+
});
|
45
|
+
}
|
metadata
ADDED
@@ -0,0 +1,107 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: semantic_analysis
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Pete Taylor
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-12-14 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: ffi
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: json
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rutie
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 0.0.3
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 0.0.3
|
55
|
+
description: Semantic analysis is an excellent tool for determining polarity of text,
|
56
|
+
this exposes a rust-based semantic analysis tool to Ruby
|
57
|
+
email:
|
58
|
+
- pete.jc.taylor@hey.com
|
59
|
+
executables: []
|
60
|
+
extensions: []
|
61
|
+
extra_rdoc_files: []
|
62
|
+
files:
|
63
|
+
- ".rspec"
|
64
|
+
- ".rubocop.yml"
|
65
|
+
- ".ruby-version"
|
66
|
+
- CHANGELOG.md
|
67
|
+
- Cargo.lock
|
68
|
+
- Cargo.toml
|
69
|
+
- Dockerfile
|
70
|
+
- Gemfile
|
71
|
+
- Gemfile.lock
|
72
|
+
- LICENSE.txt
|
73
|
+
- README.md
|
74
|
+
- Rakefile
|
75
|
+
- bin/console
|
76
|
+
- bin/setup
|
77
|
+
- lib/libsemantic_analysis.dylib
|
78
|
+
- lib/libsemantic_analysis.so
|
79
|
+
- lib/semantic_analysis.rb
|
80
|
+
- lib/semantic_analysis/version.rb
|
81
|
+
- semantic_analysis.gemspec
|
82
|
+
- src/lib.rs
|
83
|
+
homepage:
|
84
|
+
licenses:
|
85
|
+
- MIT
|
86
|
+
metadata:
|
87
|
+
rubygems_mfa_required: 'true'
|
88
|
+
post_install_message:
|
89
|
+
rdoc_options: []
|
90
|
+
require_paths:
|
91
|
+
- lib
|
92
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 2.7.0
|
97
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
98
|
+
requirements:
|
99
|
+
- - ">="
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: '0'
|
102
|
+
requirements: []
|
103
|
+
rubygems_version: 3.1.6
|
104
|
+
signing_key:
|
105
|
+
specification_version: 4
|
106
|
+
summary: Semantic Analysis based on VADER Sentiment
|
107
|
+
test_files: []
|