Run rubocop --auto-correct --disable-uncorrectable (#1967)

Co-authored-by: Junegunn Choi <junegunn.c@gmail.com>
This commit is contained in:
Jack Bates 2020-04-12 08:23:31 -07:00 committed by GitHub
parent 15e2952a2b
commit 5deaf58928
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 347 additions and 320 deletions

24
.rubocop.yml Normal file
View File

@ -0,0 +1,24 @@
Layout/LineLength:
Enabled: false
Metrics:
Enabled: false
Lint/ShadowingOuterLocalVariable:
Enabled: false
Style/MethodCallWithArgsParentheses:
Enabled: true
IgnoredMethods:
- assert
- exit
- paste
- puts
- raise
- refute
- require
- send_keys
IgnoredPatterns:
- ^assert_
- ^refute_
Style/NumericPredicate:
Enabled: false
Style/WordArray:
MinSize: 1

View File

@ -14,9 +14,11 @@ addons:
- fish - fish
- tmux - tmux
update: true update: true
install: gem install rubocop rubocop-performance
script: script:
- make test - make test
# LC_ALL=C to avoid escape codes in # LC_ALL=C to avoid escape codes in
# printf %q $'\355\205\214\354\212\244\355\212\270' on macOS. Bash on # printf %q $'\355\205\214\354\212\244\355\212\270' on macOS. Bash on
# macOS is built without HANDLE_MULTIBYTE? # macOS is built without HANDLE_MULTIBYTE?
- make install && ./install --all && LC_ALL=C tmux new-session -d && ruby test/test_go.rb --verbose - make install && ./install --all && LC_ALL=C tmux new-session -d && ruby test/test_go.rb --verbose
- rubocop --require rubocop-performance

View File

@ -1,19 +1,20 @@
#!/usr/bin/env ruby #!/usr/bin/env ruby
# frozen_string_literal: true
# http://www.rubydoc.info/github/rest-client/rest-client/RestClient # http://www.rubydoc.info/github/rest-client/rest-client/RestClient
require 'rest_client' require 'rest_client'
require 'json' require 'json'
if ARGV.length < 3 if ARGV.length < 3
puts "usage: #$0 <token> <version> <files...>" puts "usage: #{$PROGRAM_NAME} <token> <version> <files...>"
exit 1 exit 1
end end
token, version, *files = ARGV token, version, *files = ARGV
base = "https://api.github.com/repos/junegunn/fzf-bin/releases" base = 'https://api.github.com/repos/junegunn/fzf-bin/releases'
# List releases # List releases
rels = JSON.parse(RestClient.get(base, :authorization => "token #{token}")) rels = JSON.parse(RestClient.get(base, authorization: "token #{token}"))
rel = rels.find { |r| r['tag_name'] == version } rel = rels.find { |r| r['tag_name'] == version }
unless rel unless rel
puts "#{version} not found" puts "#{version} not found"
@ -21,25 +22,26 @@ unless rel
end end
# List assets # List assets
assets = Hash[rel['assets'].map { |a| a.values_at *%w[name id] }] assets = Hash[rel['assets'].map { |a| a.values_at('name', 'id') }]
files.select { |f| File.exists? f }.map do |file| files.select { |f| File.exist?(f) }.map do |file|
Thread.new do Thread.new do
name = File.basename file name = File.basename(file)
if asset_id = assets[name] if asset_id = assets[name] # rubocop:todo Lint/AssignmentInCondition
puts "#{name} found. Deleting asset id #{asset_id}." puts "#{name} found. Deleting asset id #{asset_id}."
RestClient.delete "#{base}/assets/#{asset_id}", RestClient.delete("#{base}/assets/#{asset_id}",
:authorization => "token #{token}" authorization: "token #{token}")
else else
puts "#{name} not found" puts "#{name} not found"
end end
puts "Uploading #{name}" puts "Uploading #{name}"
RestClient.post( RestClient.post(
"#{base.sub 'api', 'uploads'}/#{rel['id']}/assets?name=#{name}", "#{base.sub('api', 'uploads')}/#{rel['id']}/assets?name=#{name}",
File.read(file), File.read(file),
:authorization => "token #{token}", authorization: "token #{token}",
:content_type => "application/octet-stream") content_type: 'application/octet-stream'
)
end end
end.each(&:join) end.each(&:join)

File diff suppressed because it is too large Load Diff