Sha256: f7427db5b8a5c6f679467aa87eb5150534895871b4c6718c72048f4215262bc9
Contents?: true
Size: 1.05 KB
Versions: 2
Compression:
Stored size: 1.05 KB
Contents
# encoding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'httpkit/version' Gem::Specification.new do |spec| spec.name = "httpkit" spec.version = HTTPkit::VERSION spec.authors = ["Lars Gierth"] spec.email = ["lars.gierth@gmail.com"] spec.summary = %q{The HTTP toolkit for Ruby} spec.description = %q{HTTPkit is a Ruby toolkit for building HTTP clients and servers, as well as compositions of them.} spec.homepage = "https://github.com/lgierth/httpkit" spec.license = "Public Domain" spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^spec/}) spec.require_paths = ["lib"] spec.add_dependency "eventmachine", "~> 1.0" spec.add_dependency "http_parser.rb", "~> 0.6.0" spec.add_dependency "promise.rb", "~> 0.6.0" spec.add_dependency "adamantium", "~> 0.2.0" spec.add_development_dependency "rspec", "~> 3.0" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
httpkit-0.6.0 | httpkit.gemspec |
httpkit-0.6.0.pre.5 | httpkit.gemspec |