activesupport 5.2.1.rc1 → 5.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7442d72c95a432786415141473463adf87f484d28d3724e821a6aa894adc9daf
4
- data.tar.gz: 674dda5800431fbb438197cb26c8549476fdad53c92f67f083a54e83356d4250
3
+ metadata.gz: ed043e138e8838ec2d558ec0c44d07fb0766e786505d8b47a3ff4436324947e9
4
+ data.tar.gz: bbf27317e93d9d06ef671919385221fe71b79592caa25dfeb3fea2fc1eb13c5a
5
5
  SHA512:
6
- metadata.gz: 16733628761c9c045d1840a024c5163de247cd45fdae1a37f71f1917df954514b62da03c3611968a9bda70b6d503b829bc7f1d80d85258c304fbb35ac41f876a
7
- data.tar.gz: eeacd40afbff738919197d3214ad98ff2c820468b8c397c1f158d3e8391c63069f1ebf03a600054199d16508940ac6b53f36a3baaf38eab3871e846cad3daaae
6
+ metadata.gz: f0fef7a114be34db5307ebf77805a344bc882f6decd82e955bdcd301a28a4f19237322b59995e3327f070434a6598c44a3e2bdc74d65e30b067b5211e49df9c0
7
+ data.tar.gz: 140ec4018419adfe6717ae114a1105d4f512339c4c2fb86aa273d36f8b8962fb4cd7abf24a660d49178f7df5f90e5ad454a12a1688328ea70639ff603ccf7813
@@ -1,4 +1,4 @@
1
- ## Rails 5.2.1.rc1 (July 30, 2018) ##
1
+ ## Rails 5.2.1 (August 07, 2018) ##
2
2
 
3
3
  * Redis cache store: `delete_matched` no longer blocks the Redis server.
4
4
  (Switches from evaled Lua to a batched SCAN + DEL loop.)
@@ -20,7 +20,7 @@
20
20
  * Fix `ActiveSupport::Cache#read_multi` bug with local cache enabled that was
21
21
  returning instances of `ActiveSupport::Cache::Entry` instead of the raw values.
22
22
 
23
- *Jasom Lee*
23
+ *Jason Lee*
24
24
 
25
25
 
26
26
  ## Rails 5.2.0 (April 09, 2018) ##
@@ -10,7 +10,7 @@ module ActiveSupport
10
10
  MAJOR = 5
11
11
  MINOR = 2
12
12
  TINY = 1
13
- PRE = "rc1"
13
+ PRE = nil
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activesupport
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.2.1.rc1
4
+ version: 5.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-07-30 00:00:00.000000000 Z
11
+ date: 2018-08-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: i18n
@@ -331,8 +331,8 @@ homepage: http://rubyonrails.org
331
331
  licenses:
332
332
  - MIT
333
333
  metadata:
334
- source_code_uri: https://github.com/rails/rails/tree/v5.2.1.rc1/activesupport
335
- changelog_uri: https://github.com/rails/rails/blob/v5.2.1.rc1/activesupport/CHANGELOG.md
334
+ source_code_uri: https://github.com/rails/rails/tree/v5.2.1/activesupport
335
+ changelog_uri: https://github.com/rails/rails/blob/v5.2.1/activesupport/CHANGELOG.md
336
336
  post_install_message:
337
337
  rdoc_options:
338
338
  - "--encoding"
@@ -346,12 +346,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
346
346
  version: 2.2.2
347
347
  required_rubygems_version: !ruby/object:Gem::Requirement
348
348
  requirements:
349
- - - ">"
349
+ - - ">="
350
350
  - !ruby/object:Gem::Version
351
- version: 1.3.1
351
+ version: '0'
352
352
  requirements: []
353
353
  rubyforge_project:
354
- rubygems_version: 2.7.3
354
+ rubygems_version: 2.7.6
355
355
  signing_key:
356
356
  specification_version: 4
357
357
  summary: A toolkit of support libraries and Ruby core extensions extracted from the