Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
75f5fa99
Commit
75f5fa99
authored
Feb 22, 2017
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enable Rails/Delegate
parent
7d4b52b2
Changes
25
Hide whitespace changes
Inline
Side-by-side
Showing
25 changed files
with
39 additions
and
110 deletions
+39
-110
.rubocop.yml
.rubocop.yml
+1
-1
app/helpers/application_settings_helper.rb
app/helpers/application_settings_helper.rb
+6
-19
app/helpers/visibility_level_helper.rb
app/helpers/visibility_level_helper.rb
+3
-7
app/models/ci/build.rb
app/models/ci/build.rb
+1
-3
app/models/ci/pipeline.rb
app/models/ci/pipeline.rb
+1
-3
app/models/project.rb
app/models/project.rb
+2
-6
app/models/project_wiki.rb
app/models/project_wiki.rb
+2
-6
app/models/repository.rb
app/models/repository.rb
+2
-6
app/policies/base_policy.rb
app/policies/base_policy.rb
+1
-3
app/services/base_service.rb
app/services/base_service.rb
+1
-3
app/services/ci/create_pipeline_builds_service.rb
app/services/ci/create_pipeline_builds_service.rb
+1
-3
app/views/layouts/nav/_admin.html.haml
app/views/layouts/nav/_admin.html.haml
+1
-1
lib/bitbucket/connection.rb
lib/bitbucket/connection.rb
+1
-3
lib/gitlab/access.rb
lib/gitlab/access.rb
+1
-3
lib/gitlab/ci/build/artifacts/metadata/entry.rb
lib/gitlab/ci/build/artifacts/metadata/entry.rb
+1
-3
lib/gitlab/current_settings.rb
lib/gitlab/current_settings.rb
+1
-3
lib/gitlab/git/commit.rb
lib/gitlab/git/commit.rb
+1
-3
lib/gitlab/git/repository.rb
lib/gitlab/git/repository.rb
+4
-10
lib/gitlab/github_import/issuable_formatter.rb
lib/gitlab/github_import/issuable_formatter.rb
+1
-3
lib/gitlab/ldap/person.rb
lib/gitlab/ldap/person.rb
+1
-3
lib/gitlab/redis.rb
lib/gitlab/redis.rb
+2
-6
lib/gitlab/visibility_level.rb
lib/gitlab/visibility_level.rb
+1
-3
spec/lib/gitlab/utils_spec.rb
spec/lib/gitlab/utils_spec.rb
+1
-3
spec/models/user_spec.rb
spec/models/user_spec.rb
+1
-3
spec/services/ci/process_pipeline_service_spec.rb
spec/services/ci/process_pipeline_service_spec.rb
+1
-3
No files found.
.rubocop.yml
View file @
75f5fa99
...
...
@@ -763,7 +763,7 @@ Rails/Date:
# Prefer delegate method for delegations.
Rails/Delegate
:
Enabled
:
fals
e
Enabled
:
tru
e
# Prefer `find_by` over `where.first`.
Rails/FindBy
:
...
...
app/helpers/application_settings_helper.rb
View file @
75f5fa99
module
ApplicationSettingsHelper
def
gravatar_enabled?
current_application_settings
.
gravatar_enabled?
end
def
signup_enabled?
current_application_settings
.
signup_enabled?
end
def
signin_enabled?
current_application_settings
.
signin_enabled?
end
delegate
:gravatar_enabled?
,
:signup_enabled?
,
:signin_enabled?
,
:akismet_enabled?
,
:koding_enabled?
,
to: :current_application_settings
def
user_oauth_applications?
current_application_settings
.
user_oauth_applications
end
def
askimet_enabled?
current_application_settings
.
akismet_enabled?
end
def
koding_enabled?
current_application_settings
.
koding_enabled?
end
def
allowed_protocols_present?
current_application_settings
.
enabled_git_access_protocol
.
present?
end
...
...
app/helpers/visibility_level_helper.rb
View file @
75f5fa99
...
...
@@ -89,13 +89,9 @@ module VisibilityLevelHelper
current_application_settings
.
restricted_visibility_levels
||
[]
end
def
default_project_visibility
current_application_settings
.
default_project_visibility
end
def
default_group_visibility
current_application_settings
.
default_group_visibility
end
delegate
:default_project_visibility
,
:default_group_visibility
,
to: :current_application_settings
def
skip_level?
(
form_model
,
level
)
form_model
.
is_a?
(
Project
)
&&
!
form_model
.
visibility_level_allowed?
(
level
)
...
...
app/models/ci/build.rb
View file @
75f5fa99
...
...
@@ -233,9 +233,7 @@ module Ci
gl_project_id
end
def
project_name
project
.
name
end
delegate
:name
,
to: :project
,
prefix:
true
def
repo_url
auth
=
"gitlab-ci-token:
#{
ensure_token!
}
@"
...
...
app/models/ci/pipeline.rb
View file @
75f5fa99
...
...
@@ -153,9 +153,7 @@ module Ci
builds
.
latest
.
with_artifacts_not_expired
.
includes
(
project:
[
:namespace
])
end
def
project_id
project
.
id
end
delegate
:id
,
to: :project
,
prefix:
true
# For now the only user who participates is the user who triggered
def
participants
(
_current_user
=
nil
)
...
...
app/models/project.rb
View file @
75f5fa99
...
...
@@ -838,9 +838,7 @@ class Project < ActiveRecord::Base
false
end
def
empty_repo?
repository
.
empty_repo?
end
delegate
:empty_repo?
,
to: :repository
def
repo
repository
.
raw
...
...
@@ -1029,9 +1027,7 @@ class Project < ActiveRecord::Base
forked?
&&
project
==
forked_from_project
end
def
forks_count
forks
.
count
end
delegate
:count
,
to: :forks
,
prefix:
true
def
origin_merge_requests
merge_requests
.
where
(
source_project_id:
self
.
id
)
...
...
app/models/project_wiki.rb
View file @
75f5fa99
...
...
@@ -60,9 +60,7 @@ class ProjectWiki
!!
repository
.
exists?
end
def
empty?
pages
.
empty?
end
delegate
:empty?
,
to: :pages
# Returns an Array of Gitlab WikiPage instances or an
# empty Array if this Wiki has no pages.
...
...
@@ -160,9 +158,7 @@ class ProjectWiki
}
end
def
repository_storage_path
project
.
repository_storage_path
end
delegate
:repository_storage_path
,
to: :project
private
...
...
app/models/repository.rb
View file @
75f5fa99
...
...
@@ -487,9 +487,7 @@ class Repository
end
cache_method
:exists?
def
empty?
raw_repository
.
empty?
end
delegate
:empty?
,
to: :raw_repository
cache_method
:empty?
# The size of this repository in megabytes.
...
...
@@ -508,9 +506,7 @@ class Repository
end
cache_method
:branch_names
,
fallback:
[]
def
tag_names
raw_repository
.
tag_names
end
delegate
:tag_names
,
to: :raw_repository
cache_method
:tag_names
,
fallback:
[]
def
branch_count
...
...
app/policies/base_policy.rb
View file @
75f5fa99
...
...
@@ -6,9 +6,7 @@ class BasePolicy
@cannot_set
=
cannot_set
end
def
size
to_set
.
size
end
delegate
:size
,
to: :to_set
def
self
.
empty
new
(
Set
.
new
,
Set
.
new
)
...
...
app/services/base_service.rb
View file @
75f5fa99
...
...
@@ -28,9 +28,7 @@ class BaseService
SystemHooksService
.
new
end
def
repository
project
.
repository
end
delegate
:repository
,
to: :project
# Add an error to the specified model for restricted visibility levels
def
deny_visibility_level
(
model
,
denied_visibility_level
=
nil
)
...
...
app/services/ci/create_pipeline_builds_service.rb
View file @
75f5fa99
...
...
@@ -10,9 +10,7 @@ module Ci
end
end
def
project
pipeline
.
project
end
delegate
:project
,
to: :pipeline
private
...
...
app/views/layouts/nav/_admin.html.haml
View file @
75f5fa99
...
...
@@ -33,7 +33,7 @@
Abuse Reports
%span
.badge.count
=
number_with_delimiter
(
AbuseReport
.
count
(
:all
))
-
if
a
ski
met_enabled?
-
if
a
kis
met_enabled?
=
nav_link
(
controller: :spam_logs
)
do
=
link_to
admin_spam_logs_path
,
title:
"Spam Logs"
do
%span
...
...
lib/bitbucket/connection.rb
View file @
75f5fa99
...
...
@@ -24,9 +24,7 @@ module Bitbucket
response
.
parsed
end
def
expired?
connection
.
expired?
end
delegate
:expired?
,
to: :connection
def
refresh!
response
=
connection
.
refresh!
...
...
lib/gitlab/access.rb
View file @
75f5fa99
...
...
@@ -21,9 +21,7 @@ module Gitlab
PROTECTION_DEV_CAN_MERGE
=
3
class
<<
self
def
values
options
.
values
end
delegate
:values
,
to: :options
def
all_values
options_with_owner
.
values
...
...
lib/gitlab/ci/build/artifacts/metadata/entry.rb
View file @
75f5fa99
...
...
@@ -91,9 +91,7 @@ module Gitlab
blank_node?
||
@entries
.
include?
(
@path
)
end
def
empty?
children
.
empty?
end
delegate
:empty?
,
to: :children
def
total_size
descendant_pattern
=
%r{^
#{
Regexp
.
escape
(
@path
)
}
}
...
...
lib/gitlab/current_settings.rb
View file @
75f5fa99
...
...
@@ -25,9 +25,7 @@ module Gitlab
settings
||
in_memory_application_settings
end
def
sidekiq_throttling_enabled?
current_application_settings
.
sidekiq_throttling_enabled?
end
delegate
:sidekiq_throttling_enabled?
,
to: :current_application_settings
def
in_memory_application_settings
@in_memory_application_settings
||=
::
ApplicationSetting
.
new
(
::
ApplicationSetting
.
defaults
)
...
...
lib/gitlab/git/commit.rb
View file @
75f5fa99
...
...
@@ -218,9 +218,7 @@ module Gitlab
raw_commit
.
parents
.
map
{
|
c
|
Gitlab
::
Git
::
Commit
.
new
(
c
)
}
end
def
tree
raw_commit
.
tree
end
delegate
:tree
,
to: :raw_commit
def
stats
Gitlab
::
Git
::
CommitStats
.
new
(
self
)
...
...
lib/gitlab/git/repository.rb
View file @
75f5fa99
...
...
@@ -162,13 +162,9 @@ module Gitlab
!
empty?
end
def
empty?
rugged
.
empty?
end
def
bare?
rugged
.
bare?
end
delegate
:empty?
,
:bare?
,
to: :rugged
def
repo_exists?
!!
rugged
...
...
@@ -565,9 +561,7 @@ module Gitlab
# will trigger a +:mixed+ reset and the working directory will be
# replaced with the content of the index. (Untracked and ignored files
# will be left alone)
def
reset
(
ref
,
reset_type
)
rugged
.
reset
(
ref
,
reset_type
)
end
delegate
:reset
,
to: :rugged
# Mimic the `git clean` command and recursively delete untracked files.
# Valid keys that can be passed in the +options+ hash are:
...
...
lib/gitlab/github_import/issuable_formatter.rb
View file @
75f5fa99
...
...
@@ -7,9 +7,7 @@ module Gitlab
raise
NotImplementedError
end
def
number
raw_data
.
number
end
delegate
:number
,
to: :raw_data
def
find_condition
{
iid:
number
}
...
...
lib/gitlab/ldap/person.rb
View file @
75f5fa99
...
...
@@ -43,9 +43,7 @@ module Gitlab
attribute_value
(
:email
)
end
def
dn
entry
.
dn
end
delegate
:dn
,
to: :entry
private
...
...
lib/gitlab/redis.rb
View file @
75f5fa99
...
...
@@ -13,15 +13,11 @@ module Gitlab
class
<<
self
# Do NOT cache in an instance variable. Result may be mutated by caller.
def
params
new
.
params
end
delegate
:params
,
to: :new
# Do NOT cache in an instance variable. Result may be mutated by caller.
# @deprecated Use .params instead to get sentinel support
def
url
new
.
url
end
delegate
:url
,
to: :new
def
with
@pool
||=
ConnectionPool
.
new
(
size:
pool_size
)
{
::
Redis
.
new
(
params
)
}
...
...
lib/gitlab/visibility_level.rb
View file @
75f5fa99
...
...
@@ -33,9 +33,7 @@ module Gitlab
PUBLIC
=
20
unless
const_defined?
(
:PUBLIC
)
class
<<
self
def
values
options
.
values
end
delegate
:values
,
to: :options
def
options
{
...
...
spec/lib/gitlab/utils_spec.rb
View file @
75f5fa99
describe
Gitlab
::
Utils
,
lib:
true
do
def
to_boolean
(
value
)
described_class
.
to_boolean
(
value
)
end
delegate
:to_boolean
,
to: :described_class
describe
'.to_boolean'
do
it
'accepts booleans'
do
...
...
spec/models/user_spec.rb
View file @
75f5fa99
...
...
@@ -693,9 +693,7 @@ describe User, models: true do
end
describe
'.search_with_secondary_emails'
do
def
search_with_secondary_emails
(
query
)
described_class
.
search_with_secondary_emails
(
query
)
end
delegate
:search_with_secondary_emails
,
to: :described_class
let!
(
:user
)
{
create
(
:user
)
}
let!
(
:email
)
{
create
(
:email
)
}
...
...
spec/services/ci/process_pipeline_service_spec.rb
View file @
75f5fa99
...
...
@@ -377,9 +377,7 @@ describe Ci::ProcessPipelineService, :services do
builds
.
pending
.
update_all
(
status:
'success'
)
end
def
manual_actions
pipeline
.
manual_actions
end
delegate
:manual_actions
,
to: :pipeline
def
create_build
(
name
,
stage_idx
,
when_value
=
nil
)
create
(
:ci_build
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment