BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
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
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
combined_pipeline.rb
lib/gitlab/markdown/combined_pipeline.rb
+6
-4
full_pipeline.rb
lib/gitlab/markdown/pipeline/full_pipeline.rb
+0
-0
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
...
...
lib/gitlab/markdown/pipeline/full_pipeline.rb
View file @
13f44822
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