libxslt-ruby 0.8.0 → 0.8.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 +163 -141
- data/Rakefile +129 -0
- data/doc/classes/LibXSLT.html +6 -0
- data/doc/classes/LibXSLT/XSLT.html +1 -12
- data/doc/classes/LibXSLT/XSLT/Stylesheet.html +5 -4
- data/doc/classes/LibXSLT/XSLT/TransformContext.html +6 -0
- data/doc/classes/LibXSLT/XSLTError.html +20 -0
- data/doc/classes/XSLT.html +15 -14
- data/doc/created.rid +1 -1
- data/doc/files/CHANGES.html +24 -3
- data/doc/files/LICENSE.html +2 -2
- data/doc/files/README.html +42 -9
- data/doc/files/ext/libxslt/libxslt_c.html +1 -1
- data/doc/files/ext/libxslt/ruby_xslt_stylesheet_c.html +1 -1
- data/doc/files/ext/libxslt/ruby_xslt_transform_context_c.html +1 -1
- data/doc/files/lib/libxslt/deprecated_rb.html +1 -1
- data/doc/files/lib/libxslt_rb.html +7 -1
- data/doc/files/lib/xslt_rb.html +135 -0
- data/doc/fr_file_index.html +1 -0
- data/ext/libxslt/version.h +2 -2
- data/ext/mingw/Rakefile +42 -0
- data/{vc → ext/vc}/libxslt_ruby.sln +3 -3
- data/{vc → ext/vc}/libxslt_ruby.vcproj +17 -18
- data/lib/libxslt.rb +10 -6
- data/lib/libxslt/deprecated.rb +57 -56
- data/lib/text.xml +129 -0
- data/lib/xslt.rb +15 -0
- metadata +31 -29
- data/mingw/libxslt-1.dll +0 -0
- data/mingw/libxslt_ruby.so +0 -0
data/lib/xslt.rb
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
# This file loads libxslt and adds the LibXSLT namespace
|
2
|
+
# to the toplevel for conveneience. The end result
|
3
|
+
# is to have XSLT:: universally exposed.
|
4
|
+
#
|
5
|
+
# It is recommend that you only load this file for libs
|
6
|
+
# that do not have their own namespace, eg. administrative
|
7
|
+
# scripts, personal programs, etc. For other applications
|
8
|
+
# require 'libxslt' instead and include LibXSLT into your
|
9
|
+
# app/libs namespace.
|
10
|
+
|
11
|
+
require 'libxslt'
|
12
|
+
|
13
|
+
include LibXML
|
14
|
+
include LibXSLT
|
15
|
+
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libxslt-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Charlie Savage
|
@@ -9,17 +9,18 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-07-
|
12
|
+
date: 2008-07-21 00:00:00 -06:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: libxml-ruby
|
17
|
+
type: :runtime
|
17
18
|
version_requirement:
|
18
19
|
version_requirements: !ruby/object:Gem::Requirement
|
19
20
|
requirements:
|
20
21
|
- - ">="
|
21
22
|
- !ruby/object:Gem::Version
|
22
|
-
version: 0.8.
|
23
|
+
version: 0.8.2
|
23
24
|
version:
|
24
25
|
description: The Libxslt-Ruby project provides Ruby language bindings for the GNOME XSLT C library. It is free software, released under the MIT License.
|
25
26
|
email: libxml-devel@rubyforge.org
|
@@ -30,53 +31,54 @@ extensions:
|
|
30
31
|
extra_rdoc_files: []
|
31
32
|
|
32
33
|
files:
|
34
|
+
- Rakefile
|
33
35
|
- README
|
34
36
|
- LICENSE
|
35
37
|
- setup.rb
|
36
38
|
- doc/classes
|
37
|
-
- doc/created.rid
|
38
|
-
- doc/files
|
39
|
-
- doc/fr_class_index.html
|
40
|
-
- doc/fr_file_index.html
|
41
|
-
- doc/fr_method_index.html
|
42
|
-
- doc/index.html
|
43
|
-
- doc/rdoc-style.css
|
44
39
|
- doc/classes/LibXSLT
|
45
|
-
- doc/classes/LibXSLT.html
|
46
|
-
- doc/classes/XSLT.html
|
47
40
|
- doc/classes/LibXSLT/XSLT
|
48
|
-
- doc/classes/LibXSLT/XSLT.html
|
49
|
-
- doc/classes/LibXSLT/XSLTError.html
|
50
41
|
- doc/classes/LibXSLT/XSLT/Stylesheet.html
|
51
42
|
- doc/classes/LibXSLT/XSLT/TransformContext.html
|
43
|
+
- doc/classes/LibXSLT/XSLT.html
|
44
|
+
- doc/classes/LibXSLT/XSLTError.html
|
45
|
+
- doc/classes/LibXSLT.html
|
46
|
+
- doc/classes/XSLT.html
|
47
|
+
- doc/created.rid
|
48
|
+
- doc/files
|
52
49
|
- doc/files/CHANGES.html
|
53
50
|
- doc/files/ext
|
54
|
-
- doc/files/lib
|
55
|
-
- doc/files/LICENSE.html
|
56
|
-
- doc/files/README.html
|
57
51
|
- doc/files/ext/libxslt
|
58
52
|
- doc/files/ext/libxslt/libxslt_c.html
|
59
53
|
- doc/files/ext/libxslt/ruby_xslt_stylesheet_c.html
|
60
54
|
- doc/files/ext/libxslt/ruby_xslt_transform_context_c.html
|
55
|
+
- doc/files/lib
|
61
56
|
- doc/files/lib/libxslt
|
62
|
-
- doc/files/lib/libxslt_rb.html
|
63
57
|
- doc/files/lib/libxslt/deprecated_rb.html
|
58
|
+
- doc/files/lib/libxslt_rb.html
|
59
|
+
- doc/files/lib/xslt_rb.html
|
60
|
+
- doc/files/LICENSE.html
|
61
|
+
- doc/files/README.html
|
62
|
+
- doc/fr_class_index.html
|
63
|
+
- doc/fr_file_index.html
|
64
|
+
- doc/fr_method_index.html
|
65
|
+
- doc/index.html
|
66
|
+
- doc/rdoc-style.css
|
64
67
|
- lib/libxslt
|
65
|
-
- lib/libxslt.rb
|
66
68
|
- lib/libxslt/deprecated.rb
|
67
|
-
-
|
68
|
-
-
|
69
|
-
-
|
69
|
+
- lib/libxslt.rb
|
70
|
+
- lib/text.xml
|
71
|
+
- lib/xslt.rb
|
70
72
|
- ext/libxslt/libxslt.h
|
71
|
-
- ext/libxslt/ruby_xslt_stylesheet.c
|
72
73
|
- ext/libxslt/ruby_xslt_stylesheet.h
|
73
|
-
- ext/libxslt/ruby_xslt_transform_context.c
|
74
74
|
- ext/libxslt/ruby_xslt_transform_context.h
|
75
75
|
- ext/libxslt/version.h
|
76
|
-
-
|
77
|
-
-
|
78
|
-
-
|
79
|
-
-
|
76
|
+
- ext/libxslt/libxslt.c
|
77
|
+
- ext/libxslt/ruby_xslt_stylesheet.c
|
78
|
+
- ext/libxslt/ruby_xslt_transform_context.c
|
79
|
+
- ext/mingw/Rakefile
|
80
|
+
- ext/vc/libxslt_ruby.sln
|
81
|
+
- ext/vc/libxslt_ruby.vcproj
|
80
82
|
has_rdoc: true
|
81
83
|
homepage: http://libxslt.rubyforge.org/
|
82
84
|
post_install_message:
|
@@ -100,7 +102,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
100
102
|
requirements: []
|
101
103
|
|
102
104
|
rubyforge_project: libxslt-ruby
|
103
|
-
rubygems_version: 1.0
|
105
|
+
rubygems_version: 1.2.0
|
104
106
|
signing_key:
|
105
107
|
specification_version: 2
|
106
108
|
summary: Ruby libxslt bindings
|
data/mingw/libxslt-1.dll
DELETED
Binary file
|
data/mingw/libxslt_ruby.so
DELETED
Binary file
|