forked from jaredatron/hobson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhobson.gemspec
43 lines (38 loc) · 1.57 KB
/
hobson.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
42
43
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "hobson/version"
Gem::Specification.new do |s|
s.name = "hobson"
s.version = Hobson::VERSION
s.authors = ["Jared"]
s.email = ["jared@deadlyicon.com"]
s.homepage = "http://github.com/deadlyicon/hobson"
s.summary = %q{run your build in parallel across multiple machine}
s.description = %q{run your build in parallel across multiple machine}
s.rubyforge_project = "hobson"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_runtime_dependency "activesupport", "~> 3.1.3"
s.add_runtime_dependency "actionpack", "~> 3.1.3"
s.add_runtime_dependency "i18n"
s.add_runtime_dependency "redis-slave"
s.add_runtime_dependency "redis-namespace", "~> 1.0.2"
s.add_runtime_dependency "resque", "~> 1.19.0"
s.add_runtime_dependency "fog"
s.add_runtime_dependency "SystemTimer" if RUBY_VERSION.to_f < 1.9
s.add_runtime_dependency "childprocess"
s.add_runtime_dependency "popen4"
s.add_runtime_dependency "log4r"
s.add_runtime_dependency "json"
s.add_runtime_dependency "open4"
s.add_runtime_dependency "uuid"
s.add_runtime_dependency "thor", "~> 0.14.6"
s.add_runtime_dependency "simplecov"
s.add_runtime_dependency "rack", "~> 1.3.5"
s.add_runtime_dependency "vegas"
s.add_runtime_dependency "sinatra"
s.add_runtime_dependency "haml"
s.add_runtime_dependency "sass"
end