Sha256: 611e9c405078bc583311103c30f2564c47f18b737ca6bfa1017f7a5b67f31993
Contents?: true
Size: 1.49 KB
Versions: 18
Compression:
Stored size: 1.49 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'arxiv/references/version' Gem::Specification.new do |spec| spec.name = "arxiv-references" spec.version = Arxiv::References::VERSION spec.authors = ["Takahiro Nishimura"] spec.email = ["tkhr.nishimura@gmail.com"] spec.summary = %q{This library is to fetch information of Title, Author, Abstruct and Citations from Arxiv Paper} spec.description = %q{This library is for suvey.} spec.homepage = "https://github.com/nishimuuu/Arxiv-references" spec.license = "GPL" # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or # delete this section to allow pushing this gem to any host. if spec.respond_to?(:metadata) spec.metadata['allowed_push_host'] = "https://rubygems.org" else raise "RubyGems 2.0 or newer is required to protect against public gem pushes." end spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.10" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" spec.add_dependency 'thor', "~> 0.19" spec.add_dependency 'pdf-reader', "~> 1.4" spec.add_dependency 'nokogiri', "~> 1.6" end
Version data entries
18 entries across 18 versions & 1 rubygems