-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathqilin.gemspec
24 lines (20 loc) · 882 Bytes
/
qilin.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "qilin/version"
Gem::Specification.new do |s|
s.name = "qilin"
s.version = Qilin::VERSION
s.date = '2011-05-16'
s.platform = Gem::Platform::RUBY
s.authors = ["Ken Robertson"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/krobertson/qilin"
s.summary = %q{A lightweight framework for background processing across many child processes, inspired heavily by Unicorn.}
s.description = %q{A lightweight framework for background processing across many child processes, inspired heavily by Unicorn.}
s.rubyforge_project = "qilin"
s.executables = %w(qilin)
s.files = %w( Rakefile README.md LICENSE )
s.files += Dir.glob("lib/**/*")
s.files += Dir.glob("bin/**/*")
s.require_paths = ["lib"]
end