{"id":16063730,"url":"https://github.com/flavorjones/windows-ruby-dev-tools-release","last_synced_at":"2025-04-05T09:20:44.871Z","repository":{"id":65988623,"uuid":"85453187","full_name":"flavorjones/windows-ruby-dev-tools-release","owner":"flavorjones","description":"BOSH release to install Ruby dev tools on a Windows stemcell","archived":false,"fork":false,"pushed_at":"2018-02-17T05:17:13.000Z","size":80,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-05-22T17:21:52.864Z","etag":null,"topics":["bosh","bosh-release","ruby","windows"],"latest_commit_sha":null,"homepage":"","language":"PowerShell","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/flavorjones.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2017-03-19T05:27:07.000Z","updated_at":"2022-12-17T13:38:22.000Z","dependencies_parsed_at":null,"dependency_job_id":"110cbcf3-b36b-4290-9f81-c27d69106018","html_url":"https://github.com/flavorjones/windows-ruby-dev-tools-release","commit_stats":{"total_commits":47,"total_committers":1,"mean_commits":47.0,"dds":0.0,"last_synced_commit":"31dce4438f04205cb376c6f991fba5e693da0b86"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flavorjones%2Fwindows-ruby-dev-tools-release","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flavorjones%2Fwindows-ruby-dev-tools-release/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flavorjones%2Fwindows-ruby-dev-tools-release/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flavorjones%2Fwindows-ruby-dev-tools-release/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/flavorjones","download_url":"https://codeload.github.com/flavorjones/windows-ruby-dev-tools-release/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246748776,"owners_count":20827387,"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":["bosh","bosh-release","ruby","windows"],"created_at":"2024-10-09T05:01:42.307Z","updated_at":"2025-04-05T09:20:44.836Z","avatar_url":"https://github.com/flavorjones.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# windows-ruby-dev-tools-release\n\nThis is a [BOSH](https://github.com/cloudfoundry/bosh) release to\ninstall some tools on a windows stemcell for Ruby development.\n\nIt was driven out by the desire to\nuse [Concourse](https://concourse.ci/) to CI\nthe [Nokogiri toolchain](http://status.nokogiri.org) across multiple\noperating systems.\n\n\n## Tools Installed\n\n- [Ruby 2.5 with optional DevKit](https://rubyinstaller.org/)\n- [Ruby 2.4 with optional DevKit](https://rubyinstaller.org/)\n- [Ruby 2.3 with optional DevKit](https://rubyinstaller.org/)\n- [unzip](http://gnuwin32.sourceforge.net/packages/unzip.htm)\n- [patch](http://gnuwin32.sourceforge.net/packages/patch.htm)\n- [Git](https://github.com/git-for-windows/git/releases)\n- [gpg](https://www.gnupg.org)\n- a `prelude.ps1` file for all your powershell needs\n\n\n## Tools Not Yet Installed (But I Plan To Do Soon)\n\n- CMake\n- msys2\n\n\n## How do I use this?\n\n### `prelude.ps1`\n\nThis prelude file sets up some sound defaults for your powershell scripts:\n\n* the powershell equivalent of bash's `set -eux`\n* set up output to not have ridiculously small linewraps\n* a cmdlet, `system-cmd` that will do what you expect with a command string\n\nYou use it by putting this line at the top of your powershell scripts:\n\n``` powershell\n. \"c:\\var\\vcap\\packages\\windows-ruby-dev-tools\\prelude.ps1\"\n```\n\n\n### Ruby\n\nBy default, Ruby 2.4 will be in your search path as `ruby` or `ruby.exe`, as will utilities like `gem`.\n\nYou can choose a different version of Ruby by setting `$env:WIN_RUBY_VERSION` to one of:\n\n* `2.5`\n* `2.4` (default)\n* `2.3`\n\nYou can opt into using DevKit by adding this line to your powershell script:\n\n``` powershell\n$env:RUBYOPT = \"-rdevkit\"\n```\n\n### Concourse support\n\nCheck out https://github.com/flavorjones/concourse-gem if you'd like to integrate your concourse pipelines with the rubies in this release.\n\n\n### Other executables\n\nAll the other executables are in your search path, so just go ahead and use `unzip` and other utilities like you normally would.\n\n\n## TODO\n\nHigh priority:\n\n- [x] ruby 2.5 with devkit\n- [x] ruby 2.4 with devkit\n- [x] ruby 2.3 with devkit \n- [x] document how to choose a ruby\n- [x] document how to opt into devkit\n- [x] update concourse-gem with windows-awareness\n- [ ] install msys2 into a common directory (rather than into ruby directories)\n- [ ] cmake\n\n\nLower priority:\n\n- [ ] ruby 2.2 with devkit\n- [ ] ruby 2.1 with devkit\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflavorjones%2Fwindows-ruby-dev-tools-release","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflavorjones%2Fwindows-ruby-dev-tools-release","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflavorjones%2Fwindows-ruby-dev-tools-release/lists"}