Enable Style/EndOfLine Rubocop style cop

Use Unix-style line endings. See #17478.
This commit is contained in:
Grzegorz Bizon 2016-05-30 10:35:37 +02:00
parent 43c35b0f20
commit 1707e89c29
2 changed files with 27 additions and 27 deletions

View File

@ -222,7 +222,7 @@ Style/EndBlock:
# Use Unix-style line endings. # Use Unix-style line endings.
Style/EndOfLine: Style/EndOfLine:
Enabled: false Enabled: true
# Favor the use of Fixnum#even? && Fixnum#odd? # Favor the use of Fixnum#even? && Fixnum#odd?
Style/EvenOdd: Style/EvenOdd:

View File

@ -1,26 +1,26 @@
# Controller for viewing a repository's file structure # Controller for viewing a repository's file structure
class Projects::FindFileController < Projects::ApplicationController class Projects::FindFileController < Projects::ApplicationController
include ExtractsPath include ExtractsPath
include ActionView::Helpers::SanitizeHelper include ActionView::Helpers::SanitizeHelper
include TreeHelper include TreeHelper
before_action :require_non_empty_project before_action :require_non_empty_project
before_action :assign_ref_vars before_action :assign_ref_vars
before_action :authorize_download_code! before_action :authorize_download_code!
def show def show
return render_404 unless @repository.commit(@ref) return render_404 unless @repository.commit(@ref)
respond_to do |format| respond_to do |format|
format.html format.html
end end
end end
def list def list
file_paths = @repo.ls_files(@ref) file_paths = @repo.ls_files(@ref)
respond_to do |format| respond_to do |format|
format.json { render json: file_paths } format.json { render json: file_paths }
end end
end end
end end