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
78c5d4dd
Commit
78c5d4dd
authored
Aug 24, 2017
by
Maxim Rydkin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
replace `is_multi_check?` with `multi_check?`
parent
6a56bec7
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
lib/system_check/base_check.rb
lib/system_check/base_check.rb
+1
-1
lib/system_check/simple_executor.rb
lib/system_check/simple_executor.rb
+1
-1
No files found.
lib/system_check/base_check.rb
View file @
78c5d4dd
...
...
@@ -73,7 +73,7 @@ module SystemCheck
self
.
class
.
instance_methods
(
false
).
include?
(
:skip?
)
end
def
is_
multi_check?
def
multi_check?
self
.
class
.
instance_methods
(
false
).
include?
(
:multi_check
)
end
...
...
lib/system_check/simple_executor.rb
View file @
78c5d4dd
...
...
@@ -53,7 +53,7 @@ module SystemCheck
end
# When implements a multi check, we don't control the output
if
check
.
is_
multi_check?
if
check
.
multi_check?
check
.
multi_check
return
end
...
...
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