forked from yatish27/linkedin-scraper
-
Notifications
You must be signed in to change notification settings - Fork 1
/
linkedin-scraper.gemspec
19 lines (18 loc) · 962 Bytes
/
linkedin-scraper.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/linkedin-scraper/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Yatish Mehta"]
gem.email = ["[email protected]"]
gem.description = %q{Scrapes the linkedin profile when a url is given }
gem.summary = %q{when a url of public linkedin profile page is given it scrapes the entire page and converts into a accessible object}
gem.homepage = "https://github.com/yatishmehta27/linkedin-scraper"
gem.add_dependency(%q<httparty>, [">= 0"])
gem.add_dependency(%q<mechanize>, [">= 0"])
gem.add_dependency(%q<awesome_print>, [">= 0"])
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "linkedin-scraper"
gem.require_paths = ["lib"]
gem.version = Linkedin::Scraper::VERSION
end