class NetworkProfile::FacebookProfile

Public Class Methods

handle?(link) click to toggle source
# File lib/network_profile/extractors/facebook_profile.rb, line 7
def self.handle?(link)
  (e = link[%r{facebook.com/([\w\.]+)}, 1]) && e.length > 3 && e != 'groups'
end

Public Instance Methods

profile_description() click to toggle source
# File lib/network_profile/extractors/facebook_profile.rb, line 11
def profile_description
  "Facebook Profil:"
end