forked from wurmlab/rubyscholar
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rubyscholar.gemspec
41 lines (30 loc) · 1.43 KB
/
rubyscholar.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
require './lib/rubyscholar-version.rb'
Gem::Specification.new do |gem|
gem.name = 'rubyscholar'
gem.version = Rubyscholar::VERSION
gem.authors = ['Yannick Wurm','Gaurav Koley']
gem.email = ['[email protected]','[email protected]']
gem.description = %q{Scrape Google Scholar Profile page}
gem.summary = %q{Rubyscholar scrapes one google scholar and formats it into a scholar.html file listing publications.}
gem.homepage = 'http://yannick.poulet.org/'
gem.license = 'MIT'
gem.add_runtime_dependency 'nokogiri', '~> 1.6', '>= 1.6.0'
gem.add_runtime_dependency 'commander', '~> 4.1', '>= 4.1.5'
gem.add_runtime_dependency 'activesupport', '~> 4.0', '>= 4.2'
gem.files = Dir['lib/**/*'] + Dir['views/**/*'] + Dir['public/**/*'] + Dir['tests/**/*']
gem.files = gem.files + ['example.config.yaml']
gem.files = gem.files + ['LICENSE.txt', 'README.md']
gem.files = gem.files + ['Gemfile', 'rubyscholar.gemspec']
gem.executables = ['rubyscholar']
gem.require_paths = ['lib']
gem.post_install_message = <<INFO
-----
Thanks for installing rubyscholar.
If something isn't working, this may be due to Google's changing the format of Scholar pages
(they do this regularly with no warning).
If you can have a shot at fixing it, please go ahead - pull requests are most welcome.
All the best,
Yannick - http://yannick.poulet.org
----
INFO
end