Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
matrix:
include:
# Recent Rubies and Rails
- ruby-version: '3.3'
rails-version: '7.2'
- ruby-version: '3.2'
- ruby-version: '3.1'
- ruby-version: '3.0'
Expand Down
2 changes: 1 addition & 1 deletion lib/rspec_api_documentation/client_base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def process(method, path, params = {}, headers ={})
end

def read_request_body
input = last_request.env["rack.input"]
input = last_request.env["rack.input"]# || StringIO.new
input.rewind
input.read
end
Expand Down