-
Notifications
You must be signed in to change notification settings - Fork 14
/
quicken_parser.gemspec
30 lines (26 loc) · 1.59 KB
/
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
23
24
25
26
27
28
29
30
# -*- encoding: utf-8 -*-
$:.unshift File.expand_path("../lib", __FILE__)
require "quicken_parser/version"
Gem::Specification.new do |s|
s.name = %q{quicken_parser}
s.version = QuickenParser::VERSION
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Fran\303\247ois Beausoleil"]
s.date = %q{2009-05-02}
s.description = %q{This is a quick'n'dirty gem to parse Quicken QFX format.}
s.email = %q{[email protected]}
s.extra_rdoc_files = ["README", "LICENSE", "TODO"]
s.files = ["LICENSE", "README", "Rakefile", "TODO", "lib/quicken_parser", "lib/quicken_parser/account.rb", "lib/quicken_parser/parser.rb", "lib/quicken_parser/transaction.rb", "lib/quicken_parser/transactions.rb", "lib/quicken_parser.rb", "test/account_test.rb", "test/fixtures", "test/fixtures/no_memo.txt", "test/fixtures/one_account.txt", "test/fixtures/one_cc.txt", "test/fixtures/two_accounts.txt", "test/money_test.rb", "test/parser_test.rb", "test/test_helper.rb", "test/transaction_test.rb", "test/transactions_test.rb"]
s.has_rdoc = true
s.homepage = %q{http://github.com/francois/quicken_parser}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.2}
s.summary = %q{This is a quick'n'dirty gem to parse Quicken QFX format.}
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
s.add_development_dependency(%q<rake>)
s.add_development_dependency(%q<thoughtbot-shoulda>)
s.add_runtime_dependency(%q<FooBarWidget-money>, ["~> 2"])
end
end