Sha256: b56a94907167e7fa1d673bee664c03491eb00f9b1ac97a6fe4496b8d08e7fb42

Contents?: true

Size: 1.12 KB

Versions: 6

Compression:

Stored size: 1.12 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "pg_audit_log/version"

Gem::Specification.new do |s|
  s.name        = "pg_audit_log"
  s.version     = PgAuditLog::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Case Commons, LLC"]
  s.email       = ["casecommons-dev@googlegroups.com"]
  s.homepage    = "https://github.com/Casecommons/pg_audit_log"
  s.summary     = %q{postgresql only database-level audit logging of all databases changes}
  s.description = %q{A completely transparent audit logging component for your application using a stored procedure and triggers. Comes with specs for your project and a rake task to generate the reverse SQL to undo changes logged}

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  s.add_dependency("rails", ">= 3.0.0")
  s.add_dependency("pg", ">= 0.9.0")
  s.add_development_dependency('rspec-rails')
  s.add_development_dependency('with_model', '>= 0.1.3')
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
pg_audit_log-0.2.0 pg_audit_log.gemspec
pg_audit_log-0.1.4 pg_audit_log.gemspec
pg_audit_log-0.1.3 pg_audit_log.gemspec
pg_audit_log-0.1.2 pg_audit_log.gemspec
pg_audit_log-0.1.1 pg_audit_log.gemspec
pg_audit_log-0.1.0 pg_audit_log.gemspec