libxslt-ruby 1.0.9-x86-mingw32 → 1.1.0-x86-mingw32

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: 2ca4e37cd07766de6b249d478ac7a48714030ed0
4
+ data.tar.gz: 47df0a494d876c63f6e8feb420f0f97fac405ceb
5
+ !binary "U0hBNTEy":
6
+ metadata.gz: 96dc5c4f9632531836014f364b920196a98dfffffd3afe89888587389a1ee68477a066a4e8df643c8615a062819e597be366ecd6ae11393c573355412fa753de
7
+ data.tar.gz: e201a8305cce849db49705c0bb774b9fd963805189abe1e123d054984827696cb8e2452dcdabeefc1333750e32e2f32ab6f6699ed9ac0cdd10159d5eb8f5e3e3
data/CHANGES CHANGED
@@ -1,3 +1,7 @@
1
+ == 1.1.0 / 2013-01-06 Charlie Savage
2
+
3
+ * Remove dependency on DL which causes a warning on Ruby 2.0.0
4
+
1
5
  == 1.0.9 / 2012-03-17 Charlie Savage
2
6
 
3
7
  * Build fix for library inclusion order (Andrew Watts)
data/Rakefile CHANGED
@@ -22,7 +22,7 @@ Rake::ExtensionTask.new do |ext|
22
22
  ext.name = SO_NAME
23
23
  ext.ext_dir = "ext/libxslt"
24
24
  ext.lib_dir = "lib/#{RUBY_VERSION.sub(/\.\d$/, '')}"
25
-
25
+
26
26
  ext.config_options << "--with-zlib-dir=C:/MinGW/local"
27
27
  ext.config_options << "--with-xml2-include=C:/MinGW/local/include/libxml2"
28
28
  ext.config_options << "--with-xslt-include=C:/MinGW/local/include/libxslt"
@@ -1,5 +1,5 @@
1
- #define RUBY_LIBXSLT_VERSION "1.0.9"
1
+ #define RUBY_LIBXSLT_VERSION "1.1.0"
2
2
  #define RUBY_LIBXSLT_VERNUM 1
3
- #define RUBY_LIBXSLT_VER_MAJ 0
4
- #define RUBY_LIBXSLT_VER_MIN 9
3
+ #define RUBY_LIBXSLT_VER_MAJ 1
4
+ #define RUBY_LIBXSLT_VER_MIN 0
5
5
  #define RUBY_LIBXSLT_VER_MIC 0
Binary file
Binary file
Binary file
@@ -1,10 +1,6 @@
1
1
  # encoding: UTF-8
2
2
 
3
- # First make sure dl is loaded, we use that
4
- # to access the libxml bindings
5
- require 'dl'
6
-
7
- # Next load the libxml bindings
3
+ # Load the libxml bindings
8
4
  require 'libxml'
9
5
 
10
6
  # Load the C-based binding.
@@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
16
16
  spec.version = version
17
17
  spec.author = "Charlie Savage"
18
18
  spec.email = "libxml-devel@rubyforge.org"
19
- spec.add_dependency('libxml-ruby','>=2.2.2')
19
+ spec.add_dependency('libxml-ruby','>=2.4.0')
20
20
  spec.platform = Gem::Platform::RUBY
21
21
  spec.require_paths = ["lib", "ext/libxslt"]
22
22
 
metadata CHANGED
@@ -1,34 +1,32 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: libxslt-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.9
5
- prerelease:
4
+ version: 1.1.0
6
5
  platform: x86-mingw32
7
6
  authors:
8
7
  - Charlie Savage
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2012-03-18 00:00:00.000000000 Z
11
+ date: 2013-01-06 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: libxml-ruby
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - ">="
20
18
  - !ruby/object:Gem::Version
21
- version: 2.2.2
19
+ version: 2.4.0
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - ">="
28
25
  - !ruby/object:Gem::Version
29
- version: 2.2.2
30
- description: ! " The Libxslt-Ruby project provides Ruby language bindings for the
31
- GNOME\n XSLT C library. It is free software, released under the MIT License.\n"
26
+ version: 2.4.0
27
+ description: |2
28
+ The Libxslt-Ruby project provides Ruby language bindings for the GNOME
29
+ XSLT C library. It is free software, released under the MIT License.
32
30
  email: libxml-devel@rubyforge.org
33
31
  executables: []
34
32
  extensions: []
@@ -68,32 +66,32 @@ files:
68
66
  - ext/libxslt/extconf.rb
69
67
  - lib/1.8/libxslt_ruby.so
70
68
  - lib/1.9/libxslt_ruby.so
69
+ - lib/2.0/libxslt_ruby.so
71
70
  - lib/libs/libexslt-0.dll
72
71
  - lib/libs/libxslt-1.dll
73
72
  homepage: http://libxslt.rubyforge.org/
74
73
  licenses: []
74
+ metadata: {}
75
75
  post_install_message:
76
76
  rdoc_options: []
77
77
  require_paths:
78
78
  - lib
79
79
  - ext/libxslt
80
80
  required_ruby_version: !ruby/object:Gem::Requirement
81
- none: false
82
81
  requirements:
83
- - - ! '>='
82
+ - - ">="
84
83
  - !ruby/object:Gem::Version
85
84
  version: 1.8.6
86
85
  required_rubygems_version: !ruby/object:Gem::Requirement
87
- none: false
88
86
  requirements:
89
- - - ! '>='
87
+ - - ">="
90
88
  - !ruby/object:Gem::Version
91
89
  version: '0'
92
90
  requirements: []
93
91
  rubyforge_project: libxslt-ruby
94
- rubygems_version: 1.8.19
92
+ rubygems_version: 2.0.0.preview3.1
95
93
  signing_key:
96
- specification_version: 3
94
+ specification_version: 4
97
95
  summary: Ruby libxslt bindings
98
96
  test_files:
99
97
  - test/test_deprecated.rb