activejob 5.2.0.rc1 → 5.2.0.rc2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of activejob might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 22740a6da98359f759282d65708730726ce4ccee566733c2c73a5bbf4811808d
4
- data.tar.gz: '08bd369e143aec6108fcc72a3a4ec5eabccf28769c0ce856a5421d073cd25ceb'
3
+ metadata.gz: ed8ba0196c3b778749438735b86e40b2d2263d2bbae949af223a2e0076c1c9d4
4
+ data.tar.gz: 9781c5e610d12efaa3717c09d2b92c9be3df8365d35a7fd59c9cf129ea2fb3fa
5
5
  SHA512:
6
- metadata.gz: 1ae6dc0ae85e69b66c1bbc0b1815a79aefcb7a846d690322df90cacceb87303494eca3999836953cf650e932161ae406e5bc9d95f65aef599029a101f88434a4
7
- data.tar.gz: bd30c867a68f1d51c3440f944e465e391729dd3a735eaf2c279e0f01b66c698f949c8b108b2d7c2fb37d16bd68cb38d0be4aea1d612cb49b7cfd1a51188c6797
6
+ metadata.gz: 0612c12bc452b1051041c1935abed410fef351c91adf39e019bdbb532ad38160dfd5f049bc5ec808c81c7634a30149ac7f1fafeba991f5b8d69bf1c2c900761b
7
+ data.tar.gz: 951aaa78d82acfafbdb70533942ad980e5c598e75e4154faa1b2564f680943112da6a4ce01c9ce0f790437f97ca1de6104f375e91a778efde35b31d8ed96a221
@@ -1,3 +1,8 @@
1
+ ## Rails 5.2.0.rc2 (March 20, 2018) ##
2
+
3
+ * No changes.
4
+
5
+
1
6
  ## Rails 5.2.0.rc1 (January 30, 2018) ##
2
7
 
3
8
  * Allow block to be passed to `ActiveJob::Base.discard_on` to allow custom handling of discard jobs.
data/README.md CHANGED
@@ -102,7 +102,7 @@ The latest version of Active Job can be installed with RubyGems:
102
102
 
103
103
  Source code can be downloaded as part of the Rails project on GitHub:
104
104
 
105
- * https://github.com/rails/rails/tree/master/activejob
105
+ * https://github.com/rails/rails/tree/5-2-stable/activejob
106
106
 
107
107
  ## License
108
108
 
@@ -10,7 +10,7 @@ module ActiveJob
10
10
  MAJOR = 5
11
11
  MINOR = 2
12
12
  TINY = 0
13
- PRE = "rc1"
13
+ PRE = "rc2"
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: activejob
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.2.0.rc1
4
+ version: 5.2.0.rc2
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-01-30 00:00:00.000000000 Z
11
+ date: 2018-03-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 5.2.0.rc1
19
+ version: 5.2.0.rc2
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 5.2.0.rc1
26
+ version: 5.2.0.rc2
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: globalid
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -86,8 +86,8 @@ homepage: http://rubyonrails.org
86
86
  licenses:
87
87
  - MIT
88
88
  metadata:
89
- source_code_uri: https://github.com/rails/rails/tree/v5.2.0.rc1/activejob
90
- changelog_uri: https://github.com/rails/rails/blob/v5.2.0.rc1/activejob/CHANGELOG.md
89
+ source_code_uri: https://github.com/rails/rails/tree/v5.2.0.rc2/activejob
90
+ changelog_uri: https://github.com/rails/rails/blob/v5.2.0.rc2/activejob/CHANGELOG.md
91
91
  post_install_message:
92
92
  rdoc_options: []
93
93
  require_paths:
@@ -104,7 +104,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
104
104
  version: 1.3.1
105
105
  requirements: []
106
106
  rubyforge_project:
107
- rubygems_version: 2.7.3
107
+ rubygems_version: 2.7.6
108
108
  signing_key:
109
109
  specification_version: 4
110
110
  summary: Job framework with pluggable queues.