Sha256: e648a52ec73e77730b8db8fa6c23b217f16f77f4d7db9757ad385c74b787f121
Contents?: true
Size: 1.55 KB
Versions: 2
Compression:
Stored size: 1.55 KB
Contents
# frozen_string_literal: true require_relative "lib/ukrainian_id_number/version" Gem::Specification.new do |spec| spec.name = "ukrainian_id_number" spec.version = UkrainianIdNumber::VERSION spec.authors = ["Yaroslav Nychka"] spec.email = ["Yaroslav Nychka"] spec.summary = "Get useful information from ukrainian id number" spec.description = "Ukrainian ID number or taxpayer 10-digit number" spec.homepage = "https://github.com/ynychka/ukrainian_id_number" spec.license = "MIT" spec.required_ruby_version = ">= 2.6.0" spec.metadata["allowed_push_host"] = "https://rubygems.org" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/ynychka/ukrainian_id_number" spec.metadata["changelog_uri"] = "https://github.com/ynychka/ukrainian_id_number/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(__dir__) do `git ls-files -z`.split("\x0").reject do |f| (File.expand_path(f) == __FILE__) || f.start_with?(*%w[bin/ test/ spec/ features/ .git appveyor Gemfile]) end end spec.bindir = "exe" spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] # Uncomment to register a new dependency of your gem # spec.add_dependency "example-gem", "~> 1.0" # For more information and examples about making a new gem, check out our # guide at: https://bundler.io/guides/creating_gem.html end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ukrainian_id_number-1.1.0 | ukrainian_id_number.gemspec |
ukrainian_id_number-1.0.0 | ukrainian_id_number.gemspec |