Sha256: ad63c2372ee89914353524d0cd4203e1a333a4649e31cbed273024c6444339b4
Contents?: true
Size: 1.24 KB
Versions: 6
Compression:
Stored size: 1.24 KB
Contents
# This gemspec replaces cipherstash-pg.gemspec when the FAT gems are built. # It is not used when the ABI-specific gems are built. # frozen_string_literal: true # -*- encoding: utf-8 -*- require_relative 'lib/pg/version' Gem::Specification.new do |spec| spec.name = "cipherstash-pg" spec.version = "1.0.0.beta.1" spec.authors = ["CipherStash"] spec.email = ["engineers@cipherstash.com"] spec.summary = "CipherStash PG is a drop in replacement of PG that provides transparent data encryption" spec.description = "CipherStash PG is a drop in replacement of PG that provides transparent data encryption, with a PG-compatible API" spec.homepage = "https://github.com/cipherstash/cipherstash-pg" spec.license = "BSD-2-Clause" spec.required_ruby_version = ">= 2.7" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/cipherstash/cipherstash-pg" spec.metadata["documentation_uri"] = "http://deveiate.org/code/pg" spec.platform = Gem::Platform::CURRENT spec.files = Dir.chdir(File.expand_path(__dir__)) do `find .`.lines.map{|line| line.strip}.reject{|line| line == "" || [".", ".."].include?(line)} end spec.require_paths = ["lib"] end
Version data entries
6 entries across 6 versions & 1 rubygems