forked from ruby-concurrency/concurrent-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconcurrent-ruby-ext.gemspec
27 lines (22 loc) · 1.02 KB
/
concurrent-ruby-ext.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
require File.join(File.dirname(__FILE__ ), 'lib/concurrent-ruby/concurrent/version')
Gem::Specification.new do |s|
s.name = 'concurrent-ruby-ext'
s.version = Concurrent::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Jerry D'Antonio", 'The Ruby Concurrency Team']
s.email = '[email protected]'
s.homepage = 'http://www.concurrent-ruby.com'
s.summary = 'C extensions to optimize concurrent-ruby under MRI.'
s.license = 'MIT'
s.date = Time.now.strftime('%Y-%m-%d')
s.description = <<-EOF
C extensions to optimize the concurrent-ruby gem when running under MRI.
Please see http://concurrent-ruby.com for more information.
EOF
s.files = Dir['ext/**/*.{h,c,cpp}']
s.extra_rdoc_files = Dir['README*', 'LICENSE*', 'CHANGELOG*']
s.require_paths = ['lib']
s.extensions = 'ext/concurrent-ruby-ext/extconf.rb'
s.required_ruby_version = '>= 1.9.3'
s.add_runtime_dependency 'concurrent-ruby', "= #{Concurrent::VERSION}"
end