flip
flip copied to clipboard
Ruby 2.3 and Rails 4.2.5 features_url return wrong URL
With ruby 2.3 and Rails 4.2.5 features_url in StrategiesController return wrong url. In development environment, it return http://localhost:3000/assets?controller=flip%2Ffeatures
If you use it as a namespaced resource just mount the engine like this:
mount Flip::Engine => '/tools/features', as: 'features'
then features_url
will work fine
Thanks! It looks great. I will give a try when I have chain.
It work for me. Thank you, @rubyconvict!