phraser 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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 47d3b4f15fe1f6e4a563d9553f24c12d0564b6b5
4
+ data.tar.gz: d5e0153471471f551df639155d1b8cf664379b73
5
+ SHA512:
6
+ metadata.gz: ecb6cfe7015a7a3c1ef62bb98a5555988cb4ab206755ef42ee2ddd7a0e10655f6d91aa3ffaea5e0bb95db45dfd9df9138c700c9be65d63f488aa1f288516d69b
7
+ data.tar.gz: 2a2ffb52fe8b0a3d59a03bf12661108d8a0c61e1640700af168ad365a64f0d4aa5000014313cf468b470c41cae9ad84ad1a1d53533bc47dcf9fd2bfdf9dbdcb9
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+
11
+ # rspec failure tracking
12
+ .rspec_status
13
+
14
+ /.idea
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
@@ -0,0 +1,4 @@
1
+ Metrics/LineLength:
2
+ Max: 120
3
+ Metrics/BlockLength:
4
+ ExcludedMethods: ['describe', 'context']
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.3
5
+ before_install: gem install bundler -v 1.15.1
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at mrak69@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in phraser.gemspec
4
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 mpakus
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.
@@ -0,0 +1,59 @@
1
+ # Phraser
2
+
3
+ Phraser is a gem that generates unique phrases to use in your app as password, url and tokens
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'phraser'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install phraser
20
+
21
+ ## Usage
22
+
23
+ Generate array of strings:
24
+ ``` ruby
25
+ TokenPhrase.generate([prefix: proc{}, postfix: proc{}])
26
+ > ['red', 'massive', 'elephant']
27
+ ```
28
+
29
+ Generate completely string:
30
+ ```
31
+ TokenPhrase.generate_string([separator: '-', prefix: proc{}, postfix: proc{}])
32
+ > "1792123-red-massive-elephant-68912223"
33
+ ```
34
+ ```
35
+ prefix = proc{ 'begin' }
36
+ postfix = proc{ 'end' }
37
+ TokenPhrase.generate_string(prefix: prefix, postfix: postfix)
38
+ > "begin-red-massive-elephant-end"
39
+ ```
40
+
41
+ ## Development
42
+
43
+ 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.
44
+
45
+ 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 tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
46
+
47
+ ## Contributing
48
+
49
+ Bug reports and pull requests are welcome on GitHub at https://github.com/mpakus/phraser. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
50
+
51
+ ## License
52
+
53
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
54
+
55
+ ## Code of Conduct
56
+
57
+ Everyone interacting in the Phraser project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/phraser/blob/master/CODE_OF_CONDUCT.md).
58
+
59
+ [![CircleCI](https://circleci.com/gh/mpakus/phraser.svg?style=svg)](https://circleci.com/gh/mpakus/phraser)
@@ -0,0 +1,6 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rspec/core/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task default: :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'bundler/setup'
4
+ require 'phraser'
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require 'irb'
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,3 @@
1
+ dependencies:
2
+ pre:
3
+ - gem install bundler --pre
@@ -0,0 +1,1772 @@
1
+ require 'phraser/version'
2
+
3
+ # Main class
4
+ module Phraser
5
+ def self.generate_string(**args)
6
+ generate(args).join(args[:separator] || '-')
7
+ end
8
+
9
+ def self.generate(prefix: nil, postfix: nil)
10
+ res = []
11
+
12
+ res << (prefix.is_a?(Proc) ? prefix.call : prefix) if prefix
13
+ res << dictionary.values_at(*dictionary.keys).compact.map(&:sample)
14
+ res << (postfix.is_a?(Proc) ? postfix.call : postfix) if postfix
15
+ res.flatten
16
+ end
17
+
18
+ def self.dictionary
19
+ {
20
+ adjectives: %w[
21
+ constituting
22
+ certified
23
+ instruments
24
+ construct
25
+ preserver
26
+ ventilators
27
+ maximums
28
+ lubricant
29
+ circuitries
30
+ pressuring
31
+ digitizers
32
+ expand
33
+ dilutes
34
+ categories
35
+ interacts
36
+ accelerated
37
+ programs
38
+ capacities
39
+ assemble
40
+ inhibiting
41
+ instrumentation
42
+ collimated
43
+ refuels
44
+ insulates
45
+ coordinators
46
+ extent
47
+ electrolytes
48
+ corrective
49
+ alternated
50
+ minimizing
51
+ input
52
+ deductions
53
+ propellers
54
+ communications
55
+ harnesses
56
+ insulated
57
+ communicate
58
+ compiling
59
+ consolidate
60
+ depress
61
+ submerge
62
+ inspection
63
+ programmed
64
+ destructive
65
+ overflowed
66
+ electromagnets
67
+ detonates
68
+ ignitions
69
+ inclinations
70
+ electrostatic
71
+ atmospheric
72
+ catastrophe
73
+ inspections
74
+ specify
75
+ overlapped
76
+ reassemble
77
+ equal
78
+ categorizing
79
+ attacker
80
+ flammable
81
+ modify
82
+ printout
83
+ interlocking
84
+ reconnects
85
+ depression
86
+ configurations
87
+ accumulate
88
+ extensions
89
+ encodes
90
+ detonate
91
+ equivalent
92
+ accumulator
93
+ operator
94
+ increment
95
+ calculated
96
+ damages
97
+ atomization
98
+ implements
99
+ dioxides
100
+ constitute
101
+ calibration
102
+ depressurized
103
+ stationing
104
+ subsystem
105
+ photoelectric
106
+ attackers
107
+ amplified
108
+ decontaminated
109
+ retain
110
+ overridden
111
+ analogs
112
+ igniter
113
+ integer
114
+ distributions
115
+ operability
116
+ interconnections
117
+ repressurized
118
+ compiled
119
+ solvencies
120
+ diaphragm
121
+ average
122
+ big
123
+ colossal
124
+ fat
125
+ giant
126
+ gigantic
127
+ great
128
+ huge
129
+ immense
130
+ large
131
+ little
132
+ long
133
+ mammoth
134
+ massive
135
+ miniature
136
+ petite
137
+ puny
138
+ short
139
+ small
140
+ tall
141
+ tiny
142
+ boiling
143
+ breezy
144
+ broken
145
+ bumpy
146
+ chilly
147
+ cold
148
+ cool
149
+ creepy
150
+ crooked
151
+ cuddly
152
+ curly
153
+ damaged
154
+ damp
155
+ dirty
156
+ dry
157
+ dusty
158
+ filthy
159
+ flaky
160
+ fluffy
161
+ wet
162
+ broad
163
+ chubby
164
+ crooked
165
+ curved
166
+ deep
167
+ flat
168
+ high
169
+ hollow
170
+ low
171
+ narrow
172
+ round
173
+ shallow
174
+ skinny
175
+ square
176
+ steep
177
+ straight
178
+ wide
179
+ ancient
180
+ brief
181
+ early
182
+ fast
183
+ late
184
+ long
185
+ modern
186
+ old
187
+ old-fashioned
188
+ quick
189
+ rapid
190
+ short
191
+ slow
192
+ swift
193
+ young
194
+ abundant
195
+ empty
196
+ few
197
+ heavy
198
+ light
199
+ many
200
+ numerous
201
+ Sound
202
+ cooing
203
+ deafening
204
+ faint
205
+ harsh
206
+ high-pitched
207
+ hissing
208
+ hushed
209
+ husky
210
+ loud
211
+ melodic
212
+ moaning
213
+ mute
214
+ noisy
215
+ purring
216
+ quiet
217
+ raspy
218
+ resonant
219
+ screeching
220
+ shrill
221
+ silent
222
+ soft
223
+ squealing
224
+ thundering
225
+ voiceless
226
+ whispering
227
+ bitter
228
+ delicious
229
+ fresh
230
+ juicy
231
+ ripe
232
+ rotten
233
+ salty
234
+ sour
235
+ spicy
236
+ stale
237
+ sticky
238
+ strong
239
+ sweet
240
+ tasteless
241
+ tasty
242
+ thirsty
243
+ fluttering
244
+ fuzzy
245
+ greasy
246
+ grubby
247
+ hard
248
+ hot
249
+ icy
250
+ loose
251
+ melted
252
+ plastic
253
+ prickly
254
+ rainy
255
+ rough
256
+ scattered
257
+ shaggy
258
+ shaky
259
+ sharp
260
+ shivering
261
+ silky
262
+ slimy
263
+ slippery
264
+ smooth
265
+ soft
266
+ solid
267
+ steady
268
+ sticky
269
+ tender
270
+ tight
271
+ uneven
272
+ weak
273
+ wet
274
+ wooden
275
+ afraid
276
+ angry
277
+ annoyed
278
+ anxious
279
+ arrogant
280
+ ashamed
281
+ awful
282
+ bad
283
+ bewildered
284
+ bored
285
+ combative
286
+ condemned
287
+ confused
288
+ creepy
289
+ cruel
290
+ dangerous
291
+ defeated
292
+ defiant
293
+ depressed
294
+ disgusted
295
+ disturbed
296
+ eerie
297
+ embarrassed
298
+ envious
299
+ evil
300
+ fierce
301
+ foolish
302
+ frantic
303
+ frightened
304
+ grieving
305
+ helpless
306
+ homeless
307
+ hungry
308
+ hurt
309
+ ill
310
+ jealous
311
+ lonely
312
+ mysterious
313
+ naughty
314
+ nervous
315
+ obnoxious
316
+ outrageous
317
+ panicky
318
+ repulsive
319
+ scary
320
+ scornful
321
+ selfish
322
+ sore
323
+ tense
324
+ terrible
325
+ thoughtless
326
+ tired
327
+ troubled
328
+ upset
329
+ uptight
330
+ weary
331
+ wicked
332
+ worried
333
+ agreeable
334
+ amused
335
+ brave
336
+ calm
337
+ charming
338
+ cheerful
339
+ comfortable
340
+ cooperative
341
+ courageous
342
+ delightful
343
+ determined
344
+ eager
345
+ elated
346
+ enchanting
347
+ encouraging
348
+ energetic
349
+ enthusiastic
350
+ excited
351
+ exuberant
352
+ fair
353
+ faithful
354
+ fantastic
355
+ fine
356
+ friendly
357
+ funny
358
+ gentle
359
+ glorious
360
+ good
361
+ happy
362
+ healthy
363
+ helpful
364
+ hilarious
365
+ jolly
366
+ joyous
367
+ kind
368
+ lively
369
+ lovely
370
+ lucky
371
+ obedient
372
+ perfect
373
+ pleasant
374
+ proud
375
+ relieved
376
+ silly
377
+ smiling
378
+ splendid
379
+ successful
380
+ thoughtful
381
+ victorious
382
+ vivacious
383
+ witty
384
+ wonderful
385
+ zealous
386
+ zany
387
+ other
388
+ good
389
+ new
390
+ old
391
+ great
392
+ high
393
+ small
394
+ different
395
+ large
396
+ local
397
+ social
398
+ important
399
+ long
400
+ young
401
+ national
402
+ british
403
+ right
404
+ early
405
+ possible
406
+ big
407
+ little
408
+ political
409
+ able
410
+ late
411
+ general
412
+ full
413
+ far
414
+ low
415
+ public
416
+ available
417
+ bad
418
+ main
419
+ sure
420
+ clear
421
+ major
422
+ economic
423
+ only
424
+ likely
425
+ real
426
+ black
427
+ particular
428
+ international
429
+ special
430
+ difficult
431
+ certain
432
+ open
433
+ whole
434
+ white
435
+ free
436
+ short
437
+ easy
438
+ strong
439
+ european
440
+ central
441
+ similar
442
+ human
443
+ common
444
+ necessary
445
+ single
446
+ personal
447
+ hard
448
+ private
449
+ poor
450
+ financial
451
+ wide
452
+ foreign
453
+ simple
454
+ recent
455
+ concerned
456
+ american
457
+ various
458
+ close
459
+ fine
460
+ english
461
+ wrong
462
+ present
463
+ royal
464
+ natural
465
+ individual
466
+ nice
467
+ french
468
+ following
469
+ current
470
+ modern
471
+ labour
472
+ legal
473
+ happy
474
+ final
475
+ red
476
+ normal
477
+ serious
478
+ previous
479
+ total
480
+ prime
481
+ significant
482
+ industrial
483
+ sorry
484
+ dead
485
+ specific
486
+ appropriate
487
+ top
488
+ soviet
489
+ basic
490
+ military
491
+ original
492
+ successful
493
+ aware
494
+ hon
495
+ popular
496
+ heavy
497
+ professional
498
+ direct
499
+ dark
500
+ cold
501
+ ready
502
+ green
503
+ useful
504
+ effective
505
+ western
506
+ traditional
507
+ scottish
508
+ german
509
+ independent
510
+ deep
511
+ interesting
512
+ considerable
513
+ involved
514
+ physical
515
+ left
516
+ hot
517
+ existing
518
+ responsible
519
+ complete
520
+ medical
521
+ blue
522
+ extra
523
+ past
524
+ male
525
+ interested
526
+ fair
527
+ essential
528
+ beautiful
529
+ civil
530
+ primary
531
+ obvious
532
+ future
533
+ environmental
534
+ positive
535
+ senior
536
+ nuclear
537
+ annual
538
+ relevant
539
+ huge
540
+ rich
541
+ commercial
542
+ safe
543
+ regional
544
+ practical
545
+ official
546
+ separate
547
+ key
548
+ chief
549
+ regular
550
+ due
551
+ additional
552
+ active
553
+ powerful
554
+ complex
555
+ standard
556
+ impossible
557
+ light
558
+ warm
559
+ middle
560
+ fresh
561
+ sexual
562
+ front
563
+ domestic
564
+ actual
565
+ united
566
+ technical
567
+ ordinary
568
+ cheap
569
+ strange
570
+ internal
571
+ excellent
572
+ quiet
573
+ soft
574
+ potential
575
+ northern
576
+ religious
577
+ quick
578
+ very
579
+ famous
580
+ cultural
581
+ proper
582
+ broad
583
+ joint
584
+ formal
585
+ limited
586
+ conservative
587
+ lovely
588
+ usual
589
+ ltd
590
+ unable
591
+ rural
592
+ initial
593
+ substantial
594
+ christian
595
+ bright
596
+ average
597
+ leading
598
+ reasonable
599
+ immediate
600
+ suitable
601
+ equal
602
+ detailed
603
+ working
604
+ overall
605
+ female
606
+ afraid
607
+ democratic
608
+ growing
609
+ sufficient
610
+ scientific
611
+ eastern
612
+ correct
613
+ inc
614
+ irish
615
+ expensive
616
+ educational
617
+ mental
618
+ dangerous
619
+ critical
620
+ increased
621
+ familiar
622
+ unlikely
623
+ double
624
+ perfect
625
+ slow
626
+ tiny
627
+ dry
628
+ historical
629
+ thin
630
+ daily
631
+ southern
632
+ increasing
633
+ wild
634
+ alone
635
+ urban
636
+ empty
637
+ married
638
+ narrow
639
+ liberal
640
+ supposed
641
+ upper
642
+ apparent
643
+ tall
644
+ busy
645
+ bloody
646
+ prepared
647
+ russian
648
+ moral
649
+ careful
650
+ clean
651
+ attractive
652
+ japanese
653
+ vital
654
+ thick
655
+ alternative
656
+ fast
657
+ ancient
658
+ elderly
659
+ rare
660
+ external
661
+ capable
662
+ brief
663
+ wonderful
664
+ grand
665
+ typical
666
+ entire
667
+ grey
668
+ constant
669
+ vast
670
+ surprised
671
+ ideal
672
+ terrible
673
+ academic
674
+ funny
675
+ minor
676
+ pleased
677
+ severe
678
+ ill
679
+ corporate
680
+ negative
681
+ permanent
682
+ weak
683
+ brown
684
+ fundamental
685
+ odd
686
+ crucial
687
+ inner
688
+ used
689
+ criminal
690
+ contemporary
691
+ sharp
692
+ sick
693
+ near
694
+ roman
695
+ massive
696
+ unique
697
+ secondary
698
+ parliamentary
699
+ african
700
+ unknown
701
+ subsequent
702
+ angry
703
+ alive
704
+ guilty
705
+ lucky
706
+ enormous
707
+ well
708
+ communist
709
+ yellow
710
+ unusual
711
+ net
712
+ long-term
713
+ tough
714
+ dear
715
+ extensive
716
+ glad
717
+ remaining
718
+ agricultural
719
+ alright
720
+ healthy
721
+ italian
722
+ principal
723
+ tired
724
+ efficient
725
+ comfortable
726
+ chinese
727
+ relative
728
+ friendly
729
+ conventional
730
+ willing
731
+ sudden
732
+ proposed
733
+ voluntary
734
+ slight
735
+ valuable
736
+ dramatic
737
+ golden
738
+ temporary
739
+ federal
740
+ keen
741
+ flat
742
+ silent
743
+ indian
744
+ video-taped
745
+ worried
746
+ pale
747
+ statutory
748
+ welsh
749
+ dependent
750
+ firm
751
+ wet
752
+ competitive
753
+ armed
754
+ radical
755
+ outside
756
+ acceptable
757
+ sensitive
758
+ living
759
+ pure
760
+ global
761
+ emotional
762
+ sad
763
+ secret
764
+ rapid
765
+ adequate
766
+ fixed
767
+ sweet
768
+ administrative
769
+ wooden
770
+ remarkable
771
+ comprehensive
772
+ surprising
773
+ solid
774
+ rough
775
+ mere
776
+ mass
777
+ brilliant
778
+ maximum
779
+ absolute
780
+ tory
781
+ electronic
782
+ visual
783
+ electric
784
+ cool
785
+ spanish
786
+ literary
787
+ continuing
788
+ supreme
789
+ chemical
790
+ genuine
791
+ exciting
792
+ written
793
+ stupid
794
+ advanced
795
+ extreme
796
+ classical
797
+ fit
798
+ favourite
799
+ socialist
800
+ widespread
801
+ confident
802
+ straight
803
+ catholic
804
+ proud
805
+ numerous
806
+ opposite
807
+ distinct
808
+ mad
809
+ helpful
810
+ given
811
+ disabled
812
+ consistent
813
+ anxious
814
+ nervous
815
+ awful
816
+ stable
817
+ constitutional
818
+ satisfied
819
+ conscious
820
+ developing
821
+ strategic
822
+ holy
823
+ smooth
824
+ dominant
825
+ remote
826
+ theoretical
827
+ outstanding
828
+ pink
829
+ pretty
830
+ clinical
831
+ minimum
832
+ honest
833
+ impressive
834
+ related
835
+ residential
836
+ extraordinary
837
+ plain
838
+ visible
839
+ accurate
840
+ distant
841
+ still
842
+ greek
843
+ complicated
844
+ musical
845
+ precise
846
+ gentle
847
+ broken
848
+ live
849
+ silly
850
+ fat
851
+ tight
852
+ monetary
853
+ round
854
+ psychological
855
+ violent
856
+ unemployed
857
+ inevitable
858
+ junior
859
+ sensible
860
+ grateful
861
+ pleasant
862
+ dirty
863
+ structural
864
+ welcome
865
+ so-called
866
+ deaf
867
+ above
868
+ continuous
869
+ blind
870
+ overseas
871
+ mean
872
+ entitled
873
+ delighted
874
+ loose
875
+ occasional
876
+ evident
877
+ desperate
878
+ fellow
879
+ universal
880
+ square
881
+ steady
882
+ classic
883
+ equivalent
884
+ intellectual
885
+ victorian
886
+ level
887
+ ultimate
888
+ creative
889
+ lost
890
+ medieval
891
+ clever
892
+ linguistic
893
+ convinced
894
+ judicial
895
+ raw
896
+ sophisticated
897
+ asleep
898
+ vulnerable
899
+ illegal
900
+ outer
901
+ revolutionary
902
+ bitter
903
+ changing
904
+ australian
905
+ native
906
+ imperial
907
+ strict
908
+ wise
909
+ informal
910
+ flexible
911
+ collective
912
+ frequent
913
+ experimental
914
+ spiritual
915
+ intense
916
+ rational
917
+ ethnic
918
+ generous
919
+ inadequate
920
+ prominent
921
+ logical
922
+ bare
923
+ historic
924
+ modest
925
+ dutch
926
+ acute
927
+ electrical
928
+ valid
929
+ weekly
930
+ gross
931
+ automatic
932
+ loud
933
+ reliable
934
+ mutual
935
+ liable
936
+ multiple
937
+ ruling
938
+ curious
939
+ arab
940
+ sole
941
+ jewish
942
+ managing
943
+ pregnant
944
+ latin
945
+ nearby
946
+ exact
947
+ underlying
948
+ identical
949
+ satisfactory
950
+ marginal
951
+ distinctive
952
+ electoral
953
+ urgent
954
+ presidential
955
+ controversial
956
+ oral
957
+ everyday
958
+ encouraging
959
+ organic
960
+ continued
961
+ expected
962
+ statistical
963
+ desirable
964
+ innocent
965
+ improved
966
+ exclusive
967
+ marked
968
+ experienced
969
+ unexpected
970
+ superb
971
+ sheer
972
+ disappointed
973
+ frightened
974
+ full-time
975
+ gastric
976
+ capitalist
977
+ romantic
978
+ naked
979
+ reluctant
980
+ magnificent
981
+ convenient
982
+ established
983
+ closed
984
+ uncertain
985
+ artificial
986
+ diplomatic
987
+ tremendous
988
+ marine
989
+ mechanical
990
+ retail
991
+ institutional
992
+ mixed
993
+ required
994
+ biological
995
+ known
996
+ functional
997
+ straightforward
998
+ superior
999
+ digital
1000
+ part-time
1001
+ spectacular
1002
+ unhappy
1003
+ confused
1004
+ unfair
1005
+ aggressive
1006
+ spare
1007
+ painful
1008
+ abstract
1009
+ asian
1010
+ associated
1011
+ legislative
1012
+ monthly
1013
+ intelligent
1014
+ hungry
1015
+ explicit
1016
+ nasty
1017
+ just
1018
+ faint
1019
+ coloured
1020
+ ridiculous
1021
+ amazing
1022
+ comparable
1023
+ successive
1024
+ working-class
1025
+ realistic
1026
+ back
1027
+ decent
1028
+ unnecessary
1029
+ flying
1030
+ fucking
1031
+ random
1032
+ influential
1033
+ dull
1034
+ genetic
1035
+ neat
1036
+ marvellous
1037
+ crazy
1038
+ damp
1039
+ giant
1040
+ secure
1041
+ bottom
1042
+ skilled
1043
+ subtle
1044
+ elegant
1045
+ brave
1046
+ lesser
1047
+ parallel
1048
+ steep
1049
+ intensive
1050
+ casual
1051
+ tropical
1052
+ lonely
1053
+ partial
1054
+ preliminary
1055
+ concrete
1056
+ alleged
1057
+ assistant
1058
+ vertical
1059
+ upset
1060
+ delicate
1061
+ mild
1062
+ occupational
1063
+ excessive
1064
+ progressive
1065
+ iraqi
1066
+ exceptional
1067
+ integrated
1068
+ striking
1069
+ continental
1070
+ okay
1071
+ harsh
1072
+ combined
1073
+ fierce
1074
+ handsome
1075
+ characteristic
1076
+ chronic
1077
+ compulsory
1078
+ interim
1079
+ objective
1080
+ splendid
1081
+ magic
1082
+ short-term
1083
+ systematic
1084
+ obliged
1085
+ payable
1086
+ fun
1087
+ horrible
1088
+ primitive
1089
+ fascinating
1090
+ ideological
1091
+ metropolitan
1092
+ surrounding
1093
+ estimated
1094
+ peaceful
1095
+ premier
1096
+ operational
1097
+ technological
1098
+ kind
1099
+ advisory
1100
+ hostile
1101
+ precious
1102
+ gay
1103
+ accessible
1104
+ determined
1105
+ excited
1106
+ impressed
1107
+ provincial
1108
+ smart
1109
+ endless
1110
+ isolated
1111
+ post-war
1112
+ drunk
1113
+ geographical
1114
+ like
1115
+ dynamic
1116
+ boring
1117
+ forthcoming
1118
+ unfortunate
1119
+ definite
1120
+ super
1121
+ notable
1122
+ indirect
1123
+ stiff
1124
+ wealthy
1125
+ awkward
1126
+ lively
1127
+ neutral
1128
+ artistic
1129
+ content
1130
+ mature
1131
+ colonial
1132
+ ambitious
1133
+ evil
1134
+ magnetic
1135
+ verbal
1136
+ legitimate
1137
+ sympathetic
1138
+ well-known
1139
+ empirical
1140
+ head
1141
+ shallow
1142
+ vague
1143
+ naval
1144
+ depressed
1145
+ shared
1146
+ added
1147
+ shocked
1148
+ mid
1149
+ worthwhile
1150
+ qualified
1151
+ missing
1152
+ blank
1153
+ absent
1154
+ favourable
1155
+ polish
1156
+ israeli
1157
+ developed
1158
+ profound
1159
+ representative
1160
+ enthusiastic
1161
+ dreadful
1162
+ rigid
1163
+ reduced
1164
+ cruel
1165
+ coastal
1166
+ peculiar
1167
+ racial
1168
+ ugly
1169
+ swiss
1170
+ crude
1171
+ extended
1172
+ selected
1173
+ eager
1174
+ feminist
1175
+ canadian
1176
+ bold
1177
+ relaxed
1178
+ corresponding
1179
+ running
1180
+ planned
1181
+ applicable
1182
+ immense
1183
+ allied
1184
+ comparative
1185
+ uncomfortable
1186
+ conservation
1187
+ productive
1188
+ beneficial
1189
+ bored
1190
+ charming
1191
+ minimal
1192
+ mobile
1193
+ turkish
1194
+ orange
1195
+ rear
1196
+ passive
1197
+ suspicious
1198
+ overwhelming
1199
+ fatal
1200
+ resulting
1201
+ symbolic
1202
+ registered
1203
+ neighbouring
1204
+ calm
1205
+ irrelevant
1206
+ patient
1207
+ compact
1208
+ profitable
1209
+ rival
1210
+ loyal
1211
+ moderate
1212
+ distinguished
1213
+ interior
1214
+ noble
1215
+ insufficient
1216
+ eligible
1217
+ mysterious
1218
+ varying
1219
+ middle-class
1220
+ managerial
1221
+ molecular
1222
+ olympic
1223
+ linear
1224
+ prospective
1225
+ printed
1226
+ parental
1227
+ diverse
1228
+ elaborate
1229
+ furious
1230
+ fiscal
1231
+ burning
1232
+ useless
1233
+ semantic
1234
+ embarrassed
1235
+ inherent
1236
+ philosophical
1237
+ deliberate
1238
+ awake
1239
+ variable
1240
+ promising
1241
+ unpleasant
1242
+ varied
1243
+ sacred
1244
+ selective
1245
+ inclined
1246
+ tender
1247
+ hidden
1248
+ worthy
1249
+ intermediate
1250
+ sound
1251
+ protective
1252
+ fortunate
1253
+ slim
1254
+ islamic
1255
+ defensive
1256
+ divine
1257
+ stuck
1258
+ driving
1259
+ invisible
1260
+ misleading
1261
+ circular
1262
+ mathematical
1263
+ inappropriate
1264
+ liquid
1265
+ persistent
1266
+ solar
1267
+ doubtful
1268
+ manual
1269
+ architectural
1270
+ intact
1271
+ incredible
1272
+ devoted
1273
+ prior
1274
+ tragic
1275
+ respectable
1276
+ optimistic
1277
+ convincing
1278
+ unacceptable
1279
+ decisive
1280
+ competent
1281
+ spatial
1282
+ respective
1283
+ binding
1284
+ relieved
1285
+ nursing
1286
+ toxic
1287
+ select
1288
+ redundant
1289
+ integral
1290
+ then
1291
+ probable
1292
+ amateur
1293
+ fond
1294
+ passing
1295
+ specified
1296
+ territorial
1297
+ horizontal
1298
+ old-fashioned
1299
+ inland
1300
+ cognitive
1301
+ regulatory
1302
+ miserable
1303
+ resident
1304
+ polite
1305
+ scared
1306
+ marxist
1307
+ gothic
1308
+ civilian
1309
+ instant
1310
+ lengthy
1311
+ adverse
1312
+ korean
1313
+ unconscious
1314
+ anonymous
1315
+ aesthetic
1316
+ orthodox
1317
+ static
1318
+ unaware
1319
+ costly
1320
+ fantastic
1321
+ foolish
1322
+ fashionable
1323
+ causal
1324
+ compatible
1325
+ wee
1326
+ implicit
1327
+ dual
1328
+ ok
1329
+ cheerful
1330
+ subjective
1331
+ forward
1332
+ surviving
1333
+ exotic
1334
+ purple
1335
+ cautious
1336
+ visiting
1337
+ aggregate
1338
+ ethical
1339
+ protestant
1340
+ teenage
1341
+ large-scale
1342
+ dying
1343
+ disastrous
1344
+ delicious
1345
+ confidential
1346
+ underground
1347
+ thorough
1348
+ grim
1349
+ autonomous
1350
+ atomic
1351
+ frozen
1352
+ colourful
1353
+ injured
1354
+ uniform
1355
+ ashamed
1356
+ glorious
1357
+ wicked
1358
+ coherent
1359
+ rising
1360
+ shy
1361
+ novel
1362
+ balanced
1363
+ delightful
1364
+ arbitrary
1365
+ adjacent
1366
+ psychiatric
1367
+ worrying
1368
+ weird
1369
+ unchanged
1370
+ rolling
1371
+ evolutionary
1372
+ intimate
1373
+ sporting
1374
+ disciplinary
1375
+ formidable
1376
+ lexical
1377
+ noisy
1378
+ gradual
1379
+ accused
1380
+ homeless
1381
+ supporting
1382
+ coming
1383
+ renewed
1384
+ excess
1385
+ retired
1386
+ rubber
1387
+ chosen
1388
+ outdoor
1389
+ embarrassing
1390
+ preferred
1391
+ bizarre
1392
+ appalling
1393
+ agreed
1394
+ imaginative
1395
+ governing
1396
+ accepted
1397
+ vocational
1398
+ palestinian
1399
+ mighty
1400
+ puzzled
1401
+ worldwide
1402
+ handicapped
1403
+ organisational
1404
+ sunny
1405
+ eldest
1406
+ eventual
1407
+ spontaneous
1408
+ vivid
1409
+ rude
1410
+ nineteenth-century
1411
+ faithful
1412
+ ministerial
1413
+ innovative
1414
+ controlled
1415
+ conceptual
1416
+ unwilling
1417
+ civic
1418
+ meaningful
1419
+ disturbing
1420
+ alive
1421
+ brainy
1422
+ breakable
1423
+ busy
1424
+ careful
1425
+ cautious
1426
+ clever
1427
+ concerned
1428
+ crazy
1429
+ curious
1430
+ dead
1431
+ different
1432
+ difficult
1433
+ doubtful
1434
+ easy
1435
+ famous
1436
+ fragile
1437
+ helpful
1438
+ helpless
1439
+ important
1440
+ impossible
1441
+ innocent
1442
+ inquisitive
1443
+ modern
1444
+ open
1445
+ outstanding
1446
+ poor
1447
+ powerful
1448
+ puzzled
1449
+ real
1450
+ rich
1451
+ shy
1452
+ sleepy
1453
+ stupid
1454
+ super
1455
+ tame
1456
+ uninterested
1457
+ wandering
1458
+ wild
1459
+ wrong
1460
+ adorable
1461
+ alert
1462
+ average
1463
+ beautiful
1464
+ blonde
1465
+ bloody
1466
+ blushing
1467
+ bright
1468
+ clean
1469
+ clear
1470
+ cloudy
1471
+ colorful
1472
+ crowded
1473
+ cute
1474
+ dark
1475
+ drab
1476
+ distinct
1477
+ dull
1478
+ elegant
1479
+ fancy
1480
+ filthy
1481
+ glamorous
1482
+ gleaming
1483
+ graceful
1484
+ grotesque
1485
+ homely
1486
+ light
1487
+ misty
1488
+ motionless
1489
+ muddy
1490
+ plain
1491
+ poised
1492
+ quaint
1493
+ shiny
1494
+ smoggy
1495
+ sparkling
1496
+ spotless
1497
+ stormy
1498
+ strange
1499
+ ugly
1500
+ unsightly
1501
+ unusual
1502
+ bad
1503
+ better
1504
+ beautiful
1505
+ big
1506
+ black
1507
+ blue
1508
+ bright
1509
+ clumsy
1510
+ crazy
1511
+ dizzy
1512
+ dull
1513
+ fat
1514
+ frail
1515
+ friendly
1516
+ funny
1517
+ great
1518
+ green
1519
+ gigantic
1520
+ gorgeous
1521
+ grumpy
1522
+ handsome
1523
+ happy
1524
+ horrible
1525
+ itchy
1526
+ jittery
1527
+ jolly
1528
+ kind
1529
+ long
1530
+ lazy
1531
+ magnificent
1532
+ magenta
1533
+ many
1534
+ mighty
1535
+ mushy
1536
+ nasty
1537
+ new
1538
+ nice
1539
+ nosy
1540
+ nutty
1541
+ nutritious
1542
+ odd
1543
+ orange
1544
+ ordinary
1545
+ pretty
1546
+ precious
1547
+ prickly
1548
+ purple
1549
+ quaint
1550
+ quiet
1551
+ quick
1552
+ quickest
1553
+ rainy
1554
+ rare
1555
+ ratty
1556
+ red
1557
+ roasted
1558
+ robust
1559
+ round
1560
+ sad
1561
+ scary
1562
+ scrawny
1563
+ short
1564
+ silly
1565
+ stingy
1566
+ strange
1567
+ striped
1568
+ spotty
1569
+ tart
1570
+ tall
1571
+ tame
1572
+ tan
1573
+ tender
1574
+ testy
1575
+ tricky
1576
+ tough
1577
+ ugly
1578
+ ugliest
1579
+ vast
1580
+ watery
1581
+ wasteful
1582
+ wide-eyed
1583
+ wonderful
1584
+ yellow
1585
+ yummy
1586
+ zany
1587
+ ],
1588
+ colors: %w[
1589
+ white silver gray black navy blue cerulean sky blue turquoise blue-green azure teal cyan green lime chartreuse
1590
+ olive yellow gold amber orange brown orange-red red maroon rose red-violet pink magenta purple blue-violet
1591
+ indigo violet peach apricot ochre plum
1592
+ ],
1593
+ actions: %w[
1594
+ click
1595
+ screech
1596
+ hoot
1597
+ push
1598
+ pretend
1599
+ cheep
1600
+ hop
1601
+ vote
1602
+ purr
1603
+ step
1604
+ cry
1605
+ shout
1606
+ travel
1607
+ roar
1608
+ buzz
1609
+ spoil
1610
+ fry
1611
+ tickle
1612
+ growl
1613
+ cackle
1614
+ frighten
1615
+ smash
1616
+ stalk
1617
+ hiss
1618
+ crush
1619
+ ring
1620
+ follow
1621
+ spread
1622
+ roast
1623
+ roll
1624
+ stuff
1625
+ laugh
1626
+ giggle
1627
+ sing
1628
+ rub
1629
+ groan
1630
+ joke
1631
+ ],
1632
+ relations: %w[from to in upon till at on],
1633
+ nouns: %w[
1634
+ Panama
1635
+ Spain
1636
+ Argentina
1637
+ Myanmar
1638
+ Russia
1639
+ North Korea
1640
+ Germany
1641
+ Mauritius
1642
+ Seychelles Is
1643
+ India
1644
+ South Yemen
1645
+ Denmark
1646
+ Brazil
1647
+ Singapore
1648
+ South Korea
1649
+ PNG
1650
+ Pakistan
1651
+ Algeria
1652
+ Hong Kong
1653
+ Guyana
1654
+ Malaysia
1655
+ Bulgaria
1656
+ Iraq
1657
+ Australia
1658
+ Sri Lanka
1659
+ New Zealand
1660
+ Syria
1661
+ Lebanon
1662
+ Rumania
1663
+ Ethiopa
1664
+ Sudan
1665
+ Nigeria
1666
+ Malta
1667
+ Austria
1668
+ Japan
1669
+ caps
1670
+ contributions
1671
+ teams
1672
+ alleys
1673
+ trim
1674
+ dump
1675
+ thermometers
1676
+ collectors
1677
+ look
1678
+ colleges
1679
+ camps
1680
+ commands
1681
+ kisses
1682
+ interviewers
1683
+ correlation
1684
+ vacuum
1685
+ surprises
1686
+ recess
1687
+ adherences
1688
+ assistants
1689
+ listing
1690
+ terms
1691
+ memories
1692
+ subprograms
1693
+ helmsman
1694
+ residues
1695
+ platters
1696
+ carrier
1697
+ provision
1698
+ statements
1699
+ automobiles
1700
+ solvent
1701
+ assignment
1702
+ wagon
1703
+ straighteners
1704
+ ring
1705
+ diesels
1706
+ runout
1707
+ coin
1708
+ signaler
1709
+ twenties
1710
+ driver
1711
+ wreck
1712
+ horsepower
1713
+ sentences
1714
+ contents
1715
+ functions
1716
+ presence
1717
+ transfer
1718
+ grease
1719
+ reliability
1720
+ implantation
1721
+ drops
1722
+ diaries
1723
+ edge
1724
+ resistance
1725
+ adjustments
1726
+ wages
1727
+ surrender
1728
+ rains
1729
+ skins
1730
+ utility
1731
+ lookouts
1732
+ sunrise
1733
+ tolerance
1734
+ forecastles
1735
+ sum
1736
+ composites
1737
+ casualty
1738
+ approvals
1739
+ abrasive
1740
+ beat
1741
+ fellow
1742
+ writings
1743
+ ceramics
1744
+ conflicts
1745
+ tip
1746
+ sleeve
1747
+ carburetors
1748
+ electrode
1749
+ materials
1750
+ nets
1751
+ payroll
1752
+ solders
1753
+ terminations
1754
+ flakes
1755
+ springs
1756
+ success
1757
+ decoration
1758
+ mast
1759
+ projectiles
1760
+ concern
1761
+ attitude
1762
+ midnight
1763
+ burns
1764
+ ideals
1765
+ heights
1766
+ edges
1767
+ noon
1768
+ investment
1769
+ ]
1770
+ }
1771
+ end
1772
+ end