-
Notifications
You must be signed in to change notification settings - Fork 4
/
reunion.gemspec
37 lines (30 loc) · 1.26 KB
/
reunion.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
36
37
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = "reunion"
s.version = '0.0.1'
s.platform = Gem::Platform::RUBY
s.authors = ["Nathanael Jones"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/nathanaeljones/reunion"
s.summary = %q{Evidenced-based, repeatable accounting library and webapp}
s.description = <<-EOF
Reunion takes your exported, overlapping, transaction records (.ofx, .qfx, .csv, .txt, etc) and merges them into a single, normalized file per account.
It then detects transfers and provides a DSL for rule-based accounting.
EOF
s.rubyforge_project = "reunion"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency('tilt')
s.add_dependency('nokogiri')
s.add_dependency('commonmarker')
s.add_dependency('slim')
s.add_dependency('sinatra', '>= 2.2.2')
s.add_dependency('ofx', '>= 0.3.3')
s.add_dependency('better_errors')
# Test libraries
s.add_development_dependency('minitest')
s.add_development_dependency('rack-test')
end