paper-pdf-parser 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +11 -0
- data/.rspec +2 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +4 -0
- data/LICENSE +21 -0
- data/LICENSE.txt +21 -0
- data/README.md +65 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/exe/p3 +6 -0
- data/lib/paper/pdf/parser.rb +14 -0
- data/lib/paper/pdf/parser/P3.rb +128 -0
- data/lib/paper/pdf/parser/P3Util.rb +12 -0
- data/lib/paper/pdf/parser/paper-pdf-parser.rb +27 -0
- data/lib/paper/pdf/parser/version.rb +7 -0
- data/paper-pdf-parser.gemspec +36 -0
- metadata +152 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 06668fe35399dc8cf22a2e1ab7f7995d475b47e6
|
4
|
+
data.tar.gz: 3d0e919a167d6177c5dc084c53eda5faf54c0437
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 132a5d20bea7072830895040cd9caccd43019257b05ffc9c6ad9f2a8f7ae981330a146bf5b0cfed78905b66c5a1d2b7dd29c8bafca5e32fd4a250ec932fc3296
|
7
|
+
data.tar.gz: 35042f63ddf507c1bb8233081fcf65753c8d7b9e2659b2cc8ac70b949c073e17cddcb17f9632ab2ce6344b18680ad0f85e989fd85b7f025df526fc01c99ffdb7
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, and in the interest of
|
4
|
+
fostering an open and welcoming community, we pledge to respect all people who
|
5
|
+
contribute through reporting issues, posting feature requests, updating
|
6
|
+
documentation, submitting pull requests or patches, and other activities.
|
7
|
+
|
8
|
+
We are committed to making participation in this project a harassment-free
|
9
|
+
experience for everyone, regardless of level of experience, gender, gender
|
10
|
+
identity and expression, sexual orientation, disability, personal appearance,
|
11
|
+
body size, race, ethnicity, age, religion, or nationality.
|
12
|
+
|
13
|
+
Examples of unacceptable behavior by participants include:
|
14
|
+
|
15
|
+
* The use of sexualized language or imagery
|
16
|
+
* Personal attacks
|
17
|
+
* Trolling or insulting/derogatory comments
|
18
|
+
* Public or private harassment
|
19
|
+
* Publishing other's private information, such as physical or electronic
|
20
|
+
addresses, without explicit permission
|
21
|
+
* Other unethical or unprofessional conduct
|
22
|
+
|
23
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
24
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
25
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
26
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
27
|
+
threatening, offensive, or harmful.
|
28
|
+
|
29
|
+
By adopting this Code of Conduct, project maintainers commit themselves to
|
30
|
+
fairly and consistently applying these principles to every aspect of managing
|
31
|
+
this project. Project maintainers who do not follow or enforce the Code of
|
32
|
+
Conduct may be permanently removed from the project team.
|
33
|
+
|
34
|
+
This code of conduct applies both within project spaces and in public spaces
|
35
|
+
when an individual is representing the project or its community.
|
36
|
+
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
38
|
+
reported by contacting a project maintainer at takahiro_nishimura@r.recruit.co.jp. All
|
39
|
+
complaints will be reviewed and investigated and will result in a response that
|
40
|
+
is deemed necessary and appropriate to the circumstances. Maintainers are
|
41
|
+
obligated to maintain confidentiality with regard to the reporter of an
|
42
|
+
incident.
|
43
|
+
|
44
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
45
|
+
version 1.3.0, available at
|
46
|
+
[http://contributor-covenant.org/version/1/3/0/][version]
|
47
|
+
|
48
|
+
[homepage]: http://contributor-covenant.org
|
49
|
+
[version]: http://contributor-covenant.org/version/1/3/0/
|
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 Takahiro Nishimura
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 Takahiro Nishimura
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,65 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
|
4
|
+
# Paper::Pdf::Parser
|
5
|
+
|
6
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/paper/pdf/parser`. To experiment with that code, run `bin/console` for an interactive prompt.
|
7
|
+
|
8
|
+
|
9
|
+
## Dependencies
|
10
|
+
|
11
|
+
- k2pdfopt (http://www.willus.com/k2pdfopt/)
|
12
|
+
|
13
|
+
## Installation
|
14
|
+
### Install k2pdfopt
|
15
|
+
|
16
|
+
1. Access [this url](http://www.willus.com/k2pdfopt/download/)
|
17
|
+
2. Select version by OS and 32/64 bit
|
18
|
+
3. Put CAPTHA and download
|
19
|
+
4. Move to `/usr/local/bin`
|
20
|
+
5. Confirm to use `k2pdfopt` command
|
21
|
+
|
22
|
+
### Install paper pdf parser
|
23
|
+
|
24
|
+
```ruby
|
25
|
+
gem 'paper-pdf-parser'
|
26
|
+
```
|
27
|
+
|
28
|
+
And then execute:
|
29
|
+
|
30
|
+
$ bundle
|
31
|
+
|
32
|
+
Or install it yourself as:
|
33
|
+
|
34
|
+
$ gem install paper-pdf-parser
|
35
|
+
|
36
|
+
## Usage
|
37
|
+
|
38
|
+
```
|
39
|
+
Commands:
|
40
|
+
p3 help [COMMAND] # Describe available commands or one specific command
|
41
|
+
p3 path # Extract references from local file
|
42
|
+
p3 url # Extract references from pdf URL
|
43
|
+
|
44
|
+
Options:
|
45
|
+
Working dir, [--work-dir=WORK_DIR] # Set working dir(default: /tmp)
|
46
|
+
# Default: /tmp
|
47
|
+
Working in dir, [--dir], [--no-dir] # work to make dir or not(default: true)
|
48
|
+
# Default: true
|
49
|
+
```
|
50
|
+
|
51
|
+
## Development
|
52
|
+
|
53
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
54
|
+
|
55
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
56
|
+
|
57
|
+
## Contributing
|
58
|
+
|
59
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/paper-pdf-parser. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
60
|
+
|
61
|
+
|
62
|
+
## License
|
63
|
+
|
64
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
65
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "paper/pdf/parser"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
data/exe/p3
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
require 'pathname'
|
2
|
+
lib = Pathname.new(__FILE__).dirname.join().expand_path.to_s
|
3
|
+
$:.unshift lib
|
4
|
+
|
5
|
+
require 'paper/pdf/parser/paper-pdf-parser'
|
6
|
+
require "paper/pdf/parser/version"
|
7
|
+
|
8
|
+
module Paper
|
9
|
+
module Pdf
|
10
|
+
module Parser
|
11
|
+
# Your code goes here...
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1,128 @@
|
|
1
|
+
require 'digest/sha2'
|
2
|
+
require 'time'
|
3
|
+
require 'fileutils'
|
4
|
+
require 'pty'
|
5
|
+
require 'expect'
|
6
|
+
require 'pdf-reader'
|
7
|
+
require 'open-uri'
|
8
|
+
|
9
|
+
class P3
|
10
|
+
REFERENCE_START_REGEXP = Regexp.new('\n*[rR][eE][fF][eE][rR][eE][nN][cC][eE][sS]?( +|\n+)?$')
|
11
|
+
REFERENCE_REGEXP = Regexp.new('(\[[0-9]?[0-9]\]|\[.+?\])')
|
12
|
+
|
13
|
+
def self.makeId
|
14
|
+
return Digest::SHA256.hexdigest Time.now.strftime('%F %H:%M:%S')
|
15
|
+
end
|
16
|
+
|
17
|
+
def self.makeDir(id, work_dir)
|
18
|
+
Dir.mkdir("#{work_dir}/#{id}")
|
19
|
+
end
|
20
|
+
|
21
|
+
def self.removeDir(id, work_dir)
|
22
|
+
FileUtils.rm_rf("#{work_dir}/#{id}")
|
23
|
+
end
|
24
|
+
|
25
|
+
def self.makeFile(id, work_dir, use_dir)
|
26
|
+
if use_dir || use_dir.nil?
|
27
|
+
return "#{work_dir}/#{id}/output.pdf"
|
28
|
+
else
|
29
|
+
return "#{work_dir}/#{id}-output.pdf"
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
def self.getK2Pdf(id, work_dir, use_dir)
|
34
|
+
if use_dir
|
35
|
+
return "#{work_dir}/#{id}/output_k2opt.pdf"
|
36
|
+
else
|
37
|
+
return "#{work_dir}/#{id}-output_k2opt.pdf"
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
def self.removeFile(id, work_dir)
|
42
|
+
File.delete("#{work_dir}/#{id}-output.pdf")
|
43
|
+
File.delete("#{work_dir}/#{id}-output_k2opt.pdf")
|
44
|
+
end
|
45
|
+
|
46
|
+
def self.fetchPdfFile(pdfUrl, file_name)
|
47
|
+
open(file_name, 'wb') do |o|
|
48
|
+
open(pdfUrl) do |data|
|
49
|
+
o.write(data.read)
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
def self.convertSingleColPdf(file_name)
|
55
|
+
cmd = "k2pdfopt -dev kpw #{file_name}"
|
56
|
+
PTY.spawn(cmd) do |i, o|
|
57
|
+
o.sync = true
|
58
|
+
i.expect(/\S.*Enter option above \(h=help, q=quit\):/, 10) {
|
59
|
+
o.puts "\n"
|
60
|
+
o.flush
|
61
|
+
}
|
62
|
+
while (i.eof? == false)
|
63
|
+
res = i.gets
|
64
|
+
print res
|
65
|
+
unless res.index('written').nil?
|
66
|
+
return res.match(/\/[\a-zA-Z0-9_]+.pdf/).to_s
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
def self.fetchReference(file_name)
|
73
|
+
puts file_name
|
74
|
+
reader = PDF::Reader.new(file_name)
|
75
|
+
page_no = reader.
|
76
|
+
pages.
|
77
|
+
reject { |i|
|
78
|
+
i.text.index(REFERENCE_START_REGEXP).nil?
|
79
|
+
}.
|
80
|
+
map(&:number).
|
81
|
+
sort.
|
82
|
+
shift
|
83
|
+
|
84
|
+
ref_page = reader.
|
85
|
+
pages.
|
86
|
+
select { |i|
|
87
|
+
i.number >= page_no
|
88
|
+
}.
|
89
|
+
map { |i|
|
90
|
+
i.text.gsub(/\n\n+/, "\n").gsub(/ +/, ' ').gsub(/-\n +/, '')
|
91
|
+
}
|
92
|
+
|
93
|
+
ref_page.shift
|
94
|
+
|
95
|
+
ref_page = ref_page.
|
96
|
+
join(' ').
|
97
|
+
gsub(REFERENCE_REGEXP, "\n\\1")
|
98
|
+
|
99
|
+
ref_page = ref_page.
|
100
|
+
split(/\n *\n/).
|
101
|
+
map { |i| i.gsub("\n", '') }.
|
102
|
+
select { |i| i.length > 15 }
|
103
|
+
return ref_page
|
104
|
+
end
|
105
|
+
|
106
|
+
def self.fetchFromPdfPath(path, work_dir=true, use_dir=true)
|
107
|
+
executed_pdf = convertSingleColPdf(path)
|
108
|
+
references = fetchReference(executed_pdf)
|
109
|
+
if use_dir || use_dir.nil?
|
110
|
+
removeDir(@job_id, work_dir)
|
111
|
+
else
|
112
|
+
removeFile(@job_id, work_dir)
|
113
|
+
end
|
114
|
+
return references
|
115
|
+
end
|
116
|
+
|
117
|
+
def self.fetchFromPdfUrl(pdfUrl, work_dir=true, use_dir=true)
|
118
|
+
@job_id = makeId
|
119
|
+
makeDir(@job_id, work_dir) if use_dir || use_dir.nil?
|
120
|
+
file_name = makeFile(@job_id, work_dir, use_dir)
|
121
|
+
fetchPdfFile(pdfUrl, file_name)
|
122
|
+
return self.parse(file_name, work_dir, use_dir)
|
123
|
+
end
|
124
|
+
|
125
|
+
class << self
|
126
|
+
alias :parse :fetchFromPdfPath
|
127
|
+
end
|
128
|
+
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
$:.unshift Pathname.new(__FILE__).dirname.join().expand_path.to_s
|
2
|
+
require 'P3'
|
3
|
+
|
4
|
+
module P3Util
|
5
|
+
def self.fetchFromPath(pathName, work_dir, use_dir)
|
6
|
+
return P3.fetchFromPdfPath(pathName, work_dir, use_dir)
|
7
|
+
end
|
8
|
+
|
9
|
+
def self.fetchFromPdfUrl(pdfUrl, work_dir, use_dir)
|
10
|
+
return P3.fetchFromPdfUrl(pdfUrl, work_dir, use_dir)
|
11
|
+
end
|
12
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
require 'thor'
|
4
|
+
require 'pathname'
|
5
|
+
lib = Pathname.new(__FILE__).dirname.join().expand_path
|
6
|
+
$:.unshift lib.to_s
|
7
|
+
require 'P3Util'
|
8
|
+
require 'json'
|
9
|
+
|
10
|
+
|
11
|
+
module PaperPdfParser
|
12
|
+
class CLI < Thor
|
13
|
+
include P3Util
|
14
|
+
class_option 'work_dir', type: :string, aliases: 'Working dir', desc: 'Set working dir(default: /tmp)', default: '/tmp'
|
15
|
+
class_option 'dir', type: :boolean, aliases: 'Working in dir', desc: 'work to make dir or not(default: true)', default: true
|
16
|
+
|
17
|
+
desc 'path', 'Extract references from local file'
|
18
|
+
def path(pathName)
|
19
|
+
puts P3Util.fetchFromPath(pathName, options[:work_dir], options[:use_dir]).to_json
|
20
|
+
end
|
21
|
+
|
22
|
+
desc 'url', 'Extract references from pdf URL'
|
23
|
+
def url(pdfUrlName)
|
24
|
+
puts P3Util.fetchFromPdfUrl(pdfUrlName, options[:work_dir], options[:use_dir]).to_json
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'paper/pdf/parser/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "paper-pdf-parser"
|
8
|
+
spec.version = Paper::Pdf::Parser::VERSION
|
9
|
+
spec.authors = ["Takahiro Nishimura"]
|
10
|
+
spec.email = ["tkhr.nishimura@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Fetch citation list to parse paper pdf }
|
13
|
+
spec.description = %q{All paper certainly has citation list. However it is hard to extract reference list cuz part of citation list locate lowest part in pdf and all browser is so slow to show pdf file of paper that we get tired to fetch paper. Moreover using pdftohtml or pdftotext, this command cannnot parse multi-column pdf. I develop suitablly-parse multi-column pdf file and fetch citation list.}
|
14
|
+
spec.homepage = "https://github.com/nishimuuu/paper-pdf-parser"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
18
|
+
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
19
|
+
if spec.respond_to?(:metadata)
|
20
|
+
spec.metadata['allowed_push_host'] = "https://rubygems.org"
|
21
|
+
else
|
22
|
+
raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
|
23
|
+
end
|
24
|
+
|
25
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
26
|
+
spec.bindir = "exe"
|
27
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
28
|
+
spec.require_paths = ["lib"]
|
29
|
+
|
30
|
+
spec.add_development_dependency "bundler", "~> 1.12"
|
31
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
32
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
33
|
+
spec.add_dependency 'thor', "~> 0.19"
|
34
|
+
spec.add_dependency 'pdf-reader', "~> 1.4"
|
35
|
+
spec.add_dependency 'nokogiri', "~> 1.6"
|
36
|
+
end
|
metadata
ADDED
@@ -0,0 +1,152 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: paper-pdf-parser
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Takahiro Nishimura
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-05-14 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.12'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.12'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: thor
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0.19'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0.19'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: pdf-reader
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '1.4'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '1.4'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: nokogiri
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '1.6'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '1.6'
|
97
|
+
description: All paper certainly has citation list. However it is hard to extract
|
98
|
+
reference list cuz part of citation list locate lowest part in pdf and all browser
|
99
|
+
is so slow to show pdf file of paper that we get tired to fetch paper. Moreover
|
100
|
+
using pdftohtml or pdftotext, this command cannnot parse multi-column pdf. I develop
|
101
|
+
suitablly-parse multi-column pdf file and fetch citation list.
|
102
|
+
email:
|
103
|
+
- tkhr.nishimura@gmail.com
|
104
|
+
executables:
|
105
|
+
- p3
|
106
|
+
extensions: []
|
107
|
+
extra_rdoc_files: []
|
108
|
+
files:
|
109
|
+
- ".gitignore"
|
110
|
+
- ".rspec"
|
111
|
+
- ".travis.yml"
|
112
|
+
- CODE_OF_CONDUCT.md
|
113
|
+
- Gemfile
|
114
|
+
- LICENSE
|
115
|
+
- LICENSE.txt
|
116
|
+
- README.md
|
117
|
+
- Rakefile
|
118
|
+
- bin/console
|
119
|
+
- bin/setup
|
120
|
+
- exe/p3
|
121
|
+
- lib/paper/pdf/parser.rb
|
122
|
+
- lib/paper/pdf/parser/P3.rb
|
123
|
+
- lib/paper/pdf/parser/P3Util.rb
|
124
|
+
- lib/paper/pdf/parser/paper-pdf-parser.rb
|
125
|
+
- lib/paper/pdf/parser/version.rb
|
126
|
+
- paper-pdf-parser.gemspec
|
127
|
+
homepage: https://github.com/nishimuuu/paper-pdf-parser
|
128
|
+
licenses:
|
129
|
+
- MIT
|
130
|
+
metadata:
|
131
|
+
allowed_push_host: https://rubygems.org
|
132
|
+
post_install_message:
|
133
|
+
rdoc_options: []
|
134
|
+
require_paths:
|
135
|
+
- lib
|
136
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
137
|
+
requirements:
|
138
|
+
- - ">="
|
139
|
+
- !ruby/object:Gem::Version
|
140
|
+
version: '0'
|
141
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - ">="
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '0'
|
146
|
+
requirements: []
|
147
|
+
rubyforge_project:
|
148
|
+
rubygems_version: 2.4.5.1
|
149
|
+
signing_key:
|
150
|
+
specification_version: 4
|
151
|
+
summary: Fetch citation list to parse paper pdf
|
152
|
+
test_files: []
|