Skip to content

Commit

Permalink
Run rubocop -a after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
iangmaia committed Feb 1, 2024
1 parent 3d8a128 commit a16bb6f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def self.file_dependencies
end
end

self.files_to_copy.map { |o| o.file } + expanded_file_dependencies
files_to_copy.map { |o| o.file } + expanded_file_dependencies
end

## If we specify a directory in `file_dependencies` instead of listing each file
Expand Down
10 changes: 5 additions & 5 deletions lib/fastlane/plugin/wpmreleasetoolkit/models/configuration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ def add_file_to_copy(source, destination, encrypt: false)

def to_hash
{
project_name: self.project_name,
branch: self.branch,
pinned_hash: self.pinned_hash,
files_to_copy: self.files_to_copy.map { |f| f.to_hash },
file_dependencies: self.file_dependencies
project_name: project_name,
branch: branch,
pinned_hash: pinned_hash,
files_to_copy: files_to_copy.map { |f| f.to_hash },
file_dependencies: file_dependencies
}
end
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def encryption_key
end

def to_hash
{ file: self.file, destination: self.destination, encrypt: self.encrypt }
{ file: file, destination: destination, encrypt: encrypt }
end
end
end
Expand Down

0 comments on commit a16bb6f

Please sign in to comment.