Skip to content

Commit

Permalink
Updated description collection with enclosing the field in quotes to …
Browse files Browse the repository at this point in the history
…sustain the csv file structure.
  • Loading branch information
MoromugHSE committed Apr 1, 2024
1 parent 2c1646d commit 1c7cfa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion steps/discover-repos.rb
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
created_at: i[:created_at].iso8601,
size: i[:size],
open_issues_count: i[:open_issues_count],
description: i[:description]
description: "\"".concat(i[:description], "\"")
}
puts "Found #{i[:full_name].inspect} GitHub repo ##{found.count} \
(#{i[:forks_count]} forks, #{i[:stargazers_count]} stars)"
Expand Down

0 comments on commit 1c7cfa4

Please sign in to comment.