libxslt-ruby 1.0.9 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: 1c764755769750edd73117a1209a5eea3555cc60
4
+ data.tar.gz: d876c538407812ef4f4182e8dd97bc831dbdb75f
5
+ !binary "U0hBNTEy":
6
+ metadata.gz: 782aed33b1170a1a786353e20e9f6374c561da521d027db5cc33d33400060eea7c1300e0b747bc5f783a82b782267840e6b13a14ac7db8bb07aa1347189e3c23
7
+ data.tar.gz: f1f7d033f52c7dde655f08ad324b995d232ed2e36d81baf497161c9ad4f24bd3d2ce25a15551a84007422d1ddfb244499ebde21569b616e39d9dddc7a9b3ed85
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
@@ -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: ruby
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:
@@ -69,28 +67,27 @@ files:
69
67
  - ext/libxslt/extconf.rb
70
68
  homepage: http://libxslt.rubyforge.org/
71
69
  licenses: []
70
+ metadata: {}
72
71
  post_install_message:
73
72
  rdoc_options: []
74
73
  require_paths:
75
74
  - lib
76
75
  - ext/libxslt
77
76
  required_ruby_version: !ruby/object:Gem::Requirement
78
- none: false
79
77
  requirements:
80
- - - ! '>='
78
+ - - ">="
81
79
  - !ruby/object:Gem::Version
82
80
  version: 1.8.6
83
81
  required_rubygems_version: !ruby/object:Gem::Requirement
84
- none: false
85
82
  requirements:
86
- - - ! '>='
83
+ - - ">="
87
84
  - !ruby/object:Gem::Version
88
85
  version: '0'
89
86
  requirements: []
90
87
  rubyforge_project: libxslt-ruby
91
- rubygems_version: 1.8.19
88
+ rubygems_version: 2.0.0.preview3.1
92
89
  signing_key:
93
- specification_version: 3
90
+ specification_version: 4
94
91
  summary: Ruby libxslt bindings
95
92
  test_files:
96
93
  - test/test_deprecated.rb