-
Notifications
You must be signed in to change notification settings - Fork 27
Stringify path if Rails version > 7 #107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Calling recognize_path with a path that is a symbol will result in a: ``` NoMethodError: undefined method `include?' for an instance of Symbol ``` This results in a nil value being returned which leads to this error for the developer: ``` Graphiti::Errors::InvalidLink: Api::V2::GymResource: Cannot link to sideload :my_resource! Make sure the endpoint "/api/v2/my_resource" exists with action :index, or customize the endpoint for Api::V2::MyResource. If you do not wish to generate a link, pass link: false or set self.autolink = false. ```
@sideshowbandana I changed jobs a while back and am no longer working with Rails. If you, or anyone you know, are interested in helping maintain this project please let me know. |
@wagenet , sorry to interrupt your discussion but wanted to ask whether you mean interested in maintaining this particular gem or the whole Graphiti project? |
👍 |
@sideshowbandana Thanks for the PR. I've been the skeleton crew maintaining graphiti for the past year, but I'm still waiting on getting access to this gem, so I can't cut a new release quite yet. But I'm working on it. |
## [0.4.1](v0.4.0...v0.4.1) (2025-03-21) ### Bug Fixes * `register_parameter_parser` overiding custom config ([#109](#109)) ([a135bfa](a135bfa)) * Add basic column type conversion. ([#83](#83)) ([e5bbc92](e5bbc92)) * Add condition to check RSpec availability in install generator ([#63](#63)) ([13895d9](13895d9)) * rspec double was leaking across tests ([#105](#105)) ([b38faf2](b38faf2)) * Stringify path if Rails version > 7 ([#107](#107)) ([47d356c](47d356c))
🎉 This PR is included in version 0.4.1 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
Calling recognize_path with a path that is a symbol will result in a:
This results in a nil value being returned which leads to this error for the developer: