Sha256: 930370c2f51e4472a923d7eeb5b2b96266e38b85d81088104fc1444ea91e5672
Contents?: true
Size: 1.19 KB
Versions: 1
Compression:
Stored size: 1.19 KB
Contents
# encoding: utf-8 # frozen_string_literal: true lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "veriform/version" Gem::Specification.new do |spec| spec.name = "veriform" spec.version = Veriform::VERSION spec.authors = ["Tony Arcieri"] spec.email = ["bascule@gmail.com"] spec.summary = "Cryptographically verifiable data serialization format inspired by Protocol Buffers" spec.description = <<-DESCRIPTION.strip.gsub(/\s+/, " ") Cryptographically verifiable data serialization format inspired by Protocol Buffers, useful for things like credentials, transparency logs, and blockchain applications. Misuse-resistant symmetric encryption using the AES-SIV (RFC 5297) DESCRIPTION spec.homepage = "https://github.com/zcred/veriform/tree/master/ruby/" 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.required_ruby_version = ">= 2.2.2" spec.add_development_dependency "bundler", "~> 1.14" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
veriform-0.0.0 | veriform.gemspec |