hara.gemspec in hara-0.2.2 vs hara.gemspec in hara-0.3.0

- old
+ new

@@ -6,22 +6,23 @@ Gem::Specification.new do |spec| spec.name = "hara" spec.version = Hara::VERSION spec.authors = ["jjy"] spec.email = ["jjyruby@gmail.com"] - spec.description = %q{Hara help you build async-io & concurrent websocket server.} - spec.summary = %q{In fact, hara just a combination of em-websocket and celluloid, but it really help you write applications easily.} + spec.description = %q{Hara is a websocket based application framework.} + spec.summary = %q{Hara build upon em-websocket, easy to use.} spec.homepage = "http://github.com/jjyr/hara" spec.license = "MIT" spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] - spec.add_dependency "em-websocket", "~> 0.5.0" - spec.add_dependency "celluloid", "~> 0.14.1" + spec.add_dependency "em-websocket", ">= 0.5.0" + spec.add_dependency "eventmachine" + spec.add_dependency "celluloid", ">= 0.14.1" spec.add_development_dependency "bundler", "~> 1.3" spec.add_development_dependency "rake" end