Skip to content

Latest commit

 

History

History
74 lines (61 loc) · 2.8 KB

File metadata and controls

74 lines (61 loc) · 2.8 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

Ben Mazur bmazur@sev.org

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/megameklab/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