Skip to content

Commit 8126647

Browse files
committedApr 22, 2022
🤖
1 parent 820431d commit 8126647

File tree

5 files changed

+9
-11
lines changed

5 files changed

+9
-11
lines changed
 

‎exe/deploy-complexity.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def deploy(base, to, options)
7171
end
7272

7373
options[:gh_url] ||=
74-
"https://github.com/" + `git config --get remote.origin.url`[/:(.+).git/, 1]
74+
"https://github.com/#{`git config --get remote.origin.url`[/:(.+).git/, 1]}"
7575

7676
deploys = `git tag -l | grep #{branch}`.split(/\n/).drop(1)
7777
case action

‎lib/deploy_complexity/changed_javascript_packages.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ def parse_dependencies(file)
1212
json = JSON.parse(file)
1313
dependencies = json.fetch("dependencies")
1414

15-
dependencies.each_with_object({}) do |(dependency, details), collection|
16-
collection[dependency] = details.fetch("version")
15+
dependencies.transform_values do |details|
16+
details.fetch("version")
1717
end
1818
end
1919
end

‎lib/deploy_complexity/cli_output_formatter.rb

+2-3
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,13 @@ def format
1212

1313
return output unless added_attachments.any?
1414

15-
output + "\n\n" +
16-
added_attachments.map { |a| format_attachment(a) }.join("\n\n")
15+
"#{output}\n\n#{added_attachments.map { |a| format_attachment(a) }.join("\n\n")}"
1716
end
1817

1918
private
2019

2120
def format_attachment(attachment)
22-
attachment.title + "\n" + attachment.text
21+
"#{attachment.title}\n#{attachment.text}"
2322
end
2423
end
2524
end

‎lib/deploy_complexity/deploy.rb

+2-3
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,7 @@ def pull_requests(merges)
153153

154154
def get_merges(commits)
155155
merges = commits.grep(/Merges|\#\d+/)
156-
merges = merges.select { |m| makes_changes_to(m) }
157-
merges
156+
merges.select { |m| makes_changes_to(m) }
158157
end
159158

160159
def get_changed_files(range)
@@ -170,7 +169,7 @@ def makes_changes_to(merge)
170169
end
171170

172171
def pattern
173-
@pattern ||= options[:subdir] ? Regexp.new("^" + @options[:subdir]) : /.*/
172+
@pattern ||= options[:subdir] ? Regexp.new("^#{@options[:subdir]}") : /.*/
174173
end
175174

176175
def subdir

‎spec/lib/deploy_complexity/checklists_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def diff(path, patch: "")
99
double(path: path, patch: patch)
1010
end
1111

12-
class TestChecklist < Checklists::Checklist
12+
class TestChecklist < Checklists::Checklist # rubocop:disable Lint/ConstantDefinitionInBlock
1313
def human_name
1414
"Human Name"
1515
end
@@ -23,7 +23,7 @@ def relevant_for(files)
2323
end
2424
end
2525

26-
class PatchChecklist < Checklists::Checklist
26+
class PatchChecklist < Checklists::Checklist # rubocop:disable Lint/ConstantDefinitionInBlock
2727
def human_name
2828
"patches"
2929
end

0 commit comments

Comments
 (0)
Please sign in to comment.