There was an error while loading. Please reload this page.
1 parent 82597bd commit d3a9305Copy full SHA for d3a9305
1 file changed
gemfileparser/__init__.py
@@ -65,6 +65,8 @@ def __str__(self):
65
r".*platforms(:|[ ]?=>)[ ]*(?P<platforms>\[.*\])[,]?.*")
66
gemfile_regexes['path'] = re.compile(
67
r".*path(:|[ ]?=>)[ ]*(?P<path>.+['\"\)]).*")
68
+ gemfile_regexes['github'] = re.compile(
69
+ r".*github(:|[ ]?=>)[ ]*[\'\"](?P<github>[a-zA-Z:\/\.-0-9]+)[\'\"].*")
70
gemfile_regexes['branch'] = re.compile(
71
r".*branch(:|[ ]?=>)[ ]*(?P<branch>[a-zA-Z:\/\.-]+).*")
72
gemfile_regexes['autorequire'] = re.compile(
0 commit comments