activesupport 3.0.10.rc1 → 3.0.10

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.

@@ -20,7 +20,7 @@ class ERB
20
20
  if s.html_safe?
21
21
  s
22
22
  else
23
- s.gsub(/[&"><]/) { |special| HTML_ESCAPE[special] }.html_safe
23
+ s.to_s.gsub(/&/, "&amp;").gsub(/\"/, "&quot;").gsub(/>/, "&gt;").gsub(/</, "&lt;").html_safe
24
24
  end
25
25
  end
26
26
 
@@ -3,7 +3,7 @@ module ActiveSupport
3
3
  MAJOR = 3
4
4
  MINOR = 0
5
5
  TINY = 10
6
- PRE = "rc1"
6
+ PRE = nil
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
9
9
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activesupport
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: true
4
+ hash: 19
5
+ prerelease:
5
6
  segments:
6
7
  - 3
7
8
  - 0
8
9
  - 10
9
- - rc1
10
- version: 3.0.10.rc1
10
+ version: 3.0.10
11
11
  platform: ruby
12
12
  authors:
13
13
  - David Heinemeier Hansson
@@ -15,8 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-08-04 00:00:00 -07:00
19
- default_executable:
18
+ date: 2011-08-16 00:00:00 Z
20
19
  dependencies: []
21
20
 
22
21
  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.
@@ -237,7 +236,6 @@ files:
237
236
  - lib/active_support/xml_mini/rexml.rb
238
237
  - lib/active_support/xml_mini.rb
239
238
  - lib/active_support.rb
240
- has_rdoc: true
241
239
  homepage: http://www.rubyonrails.org
242
240
  licenses: []
243
241
 
@@ -247,27 +245,29 @@ rdoc_options: []
247
245
  require_paths:
248
246
  - lib
249
247
  required_ruby_version: !ruby/object:Gem::Requirement
248
+ none: false
250
249
  requirements:
251
250
  - - ">="
252
251
  - !ruby/object:Gem::Version
252
+ hash: 57
253
253
  segments:
254
254
  - 1
255
255
  - 8
256
256
  - 7
257
257
  version: 1.8.7
258
258
  required_rubygems_version: !ruby/object:Gem::Requirement
259
+ none: false
259
260
  requirements:
260
- - - ">"
261
+ - - ">="
261
262
  - !ruby/object:Gem::Version
263
+ hash: 3
262
264
  segments:
263
- - 1
264
- - 3
265
- - 1
266
- version: 1.3.1
265
+ - 0
266
+ version: "0"
267
267
  requirements: []
268
268
 
269
269
  rubyforge_project: activesupport
270
- rubygems_version: 1.3.6
270
+ rubygems_version: 1.8.8
271
271
  signing_key:
272
272
  specification_version: 3
273
273
  summary: A toolkit of support libraries and Ruby core extensions extracted from the Rails framework.