linkedindata 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/lib/linkedindata.rb +3 -2
  2. metadata +2 -2
data/lib/linkedindata.rb CHANGED
@@ -51,12 +51,12 @@ class LinkedinData
51
51
 
52
52
  if profile
53
53
  profile.current_companies.each do |c|
54
- c.merge!(:name => profile.first_name + " " + profile.last_name)
54
+ c.merge!(:skills => profile.skills, :certifications => profile.certifications, :languages => profile.languages, :name => profile.first_name + " " + profile.last_name)
55
55
  @output.push(c)
56
56
  end
57
57
 
58
58
  profile.past_companies.each do |c|
59
- c.merge!(:name => profile.first_name + " " + profile.last_name)
59
+ c.merge!(:skills => profile.skills, :certifications => profile.certifications, :languages => profile.languages, :name => profile.first_name + " " + profile.last_name)
60
60
  @output.push(c)
61
61
  end
62
62
  end
@@ -68,3 +68,4 @@ class LinkedinData
68
68
  return JSON.pretty_generate(@output)
69
69
  end
70
70
  end
71
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: linkedindata
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-02-24 00:00:00.000000000 Z
12
+ date: 2014-02-25 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: Scrapes all LinkedIn profiles including terms you specify.
15
15
  email: shidash@shidash.com