forked from celluloid/celluloid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcelluloid.gemspec
33 lines (26 loc) · 1.12 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
28
29
30
31
32
33
# -*- encoding: utf-8 -*-
require File.expand_path("../culture/sync", __FILE__)
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", "Donovan Keme"]
gem.email = ["[email protected]", "[email protected]"]
gem.homepage = "https://github.com/celluloid/celluloid"
gem.required_ruby_version = ">= 1.9.3"
gem.required_rubygems_version = ">= 1.3.6"
gem.files = Dir[
"README.md",
"CHANGES.md",
"LICENSE.txt",
"culture/**/*",
"lib/**/*",
"spec/**/*",
"examples/*"
]
gem.require_path = "lib"
Celluloid::Sync::Gemspec[gem]
end