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
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
647ff624
Commit
647ff624
authored
Feb 02, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rubocop: Style/ElseAlignment enabled
parent
7d48205c
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
31 additions
and
27 deletions
+31
-27
.rubocop.yml
.rubocop.yml
+2
-2
app/controllers/projects/refs_controller.rb
app/controllers/projects/refs_controller.rb
+4
-4
app/helpers/commits_helper.rb
app/helpers/commits_helper.rb
+7
-6
app/models/commit.rb
app/models/commit.rb
+6
-5
app/services/projects/participants_service.rb
app/services/projects/participants_service.rb
+6
-5
config/initializers/acts_as_taggable_on_patch.rb
config/initializers/acts_as_taggable_on_patch.rb
+6
-5
No files found.
.rubocop.yml
View file @
647ff624
...
...
@@ -145,7 +145,7 @@ Style/CommentIndentation:
Style/ConstantName
:
Description
:
'
Constants
should
use
SCREAMING_SNAKE_CASE.'
StyleGuide
:
'
https://github.com/bbatsov/ruby-style-guide#screaming-snake-case'
Enabled
:
fals
e
Enabled
:
tru
e
Style/DefWithParentheses
:
Description
:
'
Use
def
with
parentheses
when
there
are
arguments.'
...
...
@@ -177,7 +177,7 @@ Style/EachWithObject:
Style/ElseAlignment
:
Description
:
'
Align
elses
and
elsifs
correctly.'
Enabled
:
fals
e
Enabled
:
tru
e
Style/EmptyElse
:
Description
:
'
Avoid
empty
else-clauses.'
...
...
app/controllers/projects/refs_controller.rb
View file @
647ff624
app/helpers/commits_helper.rb
View file @
647ff624
...
...
@@ -112,7 +112,8 @@ module CommitsHelper
person_name
=
user
.
nil?
?
source_name
:
user
.
name
person_email
=
user
.
nil?
?
source_email
:
user
.
email
text
=
if
options
[
:avatar
]
text
=
if
options
[
:avatar
]
avatar
=
image_tag
(
avatar_icon
(
person_email
,
options
[
:size
]),
class:
"avatar
#{
"s
#{
options
[
:size
]
}
"
if
options
[
:size
]
}
"
,
width:
options
[
:size
],
alt:
""
)
%Q{
#{
avatar
}
<span class="commit-
#{
options
[
:source
]
}
-name">
#{
person_name
}
</span>}
else
...
...
app/models/commit.rb
View file @
647ff624
...
...
@@ -88,7 +88,8 @@ class Commit
# cut off, ellipses (`&hellp;`) are prepended to the commit message.
def
description
title_end
=
safe_message
.
index
(
"
\n
"
)
@description
||=
if
(
!
title_end
&&
safe_message
.
length
>
100
)
||
(
title_end
&&
title_end
>
100
)
@description
||=
if
(
!
title_end
&&
safe_message
.
length
>
100
)
||
(
title_end
&&
title_end
>
100
)
"…"
.
html_safe
<<
safe_message
[
80
..-
1
]
else
safe_message
.
split
(
"
\n
"
,
2
)[
1
].
try
(
:chomp
)
...
...
app/services/projects/participants_service.rb
View file @
647ff624
...
...
@@ -5,7 +5,8 @@ module Projects
end
def
execute
(
note_type
,
note_id
)
participating
=
if
note_type
&&
note_id
participating
=
if
note_type
&&
note_id
participants_in
(
note_type
,
note_id
)
else
[]
...
...
config/initializers/acts_as_taggable_on_patch.rb
View file @
647ff624
...
...
@@ -42,7 +42,8 @@ module ActsAsTaggableOn::Taggable
elsif
options
.
delete
(
:any
)
# get tags, drop out if nothing returned (we need at least one)
tags
=
if
options
.
delete
(
:wild
)
tags
=
if
options
.
delete
(
:wild
)
ActsAsTaggableOn
::
Tag
.
named_like_any
(
tag_list
)
else
ActsAsTaggableOn
::
Tag
.
named_any
(
tag_list
)
...
...
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