-
Notifications
You must be signed in to change notification settings - Fork 355
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
Rails 5 Support #269
Rails 5 Support #269
Conversation
this circumvents an issue with route helpers not being available
Thanks, I was looking for this! For those who want to use it, it can be used by adding following line to your gemfile;
|
No, your branch was sufficient, thanks! |
Although, if the test/dummy application gets updated to rails 5, my updated specs could come in handy |
Turns out I was too quick with saying all was fine, because I didn't update my Gemfile yet, and it was still using a GitHub source. When I use the bundled gem again, my tests produce a lot of errors, although I'm not sure what's causing them exactly, so will have to investigate. |
With Rails 5 around the corner, I've removed deprecated functions, and made use of new functionality like
Module#prepend
.EDIT
Oh well, it seems I overlooked some other PR's. (namely #267 #248)