Sha256: 97b53bc4bcdd23e1af2755c5d33bdfeaeafd32d209f414eff9b25003363c326c

Contents?: true

Size: 859 Bytes

Versions: 3

Compression:

Stored size: 859 Bytes

Contents

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

Gem::Specification.new do |spec|
  spec.name          = 'ruby_wolf'
  spec.version       = RubyWolf::VERSION
  spec.authors       = ['Nguyễn Quang Minh']
  spec.email         = ['nguyenquangminh0711@gmail.com']

  spec.summary       = 'A simple ruby web server using pre-fork and event loop'
  spec.description   = 'My simple implementation of Rack web server using pre-fork and event loop'
  spec.homepage      = 'https://github.com/nguyenquangminh0711/ruby_wolf'

  spec.license       = 'MIT'

  spec.files         = `git ls-files`.split($/)
  spec.bindir        = 'bin'
  spec.executables   = ['ruby_wolf']
  spec.require_paths = ['lib']

  spec.add_runtime_dependency 'http_parser.rb', '~>0.6', '>=0.6.0'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ruby_wolf-0.4.0 ruby_wolf.gemspec
ruby_wolf-0.3.3 ruby_wolf.gemspec
ruby_wolf-0.3.2 ruby_wolf.gemspec