nokogiri 1.6.3.rc1-java → 1.6.3.rc2-java

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of nokogiri might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4444b4a5d9dfc4f8db7eee949df09917442bc47d
4
- data.tar.gz: 3e60c443691acb5c7a9748cc556eb400f5271564
3
+ metadata.gz: 5fe2e8d07f52df71f080e08f85e149374fbcabbd
4
+ data.tar.gz: f924e1807f51738cd1a0b58f14493c0684629510
5
5
  SHA512:
6
- metadata.gz: 5e462855eb9d42cf66d9d02b61e832560f51788ed0897deaeacf9a3303b76394447018a63b663cf2f3d040680c157a6348671dc5ff34639bf9571c57d71b63c9
7
- data.tar.gz: 50e710169ebc4797b77c3b6da9c019339004c0403d0a768d262d10eacc767c636155da44f3d75b9c41a7feaab4e5d7c2f261d610cc124ad6247e46fcbd4c91c4
6
+ metadata.gz: b4353244adddeb08c390f4ebc5f80b96de03fc034cd8d001cd989fb1fed02a9715dbd07b0b9fb14dffb3b5d66a6c7e540fc7cebab11afdb210d7c739ffeef59b
7
+ data.tar.gz: 381222c91a0c88f0ad65a89d94fd28ce672c2e356d45be52cad896ab8fe6b0a0f68691947fb64bb7289daf2522882f063f9cc1ff56554aed837e78633d95cc14
@@ -2,8 +2,9 @@
2
2
 
3
3
  ==== Bug fixes
4
4
 
5
- * Fix JRuby memory exhaustion vulnerability. #1087 (Thanks, @ocher!)
6
- * Fix segfault during GC when using `libxml-ruby` and `nokogiri` together in multi-threaded environment. #895 (Thanks, @ender672!)
5
+ * [JRuby] Fix Ruby memory exhaustion vulnerability. #1087 (Thanks, @ocher)
6
+ * [MRI] Fix segfault during GC when using `libxml-ruby` and `nokogiri` together in multi-threaded environment. #895 (Thanks, @ender672!)
7
+ * Building on OSX 10.9 stock ruby 2.0.0 now works. #1101 (Thanks, @zenspider!)
7
8
 
8
9
 
9
10
  === 1.6.2.1 / 2014年5月13日
@@ -2,8 +2,9 @@
2
2
 
3
3
  ==== Bug fixes
4
4
 
5
- * Fix JRuby memory exhaustion vulnerability. #1087 (Thanks, @ocher)
6
- * Fix segfault during GC when using `libxml-ruby` and `nokogiri` together in multi-threaded environment. #895 (Thanks, @ender672!)
5
+ * [JRuby] Fix Ruby memory exhaustion vulnerability. #1087 (Thanks, @ocher)
6
+ * [MRI] Fix segfault during GC when using `libxml-ruby` and `nokogiri` together in multi-threaded environment. #895 (Thanks, @ender672!)
7
+ * Building on OSX 10.9 stock ruby 2.0.0 now works. #1101 (Thanks, @zenspider!)
7
8
 
8
9
 
9
10
  === 1.6.2.1 / 2014-05-13
@@ -311,6 +311,9 @@ when 'mingw32', /mswin/
311
311
  $CFLAGS << " -DXP_WIN -DXP_WIN32 -DUSE_INCLUDED_VASPRINTF"
312
312
  when /solaris/
313
313
  $CFLAGS << " -DUSE_INCLUDED_VASPRINTF"
314
+ when /darwin/
315
+ # TODO: maybe make it stricter to only work on stock ruby? How to tell?
316
+ $CFLAGS << " -Wno-error=unused-command-line-argument-hard-error-in-future"
314
317
  else
315
318
  $CFLAGS << " -g -DXP_UNIX"
316
319
  end
@@ -469,6 +472,7 @@ else
469
472
  }
470
473
  }
471
474
 
475
+ # Defining a macro that expands to a C string; double quotes are significant.
472
476
  $CPPFLAGS << ' ' << "-DNOKOGIRI_#{recipe.name.upcase}_PATH=\"#{recipe.path}\"".shellescape
473
477
 
474
478
  case libname
Binary file
@@ -1,6 +1,6 @@
1
1
  module Nokogiri
2
2
  # The version of Nokogiri you are using
3
- VERSION = '1.6.3.rc1'
3
+ VERSION = '1.6.3.rc2'
4
4
 
5
5
  class VersionInfo # :nodoc:
6
6
  def jruby?
@@ -8,7 +8,7 @@ module Nokogiri
8
8
  # The basic way a SAX style parser works is by creating a parser,
9
9
  # telling the parser about the events we're interested in, then giving
10
10
  # the parser some XML to process. The parser will notify you when
11
- # it encounters events your said you would like to know about.
11
+ # it encounters events you said you would like to know about.
12
12
  #
13
13
  # To register for events, you simply subclass Nokogiri::XML::SAX::Document,
14
14
  # and implement the methods for which you would like notification.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nokogiri
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.3.rc1
4
+ version: 1.6.3.rc2
5
5
  platform: java
6
6
  authors:
7
7
  - Aaron Patterson
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2014-05-22 00:00:00.000000000 Z
15
+ date: 2014-06-17 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: rdoc