-
Notifications
You must be signed in to change notification settings - Fork 1
/
ecell.gemspec
31 lines (25 loc) · 1.12 KB
/
ecell.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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |gem|
gem.name = "ecell"
gem.version = '0.5.0.0'
gem.authors = ["Donovan Keme, //de", "benzrf"]
gem.email = ["[email protected]"]
gem.description = "Distributed strategic Celluloid actors."
gem.summary = "Framework built on Celluloid and ØMQ for building concurrent, networked, service-based systems."
gem.homepage = "https://github.com/celluloid/ecell"
gem.files = Dir.glob("{bin,lib,public}/**/*") + %w(README.md ZMQ.md CHANGELOG)
gem.test_files = Dir.glob("spec/**/*")
gem.require_path = 'lib'
gem.add_runtime_dependency 'msgpack'
gem.add_runtime_dependency 'celluloid'
gem.add_runtime_dependency 'celluloid-io'
gem.add_runtime_dependency 'celluloid-zmq'
gem.add_runtime_dependency 'celluloid-task-pooledfiber'
gem.add_runtime_dependency 'pry'
gem.add_runtime_dependency 'colorize'
gem.add_runtime_dependency 'sinatra'
gem.add_runtime_dependency 'puma'
gem.add_runtime_dependency 'websocket_parser'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'reel'
end