-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaper_summary.gemspec
25 lines (23 loc) · 1 KB
/
paper_summary.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'paper_summary/version'
Gem::Specification.new do |gem|
gem.name = "paper_summary"
gem.version = PaperSummary::VERSION
gem.authors = ["Jure Triglav"]
gem.email = ["[email protected]"]
gem.summary = %q{Paper_summary gem gets the summary for papers with a DOI or an arXiv identifier}
gem.description = %q{Summary getter for scientific papers}
gem.homepage = "http://github.com/jure/paper_summary"
gem.license = 'MIT'
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.require_paths = ["lib"]
gem.add_development_dependency "pry"
# Tests
gem.add_development_dependency "rake"
gem.add_development_dependency "webmock"
gem.add_runtime_dependency "nokogiri", ["= 1.5.6"]
end