We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Some rails engines are using Pathname instead of String on config.eager_load_paths
config.eager_load_paths
Result is
NoMethodError: undefined method `=~' for #<Pathname> deface-1.0.2/lib/deface/railtie.rb:50:in `block (3 levels) in <class:Railtie>' deface-1.0.2/lib/deface/railtie.rb:50:in `reject!' deface-1.0.2/lib/deface/railtie.rb:50:in `block (2 levels) in <class:Railtie>' deface-1.0.2/lib/deface/railtie.rb:48:in `each' deface-1.0.2/lib/deface/railtie.rb:48:in `block in <class:Railtie>'
The text was updated successfully, but these errors were encountered:
maybe this can be useful to someone, I have made following workaround to avoid this issue rhulka@f517f34 (just converting object to string)
I use this gem as dependency in redmine plugin Redmine version 3.2.0.stable Ruby version 2.0.0-p643 (2015-02-25) [x86_64-linux] Rails version 4.2.5.1
Sorry, something went wrong.
Hi @rhulka can you do a PR with this change? Thanks!
No branches or pull requests
Some rails engines are using Pathname instead of String on
config.eager_load_paths
Result is
The text was updated successfully, but these errors were encountered: