blackwinter-libxslt-ruby 1.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.
- data/CHANGES +81 -0
- data/LICENSE +21 -0
- data/README +164 -0
- data/Rakefile +75 -0
- data/ext/libxslt/extconf.rb +146 -0
- data/ext/libxslt/libxslt.c +235 -0
- data/ext/libxslt/libxslt.h +32 -0
- data/ext/libxslt/ruby_xslt_stylesheet.c +271 -0
- data/ext/libxslt/ruby_xslt_stylesheet.h +16 -0
- data/ext/libxslt/version.h +5 -0
- data/ext/vc/libxslt_ruby.sln +26 -0
- data/ext/vc/libxslt_ruby.vcxproj +110 -0
- data/lib/libxslt.rb +19 -0
- data/lib/libxslt/deprecated.rb +68 -0
- data/lib/xslt.rb +15 -0
- data/libxslt-ruby.gemspec +49 -0
- data/setup.rb +1585 -0
- data/test/files/commentary.dtd +34 -0
- data/test/files/fuzface.xml +154 -0
- data/test/files/fuzface.xsl +4 -0
- data/test/files/params.xml +2 -0
- data/test/files/params.xsl +11 -0
- data/test/files/ramblings.xsl +46 -0
- data/test/test_deprecated.rb +100 -0
- data/test/test_helper.rb +12 -0
- data/test/test_libxslt.rb +22 -0
- data/test/test_stylesheet.rb +106 -0
- data/test/test_suite.rb +10 -0
- metadata +113 -0
data/test/test_suite.rb
ADDED
metadata
ADDED
@@ -0,0 +1,113 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: blackwinter-libxslt-ruby
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 21
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
- 1
|
10
|
+
version: 1.0.1
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Charlie Savage
|
14
|
+
- Jens Wille
|
15
|
+
autorequire:
|
16
|
+
bindir: bin
|
17
|
+
cert_chain: []
|
18
|
+
|
19
|
+
date: 2011-06-10 00:00:00 Z
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: libxml-ruby
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 11
|
30
|
+
segments:
|
31
|
+
- 2
|
32
|
+
- 0
|
33
|
+
- 2
|
34
|
+
version: 2.0.2
|
35
|
+
type: :runtime
|
36
|
+
version_requirements: *id001
|
37
|
+
description: " The Libxslt-Ruby project provides Ruby language bindings for the GNOME\n XSLT C library. It is free software, released under the MIT License.\n"
|
38
|
+
email:
|
39
|
+
- libxml-devel@rubyforge.org
|
40
|
+
- jens.wille@uni-koeln.de
|
41
|
+
executables: []
|
42
|
+
|
43
|
+
extensions:
|
44
|
+
- ext/libxslt/extconf.rb
|
45
|
+
extra_rdoc_files: []
|
46
|
+
|
47
|
+
files:
|
48
|
+
- CHANGES
|
49
|
+
- LICENSE
|
50
|
+
- Rakefile
|
51
|
+
- README
|
52
|
+
- libxslt-ruby.gemspec
|
53
|
+
- setup.rb
|
54
|
+
- lib/libxslt/deprecated.rb
|
55
|
+
- lib/xslt.rb
|
56
|
+
- lib/libxslt.rb
|
57
|
+
- ext/libxslt/libxslt.h
|
58
|
+
- ext/libxslt/ruby_xslt_stylesheet.h
|
59
|
+
- ext/libxslt/version.h
|
60
|
+
- ext/libxslt/libxslt.c
|
61
|
+
- ext/libxslt/ruby_xslt_stylesheet.c
|
62
|
+
- ext/vc/libxslt_ruby.sln
|
63
|
+
- ext/vc/libxslt_ruby.vcxproj
|
64
|
+
- test/test_helper.rb
|
65
|
+
- test/files/params.xml
|
66
|
+
- test/files/fuzface.xsl
|
67
|
+
- test/files/fuzface.xml
|
68
|
+
- test/files/commentary.dtd
|
69
|
+
- test/files/ramblings.xsl
|
70
|
+
- test/files/params.xsl
|
71
|
+
- test/test_suite.rb
|
72
|
+
- test/test_deprecated.rb
|
73
|
+
- test/test_libxslt.rb
|
74
|
+
- test/test_stylesheet.rb
|
75
|
+
- ext/libxslt/extconf.rb
|
76
|
+
homepage: http://libxslt.rubyforge.org/
|
77
|
+
licenses: []
|
78
|
+
|
79
|
+
post_install_message:
|
80
|
+
rdoc_options: []
|
81
|
+
|
82
|
+
require_paths:
|
83
|
+
- lib
|
84
|
+
- ext/libxslt
|
85
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
86
|
+
none: false
|
87
|
+
requirements:
|
88
|
+
- - ">="
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
hash: 63
|
91
|
+
segments:
|
92
|
+
- 1
|
93
|
+
- 8
|
94
|
+
- 4
|
95
|
+
version: 1.8.4
|
96
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
97
|
+
none: false
|
98
|
+
requirements:
|
99
|
+
- - ">="
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
hash: 3
|
102
|
+
segments:
|
103
|
+
- 0
|
104
|
+
version: "0"
|
105
|
+
requirements: []
|
106
|
+
|
107
|
+
rubyforge_project: libxslt-ruby
|
108
|
+
rubygems_version: 1.8.5
|
109
|
+
signing_key:
|
110
|
+
specification_version: 3
|
111
|
+
summary: Ruby libxslt bindings
|
112
|
+
test_files: []
|
113
|
+
|