Skip to content

Commit febed9e

Browse files
vipulnswardclaude
andcommitted
style: fix RuboCop offenses - add empty lines after module inclusion
Add empty lines after module inclusion in 4 files to comply with Layout/EmptyLinesAfterModuleInclusion RuboCop rule. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent f8f091f commit febed9e

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

lib/uploadcare/entity/file_list.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ module Entity
1313
# @see Uploadcare::Entity::Decorator::Paginator
1414
class FileList < ApiStruct::Entity
1515
include Uploadcare::Entity::Decorator::Paginator
16+
1617
client_service Client::FileListClient
1718

1819
attr_entity :next, :previous, :total, :per_page

lib/uploadcare/entity/group_list.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ module Entity
1313
# @see Uploadcare::Entity::Decorator::Paginator
1414
class GroupList < Entity
1515
include Uploadcare::Entity::Decorator::Paginator
16+
1617
client_service RestGroupClient, only: :list
1718

1819
attr_entity :next, :previous, :total, :per_page, :results

spec/spec_helper.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
RSpec.configure do |config|
1212
include Uploadcare::Exception
13+
1314
# Enable flags like --only-failures and --next-failure
1415
config.example_status_persistence_file_path = '.rspec_status'
1516

spec/uploadcare/concerns/throttle_handler_spec.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
module Uploadcare
77
RSpec.describe Concerns::ThrottleHandler do
88
include Concerns::ThrottleHandler
9+
910
def sleep(_time); end
1011

1112
before { @called = 0 }

0 commit comments

Comments
 (0)