Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
- Passing
- Failing
- Pending
- Unknown / Exempted
Downloads:
1,163,206
Downloads of v 2.5.0.1:
20,387
Last Update:
26 Dec 2017
Package Maintainer(s):
Software Author(s):
- Yukihiro Matsumoto
Tags:
ruby admin language programming development dynamic cross-platform foss- Software Specific:
- Software Site
- Software Source
- Software License
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Ruby
This is not the latest version of Ruby available.
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
1,163,206
Downloads of v 2.5.0.1:
20,387
Maintainer(s):
Software Author(s):
- Yukihiro Matsumoto
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
Ruby 2.5.0.1
This is not the latest version of Ruby available.
All Checks are Passing
2 Passing Test
To install Ruby, run the following command from the command line or from PowerShell:
To upgrade Ruby, run the following command from the command line or from PowerShell:
To uninstall Ruby, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://chocolatey.org/api/v2. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download ruby --internalize --version=2.5.0.1 --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade ruby -y --source="'STEP 3 URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade ruby -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure ruby installed
win_chocolatey:
name: ruby
state: present
version: 2.5.0.1
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'ruby' do
action :install
version '2.5.0.1'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: ruby,
Version: 2.5.0.1,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller ruby
{
Name = 'ruby'
Ensure = 'Present'
Version = '2.5.0.1'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'ruby':
provider => 'chocolatey',
ensure => '2.5.0.1',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install ruby version="2.5.0.1" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 26 Dec 2017.
Ruby is a dynamic, open source programming language with a focus on simplicity and productivity. It has an elegant syntax that is natural to read and easy to write.
This package provides a self-contained Windows-based installer that includes the Ruby language, an execution environment, important documentation, and more.
Package Parameters
/InstallDir
- Ruby installation directory, by defaultc:\tools\RubyXY
where XY are major and minor version parts./NoPath
- Do not add ruby bin folder to machine PATH.
Notes
- To install ruby development kit ruby installer provides
ridk
command. It provides easy way to install msys2 viaridk install 1
, however, the installation is interactive. To accomplish unattended install, use msys2 package.
Copyright (c) 2007-2014, RubyInstaller Team
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the RubyInstaller Team nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE RUBYINSTALLER TEAM BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
Package can be verified like this:
1. Go to
x32: https://github.com/oneclick/rubyinstaller2/releases/download/rubyinstaller-2.5.0-1/rubyinstaller-2.5.0-1-x86.exe
x64: https://github.com/oneclick/rubyinstaller2/releases/download/rubyinstaller-2.5.0-1/rubyinstaller-2.5.0-1-x64.exe
to download the installer.
2. You can use one of the following methods to obtain the SHA256 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'
checksum32: 60B2C95613237D8BF0F3763D8989E1830A6E276CCA2B8B4236A975DD01F52BAD
checksum64: C76610DCB11C70A44EE131CB091D21B4692E1537327265FCDA082D4E0D136ADE
Using AU:
Get-RemoteChecksum https://github.com/oneclick/rubyinstaller2/releases/download/rubyinstaller-2.5.0-1/rubyinstaller-2.5.0-1-x64.exe
File 'license.txt' is obtained from:
https://raw.githubusercontent.com/oneclick/rubyinstaller/master/LICENSE.txt
$ErrorActionPreference = 'Stop'
$toolsDir = Split-Path $MyInvocation.MyCommand.Definition
$rubyDir = 'ruby' + ($Env:ChocolateyPackageVersion -replace '\.').Substring(0,2)
$pp = Get-PackageParameters
$installDir = if ($pp.InstallDir) { $pp.InstallDir } else { Join-Path (Get-ToolsLocation) $rubyDir }
$tasks = 'assocfiles', 'noridkinstall'
if ( !$pp.NoPath ) { $tasks += 'modpath' }
Write-Host "Ruby is going to be installed in '$installDir'"
$packageArgs = @{
packageName = 'ruby'
fileType = 'exe'
file = gi "$toolsDir\*_x32.exe"
file64 = gi "$toolsDir\*_x64.exe"
silentArgs = '/verysilent /dir="{0}" /tasks="{1}"' -f $installDir, ($tasks -join ',')
validExitCodes = @(0)
softwareName = 'ruby *'
}
Install-ChocolateyInstallPackage @packageArgs
ls $toolsPath\*.exe | % { rm $_ -ea 0; if (Test-Path $_) { sc "$_.ignore" }}
md5: 2FCB55C38A4FE53C85D55DEB1EF13F2B | sha1: 5BB86A9B3C736598E7297609ABDDA539A54D14D8 | sha256: C76610DCB11C70A44EE131CB091D21B4692E1537327265FCDA082D4E0D136ADE | sha512: A492719077AC04E9851EBFF146B258B5F97E98737AA43DA56ED65A46ABF22DB36135C41D07AE607CD6B2C366059FBB87BC926D6B8F257398396D90F348599E42
md5: D54F2F5449AE0236426139100D0161C7 | sha1: E730291AD4FECBE9110788744CBA183DBD4F587D | sha256: 60B2C95613237D8BF0F3763D8989E1830A6E276CCA2B8B4236A975DD01F52BAD | sha512: 4802CCA21858E1DB49FDD05ADC0FA9F443DCBE619A8567B326F3593AFE65936A9B88061E2E177733C18826CE0D0A2D7E14B3CE126C2AB5439EBDCC213842A772
Log in or click on link to see number of positives.
- ruby.2.5.0.1.nupkg (3dc31127281b) - ## / 61
- rubyinstaller-2.5.0-1-x64_x64.exe (c76610dcb11c) - ## / 67
- rubyinstaller-2.5.0-1-x86_x32.exe (60b2c9561323) - ## / 68
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Ruby 3.0.0.1 | 9402 | Tuesday, January 12, 2021 | Approved |
Ruby 2.7.2.1 | 19040 | Tuesday, October 6, 2020 | Approved |
Ruby 2.7.1.1 | 35708 | Friday, April 3, 2020 | Approved |
Ruby 2.7.0.1 | 17686 | Sunday, January 5, 2020 | Approved |
Ruby 2.6.5.1 | 22127 | Thursday, October 3, 2019 | Approved |
Ruby 2.6.4.1 | 6151 | Tuesday, September 10, 2019 | Approved |
Ruby 2.6.3.1 | 29702 | Thursday, April 18, 2019 | Approved |
Ruby 2.6.2.1 | 725 | Wednesday, April 17, 2019 | Approved |
Ruby 2.6.1.1 | 11434 | Thursday, January 31, 2019 | Approved |
Ruby 2.6.0.1 | 4982 | Sunday, January 6, 2019 | Approved |
Ruby 2.5.3.101 | 15835 | Tuesday, December 11, 2018 | Approved |
Ruby 2.5.3.1 | 9910 | Monday, October 22, 2018 | Approved |
Ruby 2.5.1.2 | 17871 | Monday, June 25, 2018 | Approved |
Ruby 2.5.1.1 | 17376 | Friday, March 30, 2018 | Approved |
Ruby 2.5.0.2 | 7225 | Wednesday, February 28, 2018 | Approved |
Ruby 2.5.0.1 | 20387 | Tuesday, December 26, 2017 | Approved |
Ruby 2.4.3.1 | 9080 | Wednesday, December 20, 2017 | Approved |
Ruby 2.4.2.2 | 24466 | Tuesday, September 19, 2017 | Approved |
Ruby 2.4.1.2 | 17096 | Wednesday, July 5, 2017 | Approved |
Ruby 2.4.1.1 | 11062 | Friday, May 26, 2017 | Approved |
Ruby 2.3.3 | 57834 | Tuesday, April 25, 2017 | Approved |
Ruby 2.3.1 | 84921 | Sunday, October 9, 2016 | Approved |
Ruby 2.3.0 | 453302 | Friday, May 6, 2016 | Approved |
Ruby 2.2.4 | 14282 | Wednesday, February 24, 2016 | Approved |
Ruby 2.2.3 | 113409 | Saturday, October 24, 2015 | Approved |
Ruby 2.2.2 | 572 | Saturday, October 24, 2015 | Approved |
Ruby 2.2.1 | 518 | Saturday, October 24, 2015 | Approved |
Ruby 2.1.8 | 4380 | Wednesday, February 24, 2016 | Approved |
Ruby 2.1.7 | 1918 | Monday, November 9, 2015 | Approved |
Ruby 2.1.6 | 34819 | Monday, May 11, 2015 | Approved |
Ruby 2.1.5 | 20144 | Monday, January 5, 2015 | Approved |
Ruby 2.1.3.0 | 8623 | Thursday, October 2, 2014 | Approved |
Ruby 2.0.0.64800 | 1245 | Wednesday, February 24, 2016 | Approved |
Ruby 2.0.0.64500 | 424 | Monday, May 11, 2015 | Approved |
Ruby 2.0.0.59800 | 594 | Thursday, January 8, 2015 | Approved |
Ruby 2.0.0.57600 | 1090 | Thursday, October 2, 2014 | Unknown |
Ruby 2.0.0.48100 | 6347 | Friday, June 6, 2014 | Unknown |
Ruby 2.0.0.45100 | 1978 | Monday, April 28, 2014 | Unknown |
Ruby 2.0.0.35300 | 5135 | Monday, November 25, 2013 | Unknown |
Ruby 2.0.0.24702 | 706 | Saturday, November 16, 2013 | Unknown |
Ruby 2.0.0.24701 | 699 | Monday, November 11, 2013 | Unknown |
Ruby 2.0.0.24700 | 3304 | Monday, July 15, 2013 | Unknown |
Ruby 1.9.3.55100 | 7239 | Thursday, January 8, 2015 | Approved |
Ruby 1.9.3.54500 | 1100 | Friday, June 6, 2014 | Unknown |
Ruby 1.9.3.48400 | 1540 | Monday, November 25, 2013 | Unknown |
Ruby 1.9.3.44802 | 554 | Saturday, November 16, 2013 | Unknown |
Ruby 1.9.3.44801 | 564 | Monday, November 11, 2013 | Unknown |
Ruby 1.9.3.44800 | 1267 | Monday, July 15, 2013 | Unknown |
Ruby 1.9.3.37400 | 4093 | Tuesday, February 5, 2013 | Unknown |
Ruby 1.9.3.32700 | 1502 | Monday, November 12, 2012 | Unknown |
Ruby 1.9.3.19400 | 753 | Friday, October 19, 2012 | Unknown |
Ruby 1.9.3.12500 | 1835 | Friday, February 17, 2012 | Unknown |
Ruby 1.9.2.29002 | 650 | Friday, February 17, 2012 | Unknown |
Ruby 1.9.2.29001 | 521 | Friday, February 3, 2012 | Unknown |
Ruby 1.9.2.291 | 580 | Monday, January 9, 2012 | Unknown |
Ruby 1.9.2.290 | 981 | Tuesday, August 23, 2011 | Unknown |
Ruby 1.9.2.2 | 598 | Tuesday, August 23, 2011 | Unknown |
ruby 1.9.2.1 | 584 | Tuesday, August 23, 2011 | Unknown |
ruby 1.9.2 | 686 | Tuesday, August 23, 2011 | Unknown |
Ruby 1.8.7.37402 | 3069 | Saturday, November 16, 2013 | Unknown |
Ruby 1.8.7.37401 | 517 | Monday, November 11, 2013 | Unknown |
Ruby 1.8.7.37400 | 1520 | Monday, July 15, 2013 | Unknown |
Ruby 1.8.7.37100 | 3366 | Monday, November 12, 2012 | Unknown |
Ruby 1.8.7.37000 | 800 | Friday, October 19, 2012 | Unknown |
Ruby 1.8.7.35800 | 1007 | Friday, February 17, 2012 | Unknown |
Ruby 1.8.7.35702 | 508 | Friday, February 3, 2012 | Unknown |
Ruby 1.8.7.35701 | 546 | Friday, February 3, 2012 | Unknown |
Ruby 1.8.7.357 | 529 | Monday, January 9, 2012 | Unknown |
ruby 1.8.7 | 2660 | Tuesday, August 23, 2011 | Unknown |
-
- chocolatey-core.extension (≥ 1.3.3)
- chocolatey (≥ 0.10.5)
Ground Rules:
- This discussion is only about Ruby and the Ruby package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Ruby, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.