Sha256: d3afdd381f0d59ab677e41d0e10459c2b8f79368be8ebf16a0ce84a6ef2b125b

Contents?: true

Size: 1.63 KB

Versions: 1

Compression:

Stored size: 1.63 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 title, author, abstruct and etc. of paper in arXiv. Moreover, analyze pdf file to fetch citation list in paper}
  spec.description   = %q{Fetch title, author, abstruct, and citations list of paper in arXiv from pdf file}
  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"
  spec.add_dependency 'paper-pdf-parser', "~> 0.1"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
arxiv-references-0.1.8.0 arxiv-references.gemspec