Sha256: da1bb635f36fa18a4d44bd79d3b3ebad9ef4a1cbb61be0773eb52fec0c9bcd84

Contents?: true

Size: 1.02 KB

Versions: 2

Compression:

Stored size: 1.02 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'hara/version'

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 & 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 "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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
hara-0.2.1 hara.gemspec
hara-0.2.0 hara.gemspec