forked from Montana/hoosegow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhoosegow.gemspec
30 lines (30 loc) · 1000 Bytes
/
hoosegow.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
Gem::Specification.new do |s|
s.name = 'hoosegow'
s.version = '1.2.5'
s.summary = "A Docker jail for ruby code"
s.description = "Hoosegow provides an RPC layer on top of Docker containers so that you can isolate unsafe parts of your application."
s.authors = ["Ben Toews", "Matt Burke"]
s.email = '[email protected]'
s.licenses = ["MIT"]
globs = %w[
README.md
LICENSE
Gemfile
Rakefile
Dockerfile
hoosegow.gemspec
docs/**/*
lib/**/*
script/**/*
spec/**/*
]
s.files = Dir[*globs]
s.executables = ['hoosegow']
s.homepage = 'https://github.com/github/hoosegow'
s.required_ruby_version = ">= 1.9.3"
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '>= 2.14.1', '~> 2.14'
s.add_runtime_dependency 'msgpack', '>= 0.5.6', '~> 0.5'
s.add_runtime_dependency 'yajl-ruby', '>= 1.1.0', '~> 1.1'
s.add_runtime_dependency 'docker-api', '~> 1.19'
end