Sha256: c862fe95c3f144a0fd6f088ac272be2ff1dcd228bcff86007057fe79d1766884
Contents?: true
Size: 1.08 KB
Versions: 3
Compression:
Stored size: 1.08 KB
Contents
# -*- encoding: utf-8 -*- require File.expand_path('../lib/einhorn/version', __FILE__) Gem::Specification.new do |gem| gem.authors = ["Greg Brockman"] gem.email = ["gdb@stripe.com"] gem.summary = "Einhorn: the language-independent shared socket manager" gem.description = "Einhorn makes it easy to run multiple instances of an application server, all listening on the same port. You can also seamlessly restart your workers without dropping any requests. Einhorn requires minimal application-level support, making it easy to use with an existing project." gem.homepage = "https://github.com/stripe/einhorn" gem.files = `git ls-files`.split($\) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.name = "einhorn" gem.require_paths = ["lib"] # maybe swap out for YAML? Then don't need any gems. gem.add_dependency('json') gem.add_development_dependency('shoulda') gem.add_development_dependency('mocha') gem.version = Einhorn::VERSION end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
einhorn-0.3.2 | einhorn.gemspec |
einhorn-0.3.1 | einhorn.gemspec |
einhorn-0.3.0 | einhorn.gemspec |