Sha256: 5db7c13693ba5d18e810b8ecb02f6d36bb0da3e8b21bcd61c5db05fb3742a545
Contents?: true
Size: 1.13 KB
Versions: 1
Compression:
Stored size: 1.13 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'identification/version' Gem::Specification.new do |spec| spec.name = 'identification' spec.version = Identification::VERSION spec.authors = ['Ruby'] spec.email = ['hi@ruby.sh'] spec.summary = 'A suite of tools for working with various identity documents.' spec.description = 'A suite of tools for verifying and generating identity documents. Support is currently provided for parsing passports, and UK Drivers Liceneses are in development. Generation will be added in the near future.' spec.homepage = 'https://github.com/rubymeow/identification' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_development_dependency 'bundler', '~> 1.10' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'minitest' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
identification-0.1.0 | identification.gemspec |