celluloid-zmq.gemspec in celluloid-zmq-0.16.0 vs celluloid-zmq.gemspec in celluloid-zmq-0.16.1
- old
+ new
@@ -5,19 +5,20 @@
gem.authors = ["Tony Arcieri"]
gem.email = ["tony.arcieri@gmail.com"]
gem.description = "Celluloid bindings to the ffi-rzmq library"
gem.summary = "Celluloid::ZMQ provides concurrent Celluloid actors that can listen for 0MQ events"
gem.homepage = "http://github.com/celluloid/celluloid-zmq"
+ gem.license = "MIT"
gem.name = "celluloid-zmq"
gem.version = Celluloid::ZMQ::VERSION
- gem.add_dependency "celluloid", ">= 0.15.0"
+ gem.add_dependency "celluloid", "~> 0.16"
gem.add_dependency "ffi"
gem.add_dependency "ffi-rzmq"
gem.add_development_dependency "rake"
- gem.add_development_dependency "rspec"
+ gem.add_development_dependency "rspec", "~> 3.0"
# Files
ignores = File.read(".gitignore").split(/\r?\n/).reject{ |f| f =~ /^(#.+|\s*)$/ }.map {|f| Dir[f] }.flatten
gem.files = (Dir['**/*','.gitignore'] - ignores).reject {|f| !File.file?(f) }
gem.test_files = (Dir['spec/**/*','.gitignore'] - ignores).reject {|f| !File.file?(f) }