-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpg_queue.gemspec
23 lines (19 loc) · 934 Bytes
/
pg_queue.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/pg_queue/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Rafael Souza"]
gem.email = ["[email protected]"]
gem.description = %q{Some experimentations with LISTEN/NOTIFY for background jobs}
gem.summary = %q{Background jobs using PostgreSQL's LISTEN/NOTIFY}
gem.homepage = "http://rafaelss.github.com/pg_queue/"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "pg_queue"
gem.require_paths = ["lib"]
gem.version = PgQueue::VERSION
gem.add_dependency "pg", "~> 0.13.2"
gem.add_dependency "multi_json", "~> 1.1.0"
gem.add_development_dependency "rake", ">= 0.8.7"
gem.add_development_dependency "rspec", "~> 2.8.0"
end