Skip to content

Support for rack 3.1.0 #548

@TeamNautilus

Description

@TeamNautilus

Hello Zipmark,

we are Team Nautilus, and we would like to report an issue related to the rspec_api_documentation gem.

We are using Ruby 3.1.1 with the following Gemfile:

gem 'rails', '7.1.3'
gem 'rack', '3.0.11'
gem 'rspec_api_documentation', git: 'https://github.com/zipmark/rspec_api_documentation.git'

GIT
  remote: https://github.com/zipmark/rspec_api_documentation.git
  revision: d32bf17932a379052e8bb7540fc29ce7e72712ae
  specs:
    rspec_api_documentation (6.1.0)

and when we run the command rake docs:generate, everything works fine.

However, after updating the rack gem to version 3.1.0, we encounter the following error:

NoMethodError: 
    undefined method 'rewind' for nil:NilClass
        input.rewind

at rspec_api_documentation-d32bf17932a3/lib/rspec_api_documentation/client_base.rb#48.

Can you help us resolve this issue?

Thank you.

Activity

johanvdlaak

johanvdlaak commented on Aug 12, 2024

@johanvdlaak

I'm running into this as well with rspec_api_documentation 6.1.0, ruby 3.2.5, rails 7.1.3.4 and rack 3.1.7.

ERCubed

ERCubed commented on Aug 26, 2024

@ERCubed

In rack 3.0.11 last_request.env["rack.input"] has a value. After that it does not.

https://github.com/rack/rack/blob/main/UPGRADE-GUIDE.md#rackinput-is-no-longer-required-to-be-rewindable

Switching forks fixed the problem:
gem 'rspec_api_documentation', github: 'SchoolKeep/rspec_api_documentation', ref: '13df1ac'

TeamNautilus

TeamNautilus commented on Aug 28, 2024

@TeamNautilus
Author

Switching forks fixed the problem: gem 'rspec_api_documentation', github: 'SchoolKeep/rspec_api_documentation', ref: '13df1ac'

It works also for us, thank you!

added a commit that references this issue on Nov 13, 2024
akostadinov

akostadinov commented on Feb 13, 2025

@akostadinov

Can be fixed by #541 it seems.

linked a pull request that will close this issue on Mar 7, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      Participants

      @akostadinov@ERCubed@TeamNautilus@johanvdlaak

      Issue actions

        Support for rack 3.1.0 · Issue #548 · zipmark/rspec_api_documentation