forked from celluloid/celluloid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcelluloid.gemspec
27 lines (21 loc) · 998 Bytes
/
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 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'celluloid/version'
Gem::Specification.new do |gem|
gem.name = 'celluloid'
gem.version = Celluloid::VERSION
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 = ['tony.arcieri@gmail.com']
gem.homepage = 'https://github.com/celluloid/celluloid'
gem.required_rubygems_version = '>= 1.3.6'
gem.files = Dir['README.md', 'lib/**/*', 'spec/support/**/*']
gem.require_path = 'lib'
gem.add_runtime_dependency 'timers', '>= 1.0.0'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'benchmark_suite'
end