jxmlvalidator 0.1.1 → 0.1.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/jxmlvalidator.gemspec +3 -3
- data/spec/jxml/validator_spec.rb +4 -0
- metadata +27 -10
data/jxmlvalidator.gemspec
CHANGED
|
@@ -7,15 +7,15 @@ Gem::Specification.new do |spec|
|
|
|
7
7
|
spec.email = "flazzarino@gmail.com"
|
|
8
8
|
spec.homepage = 'http://github.com/flazz/jxmlvalidator'
|
|
9
9
|
spec.authors = ["Francesco Lazzarino"]
|
|
10
|
-
|
|
10
|
+
|
|
11
11
|
spec.files = [
|
|
12
12
|
"README.md",
|
|
13
13
|
"ext/xmlvalidator.jar",
|
|
14
|
-
"jxmlvalidator.gemspec",
|
|
14
|
+
"jxmlvalidator.gemspec",
|
|
15
15
|
"lib/jxml/validator.rb",
|
|
16
16
|
"spec/jxml/validator_spec.rb"
|
|
17
17
|
]
|
|
18
18
|
|
|
19
|
-
spec.add_dependency 'rjb', '~> 1.2
|
|
19
|
+
spec.add_dependency 'rjb', '~> 1.2'
|
|
20
20
|
spec.requirements << 'a Java environment with JAXP'
|
|
21
21
|
end
|
data/spec/jxml/validator_spec.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jxmlvalidator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
4
|
+
hash: 31
|
|
5
|
+
prerelease: false
|
|
6
|
+
segments:
|
|
7
|
+
- 0
|
|
8
|
+
- 1
|
|
9
|
+
- 2
|
|
10
|
+
version: 0.1.2
|
|
5
11
|
platform: ruby
|
|
6
12
|
authors:
|
|
7
13
|
- Francesco Lazzarino
|
|
@@ -9,19 +15,24 @@ autorequire:
|
|
|
9
15
|
bindir: bin
|
|
10
16
|
cert_chain: []
|
|
11
17
|
|
|
12
|
-
date: 2010-
|
|
18
|
+
date: 2010-10-25 00:00:00 -04:00
|
|
13
19
|
default_executable:
|
|
14
20
|
dependencies:
|
|
15
21
|
- !ruby/object:Gem::Dependency
|
|
16
22
|
name: rjb
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
23
|
+
prerelease: false
|
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
20
26
|
requirements:
|
|
21
27
|
- - ~>
|
|
22
28
|
- !ruby/object:Gem::Version
|
|
23
|
-
|
|
24
|
-
|
|
29
|
+
hash: 11
|
|
30
|
+
segments:
|
|
31
|
+
- 1
|
|
32
|
+
- 2
|
|
33
|
+
version: "1.2"
|
|
34
|
+
type: :runtime
|
|
35
|
+
version_requirements: *id001
|
|
25
36
|
description:
|
|
26
37
|
email: flazzarino@gmail.com
|
|
27
38
|
executables: []
|
|
@@ -46,21 +57,27 @@ rdoc_options: []
|
|
|
46
57
|
require_paths:
|
|
47
58
|
- lib
|
|
48
59
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
60
|
+
none: false
|
|
49
61
|
requirements:
|
|
50
62
|
- - ">="
|
|
51
63
|
- !ruby/object:Gem::Version
|
|
64
|
+
hash: 3
|
|
65
|
+
segments:
|
|
66
|
+
- 0
|
|
52
67
|
version: "0"
|
|
53
|
-
version:
|
|
54
68
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
|
+
none: false
|
|
55
70
|
requirements:
|
|
56
71
|
- - ">="
|
|
57
72
|
- !ruby/object:Gem::Version
|
|
73
|
+
hash: 3
|
|
74
|
+
segments:
|
|
75
|
+
- 0
|
|
58
76
|
version: "0"
|
|
59
|
-
version:
|
|
60
77
|
requirements:
|
|
61
78
|
- a Java environment with JAXP
|
|
62
79
|
rubyforge_project:
|
|
63
|
-
rubygems_version: 1.3.
|
|
80
|
+
rubygems_version: 1.3.7
|
|
64
81
|
signing_key:
|
|
65
82
|
specification_version: 3
|
|
66
83
|
summary: JAXP based XML Validation
|