@@ -4,7 +4,7 @@ require 'concurrent/version'
44
55Gem ::Specification . new do |s |
66 s . name = 'concurrent-ruby-ext'
7- s . version = Concurrent ::EXT_VERSION
7+ s . version = Concurrent ::VERSION
88 s . platform = Gem ::Platform ::RUBY
99 s . author = "Jerry D'Antonio"
1010 s . email = 'jerry.dantonio@gmail.com'
@@ -14,8 +14,8 @@ Gem::Specification.new do |s|
1414 s . date = Time . now . strftime ( '%Y-%m-%d' )
1515
1616 s . description = <<-EOF
17- Modern concurrency tools including agents, futures, promises, thread pools, actors, supervisors, and more .
18- Inspired by Erlang, Clojure, Go, JavaScript, actors, and classic concurrency patterns .
17+ C extensions to optimize the concurrent-ruby gem when running under MRI .
18+ Please see http://concurrent-ruby.com for more information .
1919 EOF
2020
2121 s . files = Dir [ 'ext/**/*.{h,c,cpp}' ]
@@ -30,5 +30,5 @@ Gem::Specification.new do |s|
3030
3131 s . required_ruby_version = '>= 1.9.3'
3232
33- s . add_runtime_dependency 'concurrent-ruby' , ' ~> 0.8.0.pre1'
33+ s . add_runtime_dependency 'concurrent-ruby' , " ~> #{ Concurrent :: VERSION } "
3434end
0 commit comments