random-words 1.0.5 → 1.0.6

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.
Files changed (173) hide show
  1. checksums.yaml +4 -4
  2. data/.rspec_status +148 -39
  3. data/.rubocop.yml +1 -0
  4. data/CHANGELOG.md +42 -0
  5. data/Gemfile.lock +4 -1
  6. data/README.md +153 -4
  7. data/bin/randw +195 -49
  8. data/lib/random-words/array.rb +51 -0
  9. data/lib/random-words/config.rb +248 -0
  10. data/lib/random-words/generator.rb +239 -93
  11. data/lib/random-words/hash.rb +16 -0
  12. data/lib/random-words/html2markdown.rb +205 -0
  13. data/lib/random-words/lorem-markdown.rb +398 -0
  14. data/lib/random-words/number-to-word.rb +137 -0
  15. data/lib/random-words/source.rb +105 -0
  16. data/lib/random-words/string.rb +221 -47
  17. data/lib/random-words/table-cleanup.rb +210 -0
  18. data/lib/random-words/version.rb +1 -1
  19. data/lib/random-words/words/1984/adjectives.txt +103 -0
  20. data/lib/random-words/words/1984/adverbs.txt +92 -0
  21. data/lib/random-words/words/1984/articles-plural.txt +10 -0
  22. data/lib/random-words/words/1984/articles-singular.txt +10 -0
  23. data/lib/random-words/words/1984/clauses.txt +79 -0
  24. data/lib/random-words/words/1984/config.yml +4 -0
  25. data/lib/random-words/words/1984/conjunctions-coordinating.txt +20 -0
  26. data/lib/random-words/words/1984/conjunctions-subordinate.txt +29 -0
  27. data/lib/random-words/words/1984/names.txt +74 -0
  28. data/lib/random-words/words/1984/nouns-plural.txt +89 -0
  29. data/lib/random-words/words/1984/nouns-singular.txt +74 -0
  30. data/lib/random-words/words/1984/numbers.yml +5 -0
  31. data/lib/random-words/words/1984/prepositions.txt +89 -0
  32. data/lib/random-words/words/1984/terminators.txt +16 -0
  33. data/lib/random-words/words/1984/verbs-passive.txt +83 -0
  34. data/lib/random-words/words/1984/verbs-plural.txt +91 -0
  35. data/lib/random-words/words/1984/verbs-singular.txt +110 -0
  36. data/lib/random-words/words/alice/adjectives.txt +80 -0
  37. data/lib/random-words/words/alice/adverbs.txt +87 -0
  38. data/lib/random-words/words/alice/articles-plural.txt +10 -0
  39. data/lib/random-words/words/alice/articles-singular.txt +10 -0
  40. data/lib/random-words/words/alice/clauses.txt +81 -0
  41. data/lib/random-words/words/alice/config.yml +4 -0
  42. data/lib/random-words/words/alice/conjunctions-coordinating.txt +20 -0
  43. data/lib/random-words/words/alice/conjunctions-subordinate.txt +29 -0
  44. data/lib/random-words/words/alice/names.txt +74 -0
  45. data/lib/random-words/words/alice/nouns-plural.txt +95 -0
  46. data/lib/random-words/words/alice/nouns-singular.txt +82 -0
  47. data/lib/random-words/words/alice/numbers.yml +5 -0
  48. data/lib/random-words/words/alice/prepositions.txt +45 -0
  49. data/lib/random-words/words/alice/terminators.txt +16 -0
  50. data/lib/random-words/words/alice/verbs-passive.txt +495 -0
  51. data/lib/random-words/words/alice/verbs-plural.txt +115 -0
  52. data/lib/random-words/words/alice/verbs-singular.txt +97 -0
  53. data/lib/random-words/words/bacon/clauses.txt +592 -592
  54. data/lib/random-words/words/bacon/config.yml +4 -0
  55. data/lib/random-words/words/bacon/conjunctions-coordinating.txt +20 -0
  56. data/lib/random-words/words/bacon/names.txt +74 -0
  57. data/lib/random-words/words/bacon/numbers.yml +5 -0
  58. data/lib/random-words/words/bacon/prepositions.txt +45 -0
  59. data/lib/random-words/words/bacon/terminators.txt +16 -0
  60. data/lib/random-words/words/corporate/config.yml +4 -0
  61. data/lib/random-words/words/corporate/conjunctions-coordinating.txt +20 -0
  62. data/lib/random-words/words/corporate/names.txt +74 -0
  63. data/lib/random-words/words/corporate/numbers.yml +5 -0
  64. data/lib/random-words/words/corporate/prepositions.txt +45 -0
  65. data/lib/random-words/words/corporate/terminators.txt +16 -0
  66. data/lib/random-words/words/doctor/adjectives.txt +92 -0
  67. data/lib/random-words/words/doctor/adverbs.txt +92 -0
  68. data/lib/random-words/words/doctor/articles-plural.txt +10 -0
  69. data/lib/random-words/words/doctor/articles-singular.txt +10 -0
  70. data/lib/random-words/words/doctor/clauses.txt +83 -0
  71. data/lib/random-words/words/doctor/config.yml +10 -0
  72. data/lib/random-words/words/doctor/conjunctions-coordinating.txt +20 -0
  73. data/lib/random-words/words/doctor/conjunctions-subordinate.txt +29 -0
  74. data/lib/random-words/words/doctor/names.txt +74 -0
  75. data/lib/random-words/words/doctor/nouns-plural.txt +84 -0
  76. data/lib/random-words/words/doctor/nouns-singular.txt +84 -0
  77. data/lib/random-words/words/doctor/numbers.yml +5 -0
  78. data/lib/random-words/words/doctor/prepositions.txt +45 -0
  79. data/lib/random-words/words/doctor/terminators.txt +16 -0
  80. data/lib/random-words/words/doctor/verbs-passive.txt +83 -0
  81. data/lib/random-words/words/doctor/verbs-plural.txt +88 -0
  82. data/lib/random-words/words/doctor/verbs-singular.txt +83 -0
  83. data/lib/random-words/words/english/clauses.txt +592 -592
  84. data/lib/random-words/words/english/config.yml +4 -0
  85. data/lib/random-words/words/english/conjunctions-coordinating.txt +20 -0
  86. data/lib/random-words/words/english/names.txt +74 -0
  87. data/lib/random-words/words/english/numbers.yml +5 -0
  88. data/lib/random-words/words/english/prepositions.txt +45 -0
  89. data/lib/random-words/words/english/terminators.txt +16 -0
  90. data/lib/random-words/words/english/verbs-plural.txt +1 -0
  91. data/lib/random-words/words/english/verbs-singular.txt +1 -0
  92. data/lib/random-words/words/foulmouth/adjectives.txt +89 -0
  93. data/lib/random-words/words/foulmouth/adverbs.txt +97 -0
  94. data/lib/random-words/words/foulmouth/articles-plural.txt +10 -0
  95. data/lib/random-words/words/foulmouth/articles-singular.txt +10 -0
  96. data/lib/random-words/words/foulmouth/clauses.txt +74 -0
  97. data/lib/random-words/words/foulmouth/config.yml +4 -0
  98. data/lib/random-words/words/foulmouth/conjunctions-coordinating.txt +20 -0
  99. data/lib/random-words/words/foulmouth/conjunctions-subordinate.txt +29 -0
  100. data/lib/random-words/words/foulmouth/names.txt +74 -0
  101. data/lib/random-words/words/foulmouth/nouns-plural.txt +96 -0
  102. data/lib/random-words/words/foulmouth/nouns-singular.txt +99 -0
  103. data/lib/random-words/words/foulmouth/numbers.yml +5 -0
  104. data/lib/random-words/words/foulmouth/prepositions.txt +35 -0
  105. data/lib/random-words/words/foulmouth/terminators.txt +16 -0
  106. data/lib/random-words/words/foulmouth/verbs-passive.txt +143 -0
  107. data/lib/random-words/words/foulmouth/verbs-plural.txt +91 -0
  108. data/lib/random-words/words/foulmouth/verbs-singular.txt +104 -0
  109. data/lib/random-words/words/hipster/adjectives.txt +100 -0
  110. data/lib/random-words/words/hipster/adverbs.txt +89 -0
  111. data/lib/random-words/words/hipster/articles-plural.txt +10 -0
  112. data/lib/random-words/words/hipster/articles-singular.txt +10 -0
  113. data/lib/random-words/words/hipster/clauses.txt +180 -0
  114. data/lib/random-words/words/hipster/config.yml +4 -0
  115. data/lib/random-words/words/hipster/conjunctions-coordinating.txt +20 -0
  116. data/lib/random-words/words/hipster/conjunctions-subordinate.txt +29 -0
  117. data/lib/random-words/words/hipster/names.txt +74 -0
  118. data/lib/random-words/words/hipster/nouns-plural.txt +96 -0
  119. data/lib/random-words/words/hipster/nouns-singular.txt +100 -0
  120. data/lib/random-words/words/hipster/numbers.yml +5 -0
  121. data/lib/random-words/words/hipster/prepositions.txt +45 -0
  122. data/lib/random-words/words/hipster/terminators.txt +16 -0
  123. data/lib/random-words/words/hipster/verbs-passive.txt +88 -0
  124. data/lib/random-words/words/hipster/verbs-plural.txt +106 -0
  125. data/lib/random-words/words/hipster/verbs-singular.txt +114 -0
  126. data/lib/random-words/words/latin/config.yml +4 -0
  127. data/lib/random-words/words/latin/conjunctions-coordinating.txt +15 -0
  128. data/lib/random-words/words/latin/names.txt +74 -0
  129. data/lib/random-words/words/latin/numbers.yml +5 -0
  130. data/lib/random-words/words/latin/prepositions.txt +18 -0
  131. data/lib/random-words/words/latin/terminators.txt +16 -0
  132. data/lib/random-words/words/spanish/adjectives.txt +81 -0
  133. data/lib/random-words/words/spanish/adverbs.txt +87 -0
  134. data/lib/random-words/words/spanish/articles-plural.txt +4 -0
  135. data/lib/random-words/words/spanish/articles-singular.txt +4 -0
  136. data/lib/random-words/words/spanish/clauses.txt +74 -0
  137. data/lib/random-words/words/spanish/config.yml +4 -0
  138. data/lib/random-words/words/spanish/conjunctions-coordinating.txt +8 -0
  139. data/lib/random-words/words/spanish/conjunctions-subordinate.txt +16 -0
  140. data/lib/random-words/words/spanish/names.txt +74 -0
  141. data/lib/random-words/words/spanish/nouns-plural.txt +92 -0
  142. data/lib/random-words/words/spanish/nouns-singular.txt +125 -0
  143. data/lib/random-words/words/spanish/numbers.yml +5 -0
  144. data/lib/random-words/words/spanish/prepositions.txt +31 -0
  145. data/lib/random-words/words/spanish/terminators.txt +17 -0
  146. data/lib/random-words/words/spanish/verbs-passive.txt +495 -0
  147. data/lib/random-words/words/spanish/verbs-plural.txt +326 -0
  148. data/lib/random-words/words/spanish/verbs-singular.txt +351 -0
  149. data/lib/random-words/words/veggie/adjectives.txt +111 -0
  150. data/lib/random-words/words/veggie/adverbs.txt +81 -0
  151. data/lib/random-words/words/veggie/articles-plural.txt +10 -0
  152. data/lib/random-words/words/veggie/articles-singular.txt +10 -0
  153. data/lib/random-words/words/veggie/clauses.txt +57 -0
  154. data/lib/random-words/words/veggie/config.yml +4 -0
  155. data/lib/random-words/words/veggie/conjunctions-coordinating.txt +20 -0
  156. data/lib/random-words/words/veggie/conjunctions-subordinate.txt +29 -0
  157. data/lib/random-words/words/veggie/names.txt +74 -0
  158. data/lib/random-words/words/veggie/nouns-plural.txt +78 -0
  159. data/lib/random-words/words/veggie/nouns-singular.txt +105 -0
  160. data/lib/random-words/words/veggie/numbers.yml +5 -0
  161. data/lib/random-words/words/veggie/prepositions.txt +45 -0
  162. data/lib/random-words/words/veggie/terminators.txt +16 -0
  163. data/lib/random-words/words/veggie/verbs-passive.txt +56 -0
  164. data/lib/random-words/words/veggie/verbs-plural.txt +79 -0
  165. data/lib/random-words/words/veggie/verbs-singular.txt +79 -0
  166. data/lib/random-words.rb +28 -0
  167. data/random-words.gemspec +2 -0
  168. data/src/_README.md +153 -4
  169. metadata +168 -7
  170. data/lib/random-words/words/bacon/numbers.txt +0 -21
  171. data/lib/random-words/words/corporate/numbers.txt +0 -21
  172. data/lib/random-words/words/english/numbers.txt +0 -21
  173. data/lib/random-words/words/latin/numbers.txt +0 -21
@@ -0,0 +1,4 @@
1
+ ---
2
+ name: bacon
3
+ description: Meat lover words
4
+ triggers: [bacon, meat, carnivore]
@@ -0,0 +1,20 @@
1
+ and
2
+ but
3
+ or
4
+ nor
5
+ for
6
+ so
7
+ yet
8
+ although
9
+ because
10
+ since
11
+ unless
12
+ while
13
+ whereas
14
+ if
15
+ even though
16
+ as
17
+ before
18
+ after
19
+ until
20
+ whether
@@ -0,0 +1,74 @@
1
+ John
2
+ Jane
3
+ Mary
4
+ Michael
5
+ Sarah
6
+ David
7
+ Emily
8
+ James
9
+ Jessica
10
+ Robert
11
+ Linda
12
+ William
13
+ Patricia
14
+ Brett
15
+ Ashley
16
+ Matthew
17
+ Jennifer
18
+ Yasmin
19
+
20
+ Smith
21
+ Johnson
22
+ Williams
23
+ Brown
24
+ Jones
25
+ Garcia
26
+ Miller
27
+ Davis
28
+ Rodriguez
29
+ Martinez
30
+ Hernandez
31
+ Lopez
32
+ Gonzalez
33
+ Wilson
34
+ Anderson
35
+ Taylor
36
+ Thomas
37
+ Moore
38
+ Jackson
39
+ Martin
40
+ Lee
41
+ Perez
42
+ Thompson
43
+ White
44
+ Harris
45
+ Sanchez
46
+ Clark
47
+ Ramirez
48
+ Lewis
49
+ Robinson
50
+ Walker
51
+ Young
52
+ Allen
53
+ King
54
+ Wright
55
+ Scott
56
+ Torres
57
+ Nguyen
58
+ Hill
59
+ Flores
60
+ Green
61
+ Adams
62
+ Nelson
63
+ Baker
64
+ Hall
65
+ Rivera
66
+ Campbell
67
+ Mitchell
68
+ Carter
69
+ Roberts
70
+ Gomez
71
+ Phillips
72
+ Evans
73
+ Turner
74
+ Diaz
@@ -0,0 +1,5 @@
1
+ ---
2
+ digits: zero one two three four five six seven eight nine
3
+ teens: ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen
4
+ tens: twenty thirty forty fifty sixty seventy eighty ninety
5
+ places: one ten hundred thousand million billion trillion
@@ -0,0 +1,45 @@
1
+ about
2
+ above
3
+ across
4
+ after
5
+ against
6
+ along
7
+ among
8
+ around
9
+ at
10
+ before
11
+ behind
12
+ below
13
+ beneath
14
+ beside
15
+ between
16
+ beyond
17
+ by
18
+ despite
19
+ down
20
+ during
21
+ except
22
+ for
23
+ from
24
+ in
25
+ inside
26
+ into
27
+ like
28
+ near
29
+ of
30
+ off
31
+ on
32
+ onto
33
+ out
34
+ outside
35
+ over
36
+ through
37
+ to
38
+ toward
39
+ under
40
+ until
41
+ up
42
+ upon
43
+ with
44
+ within
45
+ without
@@ -0,0 +1,16 @@
1
+ ,.
2
+ ,.
3
+ ,.
4
+ ,.
5
+ ,.
6
+ ,.
7
+ ,?
8
+ ,?
9
+ ,?
10
+ ,!
11
+ ,!
12
+ ,!
13
+
14
+ ",."
15
+ ',.'
16
+ (,.)
@@ -0,0 +1,4 @@
1
+ ---
2
+ name: corporate
3
+ description: Corporate jargon and buzzwords
4
+ triggers: [corporate, business, startup, jargon, buzzword, productivity, synergy]
@@ -0,0 +1,20 @@
1
+ and
2
+ but
3
+ or
4
+ nor
5
+ for
6
+ so
7
+ yet
8
+ although
9
+ because
10
+ since
11
+ unless
12
+ while
13
+ whereas
14
+ if
15
+ even though
16
+ as
17
+ before
18
+ after
19
+ until
20
+ whether
@@ -0,0 +1,74 @@
1
+ John
2
+ Jane
3
+ Mary
4
+ Michael
5
+ Sarah
6
+ David
7
+ Emily
8
+ James
9
+ Jessica
10
+ Robert
11
+ Linda
12
+ William
13
+ Patricia
14
+ Brett
15
+ Ashley
16
+ Matthew
17
+ Jennifer
18
+ Yasmin
19
+
20
+ Smith
21
+ Johnson
22
+ Williams
23
+ Brown
24
+ Jones
25
+ Garcia
26
+ Miller
27
+ Davis
28
+ Rodriguez
29
+ Martinez
30
+ Hernandez
31
+ Lopez
32
+ Gonzalez
33
+ Wilson
34
+ Anderson
35
+ Taylor
36
+ Thomas
37
+ Moore
38
+ Jackson
39
+ Martin
40
+ Lee
41
+ Perez
42
+ Thompson
43
+ White
44
+ Harris
45
+ Sanchez
46
+ Clark
47
+ Ramirez
48
+ Lewis
49
+ Robinson
50
+ Walker
51
+ Young
52
+ Allen
53
+ King
54
+ Wright
55
+ Scott
56
+ Torres
57
+ Nguyen
58
+ Hill
59
+ Flores
60
+ Green
61
+ Adams
62
+ Nelson
63
+ Baker
64
+ Hall
65
+ Rivera
66
+ Campbell
67
+ Mitchell
68
+ Carter
69
+ Roberts
70
+ Gomez
71
+ Phillips
72
+ Evans
73
+ Turner
74
+ Diaz
@@ -0,0 +1,5 @@
1
+ ---
2
+ digits: zero one two three four five six seven eight nine
3
+ teens: ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen
4
+ tens: twenty thirty forty fifty sixty seventy eighty ninety
5
+ places: one ten hundred thousand million billion trillion
@@ -0,0 +1,45 @@
1
+ about
2
+ above
3
+ across
4
+ after
5
+ against
6
+ along
7
+ among
8
+ around
9
+ at
10
+ before
11
+ behind
12
+ below
13
+ beneath
14
+ beside
15
+ between
16
+ beyond
17
+ by
18
+ despite
19
+ down
20
+ during
21
+ except
22
+ for
23
+ from
24
+ in
25
+ inside
26
+ into
27
+ like
28
+ near
29
+ of
30
+ off
31
+ on
32
+ onto
33
+ out
34
+ outside
35
+ over
36
+ through
37
+ to
38
+ toward
39
+ under
40
+ until
41
+ up
42
+ upon
43
+ with
44
+ within
45
+ without
@@ -0,0 +1,16 @@
1
+ ,.
2
+ ,.
3
+ ,.
4
+ ,.
5
+ ,.
6
+ ,.
7
+ ,?
8
+ ,?
9
+ ,?
10
+ ,!
11
+ ,!
12
+ ,!
13
+
14
+ ",."
15
+ ',.'
16
+ (,.)
@@ -0,0 +1,92 @@
1
+ accessible
2
+ acute
3
+ adaptable
4
+ advanced
5
+ affordable
6
+ caring
7
+ chronic
8
+ clinical
9
+ collaborative
10
+ comfortable
11
+ communicative
12
+ compassionate
13
+ competent
14
+ comprehensive
15
+ confidential
16
+ cooperative
17
+ coordinated
18
+ cost-effective
19
+ critical
20
+ culturally-sensitive
21
+ dedicated
22
+ dependable
23
+ diagnostic
24
+ diligent
25
+ educational
26
+ effective
27
+ efficient
28
+ emergency
29
+ empathetic
30
+ empowering
31
+ encouraging
32
+ ethical
33
+ evidence-based
34
+ experienced
35
+ flexible
36
+ friendly
37
+ geriatric
38
+ holistic
39
+ hygienic
40
+ inclusive
41
+ informative
42
+ innovative
43
+ integrated
44
+ interactive
45
+ knowledgeable
46
+ laboratory-based
47
+ medical
48
+ meticulous
49
+ minimally-invasive
50
+ multidisciplinary
51
+ non-invasive
52
+ nurturing
53
+ observant
54
+ obstetric
55
+ open
56
+ pain-free
57
+ palliative
58
+ patient-centered
59
+ pediatric
60
+ person-centered
61
+ pharmaceutical
62
+ prescriptive
63
+ preventative
64
+ preventive
65
+ proactive
66
+ professional
67
+ qualified
68
+ rehabilitative
69
+ reliable
70
+ research-oriented
71
+ respectful
72
+ responsive
73
+ safe
74
+ sanitary
75
+ secure
76
+ sociable
77
+ specialized
78
+ state-of-the-art
79
+ streamlined
80
+ supportive
81
+ surgical
82
+ systematic
83
+ technological
84
+ therapeutic
85
+ thorough
86
+ timely
87
+ transparent
88
+ treatment-oriented
89
+ trustworthy
90
+ urgent
91
+ welcoming
92
+ wellness-focused
@@ -0,0 +1,92 @@
1
+ accurately
2
+ adaptively
3
+ administratively
4
+ appropriately
5
+ boldly
6
+ briefly
7
+ carefree
8
+ carefully
9
+ cheerfully
10
+ clearly
11
+ clinically
12
+ collaboratively
13
+ comfortably
14
+ compassionately
15
+ concisely
16
+ confidentially
17
+ consistently
18
+ constantly
19
+ continuously
20
+ critically
21
+ decisively
22
+ diagnostically
23
+ diligently
24
+ easily
25
+ effectively
26
+ efficiently
27
+ emotionally
28
+ empathetically
29
+ enthusiastically
30
+ ethically
31
+ flexibly
32
+ frequently
33
+ generally
34
+ gently
35
+ gradually
36
+ habitually
37
+ holistically
38
+ honestly
39
+ innovatively
40
+ intensively
41
+ intently
42
+ interventionally
43
+ logistically
44
+ medically
45
+ mentally
46
+ meticulously
47
+ modestly
48
+ negatively
49
+ occasionally
50
+ painlessly
51
+ patiently
52
+ personally
53
+ pharmacologically
54
+ physically
55
+ positively
56
+ proactively
57
+ professionally
58
+ profoundly
59
+ promptly
60
+ publicly
61
+ quickly
62
+ quietly
63
+ radiologically
64
+ regularly
65
+ reliably
66
+ respectfully
67
+ responsibly
68
+ responsively
69
+ routinely
70
+ safely
71
+ scientifically
72
+ securely
73
+ seriously
74
+ significantly
75
+ smoothly
76
+ solemnly
77
+ specifically
78
+ steadily
79
+ strategically
80
+ supportively
81
+ surgically
82
+ systematically
83
+ tactfully
84
+ technologically
85
+ therapeutically
86
+ thoroughly
87
+ timely
88
+ transparently
89
+ uninterruptedly
90
+ urgently
91
+ visibly
92
+ warmly
@@ -0,0 +1,10 @@
1
+ all
2
+ either
3
+ few
4
+ many
5
+ several
6
+ some
7
+ these
8
+ those
9
+ three
10
+ two
@@ -0,0 +1,10 @@
1
+ a
2
+ an
3
+ the
4
+ each
5
+ every
6
+ neither
7
+ any
8
+ one
9
+ this
10
+ that
@@ -0,0 +1,83 @@
1
+ when a patient arrives at the emergency room
2
+ if a doctor prescribes medication
3
+ although the symptoms are mild
4
+ because the treatment was effective
5
+ after the surgery is completed
6
+ before the nurse administers the vaccine
7
+ since the diagnosis was confirmed
8
+ while monitoring vital signs
9
+ unless the patient refuses treatment
10
+ as the condition improves
11
+ until the results are available
12
+ when the patient is discharged
13
+ if there are complications during surgery
14
+ although the hospital is busy
15
+ because the procedure requires anesthesia
16
+ after the follow-up appointment
17
+ before administering the IV fluids
18
+ since the medical history is crucial
19
+ while conducting the physical examination
20
+ unless the patient shows improvement
21
+ as the healthcare team discusses the case
22
+ when the lab results come back
23
+ if the patient experiences side effects
24
+ although the treatment plan is comprehensive
25
+ because the symptoms are persistent
26
+ after assessing the patient's condition
27
+ before taking the medication
28
+ since the nurse is on duty
29
+ while providing patient education
30
+ unless the patient is allergic
31
+ as the doctor explains the risks
32
+ when the patient consents to the procedure
33
+ if the insurance covers the costs
34
+ although the referral is necessary
35
+ because the patient needs urgent care
36
+ after reviewing the test results
37
+ before scheduling the surgery
38
+ since the clinic operates on weekends
39
+ while the patient is under observation
40
+ unless there is a medical emergency
41
+ as the physician evaluates the symptoms
42
+ when the patient follows the instructions
43
+ if the therapy is recommended
44
+ although the side effects are manageable
45
+ because the health outcomes are improving
46
+ after the consultation with the specialist
47
+ before the patient leaves the hospital
48
+ since the guidelines recommend it
49
+ while ensuring patient confidentiality
50
+ unless the procedure is postponed
51
+ as the research findings are published
52
+ when the healthcare provider communicates clearly
53
+ if the patient has questions
54
+ although the diagnosis is challenging
55
+ because the treatment requires monitoring
56
+ after the initial assessment
57
+ before conducting the follow-up
58
+ since the medical staff is trained
59
+ while collaborating with other departments
60
+ unless the protocol is followed
61
+ as the case is reviewed by the team
62
+ when the patient requires special care
63
+ if the health condition worsens
64
+ although the clinic has extended hours
65
+ because the patient needs rehabilitation
66
+ after the screening process
67
+ before making a referral
68
+ since the documentation is complete
69
+ while handling medical records
70
+ unless further tests are needed
71
+ as the treatment progresses
72
+ when the physician discusses options
73
+ if the patient agrees to participate
74
+ although complications may arise
75
+ because the recovery time varies
76
+ after the discharge instructions are given
77
+ before the patient returns for a check-up
78
+ since the nurse monitors the patient closely
79
+ while treating chronic conditions
80
+ unless the patient is stable
81
+ as the hospital prepares for a surge
82
+ when the medical team collaborates effectively
83
+ if the results indicate a serious issue
@@ -0,0 +1,10 @@
1
+ ---
2
+ name: doctor
3
+ triggers:
4
+ - doctor
5
+ - medical
6
+ - medicine
7
+ - health
8
+ - physician
9
+ - nurse
10
+ description: User dictionary for doctor
@@ -0,0 +1,20 @@
1
+ and
2
+ but
3
+ or
4
+ nor
5
+ for
6
+ so
7
+ yet
8
+ although
9
+ because
10
+ since
11
+ unless
12
+ while
13
+ whereas
14
+ if
15
+ even though
16
+ as
17
+ before
18
+ after
19
+ until
20
+ whether
@@ -0,0 +1,29 @@
1
+ although
2
+ as
3
+ as far as
4
+ as if
5
+ as long as
6
+ as much as
7
+ as though
8
+ because
9
+ before
10
+ even if
11
+ even though
12
+ if
13
+ in case
14
+ in order that
15
+ once
16
+ provided that
17
+ rather than
18
+ since
19
+ so that
20
+ than
21
+ that
22
+ though
23
+ until
24
+ when
25
+ whenever
26
+ where
27
+ wherever
28
+ whether
29
+ while