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
13f44822
Commit
13f44822
authored
Dec 08, 2015
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move CombinedPipeline methods around
parent
611912fe
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
lib/gitlab/markdown/combined_pipeline.rb
lib/gitlab/markdown/combined_pipeline.rb
+7
-5
No files found.
lib/gitlab/markdown/combined_pipeline.rb
View file @
13f44822
...
...
@@ -7,16 +7,18 @@ module Gitlab
Class
.
new
(
Pipeline
)
do
const_set
:PIPELINES
,
pipelines
def
self
.
pipelines
self
::
PIPELINES
end
def
self
.
filters
pipelines
.
flat_map
(
&
:filters
)
end
def
self
.
transform_context
(
context
)
pipelines
.
reduce
(
context
)
{
|
context
,
pipeline
|
pipeline
.
transform_context
(
context
)
}
pipelines
.
reduce
(
context
)
do
|
context
,
pipeline
|
pipeline
.
transform_context
(
context
)
end
def
self
.
pipelines
self
::
PIPELINES
end
end
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