Skip to content

Conversation

@sdsd08013
Copy link

  • problem

If passed Optional scope path like (/:locale)/users(.:format) to Route constructor.

Route instance member @path set value "".

because:
route.path.spec.to_s.split('(') => ["", "/:locale)/users", ".:format)"]

  • change

@path = route.path.spec.to_s.sub(/\(.:format\)/, "").delete('(', '').delete(')', '')

this return right path /:locale)/users

plz check it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants