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
aaae5e6f
Commit
aaae5e6f
authored
Feb 02, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rubocop: Style/AccessorMethodName enabled
parent
e8905826
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
.rubocop.yml
.rubocop.yml
+1
-1
app/services/projects/image_service.rb
app/services/projects/image_service.rb
+2
-2
No files found.
.rubocop.yml
View file @
aaae5e6f
Style/AccessModifierIndentation
:
Description
:
Check indentation of private/protected visibility modifiers.
StyleGuide
:
'
https://github.com/bbatsov/ruby-style-guide#indent-public-private-protected'
Enabled
:
fals
e
Enabled
:
tru
e
Style/AccessorMethodName
:
Description
:
Check the naming of accessor methods for get_/set_.
...
...
app/services/projects/image_service.rb
View file @
aaae5e6f
...
...
@@ -14,14 +14,14 @@ module Projects
uploader
.
store!
(
image
)
link
=
{
'alt'
=>
File
.
basename
(
alt
,
'.*'
),
'url'
=>
File
.
join
(
@root_url
,
uploader
.
url
)
'url'
=>
File
.
join
(
@root_url
,
uploader
.
url
)
}
else
link
=
nil
end
end
protected
protected
def
upload_path
base_dir
=
FileUploader
.
generate_dir
...
...
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