dwc_agent 1.1.0 → 1.2.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: d56e8cb49d4857e324dbdda7d6cfa31e9a7a3079c40a12659ff6077d13308613
4
- data.tar.gz: 7652bc849261aa4179a99e64a725a0f82d0b65b4d2e2885042ad35521887e705
3
+ metadata.gz: dcdfb4922038d07715bd064b74a516203bcce44ef824683ac9766586764bb98f
4
+ data.tar.gz: d9113f199abc420d7c608bfbead6e70f1f6192437a82e43541f77eb187752c2a
5
5
  SHA512:
6
- metadata.gz: 99d384a56c180c8c5db64c5cc8cf072da272b427830875783a22d67279cd070af3bd0bd2b881e4a20018bdeba774d27e8adb8ae048668c28452171017b72c70b
7
- data.tar.gz: edc59989136745e0b603039d08420b368ef92e95a0ab17b48bcabf439472c1252ec763f4f9c7a398b735995b340f897dc0f3d85a45c2ea1c9ccec643f050e904
6
+ metadata.gz: 403049856dbfbc83c984b5175615718c738b46312ecced4d3b5853fb4584a080d1e868492ee476187c8cf7238481845c0f77bd181e6ceaeebc22bae8b7aef127
7
+ data.tar.gz: 01e8bc4beb84140a80763c6c0dc8ff6ee6f967e8382cbacf04a230aa3405f2394ec1a90570471e113d90264c1e202c5452428858eb5aff6bc499f4e795dc3158
@@ -22,10 +22,6 @@ module DwcAgent
22
22
  return blank_name
23
23
  end
24
24
 
25
- if parsed_namae.family && parsed_namae.family.length < 2 && parsed_namae.family.count('.') == 0
26
- return blank_name
27
- end
28
-
29
25
  if parsed_namae.family && parsed_namae.family.length == 3 && parsed_namae.family.count('.') == 1
30
26
  return blank_name
31
27
  end
@@ -162,9 +162,15 @@ module DwcAgent
162
162
  ^(\S{4,},\s+(?:\S\.\s*){1,})\s+(\S{4,},\s+(?:\S\.\s*){1,})$
163
163
  }x
164
164
 
165
- CONTRACTED_LIST = %r{
166
- ^(\S{1,}\.?)+\s+(?i:and|&)\s+(\S{1,}\.?)+\s*(.*)$
167
- }x
165
+ # Was used in 1.1.0 but it sunk performance so threw it back to a WIP
166
+ #
167
+ # @contracted_list_regex = Regexp.new CONTRACTED_LIST.to_s
168
+ #
169
+ # name.gsub!(@contracted_list_regex, '\1 \3 | \2 \3')
170
+ #
171
+ # CONTRACTED_LIST = %r{
172
+ # ^(\S{1,}\.?)+\s+(?i:and|&)\s+(\S{1,}\.?)+\s*(.*)$
173
+ # }x
168
174
 
169
175
  BLACKLIST = %r{
170
176
  (?i:abundant)|
@@ -21,7 +21,6 @@ module DwcAgent
21
21
  @phrase_subs_regex = Regexp.new (PHRASE_SUBS.keys.join('|')).to_s
22
22
  @complex_separators_regex = Regexp.new COMPLEX_SEPARATORS.to_s
23
23
  @add_separators_regex = Regexp.new %r{(\S{1}\.)([[:alpha:]]{2,})}.to_s
24
- @contracted_list_regex = Regexp.new CONTRACTED_LIST.to_s
25
24
  end
26
25
 
27
26
  # Parses the passed-in string and returns a list of names.
@@ -35,7 +34,6 @@ module DwcAgent
35
34
  name.gsub!(@phrase_subs_regex, PHRASE_SUBS)
36
35
  name.gsub!(@add_separators_regex, '\1 \2')
37
36
  name.gsub!(@complex_separators_regex, '\1 | \2')
38
- name.gsub!(@contracted_list_regex, '\1 \3 | \2 \3')
39
37
  name.gsub!(@residual_terminators_regex, '')
40
38
  name.squeeze!(' ')
41
39
  name.strip!
@@ -2,7 +2,7 @@ module DwcAgent
2
2
  class Version
3
3
 
4
4
  MAJOR = 1
5
- MINOR = 1
5
+ MINOR = 2
6
6
  PATCH = 0
7
7
  BUILD = nil
8
8
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dwc_agent
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David P. Shorthouse