Sha256: 43649065b9872635774f9cc22085cb38901326111e03203145436da61eac3bb5

Contents?: true

Size: 1.19 KB

Versions: 2

Compression:

Stored size: 1.19 KB

Contents

# frozen_string_literal: true

$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'valvat/version'

Gem::Specification.new do |s|
  s.name                              = 'valvat'
  s.version                           = Valvat::VERSION
  s.platform                          = Gem::Platform::RUBY
  s.license                           = 'MIT'
  s.authors                           = ['Sebastian Munz']
  s.email                             = ['sebastian@mite.de']
  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.files                             = `git ls-files`.split("\n")
  s.require_paths                     = ['lib']
  s.cert_chain                        = ['certs/mite.pem']
  s.signing_key                       = File.expand_path('~/.ssh/gem-private_key.pem') if $PROGRAM_NAME =~ /gem\z/
  s.metadata['rubygems_mfa_required'] = 'true'
  s.required_ruby_version             = '>= 2.6.0'

  s.add_runtime_dependency('rexml', '>= 3.2', '< 4.0')
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
valvat-1.4.1 valvat.gemspec
valvat-1.4.0 valvat.gemspec