activesupport 3.0.11 → 3.0.12.rc1

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.

@@ -6,7 +6,7 @@ class DateTime
6
6
  class << self
7
7
  # DateTimes aren't aware of DST rules, so use a consistent non-DST offset when creating a DateTime with an offset in the local zone
8
8
  def local_offset
9
- ::Time.local(2007).utc_offset.to_r / 86400
9
+ ::Time.local(2012).utc_offset.to_r / 86400
10
10
  end
11
11
 
12
12
  # Returns <tt>Time.zone.now.to_datetime</tt> when <tt>Time.zone</tt> or <tt>config.time_zone</tt> are set, otherwise returns <tt>Time.now.to_datetime</tt>.
@@ -232,11 +232,15 @@ module ActiveSupport #:nodoc:
232
232
  end
233
233
 
234
234
  def load(file, *)
235
- load_dependency(file) { super }
235
+ result = false
236
+ load_dependency(file) { result = super }
237
+ result
236
238
  end
237
239
 
238
240
  def require(file, *)
239
- load_dependency(file) { super }
241
+ result = false
242
+ load_dependency(file) { result = super }
243
+ result
240
244
  end
241
245
 
242
246
  # Mark the given constant as unloadable. Unloadable constants are removed each
@@ -2,8 +2,8 @@ module ActiveSupport
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 3
4
4
  MINOR = 0
5
- TINY = 11
6
- PRE = nil
5
+ TINY = 12
6
+ PRE = "rc1"
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
9
9
  end
metadata CHANGED
@@ -1,13 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activesupport
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
5
- prerelease:
4
+ hash: 15424023
5
+ prerelease: 7
6
6
  segments:
7
7
  - 3
8
8
  - 0
9
- - 11
10
- version: 3.0.11
9
+ - 12
10
+ - rc
11
+ - 1
12
+ version: 3.0.12.rc1
11
13
  platform: ruby
12
14
  authors:
13
15
  - David Heinemeier Hansson
@@ -15,7 +17,7 @@ autorequire:
15
17
  bindir: bin
16
18
  cert_chain: []
17
19
 
18
- date: 2011-11-18 00:00:00 Z
20
+ date: 2012-02-22 00:00:00 Z
19
21
  dependencies: []
20
22
 
21
23
  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 +31,212 @@ extra_rdoc_files: []
29
31
  files:
30
32
  - CHANGELOG
31
33
  - README.rdoc
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
34
+ - lib/active_support/all.rb
35
+ - lib/active_support/backtrace_cleaner.rb
36
+ - lib/active_support/base64.rb
37
+ - lib/active_support/basic_object.rb
38
+ - lib/active_support/benchmarkable.rb
39
+ - lib/active_support/buffered_logger.rb
40
+ - lib/active_support/builder.rb
41
+ - lib/active_support/cache/compressed_mem_cache_store.rb
42
+ - lib/active_support/cache/file_store.rb
40
43
  - lib/active_support/cache/mem_cache_store.rb
41
44
  - lib/active_support/cache/memory_store.rb
42
- - lib/active_support/cache/synchronized_memory_store.rb
43
- - lib/active_support/cache/file_store.rb
44
45
  - 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
46
+ - lib/active_support/cache/synchronized_memory_store.rb
47
+ - lib/active_support/cache.rb
48
+ - lib/active_support/callbacks.rb
49
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
97
50
  - 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
136
51
  - lib/active_support/core_ext/array/access.rb
137
52
  - lib/active_support/core_ext/array/conversions.rb
138
- - lib/active_support/core_ext/array/wrap.rb
139
53
  - lib/active_support/core_ext/array/extract_options.rb
140
54
  - lib/active_support/core_ext/array/grouping.rb
141
- - lib/active_support/core_ext/uri.rb
55
+ - lib/active_support/core_ext/array/random_access.rb
56
+ - lib/active_support/core_ext/array/uniq_by.rb
57
+ - lib/active_support/core_ext/array/wrap.rb
58
+ - lib/active_support/core_ext/array.rb
59
+ - lib/active_support/core_ext/benchmark.rb
60
+ - lib/active_support/core_ext/big_decimal/conversions.rb
61
+ - lib/active_support/core_ext/big_decimal.rb
62
+ - lib/active_support/core_ext/cgi/escape_skipping_slashes.rb
63
+ - lib/active_support/core_ext/cgi.rb
64
+ - lib/active_support/core_ext/class/attribute.rb
65
+ - lib/active_support/core_ext/class/attribute_accessors.rb
66
+ - lib/active_support/core_ext/class/delegating_attributes.rb
67
+ - lib/active_support/core_ext/class/inheritable_attributes.rb
68
+ - lib/active_support/core_ext/class/subclasses.rb
69
+ - lib/active_support/core_ext/class.rb
70
+ - lib/active_support/core_ext/date/acts_like.rb
71
+ - lib/active_support/core_ext/date/calculations.rb
72
+ - lib/active_support/core_ext/date/conversions.rb
73
+ - lib/active_support/core_ext/date/freeze.rb
74
+ - lib/active_support/core_ext/date/zones.rb
75
+ - lib/active_support/core_ext/date_time/acts_like.rb
76
+ - lib/active_support/core_ext/date_time/calculations.rb
77
+ - lib/active_support/core_ext/date_time/conversions.rb
78
+ - lib/active_support/core_ext/date_time/zones.rb
79
+ - lib/active_support/core_ext/enumerable.rb
80
+ - lib/active_support/core_ext/exception.rb
81
+ - lib/active_support/core_ext/file/atomic.rb
82
+ - lib/active_support/core_ext/file/path.rb
83
+ - lib/active_support/core_ext/file.rb
84
+ - lib/active_support/core_ext/float/rounding.rb
85
+ - lib/active_support/core_ext/float.rb
86
+ - lib/active_support/core_ext/hash/conversions.rb
87
+ - lib/active_support/core_ext/hash/deep_merge.rb
88
+ - lib/active_support/core_ext/hash/diff.rb
89
+ - lib/active_support/core_ext/hash/except.rb
90
+ - lib/active_support/core_ext/hash/indifferent_access.rb
91
+ - lib/active_support/core_ext/hash/keys.rb
92
+ - lib/active_support/core_ext/hash/reverse_merge.rb
93
+ - lib/active_support/core_ext/hash/slice.rb
94
+ - lib/active_support/core_ext/hash.rb
142
95
  - lib/active_support/core_ext/integer/inflections.rb
143
- - lib/active_support/core_ext/integer/time.rb
144
96
  - lib/active_support/core_ext/integer/multiple.rb
97
+ - lib/active_support/core_ext/integer/time.rb
98
+ - lib/active_support/core_ext/integer.rb
99
+ - lib/active_support/core_ext/kernel/agnostics.rb
100
+ - lib/active_support/core_ext/kernel/debugger.rb
101
+ - lib/active_support/core_ext/kernel/reporting.rb
102
+ - lib/active_support/core_ext/kernel/requires.rb
103
+ - lib/active_support/core_ext/kernel/singleton_class.rb
104
+ - lib/active_support/core_ext/kernel.rb
105
+ - lib/active_support/core_ext/load_error.rb
145
106
  - lib/active_support/core_ext/logger.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
149
- - lib/active_support/core_ext/module/attribute_accessors.rb
107
+ - lib/active_support/core_ext/module/aliasing.rb
108
+ - lib/active_support/core_ext/module/anonymous.rb
150
109
  - lib/active_support/core_ext/module/attr_accessor_with_default.rb
110
+ - lib/active_support/core_ext/module/attr_internal.rb
111
+ - lib/active_support/core_ext/module/attribute_accessors.rb
151
112
  - lib/active_support/core_ext/module/delegation.rb
152
113
  - lib/active_support/core_ext/module/deprecation.rb
114
+ - lib/active_support/core_ext/module/introspection.rb
153
115
  - lib/active_support/core_ext/module/method_names.rb
154
- - lib/active_support/core_ext/module/synchronization.rb
155
- - lib/active_support/core_ext/module/remove_method.rb
156
- - lib/active_support/core_ext/module/aliasing.rb
157
116
  - 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
161
- - lib/active_support/core_ext/string/behavior.rb
117
+ - lib/active_support/core_ext/module/remove_method.rb
118
+ - lib/active_support/core_ext/module/synchronization.rb
119
+ - lib/active_support/core_ext/module.rb
120
+ - lib/active_support/core_ext/name_error.rb
121
+ - lib/active_support/core_ext/numeric/bytes.rb
122
+ - lib/active_support/core_ext/numeric/time.rb
123
+ - lib/active_support/core_ext/numeric.rb
124
+ - lib/active_support/core_ext/object/acts_like.rb
125
+ - lib/active_support/core_ext/object/blank.rb
126
+ - lib/active_support/core_ext/object/conversions.rb
127
+ - lib/active_support/core_ext/object/duplicable.rb
128
+ - lib/active_support/core_ext/object/instance_variables.rb
129
+ - lib/active_support/core_ext/object/returning.rb
130
+ - lib/active_support/core_ext/object/to_json.rb
131
+ - lib/active_support/core_ext/object/to_param.rb
132
+ - lib/active_support/core_ext/object/to_query.rb
133
+ - lib/active_support/core_ext/object/try.rb
134
+ - lib/active_support/core_ext/object/with_options.rb
135
+ - lib/active_support/core_ext/object.rb
136
+ - lib/active_support/core_ext/proc.rb
137
+ - lib/active_support/core_ext/process/daemon.rb
138
+ - lib/active_support/core_ext/process.rb
139
+ - lib/active_support/core_ext/range/blockless_step.rb
140
+ - lib/active_support/core_ext/range/conversions.rb
141
+ - lib/active_support/core_ext/range/include_range.rb
142
+ - lib/active_support/core_ext/range/overlaps.rb
143
+ - lib/active_support/core_ext/range.rb
144
+ - lib/active_support/core_ext/regexp.rb
145
+ - lib/active_support/core_ext/rexml.rb
162
146
  - lib/active_support/core_ext/string/access.rb
163
- - lib/active_support/core_ext/string/inflections.rb
147
+ - lib/active_support/core_ext/string/behavior.rb
164
148
  - lib/active_support/core_ext/string/conversions.rb
165
- - lib/active_support/core_ext/string/multibyte.rb
149
+ - lib/active_support/core_ext/string/encoding.rb
150
+ - lib/active_support/core_ext/string/exclude.rb
166
151
  - lib/active_support/core_ext/string/filters.rb
152
+ - lib/active_support/core_ext/string/inflections.rb
153
+ - lib/active_support/core_ext/string/interpolation.rb
154
+ - lib/active_support/core_ext/string/multibyte.rb
167
155
  - lib/active_support/core_ext/string/output_safety.rb
168
- - lib/active_support/core_ext/string/encoding.rb
169
156
  - lib/active_support/core_ext/string/starts_ends_with.rb
170
157
  - 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
173
158
  - 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
186
159
  - lib/active_support/core_ext/string.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
222
- - lib/active_support/hash_with_indifferent_access.rb
223
- - lib/active_support/notifications.rb
224
- - lib/active_support/basic_object.rb
160
+ - lib/active_support/core_ext/time/acts_like.rb
161
+ - lib/active_support/core_ext/time/calculations.rb
162
+ - lib/active_support/core_ext/time/conversions.rb
163
+ - lib/active_support/core_ext/time/marshal.rb
164
+ - lib/active_support/core_ext/time/publicize_conversion_methods.rb
165
+ - lib/active_support/core_ext/time/zones.rb
166
+ - lib/active_support/core_ext/uri.rb
225
167
  - lib/active_support/core_ext.rb
226
- - lib/active_support/testing/setup_and_teardown.rb
227
- - lib/active_support/testing/performance.rb
228
- - lib/active_support/testing/deprecation.rb
229
- - lib/active_support/testing/default.rb
230
- - lib/active_support/testing/declarative.rb
231
- - lib/active_support/testing/pending.rb
232
- - lib/active_support/testing/assertions.rb
233
- - lib/active_support/testing/isolation.rb
168
+ - lib/active_support/dependencies/autoload.rb
169
+ - lib/active_support/dependencies.rb
170
+ - lib/active_support/deprecation/behaviors.rb
171
+ - lib/active_support/deprecation/method_wrappers.rb
172
+ - lib/active_support/deprecation/proxy_wrappers.rb
173
+ - lib/active_support/deprecation/reporting.rb
174
+ - lib/active_support/deprecation.rb
175
+ - lib/active_support/descendants_tracker.rb
176
+ - lib/active_support/duration.rb
177
+ - lib/active_support/file_update_checker.rb
178
+ - lib/active_support/gzip.rb
179
+ - lib/active_support/hash_with_indifferent_access.rb
234
180
  - lib/active_support/i18n.rb
235
- - lib/active_support/ruby/shim.rb
181
+ - lib/active_support/i18n_railtie.rb
182
+ - lib/active_support/inflections.rb
183
+ - lib/active_support/inflector/inflections.rb
184
+ - lib/active_support/inflector/methods.rb
185
+ - lib/active_support/inflector/transliterate.rb
186
+ - lib/active_support/inflector.rb
187
+ - lib/active_support/json/backends/jsongem.rb
188
+ - lib/active_support/json/backends/yajl.rb
189
+ - lib/active_support/json/backends/yaml.rb
190
+ - lib/active_support/json/decoding.rb
191
+ - lib/active_support/json/encoding.rb
192
+ - lib/active_support/json/variable.rb
193
+ - lib/active_support/json.rb
194
+ - lib/active_support/lazy_load_hooks.rb
195
+ - lib/active_support/locale/en.yml
196
+ - lib/active_support/log_subscriber/test_helper.rb
197
+ - lib/active_support/log_subscriber.rb
198
+ - lib/active_support/memoizable.rb
199
+ - lib/active_support/message_encryptor.rb
236
200
  - lib/active_support/message_verifier.rb
201
+ - lib/active_support/multibyte/chars.rb
202
+ - lib/active_support/multibyte/exceptions.rb
203
+ - lib/active_support/multibyte/unicode.rb
204
+ - lib/active_support/multibyte/utils.rb
205
+ - lib/active_support/multibyte.rb
206
+ - lib/active_support/notifications/fanout.rb
207
+ - lib/active_support/notifications/instrumenter.rb
208
+ - lib/active_support/notifications.rb
209
+ - lib/active_support/option_merger.rb
210
+ - lib/active_support/ordered_hash.rb
211
+ - lib/active_support/ordered_options.rb
212
+ - lib/active_support/railtie.rb
213
+ - lib/active_support/rescuable.rb
214
+ - lib/active_support/ruby/shim.rb
237
215
  - lib/active_support/secure_random.rb
216
+ - lib/active_support/string_inquirer.rb
217
+ - lib/active_support/test_case.rb
218
+ - lib/active_support/testing/assertions.rb
219
+ - lib/active_support/testing/declarative.rb
220
+ - lib/active_support/testing/default.rb
221
+ - lib/active_support/testing/deprecation.rb
222
+ - lib/active_support/testing/isolation.rb
223
+ - lib/active_support/testing/pending.rb
224
+ - lib/active_support/testing/performance.rb
225
+ - lib/active_support/testing/setup_and_teardown.rb
226
+ - lib/active_support/time/autoload.rb
227
+ - lib/active_support/time.rb
228
+ - lib/active_support/time_with_zone.rb
229
+ - lib/active_support/values/time_zone.rb
230
+ - lib/active_support/values/unicode_tables.dat
231
+ - lib/active_support/version.rb
232
+ - lib/active_support/whiny_nil.rb
233
+ - lib/active_support/xml_mini/jdom.rb
234
+ - lib/active_support/xml_mini/libxml.rb
235
+ - lib/active_support/xml_mini/libxmlsax.rb
236
+ - lib/active_support/xml_mini/nokogiri.rb
237
+ - lib/active_support/xml_mini/nokogirisax.rb
238
+ - lib/active_support/xml_mini/rexml.rb
239
+ - lib/active_support/xml_mini.rb
238
240
  - lib/active_support.rb
239
241
  homepage: http://www.rubyonrails.org
240
242
  licenses: []
@@ -258,16 +260,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
258
260
  required_rubygems_version: !ruby/object:Gem::Requirement
259
261
  none: false
260
262
  requirements:
261
- - - ">="
263
+ - - ">"
262
264
  - !ruby/object:Gem::Version
263
- hash: 3
265
+ hash: 25
264
266
  segments:
265
- - 0
266
- version: "0"
267
+ - 1
268
+ - 3
269
+ - 1
270
+ version: 1.3.1
267
271
  requirements: []
268
272
 
269
273
  rubyforge_project: activesupport
270
- rubygems_version: 1.8.6
274
+ rubygems_version: 1.8.16
271
275
  signing_key:
272
276
  specification_version: 3
273
277
  summary: A toolkit of support libraries and Ruby core extensions extracted from the Rails framework.