-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
208 additions
and
165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,5 @@ | |
# rspec failure tracking | ||
.rspec_status | ||
|
||
# Ignore Gemfile.lock | ||
Gemfile.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,114 @@ | ||
Style/Documentation: | ||
Enabled: false | ||
require: | ||
- rubocop-performance | ||
- rubocop-rspec | ||
|
||
inherit_mode: | ||
merge: | ||
- Exclude | ||
|
||
AllCops: | ||
NewCops: enable | ||
TargetRubyVersion: 3.1 | ||
Exclude: | ||
- "db/**/*" | ||
- "bin/**/*" | ||
- "tmp/**/*" | ||
- "log/**/*" | ||
- "vendor/**/*" | ||
- "spec/rails_helper.rb" | ||
|
||
Layout/FrozenStringLiteralComment: | ||
Enabled: true | ||
|
||
Layout/ArgumentAlignment: | ||
EnforcedStyle: with_fixed_indentation | ||
|
||
Layout/ArrayAlignment: | ||
EnforcedStyle: with_fixed_indentation | ||
|
||
Layout/EmptyLineBetweenDefs: | ||
AllowAdjacentOneLineDefs: true | ||
|
||
Layout/EndAlignment: | ||
EnforcedStyleAlignWith: variable | ||
|
||
Layout/FirstArgumentIndentation: | ||
EnforcedStyle: consistent | ||
|
||
Layout/FirstArrayElementIndentation: | ||
EnforcedStyle: consistent | ||
|
||
Layout/FirstHashElementIndentation: | ||
EnforcedStyle: consistent | ||
|
||
Layout/MultilineMethodCallIndentation: | ||
EnforcedStyle: indented | ||
|
||
Layout/MultilineOperationIndentation: | ||
EnforcedStyle: indented | ||
|
||
Layout/ParameterAlignment: | ||
EnforcedStyle: with_fixed_indentation | ||
|
||
Layout/SpaceBeforeBrackets: | ||
Enabled: false | ||
|
||
|
||
Lint/UnusedMethodArgument: | ||
AllowUnusedKeywordArguments: true | ||
|
||
Lint/AmbiguousBlockAssociation: | ||
Exclude: | ||
- 'spec/**/*' | ||
|
||
|
||
Naming/FileName: | ||
EnforcedStyle: snake_case | ||
Exclude: | ||
- 'lib/sidekiq-poison-pill-remedy.rb' | ||
|
||
Naming/VariableNumber: | ||
EnforcedStyle: snake_case | ||
|
||
|
||
RSpec/MultipleExpectations: | ||
Max: 20 | ||
|
||
RSpec/NestedGroups: | ||
Max: 10 | ||
|
||
RSpec/ExampleLength: | ||
Max: 15 | ||
Exclude: | ||
- 'spec/sidekiq_poison_pill_remedy_spec.rb' | ||
|
||
RSpec/VerifiedDoubles: | ||
Exclude: | ||
- 'spec/**/*.rb' | ||
|
||
|
||
Metrics/AbcSize: | ||
Max: 19 | ||
Max: 15 | ||
Exclude: | ||
- 'lib/sidekiq_poison_pill_remedy.rb' | ||
|
||
|
||
Metrics/MethodLength: | ||
Max: 20 | ||
Max: 20 | ||
|
||
Metrics/BlockLength: | ||
Exclude: | ||
- 'lib/sidekiq_poison_pill_remedy.rb' | ||
|
||
Layout/LineLength: | ||
Max: 125 | ||
|
||
|
||
Style/StringLiterals: | ||
EnforcedStyle: double_quotes | ||
ConsistentQuotesInMultiline: true | ||
|
||
Style/Documentation: | ||
Enabled: false | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
# frozen_string_literal: true | ||
|
||
source 'https://rubygems.org' | ||
source "https://rubygems.org" | ||
|
||
# Specify your gem's dependencies in sidekiq-poison-pill-remedy.gemspec | ||
gemspec | ||
|
||
gem 'rake', '~> 13.0' | ||
gem 'rspec', '~> 3.0' | ||
gem 'rubocop', '~> 1.40', require: false | ||
gem 'rubocop-performance' | ||
gem 'rubocop-rake' | ||
gem 'rubocop-rspec' | ||
gem 'sentry-ruby' | ||
gem "rake", "~> 13.0" | ||
gem "sentry-ruby" | ||
|
||
group :development, :test do | ||
gem "rspec", "~> 3.0" | ||
gem "rspec-sidekiq" | ||
gem "rubocop", "~> 1.40", require: false | ||
gem "rubocop-performance" | ||
gem "rubocop-rake" | ||
gem "rubocop-rspec" | ||
end |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# frozen_string_literal: true | ||
|
||
require "sidekiq" | ||
|
||
class MyJob | ||
include Sidekiq::Job | ||
sidekiq_options retry: 1 | ||
|
||
def perform(arg) | ||
raise StandardError, "Forced failure for testing" if arg == "fail" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'sidekiq_poison_pill_remedy' | ||
require "sidekiq_poison_pill_remedy" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# frozen_string_literal: true | ||
|
||
require "sidekiq" | ||
require "sidekiq/api" | ||
require "sidekiq/testing" | ||
require "rspec-sidekiq" | ||
require "sidekiq-poison-pill-remedy" | ||
require_relative "jobs/my_job" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,5 @@ | |
module SidekiqPoisonPillRemedy | ||
module Version | ||
end | ||
VERSION = '0.1.0' | ||
VERSION = "0.1.0" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
# frozen_string_literal: true | ||
|
||
require_relative 'lib/version' | ||
require_relative "lib/version" | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = 'sidekiq-poison-pill-remedy' | ||
spec.name = "sidekiq-poison-pill-remedy" | ||
spec.version = SidekiqPoisonPillRemedy::VERSION | ||
spec.authors = ['Karol Galanciak'] | ||
spec.email = ['[email protected]'] | ||
spec.authors = ["Karol Galanciak"] | ||
spec.email = ["[email protected]"] | ||
|
||
spec.summary = "Enhances Sidekiq's job processing by automatically handling and rescheduling poison pills" | ||
spec.description = "Enhances Sidekiq's job processing by automatically handling and rescheduling poison pills" | ||
spec.homepage = 'https://github.com/BookingSync/sidekiq-poison-pill-remedy' | ||
spec.license = 'MIT' | ||
spec.required_ruby_version = '>= 3.0.0' | ||
spec.homepage = "https://github.com/BookingSync/sidekiq-poison-pill-remedy" | ||
spec.license = "MIT" | ||
spec.required_ruby_version = ">= 3.1.0" | ||
|
||
spec.metadata['homepage_uri'] = spec.homepage | ||
spec.metadata['source_code_uri'] = 'https://github.com/BookingSync/sidekiq-poison-pill-remedy' | ||
spec.metadata['changelog_uri'] = 'https://github.com/BookingSync/sidekiq-poison-pill-remedy/blob/master/CHANGELOG.md' | ||
spec.metadata["homepage_uri"] = spec.homepage | ||
spec.metadata["source_code_uri"] = "https://github.com/BookingSync/sidekiq-poison-pill-remedy" | ||
spec.metadata["changelog_uri"] = "https://github.com/BookingSync/sidekiq-poison-pill-remedy/blob/master/CHANGELOG.md" | ||
|
||
# Specify which files should be added to the gem when it is released. | ||
# The `git ls-files -z` loads the files in the RubyGem that have been added into git. | ||
|
@@ -27,16 +27,15 @@ Gem::Specification.new do |spec| | |
f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor Gemfile]) | ||
end | ||
end | ||
spec.bindir = 'exe' | ||
spec.bindir = "exe" | ||
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } | ||
spec.require_paths = ['lib'] | ||
spec.require_paths = ["lib"] | ||
|
||
# Uncomment to register a new dependency of your gem | ||
# spec.add_dependency "example-gem", "~> 1.0" | ||
spec.add_dependency 'sidekiq' | ||
spec.add_development_dependency 'rspec-sidekiq' | ||
spec.add_dependency "sidekiq" | ||
|
||
# For more information and examples about making a new gem, check out our | ||
# guide at: https://bundler.io/guides/creating_gem.html | ||
spec.metadata['rubygems_mfa_required'] = 'true' | ||
spec.metadata["rubygems_mfa_required"] = "true" | ||
end |
Oops, something went wrong.