jobboards-parser 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- data/jobboards-parser.gemspec +1 -1
- data/lib/jobboards/boards/authentic_jobs.rb +1 -1
- metadata +4 -4
data/jobboards-parser.gemspec
CHANGED
@@ -9,7 +9,7 @@ module JobboardsParser
|
|
9
9
|
|
10
10
|
def self.parse
|
11
11
|
(open_feed.items || []).inject([]) do |acc, item|
|
12
|
-
title = item.title.split(" at ").first.strip
|
12
|
+
title = item.title.split(":").last.split(" at ").first.strip
|
13
13
|
url = item.link
|
14
14
|
location = item.description.split("</strong>").first.split("<strong>").last.gsub("(","").gsub(")","").strip
|
15
15
|
company = item.title.split(" at ").last.split(":").first.strip
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jobboards-parser
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 15
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 8
|
10
|
+
version: 0.0.8
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- "Gr\xC3\xA9gory Marcilhacy"
|
@@ -119,7 +119,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
119
119
|
requirements: []
|
120
120
|
|
121
121
|
rubyforge_project:
|
122
|
-
rubygems_version: 1.
|
122
|
+
rubygems_version: 1.4.1
|
123
123
|
signing_key:
|
124
124
|
specification_version: 3
|
125
125
|
summary: Simple ruby library for parsing tech jobboards
|