diffed 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
@@ -0,0 +1,5 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.0.0
4
+ - 1.9.3
5
+ - 1.9.2
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Gem dependencies are specified in diffed.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Jun-Dai Bates-Kobashigawa
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,29 @@
1
+ # Diffed [![Build Status](https://secure.travis-ci.org/Jun-Dai/diffed.png)](http://travis-ci.org/Jun-Dai/diffed)
2
+
3
+ This is a library for creating HTML from a unified diff string. Currently the only use-case I am building is for retrieving diffs from `p4 describe -du 123456` and sending the HTML in an e-mail. Hopefully I can generalise the problem to add other use-cases.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'diffed'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install diffed
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require 'rspec/core/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,23 @@
1
+ # -*- encoding: utf-8 -*-
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'diffed/version'
5
+
6
+ Gem::Specification.new do |gem|
7
+ gem.name = "diffed"
8
+ gem.version = Diffed::VERSION
9
+ gem.authors = ["Jun-Dai Bates-Kobashigawa"]
10
+ gem.email = ["jundai@kurutta.net"]
11
+ gem.description = %q{This is a library for creating HTML from a unified diff string, } +
12
+ %q{built specifically for the diff section output by "perforce describe -du", but with an eye towards solving a more general problem.}
13
+ gem.summary = %q{This is a library for creating HTML from a unified diff string}
14
+ gem.homepage = ""
15
+
16
+ gem.files = `git ls-files`.split($/)
17
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
18
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
19
+ gem.require_paths = ["lib"]
20
+
21
+ gem.add_development_dependency "rake"
22
+ gem.add_development_dependency "rspec"
23
+ end
@@ -0,0 +1,156 @@
1
+ require "diffed/version"
2
+
3
+ module Diffed
4
+ class Diff
5
+ def initialize(raw_diff)
6
+ parse(raw_diff.split(/\n/))
7
+ end
8
+
9
+ def as_html_table(inline_styles = true)
10
+ html = make_table_tag(inline_styles)
11
+
12
+ @sections.each do |section|
13
+ left_line_num = section.header.line_nums[:left][:from]
14
+ right_line_num = section.header.line_nums[:right][:from]
15
+
16
+ html << make_section_header_row(section.header, inline_styles)
17
+ section.lines.each_with_index do |line, i|
18
+ html << make_tr_line(line, left_line_num, right_line_num, inline_styles)
19
+
20
+ left_line_num += 1 unless line.type == :right
21
+ right_line_num += 1 unless line.type == :left
22
+ end
23
+ end
24
+
25
+ html << "</table>"
26
+ end
27
+
28
+ private
29
+ def make_tr_line(line, left_line_num, right_line_num, inline_styles)
30
+ if inline_styles
31
+ make_styled_tr_line line, left_line_num, right_line_num
32
+ else
33
+ make_classed_tr_line line, left_line_num, right_line_num
34
+ end
35
+ end
36
+
37
+ def make_styled_tr_line(line, left_line_num, right_line_num)
38
+ case line.type
39
+ when :left
40
+ format_styled_tr_line '#FDD', nil, left_line_num, ".", line.text
41
+ when :right
42
+ format_styled_tr_line '#DFD', nil, ".", right_line_num, line.text
43
+ when :both
44
+ format_styled_tr_line nil, nil, left_line_num, right_line_num, line.text
45
+ end
46
+ end
47
+
48
+ def make_classed_tr_line(line, left_line_num, right_line_num)
49
+ case line.type
50
+ when :left
51
+ format_classed_tr_line "left", left_line_num, ".", line.text
52
+ when :right
53
+ format_classed_tr_line "right", ".", right_line_num, line.text
54
+ when :both
55
+ format_classed_tr_line "both", left_line_num, right_line_num, line.text
56
+ end
57
+ end
58
+
59
+ def make_section_header_row(header, inline_styles)
60
+ if inline_styles
61
+ format_styled_tr_line('#F0F0FF', '#888', "...", "...", header.text)
62
+ else
63
+ format_classed_tr_line('section', "...", "...", header.text)
64
+ end
65
+ end
66
+
67
+ def make_table_tag(inline_styles)
68
+ if inline_styles
69
+ table_attributes = %Q{cellpadding="5" style="border-collapse: collapse; border: 1px solid \#CCC; font-family: Consolas, courier, monospace; font-size: 13px; color: #888"}
70
+ else
71
+ table_attributes = %Q{class="coloured-diff"}
72
+ end
73
+
74
+ %Q{<table #{table_attributes}>\n}
75
+ end
76
+
77
+ def format_styled_tr_line(bg_color, text_color, left_num, right_num, text)
78
+ row_style = bg_color.nil? ? "" : %Q{ style="background-color: #{bg_color}"}
79
+ text_color = text_color || '#000'
80
+
81
+ %Q{<tr#{row_style}><td style="border-left: 1px solid \#CCC">#{left_num}</td><td style="border-left: 1px solid \#CCC">#{right_num}</td><td style="border-left: 1px solid \#CCC; border-right: 1px solid \#CCC; color: #{text_color}"><pre>#{text}</pre></td></tr>\n}
82
+ end
83
+
84
+ def format_classed_tr_line(css_class, left_num, right_num, text)
85
+ %Q{<tr class="#{css_class}"><td>#{left_num}</td><td>#{right_num}</td><td><pre>#{text}</pre></td></tr>\n}
86
+ end
87
+
88
+ def parse(lines)
89
+ @sections = []
90
+ curr_header, curr_lines = nil, []
91
+
92
+ lines.each do |line|
93
+ if DiffHeaderLine.is_header?(line)
94
+ unless curr_header.nil?
95
+ @sections << DiffSection.new(curr_header, curr_lines)
96
+ end
97
+
98
+ curr_header, curr_lines = DiffHeaderLine.new(line), []
99
+ elsif line =~ /\/
100
+ curr_lines.last.no_new_line = true
101
+ else
102
+ curr_lines << DiffLine.new(line)
103
+ end
104
+ end
105
+ end
106
+ end
107
+
108
+ class DiffSection
109
+ attr_reader :header, :lines
110
+
111
+ def initialize(header_line, lines)
112
+ @header, @lines = header_line, lines
113
+ end
114
+ end
115
+
116
+ class DiffLine
117
+ attr_reader :type, :text, :no_new_line
118
+
119
+ def initialize(line)
120
+ if line.start_with? "-"
121
+ @type = :left
122
+ elsif line.start_with? "+"
123
+ @type = :right
124
+ elsif line.start_with? " "
125
+ @type = :both
126
+ else
127
+ raise "Unparseable line: #{line}"
128
+ end
129
+
130
+ @text = line
131
+ @no_new_line = false
132
+ end
133
+
134
+ def no_new_line= bool
135
+ # mutability like this kind of sucks, but this one's a pain to avoid.
136
+ @no_new_line = true
137
+ end
138
+ end
139
+
140
+ class DiffHeaderLine
141
+ attr_reader :line_nums, :text
142
+
143
+ def initialize(line)
144
+ if line =~ /^@@ -(\d+),(\d+) \+(\d+),(\d+) @@/
145
+ @text = line
146
+ @line_nums = {left: {from: $1.to_i, to: $2.to_i}, right: {from: $1.to_i, to: $2.to_i}}
147
+ else
148
+ raise "Unparseable header line: #{line}"
149
+ end
150
+ end
151
+
152
+ def self.is_header?(line)
153
+ line.start_with? "@@ "
154
+ end
155
+ end
156
+ end
@@ -0,0 +1,3 @@
1
+ module Diffed
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,15 @@
1
+ require 'spec_helper'
2
+
3
+ describe "Diffed::Diff.as_html_table" do
4
+ it "produces an html table representation of a diff, with CSS styles inline" do
5
+ diff = Diffed::Diff.new(File.read("testdata/diff1.diff"))
6
+ output = diff.as_html_table
7
+ output.strip == File.read("testdata/diff1.styled.html").strip
8
+ end
9
+
10
+ it "produces an html table representation of a diff, with CSS classes" do
11
+ diff = Diffed::Diff.new(File.read("testdata/diff1.diff"))
12
+ output = diff.as_html_table(false)
13
+ output.strip == File.read("testdata/diff1.classed.html").strip
14
+ end
15
+ end
@@ -0,0 +1,2 @@
1
+ require 'bundler/setup'
2
+ require 'diffed'
@@ -0,0 +1,52 @@
1
+ <table class="coloured-diff">
2
+ <tr class="section"><td>...</td><td>...</td><td><pre>@@ -1,22 +1,22 @@</pre></td></tr>
3
+ <tr class="both"><td>1</td><td>1</td><td><pre> #</pre></td></tr>
4
+ <tr class="both"><td>2</td><td>2</td><td><pre> # Represent a single piece of a diff.</pre></td></tr>
5
+ <tr class="left"><td>3</td><td>.</td><td><pre>-# </pre></td></tr>
6
+ <tr class="right"><td>.</td><td>3</td><td><pre>+#</pre></td></tr>
7
+ <tr class="both"><td>4</td><td>4</td><td><pre> class PrettyDiff::Chunk #:nodoc:</pre></td></tr>
8
+ <tr class="both"><td>5</td><td>5</td><td><pre> attr_reader :diff, :meta_info, :input, :lines</pre></td></tr>
9
+ <tr class="left"><td>6</td><td>.</td><td><pre>- </pre></td></tr>
10
+ <tr class="right"><td>.</td><td>6</td><td><pre>+</pre></td></tr>
11
+ <tr class="both"><td>7</td><td>7</td><td><pre> def initialize(diff, meta_info, input)</pre></td></tr>
12
+ <tr class="both"><td>8</td><td>8</td><td><pre> @diff = diff</pre></td></tr>
13
+ <tr class="both"><td>9</td><td>9</td><td><pre> @meta_info = meta_info</pre></td></tr>
14
+ <tr class="both"><td>10</td><td>10</td><td><pre> @input = input</pre></td></tr>
15
+ <tr class="both"><td>11</td><td>11</td><td><pre> end</pre></td></tr>
16
+ <tr class="left"><td>12</td><td>.</td><td><pre>- </pre></td></tr>
17
+ <tr class="right"><td>.</td><td>12</td><td><pre>+</pre></td></tr>
18
+ <tr class="both"><td>13</td><td>13</td><td><pre> # Generate HTML presentation for a Chunk. Return a string.</pre></td></tr>
19
+ <tr class="both"><td>14</td><td>14</td><td><pre> def to_html</pre></td></tr>
20
+ <tr class="both"><td>15</td><td>15</td><td><pre> # We have to find lines before we can call line numbers methods.</pre></td></tr>
21
+ <tr class="both"><td>16</td><td>16</td><td><pre> find_lines!</pre></td></tr>
22
+ <tr class="both"><td>17</td><td>17</td><td><pre> generator.generate</pre></td></tr>
23
+ <tr class="both"><td>18</td><td>18</td><td><pre> end</pre></td></tr>
24
+ <tr class="left"><td>19</td><td>.</td><td><pre>- </pre></td></tr>
25
+ <tr class="right"><td>.</td><td>19</td><td><pre>+</pre></td></tr>
26
+ <tr class="both"><td>20</td><td>20</td><td><pre> # Return LineNumbers object that represents two columns of numbers</pre></td></tr>
27
+ <tr class="both"><td>21</td><td>21</td><td><pre> # that will be displayed on the left of the HTML presentation.</pre></td></tr>
28
+ <tr class="both"><td>22</td><td>22</td><td><pre> #</pre></td></tr>
29
+ <tr class="section"><td>...</td><td>...</td><td><pre>@@ -25,7 +25,7 @@ class PrettyDiff::Chunk #:nodoc:</pre></td></tr>
30
+ <tr class="both"><td>25</td><td>25</td><td><pre> def line_numbers</pre></td></tr>
31
+ <tr class="both"><td>26</td><td>26</td><td><pre> @_line_numbers ||= PrettyDiff::LineNumbers.new(diff, meta_info)</pre></td></tr>
32
+ <tr class="both"><td>27</td><td>27</td><td><pre> end</pre></td></tr>
33
+ <tr class="left"><td>28</td><td>.</td><td><pre>- </pre></td></tr>
34
+ <tr class="right"><td>.</td><td>28</td><td><pre>+</pre></td></tr>
35
+ <tr class="both"><td>29</td><td>29</td><td><pre> private</pre></td></tr>
36
+ <tr class="both"><td>30</td><td>30</td><td><pre> </pre></td></tr>
37
+ <tr class="both"><td>31</td><td>31</td><td><pre> def generator</pre></td></tr>
38
+ <tr class="section"><td>...</td><td>...</td><td><pre>@@ -35,9 +35,10 @@ private</pre></td></tr>
39
+ <tr class="both"><td>35</td><td>35</td><td><pre> # Parse the input searching for lines. Initialize Line object for every line.</pre></td></tr>
40
+ <tr class="both"><td>36</td><td>36</td><td><pre> # Return an array of Line objects.</pre></td></tr>
41
+ <tr class="both"><td>37</td><td>37</td><td><pre> def find_lines!</pre></td></tr>
42
+ <tr class="left"><td>38</td><td>.</td><td><pre>- returning(@lines = []) do</pre></td></tr>
43
+ <tr class="left"><td>39</td><td>.</td><td><pre>- input.split(/\r?\n/).each_with_index do |line_str, idx|</pre></td></tr>
44
+ <tr class="left"><td>40</td><td>.</td><td><pre>- line = PrettyDiff::Line.new(diff, line_str, :number => idx)</pre></td></tr>
45
+ <tr class="right"><td>.</td><td>38</td><td><pre>+ @lines = []</pre></td></tr>
46
+ <tr class="right"><td>.</td><td>39</td><td><pre>+ @lines.tap do</pre></td></tr>
47
+ <tr class="right"><td>.</td><td>40</td><td><pre>+ input.split(/\r?\n/).each do |line_str|</pre></td></tr>
48
+ <tr class="right"><td>.</td><td>41</td><td><pre>+ line = PrettyDiff::Line.new(diff, line_str)</pre></td></tr>
49
+ <tr class="both"><td>41</td><td>42</td><td><pre> next if line.ignore?</pre></td></tr>
50
+ <tr class="both"><td>42</td><td>43</td><td><pre> @lines << line</pre></td></tr>
51
+ <tr class="both"><td>43</td><td>44</td><td><pre> line_numbers.act_on_line(line)</pre></td></tr>
52
+ </table>
@@ -0,0 +1,57 @@
1
+ @@ -1,22 +1,22 @@
2
+ #
3
+ # Represent a single piece of a diff.
4
+ -#
5
+ +#
6
+ class PrettyDiff::Chunk #:nodoc:
7
+ attr_reader :diff, :meta_info, :input, :lines
8
+ -
9
+ +
10
+ def initialize(diff, meta_info, input)
11
+ @diff = diff
12
+ @meta_info = meta_info
13
+ @input = input
14
+ end
15
+ -
16
+ +
17
+ # Generate HTML presentation for a Chunk. Return a string.
18
+ def to_html
19
+ # We have to find lines before we can call line numbers methods.
20
+ find_lines!
21
+ generator.generate
22
+ end
23
+ -
24
+ +
25
+ # Return LineNumbers object that represents two columns of numbers
26
+ # that will be displayed on the left of the HTML presentation.
27
+ #
28
+ @@ -25,7 +25,7 @@ class PrettyDiff::Chunk #:nodoc:
29
+ def line_numbers
30
+ @_line_numbers ||= PrettyDiff::LineNumbers.new(diff, meta_info)
31
+ end
32
+ -
33
+ +
34
+ private
35
+
36
+ def generator
37
+ @@ -35,9 +35,10 @@ private
38
+ # Parse the input searching for lines. Initialize Line object for every line.
39
+ # Return an array of Line objects.
40
+ def find_lines!
41
+ - returning(@lines = []) do
42
+ - input.split(/\r?\n/).each_with_index do |line_str, idx|
43
+ - line = PrettyDiff::Line.new(diff, line_str, :number => idx)
44
+ + @lines = []
45
+ + @lines.tap do
46
+ + input.split(/\r?\n/).each do |line_str|
47
+ + line = PrettyDiff::Line.new(diff, line_str)
48
+ next if line.ignore?
49
+ @lines << line
50
+ line_numbers.act_on_line(line)
51
+ @@ -45,4 +46,4 @@ private
52
+ end
53
+ end
54
+
55
+ -end
56
+
57
+ +end
@@ -0,0 +1,52 @@
1
+ <table cellpadding="5" style="border-collapse: collapse; border: 1px solid #CCC; font-family: Consolas, courier, monospace; font-size: 13px; color: #888">
2
+ <tr style="background-color: #F0F0FF"><td style="border-left: 1px solid #CCC">...</td><td style="border-left: 1px solid #CCC">...</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #888"><pre>@@ -1,22 +1,22 @@</pre></td></tr>
3
+ <tr><td style="border-left: 1px solid #CCC">1</td><td style="border-left: 1px solid #CCC">1</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> #</pre></td></tr>
4
+ <tr><td style="border-left: 1px solid #CCC">2</td><td style="border-left: 1px solid #CCC">2</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> # Represent a single piece of a diff.</pre></td></tr>
5
+ <tr style="background-color: #FDD"><td style="border-left: 1px solid #CCC">3</td><td style="border-left: 1px solid #CCC">.</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre>-# </pre></td></tr>
6
+ <tr style="background-color: #DFD"><td style="border-left: 1px solid #CCC">.</td><td style="border-left: 1px solid #CCC">3</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre>+#</pre></td></tr>
7
+ <tr><td style="border-left: 1px solid #CCC">4</td><td style="border-left: 1px solid #CCC">4</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> class PrettyDiff::Chunk #:nodoc:</pre></td></tr>
8
+ <tr><td style="border-left: 1px solid #CCC">5</td><td style="border-left: 1px solid #CCC">5</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> attr_reader :diff, :meta_info, :input, :lines</pre></td></tr>
9
+ <tr style="background-color: #FDD"><td style="border-left: 1px solid #CCC">6</td><td style="border-left: 1px solid #CCC">.</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre>- </pre></td></tr>
10
+ <tr style="background-color: #DFD"><td style="border-left: 1px solid #CCC">.</td><td style="border-left: 1px solid #CCC">6</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre>+</pre></td></tr>
11
+ <tr><td style="border-left: 1px solid #CCC">7</td><td style="border-left: 1px solid #CCC">7</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> def initialize(diff, meta_info, input)</pre></td></tr>
12
+ <tr><td style="border-left: 1px solid #CCC">8</td><td style="border-left: 1px solid #CCC">8</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> @diff = diff</pre></td></tr>
13
+ <tr><td style="border-left: 1px solid #CCC">9</td><td style="border-left: 1px solid #CCC">9</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> @meta_info = meta_info</pre></td></tr>
14
+ <tr><td style="border-left: 1px solid #CCC">10</td><td style="border-left: 1px solid #CCC">10</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> @input = input</pre></td></tr>
15
+ <tr><td style="border-left: 1px solid #CCC">11</td><td style="border-left: 1px solid #CCC">11</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> end</pre></td></tr>
16
+ <tr style="background-color: #FDD"><td style="border-left: 1px solid #CCC">12</td><td style="border-left: 1px solid #CCC">.</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre>- </pre></td></tr>
17
+ <tr style="background-color: #DFD"><td style="border-left: 1px solid #CCC">.</td><td style="border-left: 1px solid #CCC">12</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre>+</pre></td></tr>
18
+ <tr><td style="border-left: 1px solid #CCC">13</td><td style="border-left: 1px solid #CCC">13</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> # Generate HTML presentation for a Chunk. Return a string.</pre></td></tr>
19
+ <tr><td style="border-left: 1px solid #CCC">14</td><td style="border-left: 1px solid #CCC">14</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> def to_html</pre></td></tr>
20
+ <tr><td style="border-left: 1px solid #CCC">15</td><td style="border-left: 1px solid #CCC">15</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> # We have to find lines before we can call line numbers methods.</pre></td></tr>
21
+ <tr><td style="border-left: 1px solid #CCC">16</td><td style="border-left: 1px solid #CCC">16</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> find_lines!</pre></td></tr>
22
+ <tr><td style="border-left: 1px solid #CCC">17</td><td style="border-left: 1px solid #CCC">17</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> generator.generate</pre></td></tr>
23
+ <tr><td style="border-left: 1px solid #CCC">18</td><td style="border-left: 1px solid #CCC">18</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> end</pre></td></tr>
24
+ <tr style="background-color: #FDD"><td style="border-left: 1px solid #CCC">19</td><td style="border-left: 1px solid #CCC">.</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre>- </pre></td></tr>
25
+ <tr style="background-color: #DFD"><td style="border-left: 1px solid #CCC">.</td><td style="border-left: 1px solid #CCC">19</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre>+</pre></td></tr>
26
+ <tr><td style="border-left: 1px solid #CCC">20</td><td style="border-left: 1px solid #CCC">20</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> # Return LineNumbers object that represents two columns of numbers</pre></td></tr>
27
+ <tr><td style="border-left: 1px solid #CCC">21</td><td style="border-left: 1px solid #CCC">21</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> # that will be displayed on the left of the HTML presentation.</pre></td></tr>
28
+ <tr><td style="border-left: 1px solid #CCC">22</td><td style="border-left: 1px solid #CCC">22</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> #</pre></td></tr>
29
+ <tr style="background-color: #F0F0FF"><td style="border-left: 1px solid #CCC">...</td><td style="border-left: 1px solid #CCC">...</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #888"><pre>@@ -25,7 +25,7 @@ class PrettyDiff::Chunk #:nodoc:</pre></td></tr>
30
+ <tr><td style="border-left: 1px solid #CCC">25</td><td style="border-left: 1px solid #CCC">25</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> def line_numbers</pre></td></tr>
31
+ <tr><td style="border-left: 1px solid #CCC">26</td><td style="border-left: 1px solid #CCC">26</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> @_line_numbers ||= PrettyDiff::LineNumbers.new(diff, meta_info)</pre></td></tr>
32
+ <tr><td style="border-left: 1px solid #CCC">27</td><td style="border-left: 1px solid #CCC">27</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> end</pre></td></tr>
33
+ <tr style="background-color: #FDD"><td style="border-left: 1px solid #CCC">28</td><td style="border-left: 1px solid #CCC">.</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre>- </pre></td></tr>
34
+ <tr style="background-color: #DFD"><td style="border-left: 1px solid #CCC">.</td><td style="border-left: 1px solid #CCC">28</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre>+</pre></td></tr>
35
+ <tr><td style="border-left: 1px solid #CCC">29</td><td style="border-left: 1px solid #CCC">29</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> private</pre></td></tr>
36
+ <tr><td style="border-left: 1px solid #CCC">30</td><td style="border-left: 1px solid #CCC">30</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> </pre></td></tr>
37
+ <tr><td style="border-left: 1px solid #CCC">31</td><td style="border-left: 1px solid #CCC">31</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> def generator</pre></td></tr>
38
+ <tr style="background-color: #F0F0FF"><td style="border-left: 1px solid #CCC">...</td><td style="border-left: 1px solid #CCC">...</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #888"><pre>@@ -35,9 +35,10 @@ private</pre></td></tr>
39
+ <tr><td style="border-left: 1px solid #CCC">35</td><td style="border-left: 1px solid #CCC">35</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> # Parse the input searching for lines. Initialize Line object for every line.</pre></td></tr>
40
+ <tr><td style="border-left: 1px solid #CCC">36</td><td style="border-left: 1px solid #CCC">36</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> # Return an array of Line objects.</pre></td></tr>
41
+ <tr><td style="border-left: 1px solid #CCC">37</td><td style="border-left: 1px solid #CCC">37</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> def find_lines!</pre></td></tr>
42
+ <tr style="background-color: #FDD"><td style="border-left: 1px solid #CCC">38</td><td style="border-left: 1px solid #CCC">.</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre>- returning(@lines = []) do</pre></td></tr>
43
+ <tr style="background-color: #FDD"><td style="border-left: 1px solid #CCC">39</td><td style="border-left: 1px solid #CCC">.</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre>- input.split(/\r?\n/).each_with_index do |line_str, idx|</pre></td></tr>
44
+ <tr style="background-color: #FDD"><td style="border-left: 1px solid #CCC">40</td><td style="border-left: 1px solid #CCC">.</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre>- line = PrettyDiff::Line.new(diff, line_str, :number => idx)</pre></td></tr>
45
+ <tr style="background-color: #DFD"><td style="border-left: 1px solid #CCC">.</td><td style="border-left: 1px solid #CCC">38</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre>+ @lines = []</pre></td></tr>
46
+ <tr style="background-color: #DFD"><td style="border-left: 1px solid #CCC">.</td><td style="border-left: 1px solid #CCC">39</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre>+ @lines.tap do</pre></td></tr>
47
+ <tr style="background-color: #DFD"><td style="border-left: 1px solid #CCC">.</td><td style="border-left: 1px solid #CCC">40</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre>+ input.split(/\r?\n/).each do |line_str|</pre></td></tr>
48
+ <tr style="background-color: #DFD"><td style="border-left: 1px solid #CCC">.</td><td style="border-left: 1px solid #CCC">41</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre>+ line = PrettyDiff::Line.new(diff, line_str)</pre></td></tr>
49
+ <tr><td style="border-left: 1px solid #CCC">41</td><td style="border-left: 1px solid #CCC">42</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> next if line.ignore?</pre></td></tr>
50
+ <tr><td style="border-left: 1px solid #CCC">42</td><td style="border-left: 1px solid #CCC">43</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> @lines << line</pre></td></tr>
51
+ <tr><td style="border-left: 1px solid #CCC">43</td><td style="border-left: 1px solid #CCC">44</td><td style="border-left: 1px solid #CCC; border-right: 1px solid #CCC; color: #000"><pre> line_numbers.act_on_line(line)</pre></td></tr>
52
+ </table>
metadata ADDED
@@ -0,0 +1,85 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: diffed
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Jun-Dai Bates-Kobashigawa
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-07-02 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rake
16
+ requirement: &2161353880 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: *2161353880
25
+ - !ruby/object:Gem::Dependency
26
+ name: rspec
27
+ requirement: &2161353340 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: *2161353340
36
+ description: This is a library for creating HTML from a unified diff string, built
37
+ specifically for the diff section output by "perforce describe -du", but with an
38
+ eye towards solving a more general problem.
39
+ email:
40
+ - jundai@kurutta.net
41
+ executables: []
42
+ extensions: []
43
+ extra_rdoc_files: []
44
+ files:
45
+ - .gitignore
46
+ - .travis.yml
47
+ - Gemfile
48
+ - LICENSE.txt
49
+ - README.md
50
+ - Rakefile
51
+ - diffed.gemspec
52
+ - lib/diffed.rb
53
+ - lib/diffed/version.rb
54
+ - spec/diffed_spec.rb
55
+ - spec/spec_helper.rb
56
+ - testdata/diff1.classed.html
57
+ - testdata/diff1.diff
58
+ - testdata/diff1.styled.html
59
+ homepage: ''
60
+ licenses: []
61
+ post_install_message:
62
+ rdoc_options: []
63
+ require_paths:
64
+ - lib
65
+ required_ruby_version: !ruby/object:Gem::Requirement
66
+ none: false
67
+ requirements:
68
+ - - ! '>='
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ required_rubygems_version: !ruby/object:Gem::Requirement
72
+ none: false
73
+ requirements:
74
+ - - ! '>='
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
77
+ requirements: []
78
+ rubyforge_project:
79
+ rubygems_version: 1.8.5
80
+ signing_key:
81
+ specification_version: 3
82
+ summary: This is a library for creating HTML from a unified diff string
83
+ test_files:
84
+ - spec/diffed_spec.rb
85
+ - spec/spec_helper.rb