forked from rubyritas/ach
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ach.gemspec
26 lines (21 loc) · 970 Bytes
/
ach.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'ach/version'
Gem::Specification.new do |s|
s.name = 'ach'
s.version = ACH::VERSION.dup
s.summary = 'Helper for building ACH files'
s.description = 'ach is a Ruby helper for building and parsing ACH files. In particular, it helps with field order and alignment, and adds padding lines to end of file.'
s.email = '[email protected]'
s.homepage = 'https://github.com/jm81/ach'
s.authors = ['Jared Morgan', 'Josh Puetz']
s.extra_rdoc_files = ['README.md']
s.files = Dir.glob('lib/**/*') + %w{MIT-LICENSE README.md}
s.test_files = Dir.glob('examples/**/*')
s.require_path = 'lib'
s.add_development_dependency('appraisal')
s.add_development_dependency('autotest')
s.add_development_dependency('rake', '>= 12.3.3')
s.add_development_dependency('rspec', '~> 3.2')
s.add_runtime_dependency('holidays', '>= 3.1')
end