├── .gitignore ├── .rubocop.yml ├── CHANGE.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── bin └── linkedin-scraper ├── lib ├── linkedin-scraper.rb └── linkedin-scraper │ ├── profile.rb │ ├── user_agent.rb │ └── version.rb ├── linkedin-scraper.gemspec └── spec ├── fixtures └── jeffweiner08.html ├── linkedin_scraper ├── .DS_Store └── profile_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatish27/linkedin-scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatish27/linkedin-scraper/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /CHANGE.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatish27/linkedin-scraper/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatish27/linkedin-scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatish27/linkedin-scraper/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatish27/linkedin-scraper/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/linkedin-scraper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatish27/linkedin-scraper/HEAD/bin/linkedin-scraper -------------------------------------------------------------------------------- /lib/linkedin-scraper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatish27/linkedin-scraper/HEAD/lib/linkedin-scraper.rb -------------------------------------------------------------------------------- /lib/linkedin-scraper/profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatish27/linkedin-scraper/HEAD/lib/linkedin-scraper/profile.rb -------------------------------------------------------------------------------- /lib/linkedin-scraper/user_agent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatish27/linkedin-scraper/HEAD/lib/linkedin-scraper/user_agent.rb -------------------------------------------------------------------------------- /lib/linkedin-scraper/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatish27/linkedin-scraper/HEAD/lib/linkedin-scraper/version.rb -------------------------------------------------------------------------------- /linkedin-scraper.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatish27/linkedin-scraper/HEAD/linkedin-scraper.gemspec -------------------------------------------------------------------------------- /spec/fixtures/jeffweiner08.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatish27/linkedin-scraper/HEAD/spec/fixtures/jeffweiner08.html -------------------------------------------------------------------------------- /spec/linkedin_scraper/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatish27/linkedin-scraper/HEAD/spec/linkedin_scraper/.DS_Store -------------------------------------------------------------------------------- /spec/linkedin_scraper/profile_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatish27/linkedin-scraper/HEAD/spec/linkedin_scraper/profile_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yatish27/linkedin-scraper/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------