Skip to content

Commit 1ce2243

Browse files
Test formatting + modernize code.
1 parent 24f0db6 commit 1ce2243

34 files changed

+158
-134
lines changed

.mailmap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Shopify Inc. <samuel.williams@shopify.com>

async-job.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
77
spec.version = Async::Job::VERSION
88

99
spec.summary = "An asynchronous job queue for Ruby."
10-
spec.authors = ["Samuel Williams", "Alexey Ivanov"]
10+
spec.authors = ["Samuel Williams", "Shopify Inc.", "Alexey Ivanov"]
1111
spec.license = "MIT"
1212

1313
spec.cert_chain = ["release.cert"]

config/sus.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
# Released under the MIT License.
4-
# Copyright, 2024, by Samuel Williams.
4+
# Copyright, 2024-2025, by Samuel Williams.
55

66
require "covered/sus"
77
include Covered::Sus

examples/benchmark/async-job-client.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# frozen_string_literal: true
33

44
# Released under the MIT License.
5-
# Copyright, 2024, by Samuel Williams.
5+
# Copyright, 2024-2025, by Samuel Williams.
66

77
require_relative "config/environment"
88

examples/benchmark/async-job-server.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# frozen_string_literal: true
33

44
# Released under the MIT License.
5-
# Copyright, 2024, by Samuel Williams.
5+
# Copyright, 2024-2025, by Samuel Williams.
66

77
require "async/job/adapter/active_job/service"
88

examples/benchmark/benchmark_job.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
# Released under the MIT License.
4-
# Copyright, 2024, by Samuel Williams.
4+
# Copyright, 2024-2025, by Samuel Williams.
55

66
require "active_job"
77

examples/benchmark/config/environment.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
# Released under the MIT License.
4-
# Copyright, 2024, by Samuel Williams.
4+
# Copyright, 2024-2025, by Samuel Williams.
55

66
require "rails"
77
require "active_job/railtie"

examples/benchmark/sidekiq-client.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# frozen_string_literal: true
33

44
# Released under the MIT License.
5-
# Copyright, 2024, by Samuel Williams.
5+
# Copyright, 2024-2025, by Samuel Williams.
66

77
require "rails"
88
require "active_job/railtie"

examples/client_and_server/base_job.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Released under the MIT License.
44
# Copyright, 2024, by Alexey Ivanov.
5-
# Copyright, 2024, by Samuel Williams.
5+
# Copyright, 2024-2025, by Samuel Williams.
66

77
class BaseJob
88
def initialize(id, *args, scheduled_at: nil, **kwargs)

examples/client_and_server/client.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
# Released under the MIT License.
4-
# Copyright, 2024, by Samuel Williams.
4+
# Copyright, 2024-2025, by Samuel Williams.
55
# Copyright, 2024, by Alexey Ivanov.
66

77
require "async"

0 commit comments

Comments
 (0)