jobboards-parser 0.0.7 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "jobboards-parser"
3
- s.version = "0.0.7"
3
+ s.version = "0.0.8"
4
4
  s.date = "2010-05-15"
5
5
  s.summary = "Simple ruby library for parsing tech jobboards"
6
6
  s.email = "g.marcilhacy@gmail.com"
@@ -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: 17
4
+ hash: 15
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 7
10
- version: 0.0.7
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.6.2
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