-
- Downloads
Import Upstream version 1.2.1
parents
No related branches found
No related tags found
Showing
- LICENSE 20 additions, 0 deletionsLICENSE
- README.md 71 additions, 0 deletionsREADME.md
- Rakefile 19 additions, 0 deletionsRakefile
- ext/Rakefile 8 additions, 0 deletionsext/Rakefile
- ext/http-parser/http_parser.c 0 additions, 0 deletionsext/http-parser/http_parser.c
- ext/http-parser/http_parser.h 436 additions, 0 deletionsext/http-parser/http_parser.h
- http-parser.gemspec 35 additions, 0 deletionshttp-parser.gemspec
- lib/http-parser.rb 11 additions, 0 deletionslib/http-parser.rb
- lib/http-parser/errors.rb 77 additions, 0 deletionslib/http-parser/errors.rb
- lib/http-parser/ext.rb 9 additions, 0 deletionslib/http-parser/ext.rb
- lib/http-parser/parser.rb 258 additions, 0 deletionslib/http-parser/parser.rb
- lib/http-parser/types.rb 335 additions, 0 deletionslib/http-parser/types.rb
- lib/http-parser/version.rb 5 additions, 0 deletionslib/http-parser/version.rb
- spec/error_spec.rb 45 additions, 0 deletionsspec/error_spec.rb
- spec/instance_spec.rb 78 additions, 0 deletionsspec/instance_spec.rb
- spec/parser_spec.rb 313 additions, 0 deletionsspec/parser_spec.rb
LICENSE
0 → 100644
README.md
0 → 100644
Rakefile
0 → 100644
ext/Rakefile
0 → 100644
ext/http-parser/http_parser.c
0 → 100644
This diff is collapsed.
ext/http-parser/http_parser.h
0 → 100644
http-parser.gemspec
0 → 100644
# frozen_string_literal: true | ||
# -*- encoding: utf-8 -*- | ||
$:.push File.expand_path("../lib", __FILE__) | ||
require "http-parser/version" | ||
Gem::Specification.new do |s| | ||
s.name = "http-parser" | ||
s.version = HttpParser::VERSION | ||
s.authors = ["Stephen von Takach"] | ||
s.email = ["steve@cotag.me"] | ||
s.license = 'MIT' | ||
s.homepage = "https://github.com/cotag/http-parser" | ||
s.summary = "Ruby bindings to joyent/http-parser" | ||
s.description = <<-EOF | ||
A super fast http parser for ruby. | ||
Cross platform and multiple ruby implementation support thanks to ffi. | ||
EOF | ||
s.add_dependency 'ffi-compiler', '>= 1.0', '< 2.0' | ||
s.add_development_dependency 'rake', '~> 11.2' | ||
s.add_development_dependency 'rspec', '~> 3.5' | ||
s.add_development_dependency 'yard', '~> 0.9' | ||
s.files = Dir["{lib}/**/*"] + %w(Rakefile http-parser.gemspec README.md LICENSE) | ||
s.files += ["ext/http-parser/http_parser.c", "ext/http-parser/http_parser.h"] | ||
s.test_files = Dir["spec/**/*"] | ||
s.extra_rdoc_files = ["README.md"] | ||
s.extensions << "ext/Rakefile" | ||
s.require_paths = ["lib"] | ||
end |
lib/http-parser.rb
0 → 100644
lib/http-parser/errors.rb
0 → 100644
lib/http-parser/ext.rb
0 → 100644
lib/http-parser/parser.rb
0 → 100644
lib/http-parser/types.rb
0 → 100644
lib/http-parser/version.rb
0 → 100644
spec/error_spec.rb
0 → 100644
spec/instance_spec.rb
0 → 100644
spec/parser_spec.rb
0 → 100644
Please register or sign in to comment