Sha256: 79664ea8e67157e1567d02a5d6a6a380f3d3039b4ae71fa0248c5c00edef257e
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
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_development_dependency 'rspec', '~>3.5.0', '>=3.5.0' spec.add_development_dependency 'byebug', '~>9.0.0', '>=8.0.0' spec.add_runtime_dependency 'rack', '~>2.0.0', '>=2.0.0' spec.add_runtime_dependency 'http_parser.rb', '~>0.6.0', '>=0.6.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby_wolf-0.2.0 | ruby_wolf.gemspec |