-
Notifications
You must be signed in to change notification settings - Fork 80
/
valvat.gemspec
28 lines (25 loc) · 1.18 KB
/
valvat.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
# frozen_string_literal: true
require_relative 'lib/valvat/version'
Gem::Specification.new do |s|
s.name = 'valvat'
s.version = Valvat::VERSION
s.license = 'MIT'
s.authors = ['Sebastian Munz']
s.email = ['[email protected]']
s.homepage = 'https://github.com/yolk/valvat'
s.summary = 'Validates european vat numbers. Standalone or as a ActiveModel validator.'
s.description = 'Validates european vat numbers. Standalone or as a ActiveModel validator.'
s.required_ruby_version = '>= 2.6.0'
s.files = Dir['lib/**/*']
s.cert_chain = ['certs/mite.pem']
s.signing_key = File.expand_path('~/.ssh/gem-private_key.pem') if $PROGRAM_NAME.end_with?('gem')
s.metadata = {
'bug_tracker_uri' => "#{s.homepage}/issues",
'changelog_uri' => "#{s.homepage}/blob/master/CHANGES.md",
'documentation_uri' => "#{s.homepage}/blob/master/README.md",
'homepage_uri' => s.homepage,
'source_code_uri' => s.homepage,
'rubygems_mfa_required' => 'true'
}
s.add_dependency('rexml', '>= 3.3.6', '< 4.0.0')
end