actionpack 3.0.9.rc3 → 3.0.9.rc4
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of actionpack might be problematic. Click here for more details.
- data/CHANGELOG +2 -0
- data/lib/action_pack/version.rb +1 -1
- data/lib/action_view/helpers/number_helper.rb +1 -1
- metadata +10 -10
data/CHANGELOG
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
*Rails 3.0.9 (unreleased)*
|
2
2
|
|
3
|
+
* json_escape will now return a SafeBuffer string if it receives SafeBuffer string [tenderlove]
|
4
|
+
|
3
5
|
* Make sure escape_js returns SafeBuffer string if it receives SafeBuffer string [Prem Sichanugrist]
|
4
6
|
|
5
7
|
* Fix text helpers to work correctly with the new SafeBuffer restriction [Paul Gallagher, Arun Agrawal, Prem Sichanugrist]
|
data/lib/action_pack/version.rb
CHANGED
@@ -213,7 +213,7 @@ module ActionView
|
|
213
213
|
defaults = I18n.translate(:'number.format', :locale => options[:locale], :default => {})
|
214
214
|
options = options.reverse_merge(defaults)
|
215
215
|
|
216
|
-
parts = number.to_s.split('.')
|
216
|
+
parts = number.to_s.to_str.split('.')
|
217
217
|
parts[0].gsub!(/(\d)(?=(\d\d\d)+(?!\d))/, "\\1#{options[:delimiter]}")
|
218
218
|
parts.join(options[:separator]).html_safe
|
219
219
|
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: actionpack
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 15424053
|
5
5
|
prerelease: 6
|
6
6
|
segments:
|
7
7
|
- 3
|
8
8
|
- 0
|
9
9
|
- 9
|
10
10
|
- rc
|
11
|
-
-
|
12
|
-
version: 3.0.9.
|
11
|
+
- 4
|
12
|
+
version: 3.0.9.rc4
|
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-06-
|
20
|
+
date: 2011-06-12 00:00:00 Z
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|
23
23
|
name: activesupport
|
@@ -27,14 +27,14 @@ dependencies:
|
|
27
27
|
requirements:
|
28
28
|
- - "="
|
29
29
|
- !ruby/object:Gem::Version
|
30
|
-
hash:
|
30
|
+
hash: 15424053
|
31
31
|
segments:
|
32
32
|
- 3
|
33
33
|
- 0
|
34
34
|
- 9
|
35
35
|
- rc
|
36
|
-
-
|
37
|
-
version: 3.0.9.
|
36
|
+
- 4
|
37
|
+
version: 3.0.9.rc4
|
38
38
|
type: :runtime
|
39
39
|
version_requirements: *id001
|
40
40
|
- !ruby/object:Gem::Dependency
|
@@ -45,14 +45,14 @@ dependencies:
|
|
45
45
|
requirements:
|
46
46
|
- - "="
|
47
47
|
- !ruby/object:Gem::Version
|
48
|
-
hash:
|
48
|
+
hash: 15424053
|
49
49
|
segments:
|
50
50
|
- 3
|
51
51
|
- 0
|
52
52
|
- 9
|
53
53
|
- rc
|
54
|
-
-
|
55
|
-
version: 3.0.9.
|
54
|
+
- 4
|
55
|
+
version: 3.0.9.rc4
|
56
56
|
type: :runtime
|
57
57
|
version_requirements: *id002
|
58
58
|
- !ruby/object:Gem::Dependency
|