-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbarzahlen_client.gemspec
29 lines (23 loc) · 1.07 KB
/
barzahlen_client.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'barzahlen/version'
Gem::Specification.new do |spec|
# For explanations see http://docs.rubygems.org/read/chapter/20
spec.name = 'barzahlen'
spec.version = Barzahlen::VERSION
spec.authors = ['David Leib', 'Tobias Schoknecht']
spec.email = ['[email protected]']
spec.description = 'This is a ruby gem to access the viafintech API v2.'
spec.summary = 'Client gem for viafintech API v2.'
spec.homepage = ''
spec.license = 'MIT'
spec.files = Dir['lib/**/*.rb']
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 'rack-test', '~> 2.0.2'
spec.add_development_dependency 'rake', '~> 13.0.6'
spec.add_development_dependency 'rspec', '~> 3.12.0'
spec.add_runtime_dependency 'grac', '~> 4.2.0'
end