dwc_agent 3.0.10.0 → 3.0.11.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bf7946475612999b141445b40ee1b93c1252d3f987b65eab8523238716ab162e
4
- data.tar.gz: '09d2c2353fc63d86bdb327cfc8cd29e33be945d2eb4a6d147c55e31e30c80c14'
3
+ metadata.gz: 84e34d440f575183168540f7849d523d7a5938dc5e96105c728b206d278e6a9a
4
+ data.tar.gz: c03d40835ea1fc03be60bd042ffcdf62d45ef1e5ad02076162fe73f03dbeca68
5
5
  SHA512:
6
- metadata.gz: ce194f8823af1f1a594a43a0f37eb2e08ea51dbec107fb3c7d19dceb04e6579efe30d7a5bbaafbf964f1110debd8b4a8bb2abe53a55c9f99965da0a6cc32f8d3
7
- data.tar.gz: 7f6b7b0fe8c23cd1e0bbef6eefa1488300867f7acbb8b039bef65f0c597011a85aad7f926652ce99993a0fa6bbebbc4eef99f73769031714e4f5e0002d5c6737
6
+ metadata.gz: c9949f67cb683d0df35fa6bd881beecf359de97178ecac6af45b58616f556627322f0f9a33d801e99a62ae459d1ff2cafc771e81818ccf37484df4c6c93de9b8
7
+ data.tar.gz: b3a4996ac405a16015d94cdfb0853b15153669f690c625eca6ade4de6c8b0591cab3d079403e62b3ee48c88f0c1cf3c6578fc085d760d6ce83bb9f3932e4dd4d
@@ -232,7 +232,8 @@ module DwcAgent
232
232
  ^(?i:anon)$|
233
233
  (?i:australian?)|
234
234
  (?i:average)|
235
- (?i:believe|unclear|ill?egible|none|suggested|(dis)?agrees?)|approach|
235
+ (?i:believe|unclear|ill?egible|suggested|(dis)?agrees?)|approach|
236
+ \b\s*(?i:none)\s*\b|
236
237
  (?i:barcod)|
237
238
  (?i:BgWd)|
238
239
  (?i:biolog|botan|zoo|ecolog|mycol|(in)?vertebrate|fisheries|genetic|animal|mushroom|wildlife|plumage|flower|agriculture)|
@@ -260,7 +261,7 @@ module DwcAgent
260
261
  (?i:geographic)|
261
262
  (?i:mus(eum|ée)|universit(y|é|e|at)|college|institute?|acad(e|é)m|school|écol(e|iers?)|laboratoi?r|projec?t|polytech|dep(t|art?ment)|research|clinic|hospital|cientifica|sanctuary|safari)|
262
263
  (?i:univ\.)|
263
- (?i:graduate|student|élèves?|éleveur|étudiants|estudi?antes?|labo\.|storekeep|supervisor|superint|rcmp|coordinator|minority|fisherm(a|e)n|police|taxonomist|consultant|participante?s?|team|(é|e)quipe|memb(er|re)|crew|group|staff|personnel|family|captain|friends|assistant|worker|gamekeeper)|
264
+ \b\s*(?i:graduate|student|élèves?|éleveur|étudiants|estudi?antes?|labo\.|storekeep|supervisor|superint|rcmp|coordinator|minority|fisherm(a|e)n|police|taxonomist|consultant|participante?s?|team|(é|e)quipe|memb(er|re)|crew|group|personnel|staff|family|captain|friends|assistant|worker|gamekeeper)\s*\b|
264
265
  (?i:non\s+pr(é|e)cis(é|e))|
265
266
  (?i:no\s+consta)|
266
267
  (?i:no\s+(agent)?\s?(data|disponible)(\s+available)?)|
@@ -272,16 +273,18 @@ module DwcAgent
272
273
  (?i:recreation|culture)|
273
274
  (?i:renseigné)|
274
275
  (?i:shaped|dark|pale|areas|phase|spotting|interior|between|closer)|
275
- (?i:soci(e|é)t(y|é)|cent(er|re)|community|history|conservation|conference|assoc|class|commission|consortium|council|club|exposit|alliance|protective|circle)|
276
- (?i:commercial|company|control|product)|
276
+ (?i:soci(e|é)t(y|é)|cent(er|re)|community|history|conservation|conference|assoc|commission|consortium|council|club|exposit|alliance|protective|circle)|
277
+ ^(?i:class)\s*\b|
278
+ (?i:commercial|control|product)|
279
+ ^(?i:company)\s*\b|
277
280
  (?i:sequence\s+data)|
278
281
  (?i:size|large|colou?r)\s+|
279
282
  (?i:skeleton)|
280
- (?i:survey|assessment|station|monitor|stn\.|index|project|bureau|engine|(e|é)x?chang(e|é)s?|ex(c|k)ursi(e|o|ó)n?|exped\.?|exp(e|i)di(c|t)i(e|o|ó)n?|experiment|explora(d|t)|festival|generation|inventory|marine|service)|
283
+ (?i:survey|assessment|station|monitor|stn\.|index|project|engine|(e|é)x?chang(e|é)s?|ex(c|k)ursi(e|o|ó)n?|exped\.?|exp(e|i)di(c|t)i(e|o|ó)n?|experiment|explora(d|t)|festival|generation|inventory|marine|service)|
281
284
  (?i:submersible)|
282
285
  (?i:synonymy?)|
283
286
  (?i:systematic|perspective)|
284
- ^\s*(?i:off|too|the)\s*|
287
+ ^\s*(?i:off|too|the)\s*\b|
285
288
  (?i:taxiderm(ies|y))|
286
289
  (?i:though)|
287
290
  (?i:texas\s+instruments?)\s*?(for)?|
@@ -383,6 +386,7 @@ module DwcAgent
383
386
  "von",
384
387
  "the",
385
388
  "of",
389
+ "van de",
386
390
  "van der"
387
391
  ]
388
392
 
@@ -4,7 +4,7 @@ module DwcAgent
4
4
 
5
5
  MAJOR = 3
6
6
  MINOR = 0
7
- PATCH = 10
7
+ PATCH = 11
8
8
  BUILD = 0
9
9
 
10
10
  def self.version
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dwc_agent
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.10.0
4
+ version: 3.0.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David P. Shorthouse
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-11 00:00:00.000000000 Z
11
+ date: 2023-09-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: namae