activesupport 3.0.10 → 3.0.11

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 CHANGED
@@ -1,10 +1,14 @@
1
- * Rails 3.0.10 (unreleased)
1
+ * Rails 3.0.10 (August 16, 2011)
2
2
 
3
3
  * Delayed backtrace scrubbing in `load_missing_constant` until we actually
4
4
  raise the exception
5
5
 
6
+
6
7
  *Rails 3.0.9 (June 16, 2011)*
7
8
 
9
+ *No changes.
10
+
11
+
8
12
  *Rails 3.0.8 (June 7, 2011)*
9
13
 
10
14
  * No changes.
@@ -1,5 +1,3 @@
1
- require 'active_support/deprecation'
2
-
3
1
  class Module
4
2
  # Declare that a method has been deprecated.
5
3
  # deprecate :foo
@@ -74,7 +74,7 @@ end
74
74
 
75
75
  module ActiveSupport #:nodoc:
76
76
  class SafeBuffer < String
77
- UNSAFE_STRING_METHODS = ["capitalize", "chomp", "chop", "delete", "downcase", "gsub", "lstrip", "next", "reverse", "rstrip", "slice", "squeeze", "strip", "sub", "succ", "swapcase", "tr", "tr_s", "upcase"].freeze
77
+ UNSAFE_STRING_METHODS = ["capitalize", "chomp", "chop", "delete", "downcase", "gsub", "lstrip", "next", "reverse", "rstrip", "slice", "squeeze", "strip", "sub", "succ", "swapcase", "tr", "tr_s", "upcase", "prepend"].freeze
78
78
 
79
79
  alias_method :original_concat, :concat
80
80
  private :original_concat
@@ -130,16 +130,18 @@ module ActiveSupport #:nodoc:
130
130
  end
131
131
 
132
132
  for unsafe_method in UNSAFE_STRING_METHODS
133
- class_eval <<-EOT, __FILE__, __LINE__
134
- def #{unsafe_method}(*args)
135
- super.to_str
136
- end
137
-
138
- def #{unsafe_method}!(*args)
139
- @dirty = true
140
- super
141
- end
142
- EOT
133
+ if 'String'.respond_to?(unsafe_method)
134
+ class_eval <<-EOT, __FILE__, __LINE__ + 1
135
+ def #{unsafe_method}(*args)
136
+ super.to_str
137
+ end
138
+
139
+ def #{unsafe_method}!(*args)
140
+ @dirty = true
141
+ super
142
+ end
143
+ EOT
144
+ end
143
145
  end
144
146
 
145
147
  protected
@@ -10,7 +10,7 @@ class Time
10
10
  class << self
11
11
  # Overriding case equality method so that it returns true for ActiveSupport::TimeWithZone instances
12
12
  def ===(other)
13
- other.is_a?(::Time)
13
+ super || (self == Time && other.is_a?(ActiveSupport::TimeWithZone))
14
14
  end
15
15
 
16
16
  # Return the number of days in the given month.
@@ -37,6 +37,7 @@ if Time.local(2010).zone != Marshal.load(Marshal.dump(Time.local(2010))).zone
37
37
  time.instance_eval do
38
38
  if zone = defined?(@_zone) && remove_instance_variable('@_zone')
39
39
  ary = to_a
40
+ ary[0] += subsec if ary[0] == sec
40
41
  ary[-1] = zone
41
42
  utc? ? Time.utc(*ary) : Time.local(*ary)
42
43
  else
@@ -1,5 +1,6 @@
1
1
  require 'zlib'
2
2
  require 'stringio'
3
+ require 'active_support/core_ext/string/encoding'
3
4
 
4
5
  module ActiveSupport
5
6
  # A convenient wrapper for the zlib standard library that allows compression/decompression of strings with gzip.
@@ -26,4 +27,4 @@ module ActiveSupport
26
27
  output.string
27
28
  end
28
29
  end
29
- end
30
+ end
@@ -2,7 +2,7 @@ module ActiveSupport
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 3
4
4
  MINOR = 0
5
- TINY = 10
5
+ TINY = 11
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: 19
4
+ hash: 17
5
5
  prerelease:
6
6
  segments:
7
7
  - 3
8
8
  - 0
9
- - 10
10
- version: 3.0.10
9
+ - 11
10
+ version: 3.0.11
11
11
  platform: ruby
12
12
  authors:
13
13
  - David Heinemeier Hansson
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-08-16 00:00:00 Z
18
+ date: 2011-11-18 00:00:00 Z
19
19
  dependencies: []
20
20
 
21
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.
@@ -29,212 +29,212 @@ extra_rdoc_files: []
29
29
  files:
30
30
  - CHANGELOG
31
31
  - README.rdoc
32
- - lib/active_support/all.rb
33
- - lib/active_support/backtrace_cleaner.rb
34
- - lib/active_support/base64.rb
35
- - lib/active_support/basic_object.rb
36
- - lib/active_support/benchmarkable.rb
37
- - lib/active_support/buffered_logger.rb
38
- - lib/active_support/builder.rb
39
- - lib/active_support/cache/compressed_mem_cache_store.rb
40
- - lib/active_support/cache/file_store.rb
32
+ - lib/active_support/inflector/transliterate.rb
33
+ - lib/active_support/inflector/inflections.rb
34
+ - lib/active_support/inflector/methods.rb
35
+ - lib/active_support/values/time_zone.rb
36
+ - lib/active_support/values/unicode_tables.dat
37
+ - lib/active_support/locale/en.yml
38
+ - lib/active_support/cache.rb
39
+ - lib/active_support/time_with_zone.rb
41
40
  - lib/active_support/cache/mem_cache_store.rb
42
41
  - lib/active_support/cache/memory_store.rb
43
- - lib/active_support/cache/strategy/local_cache.rb
44
42
  - lib/active_support/cache/synchronized_memory_store.rb
45
- - lib/active_support/cache.rb
46
- - lib/active_support/callbacks.rb
43
+ - lib/active_support/cache/file_store.rb
44
+ - lib/active_support/cache/strategy/local_cache.rb
45
+ - lib/active_support/cache/compressed_mem_cache_store.rb
46
+ - lib/active_support/time/autoload.rb
47
+ - lib/active_support/builder.rb
48
+ - lib/active_support/all.rb
47
49
  - lib/active_support/concern.rb
50
+ - lib/active_support/xml_mini/nokogiri.rb
51
+ - lib/active_support/xml_mini/rexml.rb
52
+ - lib/active_support/xml_mini/libxml.rb
53
+ - lib/active_support/xml_mini/jdom.rb
54
+ - lib/active_support/xml_mini/libxmlsax.rb
55
+ - lib/active_support/xml_mini/nokogirisax.rb
56
+ - lib/active_support/string_inquirer.rb
57
+ - lib/active_support/option_merger.rb
58
+ - lib/active_support/memoizable.rb
59
+ - lib/active_support/descendants_tracker.rb
60
+ - lib/active_support/message_encryptor.rb
61
+ - lib/active_support/benchmarkable.rb
62
+ - lib/active_support/dependencies.rb
63
+ - lib/active_support/json/decoding.rb
64
+ - lib/active_support/json/encoding.rb
65
+ - lib/active_support/json/backends/jsongem.rb
66
+ - lib/active_support/json/backends/yaml.rb
67
+ - lib/active_support/json/backends/yajl.rb
68
+ - lib/active_support/json/variable.rb
69
+ - lib/active_support/test_case.rb
70
+ - lib/active_support/inflections.rb
71
+ - lib/active_support/duration.rb
72
+ - lib/active_support/deprecation.rb
73
+ - lib/active_support/dependencies/autoload.rb
74
+ - lib/active_support/deprecation/reporting.rb
75
+ - lib/active_support/deprecation/proxy_wrappers.rb
76
+ - lib/active_support/deprecation/behaviors.rb
77
+ - lib/active_support/deprecation/method_wrappers.rb
78
+ - lib/active_support/base64.rb
79
+ - lib/active_support/ordered_hash.rb
80
+ - lib/active_support/json.rb
81
+ - lib/active_support/gzip.rb
82
+ - lib/active_support/notifications/fanout.rb
83
+ - lib/active_support/notifications/instrumenter.rb
84
+ - lib/active_support/inflector.rb
85
+ - lib/active_support/whiny_nil.rb
86
+ - lib/active_support/file_update_checker.rb
87
+ - lib/active_support/backtrace_cleaner.rb
88
+ - lib/active_support/time.rb
89
+ - lib/active_support/log_subscriber.rb
90
+ - lib/active_support/multibyte/chars.rb
91
+ - lib/active_support/multibyte/exceptions.rb
92
+ - lib/active_support/multibyte/unicode.rb
93
+ - lib/active_support/multibyte/utils.rb
94
+ - lib/active_support/rescuable.rb
95
+ - lib/active_support/version.rb
96
+ - lib/active_support/multibyte.rb
48
97
  - lib/active_support/configurable.rb
98
+ - lib/active_support/xml_mini.rb
99
+ - lib/active_support/ordered_options.rb
100
+ - lib/active_support/railtie.rb
101
+ - lib/active_support/i18n_railtie.rb
102
+ - lib/active_support/log_subscriber/test_helper.rb
103
+ - lib/active_support/lazy_load_hooks.rb
104
+ - lib/active_support/buffered_logger.rb
105
+ - lib/active_support/core_ext/float/rounding.rb
106
+ - lib/active_support/core_ext/date/zones.rb
107
+ - lib/active_support/core_ext/date/freeze.rb
108
+ - lib/active_support/core_ext/date/acts_like.rb
109
+ - lib/active_support/core_ext/date/conversions.rb
110
+ - lib/active_support/core_ext/date/calculations.rb
111
+ - lib/active_support/core_ext/class.rb
112
+ - lib/active_support/core_ext/kernel/requires.rb
113
+ - lib/active_support/core_ext/kernel/reporting.rb
114
+ - lib/active_support/core_ext/kernel/agnostics.rb
115
+ - lib/active_support/core_ext/kernel/singleton_class.rb
116
+ - lib/active_support/core_ext/kernel/debugger.rb
117
+ - lib/active_support/core_ext/numeric.rb
118
+ - lib/active_support/core_ext/numeric/time.rb
119
+ - lib/active_support/core_ext/numeric/bytes.rb
120
+ - lib/active_support/core_ext/time/zones.rb
121
+ - lib/active_support/core_ext/time/acts_like.rb
122
+ - lib/active_support/core_ext/time/conversions.rb
123
+ - lib/active_support/core_ext/time/marshal.rb
124
+ - lib/active_support/core_ext/time/calculations.rb
125
+ - lib/active_support/core_ext/time/publicize_conversion_methods.rb
126
+ - lib/active_support/core_ext/module.rb
127
+ - lib/active_support/core_ext/load_error.rb
128
+ - lib/active_support/core_ext/rexml.rb
129
+ - lib/active_support/core_ext/cgi.rb
130
+ - lib/active_support/core_ext/big_decimal.rb
131
+ - lib/active_support/core_ext/file/path.rb
132
+ - lib/active_support/core_ext/file/atomic.rb
133
+ - lib/active_support/core_ext/array.rb
134
+ - lib/active_support/core_ext/array/random_access.rb
135
+ - lib/active_support/core_ext/array/uniq_by.rb
49
136
  - lib/active_support/core_ext/array/access.rb
50
137
  - lib/active_support/core_ext/array/conversions.rb
138
+ - lib/active_support/core_ext/array/wrap.rb
51
139
  - lib/active_support/core_ext/array/extract_options.rb
52
140
  - lib/active_support/core_ext/array/grouping.rb
53
- - lib/active_support/core_ext/array/random_access.rb
54
- - lib/active_support/core_ext/array/uniq_by.rb
55
- - lib/active_support/core_ext/array/wrap.rb
56
- - lib/active_support/core_ext/array.rb
57
- - lib/active_support/core_ext/benchmark.rb
58
- - lib/active_support/core_ext/big_decimal/conversions.rb
59
- - lib/active_support/core_ext/big_decimal.rb
60
- - lib/active_support/core_ext/cgi/escape_skipping_slashes.rb
61
- - lib/active_support/core_ext/cgi.rb
62
- - lib/active_support/core_ext/class/attribute.rb
63
- - lib/active_support/core_ext/class/attribute_accessors.rb
64
- - lib/active_support/core_ext/class/delegating_attributes.rb
65
- - lib/active_support/core_ext/class/inheritable_attributes.rb
66
- - lib/active_support/core_ext/class/subclasses.rb
67
- - lib/active_support/core_ext/class.rb
68
- - lib/active_support/core_ext/date/acts_like.rb
69
- - lib/active_support/core_ext/date/calculations.rb
70
- - lib/active_support/core_ext/date/conversions.rb
71
- - lib/active_support/core_ext/date/freeze.rb
72
- - lib/active_support/core_ext/date/zones.rb
73
- - lib/active_support/core_ext/date_time/acts_like.rb
74
- - lib/active_support/core_ext/date_time/calculations.rb
75
- - lib/active_support/core_ext/date_time/conversions.rb
76
- - lib/active_support/core_ext/date_time/zones.rb
77
- - lib/active_support/core_ext/enumerable.rb
78
- - lib/active_support/core_ext/exception.rb
79
- - lib/active_support/core_ext/file/atomic.rb
80
- - lib/active_support/core_ext/file/path.rb
81
- - lib/active_support/core_ext/file.rb
82
- - lib/active_support/core_ext/float/rounding.rb
83
- - lib/active_support/core_ext/float.rb
84
- - lib/active_support/core_ext/hash/conversions.rb
85
- - lib/active_support/core_ext/hash/deep_merge.rb
86
- - lib/active_support/core_ext/hash/diff.rb
87
- - lib/active_support/core_ext/hash/except.rb
88
- - lib/active_support/core_ext/hash/indifferent_access.rb
89
- - lib/active_support/core_ext/hash/keys.rb
90
- - lib/active_support/core_ext/hash/reverse_merge.rb
91
- - lib/active_support/core_ext/hash/slice.rb
92
- - lib/active_support/core_ext/hash.rb
141
+ - lib/active_support/core_ext/uri.rb
93
142
  - lib/active_support/core_ext/integer/inflections.rb
94
- - lib/active_support/core_ext/integer/multiple.rb
95
143
  - lib/active_support/core_ext/integer/time.rb
96
- - lib/active_support/core_ext/integer.rb
97
- - lib/active_support/core_ext/kernel/agnostics.rb
98
- - lib/active_support/core_ext/kernel/debugger.rb
99
- - lib/active_support/core_ext/kernel/reporting.rb
100
- - lib/active_support/core_ext/kernel/requires.rb
101
- - lib/active_support/core_ext/kernel/singleton_class.rb
102
- - lib/active_support/core_ext/kernel.rb
103
- - lib/active_support/core_ext/load_error.rb
144
+ - lib/active_support/core_ext/integer/multiple.rb
104
145
  - lib/active_support/core_ext/logger.rb
105
- - lib/active_support/core_ext/module/aliasing.rb
106
- - lib/active_support/core_ext/module/anonymous.rb
107
- - lib/active_support/core_ext/module/attr_accessor_with_default.rb
108
- - lib/active_support/core_ext/module/attr_internal.rb
146
+ - lib/active_support/core_ext/benchmark.rb
147
+ - lib/active_support/core_ext/proc.rb
148
+ - lib/active_support/core_ext/range.rb
109
149
  - lib/active_support/core_ext/module/attribute_accessors.rb
150
+ - lib/active_support/core_ext/module/attr_accessor_with_default.rb
110
151
  - lib/active_support/core_ext/module/delegation.rb
111
152
  - lib/active_support/core_ext/module/deprecation.rb
112
- - lib/active_support/core_ext/module/introspection.rb
113
153
  - lib/active_support/core_ext/module/method_names.rb
114
- - lib/active_support/core_ext/module/reachable.rb
115
- - lib/active_support/core_ext/module/remove_method.rb
116
154
  - lib/active_support/core_ext/module/synchronization.rb
117
- - lib/active_support/core_ext/module.rb
118
- - lib/active_support/core_ext/name_error.rb
119
- - lib/active_support/core_ext/numeric/bytes.rb
120
- - lib/active_support/core_ext/numeric/time.rb
121
- - lib/active_support/core_ext/numeric.rb
122
- - lib/active_support/core_ext/object/acts_like.rb
123
- - lib/active_support/core_ext/object/blank.rb
124
- - lib/active_support/core_ext/object/conversions.rb
125
- - lib/active_support/core_ext/object/duplicable.rb
126
- - lib/active_support/core_ext/object/instance_variables.rb
127
- - lib/active_support/core_ext/object/returning.rb
128
- - lib/active_support/core_ext/object/to_json.rb
129
- - lib/active_support/core_ext/object/to_param.rb
130
- - lib/active_support/core_ext/object/to_query.rb
131
- - lib/active_support/core_ext/object/try.rb
132
- - lib/active_support/core_ext/object/with_options.rb
133
- - lib/active_support/core_ext/object.rb
134
- - lib/active_support/core_ext/proc.rb
135
- - lib/active_support/core_ext/process/daemon.rb
136
- - lib/active_support/core_ext/process.rb
137
- - lib/active_support/core_ext/range/blockless_step.rb
138
- - lib/active_support/core_ext/range/conversions.rb
139
- - lib/active_support/core_ext/range/include_range.rb
140
- - lib/active_support/core_ext/range/overlaps.rb
141
- - lib/active_support/core_ext/range.rb
142
- - lib/active_support/core_ext/regexp.rb
143
- - lib/active_support/core_ext/rexml.rb
144
- - lib/active_support/core_ext/string/access.rb
155
+ - lib/active_support/core_ext/module/remove_method.rb
156
+ - lib/active_support/core_ext/module/aliasing.rb
157
+ - lib/active_support/core_ext/module/reachable.rb
158
+ - lib/active_support/core_ext/module/anonymous.rb
159
+ - lib/active_support/core_ext/module/introspection.rb
160
+ - lib/active_support/core_ext/module/attr_internal.rb
145
161
  - lib/active_support/core_ext/string/behavior.rb
146
- - lib/active_support/core_ext/string/conversions.rb
147
- - lib/active_support/core_ext/string/encoding.rb
148
- - lib/active_support/core_ext/string/exclude.rb
149
- - lib/active_support/core_ext/string/filters.rb
162
+ - lib/active_support/core_ext/string/access.rb
150
163
  - lib/active_support/core_ext/string/inflections.rb
151
- - lib/active_support/core_ext/string/interpolation.rb
164
+ - lib/active_support/core_ext/string/conversions.rb
152
165
  - lib/active_support/core_ext/string/multibyte.rb
166
+ - lib/active_support/core_ext/string/filters.rb
153
167
  - lib/active_support/core_ext/string/output_safety.rb
168
+ - lib/active_support/core_ext/string/encoding.rb
154
169
  - lib/active_support/core_ext/string/starts_ends_with.rb
155
170
  - lib/active_support/core_ext/string/strip.rb
171
+ - lib/active_support/core_ext/string/exclude.rb
172
+ - lib/active_support/core_ext/string/interpolation.rb
156
173
  - lib/active_support/core_ext/string/xchar.rb
174
+ - lib/active_support/core_ext/process/daemon.rb
175
+ - lib/active_support/core_ext/range/include_range.rb
176
+ - lib/active_support/core_ext/range/blockless_step.rb
177
+ - lib/active_support/core_ext/range/conversions.rb
178
+ - lib/active_support/core_ext/range/overlaps.rb
179
+ - lib/active_support/core_ext/big_decimal/conversions.rb
180
+ - lib/active_support/core_ext/date_time/zones.rb
181
+ - lib/active_support/core_ext/date_time/acts_like.rb
182
+ - lib/active_support/core_ext/date_time/conversions.rb
183
+ - lib/active_support/core_ext/date_time/calculations.rb
184
+ - lib/active_support/core_ext/kernel.rb
185
+ - lib/active_support/core_ext/regexp.rb
157
186
  - lib/active_support/core_ext/string.rb
158
- - lib/active_support/core_ext/time/acts_like.rb
159
- - lib/active_support/core_ext/time/calculations.rb
160
- - lib/active_support/core_ext/time/conversions.rb
161
- - lib/active_support/core_ext/time/marshal.rb
162
- - lib/active_support/core_ext/time/publicize_conversion_methods.rb
163
- - lib/active_support/core_ext/time/zones.rb
164
- - lib/active_support/core_ext/uri.rb
165
- - lib/active_support/core_ext.rb
166
- - lib/active_support/dependencies/autoload.rb
167
- - lib/active_support/dependencies.rb
168
- - lib/active_support/deprecation/behaviors.rb
169
- - lib/active_support/deprecation/method_wrappers.rb
170
- - lib/active_support/deprecation/proxy_wrappers.rb
171
- - lib/active_support/deprecation/reporting.rb
172
- - lib/active_support/deprecation.rb
173
- - lib/active_support/descendants_tracker.rb
174
- - lib/active_support/duration.rb
175
- - lib/active_support/file_update_checker.rb
176
- - lib/active_support/gzip.rb
187
+ - lib/active_support/core_ext/class/inheritable_attributes.rb
188
+ - lib/active_support/core_ext/class/attribute_accessors.rb
189
+ - lib/active_support/core_ext/class/delegating_attributes.rb
190
+ - lib/active_support/core_ext/class/subclasses.rb
191
+ - lib/active_support/core_ext/class/attribute.rb
192
+ - lib/active_support/core_ext/enumerable.rb
193
+ - lib/active_support/core_ext/integer.rb
194
+ - lib/active_support/core_ext/process.rb
195
+ - lib/active_support/core_ext/hash.rb
196
+ - lib/active_support/core_ext/float.rb
197
+ - lib/active_support/core_ext/file.rb
198
+ - lib/active_support/core_ext/name_error.rb
199
+ - lib/active_support/core_ext/cgi/escape_skipping_slashes.rb
200
+ - lib/active_support/core_ext/hash/diff.rb
201
+ - lib/active_support/core_ext/hash/keys.rb
202
+ - lib/active_support/core_ext/hash/conversions.rb
203
+ - lib/active_support/core_ext/hash/deep_merge.rb
204
+ - lib/active_support/core_ext/hash/indifferent_access.rb
205
+ - lib/active_support/core_ext/hash/slice.rb
206
+ - lib/active_support/core_ext/hash/except.rb
207
+ - lib/active_support/core_ext/hash/reverse_merge.rb
208
+ - lib/active_support/core_ext/exception.rb
209
+ - lib/active_support/core_ext/object.rb
210
+ - lib/active_support/core_ext/object/try.rb
211
+ - lib/active_support/core_ext/object/to_param.rb
212
+ - lib/active_support/core_ext/object/returning.rb
213
+ - lib/active_support/core_ext/object/blank.rb
214
+ - lib/active_support/core_ext/object/duplicable.rb
215
+ - lib/active_support/core_ext/object/acts_like.rb
216
+ - lib/active_support/core_ext/object/conversions.rb
217
+ - lib/active_support/core_ext/object/with_options.rb
218
+ - lib/active_support/core_ext/object/to_query.rb
219
+ - lib/active_support/core_ext/object/to_json.rb
220
+ - lib/active_support/core_ext/object/instance_variables.rb
221
+ - lib/active_support/callbacks.rb
177
222
  - lib/active_support/hash_with_indifferent_access.rb
178
- - lib/active_support/i18n.rb
179
- - lib/active_support/i18n_railtie.rb
180
- - lib/active_support/inflections.rb
181
- - lib/active_support/inflector/inflections.rb
182
- - lib/active_support/inflector/methods.rb
183
- - lib/active_support/inflector/transliterate.rb
184
- - lib/active_support/inflector.rb
185
- - lib/active_support/json/backends/jsongem.rb
186
- - lib/active_support/json/backends/yajl.rb
187
- - lib/active_support/json/backends/yaml.rb
188
- - lib/active_support/json/decoding.rb
189
- - lib/active_support/json/encoding.rb
190
- - lib/active_support/json/variable.rb
191
- - lib/active_support/json.rb
192
- - lib/active_support/lazy_load_hooks.rb
193
- - lib/active_support/locale/en.yml
194
- - lib/active_support/log_subscriber/test_helper.rb
195
- - lib/active_support/log_subscriber.rb
196
- - lib/active_support/memoizable.rb
197
- - lib/active_support/message_encryptor.rb
198
- - lib/active_support/message_verifier.rb
199
- - lib/active_support/multibyte/chars.rb
200
- - lib/active_support/multibyte/exceptions.rb
201
- - lib/active_support/multibyte/unicode.rb
202
- - lib/active_support/multibyte/utils.rb
203
- - lib/active_support/multibyte.rb
204
- - lib/active_support/notifications/fanout.rb
205
- - lib/active_support/notifications/instrumenter.rb
206
223
  - lib/active_support/notifications.rb
207
- - lib/active_support/option_merger.rb
208
- - lib/active_support/ordered_hash.rb
209
- - lib/active_support/ordered_options.rb
210
- - lib/active_support/railtie.rb
211
- - lib/active_support/rescuable.rb
212
- - lib/active_support/ruby/shim.rb
213
- - lib/active_support/secure_random.rb
214
- - lib/active_support/string_inquirer.rb
215
- - lib/active_support/test_case.rb
216
- - lib/active_support/testing/assertions.rb
217
- - lib/active_support/testing/declarative.rb
218
- - lib/active_support/testing/default.rb
224
+ - lib/active_support/basic_object.rb
225
+ - lib/active_support/core_ext.rb
226
+ - lib/active_support/testing/setup_and_teardown.rb
227
+ - lib/active_support/testing/performance.rb
219
228
  - lib/active_support/testing/deprecation.rb
220
- - lib/active_support/testing/isolation.rb
229
+ - lib/active_support/testing/default.rb
230
+ - lib/active_support/testing/declarative.rb
221
231
  - lib/active_support/testing/pending.rb
222
- - lib/active_support/testing/performance.rb
223
- - lib/active_support/testing/setup_and_teardown.rb
224
- - lib/active_support/time/autoload.rb
225
- - lib/active_support/time.rb
226
- - lib/active_support/time_with_zone.rb
227
- - lib/active_support/values/time_zone.rb
228
- - lib/active_support/values/unicode_tables.dat
229
- - lib/active_support/version.rb
230
- - lib/active_support/whiny_nil.rb
231
- - lib/active_support/xml_mini/jdom.rb
232
- - lib/active_support/xml_mini/libxml.rb
233
- - lib/active_support/xml_mini/libxmlsax.rb
234
- - lib/active_support/xml_mini/nokogiri.rb
235
- - lib/active_support/xml_mini/nokogirisax.rb
236
- - lib/active_support/xml_mini/rexml.rb
237
- - lib/active_support/xml_mini.rb
232
+ - lib/active_support/testing/assertions.rb
233
+ - lib/active_support/testing/isolation.rb
234
+ - lib/active_support/i18n.rb
235
+ - lib/active_support/ruby/shim.rb
236
+ - lib/active_support/message_verifier.rb
237
+ - lib/active_support/secure_random.rb
238
238
  - lib/active_support.rb
239
239
  homepage: http://www.rubyonrails.org
240
240
  licenses: []
@@ -267,7 +267,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
267
267
  requirements: []
268
268
 
269
269
  rubyforge_project: activesupport
270
- rubygems_version: 1.8.8
270
+ rubygems_version: 1.8.6
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.