-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparse_capitalone_pdf_statement.gemspec
35 lines (31 loc) · 1.51 KB
/
parse_capitalone_pdf_statement.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'parse_capitalone_pdf_statement/version'
Gem::Specification.new do |spec|
spec.name = "parse_capitalone_pdf_statement"
spec.version = CapitalOneStatement::VERSION
spec.authors = ["Joe Sortelli"]
spec.email = ["[email protected]"]
spec.summary = "Parse a Capital One PDF statement file into structured data"
spec.description = %q{
The Capital One website only provides a way to download structured
data of credit card transaction history for the previous 180
days. However, you are able to download monthly PDF account
statements for the previous few years. This library allows you
to parse a Capital One PDF monthly statement, and access
structured transaction history data.
}
spec.homepage = "https://github.com/sortelli/parse_capitalone_pdf_statement"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_dependency "pdf-reader", "~> 1.3.3"
spec.add_dependency "json", "~> 1.8.1"
spec.add_development_dependency "yard", "~> 0.8.7"
spec.add_development_dependency "rake", "~> 10.4.2"
spec.add_development_dependency "minitest", "~> 5.5.0"
spec.add_development_dependency "simplecov", "~> 0.9.1"
end