forked from celluloid/celluloid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
celluloid.gemspec
27 lines (22 loc) · 1.04 KB
/
celluloid.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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |gem|
gem.name = 'celluloid'
gem.version = '0.16.0'
gem.platform = Gem::Platform::RUBY
gem.summary = 'Actor-based concurrent object framework for Ruby'
gem.description = 'Celluloid enables people to build concurrent programs out of concurrent objects just as easily as they build sequential programs out of sequential objects'
gem.licenses = ['MIT']
gem.authors = ['Tony Arcieri']
gem.email = ['[email protected]']
gem.homepage = 'https://github.com/celluloid/celluloid'
gem.required_ruby_version = '>= 1.9.2'
gem.required_rubygems_version = '>= 1.3.6'
gem.files = Dir['README.md', 'LICENSE.txt', 'lib/**/*', 'spec/**/*']
gem.require_path = 'lib'
gem.add_runtime_dependency 'timers', '~> 4.0'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec', '~> 2.14.1'
gem.add_development_dependency 'guard-rspec'
gem.add_development_dependency 'benchmark_suite'
gem.add_development_dependency 'rubocop'
end