Fix rubocop errors

This commit is contained in:
ari
2022-12-04 14:43:08 +03:00
parent cbc99c2007
commit d729bf09cc
8 changed files with 35 additions and 35 deletions

View File

@@ -1,24 +1,23 @@
# frozen_string_literal: true
require_relative "rabbit_carrots/version"
require_relative 'rabbit_carrots/version'
require 'rabbit_carrots/connection'
require 'rabbit_carrots/configuration'
require 'rabbit_carrots/railtie' if defined?(Rails)
module RabbitCarrots
class Error < StandardError; end
module EventHandlers
module Errors
class IrrelevantMessage < StandardError
end
class NackMessage < StandardError
end
class NackAndRequeueMessage < StandardError
end
end
end
end

View File

@@ -10,4 +10,4 @@ module RabbitCarrots
Dir.glob("#{path}/tasks/**/*.rake").each { |f| load f }
end
end
end
end

View File

@@ -1,5 +1,5 @@
# frozen_string_literal: true
module RabbitCarrots
VERSION = "0.1.15"
VERSION = '0.1.15'
end