email2face 0.1.1 → 0.1.2
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.
- data/README.md +1 -1
- data/VERSION +1 -1
- data/email2face.gemspec +2 -2
- data/lib/email2face.rb +1 -1
- metadata +3 -3
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@ Email2Face is a simple library for getting the person's face behind an email add
|
|
|
4
4
|
|
|
5
5
|
After thinking about it for a few days, we came up with a good solution. Facebook has lots of faces, so why not use that? But, Facebook does not have an API for searching for profile pictures by email. So, we made one.
|
|
6
6
|
|
|
7
|
-
## Dependencies
|
|
7
|
+
## Dependencies
|
|
8
8
|
|
|
9
9
|
It needs a Facebook account to work. I *do not* recommend using your own Facebook because I'm not sure if this plays well with Facebook's TOS. So, make a fake Facebook for it. I've included a default one, but it'll probably be banned by the time you get to it.
|
|
10
10
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.2
|
data/email2face.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "email2face"
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.2"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Jarred Sumner"]
|
|
12
|
-
s.date = "2012-05-
|
|
12
|
+
s.date = "2012-05-08"
|
|
13
13
|
s.description = " Email2Face finds an email's corresponding Facebook profile, and then gives you a link to their profile picture. It requires a Facebook account to work. I highly recommend that you make a Facebook just for it. See http://github.com/jarred-sumner/email2face for more details. "
|
|
14
14
|
s.email = "jarred@jarredsumner.com"
|
|
15
15
|
s.extra_rdoc_files = [
|
data/lib/email2face.rb
CHANGED
|
@@ -66,7 +66,7 @@ class Email2Face
|
|
|
66
66
|
|
|
67
67
|
def self.get_face(html)
|
|
68
68
|
parser = Nokogiri::HTML(html)
|
|
69
|
-
element = parser.xpath("//*[@id='pagelet_search_results_objects']/div/div/div/div/div[2]/div[1]/a") || parser.xpath('//*[@id="js_0"]')
|
|
69
|
+
element = parser.xpath("//*[@id='pagelet_search_results_objects']/div/div/div/div/div[2]/div[1]/a") || parser.xpath('//*[@id="js_0"]') || //*[@id="js_1"]
|
|
70
70
|
href = element.attribute("href")
|
|
71
71
|
uri = URI.parse(href)
|
|
72
72
|
uri.host = "graph.facebook.com"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: email2face
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
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: 2012-05-
|
|
12
|
+
date: 2012-05-08 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: capybara
|
|
@@ -176,7 +176,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
176
176
|
version: '0'
|
|
177
177
|
segments:
|
|
178
178
|
- 0
|
|
179
|
-
hash:
|
|
179
|
+
hash: -385850353
|
|
180
180
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
181
181
|
none: false
|
|
182
182
|
requirements:
|