Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ruby-client: Don't encode slashes if strict-spec false (#3204)
URL-special characters such as /,?,% should be encoded when inside path parameters. I changed the Ruby-client to do so. OpenAPITools/openapi-generator#3039 Unfortunately, some projects relied on slashes not being expanded within path paramters: OpenAPITools/openapi-generator#3119 With this commit, these projects can now pass `--strict-spec false` to not have / converted to %2F. strict spec not specified: / -> %2F --strict-spec true: / -> %2F --strict-spec false: / -> /
- Loading branch information