class NetworkProfile::InstagramProfile

Public Class Methods

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

Public Instance Methods

profile_description() click to toggle source
# File lib/network_profile/extractors/instagram_profile.rb, line 10
def profile_description
  "Instagram Profil:"
end