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
7c6063dd
Commit
7c6063dd
authored
Feb 20, 2018
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a base class for pipeline expressions tokens
parent
34bebde8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
3 deletions
+24
-3
lib/gitlab/ci/pipeline/expression/equality.rb
lib/gitlab/ci/pipeline/expression/equality.rb
+1
-1
lib/gitlab/ci/pipeline/expression/string.rb
lib/gitlab/ci/pipeline/expression/string.rb
+1
-1
lib/gitlab/ci/pipeline/expression/token.rb
lib/gitlab/ci/pipeline/expression/token.rb
+21
-0
lib/gitlab/ci/pipeline/expression/variable.rb
lib/gitlab/ci/pipeline/expression/variable.rb
+1
-1
No files found.
lib/gitlab/ci/pipeline/expression/equality.rb
View file @
7c6063dd
...
...
@@ -2,7 +2,7 @@ module Gitlab
module
Ci
module
Pipeline
module
Expression
class
Equality
class
Equality
<
Expression
::
Token
PATTERN
=
/==/
.
freeze
def
initialize
(
left
,
right
)
...
...
lib/gitlab/ci/pipeline/expression/string.rb
View file @
7c6063dd
...
...
@@ -2,7 +2,7 @@ module Gitlab
module
Ci
module
Pipeline
module
Expression
class
String
class
String
<
Expression
::
Token
PATTERN
=
/("|')(?<value>.+)('|")/
.
freeze
def
initialize
(
value
)
...
...
lib/gitlab/ci/pipeline/expression/token.rb
0 → 100644
View file @
7c6063dd
module
Gitlab
module
Ci
module
Pipeline
module
Expression
class
Token
def
evaluate
(
**
variables
)
raise
NotImplementedError
end
def
self
.
build
(
string
)
raise
NotImplementedError
end
def
self
.
scan
(
scanner
)
scanner
.
scan
(
PATTERN
)
end
end
end
end
end
end
lib/gitlab/ci/pipeline/expression/variable.rb
View file @
7c6063dd
...
...
@@ -2,7 +2,7 @@ module Gitlab
module
Ci
module
Pipeline
module
Expression
class
Equality
class
Equality
<
Expression
::
Token
PATTERN
=
/$(?<name>\w+)/
.
freeze
def
initialize
(
value
)
...
...
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