xhtmldiff 1.0.0
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 +25 -0
- data/bin/xhtmldiff +27 -0
- data/examples/a.html +10 -0
- data/examples/b.html +12 -0
- data/lib/xhtmldiff.rb +134 -0
- data/setup.rb +1312 -0
- data/xhtmldiff.gemspec +18 -0
- metadata +59 -0
data/xhtmldiff.gemspec
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
Gem::Specification.new do |s|
|
2
|
+
s.name = %q{xhtmldiff}
|
3
|
+
s.version = "1.0.0"
|
4
|
+
s.date = Time.now
|
5
|
+
s.summary = %q{XHTMLDiff is a tool and library for taking valid XHTML documents as input, and generating redlined valid XHTML text highlighting the changes between them as output.}
|
6
|
+
s.author = %q{Aredridel}
|
7
|
+
s.email = %q{aredridel@nbtsc.org}
|
8
|
+
s.homepage = %q{http://theinternetco.net/projects/ruby/xhtmldiff}
|
9
|
+
s.has_rdoc = true
|
10
|
+
s.required_ruby_version = Gem::Version::Requirement.new(">= 1.8.0")
|
11
|
+
s.add_dependency('diff-lcs', '>= 1.1.1')
|
12
|
+
s.files = Dir.glob('**/*').delete_if {|item| item.include?('.svn')}
|
13
|
+
s.require_path = %q{lib}
|
14
|
+
s.rdoc_options = ["--main", "README"]
|
15
|
+
s.extra_rdoc_files = ["README"]
|
16
|
+
s.executable = %q{xhtmldiff}
|
17
|
+
s.bindir = %q{bin}
|
18
|
+
end
|
metadata
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: "0.8"
|
3
|
+
specification_version: 1
|
4
|
+
name: xhtmldiff
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 1.0.0
|
7
|
+
date: 2004-10-23
|
8
|
+
summary: "XHTMLDiff is a tool and library for taking valid XHTML documents as input, and generating redlined valid XHTML text highlighting the changes between them as output."
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
author: Aredridel
|
12
|
+
email: aredridel@nbtsc.org
|
13
|
+
homepage: http://theinternetco.net/projects/ruby/xhtmldiff
|
14
|
+
rubyforge_project:
|
15
|
+
description:
|
16
|
+
autorequire:
|
17
|
+
default_executable:
|
18
|
+
bindir: bin
|
19
|
+
has_rdoc: true
|
20
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
21
|
+
requirements:
|
22
|
+
-
|
23
|
+
- ">="
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: 1.8.0
|
26
|
+
version:
|
27
|
+
platform: ruby
|
28
|
+
files:
|
29
|
+
- examples
|
30
|
+
- lib
|
31
|
+
- bin
|
32
|
+
- setup.rb
|
33
|
+
- README
|
34
|
+
- xhtmldiff.gemspec
|
35
|
+
- examples/b.html
|
36
|
+
- examples/a.html
|
37
|
+
- lib/xhtmldiff.rb
|
38
|
+
- bin/xhtmldiff
|
39
|
+
test_files: []
|
40
|
+
rdoc_options:
|
41
|
+
- "--main"
|
42
|
+
- README
|
43
|
+
extra_rdoc_files:
|
44
|
+
- README
|
45
|
+
executables:
|
46
|
+
- xhtmldiff
|
47
|
+
extensions: []
|
48
|
+
requirements: []
|
49
|
+
dependencies:
|
50
|
+
- !ruby/object:Gem::Dependency
|
51
|
+
name: diff-lcs
|
52
|
+
version_requirement:
|
53
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
54
|
+
requirements:
|
55
|
+
-
|
56
|
+
- ">="
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
version: 1.1.1
|
59
|
+
version:
|