activesupport 3.0.8.rc1 → 3.0.8.rc2

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

Potentially problematic release.


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

@@ -3,7 +3,7 @@ module ActiveSupport
3
3
  MAJOR = 3
4
4
  MINOR = 0
5
5
  TINY = 8
6
- PRE = "rc1"
6
+ PRE = "rc2"
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
9
9
  end
@@ -5,12 +5,12 @@ include Java
5
5
 
6
6
  require 'active_support/core_ext/object/blank'
7
7
 
8
- import javax.xml.parsers.DocumentBuilder unless defined? DocumentBuilder
9
- import javax.xml.parsers.DocumentBuilderFactory unless defined? DocumentBuilderFactory
10
- import java.io.StringReader unless defined? StringReader
11
- import org.xml.sax.InputSource unless defined? InputSource
12
- import org.xml.sax.Attributes unless defined? Attributes
13
- import org.w3c.dom.Node unless defined? Node
8
+ java_import javax.xml.parsers.DocumentBuilder unless defined? DocumentBuilder
9
+ java_import javax.xml.parsers.DocumentBuilderFactory unless defined? DocumentBuilderFactory
10
+ java_import java.io.StringReader unless defined? StringReader
11
+ java_import org.xml.sax.InputSource unless defined? InputSource
12
+ java_import org.xml.sax.Attributes unless defined? Attributes
13
+ java_import org.w3c.dom.Node unless defined? Node
14
14
 
15
15
  # = XmlMini JRuby JDOM implementation
16
16
  module ActiveSupport
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activesupport
3
3
  version: !ruby/object:Gem::Version
4
- hash: 15424055
4
+ hash: 15424049
5
5
  prerelease: 6
6
6
  segments:
7
7
  - 3
8
8
  - 0
9
9
  - 8
10
10
  - rc
11
- - 1
12
- version: 3.0.8.rc1
11
+ - 2
12
+ version: 3.0.8.rc2
13
13
  platform: ruby
14
14
  authors:
15
15
  - David Heinemeier Hansson
@@ -17,7 +17,7 @@ autorequire:
17
17
  bindir: bin
18
18
  cert_chain: []
19
19
 
20
- date: 2011-05-25 00:00:00 Z
20
+ date: 2011-05-27 00:00:00 Z
21
21
  dependencies: []
22
22
 
23
23
  description: A toolkit of support libraries and Ruby core extensions extracted from the Rails framework. Rich support for multibyte strings, internationalization, time zones, and testing.