diff options
author | Gabriel Mazetto <gabriel@gitlab.com> | 2016-05-13 04:51:13 -0300 |
---|---|---|
committer | Gabriel Mazetto <gabriel@gitlab.com> | 2016-05-13 04:51:13 -0300 |
commit | 8d58e691c69f623878522c4f0dccf9f24229e9ce (patch) | |
tree | dc0e1635c0faa7d1698cc135b4b478963113b201 /config/routes.rb | |
parent | f5a0ac0fc197bae2eb5fe1045ed237cdbbaf6ea4 (diff) | |
download | gitlab-ce-8d58e691c69f623878522c4f0dccf9f24229e9ce.tar.gz |
remove extra space to fix codestylerubocop/space-around-operators
Diffstat (limited to 'config/routes.rb')
-rw-r--r-- | config/routes.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb index 0c01c529210..9e776a1f541 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -74,7 +74,7 @@ Rails.application.routes.draw do end # Health check - get 'health_check(/:checks)' => 'health_check#index', as: :health_check + get 'health_check(/:checks)' => 'health_check#index', as: :health_check # Enable Grack support mount Grack::AuthSpawner, at: '/', constraints: lambda { |request| /[-\/\w\.]+\.git\//.match(request.path_info) }, via: [:get, :post, :put] |