linkedin-scraper 2.1.0 → 2.1.1
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.
- checksums.yaml +4 -4
- data/lib/linkedin-scraper/profile.rb +3 -3
- data/lib/linkedin-scraper/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8bece7d69bdd8311bb614aeb3a0ba1701fdf614a
|
|
4
|
+
data.tar.gz: 28f4546c1278ad15a5acc652a9c66fef04e5902e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b584828f263454ca9ee650c4af5f2bb90f0b79a1108a80ffe7d3c76859141a9a35d6dcbbf405c83a15bff5e099b9460af3e7223226cb62fb656bc191c9f930f1
|
|
7
|
+
data.tar.gz: 25081026a26003e2a2218c9a01b096eff61638f7596a7ab2f0f817eca8a07a21f231fd41fcf348395f1875c64de30ea174050a07c57823215d8b127aef9f643e
|
|
@@ -253,9 +253,9 @@ module Linkedin
|
|
|
253
253
|
headquarters = company_details['headquarters']
|
|
254
254
|
if headquarters
|
|
255
255
|
result[:address] = %{#{headquarters['street1']} #{headquarters['street2']} #{headquarters['city']}, #{headquarters['state']} #{headquarters['zip']} #{headquarters['country']}}
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
256
|
+
[:street1, :street2, :city, :zip, :state, :country].each do |section|
|
|
257
|
+
result[section] = headquarters[section.to_s]
|
|
258
|
+
end
|
|
259
259
|
end
|
|
260
260
|
end
|
|
261
261
|
result
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: linkedin-scraper
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yatish Mehta
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-05-
|
|
11
|
+
date: 2016-05-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: mechanize
|
|
@@ -110,7 +110,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
110
110
|
version: '0'
|
|
111
111
|
requirements: []
|
|
112
112
|
rubyforge_project:
|
|
113
|
-
rubygems_version: 2.
|
|
113
|
+
rubygems_version: 2.4.5.1
|
|
114
114
|
signing_key:
|
|
115
115
|
specification_version: 4
|
|
116
116
|
summary: when a url of public linkedin profile page is given it scrapes the entire
|