-
Notifications
You must be signed in to change notification settings - Fork 50
/
qu.gemspec
22 lines (19 loc) · 828 Bytes
/
qu.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "qu/version"
plugin_files = Dir['qu-*.gemspec'].map { |gemspec|
eval(File.read(gemspec)).files
}.flatten.uniq
Gem::Specification.new do |s|
s.name = "qu"
s.version = Qu::VERSION
s.authors = ["Brandon Keepers"]
s.email = ["brandon@opensoul.org"]
s.homepage = "http://github.com/bkeepers/qu"
s.summary = %q{a Ruby library for queuing and processing background jobs.}
s.description = %q{a Ruby library for queuing and processing background jobs with configurable backends.}
s.files = `git ls-files`.split("\n") - plugin_files
s.test_files = `git ls-files -- spec`.split("\n")
s.executables = `git ls-files -- bin`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end