diffed 0.0.1 → 0.0.2
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.
- data/README.md +15 -1
- data/diffed.gemspec +1 -1
- data/lib/diffed/version.rb +1 -1
- metadata +7 -7
data/README.md
CHANGED
@@ -18,7 +18,21 @@ Or install it yourself as:
|
|
18
18
|
|
19
19
|
## Usage
|
20
20
|
|
21
|
-
|
21
|
+
Assuming you have a unified diff output in a string called `diff_output`, you can format it like this:
|
22
|
+
|
23
|
+
```Ruby
|
24
|
+
require 'diffed'
|
25
|
+
|
26
|
+
html = Diffed::Diff.new(diff_output).as_html_table
|
27
|
+
```
|
28
|
+
|
29
|
+
By default, this will print the HTML table with inline CSS styles (e.g., `style="color: #FDD"`), for maximum compatibility when sending HTML e-mails and for inclusion in other HTML documents without having to load separate stylesheets.
|
30
|
+
|
31
|
+
If you'd like to style the HTML yourself, you can have the table render with CSS classes instead of inline styles, like so:
|
32
|
+
|
33
|
+
```Ruby
|
34
|
+
html = Diffed::Diff.new(diff_output).as_html_table(false)
|
35
|
+
```
|
22
36
|
|
23
37
|
## Contributing
|
24
38
|
|
data/diffed.gemspec
CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |gem|
|
|
11
11
|
gem.description = %q{This is a library for creating HTML from a unified diff string, } +
|
12
12
|
%q{built specifically for the diff section output by "perforce describe -du", but with an eye towards solving a more general problem.}
|
13
13
|
gem.summary = %q{This is a library for creating HTML from a unified diff string}
|
14
|
-
gem.homepage = ""
|
14
|
+
gem.homepage = "http://github.com/Jun-Dai/diffed"
|
15
15
|
|
16
16
|
gem.files = `git ls-files`.split($/)
|
17
17
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
data/lib/diffed/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: diffed
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-07-
|
12
|
+
date: 2013-07-03 00:00:00.000000000Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|
16
|
-
requirement: &
|
16
|
+
requirement: &2157081160 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: '0'
|
22
22
|
type: :development
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *2157081160
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: rspec
|
27
|
-
requirement: &
|
27
|
+
requirement: &2157080620 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ! '>='
|
@@ -32,7 +32,7 @@ dependencies:
|
|
32
32
|
version: '0'
|
33
33
|
type: :development
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *2157080620
|
36
36
|
description: This is a library for creating HTML from a unified diff string, built
|
37
37
|
specifically for the diff section output by "perforce describe -du", but with an
|
38
38
|
eye towards solving a more general problem.
|
@@ -56,7 +56,7 @@ files:
|
|
56
56
|
- testdata/diff1.classed.html
|
57
57
|
- testdata/diff1.diff
|
58
58
|
- testdata/diff1.styled.html
|
59
|
-
homepage:
|
59
|
+
homepage: http://github.com/Jun-Dai/diffed
|
60
60
|
licenses: []
|
61
61
|
post_install_message:
|
62
62
|
rdoc_options: []
|