Module: NetworkProfile

Defined in:
lib/network_profile.rb,
lib/network_profile/version.rb,
lib/network_profile/extractors/custom.rb,
lib/network_profile/extractors/xing_profile.rb,
lib/network_profile/extractors/github_profile.rb,
lib/network_profile/extractors/github_project.rb,
lib/network_profile/extractors/upwork_profile.rb,
lib/network_profile/extractors/default_profile.rb,
lib/network_profile/extractors/facebook_profile.rb,
lib/network_profile/extractors/linkedin_profile.rb,
lib/network_profile/extractors/instagram_profile.rb,
lib/network_profile/extractors/researchgate_profile.rb,
lib/network_profile/extractors/stackoverflow_profile.rb,
lib/network_profile/extractors/network_profile_without_extraction.rb

Defined Under Namespace

Modules: GithubGraphql Classes: Custom, DefaultProfile, Error, Extractor, FacebookProfile, GithubProfile, GithubProject, InstagramProfile, LinkedinProfile, NetworkProfileWithoutExtraction, ResearchgateProfile, StackoverflowProfile, UpworkProfile, XingProfile

Constant Summary collapse

VERSION =
"0.3.2"

Class Method Summary collapse

Class Method Details

.parse(link, include_fallback_custom: false) ⇒ Object



20
21
22
# File 'lib/network_profile.rb', line 20

def self.parse(link, include_fallback_custom: false)
  NetworkProfile::DefaultProfile.parse(link, include_fallback_custom: include_fallback_custom)
end