-
Notifications
You must be signed in to change notification settings - Fork 17
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
compatability problems with version 5.0.2 #70
Comments
Yeah, same problem here |
Ok managed to fix. Trivial. Just do this in the at the top (before anything else: # remove this line with require
require 'redmine_recurring_tasks'
# and replace with those two
require 'redmine'
require_relative 'lib/redmine_recurring_tasks' at the end of init.rb (after all) require File.dirname(__FILE__) + '/lib/redmine_recurring_tasks' migrate and ready to go |
Great, I can confirm that your solution is working. |
@albenik85 it's working and loads the plugin but dispatching is still broken as deep clone fails. I will fix this today and submit the fix here. |
Looks like that works but im now missing the top menu bar option "recurring tasks" that would take you to a list of current recurring tasks, is that missing for you guys as well? |
Hello I've followed these information and looks ok also |
To complete before_filter has been deprecated in Rails 5.0 and removed in 5.1. |
Hi all,
I just updated my redmine installation to version 5.0.2 and it seems like this plugin is not compatible with it. I changed the version of deep_clonable to 3.2.0 as the used reference was not compatible with rails 6.1.6. Bundle install was succesfull but during db migration I received
"LoadError: cannot load such file -- redmine_recurring_tasks"
Was anybody able to use this plugin with 5.0.x already?
The text was updated successfully, but these errors were encountered: