forked from yatish27/linkedin-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinkedin-scraper.gemspec
More file actions
21 lines (17 loc) · 880 Bytes
/
linkedin-scraper.gemspec
File metadata and controls
21 lines (17 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/linkedin-scraper/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ['Yatish Mehta']
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.files = `git ls-files`.split($\)
gem.executables = ['linkedin-scraper']
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = 'linkedin-scraper'
gem.require_paths = ['lib']
gem.version = Linkedin::Scraper::VERSION
gem.add_dependency(%q<mechanize>, ['>= 0'])
gem.add_development_dependency 'rspec', '>=0'
gem.add_development_dependency 'rake'
end