-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcmxl.gemspec
28 lines (23 loc) · 1.23 KB
/
cmxl.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'cmxl/version'
Gem::Specification.new do |spec|
spec.name = "cmxl"
spec.version = Cmxl::VERSION
spec.authors = ["Michael Bumann"]
spec.email = ["michael@railslove.com"]
spec.summary = %q{Cmxl is your friendly MT940 bank statement parser}
spec.description = %q{Cmxl provides an friendly, extensible and customizable parser for the MT940 bank statement format.}
spec.homepage = "https://github.com/railslove/cmxl"
spec.license = "MIT"
spec.post_install_message = "Thanks for using Cmxl - your friendly MT940 parser!\nWe hope we can make dealing with MT940 files a bit more fun. :) \nPlease create an issue on github if anything is not as expected.\n\n"
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.5"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec", '~>3.0'
spec.add_dependency "rchardet19"
end