Skip to content
Snippets Groups Projects
Commit dfbe5ce4 authored by gfyoung's avatar gfyoung :thinking: Committed by Rémy Coutable
Browse files

Enable frozen string literals for app/workers/*.rb

parent c03701b9
No related branches found
No related tags found
1 merge request!6302CE upstream - 2018-06-27 09:22 UTC
Showing
with 40 additions and 0 deletions
# frozen_string_literal: true
class AdminEmailWorker
include ApplicationWorker
include CronjobQueue
......
# frozen_string_literal: true
class ArchiveTraceWorker
include ApplicationWorker
include PipelineBackgroundQueue
......
# frozen_string_literal: true
class AuthorizedProjectsWorker
include ApplicationWorker
prepend WaitableWorker
......
# frozen_string_literal: true
class BackgroundMigrationWorker
include ApplicationWorker
......
# frozen_string_literal: true
class BuildCoverageWorker
include ApplicationWorker
include PipelineQueue
......
# frozen_string_literal: true
class BuildFinishedWorker
include ApplicationWorker
include PipelineQueue
......
# frozen_string_literal: true
class BuildHooksWorker
include ApplicationWorker
include PipelineQueue
......
# frozen_string_literal: true
class BuildQueueWorker
include ApplicationWorker
include PipelineQueue
......
# frozen_string_literal: true
class BuildSuccessWorker
include ApplicationWorker
include PipelineQueue
......
# frozen_string_literal: true
class BuildTraceSectionsWorker
include ApplicationWorker
include PipelineQueue
......
# frozen_string_literal: true
class ClusterInstallAppWorker
include ApplicationWorker
include ClusterQueue
......
# frozen_string_literal: true
class ClusterProvisionWorker
include ApplicationWorker
include ClusterQueue
......
# frozen_string_literal: true
class ClusterWaitForAppInstallationWorker
include ApplicationWorker
include ClusterQueue
......
# frozen_string_literal: true
class ClusterWaitForIngressIpAddressWorker
include ApplicationWorker
include ClusterQueue
......
# frozen_string_literal: true
class CreateGpgSignatureWorker
include ApplicationWorker
......
# frozen_string_literal: true
class CreateNoteDiffFileWorker
include ApplicationWorker
......
# frozen_string_literal: true
class CreatePipelineWorker
include ApplicationWorker
include PipelineQueue
......
# frozen_string_literal: true
class DeleteMergedBranchesWorker
include ApplicationWorker
......
# frozen_string_literal: true
class DeleteUserWorker
include ApplicationWorker
......
# frozen_string_literal: true
class EmailReceiverWorker
include ApplicationWorker
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment