Sha256: 0a6197f82a1138c484d7e64e9f954c550a8f563b3e367b488331d213de4fc700
Contents?: true
Size: 961 Bytes
Versions: 1
Compression:
Stored size: 961 Bytes
Contents
$LOAD_PATH.push File.expand_path("../lib", __FILE__) # Maintain your gem's version: require "pg_advisory_locker/version" Gem::Specification.new do |s| s.name = 'pg_advisory_locker' s.version = PgAdvisoryLocker::VERSION s.license = 'New BSD License' s.date = '2012-09-18' s.summary = "Helper for calling PostgreSQL pg_advisory_lock, pg_advisory_try_lock, and pg_advisory_unlock." s.description = "This gem provides a module that, when included in your ActiveRecord model, provides methods to acquire and release advisory locks for PostgreSQL connections." s.authors = ["Keith Gabryelski"] s.email = 'keith@fiksu.com' s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.require_path = 'lib' s.homepage = 'http://github.com/fiksu/pg_advisory_locker' s.add_dependency "pg" s.add_dependency "rails", '>= 3.0.0' s.add_dependency 'rspec-rails' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pg_advisory_locker-1.0.0 | pg_advisory_locker.gemspec |