-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsteuer.gemspec
More file actions
28 lines (23 loc) · 1.16 KB
/
steuer.gemspec
File metadata and controls
28 lines (23 loc) · 1.16 KB
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
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = 'steuer'
spec.version = '1.0.4'
spec.authors = ['Olumuyiwa Osiname']
spec.email = ['oluosiname@gmail.com']
spec.summary = 'German tax system utilities - tax numbers, VAT validation, and more'
spec.description = 'A Ruby gem for German tax system utilities including Steuernummer conversion between ' \
'formats, and other tax-related functionality.'
spec.homepage = 'https://github.com/oluosiname/steuer'
spec.license = 'MIT'
spec.files = Dir['lib/**/*', 'README.md', 'LICENSE']
spec.require_paths = ['lib']
spec.add_development_dependency 'pry', '~> 0.15.1'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'rubocop', '~> 1.56.0'
spec.add_development_dependency 'rubocop-factory_bot', '~> 2.24.0'
spec.add_development_dependency 'rubocop-performance', '~> 1.19.0'
spec.add_development_dependency 'rubocop-rspec', '~> 2.24.0'
spec.add_development_dependency 'rubocop-shopify', '~> 2.14'
spec.required_ruby_version = '>= 3.2.0'
end