Sha256: bd632b55c6e252301e6a834e24232a22adc24f1ff3cd6613d2ddfb65da245027
Contents?: true
Size: 1.46 KB
Versions: 2
Compression:
Stored size: 1.46 KB
Contents
# frozen_string_literal: true require_relative 'lib/validates_identity/br_cnpj/version' Gem::Specification.new do |spec| spec.name = 'validates_identity-br_cnpj' spec.version = ValidatesIdentity::BrCnpj::VERSION spec.authors = ['Paulo Ribeiro'] spec.email = ['plribeiro3000@gmail.com'] spec.summary = 'Validates Brazilian CNPJ Document and test it with matchers in a simple way.' spec.homepage = 'https://github.com/plribeiro3000/validates_identity-br_cnpj' spec.license = 'MIT' spec.required_ruby_version = '>= 2.6.0' spec.metadata['homepage_uri'] = spec.homepage spec.metadata['source_code_uri'] = 'https://github.com/plribeiro3000/validates_identity-br_cnpj/blob/master' spec.metadata['changelog_uri'] = 'https://github.com/plribeiro3000/validates_identity-br_cnpj/blob/master/CHANGELOG.md' # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject do |f| (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)}) end end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_runtime_dependency 'activemodel' spec.add_runtime_dependency 'validates_identity', '>= 0.5.0' spec.metadata['rubygems_mfa_required'] = 'true' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
validates_identity-br_cnpj-1.0.0 | validates_identity-br_cnpj.gemspec |
validates_identity-br_cnpj-0.2.0 | validates_identity-br_cnpj.gemspec |