forked from celluloid/celluloid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
celluloid.gemspec
30 lines (26 loc) · 1.21 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
# -*- encoding: utf-8 -*-
# frozen_string_literal: true
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "celluloid/version"
Gem::Specification.new do |spec|
spec.name = "celluloid"
spec.version = Celluloid::VERSION
spec.platform = Gem::Platform::RUBY
spec.licenses = ["MIT"]
spec.authors = ["Tony Arcieri", "Donovan Keme"]
spec.email = ["[email protected]", "[email protected]"]
spec.homepage = "https://github.com/celluloid/celluloid"
spec.summary = "Actor-based concurrent object framework for Ruby"
spec.description = <<-DESCRIPTION.strip.gsub(/\s+/, " ")
Celluloid enables people to build concurrent programs out of concurrent objects just as easily
as they build sequential programs out of sequential objects
DESCRIPTION
spec.require_path = "lib"
spec.files = Dir["*.md", "*.txt", "lib/**/*", "spec/**/*", "examples/*"]
spec.required_ruby_version = ">= 2.2.6"
spec.required_rubygems_version = ">= 2.0.0"
spec.add_runtime_dependency "timers", "~> 4"
spec.add_runtime_dependency "celluloid-pool", "~> 0.20"
spec.add_runtime_dependency "celluloid-supervision", "~> 0.20"
end