Eric Oestrich
Eric Oestrich
With the new version (4.7.0) does this still happen. It has PR #245 merged.
The problem isn't automatic method generation, it's RAD seeing a method that matches the parameter name and calling it: [dsl/endpoint.rb](https://github.com/zipmark/rspec_api_documentation/blob/master/lib/rspec_api_documentation/dsl/endpoint.rb#L157-L160). I don't have a good solution for this outside of...
`subject` is a build in rspec function, so my guess is something deep in rspec isn't happy with a `let` for it. @jwg2s Can you try: ```ruby parameter :subject, "Description",...
I like this a lot. :+1:
Hi @frankliu81 `request` is not available in RAD specs. The only way to modify headers is through the `header` DSL. What does `request.headers` have in your controller? From what I...