activesupport 4.1.0 → 4.1.1

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.

@@ -1,3 +1,10 @@
1
+ ## Rails 4.1.1 (May 6, 2014) ##
2
+
3
+ * No changes.
4
+
5
+
6
+ ## Rails 4.1.0 (April 8, 2014) ##
7
+
1
8
  * Added `Object#presence_in` to simplify value whitelisting.
2
9
 
3
10
  Before:
@@ -7,7 +7,7 @@ module ActiveSupport
7
7
  module VERSION
8
8
  MAJOR = 4
9
9
  MINOR = 1
10
- TINY = 0
10
+ TINY = 1
11
11
  PRE = nil
12
12
 
13
13
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
metadata CHANGED
@@ -1,95 +1,106 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activesupport
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.0
4
+ version: 4.1.1
5
+ prerelease:
5
6
  platform: ruby
6
7
  authors:
7
8
  - David Heinemeier Hansson
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2014-04-08 00:00:00.000000000 Z
12
+ date: 2014-05-06 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: i18n
15
16
  requirement: !ruby/object:Gem::Requirement
17
+ none: false
16
18
  requirements:
17
- - - "~>"
19
+ - - ~>
18
20
  - !ruby/object:Gem::Version
19
21
  version: '0.6'
20
- - - ">="
22
+ - - ! '>='
21
23
  - !ruby/object:Gem::Version
22
24
  version: 0.6.9
23
25
  type: :runtime
24
26
  prerelease: false
25
27
  version_requirements: !ruby/object:Gem::Requirement
28
+ none: false
26
29
  requirements:
27
- - - "~>"
30
+ - - ~>
28
31
  - !ruby/object:Gem::Version
29
32
  version: '0.6'
30
- - - ">="
33
+ - - ! '>='
31
34
  - !ruby/object:Gem::Version
32
35
  version: 0.6.9
33
36
  - !ruby/object:Gem::Dependency
34
37
  name: json
35
38
  requirement: !ruby/object:Gem::Requirement
39
+ none: false
36
40
  requirements:
37
- - - "~>"
41
+ - - ~>
38
42
  - !ruby/object:Gem::Version
39
43
  version: '1.7'
40
- - - ">="
44
+ - - ! '>='
41
45
  - !ruby/object:Gem::Version
42
46
  version: 1.7.7
43
47
  type: :runtime
44
48
  prerelease: false
45
49
  version_requirements: !ruby/object:Gem::Requirement
50
+ none: false
46
51
  requirements:
47
- - - "~>"
52
+ - - ~>
48
53
  - !ruby/object:Gem::Version
49
54
  version: '1.7'
50
- - - ">="
55
+ - - ! '>='
51
56
  - !ruby/object:Gem::Version
52
57
  version: 1.7.7
53
58
  - !ruby/object:Gem::Dependency
54
59
  name: tzinfo
55
60
  requirement: !ruby/object:Gem::Requirement
61
+ none: false
56
62
  requirements:
57
- - - "~>"
63
+ - - ~>
58
64
  - !ruby/object:Gem::Version
59
65
  version: '1.1'
60
66
  type: :runtime
61
67
  prerelease: false
62
68
  version_requirements: !ruby/object:Gem::Requirement
69
+ none: false
63
70
  requirements:
64
- - - "~>"
71
+ - - ~>
65
72
  - !ruby/object:Gem::Version
66
73
  version: '1.1'
67
74
  - !ruby/object:Gem::Dependency
68
75
  name: minitest
69
76
  requirement: !ruby/object:Gem::Requirement
77
+ none: false
70
78
  requirements:
71
- - - "~>"
79
+ - - ~>
72
80
  - !ruby/object:Gem::Version
73
81
  version: '5.1'
74
82
  type: :runtime
75
83
  prerelease: false
76
84
  version_requirements: !ruby/object:Gem::Requirement
85
+ none: false
77
86
  requirements:
78
- - - "~>"
87
+ - - ~>
79
88
  - !ruby/object:Gem::Version
80
89
  version: '5.1'
81
90
  - !ruby/object:Gem::Dependency
82
91
  name: thread_safe
83
92
  requirement: !ruby/object:Gem::Requirement
93
+ none: false
84
94
  requirements:
85
- - - "~>"
95
+ - - ~>
86
96
  - !ruby/object:Gem::Version
87
97
  version: '0.1'
88
98
  type: :runtime
89
99
  prerelease: false
90
100
  version_requirements: !ruby/object:Gem::Requirement
101
+ none: false
91
102
  requirements:
92
- - - "~>"
103
+ - - ~>
93
104
  - !ruby/object:Gem::Version
94
105
  version: '0.1'
95
106
  description: A toolkit of support libraries and Ruby core extensions extracted from
@@ -103,55 +114,52 @@ files:
103
114
  - CHANGELOG.md
104
115
  - MIT-LICENSE
105
116
  - README.rdoc
106
- - lib/active_support.rb
107
117
  - lib/active_support/all.rb
108
118
  - lib/active_support/backtrace_cleaner.rb
109
119
  - lib/active_support/benchmarkable.rb
110
120
  - lib/active_support/builder.rb
111
- - lib/active_support/cache.rb
112
121
  - lib/active_support/cache/file_store.rb
113
122
  - lib/active_support/cache/mem_cache_store.rb
114
123
  - lib/active_support/cache/memory_store.rb
115
124
  - lib/active_support/cache/null_store.rb
116
125
  - lib/active_support/cache/strategy/local_cache.rb
117
126
  - lib/active_support/cache/strategy/local_cache_middleware.rb
127
+ - lib/active_support/cache.rb
118
128
  - lib/active_support/callbacks.rb
119
129
  - lib/active_support/concern.rb
120
130
  - lib/active_support/concurrency/latch.rb
121
131
  - lib/active_support/configurable.rb
122
- - lib/active_support/core_ext.rb
123
- - lib/active_support/core_ext/array.rb
124
132
  - lib/active_support/core_ext/array/access.rb
125
133
  - lib/active_support/core_ext/array/conversions.rb
126
134
  - lib/active_support/core_ext/array/extract_options.rb
127
135
  - lib/active_support/core_ext/array/grouping.rb
128
136
  - lib/active_support/core_ext/array/prepend_and_append.rb
129
137
  - lib/active_support/core_ext/array/wrap.rb
138
+ - lib/active_support/core_ext/array.rb
130
139
  - lib/active_support/core_ext/benchmark.rb
131
- - lib/active_support/core_ext/big_decimal.rb
132
140
  - lib/active_support/core_ext/big_decimal/conversions.rb
133
141
  - lib/active_support/core_ext/big_decimal/yaml_conversions.rb
134
- - lib/active_support/core_ext/class.rb
142
+ - lib/active_support/core_ext/big_decimal.rb
135
143
  - lib/active_support/core_ext/class/attribute.rb
136
144
  - lib/active_support/core_ext/class/attribute_accessors.rb
137
145
  - lib/active_support/core_ext/class/delegating_attributes.rb
138
146
  - lib/active_support/core_ext/class/subclasses.rb
139
- - lib/active_support/core_ext/date.rb
147
+ - lib/active_support/core_ext/class.rb
140
148
  - lib/active_support/core_ext/date/acts_like.rb
141
149
  - lib/active_support/core_ext/date/calculations.rb
142
150
  - lib/active_support/core_ext/date/conversions.rb
143
151
  - lib/active_support/core_ext/date/zones.rb
152
+ - lib/active_support/core_ext/date.rb
144
153
  - lib/active_support/core_ext/date_and_time/calculations.rb
145
154
  - lib/active_support/core_ext/date_and_time/zones.rb
146
- - lib/active_support/core_ext/date_time.rb
147
155
  - lib/active_support/core_ext/date_time/acts_like.rb
148
156
  - lib/active_support/core_ext/date_time/calculations.rb
149
157
  - lib/active_support/core_ext/date_time/conversions.rb
150
158
  - lib/active_support/core_ext/date_time/zones.rb
159
+ - lib/active_support/core_ext/date_time.rb
151
160
  - lib/active_support/core_ext/enumerable.rb
152
- - lib/active_support/core_ext/file.rb
153
161
  - lib/active_support/core_ext/file/atomic.rb
154
- - lib/active_support/core_ext/hash.rb
162
+ - lib/active_support/core_ext/file.rb
155
163
  - lib/active_support/core_ext/hash/compact.rb
156
164
  - lib/active_support/core_ext/hash/conversions.rb
157
165
  - lib/active_support/core_ext/hash/deep_merge.rb
@@ -160,18 +168,18 @@ files:
160
168
  - lib/active_support/core_ext/hash/keys.rb
161
169
  - lib/active_support/core_ext/hash/reverse_merge.rb
162
170
  - lib/active_support/core_ext/hash/slice.rb
163
- - lib/active_support/core_ext/integer.rb
171
+ - lib/active_support/core_ext/hash.rb
164
172
  - lib/active_support/core_ext/integer/inflections.rb
165
173
  - lib/active_support/core_ext/integer/multiple.rb
166
174
  - lib/active_support/core_ext/integer/time.rb
167
- - lib/active_support/core_ext/kernel.rb
175
+ - lib/active_support/core_ext/integer.rb
168
176
  - lib/active_support/core_ext/kernel/agnostics.rb
169
177
  - lib/active_support/core_ext/kernel/debugger.rb
170
178
  - lib/active_support/core_ext/kernel/reporting.rb
171
179
  - lib/active_support/core_ext/kernel/singleton_class.rb
180
+ - lib/active_support/core_ext/kernel.rb
172
181
  - lib/active_support/core_ext/load_error.rb
173
182
  - lib/active_support/core_ext/marshal.rb
174
- - lib/active_support/core_ext/module.rb
175
183
  - lib/active_support/core_ext/module/aliasing.rb
176
184
  - lib/active_support/core_ext/module/anonymous.rb
177
185
  - lib/active_support/core_ext/module/attr_internal.rb
@@ -184,12 +192,12 @@ files:
184
192
  - lib/active_support/core_ext/module/qualified_const.rb
185
193
  - lib/active_support/core_ext/module/reachable.rb
186
194
  - lib/active_support/core_ext/module/remove_method.rb
195
+ - lib/active_support/core_ext/module.rb
187
196
  - lib/active_support/core_ext/name_error.rb
188
- - lib/active_support/core_ext/numeric.rb
189
197
  - lib/active_support/core_ext/numeric/bytes.rb
190
198
  - lib/active_support/core_ext/numeric/conversions.rb
191
199
  - lib/active_support/core_ext/numeric/time.rb
192
- - lib/active_support/core_ext/object.rb
200
+ - lib/active_support/core_ext/numeric.rb
193
201
  - lib/active_support/core_ext/object/acts_like.rb
194
202
  - lib/active_support/core_ext/object/blank.rb
195
203
  - lib/active_support/core_ext/object/conversions.rb
@@ -203,13 +211,13 @@ files:
203
211
  - lib/active_support/core_ext/object/to_query.rb
204
212
  - lib/active_support/core_ext/object/try.rb
205
213
  - lib/active_support/core_ext/object/with_options.rb
206
- - lib/active_support/core_ext/range.rb
214
+ - lib/active_support/core_ext/object.rb
207
215
  - lib/active_support/core_ext/range/conversions.rb
208
216
  - lib/active_support/core_ext/range/each.rb
209
217
  - lib/active_support/core_ext/range/include_range.rb
210
218
  - lib/active_support/core_ext/range/overlaps.rb
219
+ - lib/active_support/core_ext/range.rb
211
220
  - lib/active_support/core_ext/regexp.rb
212
- - lib/active_support/core_ext/string.rb
213
221
  - lib/active_support/core_ext/string/access.rb
214
222
  - lib/active_support/core_ext/string/behavior.rb
215
223
  - lib/active_support/core_ext/string/conversions.rb
@@ -223,23 +231,25 @@ files:
223
231
  - lib/active_support/core_ext/string/starts_ends_with.rb
224
232
  - lib/active_support/core_ext/string/strip.rb
225
233
  - lib/active_support/core_ext/string/zones.rb
234
+ - lib/active_support/core_ext/string.rb
226
235
  - lib/active_support/core_ext/struct.rb
227
236
  - lib/active_support/core_ext/thread.rb
228
- - lib/active_support/core_ext/time.rb
229
237
  - lib/active_support/core_ext/time/acts_like.rb
230
238
  - lib/active_support/core_ext/time/calculations.rb
231
239
  - lib/active_support/core_ext/time/conversions.rb
232
240
  - lib/active_support/core_ext/time/marshal.rb
233
241
  - lib/active_support/core_ext/time/zones.rb
242
+ - lib/active_support/core_ext/time.rb
234
243
  - lib/active_support/core_ext/uri.rb
235
- - lib/active_support/dependencies.rb
244
+ - lib/active_support/core_ext.rb
236
245
  - lib/active_support/dependencies/autoload.rb
237
- - lib/active_support/deprecation.rb
246
+ - lib/active_support/dependencies.rb
238
247
  - lib/active_support/deprecation/behaviors.rb
239
248
  - lib/active_support/deprecation/instance_delegator.rb
240
249
  - lib/active_support/deprecation/method_wrappers.rb
241
250
  - lib/active_support/deprecation/proxy_wrappers.rb
242
251
  - lib/active_support/deprecation/reporting.rb
252
+ - lib/active_support/deprecation.rb
243
253
  - lib/active_support/descendants_tracker.rb
244
254
  - lib/active_support/duration.rb
245
255
  - lib/active_support/file_update_checker.rb
@@ -250,29 +260,28 @@ files:
250
260
  - lib/active_support/i18n.rb
251
261
  - lib/active_support/i18n_railtie.rb
252
262
  - lib/active_support/inflections.rb
253
- - lib/active_support/inflector.rb
254
263
  - lib/active_support/inflector/inflections.rb
255
264
  - lib/active_support/inflector/methods.rb
256
265
  - lib/active_support/inflector/transliterate.rb
257
- - lib/active_support/json.rb
266
+ - lib/active_support/inflector.rb
258
267
  - lib/active_support/json/decoding.rb
259
268
  - lib/active_support/json/encoding.rb
269
+ - lib/active_support/json.rb
260
270
  - lib/active_support/key_generator.rb
261
271
  - lib/active_support/lazy_load_hooks.rb
262
272
  - lib/active_support/locale/en.yml
263
- - lib/active_support/log_subscriber.rb
264
273
  - lib/active_support/log_subscriber/test_helper.rb
274
+ - lib/active_support/log_subscriber.rb
265
275
  - lib/active_support/logger.rb
266
276
  - lib/active_support/logger_silence.rb
267
277
  - lib/active_support/message_encryptor.rb
268
278
  - lib/active_support/message_verifier.rb
269
- - lib/active_support/multibyte.rb
270
279
  - lib/active_support/multibyte/chars.rb
271
280
  - lib/active_support/multibyte/unicode.rb
272
- - lib/active_support/notifications.rb
281
+ - lib/active_support/multibyte.rb
273
282
  - lib/active_support/notifications/fanout.rb
274
283
  - lib/active_support/notifications/instrumenter.rb
275
- - lib/active_support/number_helper.rb
284
+ - lib/active_support/notifications.rb
276
285
  - lib/active_support/number_helper/number_converter.rb
277
286
  - lib/active_support/number_helper/number_to_currency_converter.rb
278
287
  - lib/active_support/number_helper/number_to_delimited_converter.rb
@@ -281,6 +290,7 @@ files:
281
290
  - lib/active_support/number_helper/number_to_percentage_converter.rb
282
291
  - lib/active_support/number_helper/number_to_phone_converter.rb
283
292
  - lib/active_support/number_helper/number_to_rounded_converter.rb
293
+ - lib/active_support/number_helper.rb
284
294
  - lib/active_support/option_merger.rb
285
295
  - lib/active_support/ordered_hash.rb
286
296
  - lib/active_support/ordered_options.rb
@@ -307,38 +317,40 @@ files:
307
317
  - lib/active_support/values/time_zone.rb
308
318
  - lib/active_support/values/unicode_tables.dat
309
319
  - lib/active_support/version.rb
310
- - lib/active_support/xml_mini.rb
311
320
  - lib/active_support/xml_mini/jdom.rb
312
321
  - lib/active_support/xml_mini/libxml.rb
313
322
  - lib/active_support/xml_mini/libxmlsax.rb
314
323
  - lib/active_support/xml_mini/nokogiri.rb
315
324
  - lib/active_support/xml_mini/nokogirisax.rb
316
325
  - lib/active_support/xml_mini/rexml.rb
326
+ - lib/active_support/xml_mini.rb
327
+ - lib/active_support.rb
317
328
  homepage: http://www.rubyonrails.org
318
329
  licenses:
319
330
  - MIT
320
- metadata: {}
321
331
  post_install_message:
322
332
  rdoc_options:
323
- - "--encoding"
333
+ - --encoding
324
334
  - UTF-8
325
335
  require_paths:
326
336
  - lib
327
337
  required_ruby_version: !ruby/object:Gem::Requirement
338
+ none: false
328
339
  requirements:
329
- - - ">="
340
+ - - ! '>='
330
341
  - !ruby/object:Gem::Version
331
342
  version: 1.9.3
332
343
  required_rubygems_version: !ruby/object:Gem::Requirement
344
+ none: false
333
345
  requirements:
334
- - - ">="
346
+ - - ! '>='
335
347
  - !ruby/object:Gem::Version
336
348
  version: '0'
337
349
  requirements: []
338
350
  rubyforge_project:
339
- rubygems_version: 2.2.0
351
+ rubygems_version: 1.8.23.2
340
352
  signing_key:
341
- specification_version: 4
353
+ specification_version: 3
342
354
  summary: A toolkit of support libraries and Ruby core extensions extracted from the
343
355
  Rails framework.
344
356
  test_files: []
checksums.yaml DELETED
@@ -1,7 +0,0 @@
1
- ---
2
- SHA1:
3
- metadata.gz: c936ce5651934fea6a06f172e8292e7b8fb4d23f
4
- data.tar.gz: ffed9ceb345137266ba5654dc932f1b701912f3f
5
- SHA512:
6
- metadata.gz: d97b61358252646f0bd110a609de014a449d5a0567c583a8a0b350134fa652c0d846bfd4dac4039c385fdd28423280ef91f59369e7a73af8a16ab25d604261ea
7
- data.tar.gz: d58a57c9ea281d9a9605a220e62206b7a3d0059d28844213c2d0cc1b9256180a8854ecb2efb73711e296b9349c2b1254f49dafc25b6a52cfe37d3e4ddd23d4be