Redmine 4.1.7
This commit is contained in:
parent
55458d3479
commit
3ca3c37487
103 changed files with 2426 additions and 431 deletions
|
@ -213,3 +213,17 @@ module ActionView
|
|||
end
|
||||
end
|
||||
end
|
||||
|
||||
# https://github.com/rack/rack/pull/1703
|
||||
# TODO: remove this when Rack is updated to 3.0.0
|
||||
require 'rack'
|
||||
module Rack
|
||||
class RewindableInput
|
||||
unless method_defined?(:size)
|
||||
def size
|
||||
make_rewindable unless @rewindable_io
|
||||
@rewindable_io.size
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue