forked from francois/quicken_parser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathquicken_parser.gemspec
22 lines (17 loc) · 903 Bytes
/
quicken_parser.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'quicken_parser/version'
Gem::Specification.new do |spec|
spec.files = `git ls-files`.split("\n")
spec.name = 'quicken_parser'
spec.summary = 'QuickenParser'
spec.version = QuickenParser::VERSION
spec.authors = ["Fran\303\247ois Beausoleil", 'Bill Barnett']
spec.description = "Quick'n'dirty gem to parse Quicken QFX format."
spec.email = ['[email protected]', '[email protected]']
spec.homepage = 'https://github.com/francois/quicken_parser'
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.2.2'
spec.add_development_dependency('shoulda', '~> 3.5')
spec.add_runtime_dependency('FooBarWidget-money', ['~> 2'])
end