diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2021-10-27 20:42:10 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2021-10-27 20:42:10 +0000 |
commit | 243c11026525a76d6838fcf165e3864ada9a722b (patch) | |
tree | 582ef4fd5be42502dc266a4ffb83190bd5246c67 /app/models | |
parent | 0056c128624fdadd0fff82aef6e6a96c6ef817b9 (diff) | |
download | redmine-243c11026525a76d6838fcf165e3864ada9a722b.tar.gz redmine-243c11026525a76d6838fcf165e3864ada9a722b.zip |
Move @lib/diff.rb@ to @lib/redmine/string_array_diff@ and extract @Diffable@ class to its own file (#29914, #32938).
git-svn-id: http://svn.redmine.org/redmine/trunk@21262 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/wiki_page.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/wiki_page.rb b/app/models/wiki_page.rb index 2e76e076e..5040d26fe 100644 --- a/app/models/wiki_page.rb +++ b/app/models/wiki_page.rb @@ -17,7 +17,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -require 'diff' +require 'redmine/string_array_diff/diff' class WikiPage < ActiveRecord::Base include Redmine::SafeAttributes |