-
Notifications
You must be signed in to change notification settings - Fork 189
/
que.gemspec
35 lines (29 loc) · 1019 Bytes
/
que.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'que/version'
Gem::Specification.new do |spec|
spec.name = 'que'
spec.version = Que::VERSION
spec.authors = ["Chris Hanks"]
spec.email = ['christopher.m.hanks@gmail.com']
spec.description = %q{A job queue that uses PostgreSQL's advisory locks for speed and reliability.}
spec.summary = %q{A PostgreSQL-based Job Queue}
spec.homepage = 'https://github.com/que-rb/que'
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.7.0'
files_to_exclude = [
/\A\.circleci/,
/\AGemfile/,
/\Aspec/,
/\Atasks/,
/spec\.rb\z/,
]
spec.files = `git ls-files`.split($/).reject do |file|
files_to_exclude.any? { |r| r === file }
end
spec.executables = ['que']
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler'
end