Sha256: f7d03322033cf1496ff93117fb23c705c0a6a2def2ecaa658facbcaadb39d3ea
Contents?: true
Size: 1.05 KB
Versions: 2
Compression:
Stored size: 1.05 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'alo7/net/version' Gem::Specification.new do |spec| spec.name = 'alo7-net' spec.version = Alo7::Net::VERSION spec.authors = ['Hanfei Shen'] spec.email = ['qqshfox@gmail.com'] spec.summary = 'A TCP server/client library used at ALO7.' spec.description = 'alo7-net is the TCP server/client library we developed specifically for our ALO7 Learning Platform. This library provides a way to write asynchronous code in a straight-line fashion using fibers.' spec.homepage = 'https://github.com/qqshfox/alo7-net' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_runtime_dependency 'eventmachine', '~> 1.0' spec.add_runtime_dependency 'em-synchrony', '~> 1.0' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
alo7-net-0.1.1 | alo7-net.gemspec |
alo7-net-0.1.0 | alo7-net.gemspec |