-
Notifications
You must be signed in to change notification settings - Fork 152
/
queue_classic.gemspec
30 lines (25 loc) · 1.34 KB
/
queue_classic.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'queue_classic/version'
Gem::Specification.new do |spec|
spec.name = 'queue_classic'
spec.email = '[email protected]'
spec.version = QC::VERSION
spec.description = 'queue_classic is a queueing library for Ruby apps. (Rails, Sinatra, Etc...) queue_classic features asynchronous job polling, database maintained locks and no ridiculous dependencies. As a matter of fact, queue_classic only requires pg.'
spec.summary = 'Simple, efficient worker queue for Ruby & PostgreSQL.'
spec.authors = ['Ryan Smith (♠ ace hacker)']
spec.homepage = 'https://github.com/QueueClassic/queue_classic'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = %w[lib]
spec.metadata = {
'bug_tracker_uri' => 'https://github.com/QueueClassic/queue_classic/issues',
'changelog_uri' => 'https://github.com/QueueClassic/queue_classic/blob/master/CHANGELOG.md',
'source_code_uri' => 'https://github.com/QueueClassic/queue_classic',
'rubygems_mfa_required' => 'true'
}
spec.required_ruby_version = '>= 3.0.0'
spec.add_runtime_dependency 'pg', '>= 1.1', '< 2.0'
end