Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduce retry mechanism #308

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
jobs:
test-ruby:
docker:
- image: cimg/ruby:2.6.6
- image: cimg/ruby:3.0.7
steps:
- checkout
- run:
Expand Down Expand Up @@ -31,7 +31,7 @@ jobs:

lint-ruby:
docker:
- image: cimg/ruby:2.6.6
- image: cimg/ruby:3.0.7
steps:
- checkout
- run:
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@
/tmp/
.*.swp
*.gem
vendor/bundle
vendor/bundle
.idea/
14 changes: 12 additions & 2 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ AllCops:
#

Layout/DotPosition:
EnforcedStyle: trailing
Enabled: false
StyleGuide: https://relaxed.ruby.style/#layoutdotposition

Layout/FirstHashElementIndentation:
EnforcedStyle: consistent
Expand All @@ -36,6 +37,15 @@ Style/TrailingCommaInHashLiteral:
Style/TrailingCommaInArguments:
EnforcedStyleForMultiline: comma

Naming/MemoizedInstanceVariableName:
EnforcedStyleForLeadingUnderscores: required

RSpec/ExampleLength:
Max: 30

RSpec/NestedGroups:
Max: 6

#
# Disabled cops
#
Expand All @@ -53,7 +63,7 @@ Style/BlockComments:
Exclude:
- "spec/spec_helper.rb"

Metrics/BlockLength:
Layout/LineLength:
Exclude:
- "spec/**/*_spec.rb"

Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.6.6
3.0.7
Loading