sad_panda 1.0.1 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  require 'sad_panda/version'
2
2
  require './lib/sad_panda'
3
3
  require 'lingua/stemmer'
4
- require './lib/sad_panda/emotions/emotion_bank'
5
- require './lib/sad_panda/emotions/term_polarities'
6
- require './lib/sad_panda/emotions/stopwords'
4
+ require './lib/sad_panda/bank/emotions'
5
+ require './lib/sad_panda/bank/polarities'
6
+ require './lib/sad_panda/bank/stopwords'
metadata CHANGED
@@ -1,20 +1,19 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sad_panda
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
5
- prerelease:
4
+ version: 1.1.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Matt Buckley
8
+ - Edwin Rozario
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-07-02 00:00:00.000000000 Z
12
+ date: 2017-10-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
16
16
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
17
  requirements:
19
18
  - - ~>
20
19
  - !ruby/object:Gem::Version
@@ -22,7 +21,6 @@ dependencies:
22
21
  type: :development
23
22
  prerelease: false
24
23
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
24
  requirements:
27
25
  - - ~>
28
26
  - !ruby/object:Gem::Version
@@ -30,68 +28,60 @@ dependencies:
30
28
  - !ruby/object:Gem::Dependency
31
29
  name: rake
32
30
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
31
  requirements:
35
- - - ! '>='
32
+ - - '>='
36
33
  - !ruby/object:Gem::Version
37
34
  version: '0'
38
35
  type: :development
39
36
  prerelease: false
40
37
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
38
  requirements:
43
- - - ! '>='
39
+ - - '>='
44
40
  - !ruby/object:Gem::Version
45
41
  version: '0'
46
42
  - !ruby/object:Gem::Dependency
47
43
  name: ruby-stemmer
48
44
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
45
  requirements:
51
- - - ! '>='
46
+ - - '>='
52
47
  - !ruby/object:Gem::Version
53
48
  version: '0'
54
49
  type: :runtime
55
50
  prerelease: false
56
51
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
52
  requirements:
59
- - - ! '>='
53
+ - - '>='
60
54
  - !ruby/object:Gem::Version
61
55
  version: '0'
62
56
  - !ruby/object:Gem::Dependency
63
57
  name: pry
64
58
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
59
  requirements:
67
- - - ! '>='
60
+ - - '>='
68
61
  - !ruby/object:Gem::Version
69
62
  version: '0'
70
63
  type: :development
71
64
  prerelease: false
72
65
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
66
  requirements:
75
- - - ! '>='
67
+ - - '>='
76
68
  - !ruby/object:Gem::Version
77
69
  version: '0'
78
70
  - !ruby/object:Gem::Dependency
79
71
  name: rspec
80
72
  requirement: !ruby/object:Gem::Requirement
81
- none: false
82
73
  requirements:
83
- - - ! '>='
74
+ - - '>='
84
75
  - !ruby/object:Gem::Version
85
76
  version: '0'
86
77
  type: :development
87
78
  prerelease: false
88
79
  version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
80
  requirements:
91
- - - ! '>='
81
+ - - '>='
92
82
  - !ruby/object:Gem::Version
93
83
  version: '0'
94
- description: ! 'sad_panda is a gem featuring tools for sentiment analysis of natural
84
+ description: 'sad_panda is a gem featuring tools for sentiment analysis of natural
95
85
  language: positivity/negativity and emotion classification.'
96
86
  email:
97
87
  - matt.d.buckley1212@gmail.com
@@ -101,56 +91,62 @@ extra_rdoc_files: []
101
91
  files:
102
92
  - .Rhistory
103
93
  - .gitignore
94
+ - .ruby-gemset
95
+ - .ruby-version
104
96
  - Gemfile
105
97
  - LICENSE.txt
106
98
  - README.md
107
99
  - Rakefile
108
100
  - lib/sad_panda.rb
109
- - lib/sad_panda/emotions/emotion_bank.rb
110
- - lib/sad_panda/emotions/emotions.csv
111
- - lib/sad_panda/emotions/stopwords.rb
112
- - lib/sad_panda/emotions/subjectivity.csv
113
- - lib/sad_panda/emotions/term_polarities.rb
101
+ - lib/sad_panda/bank/emotions.csv
102
+ - lib/sad_panda/bank/emotions.rb
103
+ - lib/sad_panda/bank/polarities.rb
104
+ - lib/sad_panda/bank/stopwords.rb
105
+ - lib/sad_panda/bank/subjectivity.csv
106
+ - lib/sad_panda/emotion.rb
107
+ - lib/sad_panda/helpers.rb
108
+ - lib/sad_panda/polarity.rb
114
109
  - lib/sad_panda/version.rb
115
110
  - sad_panda.gemspec
116
- - spec/emotion_bank_spec.rb
111
+ - spec/sad_panda/bank/emotions_spec.rb
112
+ - spec/sad_panda/bank/polarities_spec.rb
113
+ - spec/sad_panda/bank/stopwords_spec.rb
114
+ - spec/sad_panda/emotion_spec.rb
115
+ - spec/sad_panda/helpers_spec.rb
116
+ - spec/sad_panda/polarity_spec.rb
117
117
  - spec/sad_panda_spec.rb
118
118
  - spec/spec_helper.rb
119
- - spec/term_polarities_spec.rb
120
- homepage: ''
119
+ homepage: https://github.com/mattThousand/sad_panda
121
120
  licenses:
122
121
  - MIT
122
+ metadata: {}
123
123
  post_install_message:
124
124
  rdoc_options: []
125
125
  require_paths:
126
126
  - lib
127
127
  required_ruby_version: !ruby/object:Gem::Requirement
128
- none: false
129
128
  requirements:
130
- - - ! '>='
129
+ - - '>='
131
130
  - !ruby/object:Gem::Version
132
131
  version: '0'
133
- segments:
134
- - 0
135
- hash: 2873136892834471107
136
132
  required_rubygems_version: !ruby/object:Gem::Requirement
137
- none: false
138
133
  requirements:
139
- - - ! '>='
134
+ - - '>='
140
135
  - !ruby/object:Gem::Version
141
136
  version: '0'
142
- segments:
143
- - 0
144
- hash: 2873136892834471107
145
137
  requirements: []
146
138
  rubyforge_project:
147
- rubygems_version: 1.8.25
139
+ rubygems_version: 2.0.14.1
148
140
  signing_key:
149
- specification_version: 3
150
- summary: ! 'sad_panda is a gem featuring tools for sentiment analysis of natural language:
141
+ specification_version: 4
142
+ summary: 'sad_panda is a gem featuring tools for sentiment analysis of natural language:
151
143
  positivity/negativity and emotion classification.'
152
144
  test_files:
153
- - spec/emotion_bank_spec.rb
145
+ - spec/sad_panda/bank/emotions_spec.rb
146
+ - spec/sad_panda/bank/polarities_spec.rb
147
+ - spec/sad_panda/bank/stopwords_spec.rb
148
+ - spec/sad_panda/emotion_spec.rb
149
+ - spec/sad_panda/helpers_spec.rb
150
+ - spec/sad_panda/polarity_spec.rb
154
151
  - spec/sad_panda_spec.rb
155
152
  - spec/spec_helper.rb
156
- - spec/term_polarities_spec.rb
@@ -1,265 +0,0 @@
1
- module EmotionBank
2
- # this method reads a csv file containing 'word,emotion' pairs,
3
- # and groups them into a hash where the keys are the 7 available
4
- # emotions ("anger", "disgust", "joy", "surprise", "fear", "sadness",
5
- # , uneasiness) and the values are the words associated with them
6
- def self.get_term_emotions
7
- {"anger"=>["abhor", "abhorr", "abhorrence", "abomin", "abominate",
8
- "abomination", "aggrav", "aggravate", "aggravated", "aggravation", "aggress",
9
- "aggression", "aggressive", "aggressiveness", "amok", "amuck", "anger",
10
- "angered", "angri", "angrili", "angrily", "angry", "animos", "animosity",
11
- "animus", "annoy", "annoyance", "annoyed", "annoying", "antagon",
12
- "antagonism", "avarici", "avaricious", "bad_blood", "bad_temp", "bad_temper",
13
- "baffl", "baffled", "balk", "balked", "bedevil", "begrudg", "begrudge",
14
- "begrudging", "belliger", "belligerence", "belligerency", "belligerent",
15
- "belligerently", "bitter", "bitterness", "bother", "bothersom", "bothersome",
16
- "brood", "chafe", "choler", "choleric", "class_feel", "class_feeling",
17
- "contemn", "covet", "covetous", "covetously", "covetousness", "crucifi",
18
- "crucify", "dander", "despis", "despisal", "despise", "despising", "despit",
19
- "despiteful", "detest", "detestation", "devil", "discourag", "discouraged",
20
- "disdain", "displeas", "displease", "displeased", "displeasing",
21
- "displeasingly", "displeasur", "displeasure", "dudgeon", "dun", "enfuri",
22
- "enfuriate", "enmiti", "enmity", "enrag", "enraged", "enragement", "envi",
23
- "enviabl", "enviable", "enviably", "envious", "enviously", "enviousness",
24
- "envy", "evil", "exacerb", "exacerbate", "exasper", "exasperate",
25
- "exasperating", "exasperation", "execr", "execrate", "execration", "fit",
26
- "frustrat", "frustrate", "frustrated", "frustrating", "frustration", "furi",
27
- "furious", "furiously", "fury", "gall", "galling", "get_at", "get_to",
28
- "grabbi", "grabby", "grasp", "grasping", "gravel", "greedi", "greedy", "green-
29
- ey", "green-eyed", "green-eyed_monst", "green-eyed_monster", "grievanc",
30
- "grievance", "grizzl", "grizzle", "grudg", "grudge", "grudging", "hackl",
31
- "hackles", "harass", "harassed", "harassment", "harri", "harried", "hate",
32
- "hateful", "hatefully", "hatr", "hatred", "heartburn", "heartburning",
33
- "high_dudgeon", "hostil", "hostile", "hostilely", "hostility", "huffi",
34
- "huffili", "huffily", "huffiness", "huffish", "huffishness", "huffy",
35
- "ill_temp", "ill_temper", "ill_wil", "ill_will", "incens", "incense",
36
- "incensed", "indign", "indignant", "indignantly", "indignation", "infuri",
37
- "infuriate", "infuriated", "infuriating", "infuriation", "irasc",
38
- "irascibility", "irascible", "ire", "irrit", "irritate", "irritated",
39
- "irritating", "irritation", "jealous", "jealousi", "jealously", "jealousy",
40
- "livid", "lividity", "lividly", "loath", "loathe", "loathing", "mad",
41
- "madden", "maddened", "maddening", "madness", "malef", "malefic",
42
- "maleficence", "malevol", "malevolence", "malevolent", "malevolently",
43
- "malic", "malice", "malici", "malicious", "maliciously", "maliciousness",
44
- "malign", "malignity", "misanthrop", "misanthropi", "misanthropic",
45
- "misanthropical", "misanthropy", "misocainea", "misogami", "misogamy",
46
- "misogyn", "misogyni", "misogynic", "misogynism", "misogyny", "misolog",
47
- "misology", "mison", "misoneism", "misopedia", "murder", "murderously",
48
- "murderousness", "nark", "nettl", "nettle", "nettled", "nettlesom",
49
- "nettlesome", "odium", "offend", "offens", "offense", "oppress", "outrag",
50
- "outrage", "outraged", "overjeal", "overjealous", "peev", "peeved",
51
- "persecut", "persecute", "peski", "pesky", "pester", "pestered", "pestering",
52
- "pestifer", "pestiferous", "piqu", "pique", "piss", "pissed", "plaguey",
53
- "plaguy", "poop", "pout", "prehensil", "prehensile", "provok", "provoked",
54
- "quick_temp", "quick_temper", "rag", "rage", "rancor", "rancour", "resent",
55
- "resentful", "resentfully", "resentment", "reveng", "revengefully", "rile",
56
- "riled", "roil", "roiled", "scene", "score", "scorn", "see_r", "see_red",
57
- "short_temp", "short_temper", "sore", "spite", "spiteful", "spitefulness",
58
- "spleen", "stew", "stung", "sulk", "sulki", "sulkiness", "sulky", "tantal",
59
- "tantalize", "tantrum", "teas", "teasing", "temper", "the_green-eyed_monst",
60
- "the_green-eyed_monster", "torment", "umbrag", "umbrage", "umbrageous",
61
- "veng", "vengefully", "vengefulness", "venom", "vex", "vexat", "vexati",
62
- "vexation", "vexatious", "vexed", "vexing", "vindict", "vindictive",
63
- "vindictively", "vindictiveness", "warpath", "with_hostil", "with_hostility",
64
- "wrath", "wrathful", "wrathfully", "wroth", "wrothful"], "disgust"=>["abhorr",
65
- "abhorrent", "abomin", "abominably", "churn_up", "detest", "detestable",
66
- "detestably", "disgust", "disgusted", "disgustedly", "disgustful",
67
- "disgusting", "disgustingly", "distast", "distasteful", "distastefully",
68
- "fed_up", "foul", "hideous", "horror", "loath", "loathly", "loathsom",
69
- "loathsome", "nausea", "nauseat", "nauseate", "nauseated", "nauseating",
70
- "nauseous", "noisom", "noisome", "obscen", "obscene", "odious", "odiously",
71
- "offens", "offensive", "queasi", "queasy", "repel", "repellant", "repellent",
72
- "repugn", "repugnance", "repugnant", "repuls", "repulse", "repulsion",
73
- "repulsive", "repulsively", "revolt", "revolting", "revoltingly", "revuls",
74
- "revulsion", "sick", "sick_of", "sicken", "sickening", "sickeningly",
75
- "sickish", "tired_of", "turn_off", "vile", "wick", "wicked", "yucki",
76
- "yucky"], "joy"=>["admir", "admirable", "admirably", "admiration", "admire",
77
- "ador", "adorably", "adoration", "adoring", "affect", "affection",
78
- "affectional", "affectionate", "affectionateness", "affective", "amat",
79
- "amative", "amatori", "amatory", "amic", "amicability", "amicable",
80
- "amicableness", "amicably", "amor", "amorous", "amorousness", "anticip",
81
- "anticipate", "anticipation", "appreci", "appreciated", "approb",
82
- "approbative", "approbatori", "approbatory", "approv", "approval", "approve",
83
- "approved", "approving", "ardor", "ardour", "attach", "attachment", "avid",
84
- "avidity", "avidness", "bang", "banter", "barrack", "be_on_cloud_nin",
85
- "be_on_cloud_nine", "beam", "beaming", "becharm", "beguil", "beguile",
86
- "beguiled", "belong", "belonging", "benef", "benefic", "beneficed",
87
- "beneficence", "beneficent", "benefici", "beneficially", "benevol",
88
- "benevolence", "benevolent", "benevolently", "bewitch", "bewitching", "blith",
89
- "blithely", "blitheness", "bonheur", "brother", "brotherhood", "brotherlik",
90
- "brotherlike", "brotherly", "buoyanc", "buoyancy", "calf_lov", "calf_love",
91
- "captiv", "captivate", "captivated", "captivating", "captivation", "captur",
92
- "capture", "care", "carefre", "carefree", "carefreeness", "caring", "catch",
93
- "chaff", "charg", "charge", "charit", "charitable", "charm", "charmed",
94
- "cheer", "cheer_up", "cheerful", "cheerfully", "cheerfulness", "cheeri",
95
- "cheering", "cheery", "chirk_up", "cliff-hang", "cliff-hanging", "close",
96
- "closeness", "comfort", "comfortable", "comfortableness", "comfortably",
97
- "comforting", "commend", "commendable", "compat", "compatibility",
98
- "compatible", "compatibly", "complac", "complacence", "complacency",
99
- "complacent", "concern", "congratul", "congratulate", "consol", "console",
100
- "content", "contented", "contentment", "crush", "delight", "delighted",
101
- "devot", "devoted", "devotedness", "devotion", "eager", "eagerly",
102
- "eagerness", "ebulli", "ebullient", "ebulliently", "elan", "elat", "elate",
103
- "elated", "elating", "elation", "embolden", "emot", "emotive", "empath",
104
- "empathet", "empathetic", "empathetically", "empathi", "empathic", "empathy",
105
- "enamor", "enamored", "enamoredness", "enamour", "enchant", "enchanting",
106
- "enchantment", "endear", "endearingly", "enjoy", "enthral", "enthralled",
107
- "enthralling", "enthrallment", "enthusiasm", "enthusiast", "enthusiastic",
108
- "enthusiastically", "entranc", "entrance", "entranced", "entrancing",
109
- "esteem", "euphor", "euphori", "euphoria", "euphoriant", "euphoric", "exalt",
110
- "excit", "excitement", "exciting", "exhilar", "exhilarate", "exhilarated",
111
- "exhilarating", "exhilaration", "exhort", "expans", "expansively", "expect",
112
- "expectancy", "exuber", "exuberance", "exuberant", "exuberantly", "exult",
113
- "exultant", "exultantly", "exultation", "exulting", "exultingly", "fanci",
114
- "fancy", "fascin", "fascinate", "fascinating", "fascination", "favor",
115
- "favorable", "favorably", "favour", "favourable", "favourably",
116
- "feeling_of_ident", "feeling_of_identity", "fellow_feel", "fellow_feeling",
117
- "festal", "festiv", "festive", "flush", "fond", "fond_regard", "fondly",
118
- "fondness", "fratern", "fraternal", "friend", "friendli", "friendliness",
119
- "friendly","fulfil", "fulfill", "fulfillment", "fulfilment", "gaieti",
120
- "gaiety", "gala", "gay", "gayli", "gayly", "giving_protect",
121
- "giving_protection", "glad", "gladden", "gladdened", "gladfulness",
122
- "gladness", "gladsom", "gladsome", "gladsomeness", "glee", "gleeful",
123
- "gleefulli", "gleefully", "gleefulness", "gloat", "gloating", "gloatingly",
124
- "good", "good_wil", "good_will", "goodwil", "goodwill", "gratifi", "gratify",
125
- "gratifying", "gratifyingly", "great", "gusto", "happi", "happili", "happily",
126
- "happiness", "happy", "heart", "hearten", "hero_worship", "high_spirit",
127
- "high_spirits", "high-spirit", "high-spirited", "hilar", "hilari",
128
- "hilarious", "hilariously", "hilarity", "identif", "identifi",
129
- "identification", "identify", "impress", "infatu", "infatuation", "insouci",
130
- "insouciance", "inspir", "inspire", "interest", "intimaci", "intimacy",
131
- "intox", "intoxicate", "jocular", "jocularity", "jocund", "jocundity",
132
- "jolli", "jolliti", "jollity", "jolly", "jolly_along", "jolly_up", "jovial",
133
- "joviality", "joy", "joyful", "joyfully", "joyfulness", "joyous", "joyously",
134
- "joyousness", "jubil", "jubilance", "jubilancy", "jubilant", "jubilantly",
135
- "jubilate", "jubilation", "jump_for_joy", "keen", "keenness", "kick", "kid",
136
- "kind", "kindheart", "kindhearted", "kindheartedness", "kindly", "laudabl",
137
- "laudably", "lift_up", "lighthearted", "lightheartedness", "lightsom",
138
- "lightsomeness", "likabl", "likable", "like", "likeabl", "likeable", "liking",
139
- "live_up_to", "look_for", "look_to", "look_up_to", "love", "lovesom",
140
- "lovesome", "loving", "lovingly", "lovingness", "loyalti", "loyalty", "merri",
141
- "merrili", "merrily", "merriment", "merry", "mirth", "mirthful", "mirthfully",
142
- "mirthfulness", "move", "near", "nigh", "occupi", "occupy",
143
- "offering_protect", "offering_protection", "partial", "partiality",
144
- "penchant", "pep_up", "perki", "perkiness", "pick_up", "pleas", "pleased",
145
- "pleasing", "praiseworthili", "praiseworthily", "predilect", "predilection",
146
- "preen", "prefer", "preference", "pride", "prideful", "protect", "protective",
147
- "protectively", "protectiveness", "proud", "proudly", "puppy_lov",
148
- "puppy_love", "rapport", "recreat", "recreate", "regard", "rejoic", "rejoice",
149
- "rejoicing", "relish", "respect", "revel", "riotous", "riotously", "romant",
150
- "romantic", "rush", "satiabl", "satiable", "satisfact", "satisfaction",
151
- "satisfactori", "satisfactorili", "satisfactorily", "satisfactory", "satisfi",
152
- "satisfiable", "satisfied", "satisfy", "satisfying", "satisfyingly",
153
- "schadenfreud", "schadenfreude", "scream", "screaming", "self-complac", "self-
154
- complacency", "self-satisfact", "self-satisfaction", "self-satisfi", "self-
155
- satisfied", "smug", "smugness", "soft_spot", "soft-boil", "soft-boiled",
156
- "softheart", "softhearted", "softheartedness", "solac", "solace", "sooth",
157
- "soothe", "stimul", "stimulating", "strike", "sunni", "sunny", "suspens",
158
- "suspense", "suspenseful", "suspensive", "sympathet", "sympathetic",
159
- "sympathetically", "sympathi", "sympathy", "tast", "taste", "teas", "teased",
160
- "tender", "tenderness", "thirstili", "thirstily", "thrill", "tickl", "tickle",
161
- "titil", "titillate", "titillated", "titillating", "titillation", "togeth",
162
- "togetherness", "tranc", "trance", "triumph", "triumphal", "triumphant",
163
- "triumphantly", "unworri", "unworried", "uplift", "uproari", "uproarious",
164
- "uproariously", "urg", "urge", "urge_on", "walk_on_air", "wallow", "warm",
165
- "warmheart", "warmhearted", "warmheartedness", "warmth", "weak", "weakness",
166
- "with_empathi", "with_empathy", "with_happi", "with_happiness", "with_prid",
167
- "with_pride", "with_sympathi", "with_sympathy", "worri", "worry", "worship",
168
- "worshipful", "zeal", "zealous", "zest", "zestfulness"], "surprise"=>["admir",
169
- "admiration", "amaz", "amaze", "amazed", "amazement", "amazing", "amazingly",
170
- "astoni", "astonied", "astonish", "astonished", "astonishing",
171
- "astonishingly", "astonishment", "astound", "astounded", "astounding", "aw",
172
- "awe", "awed", "awestricken", "awestruck", "awful", "baffl", "baffle", "beat",
173
- "besot", "bewild", "bewilder", "daze", "dazed", "dumbfound", "dumbfounded",
174
- "dumfound", "dumfounded", "fantast", "fantastic", "flabbergast",
175
- "flabbergasted", "flummox", "get", "gravel", "howl", "howling", "in_awe_of",
176
- "marvel", "marvellously", "marvelous", "marvelously", "mystifi", "mystify",
177
- "nonplus", "perplex", "puzzl", "puzzle", "rattl", "rattling", "stagger",
178
- "staggering", "stun", "stunned", "stupefact", "stupefaction", "stupefi",
179
- "stupefied", "stupefy", "stupefying", "stupid", "stupifi", "stupify",
180
- "superbl", "superbly", "surpris", "surprise", "surprised", "surprisedly",
181
- "surprising", "surprisingly", "terrif", "terrific", "terrifically",
182
- "thunderstruck", "top", "toppingly", "tremend", "tremendous", "trounc",
183
- "trounce", "wonder", "wonderful", "wonderfully", "wonderment", "wondrous",
184
- "wondrously"], "fear"=>["affright", "afraid", "alarm", "alarmed", "alert",
185
- "anxious", "anxiously", "appal", "appall", "apprehens", "apprehension",
186
- "apprehensive", "apprehensively", "apprehensiveness", "atroci", "atrocious",
187
- "aw", "awful", "awfully", "bash", "bashfully", "bode", "boding", "browbeaten",
188
- "bulli", "bullied", "chill", "chilling", "cliff-hang", "cliff-hanging",
189
- "coldhearted", "coldheartedness", "constern", "consternation", "cow", "cowed",
190
- "cower", "crawl", "creep", "creeps", "cring", "cringe", "cruel", "cruelli",
191
- "cruelly", "cruelti", "cruelty", "dash", "daunt", "diffid", "diffidence",
192
- "diffident", "diffidently", "dire", "direful", "dismay", "dread", "dreaded",
193
- "dreadful", "dreadfully", "fawn", "fear", "fearful", "fearfully",
194
- "fearfulness", "fearsom", "fearsome", "forebod", "foreboding", "fright",
195
- "frighten", "frighten_away", "frighten_off", "frightened", "frightening",
196
- "frighteningly", "frightful", "grovel", "hangdog", "hardheart", "hardhearted",
197
- "hardheartedness", "heartless", "heartlessly", "heartlessness", "hesit",
198
- "hesitance", "hesitancy", "hesitantly", "hesitatingly", "hideous",
199
- "hideously", "horrend", "horrendous", "horribl", "horrible", "horribly",
200
- "horrid", "horridly", "horrif", "horrifi", "horrific", "horrified", "horrify",
201
- "horrifying", "horrifyingly", "horror", "horror-stricken", "horror-struck",
202
- "hyster", "hysteria", "hysterical", "hysterically", "intimid", "intimidate",
203
- "intimidated", "intimidation", "merciless", "mercilessness", "monstrous",
204
- "monstrously", "outrag", "outrageous", "pall", "panic", "panic_attack",
205
- "panic-stricken", "panic-struck", "panick", "panicked", "panicki", "panicky",
206
- "pitiless", "pitilessness", "premonit", "premonition", "presag", "presage",
207
- "presenti", "presentiment", "ruthless", "ruthlessness", "scare", "scare_away",
208
- "scare_off", "scared", "scarey", "scari", "scarili", "scarily", "scary",
209
- "self-distrust", "self-doubt", "shadow", "shi", "shiveri", "shivery",
210
- "shudderi", "shuddery", "shy", "shyli", "shyly", "shyness", "stage_fright",
211
- "suspens", "suspense", "suspenseful", "suspensive", "terribl", "terrible",
212
- "terrifi", "terrified", "terror", "timid", "timidity", "timidly", "timidness",
213
- "timor", "timorous", "timorously", "timorousness", "trepid", "trepidation",
214
- "trepidly", "ugli", "ugly", "unassert", "unassertive", "unassertively",
215
- "unassertiveness", "uneasili", "uneasily", "unkind", "unsur", "unsure"],
216
- "sadness"=>["aggriev", "aggrieve", "attrit", "attrition", "bad", "bereav",
217
- "bereaved", "bereft", "blue", "blue_devil", "blue_devils", "bore", "bored",
218
- "brokenhearted", "brokenheartedness", "cast_down", "cheerless", "cheerlessly",
219
- "cheerlessness", "compunct", "compunction", "contrit", "contrite",
220
- "contritely", "contriteness", "contrition", "dark", "deject", "demor",
221
- "demoralis", "demoralising", "demoralization", "demoralize", "demoralized",
222
- "demoralizing", "deplor", "deplorable", "deplorably", "depress", "depressed",
223
- "depressing", "depression", "depressive", "desol", "desolate", "desolation",
224
- "despair", "despairingly", "despond", "despondence", "despondency",
225
- "despondent", "despondently", "dingi", "dingy", "disconsol", "disconsolate",
226
- "disconsolateness", "discourag", "discouraged", "dishearten", "disheartened",
227
- "disheartening", "dismal", "dismay", "dispirit", "dispirited",
228
- "dispiritedness", "dispiriting", "distress", "distressed", "dole", "doleful",
229
- "dolefully", "dolefulness", "dolor", "dolorous", "dolour", "dolourous",
230
- "down", "downcast", "downheart", "downhearted", "downheartedness",
231
- "downtrodden", "drab", "drear", "dreari", "dreary", "dysphor", "dysphoria",
232
- "dysphoric", "execr", "execrable", "forlorn", "forlornly", "forlornness",
233
- "get_down", "gloom", "gloomful", "gloomi", "gloomili", "gloomily",
234
- "gloominess", "glooming", "gloomy", "glum", "godforsaken", "grief", "grief-
235
- stricken", "griev", "grieve", "grieving", "grievous", "grievously", "grim",
236
- "guilt", "guilt_feel", "guilt_feelings", "guilt_trip", "guilti", "guilty",
237
- "guilty_consci", "guilty_conscience", "hangdog", "hapless", "harass",
238
- "heartach", "heartache", "heartbreak", "heartbreaking", "heartrend",
239
- "heartrending", "heartsick", "heartsickness", "heavyheart", "heavyhearted",
240
- "heavyheartedness", "helpless", "helplessness", "joyless", "joylessly",
241
- "joylessness", "lachrymos", "lachrymose", "laden", "lament", "lamentably",
242
- "loneli", "loneliness", "long-fac", "long-faced", "lorn", "low", "low-spirit",
243
- "low-spirited", "low-spiritedness", "melanchol", "melancholi", "melancholic",
244
- "melancholy", "miser", "miserable", "miserably", "miseri", "misery",
245
- "misfortun", "misfortunate", "mourn", "mournful", "mournfully",
246
- "mournfulness", "mourning", "oppress", "oppressed", "oppression",
247
- "oppressive", "oppressively", "oppressiveness", "pathet", "pathetic",
248
- "penanc", "penance", "penit", "penitence", "penitent", "penitenti",
249
- "penitentially", "penitently", "persecut", "persecute", "persecuted",
250
- "piteous", "piti", "pitiabl", "pitiable", "pitiful", "pitying", "plaintiv",
251
- "plaintive", "plaintively", "plaintiveness", "poor", "regret", "regretful",
252
- "remors", "remorse", "remorseful", "remorsefully", "repent", "repentance",
253
- "repentant", "repentantly", "rue", "rueful", "ruefulli", "ruefully",
254
- "ruefulness", "ruth", "ruthfulness", "sad", "sadden", "saddening", "sadly",
255
- "sadness", "self-piti", "self-pity", "self-reproach", "shame", "shamed",
256
- "shamefac", "shamefaced", "somber", "somberness", "sorri", "sorrow",
257
- "sorrowful", "sorrowfully", "sorrowfulness", "sorrowing", "sorry",
258
- "sorry_for", "suffer", "suffering", "tear", "tearful", "tearfulness",
259
- "tyrann", "tyrannical", "tyrannous", "uncheer", "uncheerful",
260
- "uncheerfulness", "unhappi", "unhappiness", "unhappy", "weep", "weepi",
261
- "weepiness", "weeping", "weight", "Weltschmerz", "woe", "woebegon",
262
- "woebegone", "woeful", "woefulli", "woefully", "woefulness", "world-weari",
263
- "world-weariness", "world-weary", "wretch", "wretched"]}
264
- end
265
- end