schematron 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/schematron.gemspec +5 -4
- metadata +23 -4
data/schematron.gemspec
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
Gem::Specification.new do |spec|
|
2
2
|
spec.name = "schematron"
|
3
|
-
spec.version = '0.0.
|
3
|
+
spec.version = '0.0.3'
|
4
4
|
spec.summary = "ISO Schematron Validation"
|
5
5
|
spec.email = "flazzarino@gmail.com"
|
6
6
|
spec.homepage = 'http://github.com/flazz/iso-schematron'
|
7
7
|
spec.authors = ["Francesco Lazzarino"]
|
8
8
|
spec.rubyforge_project = 'schematron'
|
9
9
|
|
10
|
-
spec.executables
|
10
|
+
spec.executables << 'stron'
|
11
11
|
|
12
12
|
spec.files = ["Rakefile", "schematron.gemspec", "README", "LICENSE.txt",
|
13
13
|
"bin/stron",
|
@@ -32,6 +32,7 @@ Gem::Specification.new do |spec|
|
|
32
32
|
"spec/schema/pim.sch",
|
33
33
|
"spec/schema_spec.rb",
|
34
34
|
"spec/spec_helper.rb"]
|
35
|
-
|
36
|
-
spec.
|
35
|
+
|
36
|
+
spec.add_dependency 'libxml-ruby', '>= 1.1.3'
|
37
|
+
spec.add_dependency 'libxslt-ruby', '>= 0.9.1'
|
37
38
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: schematron
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Francesco Lazzarino
|
@@ -11,8 +11,27 @@ cert_chain: []
|
|
11
11
|
|
12
12
|
date: 2009-05-22 00:00:00 -04:00
|
13
13
|
default_executable:
|
14
|
-
dependencies:
|
15
|
-
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: libxml-ruby
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 1.1.3
|
24
|
+
version:
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: libxslt-ruby
|
27
|
+
type: :runtime
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.9.1
|
34
|
+
version:
|
16
35
|
description:
|
17
36
|
email: flazzarino@gmail.com
|
18
37
|
executables:
|
@@ -48,7 +67,7 @@ files:
|
|
48
67
|
- spec/schema/pim.sch
|
49
68
|
- spec/schema_spec.rb
|
50
69
|
- spec/spec_helper.rb
|
51
|
-
has_rdoc:
|
70
|
+
has_rdoc: false
|
52
71
|
homepage: http://github.com/flazz/iso-schematron
|
53
72
|
post_install_message:
|
54
73
|
rdoc_options: []
|