Sha256: 96af94f15aad376bb4ee8a644f1a59cbe2a38b944a25b7d36e6e82ff00321f20

Contents?: true

Size: 321 Bytes

Versions: 6

Compression:

Stored size: 321 Bytes

Contents

require_relative './pg'

module CipherStash
  module PG
    DB_EXT_DIR = File.join(__dir__, '../vendor/database-extensions')

    def self.install_script
      File.read(File.join(DB_EXT_DIR, "install.sql"))
    end

    def self.uninstall_script
      File.read(File.join(DB_EXT_DIR, "uninstall.sql"))
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
cipherstash-pg-1.0.0.beta.1-x86_64-darwin-21 ./lib/cipherstash-pg.rb
cipherstash-pg-1.0.0.beta.1-arm64-darwin-21 ./lib/cipherstash-pg.rb
cipherstash-pg-1.0.0.beta.1-x86_64-linux ./lib/cipherstash-pg.rb
cipherstash-pg-1.0.0.beta.1-x86_64-darwin-22 ./lib/cipherstash-pg.rb
cipherstash-pg-1.0.0.beta.1-arm64-darwin-22 ./lib/cipherstash-pg.rb
cipherstash-pg-1.0.0.beta.1-aarch64-linux ./lib/cipherstash-pg.rb