Skip to content
Snippets Groups Projects
Commit ea603e4e authored by Jean-Philippe Lang's avatar Jean-Philippe Lang
Browse files

Use options hash in UnifiedDiff.new

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2110 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 0ea3d150
No related merge requests found
......@@ -18,14 +18,16 @@
module Redmine
# Class used to parse unified diffs
class UnifiedDiff < Array
def initialize(diff, type="inline")
diff_table = DiffTable.new type
def initialize(diff, options={})
diff_type = options[:type] || 'inline'
diff_table = DiffTable.new(diff_type)
diff.each do |line|
if line =~ /^(---|\+\+\+) (.*)$/
self << diff_table if diff_table.length > 1
diff_table = DiffTable.new type
diff_table = DiffTable.new(diff_type)
end
a = diff_table.add_line line
diff_table.add_line line
end
self << diff_table unless diff_table.empty?
self
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment