afinn 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.rspec +3 -0
- data/.rubocop.yml +13 -0
- data/CHANGELOG.md +5 -0
- data/Gemfile +14 -0
- data/Gemfile.lock +58 -0
- data/README.md +42 -0
- data/Rakefile +12 -0
- data/lib/afinn.rb +60 -0
- data/lib/dictionaries/da.txt +3553 -0
- data/lib/dictionaries/emoticons.txt +96 -0
- data/lib/dictionaries/en.txt +3385 -0
- metadata +57 -0
metadata
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: afinn
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Jakub Polak
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2022-02-24 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: "Sentiment analysis in Ruby. Languages supported: English \U0001F1EC\U0001F1E7,
|
14
|
+
Danish \U0001F1E9\U0001F1F0"
|
15
|
+
email:
|
16
|
+
- jpolak@prograils.com
|
17
|
+
executables: []
|
18
|
+
extensions: []
|
19
|
+
extra_rdoc_files: []
|
20
|
+
files:
|
21
|
+
- ".rspec"
|
22
|
+
- ".rubocop.yml"
|
23
|
+
- CHANGELOG.md
|
24
|
+
- Gemfile
|
25
|
+
- Gemfile.lock
|
26
|
+
- README.md
|
27
|
+
- Rakefile
|
28
|
+
- lib/afinn.rb
|
29
|
+
- lib/dictionaries/da.txt
|
30
|
+
- lib/dictionaries/emoticons.txt
|
31
|
+
- lib/dictionaries/en.txt
|
32
|
+
homepage: https://github.com/prograils/afinn
|
33
|
+
licenses: []
|
34
|
+
metadata:
|
35
|
+
homepage_uri: https://github.com/prograils/afinn
|
36
|
+
source_code_uri: https://github.com/prograils/afinn
|
37
|
+
changelog_uri: https://github.com/prograils/afinn/blob/master/CHANGELOG.md
|
38
|
+
post_install_message:
|
39
|
+
rdoc_options: []
|
40
|
+
require_paths:
|
41
|
+
- lib
|
42
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: 2.6.0
|
47
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
48
|
+
requirements:
|
49
|
+
- - ">="
|
50
|
+
- !ruby/object:Gem::Version
|
51
|
+
version: '0'
|
52
|
+
requirements: []
|
53
|
+
rubygems_version: 3.2.32
|
54
|
+
signing_key:
|
55
|
+
specification_version: 4
|
56
|
+
summary: Sentiment analysis in Ruby.
|
57
|
+
test_files: []
|