{"id":22808422,"url":"https://github.com/sixarm/sixarm-ruby-gemforge","last_synced_at":"2026-05-10T19:03:49.178Z","repository":{"id":1302771,"uuid":"1245012","full_name":"SixArm/sixarm-ruby-gemforge","owner":"SixArm","description":"SixArm.com → Ruby → GemForge scripts for building and publishing our own gems","archived":false,"fork":false,"pushed_at":"2023-09-15T19:24:58.000Z","size":154,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-02-06T00:27:07.655Z","etag":null,"topics":["gem","gemforge","ruby"],"latest_commit_sha":null,"homepage":"http://sixarm.com","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SixArm.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGES.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2011-01-12T10:48:52.000Z","updated_at":"2023-05-22T17:07:13.000Z","dependencies_parsed_at":"2022-08-16T13:00:47.915Z","dependency_job_id":"e45a86e1-be24-4a32-894c-119110755d74","html_url":"https://github.com/SixArm/sixarm-ruby-gemforge","commit_stats":null,"previous_names":["sixarm/sixarm-ruby-gemforge"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SixArm%2Fsixarm-ruby-gemforge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SixArm%2Fsixarm-ruby-gemforge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SixArm%2Fsixarm-ruby-gemforge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SixArm%2Fsixarm-ruby-gemforge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SixArm","download_url":"https://codeload.github.com/SixArm/sixarm-ruby-gemforge/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246379366,"owners_count":20767696,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["gem","gemforge","ruby"],"created_at":"2024-12-12T11:09:45.561Z","updated_at":"2026-05-10T19:03:44.151Z","avatar_url":"https://github.com/SixArm.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SixArm.com → Ruby → \u003cbr\u003e Gem tools for building our own gems\n\n* Doc: \u003chttp://sixarm.com/sixarm_ruby_gemforge\u003e\n* Gem: \u003chttp://rubygems.org/gems/sixarm_ruby_\u003e\n* Repo: \u003chttp://github.com/sixarm/sixarm_ruby_gemforge\u003e\n\u003c!--header-shut--\u003e\n\n\n## Introduction\n\nThese require scripts in sixarm_ruby_gem_scripts.\n\nYou can customize these however you like for your own systems.\n\nFor docs go to \u003chttp://sixarm.com/sixarm_ruby_gemforge\u003e\n\nWant to help? We're happy to get pull requests.\n\n## Examples\n\nTo find directories that contain typical gemspec files:\n\n    find */*gemspec -exec dirname {} \\;\n\nTo change into each directory, then run a command, such as echo:\n\n    find */*gemspec -exec dirname {} \\; |\n    while read dir; do\n      pushd $dir \u003e /dev/null\n      echo \"=== $dir ===\"\n      popd \u003e /dev/null\n    done\n\nTo update each directory:\n\n    find */*gemspec -exec dirname {} \\; |\n    while read dir; do\n      pushd $dir \u003e /dev/null\n      echo \"=== $dir ===\"\n      git pull --rebase=preserve\n      git push\n      popd \u003e /dev/null\n    done\n\nTo update the README and publish it:\n\n    find */*gemspec -exec dirname {} \\; | \n    while read dir; do\n      pushd $dir \u003e /dev/null\n      git pull --rebase=preserve\n      gemforge-update-readme\n      git add README.md\n      git commit -m \"Update README\"\n      git push\n      echo \"The script is in $dir\"\n      popd \u003e /dev/null\n    done\n\n\n## Archive examples\n\nTo fix permissions:\n\n    for x in .bundle .git .github coverage doc lib test; do\n      find $x -type d -exec chmod 755 {} \\;\n      find $x -type f -exec chmod 644 {} \\;\n    done\n    g a .bundle .git .github coverage doc lib test\n    g cm \"Fix permissions\" .bundle .git .github coverage doc lib test\n\nTo drop Coveralls:\n\n    x=\".coveralls.yml\";      g rm -rf $x; rm -rf $x; g a $x\n    x=\"bin/stubs/coveralls\"; g rm -rf $x; rm -rf $x; g a $x\n    x=\"bin/coveralls\";       g rm -rf $x; rm -rf $x; g a $x\n    gsed -i '/.*coveralls.*/d' *gemspec; g a *gemspec\n    g cm \"Drop Coveralls\" .coveralls.yml bin/stubs/coveralls bin/coveralls *gemspec\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsixarm%2Fsixarm-ruby-gemforge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsixarm%2Fsixarm-ruby-gemforge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsixarm%2Fsixarm-ruby-gemforge/lists"}