-
Notifications
You must be signed in to change notification settings - Fork 0
/
ballista.gemspec
30 lines (25 loc) · 991 Bytes
/
ballista.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
require 'English'
$LOAD_PATH.unshift File.expand_path('lib', __dir__)
require 'ballista/version'
Gem::Specification.new do |s|
s.name = 'ballista'
s.version = Ballista::VERSION
s.date = Time.now.strftime('%Y-%m-%d')
s.required_ruby_version = '>= 2.5.0'
s.summary = 'Projection tool for Ledger format'
s.description = 'Projection tool for Ledger format'
s.authors = ['Les Aker']
s.email = 'me@lesaker.org'
s.homepage = 'https://github.com/akerl/ballista'
s.license = 'MIT'
s.files = `git ls-files`.split
s.test_files = `git ls-files spec/*`.split
s.executables = ['ballista']
s.add_dependency 'cymbal', '~> 2.0.0'
s.add_dependency 'libledger', '~> 0.0.8'
s.add_dependency 'mercenary', '~> 0.4.0'
s.add_development_dependency 'codecov', '~> 0.5.1'
s.add_development_dependency 'goodcop', '~> 0.9.3'
s.add_development_dependency 'rake', '~> 13.0.3'
s.add_development_dependency 'rspec', '~> 3.10.0'
end