Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ plugins:
- rubocop-rspec
- rubocop-thread_safety

# It's the lowest supported Ruby version
AllCops:
TargetRubyVersion: 2.3 # It's the lowest supported Ruby version
DisplayCopNames: true # Display the name of the failing cops
NewCops: enable

Expand Down
2 changes: 1 addition & 1 deletion lib/dynamoid/persistence/inc.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module Dynamoid
module Persistence
# @private
class Inc
def self.call(model_class, partition_key, sort_key = nil, counters)
def self.call(model_class, partition_key, sort_key = nil, counters) # rubocop:disable Style/OptionalArguments
new(model_class, partition_key, sort_key, counters).call
end

Expand Down
Loading