Sha256: 9a4b4ab180a347f90ecfad9a59e83f1ad474f3f3dd4891d6bf58f2f78516eec1

Contents?: true

Size: 1.02 KB

Versions: 1

Compression:

Stored size: 1.02 KB

Contents

require 'rake'

Gem::Specification.new do |s|
  s.name        = 'hoosegow'
  s.version     = '1.2.1'
  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       = 'mastahyeti@github.com'
  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',       '>= 10.3.2', '~> 10.3'
  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.13.6'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hoosegow-1.2.1 hoosegow.gemspec