Fixed issue with bundle exec rake routes
not running.
Wrap regex comments in (?#comment) construct.
This commit is contained in:
parent
055b3c4dd6
commit
405492e90c
1 changed files with 11 additions and 11 deletions
|
@ -24,20 +24,20 @@ module Gitlab
|
|||
|
||||
%r{
|
||||
(?!
|
||||
# doesn't begins with
|
||||
\/| # (rule #6)
|
||||
# doesn't contain
|
||||
(?# doesn't begins with)
|
||||
\/| (?# rule #6)
|
||||
(?# doesn't contain)
|
||||
.*(?:
|
||||
[\/.]\.| # (rule #1,3)
|
||||
\/\/| # (rule #6)
|
||||
@\{| # (rule #8)
|
||||
\\ # (rule #9)
|
||||
[\/.]\.| (?# rule #1,3)
|
||||
\/\/| (?# rule #6)
|
||||
@\{| (?# rule #8)
|
||||
\\ (?# rule #9)
|
||||
)
|
||||
)
|
||||
[^\000-\040\177~^:?*\[]+ # (rule #4-5)
|
||||
# doesn't end with
|
||||
(?<!\.lock) # (rule #1)
|
||||
(?<![\/.]) # (rule #6-7)
|
||||
[^\000-\040\177~^:?*\[]+ (?# rule #4-5)
|
||||
(?# doesn't end with)
|
||||
(?<!\.lock) (?# rule #1)
|
||||
(?<![\/.]) (?# rule #6-7)
|
||||
}x
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue