hara.gemspec in hara-0.1.0 vs hara.gemspec in hara-0.2.0

- old
+ new

@@ -6,21 +6,22 @@ Gem::Specification.new do |spec| spec.name = "hara" spec.version = Hara::VERSION spec.authors = ["jjy"] spec.email = ["jjyruby@gmail.com"] - spec.description = %q{Hara is a simple framework, help you build [web ]socket server. Power by reel and celluloid.} - spec.summary = %q{Hara can help your build [web ]socket server easier.} + spec.description = %q{Hara help you build async & 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.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 "reel", "~> 0.3" + spec.add_dependency "em-websocket", "~> 0.5.0" + spec.add_dependency "celluloid", "~> 0.14.1" spec.add_development_dependency "bundler", "~> 1.3" spec.add_development_dependency "rake" end