activesupport 2.3.16 → 2.3.17

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.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 35c91c93ca5afc2bf63abffbc68b17b58c02f5b1
4
- data.tar.gz: 302dded5230559b2fccd62e0f9a8a2e77bc884e6
3
+ metadata.gz: 2d3701fd60285f6b721b71536899c4a2a9ea987d
4
+ data.tar.gz: da4a64d66028064a096fb90798887e3297d39df9
5
5
  SHA512:
6
- metadata.gz: c7baffba66eeb3f966981ffda3545a69a2084fccf9b08606d6df7de150c54965a6a410cace6396c1d31ee027322061bd9843dd607cfae1ce46ca74260da85135
7
- data.tar.gz: 39f392723fa015bfec08e2f7e8277470ac41da7efffc0edf6c6285971f2e1302ff82d8158943dc77ec817c00f75133d2c0cd26f4f4e1bda9838f0c2bd71a631b
6
+ metadata.gz: 7180e37525d1218fb7485e494cd10b57cd187b522a705540ce06b4a0d20513bc823de85151119aaafcc80530cf8aef8d2e318b8f84f0ae1088606ff8a5ef74d2
7
+ data.tar.gz: 73f43bdbc6be87b9ed82bbb27504fb762549430c4d6310dff25cfeb759efc3341b4d824b84703e52c7172704b7c797e28a1d3a659bd9beca2a50893112f2055e
@@ -2,7 +2,7 @@ require 'erb'
2
2
 
3
3
  class ERB
4
4
  module Util
5
- HTML_ESCAPE = { '&' => '&amp;', '>' => '&gt;', '<' => '&lt;', '"' => '&quot;', "'" => '&#x27;' }
5
+ HTML_ESCAPE = { '&' => '&amp;', '>' => '&gt;', '<' => '&lt;', '"' => '&quot;', "'" => '&#39;' }
6
6
  JSON_ESCAPE = { '&' => '\u0026', '>' => '\u003E', '<' => '\u003C' }
7
7
 
8
8
  # A utility method for escaping HTML tag characters.
@@ -2,7 +2,7 @@ module ActiveSupport
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 2
4
4
  MINOR = 3
5
- TINY = 16
5
+ TINY = 17
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activesupport
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.16
4
+ version: 2.3.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-01-28 00:00:00.000000000 Z
11
+ date: 2013-02-11 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Utility library which carries commonly used classes and goodies from
14
14
  the Rails framework
@@ -413,7 +413,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
413
413
  version: '0'
414
414
  requirements: []
415
415
  rubyforge_project: activesupport
416
- rubygems_version: 2.0.0.preview3.1
416
+ rubygems_version: 2.0.0.rc.2
417
417
  signing_key:
418
418
  specification_version: 4
419
419
  summary: Support and utility classes used by the Rails framework.