pboling commented on code in PR #255:
URL: https://github.com/apache/skywalking-eyes/pull/255#discussion_r2634878038
##########
pkg/deps/ruby.go:
##########
@@ -138,19 +240,30 @@ func parseGemfileLock(s string) (graph gemGraph, roots
[]string, err error) {
inSpecs := false
inDeps := false
+ inPath := false
var current *gemSpec
+ var currentRemotePath string
for scanner.Scan() {
line := scanner.Text()
if strings.HasPrefix(line, "GEM") {
inSpecs = true
inDeps = false
+ inPath = false
+ current = nil
+ continue
Review Comment:
Fixed in 3c3b4636
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]