-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeary.gemspec
41 lines (33 loc) · 1.21 KB
/
geary.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
36
37
38
39
40
41
# coding: utf-8
lib = File.expand_path('../lib/', __FILE__)
$:.unshift(lib) unless $:.include?(lib)
module Geary
VERSION = '0.1.0'
end
Gem::Specification.new do |s|
s.name = "geary"
s.version = Geary::VERSION
s.platform = Gem::Platform::RUBY
s.summary = "Resque/Sidekiq-style Gearman workers"
s.description = "An attempt to replace gearman-ruby"
s.license = 'MIT'
s.files = Dir['{lib/**/*}'] + %w(README.markdown LICENSE)
s.bindir = 'bin'
s.executables = ['geary']
s.require_path = 'lib'
s.extra_rdoc_files = ['README.markdown']
s.test_files = Dir['spec/**/*_spec.rb']
s.author = 'Brian Cobb'
s.email = 'bcobb@uwalumni.com'
s.homepage = 'https://github.com/bcobb/geary'
s.add_runtime_dependency 'celluloid'
s.add_runtime_dependency 'celluloid-io'
s.add_runtime_dependency 'virtus', '< 1'
s.add_runtime_dependency 'nestegg'
s.add_runtime_dependency 'virtus-uri'
s.add_development_dependency 'rspec'
s.add_development_dependency 'cucumber'
s.add_development_dependency 'aruba'
s.add_development_dependency 'gearmand_control'
s.add_development_dependency 'gearman_admin_client'
end