Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
heptapod
heptapod
Commits
755c30a71b64
Commit
aaae5e6f
authored
Feb 02, 2015
by
Dmitriy Zaporozhets
Browse files
Rubocop: Style/AccessorMethodName enabled
parent
7d040af693ce
Changes
2
Hide whitespace changes
Inline
Side-by-side
.rubocop.yml
View file @
755c30a7
Style/AccessModifierIndentation
:
Style/AccessModifierIndentation
:
Description
:
Check indentation of private/protected visibility modifiers.
Description
:
Check indentation of private/protected visibility modifiers.
StyleGuide
:
'
https://github.com/bbatsov/ruby-style-guide#indent-public-private-protected'
StyleGuide
:
'
https://github.com/bbatsov/ruby-style-guide#indent-public-private-protected'
Enabled
:
fals
e
Enabled
:
tru
e
Style/AccessorMethodName
:
Style/AccessorMethodName
:
Description
:
Check the naming of accessor methods for get_/set_.
Description
:
Check the naming of accessor methods for get_/set_.
...
...
app/services/projects/image_service.rb
View file @
755c30a7
...
@@ -14,14 +14,14 @@ def execute
...
@@ -14,14 +14,14 @@ def execute
uploader
.
store!
(
image
)
uploader
.
store!
(
image
)
link
=
{
link
=
{
'alt'
=>
File
.
basename
(
alt
,
'.*'
),
'alt'
=>
File
.
basename
(
alt
,
'.*'
),
'url'
=>
File
.
join
(
@root_url
,
uploader
.
url
)
'url'
=>
File
.
join
(
@root_url
,
uploader
.
url
)
}
}
else
else
link
=
nil
link
=
nil
end
end
end
end
protected
protected
def
upload_path
def
upload_path
base_dir
=
FileUploader
.
generate_dir
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