Tab Loid
Tab Loid
Run migrations from redmine directory, not from plugin directory.

Sorry but this my first experience with reform and I don't know how that form would feel in reform 1.x. But why I can't do that? I getting tasks with...
Sorry but stack level is still too deep=) https://github.com/Tab10id/reform_test_app updated
Idea was about form with not-limited count of levels. I'll try to prepare app with that tests today. Hope that will work fine in future versions of reform. Anyway, thanks...
From chat: I think you have same problem as in my solution. For example: If you override default rule or matcher for fallback case contract checks will not called because...
in `init.rb` need replace ```ruby Dir::foreach(File.join(File.dirname(__FILE__), 'lib')) do |file| next unless /\.rb$/ =~ file require file end ``` to ```ruby Dir::foreach(File.join(File.dirname(__FILE__), 'lib')) do |file| next unless /\.rb$/ =~ file require_dependency...
Also there a problem with `WikiExtensionsFormatterPatch` and `WikiExtensions::Emoticons`. Should be moved to another directory and required by `require` for normal code reloading in development environment. https://stackoverflow.com/a/29710188/3704748
Problem there: ``` Ruby class Deletion < Truncation if defined?(ActiveRecord::ConnectionAdapters::Mysql2Adapter) include SelectiveTruncation end ... end ```