activesupport 3.2.22.2 → 3.2.22.3

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.

Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/lib/active_support/version.rb +1 -1
  3. metadata +43 -51
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 077e232b02e8926b23b7964088ae88f31b65fbfd
4
+ data.tar.gz: 7060aa5781a133f895b5c1a4f132f0a1ee49eaa2
5
+ SHA512:
6
+ metadata.gz: 84b83a68aa393cfa21c5df580e57bca8003c0dcf050f6ff4567e3b06d74655b9fddddb2fb1bb1b6b07a31b07606a11bac08011f817e89cf75fab525b8e597200
7
+ data.tar.gz: f5b0da53c71c62e6d990a29c37604cfe7a68551f81dd462441b7785ec840c5fad2af071c52918fead1353023f66dffbc66025d07252226863256c84c7bfbd0af
@@ -3,7 +3,7 @@ module ActiveSupport
3
3
  MAJOR = 3
4
4
  MINOR = 2
5
5
  TINY = 22
6
- PRE = "2"
6
+ PRE = "3"
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
9
9
  end
metadata CHANGED
@@ -1,52 +1,47 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activesupport
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.22.2
5
- prerelease:
4
+ version: 3.2.22.3
6
5
  platform: ruby
7
6
  authors:
8
7
  - David Heinemeier Hansson
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2016-02-29 00:00:00.000000000 Z
11
+ date: 2016-08-10 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: i18n
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ~>
17
+ - - "~>"
20
18
  - !ruby/object:Gem::Version
21
19
  version: '0.6'
22
- - - ! '>='
20
+ - - ">="
23
21
  - !ruby/object:Gem::Version
24
22
  version: 0.6.4
25
23
  type: :runtime
26
24
  prerelease: false
27
25
  version_requirements: !ruby/object:Gem::Requirement
28
- none: false
29
26
  requirements:
30
- - - ~>
27
+ - - "~>"
31
28
  - !ruby/object:Gem::Version
32
29
  version: '0.6'
33
- - - ! '>='
30
+ - - ">="
34
31
  - !ruby/object:Gem::Version
35
32
  version: 0.6.4
36
33
  - !ruby/object:Gem::Dependency
37
34
  name: multi_json
38
35
  requirement: !ruby/object:Gem::Requirement
39
- none: false
40
36
  requirements:
41
- - - ~>
37
+ - - "~>"
42
38
  - !ruby/object:Gem::Version
43
39
  version: '1.0'
44
40
  type: :runtime
45
41
  prerelease: false
46
42
  version_requirements: !ruby/object:Gem::Requirement
47
- none: false
48
43
  requirements:
49
- - - ~>
44
+ - - "~>"
50
45
  - !ruby/object:Gem::Version
51
46
  version: '1.0'
52
47
  description: A toolkit of support libraries and Ruby core extensions extracted from
@@ -60,6 +55,7 @@ files:
60
55
  - CHANGELOG.md
61
56
  - MIT-LICENSE
62
57
  - README.rdoc
58
+ - lib/active_support.rb
63
59
  - lib/active_support/all.rb
64
60
  - lib/active_support/backtrace_cleaner.rb
65
61
  - lib/active_support/base64.rb
@@ -67,15 +63,17 @@ files:
67
63
  - lib/active_support/benchmarkable.rb
68
64
  - lib/active_support/buffered_logger.rb
69
65
  - lib/active_support/builder.rb
66
+ - lib/active_support/cache.rb
70
67
  - lib/active_support/cache/file_store.rb
71
68
  - lib/active_support/cache/mem_cache_store.rb
72
69
  - lib/active_support/cache/memory_store.rb
73
70
  - lib/active_support/cache/null_store.rb
74
71
  - lib/active_support/cache/strategy/local_cache.rb
75
- - lib/active_support/cache.rb
76
72
  - lib/active_support/callbacks.rb
77
73
  - lib/active_support/concern.rb
78
74
  - lib/active_support/configurable.rb
75
+ - lib/active_support/core_ext.rb
76
+ - lib/active_support/core_ext/array.rb
79
77
  - lib/active_support/core_ext/array/access.rb
80
78
  - lib/active_support/core_ext/array/conversions.rb
81
79
  - lib/active_support/core_ext/array/extract_options.rb
@@ -84,15 +82,14 @@ files:
84
82
  - lib/active_support/core_ext/array/random_access.rb
85
83
  - lib/active_support/core_ext/array/uniq_by.rb
86
84
  - lib/active_support/core_ext/array/wrap.rb
87
- - lib/active_support/core_ext/array.rb
88
85
  - lib/active_support/core_ext/benchmark.rb
89
- - lib/active_support/core_ext/big_decimal/conversions.rb
90
86
  - lib/active_support/core_ext/big_decimal.rb
87
+ - lib/active_support/core_ext/big_decimal/conversions.rb
88
+ - lib/active_support/core_ext/class.rb
91
89
  - lib/active_support/core_ext/class/attribute.rb
92
90
  - lib/active_support/core_ext/class/attribute_accessors.rb
93
91
  - lib/active_support/core_ext/class/delegating_attributes.rb
94
92
  - lib/active_support/core_ext/class/subclasses.rb
95
- - lib/active_support/core_ext/class.rb
96
93
  - lib/active_support/core_ext/date/acts_like.rb
97
94
  - lib/active_support/core_ext/date/calculations.rb
98
95
  - lib/active_support/core_ext/date/conversions.rb
@@ -104,11 +101,12 @@ files:
104
101
  - lib/active_support/core_ext/date_time/zones.rb
105
102
  - lib/active_support/core_ext/enumerable.rb
106
103
  - lib/active_support/core_ext/exception.rb
104
+ - lib/active_support/core_ext/file.rb
107
105
  - lib/active_support/core_ext/file/atomic.rb
108
106
  - lib/active_support/core_ext/file/path.rb
109
- - lib/active_support/core_ext/file.rb
110
- - lib/active_support/core_ext/float/rounding.rb
111
107
  - lib/active_support/core_ext/float.rb
108
+ - lib/active_support/core_ext/float/rounding.rb
109
+ - lib/active_support/core_ext/hash.rb
112
110
  - lib/active_support/core_ext/hash/conversions.rb
113
111
  - lib/active_support/core_ext/hash/deep_dup.rb
114
112
  - lib/active_support/core_ext/hash/deep_merge.rb
@@ -118,19 +116,19 @@ files:
118
116
  - lib/active_support/core_ext/hash/keys.rb
119
117
  - lib/active_support/core_ext/hash/reverse_merge.rb
120
118
  - lib/active_support/core_ext/hash/slice.rb
121
- - lib/active_support/core_ext/hash.rb
119
+ - lib/active_support/core_ext/integer.rb
122
120
  - lib/active_support/core_ext/integer/inflections.rb
123
121
  - lib/active_support/core_ext/integer/multiple.rb
124
122
  - lib/active_support/core_ext/integer/time.rb
125
- - lib/active_support/core_ext/integer.rb
126
123
  - lib/active_support/core_ext/io.rb
124
+ - lib/active_support/core_ext/kernel.rb
127
125
  - lib/active_support/core_ext/kernel/agnostics.rb
128
126
  - lib/active_support/core_ext/kernel/debugger.rb
129
127
  - lib/active_support/core_ext/kernel/reporting.rb
130
128
  - lib/active_support/core_ext/kernel/singleton_class.rb
131
- - lib/active_support/core_ext/kernel.rb
132
129
  - lib/active_support/core_ext/load_error.rb
133
130
  - lib/active_support/core_ext/logger.rb
131
+ - lib/active_support/core_ext/module.rb
134
132
  - lib/active_support/core_ext/module/aliasing.rb
135
133
  - lib/active_support/core_ext/module/anonymous.rb
136
134
  - lib/active_support/core_ext/module/attr_internal.rb
@@ -143,11 +141,11 @@ files:
143
141
  - lib/active_support/core_ext/module/reachable.rb
144
142
  - lib/active_support/core_ext/module/remove_method.rb
145
143
  - lib/active_support/core_ext/module/synchronization.rb
146
- - lib/active_support/core_ext/module.rb
147
144
  - lib/active_support/core_ext/name_error.rb
145
+ - lib/active_support/core_ext/numeric.rb
148
146
  - lib/active_support/core_ext/numeric/bytes.rb
149
147
  - lib/active_support/core_ext/numeric/time.rb
150
- - lib/active_support/core_ext/numeric.rb
148
+ - lib/active_support/core_ext/object.rb
151
149
  - lib/active_support/core_ext/object/acts_like.rb
152
150
  - lib/active_support/core_ext/object/blank.rb
153
151
  - lib/active_support/core_ext/object/conversions.rb
@@ -159,18 +157,18 @@ files:
159
157
  - lib/active_support/core_ext/object/to_query.rb
160
158
  - lib/active_support/core_ext/object/try.rb
161
159
  - lib/active_support/core_ext/object/with_options.rb
162
- - lib/active_support/core_ext/object.rb
163
160
  - lib/active_support/core_ext/proc.rb
164
- - lib/active_support/core_ext/process/daemon.rb
165
161
  - lib/active_support/core_ext/process.rb
162
+ - lib/active_support/core_ext/process/daemon.rb
163
+ - lib/active_support/core_ext/range.rb
166
164
  - lib/active_support/core_ext/range/blockless_step.rb
167
165
  - lib/active_support/core_ext/range/conversions.rb
168
166
  - lib/active_support/core_ext/range/cover.rb
169
167
  - lib/active_support/core_ext/range/include_range.rb
170
168
  - lib/active_support/core_ext/range/overlaps.rb
171
- - lib/active_support/core_ext/range.rb
172
169
  - lib/active_support/core_ext/regexp.rb
173
170
  - lib/active_support/core_ext/rexml.rb
171
+ - lib/active_support/core_ext/string.rb
174
172
  - lib/active_support/core_ext/string/access.rb
175
173
  - lib/active_support/core_ext/string/behavior.rb
176
174
  - lib/active_support/core_ext/string/conversions.rb
@@ -185,7 +183,6 @@ files:
185
183
  - lib/active_support/core_ext/string/starts_ends_with.rb
186
184
  - lib/active_support/core_ext/string/strip.rb
187
185
  - lib/active_support/core_ext/string/xchar.rb
188
- - lib/active_support/core_ext/string.rb
189
186
  - lib/active_support/core_ext/time/acts_like.rb
190
187
  - lib/active_support/core_ext/time/calculations.rb
191
188
  - lib/active_support/core_ext/time/conversions.rb
@@ -193,14 +190,13 @@ files:
193
190
  - lib/active_support/core_ext/time/publicize_conversion_methods.rb
194
191
  - lib/active_support/core_ext/time/zones.rb
195
192
  - lib/active_support/core_ext/uri.rb
196
- - lib/active_support/core_ext.rb
197
- - lib/active_support/dependencies/autoload.rb
198
193
  - lib/active_support/dependencies.rb
194
+ - lib/active_support/dependencies/autoload.rb
195
+ - lib/active_support/deprecation.rb
199
196
  - lib/active_support/deprecation/behaviors.rb
200
197
  - lib/active_support/deprecation/method_wrappers.rb
201
198
  - lib/active_support/deprecation/proxy_wrappers.rb
202
199
  - lib/active_support/deprecation/reporting.rb
203
- - lib/active_support/deprecation.rb
204
200
  - lib/active_support/descendants_tracker.rb
205
201
  - lib/active_support/duration.rb
206
202
  - lib/active_support/file_update_checker.rb
@@ -210,29 +206,29 @@ files:
210
206
  - lib/active_support/i18n.rb
211
207
  - lib/active_support/i18n_railtie.rb
212
208
  - lib/active_support/inflections.rb
209
+ - lib/active_support/inflector.rb
213
210
  - lib/active_support/inflector/inflections.rb
214
211
  - lib/active_support/inflector/methods.rb
215
212
  - lib/active_support/inflector/transliterate.rb
216
- - lib/active_support/inflector.rb
213
+ - lib/active_support/json.rb
217
214
  - lib/active_support/json/decoding.rb
218
215
  - lib/active_support/json/encoding.rb
219
216
  - lib/active_support/json/variable.rb
220
- - lib/active_support/json.rb
221
217
  - lib/active_support/lazy_load_hooks.rb
222
218
  - lib/active_support/locale/en.yml
223
- - lib/active_support/log_subscriber/test_helper.rb
224
219
  - lib/active_support/log_subscriber.rb
220
+ - lib/active_support/log_subscriber/test_helper.rb
225
221
  - lib/active_support/memoizable.rb
226
222
  - lib/active_support/message_encryptor.rb
227
223
  - lib/active_support/message_verifier.rb
224
+ - lib/active_support/multibyte.rb
228
225
  - lib/active_support/multibyte/chars.rb
229
226
  - lib/active_support/multibyte/exceptions.rb
230
227
  - lib/active_support/multibyte/unicode.rb
231
228
  - lib/active_support/multibyte/utils.rb
232
- - lib/active_support/multibyte.rb
229
+ - lib/active_support/notifications.rb
233
230
  - lib/active_support/notifications/fanout.rb
234
231
  - lib/active_support/notifications/instrumenter.rb
235
- - lib/active_support/notifications.rb
236
232
  - lib/active_support/option_merger.rb
237
233
  - lib/active_support/ordered_hash.rb
238
234
  - lib/active_support/ordered_options.rb
@@ -249,57 +245,53 @@ files:
249
245
  - lib/active_support/testing/isolation.rb
250
246
  - lib/active_support/testing/mochaing.rb
251
247
  - lib/active_support/testing/pending.rb
248
+ - lib/active_support/testing/performance.rb
252
249
  - lib/active_support/testing/performance/jruby.rb
253
250
  - lib/active_support/testing/performance/rubinius.rb
251
+ - lib/active_support/testing/performance/ruby.rb
254
252
  - lib/active_support/testing/performance/ruby/mri.rb
255
253
  - lib/active_support/testing/performance/ruby/yarv.rb
256
- - lib/active_support/testing/performance/ruby.rb
257
- - lib/active_support/testing/performance.rb
258
254
  - lib/active_support/testing/setup_and_teardown.rb
259
- - lib/active_support/time/autoload.rb
260
255
  - lib/active_support/time.rb
256
+ - lib/active_support/time/autoload.rb
261
257
  - lib/active_support/time_with_zone.rb
262
258
  - lib/active_support/values/time_zone.rb
263
259
  - lib/active_support/values/unicode_tables.dat
264
260
  - lib/active_support/version.rb
265
261
  - lib/active_support/whiny_nil.rb
262
+ - lib/active_support/xml_mini.rb
266
263
  - lib/active_support/xml_mini/jdom.rb
267
264
  - lib/active_support/xml_mini/libxml.rb
268
265
  - lib/active_support/xml_mini/libxmlsax.rb
269
266
  - lib/active_support/xml_mini/nokogiri.rb
270
267
  - lib/active_support/xml_mini/nokogirisax.rb
271
268
  - lib/active_support/xml_mini/rexml.rb
272
- - lib/active_support/xml_mini.rb
273
- - lib/active_support.rb
274
269
  homepage: http://www.rubyonrails.org
275
270
  licenses:
276
271
  - MIT
272
+ metadata: {}
277
273
  post_install_message:
278
274
  rdoc_options:
279
- - --encoding
275
+ - "--encoding"
280
276
  - UTF-8
281
277
  require_paths:
282
278
  - lib
283
279
  required_ruby_version: !ruby/object:Gem::Requirement
284
- none: false
285
280
  requirements:
286
- - - ! '>='
281
+ - - ">="
287
282
  - !ruby/object:Gem::Version
288
283
  version: 1.8.7
289
284
  required_rubygems_version: !ruby/object:Gem::Requirement
290
- none: false
291
285
  requirements:
292
- - - ! '>='
286
+ - - ">="
293
287
  - !ruby/object:Gem::Version
294
288
  version: '0'
295
- segments:
296
- - 0
297
- hash: -3383921561260877876
298
289
  requirements: []
299
290
  rubyforge_project:
300
- rubygems_version: 1.8.23.2
291
+ rubygems_version: 2.6.6
301
292
  signing_key:
302
- specification_version: 3
293
+ specification_version: 4
303
294
  summary: A toolkit of support libraries and Ruby core extensions extracted from the
304
295
  Rails framework.
305
296
  test_files: []
297
+ has_rdoc: