Downloads:
1,512,370
Downloads of v 2.0.0.57600:
1,258
Last Update:
02 Oct 2014
Package Maintainer(s):
Software Author(s):
- Yukihiro Matsumoto
Tags:
ruby admin language programming dynamic- Software Specific:
- Software Site
- Software License
- Package Specific:
- Possible 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.
- 1
- 2
- 3
2.0.0.57600 | Updated: 02 Oct 2014
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
1,512,370
Downloads of v 2.0.0.57600:
1,258
Maintainer(s):
Software Author(s):
- Yukihiro Matsumoto
Ruby 2.0.0.57600
This is not the latest version of Ruby available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Yukihiro Matsumoto. The inclusion of Yukihiro Matsumoto trademark(s), if any, upon this webpage is solely to identify Yukihiro Matsumoto goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Validation Testing Unknown
Verification Testing Unknown
Scan Testing Successful:
No detections found in any package files
Deployment Method: Individual Install, Upgrade, & Uninstall
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:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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://community.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: (additional options)
choco download ruby --internalize --version=2.0.0.57600 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade ruby -y --source="'INTERNAL REPO URL'" --version="'2.0.0.57600'" [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="'INTERNAL REPO URL'" --version="'2.0.0.57600'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install ruby
win_chocolatey:
name: ruby
version: '2.0.0.57600'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'ruby' do
action :install
source 'INTERNAL REPO URL'
version '2.0.0.57600'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller ruby
{
Name = "ruby"
Version = "2.0.0.57600"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'ruby':
ensure => '2.0.0.57600',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was submitted prior to moderation and has not been approved. While it is likely safe for you, there is more risk involved.
Ruby - 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.
function Get-BinRoot {
# Since CamelCase was decided upon when $env:ChocolateyInstall was first invented, whe should stick to this convention and use $env:ChocolateyBinRoot.
# I propose:
# 1) all occurances of $env:chocolatey_bin_root be replaced with $env:ChocolateyBinRoot;
# 2) Make the new Chocolatey Installer for new users explicitly set (if not exists) $env:ChocolateyInstall and $env:ChocolateyBinRoot as environment variables so users will smile and understand;
# 3) Make new Chocolatey convert old $env:chocolatey_bin_root to $env:ChocolateyBinRoot
# For now, check old var first
if($env:ChocolateyBinRoot -eq $null) { # If no value
if($env:chocolatey_bin_root -eq $null) { # Try old var
$binRoot = "$env:ChocolateyInstall\bin"
}
else {
$env:ChocolateyBinRoot = $env:chocolatey_bin_root
}
}
# My ChocolateyBinRoot is C:\Common\bin, but looking at other packages, not everyone assumes ChocolateyBinRoot is prepended with a drive letter.
if (-not($env:ChocolateyBinRoot -imatch "^\w:")) {
# Add drive letter
$binRoot = join-path $env:systemdrive $env:ChocolateyBinRoot
}
else {
$binRoot = $env:ChocolateyBinRoot
}
# Now that we figured out the binRoot, let's store it as per proposal #3 line #7
if(-not($env:ChocolateyBinRoot -eq $binRoot)) {
[Environment]::SetEnvironmentVariable("ChocolateyBinRoot", "$binRoot", "User")
# Note that user variables pose a problem when there are two admins on one computer. But this is what was decided upon.
}
return $binRoot
}
Log in or click on link to see number of positives.
- ruby.2.0.0.57600.nupkg (c8b2ec7de591) - ## / 57
- rubyinstaller-2.0.0-p576-x64.exe (a14eac11012a) - ## / 56
- rubyinstaller-2.0.0-p576.exe (edde4a9028c7) - ## / 56
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.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Ruby 3.3.5.1 | 3882 | Thursday, September 5, 2024 | Approved | |
Ruby 3.3.4.1 | 6738 | Wednesday, July 10, 2024 | Approved | |
Ruby 3.3.3.1 | 4223 | Saturday, June 15, 2024 | Approved | |
Ruby 3.3.2.1 | 2301 | Monday, June 3, 2024 | Approved | |
Ruby 3.3.1.1 | 4920 | Friday, April 26, 2024 | Approved | |
Ruby 3.3.0.1 | 16244 | Tuesday, January 9, 2024 | Approved | |
Ruby 3.2.5.1 | 266 | Saturday, July 27, 2024 | Approved | |
Ruby 3.2.4.1 | 648 | Friday, April 26, 2024 | Approved | |
Ruby 3.2.3.1 | 1176 | Thursday, January 25, 2024 | Approved | |
Ruby 3.1.6.1 | 156 | Monday, June 3, 2024 | Approved | |
Ruby 3.1.5.1 | 86 | Friday, April 26, 2024 | Approved | |
Ruby 3.1.3.1 | 43695 | Monday, November 28, 2022 | Approved | |
Ruby 3.1.2.1 | 22228 | Wednesday, April 20, 2022 | Approved | |
Ruby 3.1.1.1 | 22142 | Saturday, February 19, 2022 | Approved | |
Ruby 3.1.0.1 | 8681 | Friday, December 31, 2021 | Approved | |
Ruby 3.0.7.1 | 73 | Friday, April 26, 2024 | Approved | |
Ruby 3.0.5.1 | 1436 | Monday, November 28, 2022 | Approved | |
Ruby 3.0.4.1 | 449 | Wednesday, April 20, 2022 | Approved | |
Ruby 3.0.3.1 | 6106 | Saturday, November 27, 2021 | Approved | |
Ruby 3.0.2.1 | 19858 | Saturday, July 10, 2021 | Approved | |
Ruby 3.0.1.1 | 13983 | Tuesday, April 20, 2021 | Approved | |
Ruby 3.0.0.1 | 15835 | Tuesday, January 12, 2021 | Approved | |
Ruby 2.7.7.1 | 1616 | Monday, November 28, 2022 | Approved | |
Ruby 2.7.6.1 | 2333 | Wednesday, April 20, 2022 | Approved | |
Ruby 2.7.5.1 | 1497 | Tuesday, February 15, 2022 | Approved | |
Ruby 2.7.2.1 | 44634 | Tuesday, October 6, 2020 | Approved | |
Ruby 2.7.1.1 | 40986 | Friday, April 3, 2020 | Approved | |
Ruby 2.7.0.1 | 19940 | Sunday, January 5, 2020 | Approved | |
Ruby 2.6.10.1 | 6120 | Wednesday, April 20, 2022 | Approved | |
Ruby 2.6.9.1 | 282 | Tuesday, February 15, 2022 | Approved | |
Ruby 2.6.5.1 | 37619 | Thursday, October 3, 2019 | Approved | |
Ruby 2.6.4.1 | 6333 | Tuesday, September 10, 2019 | Approved | |
Ruby 2.6.3.1 | 33459 | Thursday, April 18, 2019 | Approved | |
Ruby 2.6.2.1 | 962 | Wednesday, April 17, 2019 | Approved | |
Ruby 2.6.1.1 | 11790 | Thursday, January 31, 2019 | Approved | |
Ruby 2.6.0.1 | 5299 | Sunday, January 6, 2019 | Approved | |
Ruby 2.5.9.1 | 259 | Tuesday, February 15, 2022 | Approved | |
Ruby 2.5.3.101 | 17685 | Tuesday, December 11, 2018 | Approved | |
Ruby 2.5.3.1 | 16600 | Monday, October 22, 2018 | Approved | |
Ruby 2.5.1.2 | 18796 | Monday, June 25, 2018 | Approved | |
Ruby 2.5.1.1 | 19835 | Friday, March 30, 2018 | Approved | |
Ruby 2.5.0.2 | 7416 | Wednesday, February 28, 2018 | Approved | |
Ruby 2.5.0.1 | 21297 | Tuesday, December 26, 2017 | Approved | |
Ruby 2.4.10.100 | 1225 | Tuesday, February 15, 2022 | Approved | |
Ruby 2.4.3.1 | 10313 | Wednesday, December 20, 2017 | Approved | |
Ruby 2.4.2.2 | 25410 | Tuesday, September 19, 2017 | Approved | |
Ruby 2.4.1.2 | 17378 | Wednesday, July 5, 2017 | Approved | |
Ruby 2.4.1.1 | 11292 | Friday, May 26, 2017 | Approved | |
Ruby 2.3.3 | 64649 | Tuesday, April 25, 2017 | Approved | |
Ruby 2.3.1 | 85290 | Sunday, October 9, 2016 | Approved | |
Ruby 2.3.0 | 514409 | Friday, May 6, 2016 | Approved | |
Ruby 2.2.6 | 141 | Tuesday, February 15, 2022 | Approved | |
Ruby 2.2.4 | 14797 | Wednesday, February 24, 2016 | Approved | |
Ruby 2.2.3 | 115729 | Saturday, October 24, 2015 | Approved | |
Ruby 2.2.2 | 836 | Saturday, October 24, 2015 | Approved | |
Ruby 2.2.1 | 701 | Saturday, October 24, 2015 | Approved | |
Ruby 2.1.9 | 153 | Tuesday, February 15, 2022 | Approved | |
Ruby 2.1.8 | 5912 | Wednesday, February 24, 2016 | Approved | |
Ruby 2.1.7 | 2130 | Monday, November 9, 2015 | Approved | |
Ruby 2.1.6 | 34991 | Monday, May 11, 2015 | Approved | |
Ruby 2.1.5 | 20450 | Monday, January 5, 2015 | Approved | |
Ruby 2.1.3.0 | 8804 | Thursday, October 2, 2014 | Approved | |
Ruby 2.0.0.64800 | 1500 | Wednesday, February 24, 2016 | Approved | |
Ruby 2.0.0.64500 | 581 | Monday, May 11, 2015 | Approved | |
Ruby 2.0.0.59800 | 828 | Thursday, January 8, 2015 | Approved | |
Ruby 2.0.0.57600 | 1258 | Thursday, October 2, 2014 | Unknown | |
Ruby 2.0.0.48100 | 6523 | Friday, June 6, 2014 | Unknown | |
Ruby 2.0.0.45100 | 2120 | Monday, April 28, 2014 | Unknown | |
Ruby 2.0.0.35300 | 5293 | Monday, November 25, 2013 | Unknown | |
Ruby 2.0.0.24702 | 876 | Saturday, November 16, 2013 | Unknown | |
Ruby 2.0.0.24701 | 875 | Monday, November 11, 2013 | Unknown | |
Ruby 2.0.0.24700 | 3465 | Monday, July 15, 2013 | Unknown | |
Ruby 1.9.3.55100 | 7806 | Thursday, January 8, 2015 | Approved | |
Ruby 1.9.3.54500 | 1305 | Friday, June 6, 2014 | Unknown | |
Ruby 1.9.3.48400 | 1715 | Monday, November 25, 2013 | Unknown | |
Ruby 1.9.3.44802 | 728 | Saturday, November 16, 2013 | Unknown | |
Ruby 1.9.3.44801 | 728 | Monday, November 11, 2013 | Unknown | |
Ruby 1.9.3.44800 | 1441 | Monday, July 15, 2013 | Unknown | |
Ruby 1.9.3.37400 | 4258 | Tuesday, February 5, 2013 | Unknown | |
Ruby 1.9.3.32700 | 1651 | Monday, November 12, 2012 | Unknown | |
Ruby 1.9.3.19400 | 899 | Friday, October 19, 2012 | Unknown | |
Ruby 1.9.3.12500 | 2005 | Friday, February 17, 2012 | Unknown | |
Ruby 1.9.2.29002 | 787 | Friday, February 17, 2012 | Unknown | |
Ruby 1.9.2.29001 | 656 | Friday, February 3, 2012 | Unknown | |
Ruby 1.9.2.291 | 744 | Monday, January 9, 2012 | Unknown | |
Ruby 1.9.2.290 | 1118 | Tuesday, August 23, 2011 | Unknown | |
Ruby 1.9.2.2 | 741 | Tuesday, August 23, 2011 | Unknown | |
ruby 1.9.2.1 | 734 | Tuesday, August 23, 2011 | Unknown | |
ruby 1.9.2 | 873 | Tuesday, August 23, 2011 | Unknown | |
Ruby 1.8.7.37402 | 3255 | Saturday, November 16, 2013 | Unknown | |
Ruby 1.8.7.37401 | 663 | Monday, November 11, 2013 | Unknown | |
Ruby 1.8.7.37400 | 1662 | Monday, July 15, 2013 | Unknown | |
Ruby 1.8.7.37100 | 3511 | Monday, November 12, 2012 | Unknown | |
Ruby 1.8.7.37000 | 969 | Friday, October 19, 2012 | Unknown | |
Ruby 1.8.7.35800 | 1152 | Friday, February 17, 2012 | Unknown | |
Ruby 1.8.7.35702 | 648 | Friday, February 3, 2012 | Unknown | |
Ruby 1.8.7.35701 | 681 | Friday, February 3, 2012 | Unknown | |
Ruby 1.8.7.357 | 670 | Monday, January 9, 2012 | Unknown | |
ruby 1.8.7 | 2893 | Tuesday, August 23, 2011 | Unknown |
This package has no dependencies.
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.