Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
ruby-http-parser
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Debian Ruby Team
ruby-http-parser
Commits
c07f6dfc
Commit
c07f6dfc
authored
1 year ago
by
Ananthu C V
Browse files
Options
Downloads
Patches
Plain Diff
New upstream version 1.2.3
parent
e599f686
Branches
upstream
Branches containing commit
Tags
upstream/1.2.3
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
ext/Rakefile
+0
-2
0 additions, 2 deletions
ext/Rakefile
lib/http-parser/parser.rb
+2
-2
2 additions, 2 deletions
lib/http-parser/parser.rb
lib/http-parser/version.rb
+1
-1
1 addition, 1 deletion
lib/http-parser/version.rb
with
3 additions
and
5 deletions
ext/Rakefile
+
0
−
2
View file @
c07f6dfc
...
...
@@ -3,6 +3,4 @@ require 'ffi-compiler/compile_task'
FFI
::
Compiler
::
CompileTask
.
new
(
'http-parser-ext'
)
do
|
t
|
t
.
cflags
<<
"-Wall -Wextra -O3"
t
.
cflags
<<
"-D_GNU_SOURCE=1"
if
RbConfig
::
CONFIG
[
"host_os"
].
downcase
=~
/mingw/
t
.
cflags
<<
"-arch x86_64"
if
t
.
platform
.
mac?
t
.
ldflags
<<
"-arch x86_64"
if
t
.
platform
.
mac?
end
This diff is collapsed.
Click to expand it.
lib/http-parser/parser.rb
+
2
−
2
View file @
c07f6dfc
...
...
@@ -10,8 +10,8 @@ module HttpParser
#
# Returns a new request/response instance variable
#
def
self
.
new_instance
&
block
::
HttpParser
::
Instance
.
new
&
block
def
self
.
new_instance
(
&
block
)
::
HttpParser
::
Instance
.
new
(
&
block
)
end
...
...
This diff is collapsed.
Click to expand it.
lib/http-parser/version.rb
+
1
−
1
View file @
c07f6dfc
# frozen_string_literal: true
module
HttpParser
VERSION
=
"1.2.
1
"
VERSION
=
"1.2.
3
"
end
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment