Dave Jarvis' Repositories

git clone https://repo.autonoma.ca/repo/keenquotes.git
M build.gradle
12 12
dependencies {
13 13
  // Command-line parsing
14
  implementation 'info.picocli:picocli:4.4.0'
14
  implementation 'info.picocli:picocli:4.6.3'
15 15
16
  testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.1'
17
  testImplementation 'org.junit.jupiter:junit-jupiter-params:5.7.1'
16
  testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
17
  testImplementation 'org.junit.jupiter:junit-jupiter-params:5.8.2'
18 18
  testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
19 19
}
M src/main/java/com/whitemagicsoftware/keenquotes/Contractions.java
14 14
 * Placeholder for various types of contractions.
15 15
 */
16
@SuppressWarnings( "SpellCheckingInspection" )
16 17
public class Contractions {
17 18
...
225 226
    // considered
226 227
    "sidered",
228
    // exploit
229
    "sploit",
227 230
    "t",
228 231
    "taint",
...
279 282
    // are|regarding
280 283
    "re",
281
    // what's up|to sup
284
    // what's up|to eat
282 285
    "sup",
283 286
    // it will|twill fabric
M src/main/java/com/whitemagicsoftware/keenquotes/LexemeType.java
3 3
4 4
/**
5
 * Represents the type of a {@link Lexeme} parsed by the {@link Lexer}.
5
 * Represents the type of {@link Lexeme} parsed by the {@link Lexer}.
6 6
 */
7
@SuppressWarnings( "SpellCheckingInspection" )
7 8
public enum LexemeType {
8 9
  QUOTE_SINGLE,
...
25 26
  PERIOD,
26 27
  ELLIPSIS,
27
  FLAG,
28
  TAG
28
  FLAG
29 29
}
30 30