Skip to content

Latest commit

 

History

History
114 lines (101 loc) · 4.56 KB

File metadata and controls

114 lines (101 loc) · 4.56 KB

Authors and Contributors

We are grateful for all the contributions we have received over the years and wanted to make sure we included all possible ones.

Original author

Jay Lawson jaylawson39@yahoo.com

Current Maintainer

MegaMek GitHub Organization https://github.com/MegaMek with the main MegaMek

How we generated this list

This list is taken from the API, filtered to just pull the login name and GitHub URL, sorted, then added here. The commands that were used to generate this list are as follows:

gh api -H "Accept: application/vnd.github+json"  -H "X-GitHub-Api-Version: 2022-11-28" '/repos/megamek/mekhq/stats/contributors' > contributors.json

From this list, we used irb (Interactive Ruby) to process and output that is below:

contrib = JSON.parse(File.read('contributors.json'))
filter = contrib.filter_map { |record| [record['author']['login'], record['author']['html_url']] unless record == nil || record['author'] == nil }
filter.sort_by { |user, _| user }.each { |user_name, url| puts "- #{user_name} <#{url}>\n" }

Contributors

Last updated: 2025-05-19