forked from softwareinmotion/ibanizator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathibanizator.gemspec
27 lines (22 loc) · 1023 Bytes
/
ibanizator.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
Gem::Specification.new do |s|
s.name = 'ibanizator'
s.version = '0.3.0'
s.date = '2014-07-18'
s.licenses = ['MIT']
s.summary = 'An IBAN generator/validator and BIC generator for german accounts.'
s.description = <<-EOD.gsub(/\s+/, ' ')
ibanizator generates the correct IBAN for given account number and bank number
for german accounts. It is possible to validate given international IBANS.
Calculates also the BIC and bank names for given german bank codes.
EOD
s.homepage = 'https://github.com/softwareinmotion/ibanizator'
s.authors = ["Christoph Stettner"]
s.email = 'christoph.stettner@softwareinmotion.de'
s.files = Dir.glob("lib/**/*") + %w(license.md README.md db/blz.txt)
s.add_dependency 'equalizer', '~> 0.0.9'
s.add_dependency 'adamantium', '~> 0.2.0'
s.add_development_dependency 'rake', '~> 10.3.2'
s.add_development_dependency 'bundler', '~> 1.6.1'
s.add_development_dependency 'rspec', '~> 3.0'
s.add_development_dependency 'guard-rspec', '~> 4.2.10'
end