forked from rubyritas/ach
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ach.gemspec
22 lines (18 loc) · 820 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
# -*- 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('rake')
s.add_development_dependency('rspec', '~> 2.0')
end