activejob 6.1.1 → 6.1.3.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 35320cc54085adaeb2a5cdc283c0287992945e520ec24f2f6eb68690abe7f2c2
4
- data.tar.gz: 26aa5b5976bb96e5571a66464b3d25d239a1197167b87a2673c33e67ded91013
3
+ metadata.gz: 1657bde1facc3ef5a186a3005b11c8bc99f8833dea5d5766fa0f61af2804767c
4
+ data.tar.gz: 291b2715a38969cba75123be2314ade5e87822ab8ca8b1bed4fb1f539806d6c3
5
5
  SHA512:
6
- metadata.gz: 6cf40eaaa0a1b5003bdecaecd29a5deb1060998f405677fd1114599fcc95285d1173c2da125f3e5f3557e2773a71a77e49919e39b67a6cd8cdeeb01db37db48b
7
- data.tar.gz: aca36b4e3c1348d096dcd9f8e033f18705f648d5f3d092e9a6882b9fd8c6a24bc322bd417d0792c9f7af5c8bebb277250e5c552fdb8b2fce946a0cfefb671888
6
+ metadata.gz: fb7ecbfe7acd067fb2d384d123afb1570930a154d32b7bdea9c7cfc45f39bbb210ad063d74a4a5027d6f8fe01e71f5287a85e53cb7833da751adeae75872a57d
7
+ data.tar.gz: 836f4431086979a971a835cd1e15e4f9af9977fef94e514b1f34765f71353913bcf2a66d314a10754d3bb704931d88413243b8ea1d68ddf17ff36ec26e77f345
data/CHANGELOG.md CHANGED
@@ -1,3 +1,28 @@
1
+ ## Rails 6.1.3.2 (May 05, 2021) ##
2
+
3
+ * No changes.
4
+
5
+
6
+ ## Rails 6.1.3.1 (March 26, 2021) ##
7
+
8
+ * No changes.
9
+
10
+
11
+ ## Rails 6.1.3 (February 17, 2021) ##
12
+
13
+ * No changes.
14
+
15
+
16
+ ## Rails 6.1.2.1 (February 10, 2021) ##
17
+
18
+ * No changes.
19
+
20
+
21
+ ## Rails 6.1.2 (February 09, 2021) ##
22
+
23
+ * No changes.
24
+
25
+
1
26
  ## Rails 6.1.1 (January 07, 2021) ##
2
27
 
3
28
  * Make `retry_job` return the job that was created.
data/README.md CHANGED
@@ -106,7 +106,7 @@ The latest version of Active Job can be installed with RubyGems:
106
106
 
107
107
  Source code can be downloaded as part of the Rails project on GitHub:
108
108
 
109
- * https://github.com/rails/rails/tree/master/activejob
109
+ * https://github.com/rails/rails/tree/main/activejob
110
110
 
111
111
 
112
112
  ## License
@@ -29,7 +29,7 @@ module ActiveJob
29
29
 
30
30
  # Performs the job immediately. The job is not sent to the queuing adapter
31
31
  # but directly executed by blocking the execution of others until it's finished.
32
- # `perform_now` returns the value of your job's `perform` method.
32
+ # +perform_now+ returns the value of your job's +perform+ method.
33
33
  #
34
34
  # class MyJob < ActiveJob::Base
35
35
  # def perform
@@ -9,8 +9,8 @@ module ActiveJob
9
9
  module VERSION
10
10
  MAJOR = 6
11
11
  MINOR = 1
12
- TINY = 1
13
- PRE = nil
12
+ TINY = 3
13
+ PRE = "2"
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
@@ -26,7 +26,7 @@ module ActiveJob
26
26
  end
27
27
 
28
28
  # Returns string denoting the name of the configured queue adapter.
29
- # By default returns +"async"+.
29
+ # By default returns <tt>"async"</tt>.
30
30
  def queue_adapter_name
31
31
  _queue_adapter_name
32
32
  end
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require "active_support/core_ext/class/subclasses"
4
+ require "active_support/testing/assertions"
4
5
 
5
6
  module ActiveJob
6
7
  # Provides helper methods for testing Active Job
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: 6.1.1
4
+ version: 6.1.3.2
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: 2021-01-07 00:00:00.000000000 Z
11
+ date: 2021-05-05 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: 6.1.1
19
+ version: 6.1.3.2
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: 6.1.1
26
+ version: 6.1.3.2
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: globalid
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -99,10 +99,10 @@ licenses:
99
99
  - MIT
100
100
  metadata:
101
101
  bug_tracker_uri: https://github.com/rails/rails/issues
102
- changelog_uri: https://github.com/rails/rails/blob/v6.1.1/activejob/CHANGELOG.md
103
- documentation_uri: https://api.rubyonrails.org/v6.1.1/
102
+ changelog_uri: https://github.com/rails/rails/blob/v6.1.3.2/activejob/CHANGELOG.md
103
+ documentation_uri: https://api.rubyonrails.org/v6.1.3.2/
104
104
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
105
- source_code_uri: https://github.com/rails/rails/tree/v6.1.1/activejob
105
+ source_code_uri: https://github.com/rails/rails/tree/v6.1.3.2/activejob
106
106
  post_install_message:
107
107
  rdoc_options: []
108
108
  require_paths:
@@ -118,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
118
118
  - !ruby/object:Gem::Version
119
119
  version: '0'
120
120
  requirements: []
121
- rubygems_version: 3.2.3
121
+ rubygems_version: 3.1.2
122
122
  signing_key:
123
123
  specification_version: 4
124
124
  summary: Job framework with pluggable queues.