Skip to content

Commit d3a9305

Browse files
committed
Temp
1 parent 82597bd commit d3a9305

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

gemfileparser/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ def __str__(self):
6565
r".*platforms(:|[ ]?=>)[ ]*(?P<platforms>\[.*\])[,]?.*")
6666
gemfile_regexes['path'] = re.compile(
6767
r".*path(:|[ ]?=>)[ ]*(?P<path>.+['\"\)]).*")
68+
gemfile_regexes['github'] = re.compile(
69+
r".*github(:|[ ]?=>)[ ]*[\'\"](?P<github>[a-zA-Z:\/\.-0-9]+)[\'\"].*")
6870
gemfile_regexes['branch'] = re.compile(
6971
r".*branch(:|[ ]?=>)[ ]*(?P<branch>[a-zA-Z:\/\.-]+).*")
7072
gemfile_regexes['autorequire'] = re.compile(

0 commit comments

Comments
 (0)