-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsps_king.gemspec
30 lines (25 loc) · 1.02 KB
/
sps_king.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
29
30
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'sps_king/version'
Gem::Specification.new do |s|
s.name = 'sps_king'
s.version = SPS::VERSION
s.authors = ['Tobias Schoknecht']
s.email = ['[email protected]']
s.description = 'Implemention of pain.001.001.03.ch.02 and pain.008.001.02.ch.03 (ISO 20022)'
s.summary = 'Ruby gem for creating SPS XML files'
s.homepage = 'http://github.com/Barzahlen/sps_king'
s.license = 'MIT'
s.files = `git ls-files`.split($/)
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ['lib']
s.required_ruby_version = '>= 3.0'
s.add_runtime_dependency 'activemodel', '>= 5.0'
s.add_runtime_dependency 'nokogiri'
s.add_runtime_dependency 'iban-tools'
s.add_development_dependency 'bundler'
s.add_development_dependency 'rspec'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'rake'
end