jobparser 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/jobparser/regex.rb +1 -1
- data/lib/jobparser/version.rb +1 -1
- metadata +1 -1
data/lib/jobparser/regex.rb
CHANGED
@@ -8,7 +8,7 @@ module JobParser
|
|
8
8
|
JOB_TITLE_ID_REGEX = /job(.?)title|title/i
|
9
9
|
APPLY_LINK_REGEX = /^apply|submit an application|application form/i
|
10
10
|
NBSP = Nokogiri::HTML(" ").text
|
11
|
-
LOCATION_REGEX = /(?:location: )([\
|
11
|
+
LOCATION_REGEX = /(?:location: )([\D]*)$/i
|
12
12
|
|
13
13
|
# words commonly used in job listings - not sure if this is a good way to go but I think it's worth a go
|
14
14
|
# could scope this regex just to headers
|
data/lib/jobparser/version.rb
CHANGED