activesupport 3.2.18 → 3.2.19

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.

data/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## Rails 3.2.19 (Jul 2, 2014) ##
2
+
3
+ * Make sure Active Support configurations are applied correctly.
4
+
5
+ Before this change configuration set using `config.active_support`
6
+ would not be set.
7
+
8
+ *Rafael Mendonça França*
9
+
10
+
1
11
  ## Rails 3.2.18 (May 6, 2014) ##
2
12
 
3
13
  * No changes.
@@ -55,5 +55,12 @@ module ActiveSupport
55
55
 
56
56
  Time.zone_default = zone_default
57
57
  end
58
+
59
+ initializer "active_support.set_configs" do |app|
60
+ app.config.active_support.each do |k, v|
61
+ k = "#{k}="
62
+ ActiveSupport.send(k, v) if ActiveSupport.respond_to? k
63
+ end
64
+ end
58
65
  end
59
66
  end
@@ -2,7 +2,7 @@ module ActiveSupport
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 3
4
4
  MINOR = 2
5
- TINY = 18
5
+ TINY = 19
6
6
  PRE = nil
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activesupport
3
3
  version: !ruby/object:Gem::Version
4
- hash: 43
4
+ hash: 41
5
5
  prerelease:
6
6
  segments:
7
7
  - 3
8
8
  - 2
9
- - 18
10
- version: 3.2.18
9
+ - 19
10
+ version: 3.2.19
11
11
  platform: ruby
12
12
  authors:
13
13
  - David Heinemeier Hansson
@@ -15,12 +15,11 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2014-05-06 00:00:00 Z
18
+ date: 2014-07-02 00:00:00 -03:00
19
+ default_executable:
19
20
  dependencies:
20
21
  - !ruby/object:Gem::Dependency
21
- type: :runtime
22
- name: i18n
23
- version_requirements: &id001 !ruby/object:Gem::Requirement
22
+ requirement: &id001 !ruby/object:Gem::Requirement
24
23
  none: false
25
24
  requirements:
26
25
  - - ~>
@@ -38,12 +37,12 @@ dependencies:
38
37
  - 6
39
38
  - 4
40
39
  version: 0.6.4
40
+ type: :runtime
41
+ version_requirements: *id001
41
42
  prerelease: false
42
- requirement: *id001
43
+ name: i18n
43
44
  - !ruby/object:Gem::Dependency
44
- type: :runtime
45
- name: multi_json
46
- version_requirements: &id002 !ruby/object:Gem::Requirement
45
+ requirement: &id002 !ruby/object:Gem::Requirement
47
46
  none: false
48
47
  requirements:
49
48
  - - ~>
@@ -53,8 +52,10 @@ dependencies:
53
52
  - 1
54
53
  - 0
55
54
  version: "1.0"
55
+ type: :runtime
56
+ version_requirements: *id002
56
57
  prerelease: false
57
- requirement: *id002
58
+ name: multi_json
58
59
  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.
59
60
  email: david@loudthinking.com
60
61
  executables: []
@@ -277,6 +278,7 @@ files:
277
278
  - lib/active_support/xml_mini/rexml.rb
278
279
  - lib/active_support/xml_mini.rb
279
280
  - lib/active_support.rb
281
+ has_rdoc: true
280
282
  homepage: http://www.rubyonrails.org
281
283
  licenses:
282
284
  - MIT
@@ -309,7 +311,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
309
311
  requirements: []
310
312
 
311
313
  rubyforge_project:
312
- rubygems_version: 1.8.15
314
+ rubygems_version: 1.6.2
313
315
  signing_key:
314
316
  specification_version: 3
315
317
  summary: A toolkit of support libraries and Ruby core extensions extracted from the Rails framework.