-
Notifications
You must be signed in to change notification settings - Fork 14
/
Rakefile
28 lines (23 loc) · 864 Bytes
/
Rakefile
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
# vim: set filetype=ruby et sw=2 ts=2:
require 'gem_hadar'
GemHadar do
name 'mt940_parser'
module_type :class
path_name 'mt940'
path_module 'MT940'
author [ "Thies C. Arntzen", "Phillip Oertel" ]
email '[email protected]'
homepage "http://github.com/betterplace/mt940_parser"
summary 'MT940 parses account statements in the SWIFT MT940 format.'
description 'Ruby library that parses account statements in the SWIFT MT940 format.'
test_dir 'test'
test_files Dir['test/**/test_*.rb']
spec_dir 'spec'
ignore '.*.sw[pon]', 'pkg', 'Gemfile.lock', '.rvmrc', 'coverage',
'.DS_Store', '.ruby-gemset', '.ruby-version', '.bundle', '.AppleDouble'
readme 'README.md'
licenses 'MIT'
development_dependency 'test-unit'
development_dependency 'rubocop'
end
task :default => :test