-
Notifications
You must be signed in to change notification settings - Fork 1
/
cremul-parser.gemspec
25 lines (22 loc) · 1.09 KB
/
cremul-parser.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'cremul/version'
Gem::Specification.new do |gem|
gem.name = "cremul-parser"
gem.version = Cremul::VERSION
gem.platform = Gem::Platform::RUBY
gem.authors = ["Per Spilling"]
gem.email = ["[email protected]"]
gem.summary = %q{A parser for CREMUL payment transaction files}
gem.description = %q{A parser for CREMUL payment transaction files. It parses the CREMUL file and creates a Ruby
object structure corresponding to the elements in the file. Also supports converting a CREMUL fil to a CSV file format.}
gem.homepage = "https://github.com/perspilling/cremul-parser"
gem.license = "MIT"
gem.files = `git ls-files -z`.split("\x0")
gem.executables = gem.files.grep(%r{^bin/}) { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_development_dependency 'bundler', '~> 1.5'
gem.add_development_dependency 'rake', '~> 10'
end