repo
string
commit
string
message
string
diff
string
roblillack/wmaker
6a044fe5ae53a47fd0d67b1e152a6a5b552b4235
load_jpeg.c Return NULL
diff --git a/wrlib/load_jpeg.c b/wrlib/load_jpeg.c index d4e3bcd..d3938e5 100644 --- a/wrlib/load_jpeg.c +++ b/wrlib/load_jpeg.c @@ -1,195 +1,195 @@ /* jpeg.c - load JPEG image from file * * Raster graphics library * * Copyright (c) 1997-2003 Alfredo K. Kojima * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, * MA 02110-1301, USA. */ #include <config.h> /* Avoid a compiler warning */ #undef HAVE_STDLIB_H #include <stdlib.h> #include <stdio.h> #include <string.h> #include <jpeglib.h> #ifdef HAVE_STDNORETURN #include <stdnoreturn.h> #endif #include "wraster.h" #include "imgformat.h" /* * <setjmp.h> is used for the optional error recovery mechanism shown in * the second part of the example. */ #include <setjmp.h> /* * ERROR HANDLING: * * The JPEG library's standard error handler (jerror.c) is divided into * several "methods" which you can override individually. This lets you * adjust the behavior without duplicating a lot of code, which you might * have to update with each future release. * * Our example here shows how to override the "error_exit" method so that * control is returned to the library's caller when a fatal error occurs, * rather than calling exit() as the standard error_exit method does. * * We use C's setjmp/longjmp facility to return control. This means that the * routine which calls the JPEG library must first execute a setjmp() call to * establish the return point. We want the replacement error_exit to do a * longjmp(). But we need to make the setjmp buffer accessible to the * error_exit routine. To do this, we make a private extension of the * standard JPEG error handler object. (If we were using C++, we'd say we * were making a subclass of the regular error handler.) * * Here's the extended error handler struct: */ struct my_error_mgr { struct jpeg_error_mgr pub; /* "public" fields */ jmp_buf setjmp_buffer; /* for return to caller */ }; typedef struct my_error_mgr *my_error_ptr; /* * Here's the routine that will replace the standard error_exit method: */ static noreturn void my_error_exit(j_common_ptr cinfo) { /* cinfo->err really points to a my_error_mgr struct, so coerce pointer */ my_error_ptr myerr = (my_error_ptr) cinfo->err; /* Always display the message. */ /* We could postpone this until after returning, if we chose. */ (*cinfo->err->output_message) (cinfo); /* Return control to the setjmp point */ longjmp(myerr->setjmp_buffer, 1); } RImage *RLoadJPEG(const char *file_name) { RImage *image = NULL; struct jpeg_decompress_struct cinfo; int i; unsigned char *ptr; JSAMPROW buffer[1], bptr; FILE *file; /* We use our private extension JPEG error handler. * Note that this struct must live as long as the main JPEG parameter * struct, to avoid dangling-pointer problems. */ struct my_error_mgr jerr; file = fopen(file_name, "rb"); if (!file) { RErrorCode = RERR_OPEN; return NULL; } cinfo.err = jpeg_std_error(&jerr.pub); jerr.pub.error_exit = my_error_exit; /* Establish the setjmp return context for my_error_exit to use. */ if (setjmp(jerr.setjmp_buffer)) { /* * If we get here, the JPEG code has signaled an error. * We need to clean up the JPEG object, close the input file, and return. */ jpeg_destroy_decompress(&cinfo); fclose(file); return NULL; } jpeg_create_decompress(&cinfo); jpeg_stdio_src(&cinfo, file); jpeg_read_header(&cinfo, TRUE); if (cinfo.image_width < 1 || cinfo.image_height < 1) { RErrorCode = RERR_BADIMAGEFILE; jpeg_destroy_decompress(&cinfo); fclose(file); return NULL; } buffer[0] = (JSAMPROW) malloc(cinfo.image_width * cinfo.num_components); if (!buffer[0]) { RErrorCode = RERR_NOMEMORY; jpeg_destroy_decompress(&cinfo); fclose(file); return NULL; } if (cinfo.jpeg_color_space == JCS_GRAYSCALE) cinfo.out_color_space = JCS_GRAYSCALE; else cinfo.out_color_space = JCS_RGB; cinfo.quantize_colors = FALSE; cinfo.do_fancy_upsampling = FALSE; cinfo.do_block_smoothing = FALSE; jpeg_calc_output_dimensions(&cinfo); image = RCreateImage(cinfo.image_width, cinfo.image_height, False); if (!image) { RErrorCode = RERR_NOMEMORY; jpeg_destroy_decompress(&cinfo); fclose(file); if (buffer[0]) free(buffer[0]); - return image; + return NULL; } jpeg_start_decompress(&cinfo); ptr = image->data; if (cinfo.out_color_space == JCS_RGB) { while (cinfo.output_scanline < cinfo.output_height) { jpeg_read_scanlines(&cinfo, buffer, (JDIMENSION) 1); bptr = buffer[0]; memcpy(ptr, bptr, cinfo.image_width * 3); ptr += cinfo.image_width * 3; } } else { while (cinfo.output_scanline < cinfo.output_height) { jpeg_read_scanlines(&cinfo, buffer, (JDIMENSION) 1); bptr = buffer[0]; for (i = 0; i < cinfo.image_width; i++) { *ptr++ = *bptr; *ptr++ = *bptr; *ptr++ = *bptr++; } } } jpeg_finish_decompress(&cinfo); jpeg_destroy_decompress(&cinfo); fclose(file); if (buffer[0]) free(buffer[0]); return image; }
roblillack/wmaker
6dd1498f7c80345c4a34dcd5324bf1f55326f156
load_jpeg.c Style
diff --git a/wrlib/load_jpeg.c b/wrlib/load_jpeg.c index f446270..d4e3bcd 100644 --- a/wrlib/load_jpeg.c +++ b/wrlib/load_jpeg.c @@ -1,199 +1,195 @@ /* jpeg.c - load JPEG image from file * * Raster graphics library * * Copyright (c) 1997-2003 Alfredo K. Kojima * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, * MA 02110-1301, USA. */ #include <config.h> /* Avoid a compiler warning */ #undef HAVE_STDLIB_H #include <stdlib.h> #include <stdio.h> #include <string.h> #include <jpeglib.h> #ifdef HAVE_STDNORETURN #include <stdnoreturn.h> #endif #include "wraster.h" #include "imgformat.h" /* * <setjmp.h> is used for the optional error recovery mechanism shown in * the second part of the example. */ #include <setjmp.h> /* * ERROR HANDLING: * * The JPEG library's standard error handler (jerror.c) is divided into * several "methods" which you can override individually. This lets you * adjust the behavior without duplicating a lot of code, which you might * have to update with each future release. * * Our example here shows how to override the "error_exit" method so that * control is returned to the library's caller when a fatal error occurs, * rather than calling exit() as the standard error_exit method does. * * We use C's setjmp/longjmp facility to return control. This means that the * routine which calls the JPEG library must first execute a setjmp() call to * establish the return point. We want the replacement error_exit to do a * longjmp(). But we need to make the setjmp buffer accessible to the * error_exit routine. To do this, we make a private extension of the * standard JPEG error handler object. (If we were using C++, we'd say we * were making a subclass of the regular error handler.) * * Here's the extended error handler struct: */ struct my_error_mgr { struct jpeg_error_mgr pub; /* "public" fields */ jmp_buf setjmp_buffer; /* for return to caller */ }; typedef struct my_error_mgr *my_error_ptr; /* * Here's the routine that will replace the standard error_exit method: */ static noreturn void my_error_exit(j_common_ptr cinfo) { /* cinfo->err really points to a my_error_mgr struct, so coerce pointer */ my_error_ptr myerr = (my_error_ptr) cinfo->err; /* Always display the message. */ /* We could postpone this until after returning, if we chose. */ (*cinfo->err->output_message) (cinfo); /* Return control to the setjmp point */ longjmp(myerr->setjmp_buffer, 1); } RImage *RLoadJPEG(const char *file_name) { RImage *image = NULL; struct jpeg_decompress_struct cinfo; int i; unsigned char *ptr; JSAMPROW buffer[1], bptr; FILE *file; /* We use our private extension JPEG error handler. * Note that this struct must live as long as the main JPEG parameter * struct, to avoid dangling-pointer problems. */ struct my_error_mgr jerr; file = fopen(file_name, "rb"); if (!file) { RErrorCode = RERR_OPEN; return NULL; } cinfo.err = jpeg_std_error(&jerr.pub); jerr.pub.error_exit = my_error_exit; /* Establish the setjmp return context for my_error_exit to use. */ if (setjmp(jerr.setjmp_buffer)) { - /* If we get here, the JPEG code has signaled an error. + /* + * If we get here, the JPEG code has signaled an error. * We need to clean up the JPEG object, close the input file, and return. */ jpeg_destroy_decompress(&cinfo); fclose(file); return NULL; } jpeg_create_decompress(&cinfo); - jpeg_stdio_src(&cinfo, file); - jpeg_read_header(&cinfo, TRUE); - if (cinfo.image_width < 1 || cinfo.image_height < 1) { RErrorCode = RERR_BADIMAGEFILE; jpeg_destroy_decompress(&cinfo); fclose(file); return NULL; } buffer[0] = (JSAMPROW) malloc(cinfo.image_width * cinfo.num_components); if (!buffer[0]) { RErrorCode = RERR_NOMEMORY; jpeg_destroy_decompress(&cinfo); fclose(file); return NULL; } - if (cinfo.jpeg_color_space == JCS_GRAYSCALE) { + if (cinfo.jpeg_color_space == JCS_GRAYSCALE) cinfo.out_color_space = JCS_GRAYSCALE; - } else + else cinfo.out_color_space = JCS_RGB; + cinfo.quantize_colors = FALSE; cinfo.do_fancy_upsampling = FALSE; cinfo.do_block_smoothing = FALSE; jpeg_calc_output_dimensions(&cinfo); - image = RCreateImage(cinfo.image_width, cinfo.image_height, False); - if (!image) { RErrorCode = RERR_NOMEMORY; jpeg_destroy_decompress(&cinfo); fclose(file); if (buffer[0]) free(buffer[0]); return image; } - jpeg_start_decompress(&cinfo); + jpeg_start_decompress(&cinfo); ptr = image->data; - if (cinfo.out_color_space == JCS_RGB) { while (cinfo.output_scanline < cinfo.output_height) { jpeg_read_scanlines(&cinfo, buffer, (JDIMENSION) 1); bptr = buffer[0]; memcpy(ptr, bptr, cinfo.image_width * 3); ptr += cinfo.image_width * 3; } } else { while (cinfo.output_scanline < cinfo.output_height) { jpeg_read_scanlines(&cinfo, buffer, (JDIMENSION) 1); bptr = buffer[0]; for (i = 0; i < cinfo.image_width; i++) { *ptr++ = *bptr; *ptr++ = *bptr; *ptr++ = *bptr++; } } } jpeg_finish_decompress(&cinfo); jpeg_destroy_decompress(&cinfo); fclose(file); if (buffer[0]) free(buffer[0]); return image; }
roblillack/wmaker
090b761fde79b5523b3d7b002704e013775524c5
load_jpeg.c Removed dead code
diff --git a/wrlib/load_jpeg.c b/wrlib/load_jpeg.c index 02d53a5..f446270 100644 --- a/wrlib/load_jpeg.c +++ b/wrlib/load_jpeg.c @@ -1,203 +1,199 @@ /* jpeg.c - load JPEG image from file * * Raster graphics library * * Copyright (c) 1997-2003 Alfredo K. Kojima * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, * MA 02110-1301, USA. */ #include <config.h> /* Avoid a compiler warning */ #undef HAVE_STDLIB_H #include <stdlib.h> #include <stdio.h> #include <string.h> #include <jpeglib.h> #ifdef HAVE_STDNORETURN #include <stdnoreturn.h> #endif #include "wraster.h" #include "imgformat.h" /* * <setjmp.h> is used for the optional error recovery mechanism shown in * the second part of the example. */ #include <setjmp.h> /* * ERROR HANDLING: * * The JPEG library's standard error handler (jerror.c) is divided into * several "methods" which you can override individually. This lets you * adjust the behavior without duplicating a lot of code, which you might * have to update with each future release. * * Our example here shows how to override the "error_exit" method so that * control is returned to the library's caller when a fatal error occurs, * rather than calling exit() as the standard error_exit method does. * * We use C's setjmp/longjmp facility to return control. This means that the * routine which calls the JPEG library must first execute a setjmp() call to * establish the return point. We want the replacement error_exit to do a * longjmp(). But we need to make the setjmp buffer accessible to the * error_exit routine. To do this, we make a private extension of the * standard JPEG error handler object. (If we were using C++, we'd say we * were making a subclass of the regular error handler.) * * Here's the extended error handler struct: */ struct my_error_mgr { struct jpeg_error_mgr pub; /* "public" fields */ jmp_buf setjmp_buffer; /* for return to caller */ }; typedef struct my_error_mgr *my_error_ptr; /* * Here's the routine that will replace the standard error_exit method: */ static noreturn void my_error_exit(j_common_ptr cinfo) { /* cinfo->err really points to a my_error_mgr struct, so coerce pointer */ my_error_ptr myerr = (my_error_ptr) cinfo->err; /* Always display the message. */ /* We could postpone this until after returning, if we chose. */ (*cinfo->err->output_message) (cinfo); /* Return control to the setjmp point */ longjmp(myerr->setjmp_buffer, 1); } RImage *RLoadJPEG(const char *file_name) { RImage *image = NULL; struct jpeg_decompress_struct cinfo; int i; unsigned char *ptr; JSAMPROW buffer[1], bptr; FILE *file; /* We use our private extension JPEG error handler. * Note that this struct must live as long as the main JPEG parameter * struct, to avoid dangling-pointer problems. */ struct my_error_mgr jerr; file = fopen(file_name, "rb"); if (!file) { RErrorCode = RERR_OPEN; return NULL; } cinfo.err = jpeg_std_error(&jerr.pub); jerr.pub.error_exit = my_error_exit; /* Establish the setjmp return context for my_error_exit to use. */ if (setjmp(jerr.setjmp_buffer)) { /* If we get here, the JPEG code has signaled an error. * We need to clean up the JPEG object, close the input file, and return. */ jpeg_destroy_decompress(&cinfo); fclose(file); return NULL; } jpeg_create_decompress(&cinfo); jpeg_stdio_src(&cinfo, file); jpeg_read_header(&cinfo, TRUE); if (cinfo.image_width < 1 || cinfo.image_height < 1) { RErrorCode = RERR_BADIMAGEFILE; jpeg_destroy_decompress(&cinfo); fclose(file); return NULL; } buffer[0] = (JSAMPROW) malloc(cinfo.image_width * cinfo.num_components); - if (!buffer[0]) { RErrorCode = RERR_NOMEMORY; jpeg_destroy_decompress(&cinfo); fclose(file); - if (buffer[0]) - free(buffer[0]); - - return image; + return NULL; } if (cinfo.jpeg_color_space == JCS_GRAYSCALE) { cinfo.out_color_space = JCS_GRAYSCALE; } else cinfo.out_color_space = JCS_RGB; cinfo.quantize_colors = FALSE; cinfo.do_fancy_upsampling = FALSE; cinfo.do_block_smoothing = FALSE; jpeg_calc_output_dimensions(&cinfo); image = RCreateImage(cinfo.image_width, cinfo.image_height, False); if (!image) { RErrorCode = RERR_NOMEMORY; jpeg_destroy_decompress(&cinfo); fclose(file); if (buffer[0]) free(buffer[0]); return image; } jpeg_start_decompress(&cinfo); ptr = image->data; if (cinfo.out_color_space == JCS_RGB) { while (cinfo.output_scanline < cinfo.output_height) { jpeg_read_scanlines(&cinfo, buffer, (JDIMENSION) 1); bptr = buffer[0]; memcpy(ptr, bptr, cinfo.image_width * 3); ptr += cinfo.image_width * 3; } } else { while (cinfo.output_scanline < cinfo.output_height) { jpeg_read_scanlines(&cinfo, buffer, (JDIMENSION) 1); bptr = buffer[0]; for (i = 0; i < cinfo.image_width; i++) { *ptr++ = *bptr; *ptr++ = *bptr; *ptr++ = *bptr++; } } } jpeg_finish_decompress(&cinfo); jpeg_destroy_decompress(&cinfo); fclose(file); if (buffer[0]) free(buffer[0]); return image; }
roblillack/wmaker
49db946aa2a22de6e87fd602e74e3fa3d7666eee
load_jpeg.c Clean code
diff --git a/wrlib/load_jpeg.c b/wrlib/load_jpeg.c index 696048c..02d53a5 100644 --- a/wrlib/load_jpeg.c +++ b/wrlib/load_jpeg.c @@ -1,207 +1,203 @@ /* jpeg.c - load JPEG image from file * * Raster graphics library * * Copyright (c) 1997-2003 Alfredo K. Kojima * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, * MA 02110-1301, USA. */ #include <config.h> /* Avoid a compiler warning */ #undef HAVE_STDLIB_H #include <stdlib.h> #include <stdio.h> #include <string.h> #include <jpeglib.h> #ifdef HAVE_STDNORETURN #include <stdnoreturn.h> #endif #include "wraster.h" #include "imgformat.h" /* * <setjmp.h> is used for the optional error recovery mechanism shown in * the second part of the example. */ #include <setjmp.h> /* * ERROR HANDLING: * * The JPEG library's standard error handler (jerror.c) is divided into * several "methods" which you can override individually. This lets you * adjust the behavior without duplicating a lot of code, which you might * have to update with each future release. * * Our example here shows how to override the "error_exit" method so that * control is returned to the library's caller when a fatal error occurs, * rather than calling exit() as the standard error_exit method does. * * We use C's setjmp/longjmp facility to return control. This means that the * routine which calls the JPEG library must first execute a setjmp() call to * establish the return point. We want the replacement error_exit to do a * longjmp(). But we need to make the setjmp buffer accessible to the * error_exit routine. To do this, we make a private extension of the * standard JPEG error handler object. (If we were using C++, we'd say we * were making a subclass of the regular error handler.) * * Here's the extended error handler struct: */ struct my_error_mgr { struct jpeg_error_mgr pub; /* "public" fields */ jmp_buf setjmp_buffer; /* for return to caller */ }; typedef struct my_error_mgr *my_error_ptr; /* * Here's the routine that will replace the standard error_exit method: */ static noreturn void my_error_exit(j_common_ptr cinfo) { /* cinfo->err really points to a my_error_mgr struct, so coerce pointer */ my_error_ptr myerr = (my_error_ptr) cinfo->err; /* Always display the message. */ /* We could postpone this until after returning, if we chose. */ (*cinfo->err->output_message) (cinfo); /* Return control to the setjmp point */ longjmp(myerr->setjmp_buffer, 1); } RImage *RLoadJPEG(const char *file_name) { RImage *image = NULL; struct jpeg_decompress_struct cinfo; int i; unsigned char *ptr; JSAMPROW buffer[1], bptr; FILE *file; /* We use our private extension JPEG error handler. * Note that this struct must live as long as the main JPEG parameter * struct, to avoid dangling-pointer problems. */ struct my_error_mgr jerr; file = fopen(file_name, "rb"); if (!file) { RErrorCode = RERR_OPEN; return NULL; } cinfo.err = jpeg_std_error(&jerr.pub); jerr.pub.error_exit = my_error_exit; /* Establish the setjmp return context for my_error_exit to use. */ if (setjmp(jerr.setjmp_buffer)) { /* If we get here, the JPEG code has signaled an error. * We need to clean up the JPEG object, close the input file, and return. */ jpeg_destroy_decompress(&cinfo); fclose(file); return NULL; } jpeg_create_decompress(&cinfo); jpeg_stdio_src(&cinfo, file); jpeg_read_header(&cinfo, TRUE); if (cinfo.image_width < 1 || cinfo.image_height < 1) { - buffer[0] = NULL; /* Initialize pointer to avoid spurious free in cleanup code */ RErrorCode = RERR_BADIMAGEFILE; jpeg_destroy_decompress(&cinfo); fclose(file); - if (buffer[0]) - free(buffer[0]); - - return image; + return NULL; } buffer[0] = (JSAMPROW) malloc(cinfo.image_width * cinfo.num_components); if (!buffer[0]) { RErrorCode = RERR_NOMEMORY; jpeg_destroy_decompress(&cinfo); fclose(file); if (buffer[0]) free(buffer[0]); return image; } if (cinfo.jpeg_color_space == JCS_GRAYSCALE) { cinfo.out_color_space = JCS_GRAYSCALE; } else cinfo.out_color_space = JCS_RGB; cinfo.quantize_colors = FALSE; cinfo.do_fancy_upsampling = FALSE; cinfo.do_block_smoothing = FALSE; jpeg_calc_output_dimensions(&cinfo); image = RCreateImage(cinfo.image_width, cinfo.image_height, False); if (!image) { RErrorCode = RERR_NOMEMORY; jpeg_destroy_decompress(&cinfo); fclose(file); if (buffer[0]) free(buffer[0]); return image; } jpeg_start_decompress(&cinfo); ptr = image->data; if (cinfo.out_color_space == JCS_RGB) { while (cinfo.output_scanline < cinfo.output_height) { jpeg_read_scanlines(&cinfo, buffer, (JDIMENSION) 1); bptr = buffer[0]; memcpy(ptr, bptr, cinfo.image_width * 3); ptr += cinfo.image_width * 3; } } else { while (cinfo.output_scanline < cinfo.output_height) { jpeg_read_scanlines(&cinfo, buffer, (JDIMENSION) 1); bptr = buffer[0]; for (i = 0; i < cinfo.image_width; i++) { *ptr++ = *bptr; *ptr++ = *bptr; *ptr++ = *bptr++; } } } jpeg_finish_decompress(&cinfo); jpeg_destroy_decompress(&cinfo); fclose(file); if (buffer[0]) free(buffer[0]); return image; }
roblillack/wmaker
a2cc89dd3dea92ca05d12f0b8dc415aee47f505a
load_jpeg.c Removed goto
diff --git a/wrlib/load_jpeg.c b/wrlib/load_jpeg.c index 64eeb48..696048c 100644 --- a/wrlib/load_jpeg.c +++ b/wrlib/load_jpeg.c @@ -1,196 +1,207 @@ /* jpeg.c - load JPEG image from file * * Raster graphics library * * Copyright (c) 1997-2003 Alfredo K. Kojima * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, * MA 02110-1301, USA. */ #include <config.h> /* Avoid a compiler warning */ #undef HAVE_STDLIB_H #include <stdlib.h> #include <stdio.h> #include <string.h> #include <jpeglib.h> #ifdef HAVE_STDNORETURN #include <stdnoreturn.h> #endif #include "wraster.h" #include "imgformat.h" /* * <setjmp.h> is used for the optional error recovery mechanism shown in * the second part of the example. */ #include <setjmp.h> /* * ERROR HANDLING: * * The JPEG library's standard error handler (jerror.c) is divided into * several "methods" which you can override individually. This lets you * adjust the behavior without duplicating a lot of code, which you might * have to update with each future release. * * Our example here shows how to override the "error_exit" method so that * control is returned to the library's caller when a fatal error occurs, * rather than calling exit() as the standard error_exit method does. * * We use C's setjmp/longjmp facility to return control. This means that the * routine which calls the JPEG library must first execute a setjmp() call to * establish the return point. We want the replacement error_exit to do a * longjmp(). But we need to make the setjmp buffer accessible to the * error_exit routine. To do this, we make a private extension of the * standard JPEG error handler object. (If we were using C++, we'd say we * were making a subclass of the regular error handler.) * * Here's the extended error handler struct: */ struct my_error_mgr { struct jpeg_error_mgr pub; /* "public" fields */ jmp_buf setjmp_buffer; /* for return to caller */ }; typedef struct my_error_mgr *my_error_ptr; /* * Here's the routine that will replace the standard error_exit method: */ static noreturn void my_error_exit(j_common_ptr cinfo) { /* cinfo->err really points to a my_error_mgr struct, so coerce pointer */ my_error_ptr myerr = (my_error_ptr) cinfo->err; /* Always display the message. */ /* We could postpone this until after returning, if we chose. */ (*cinfo->err->output_message) (cinfo); /* Return control to the setjmp point */ longjmp(myerr->setjmp_buffer, 1); } RImage *RLoadJPEG(const char *file_name) { RImage *image = NULL; struct jpeg_decompress_struct cinfo; int i; unsigned char *ptr; JSAMPROW buffer[1], bptr; FILE *file; /* We use our private extension JPEG error handler. * Note that this struct must live as long as the main JPEG parameter * struct, to avoid dangling-pointer problems. */ struct my_error_mgr jerr; file = fopen(file_name, "rb"); if (!file) { RErrorCode = RERR_OPEN; return NULL; } cinfo.err = jpeg_std_error(&jerr.pub); jerr.pub.error_exit = my_error_exit; /* Establish the setjmp return context for my_error_exit to use. */ if (setjmp(jerr.setjmp_buffer)) { /* If we get here, the JPEG code has signaled an error. * We need to clean up the JPEG object, close the input file, and return. */ jpeg_destroy_decompress(&cinfo); fclose(file); return NULL; } jpeg_create_decompress(&cinfo); jpeg_stdio_src(&cinfo, file); jpeg_read_header(&cinfo, TRUE); if (cinfo.image_width < 1 || cinfo.image_height < 1) { buffer[0] = NULL; /* Initialize pointer to avoid spurious free in cleanup code */ RErrorCode = RERR_BADIMAGEFILE; - goto bye; + jpeg_destroy_decompress(&cinfo); + fclose(file); + if (buffer[0]) + free(buffer[0]); + + return image; } buffer[0] = (JSAMPROW) malloc(cinfo.image_width * cinfo.num_components); if (!buffer[0]) { RErrorCode = RERR_NOMEMORY; - goto bye; + jpeg_destroy_decompress(&cinfo); + fclose(file); + if (buffer[0]) + free(buffer[0]); + + return image; } if (cinfo.jpeg_color_space == JCS_GRAYSCALE) { cinfo.out_color_space = JCS_GRAYSCALE; } else cinfo.out_color_space = JCS_RGB; cinfo.quantize_colors = FALSE; cinfo.do_fancy_upsampling = FALSE; cinfo.do_block_smoothing = FALSE; jpeg_calc_output_dimensions(&cinfo); image = RCreateImage(cinfo.image_width, cinfo.image_height, False); if (!image) { RErrorCode = RERR_NOMEMORY; - goto bye; + jpeg_destroy_decompress(&cinfo); + fclose(file); + if (buffer[0]) + free(buffer[0]); + + return image; } jpeg_start_decompress(&cinfo); ptr = image->data; if (cinfo.out_color_space == JCS_RGB) { while (cinfo.output_scanline < cinfo.output_height) { jpeg_read_scanlines(&cinfo, buffer, (JDIMENSION) 1); bptr = buffer[0]; memcpy(ptr, bptr, cinfo.image_width * 3); ptr += cinfo.image_width * 3; } } else { while (cinfo.output_scanline < cinfo.output_height) { jpeg_read_scanlines(&cinfo, buffer, (JDIMENSION) 1); bptr = buffer[0]; for (i = 0; i < cinfo.image_width; i++) { *ptr++ = *bptr; *ptr++ = *bptr; *ptr++ = *bptr++; } } } jpeg_finish_decompress(&cinfo); - - bye: jpeg_destroy_decompress(&cinfo); - fclose(file); - if (buffer[0]) free(buffer[0]); return image; }
roblillack/wmaker
de09ac5dade2bf11fd540200051ea90414e3aec4
WPrefs.c Removed format-overflow warning
diff --git a/WPrefs.app/WPrefs.c b/WPrefs.app/WPrefs.c index af28a27..0913e24 100644 --- a/WPrefs.app/WPrefs.c +++ b/WPrefs.app/WPrefs.c @@ -93,834 +93,834 @@ static void save(WMWidget * w, void *data) WMPropList *key; XEvent ev; /* Parameter not used, but tell the compiler that it is ok */ (void) data; /* puts("gathering data"); */ for (i = 0; i < WPrefs.sectionCount; i++) { PanelRec *rec = WMGetHangedData(WPrefs.sectionB[i]); if ((rec->callbacks.flags & INITIALIZED_PANEL)) savePanelData((Panel *) rec); } /* puts("compressing data"); */ /* compare the user dictionary with the global and remove redundant data */ keyList = WMGetPLDictionaryKeys(GlobalDB); /* puts(WMGetPropListDescription(WindowMakerDB, False)); */ for (i = 0; i < WMGetPropListItemCount(keyList); i++) { key = WMGetFromPLArray(keyList, i); /* We don't have this value anyway, so no problem. * Probably a new option */ p1 = WMGetFromPLDictionary(WindowMakerDB, key); if (!p1) continue; /* The global doesn't have it, so no problem either. */ p2 = WMGetFromPLDictionary(GlobalDB, key); if (!p2) continue; /* If both values are the same, don't save. */ if (WMIsPropListEqualTo(p1, p2)) WMRemoveFromPLDictionary(WindowMakerDB, key); } /* puts(WMGetPropListDescription(WindowMakerDB, False)); */ WMReleasePropList(keyList); /* puts("storing data"); */ WMWritePropListToFile(WindowMakerDB, WindowMakerDBPath); memset(&ev, 0, sizeof(XEvent)); ev.xclient.type = ClientMessage; ev.xclient.message_type = XInternAtom(WMScreenDisplay(WMWidgetScreen(w)), "_WINDOWMAKER_COMMAND", False); ev.xclient.window = DefaultRootWindow(WMScreenDisplay(WMWidgetScreen(w))); ev.xclient.format = 8; strncpy(ev.xclient.data.b, "Reconfigure", sizeof(ev.xclient.data.b)); XSendEvent(WMScreenDisplay(WMWidgetScreen(w)), DefaultRootWindow(WMScreenDisplay(WMWidgetScreen(w))), False, SubstructureRedirectMask, &ev); XFlush(WMScreenDisplay(WMWidgetScreen(w))); } static void undo(WMWidget * w, void *data) { PanelRec *rec = (PanelRec *) WPrefs.currentPanel; /* Parameter not used, but tell the compiler that it is ok */ (void) w; (void) data; if (!rec) return; if (rec->callbacks.undoChanges && (rec->callbacks.flags & INITIALIZED_PANEL)) { (*rec->callbacks.undoChanges) (WPrefs.currentPanel); } } static void undoAll(WMWidget * w, void *data) { int i; /* Parameter not used, but tell the compiler that it is ok */ (void) w; (void) data; for (i = 0; i < WPrefs.sectionCount; i++) { PanelRec *rec = WMGetHangedData(WPrefs.sectionB[i]); if (rec->callbacks.undoChanges && (rec->callbacks.flags & INITIALIZED_PANEL)) (*rec->callbacks.undoChanges) ((Panel *) rec); } } static void prepareForClose(void) { int i; for (i = 0; i < WPrefs.sectionCount; i++) { PanelRec *rec = WMGetHangedData(WPrefs.sectionB[i]); if (rec->callbacks.prepareForClose && (rec->callbacks.flags & INITIALIZED_PANEL)) (*rec->callbacks.prepareForClose) ((Panel *) rec); } } static void toggleBalloons(WMWidget *w, void *data) { WMUserDefaults *udb = WMGetStandardUserDefaults(); Bool flag; /* Parameter not used, but tell the compiler that it is ok */ (void) w; (void) data; flag = WMGetButtonSelected(WPrefs.balloonBtn); WMSetBalloonEnabled(WMWidgetScreen(WPrefs.win), flag); WMSetUDBoolForKey(udb, flag, "BalloonHelp"); } static void createMainWindow(WMScreen * scr) { WMScroller *scroller; WMFont *font; char buffer[128]; WPrefs.win = WMCreateWindow(scr, "wprefs"); WMResizeWidget(WPrefs.win, 520, 390); WMSetWindowTitle(WPrefs.win, _("Window Maker Preferences")); WMSetWindowCloseAction(WPrefs.win, quit, NULL); WMSetWindowMaxSize(WPrefs.win, 520, 390); WMSetWindowMinSize(WPrefs.win, 520, 390); WMSetWindowMiniwindowTitle(WPrefs.win, _("Preferences")); WPrefs.scrollV = WMCreateScrollView(WPrefs.win); WMResizeWidget(WPrefs.scrollV, 500, 87); WMMoveWidget(WPrefs.scrollV, 10, 10); WMSetScrollViewRelief(WPrefs.scrollV, WRSunken); WMSetScrollViewHasHorizontalScroller(WPrefs.scrollV, True); WMSetScrollViewHasVerticalScroller(WPrefs.scrollV, False); scroller = WMGetScrollViewHorizontalScroller(WPrefs.scrollV); WMSetScrollerArrowsPosition(scroller, WSANone); WPrefs.buttonF = WMCreateFrame(WPrefs.win); WMSetFrameRelief(WPrefs.buttonF, WRFlat); WMSetScrollViewContentView(WPrefs.scrollV, WMWidgetView(WPrefs.buttonF)); WPrefs.undosBtn = WMCreateCommandButton(WPrefs.win); WMResizeWidget(WPrefs.undosBtn, 90, 28); WMMoveWidget(WPrefs.undosBtn, 135, 350); WMSetButtonText(WPrefs.undosBtn, _("Revert Page")); WMSetButtonAction(WPrefs.undosBtn, undo, NULL); WPrefs.undoBtn = WMCreateCommandButton(WPrefs.win); WMResizeWidget(WPrefs.undoBtn, 90, 28); WMMoveWidget(WPrefs.undoBtn, 235, 350); WMSetButtonText(WPrefs.undoBtn, _("Revert All")); WMSetButtonAction(WPrefs.undoBtn, undoAll, NULL); WPrefs.saveBtn = WMCreateCommandButton(WPrefs.win); WMResizeWidget(WPrefs.saveBtn, 80, 28); WMMoveWidget(WPrefs.saveBtn, 335, 350); WMSetButtonText(WPrefs.saveBtn, _("Save")); WMSetButtonAction(WPrefs.saveBtn, save, NULL); WPrefs.closeBtn = WMCreateCommandButton(WPrefs.win); WMResizeWidget(WPrefs.closeBtn, 80, 28); WMMoveWidget(WPrefs.closeBtn, 425, 350); WMSetButtonText(WPrefs.closeBtn, _("Close")); WMSetButtonAction(WPrefs.closeBtn, quit, NULL); WPrefs.balloonBtn = WMCreateSwitchButton(WPrefs.win); WMResizeWidget(WPrefs.balloonBtn, 200, 28); WMMoveWidget(WPrefs.balloonBtn, 15, 350); WMSetButtonText(WPrefs.balloonBtn, _("Balloon Help")); WMSetButtonAction(WPrefs.balloonBtn, toggleBalloons, NULL); { WMUserDefaults *udb = WMGetStandardUserDefaults(); Bool flag = WMGetUDBoolForKey(udb, "BalloonHelp"); WMSetButtonSelected(WPrefs.balloonBtn, flag); WMSetBalloonEnabled(scr, flag); } /* banner */ WPrefs.banner = WMCreateFrame(WPrefs.win); WMResizeWidget(WPrefs.banner, FRAME_WIDTH, FRAME_HEIGHT); WMMoveWidget(WPrefs.banner, FRAME_LEFT, FRAME_TOP); WMSetFrameRelief(WPrefs.banner, WRFlat); font = WMCreateFont(scr, "Lucida Sans,URW Gothic L,Times New Roman,serif" ":bold:pixelsize=26:antialias=true"); WPrefs.nameL = WMCreateLabel(WPrefs.banner); WMSetLabelTextAlignment(WPrefs.nameL, WACenter); WMResizeWidget(WPrefs.nameL, FRAME_WIDTH - 20, 60); WMMoveWidget(WPrefs.nameL, 10, 50); WMSetLabelFont(WPrefs.nameL, font); WMSetLabelText(WPrefs.nameL, _("Window Maker Preferences")); WMReleaseFont(font); WPrefs.versionL = WMCreateLabel(WPrefs.banner); WMResizeWidget(WPrefs.versionL, FRAME_WIDTH - 20, 20); WMMoveWidget(WPrefs.versionL, 10, 120); WMSetLabelTextAlignment(WPrefs.versionL, WACenter); sprintf(buffer, _("Version %s"), VERSION); WMSetLabelText(WPrefs.versionL, buffer); WPrefs.statusL = WMCreateLabel(WPrefs.banner); WMResizeWidget(WPrefs.statusL, FRAME_WIDTH - 20, 60); WMMoveWidget(WPrefs.statusL, 10, 150); WMSetLabelTextAlignment(WPrefs.statusL, WACenter); WMSetLabelText(WPrefs.statusL, _("Starting...")); WMMapSubwidgets(WPrefs.win); WMUnmapWidget(WPrefs.undosBtn); WMUnmapWidget(WPrefs.undoBtn); WMUnmapWidget(WPrefs.saveBtn); } static void showPanel(Panel * panel) { PanelRec *rec = (PanelRec *) panel; if (!(rec->callbacks.flags & INITIALIZED_PANEL)) { (*rec->callbacks.createWidgets) (panel); rec->callbacks.flags |= INITIALIZED_PANEL; } WMSetWindowTitle(WPrefs.win, rec->sectionName); if (rec->callbacks.showPanel) (*rec->callbacks.showPanel) (panel); WMMapWidget(rec->box); } static void hidePanel(Panel * panel) { PanelRec *rec = (PanelRec *) panel; WMUnmapWidget(rec->box); if (rec->callbacks.hidePanel) (*rec->callbacks.hidePanel) (panel); } static void savePanelData(Panel * panel) { PanelRec *rec = (PanelRec *) panel; if (rec->callbacks.updateDomain) { (*rec->callbacks.updateDomain) (panel); } } static void changeSection(WMWidget * self, void *data) { /* Parameter not used, but tell the compiler that it is ok */ (void) self; if (WPrefs.currentPanel == data) return; if (WPrefs.currentPanel == NULL) { WMDestroyWidget(WPrefs.nameL); WMDestroyWidget(WPrefs.versionL); WMDestroyWidget(WPrefs.statusL); WMSetFrameRelief(WPrefs.banner, WRGroove); /* WMMapWidget(WPrefs.undosBtn); WMMapWidget(WPrefs.undoBtn); */ WMMapWidget(WPrefs.saveBtn); } showPanel(data); if (WPrefs.currentPanel) hidePanel(WPrefs.currentPanel); WPrefs.currentPanel = data; } char *LocateImage(const char *name) { char *path; char *tmp = wmalloc(strlen(name) + 8); if (TIFFOK) { sprintf(tmp, "%s.tiff", name); path = WMPathForResourceOfType(tmp, "tiff"); } else { sprintf(tmp, "%s.xpm", name); path = WMPathForResourceOfType(tmp, "xpm"); } wfree(tmp); if (!path) { wwarning(_("could not locate image file %s"), name); } return path; } void CreateImages(WMScreen *scr, RContext *rc, RImage *xis, const char *file, WMPixmap **icon_normal, WMPixmap **icon_greyed) { RImage *icon; char *path; RColor gray = { 0xae, 0xaa, 0xae, 0 }; path = LocateImage(file); if (!path) { *icon_normal = NULL; if (icon_greyed) *icon_greyed = NULL; return; } *icon_normal = WMCreatePixmapFromFile(scr, path); if (!*icon_normal) { wwarning(_("could not load icon %s"), path); if (icon_greyed) *icon_greyed = NULL; wfree(path); return; } if (!icon_greyed) // Greyed-out version not requested, we are done { wfree(path); return; } icon = RLoadImage(rc, path, 0); if (!icon) { wwarning(_("could not load icon %s"), path); *icon_greyed = NULL; wfree(path); return; } RCombineImageWithColor(icon, &gray); if (xis) { RCombineImagesWithOpaqueness(icon, xis, 180); } *icon_greyed = WMCreatePixmapFromRImage(scr, icon, 127); if (!*icon_greyed) { wwarning(_("could not process icon %s: %s"), path, RMessageForError(RErrorCode)); } RReleaseImage(icon); wfree(path); } void SetButtonAlphaImage(WMScreen *scr, WMButton *bPtr, const char *file) { WMPixmap *icon; RColor color; char *iconPath; iconPath = LocateImage(file); color.red = 0xae; color.green = 0xaa; color.blue = 0xae; color.alpha = 0; if (iconPath) { icon = WMCreateBlendedPixmapFromFile(scr, iconPath, &color); if (!icon) wwarning(_("could not load icon file %s"), iconPath); } else { icon = NULL; } WMSetButtonImage(bPtr, icon); color.red = 0xff; color.green = 0xff; color.blue = 0xff; color.alpha = 0; if (iconPath) { icon = WMCreateBlendedPixmapFromFile(scr, iconPath, &color); if (!icon) wwarning(_("could not load icon file %s"), iconPath); } else { icon = NULL; } WMSetButtonAltImage(bPtr, icon); if (icon) WMReleasePixmap(icon); if (iconPath) wfree(iconPath); } void AddSection(Panel * panel, const char *iconFile) { WMButton *bPtr; assert(WPrefs.sectionCount < MAX_SECTIONS); bPtr = WMCreateCustomButton(WPrefs.buttonF, WBBStateLightMask | WBBStateChangeMask); WMResizeWidget(bPtr, 64, 64); WMMoveWidget(bPtr, WPrefs.sectionCount * 64, 0); WMSetButtonImagePosition(bPtr, WIPImageOnly); WMSetButtonAction(bPtr, changeSection, panel); WMHangData(bPtr, panel); WMSetBalloonTextForView(((PanelRec *) panel)->description, WMWidgetView(bPtr)); SetButtonAlphaImage(WMWidgetScreen(bPtr), bPtr, iconFile); WMMapWidget(bPtr); WPrefs.sectionB[WPrefs.sectionCount] = bPtr; if (WPrefs.sectionCount > 0) WMGroupButtons(WPrefs.sectionB[0], bPtr); WPrefs.sectionCount++; WMResizeWidget(WPrefs.buttonF, WPrefs.sectionCount * 64, 64); } void Initialize(WMScreen * scr) { char **list; int i; char *path; list = RSupportedFileFormats(); for (i = 0; list[i] != NULL; i++) { if (strcmp(list[i], "TIFF") == 0) { TIFFOK = True; break; } } if (TIFFOK) path = WMPathForResourceOfType("WPrefs.tiff", NULL); else path = WMPathForResourceOfType("WPrefs.xpm", NULL); if (path) { RImage *tmp; tmp = RLoadImage(WMScreenRContext(scr), path, 0); if (!tmp) { wwarning(_("could not load image file %s:%s"), path, RMessageForError(RErrorCode)); } else { WMSetApplicationIconImage(scr, tmp); RReleaseImage(tmp); } wfree(path); } memset(&WPrefs, 0, sizeof(_WPrefs)); createMainWindow(scr); WMRealizeWidget(WPrefs.win); WMSetWindowMiniwindowImage(WPrefs.win, WMGetApplicationIconImage(scr)); WMMapWidget(WPrefs.win); XFlush(WMScreenDisplay(scr)); WMSetLabelText(WPrefs.statusL, _("Loading Window Maker configuration files...")); XFlush(WMScreenDisplay(scr)); loadConfigurations(scr, WPrefs.win); WMSetLabelText(WPrefs.statusL, _("Initializing configuration panels...")); InitFocus(WPrefs.banner); InitWindowHandling(WPrefs.banner); InitMenuPreferences(WPrefs.banner); InitIcons(WPrefs.banner); InitPreferences(WPrefs.banner); InitPaths(WPrefs.banner); InitDocks(WPrefs.banner); InitWorkspace(WPrefs.banner); InitConfigurations(WPrefs.banner); InitMenu(WPrefs.banner); #ifdef not_yet_fully_implemented InitKeyboardSettings(WPrefs.banner); #endif InitKeyboardShortcuts(WPrefs.banner); InitMouseSettings(WPrefs.banner); InitAppearance(WPrefs.banner); InitFontSimple(WPrefs.banner); #ifdef not_yet_fully_implemented InitThemes(WPrefs.banner); #endif InitExpert(WPrefs.banner); WMRealizeWidget(WPrefs.scrollV); WMSetLabelText(WPrefs.statusL, ""); } WMWindow *GetWindow(void) { return WPrefs.win; } static void loadConfigurations(WMScreen * scr, WMWindow * mainw) { WMPropList *db, *gdb; char *path; FILE *file; char buffer[1024]; - char mbuf[1024]; + char mbuf[1069]; /* Size of buffer and extra characters for the sprintfs */ int v1, v2, v3; path = wdefaultspathfordomain("WindowMaker"); WindowMakerDBPath = path; db = WMReadPropListFromFile(path); if (db) { if (!WMIsPLDictionary(db)) { WMReleasePropList(db); db = NULL; sprintf(mbuf, _("Window Maker domain (%s) is corrupted!"), path); WMRunAlertPanel(scr, mainw, _("Error"), mbuf, _("OK"), NULL, NULL); } } else { sprintf(mbuf, _("Could not load Window Maker domain (%s) from defaults database."), path); WMRunAlertPanel(scr, mainw, _("Error"), mbuf, _("OK"), NULL, NULL); } path = getenv("WMAKER_BIN_NAME"); if (!path) path = "wmaker"; { char *command; command = wstrconcat(path, " --version"); file = popen(command, "r"); wfree(command); } if (!file || !fgets(buffer, 1023, file)) { werror(_("could not extract version information from Window Maker")); wfatal(_("Make sure wmaker is in your search path.")); WMRunAlertPanel(scr, mainw, _("Error"), _ ("Could not extract version from Window Maker. Make sure it is correctly installed and is in your PATH environment variable."), _("OK"), NULL, NULL); exit(1); } if (file) pclose(file); if (sscanf(buffer, "Window Maker %i.%i.%i", &v1, &v2, &v3) != 3 && sscanf(buffer, "WindowMaker %i.%i.%i", &v1, &v2, &v3) != 3) { WMRunAlertPanel(scr, mainw, _("Error"), _("Could not extract version from Window Maker. " "Make sure it is correctly installed and the path " "where it installed is in the PATH environment " "variable."), _("OK"), NULL, NULL); exit(1); } if (v1 == 0 && (v2 < 18 || v3 < 0)) { sprintf(mbuf, _("WPrefs only supports Window Maker 0.18.0 or newer.\n" "The version installed is %i.%i.%i\n"), v1, v2, v3); WMRunAlertPanel(scr, mainw, _("Error"), mbuf, _("OK"), NULL, NULL); exit(1); } if (v1 > 1 || (v1 == 1 && (v2 > 0))) { sprintf(mbuf, _ ("Window Maker %i.%i.%i, which is installed in your system, is not fully supported by this version of WPrefs."), v1, v2, v3); WMRunAlertPanel(scr, mainw, _("Warning"), mbuf, _("OK"), NULL, NULL); } { char *command; command = wstrconcat(path, " --global_defaults_path"); file = popen(command, "r"); wfree(command); } if (!file || !fgets(buffer, 1023, file)) { werror(_("could not run \"%s --global_defaults_path\"."), path); exit(1); } else { char *ptr; ptr = strchr(buffer, '\n'); if (ptr) *ptr = 0; strcat(buffer, "/WindowMaker"); } if (file) pclose(file); gdb = WMReadPropListFromFile(buffer); if (gdb) { if (!WMIsPLDictionary(gdb)) { WMReleasePropList(gdb); gdb = NULL; sprintf(mbuf, _("Window Maker domain (%s) is corrupted!"), buffer); WMRunAlertPanel(scr, mainw, _("Error"), mbuf, _("OK"), NULL, NULL); } } else { sprintf(mbuf, _("Could not load global Window Maker domain (%s)."), buffer); WMRunAlertPanel(scr, mainw, _("Error"), mbuf, _("OK"), NULL, NULL); } if (!db) { db = WMCreatePLDictionary(NULL, NULL); } if (!gdb) { gdb = WMCreatePLDictionary(NULL, NULL); } GlobalDB = gdb; WindowMakerDB = db; } WMPropList *GetObjectForKey(const char *defaultName) { WMPropList *object = NULL; WMPropList *key = WMCreatePLString(defaultName); object = WMGetFromPLDictionary(WindowMakerDB, key); if (!object) object = WMGetFromPLDictionary(GlobalDB, key); WMReleasePropList(key); return object; } void SetObjectForKey(WMPropList * object, const char *defaultName) { WMPropList *key = WMCreatePLString(defaultName); WMPutInPLDictionary(WindowMakerDB, key, object); WMReleasePropList(key); } void RemoveObjectForKey(const char *defaultName) { WMPropList *key = WMCreatePLString(defaultName); WMRemoveFromPLDictionary(WindowMakerDB, key); WMReleasePropList(key); } char *GetStringForKey(const char *defaultName) { WMPropList *val; val = GetObjectForKey(defaultName); if (!val) return NULL; if (!WMIsPLString(val)) return NULL; return WMGetFromPLString(val); } WMPropList *GetArrayForKey(const char *defaultName) { WMPropList *val; val = GetObjectForKey(defaultName); if (!val) return NULL; if (!WMIsPLArray(val)) return NULL; return val; } WMPropList *GetDictionaryForKey(const char *defaultName) { WMPropList *val; val = GetObjectForKey(defaultName); if (!val) return NULL; if (!WMIsPLDictionary(val)) return NULL; return val; } int GetIntegerForKey(const char *defaultName) { WMPropList *val; char *str; int value; val = GetObjectForKey(defaultName); if (!val) return 0; if (!WMIsPLString(val)) return 0; str = WMGetFromPLString(val); if (!str) return 0; if (sscanf(str, "%i", &value) != 1) return 0; return value; } Bool GetBoolForKey(const char *defaultName) { int value; char *str; str = GetStringForKey(defaultName); if (!str) return False; if (sscanf(str, "%i", &value) == 1 && value != 0) return True; if (strcasecmp(str, "YES") == 0) return True; if (strcasecmp(str, "Y") == 0) return True; return False; } void SetIntegerForKey(int value, const char *defaultName) { WMPropList *object; char buffer[128]; sprintf(buffer, "%i", value); object = WMCreatePLString(buffer); SetObjectForKey(object, defaultName); WMReleasePropList(object); } void SetStringForKey(const char *value, const char *defaultName) { WMPropList *object; object = WMCreatePLString(value); SetObjectForKey(object, defaultName); WMReleasePropList(object); } void SetBoolForKey(Bool value, const char *defaultName) { static WMPropList *yes = NULL, *no = NULL; if (!yes) { yes = WMCreatePLString("YES"); no = WMCreatePLString("NO"); } SetObjectForKey(value ? yes : no, defaultName); } void SetSpeedForKey(int speed, const char *defaultName) { char *str; switch (speed) { case 0: str = "ultraslow"; break; case 1: str = "slow"; break; case 2: str = "medium"; break; case 3: str = "fast"; break; case 4: str = "ultrafast"; break; default: str = NULL; } if (str) SetStringForKey(str, defaultName); } int GetSpeedForKey(const char *defaultName) { char *str; int i; str = GetStringForKey(defaultName); if (!str) return 2; if (strcasecmp(str, "ultraslow") == 0) i = 0; else if (strcasecmp(str, "slow") == 0) i = 1; else if (strcasecmp(str, "medium") == 0) i = 2; else if (strcasecmp(str, "fast") == 0) i = 3; else if (strcasecmp(str, "ultrafast") == 0) i = 4; else { wwarning(_("bad speed value for option %s; using default Medium"), defaultName); i = 2; } return i; }
roblillack/wmaker
3dce639aae4662d934915fb98181019a1b619fc0
Appearance.c Removed fallthrough warning
diff --git a/WPrefs.app/Appearance.c b/WPrefs.app/Appearance.c index a05dba3..909812d 100644 --- a/WPrefs.app/Appearance.c +++ b/WPrefs.app/Appearance.c @@ -102,1084 +102,1087 @@ static const struct { [MSTYLE_FLAT] = { "flat", "msty3" } }; /********************************************************************/ static const struct { const char *label; const char *db_value; } wintitle_align[] = { [WALeft] = { N_("Left"), "left" }, [WACenter] = { N_("Center"), "center" }, [WARight] = { N_("Right"), "right" } }; /********************************************************************/ static const char *const sample_colors[] = { "black", "#292929", "#525252", "#848484", "#adadad", "#d6d6d6", "white", "#d6d68c", "#d6a57b", "#8cd68c", "#8cd6ce", "#d68c8c", "#8c9cd6", "#bd86d6", "#d68cbd", "#d64a4a", "#4a5ad6", "#4ad6ce", "#4ad65a", "#ced64a", "#d6844a", "#8ad631", "#ce29c6", "#ce2973" }; /********************************************************************/ typedef struct _Panel { WMBox *box; char *sectionName; char *description; CallbackRec callbacks; WMWidget *parent; WMLabel *prevL; WMTabView *tabv; /* texture list */ WMFrame *texF; WMList *texLs; WMPopUpButton *secP; WMButton *newB; WMButton *editB; WMButton *ripB; WMButton *delB; /* text color */ WMFrame *colF; WMPopUpButton *colP; WMColor *colors[wlengthof_nocheck(colorOptions)]; WMColorWell *colW; WMColorWell *sampW[wlengthof_nocheck(sample_colors)]; /* options */ WMFrame *optF; WMFrame *mstyF; WMButton *mstyB[wlengthof_nocheck(menu_style)]; WMFrame *taliF; WMButton *taliB[wlengthof_nocheck(wintitle_align)]; /* */ int textureIndex[8]; WMFont *smallFont; WMFont *normalFont; WMFont *boldFont; TexturePanel *texturePanel; WMPixmap *onLed; WMPixmap *offLed; WMPixmap *hand; int oldsection; int oldcsection; char oldTabItem; menu_style_index menuStyle; WMAlignment titleAlignment; Pixmap preview; Pixmap previewNoText; Pixmap previewBack; char *fprefix; } _Panel; typedef struct { char *title; char *texture; WMPropList *prop; Pixmap preview; char *path; char selectedFor; unsigned current:1; unsigned ispixmap:1; } TextureListItem; enum { TAB_TEXTURE, TAB_COLOR, TAB_OPTIONS }; static void updateColorPreviewBox(_Panel * panel, int elements); static void showData(_Panel * panel); static void changePage(WMWidget * w, void *data); static void changeColorPage(WMWidget * w, void *data); static void OpenExtractPanelFor(_Panel *panel); static void changedTabItem(struct WMTabViewDelegate *self, WMTabView * tabView, WMTabViewItem * item); static WMTabViewDelegate tabviewDelegate = { NULL, NULL, /* didChangeNumberOfItems */ changedTabItem, /* didSelectItem */ NULL, /* shouldSelectItem */ NULL /* willSelectItem */ }; #define ICON_FILE "appearance" #define TNEW_FILE "tnew" #define TDEL_FILE "tdel" #define TEDIT_FILE "tedit" #define TEXTR_FILE "textr" /* XPM */ static char *blueled_xpm[] = { "8 8 17 1", " c None", ". c #020204", "+ c #16B6FC", "@ c #176AFC", "# c #163AFC", "$ c #72D2FC", "% c #224CF4", "& c #76D6FC", "* c #16AAFC", "= c #CEE9FC", "- c #229EFC", "; c #164CFC", "> c #FAFEFC", ", c #2482FC", "' c #1652FC", ") c #1E76FC", "! c #1A60FC", " .... ", " .=>-@. ", ".=>$@@'.", ".=$@!;;.", ".!@*+!#.", ".#'*+*,.", " .@)@,. ", " .... " }; /* XPM */ static char *blueled2_xpm[] = { /* width height num_colors chars_per_pixel */ " 8 8 17 1", /* colors */ ". c None", "# c #090909", "a c #4b63a4", "b c #011578", "c c #264194", "d c #04338c", "e c #989dac", "f c #011a7c", "g c #465c9c", "h c #03278a", "i c #6175ac", "j c #011e74", "k c #043a90", "l c #042f94", "m c #0933a4", "n c #022184", "o c #012998", /* pixels */ "..####..", ".#aimn#.", "#aechnf#", "#gchnjf#", "#jndknb#", "#bjdddl#", ".#nono#.", "..####.." }; /* XPM */ static char *hand_xpm[] = { "22 21 19 1", " c None", ". c #030305", "+ c #7F7F7E", "@ c #B5B5B6", "# c #C5C5C6", "$ c #969697", "% c #FDFDFB", "& c #F2F2F4", "* c #E5E5E4", "= c #ECECEC", "- c #DCDCDC", "; c #D2D2D0", "> c #101010", ", c #767674", "' c #676767", ") c #535355", "! c #323234", "~ c #3E3C56", "{ c #333147", " ", " ..... ", " ..+@##$. ", " .%%%&@.......... ", " .%*%%&#%%%%%%%%%$. ", " .*#%%%%%%%%%&&&&==. ", " .-%%%%%%%%%=*-;;;#$. ", " .-%%%%%%%%&..>..... ", " >-%%%%%%%%%*#+. ", " >-%%%%%%%%%*@,. ", " >#%%%%%%%%%*@'. ", " >$&&%%%%%%=... ", " .+@@;=&%%&;$,> ", " .',$@####$+). ", " .!',+$++,'. ", " ..>>>>>. ", " ", " ~~{{{~~ ", " {{{{{{{{{{{ ", " ~~{{{~~ ", " " }; static const struct { const char *key; const char *default_value; const char *texture_label; /* text used when displaying the list of textures */ WMRect preview; /* The rectangle where the corresponding object is displayed */ WMPoint hand; /* The coordinate where the hand is drawn when pointing this item */ const char *popup_label; /* text used for the popup button with the list of editable items */ } textureOptions[] = { #define PFOCUSED 0 { "FTitleBack", "(solid, black)", N_("[Focused]"), { { 30, 10 }, { 190, 20 } }, { 5, 10 }, N_("Titlebar of Focused Window") }, #define PUNFOCUSED 1 { "UTitleBack", "(solid, gray)", N_("[Unfocused]"), { { 30, 40 }, { 190, 20 } }, { 5, 40 }, N_("Titlebar of Unfocused Windows") }, #define POWNER 2 { "PTitleBack", "(solid, \"#616161\")", N_("[Owner of Focused]"), { { 30, 70 }, { 190, 20 } }, { 5, 70 }, N_("Titlebar of Focused Window's Owner") }, #define PRESIZEBAR 3 { "ResizebarBack", "(solid, gray)", N_("[Resizebar]"), { { 30, 100 }, { 190, 9 } }, { 5, 100 }, N_("Window Resizebar") }, #define PMTITLE 4 { "MenuTitleBack", "(solid, black)", N_("[Menu Title]"), { { 30, 120 }, { 90, 20 } }, { 5, 120 }, N_("Titlebar of Menus") }, #define PMITEM 5 { "MenuTextBack", "(solid, gray)", N_("[Menu Item]"), { { 30, 140 }, { 90, 20 * 4 } }, { 5, 160 }, N_("Menu Items") }, #define PICON 6 { "IconBack", "(solid, gray)", N_("[Icon]"), { { 155, 130 }, { 64, 64 } }, { 130, 150 }, N_("Icon Background") }, #define PBACKGROUND 7 { "WorkspaceBack", "(solid, black)", N_("[Background]"), { { -1, -1}, { 0, 0 } }, { -22, -21 }, N_("Workspace Background") } }; #define EVERYTHING 0xff enum { RESIZEBAR_BEVEL = -1, MENU_BEVEL = -2 }; enum { TEXPREV_WIDTH = 40, TEXPREV_HEIGHT = 24 }; enum { FTITLE_COL, UTITLE_COL, OTITLE_COL, MTITLE_COL, MITEM_COL, MDISAB_COL, MHIGH_COL, MHIGHT_COL, FFBORDER_COL, FBORDER_COL, FSBORDER_COL, ICONT_COL, ICONB_COL, CLIP_COL, CCLIP_COL }; static void str2rcolor(RContext * rc, const char *name, RColor * color) { XColor xcolor; XParseColor(rc->dpy, rc->cmap, name, &xcolor); color->alpha = 255; color->red = xcolor.red >> 8; color->green = xcolor.green >> 8; color->blue = xcolor.blue >> 8; } static void dumpRImage(const char *path, RImage * image) { FILE *f; int channels = (image->format == RRGBAFormat ? 4 : 3); f = fopen(path, "wb"); if (!f) { werror("%s", path); return; } fprintf(f, "%02x%02x%1x", image->width, image->height, channels); fwrite(image->data, 1, image->width * image->height * channels, f); fsync(fileno(f)); if (fclose(f) < 0) { werror("%s", path); } } static int isPixmap(WMPropList * prop) { WMPropList *p; char *s; p = WMGetFromPLArray(prop, 0); s = WMGetFromPLString(p); if (strcasecmp(&s[1], "pixmap") == 0) return 1; else return 0; } /**********************************************************************/ static void drawResizebarBevel(RImage * img) { RColor light; RColor dark; int width = img->width; int height = img->height; int cwidth = 28; light.alpha = 0; light.red = light.green = light.blue = 80; dark.alpha = 0; dark.red = dark.green = dark.blue = 40; ROperateLine(img, RSubtractOperation, 0, 0, width - 1, 0, &dark); ROperateLine(img, RAddOperation, 0, 1, width - 1, 1, &light); ROperateLine(img, RSubtractOperation, cwidth, 2, cwidth, height - 1, &dark); ROperateLine(img, RAddOperation, cwidth + 1, 2, cwidth + 1, height - 1, &light); ROperateLine(img, RSubtractOperation, width - cwidth - 2, 2, width - cwidth - 2, height - 1, &dark); ROperateLine(img, RAddOperation, width - cwidth - 1, 2, width - cwidth - 1, height - 1, &light); } static void drawMenuBevel(RImage * img) { RColor light, dark, mid; int i; int iheight = img->height / 4; light.alpha = 0; light.red = light.green = light.blue = 80; dark.alpha = 255; dark.red = dark.green = dark.blue = 0; mid.alpha = 0; mid.red = mid.green = mid.blue = 40; for (i = 1; i < 4; i++) { ROperateLine(img, RSubtractOperation, 0, i * iheight - 2, img->width - 1, i * iheight - 2, &mid); RDrawLine(img, 0, i * iheight - 1, img->width - 1, i * iheight - 1, &dark); ROperateLine(img, RAddOperation, 1, i * iheight, img->width - 2, i * iheight, &light); } } static Pixmap renderTexture(WMScreen * scr, WMPropList * texture, int width, int height, const char *path, int border) { char *type; RImage *image = NULL; RImage *timage = NULL; Pixmap pixmap; RContext *rc = WMScreenRContext(scr); char *str; RColor rcolor; type = WMGetFromPLString(WMGetFromPLArray(texture, 0)); if (strcasecmp(&type[1], "pixmap") == 0 || (strcasecmp(&type[2], "gradient") == 0 && toupper(type[0]) == 'T')) { char *path; str = WMGetFromPLString(WMGetFromPLArray(texture, 1)); path = wfindfileinarray(GetObjectForKey("PixmapPath"), str); if (path) { timage = RLoadImage(rc, path, 0); if (!timage) wwarning(_("could not load file '%s': %s"), path, RMessageForError(RErrorCode)); wfree(path); } else { wwarning(_("could not find file '%s' for texture type %s"), str, type); timage = NULL; } if (!timage) { texture = WMCreatePropListFromDescription("(solid, black)"); type = "solid"; } } if (strcasecmp(type, "solid") == 0) { str = WMGetFromPLString(WMGetFromPLArray(texture, 1)); str2rcolor(rc, str, &rcolor); image = RCreateImage(width, height, False); RClearImage(image, &rcolor); } else if (strcasecmp(type, "igradient") == 0) { int t1, t2; RColor c1[2], c2[2]; str = WMGetFromPLString(WMGetFromPLArray(texture, 1)); str2rcolor(rc, str, &c1[0]); str = WMGetFromPLString(WMGetFromPLArray(texture, 2)); str2rcolor(rc, str, &c1[1]); str = WMGetFromPLString(WMGetFromPLArray(texture, 3)); t1 = atoi(str); str = WMGetFromPLString(WMGetFromPLArray(texture, 4)); str2rcolor(rc, str, &c2[0]); str = WMGetFromPLString(WMGetFromPLArray(texture, 5)); str2rcolor(rc, str, &c2[1]); str = WMGetFromPLString(WMGetFromPLArray(texture, 6)); t2 = atoi(str); image = RRenderInterwovenGradient(width, height, c1, t1, c2, t2); } else if (strcasecmp(&type[1], "gradient") == 0) { RGradientStyle style; RColor rcolor2; switch (toupper(type[0])) { case 'V': style = RVerticalGradient; break; case 'H': style = RHorizontalGradient; break; default: wwarning(_("unknown direction in '%s', falling back to diagonal"), type); + /* FALLTHRU */ case 'D': style = RDiagonalGradient; break; } str = WMGetFromPLString(WMGetFromPLArray(texture, 1)); str2rcolor(rc, str, &rcolor); str = WMGetFromPLString(WMGetFromPLArray(texture, 2)); str2rcolor(rc, str, &rcolor2); image = RRenderGradient(width, height, &rcolor, &rcolor2, style); } else if (strcasecmp(&type[2], "gradient") == 0 && toupper(type[0]) == 'T') { RGradientStyle style; RColor rcolor2; int i; RImage *grad = NULL; switch (toupper(type[1])) { case 'V': style = RVerticalGradient; break; case 'H': style = RHorizontalGradient; break; default: wwarning(_("unknown direction in '%s', falling back to diagonal"), type); + /* FALLTHRU */ case 'D': style = RDiagonalGradient; break; } str = WMGetFromPLString(WMGetFromPLArray(texture, 3)); str2rcolor(rc, str, &rcolor); str = WMGetFromPLString(WMGetFromPLArray(texture, 4)); str2rcolor(rc, str, &rcolor2); grad = RRenderGradient(width, height, &rcolor, &rcolor2, style); image = RMakeTiledImage(timage, width, height); RReleaseImage(timage); i = atoi(WMGetFromPLString(WMGetFromPLArray(texture, 2))); RCombineImagesWithOpaqueness(image, grad, i); RReleaseImage(grad); } else if (strcasecmp(&type[2], "gradient") == 0 && toupper(type[0]) == 'M') { RGradientStyle style; RColor **colors; int i, j; switch (toupper(type[1])) { case 'V': style = RVerticalGradient; break; case 'H': style = RHorizontalGradient; break; default: wwarning(_("unknown direction in '%s', falling back to diagonal"), type); + /* FALLTHRU */ case 'D': style = RDiagonalGradient; break; } j = WMGetPropListItemCount(texture); if (j > 0) { colors = wmalloc(j * sizeof(RColor *)); for (i = 2; i < j; i++) { str = WMGetFromPLString(WMGetFromPLArray(texture, i)); colors[i - 2] = wmalloc(sizeof(RColor)); str2rcolor(rc, str, colors[i - 2]); } colors[i - 2] = NULL; image = RRenderMultiGradient(width, height, colors, style); for (i = 0; colors[i] != NULL; i++) wfree(colors[i]); wfree(colors); } } else if (strcasecmp(&type[1], "pixmap") == 0) { RColor color; str = WMGetFromPLString(WMGetFromPLArray(texture, 2)); str2rcolor(rc, str, &color); switch (toupper(type[0])) { case 'T': image = RMakeTiledImage(timage, width, height); RReleaseImage(timage); break; case 'C': image = RMakeCenteredImage(timage, width, height, &color); RReleaseImage(timage); break; case 'F': case 'S': case 'M': image = RScaleImage(timage, width, height); RReleaseImage(timage); break; default: wwarning(_("type '%s' is not a supported type for a texture"), type); RReleaseImage(timage); return None; } } if (!image) return None; if (path) { dumpRImage(path, image); } if (border < 0) { if (border == RESIZEBAR_BEVEL) { drawResizebarBevel(image); } else if (border == MENU_BEVEL) { drawMenuBevel(image); RBevelImage(image, RBEV_RAISED2); } } else if (border) { RBevelImage(image, border); } RConvertImage(rc, image, &pixmap); RReleaseImage(image); return pixmap; } static Pixmap renderMenu(_Panel * panel, WMPropList * texture, int width, int iheight) { WMScreen *scr = WMWidgetScreen(panel->parent); Display *dpy = WMScreenDisplay(scr); Pixmap pix, tmp; GC gc = XCreateGC(dpy, WMWidgetXID(panel->parent), 0, NULL); int i; switch (panel->menuStyle) { case MSTYLE_NORMAL: tmp = renderTexture(scr, texture, width, iheight, NULL, RBEV_RAISED2); pix = XCreatePixmap(dpy, tmp, width, iheight * 4, WMScreenDepth(scr)); for (i = 0; i < 4; i++) { XCopyArea(dpy, tmp, pix, gc, 0, 0, width, iheight, 0, iheight * i); } XFreePixmap(dpy, tmp); break; case MSTYLE_SINGLE: pix = renderTexture(scr, texture, width, iheight * 4, NULL, MENU_BEVEL); break; case MSTYLE_FLAT: pix = renderTexture(scr, texture, width, iheight * 4, NULL, RBEV_RAISED2); break; default: pix = None; } XFreeGC(dpy, gc); return pix; } static void renderPreview(_Panel * panel, GC gc, int part, int relief) { WMListItem *item; TextureListItem *titem; Pixmap pix; WMScreen *scr = WMWidgetScreen(panel->box); item = WMGetListItem(panel->texLs, panel->textureIndex[part]); titem = (TextureListItem *) item->clientData; pix = renderTexture(scr, titem->prop, textureOptions[part].preview.size.width, textureOptions[part].preview.size.height, NULL, relief); XCopyArea(WMScreenDisplay(scr), pix, panel->preview, gc, 0, 0, textureOptions[part].preview.size.width, textureOptions[part].preview.size.height, textureOptions[part].preview.pos.x, textureOptions[part].preview.pos.y); XCopyArea(WMScreenDisplay(scr), pix, panel->previewNoText, gc, 0, 0, textureOptions[part].preview.size.width, textureOptions[part].preview.size.height, textureOptions[part].preview.pos.x, textureOptions[part].preview.pos.y); XFreePixmap(WMScreenDisplay(scr), pix); } static void updatePreviewBox(_Panel * panel, int elements) { WMScreen *scr = WMWidgetScreen(panel->parent); Display *dpy = WMScreenDisplay(scr); Pixmap pix; GC gc; int colorUpdate = 0; gc = XCreateGC(dpy, WMWidgetXID(panel->parent), 0, NULL); if (panel->preview == None) { WMPixmap *p; panel->previewNoText = XCreatePixmap(dpy, WMWidgetXID(panel->parent), 240 - 4, 215 - 4, WMScreenDepth(scr)); panel->previewBack = XCreatePixmap(dpy, WMWidgetXID(panel->parent), 240 - 4, 215 - 4, WMScreenDepth(scr)); p = WMCreatePixmap(scr, 240 - 4, 215 - 4, WMScreenDepth(scr), False); panel->preview = WMGetPixmapXID(p); WMSetLabelImage(panel->prevL, p); WMReleasePixmap(p); } if (elements & (1 << PBACKGROUND)) { Pixmap tmp; TextureListItem *titem; WMListItem *item; item = WMGetListItem(panel->texLs, panel->textureIndex[PBACKGROUND]); titem = (TextureListItem *) item->clientData; tmp = renderTexture(scr, titem->prop, 240 - 4, 215 - 4, NULL, 0); XCopyArea(dpy, tmp, panel->preview, gc, 0, 0, 240 - 4, 215 -4 , 0, 0); XCopyArea(dpy, tmp, panel->previewNoText, gc, 0, 0, 240 - 4, 215 -4 , 0, 0); XCopyArea(dpy, tmp, panel->previewBack, gc, 0, 0, 240 - 4, 215 -4 , 0, 0); XFreePixmap(dpy, tmp); } if (elements & (1 << PFOCUSED)) { renderPreview(panel, gc, PFOCUSED, RBEV_RAISED2); colorUpdate |= 1 << FTITLE_COL | 1 << FFBORDER_COL; } if (elements & (1 << PUNFOCUSED)) { renderPreview(panel, gc, PUNFOCUSED, RBEV_RAISED2); colorUpdate |= 1 << UTITLE_COL | 1 << FBORDER_COL; } if (elements & (1 << POWNER)) { renderPreview(panel, gc, POWNER, RBEV_RAISED2); colorUpdate |= 1 << OTITLE_COL | 1 << FBORDER_COL; } if (elements & (1 << PRESIZEBAR)) { renderPreview(panel, gc, PRESIZEBAR, RESIZEBAR_BEVEL); colorUpdate |= 1 << FBORDER_COL; } if (elements & (1 << PMTITLE)) { renderPreview(panel, gc, PMTITLE, RBEV_RAISED2); colorUpdate |= 1 << MTITLE_COL | 1 << FBORDER_COL; } if (elements & (1 << PMITEM)) { WMListItem *item; TextureListItem *titem; item = WMGetListItem(panel->texLs, panel->textureIndex[5]); titem = (TextureListItem *) item->clientData; pix = renderMenu(panel, titem->prop, textureOptions[PMITEM].preview.size.width, textureOptions[PMITEM].preview.size.height / 4); XCopyArea(dpy, pix, panel->preview, gc, 0, 0, textureOptions[PMITEM].preview.size.width, textureOptions[PMITEM].preview.size.height, textureOptions[PMITEM].preview.pos.x, textureOptions[PMITEM].preview.pos.y); XCopyArea(dpy, pix, panel->previewNoText, gc, 0, 0, textureOptions[PMITEM].preview.size.width, textureOptions[PMITEM].preview.size.height, textureOptions[PMITEM].preview.pos.x, textureOptions[PMITEM].preview.pos.y); XFreePixmap(dpy, pix); colorUpdate |= 1 << MITEM_COL | 1 << MDISAB_COL | 1 << MHIGH_COL | 1 << MHIGHT_COL | 1 << FBORDER_COL; } if (elements & (1 << PICON)) { WMListItem *item; TextureListItem *titem; item = WMGetListItem(panel->texLs, panel->textureIndex[6]); titem = (TextureListItem *) item->clientData; renderPreview(panel, gc, PICON, titem->ispixmap ? 0 : RBEV_RAISED3); } if (colorUpdate) updateColorPreviewBox(panel, colorUpdate); else WMRedisplayWidget(panel->prevL); XFreeGC(dpy, gc); } static void cancelNewTexture(void *data) { _Panel *panel = (_Panel *) data; HideTexturePanel(panel->texturePanel); } static char *makeFileName(const char *prefix) { char *fname; fname = wstrdup(prefix); while (access(fname, F_OK) == 0) { char buf[30]; wfree(fname); sprintf(buf, "%08lx.cache", time(NULL)); fname = wstrconcat(prefix, buf); } return fname; } static void okNewTexture(void *data) { _Panel *panel = (_Panel *) data; WMListItem *item; char *name; char *str; WMPropList *prop; TextureListItem *titem; WMScreen *scr = WMWidgetScreen(panel->parent); titem = wmalloc(sizeof(TextureListItem)); HideTexturePanel(panel->texturePanel); name = GetTexturePanelTextureName(panel->texturePanel); prop = GetTexturePanelTexture(panel->texturePanel); str = WMGetPropListDescription(prop, False); titem->title = name; titem->prop = prop; titem->texture = str; titem->selectedFor = 0; titem->ispixmap = isPixmap(prop); titem->path = makeFileName(panel->fprefix); titem->preview = renderTexture(scr, prop, TEXPREV_WIDTH, TEXPREV_HEIGHT, titem->path, 0); item = WMAddListItem(panel->texLs, ""); item->clientData = titem; WMSetListPosition(panel->texLs, WMGetListNumberOfRows(panel->texLs)); } static void okEditTexture(void *data) { _Panel *panel = (_Panel *) data; WMListItem *item; char *name; char *str; WMPropList *prop; TextureListItem *titem; item = WMGetListItem(panel->texLs, WMGetListSelectedItemRow(panel->texLs)); titem = (TextureListItem *) item->clientData; HideTexturePanel(panel->texturePanel); if (titem->current) { name = GetTexturePanelTextureName(panel->texturePanel); wfree(titem->title); titem->title = name; } prop = GetTexturePanelTexture(panel->texturePanel); str = WMGetPropListDescription(prop, False); WMReleasePropList(titem->prop); titem->prop = prop; titem->ispixmap = isPixmap(prop); wfree(titem->texture); titem->texture = str; XFreePixmap(WMScreenDisplay(WMWidgetScreen(panel->texLs)), titem->preview); titem->preview = renderTexture(WMWidgetScreen(panel->texLs), titem->prop, TEXPREV_WIDTH, TEXPREV_HEIGHT, titem->path, 0); WMRedisplayWidget(panel->texLs); if (titem->selectedFor) { if (titem->selectedFor & (1 << PBACKGROUND)) updatePreviewBox(panel, EVERYTHING); else updatePreviewBox(panel, titem->selectedFor); } changePage(panel->secP, panel); } static void editTexture(WMWidget * w, void *data) { _Panel *panel = (_Panel *) data; WMListItem *item; TextureListItem *titem; /* Parameter not used, but tell the compiler that it is ok */ (void) w; item = WMGetListItem(panel->texLs, WMGetListSelectedItemRow(panel->texLs)); titem = (TextureListItem *) item->clientData; SetTexturePanelPixmapPath(panel->texturePanel, GetObjectForKey("PixmapPath")); SetTexturePanelTexture(panel->texturePanel, titem->title, titem->prop); SetTexturePanelCancelAction(panel->texturePanel, cancelNewTexture, panel); SetTexturePanelOkAction(panel->texturePanel, okEditTexture, panel); ShowTexturePanel(panel->texturePanel); } static void newTexture(WMWidget * w, void *data) { _Panel *panel = (_Panel *) data; /* Parameter not used, but tell the compiler that it is ok */ (void) w; SetTexturePanelPixmapPath(panel->texturePanel, GetObjectForKey("PixmapPath")); SetTexturePanelTexture(panel->texturePanel, "New Texture", NULL); SetTexturePanelCancelAction(panel->texturePanel, cancelNewTexture, panel); SetTexturePanelOkAction(panel->texturePanel, okNewTexture, panel); ShowTexturePanel(panel->texturePanel); } static void deleteTexture(WMWidget * w, void *data) { _Panel *panel = (_Panel *) data; WMListItem *item; TextureListItem *titem; int row; int section; /* Parameter not used, but tell the compiler that it is ok */ (void) w; section = WMGetPopUpButtonSelectedItem(panel->secP); row = WMGetListSelectedItemRow(panel->texLs); item = WMGetListItem(panel->texLs, row); titem = (TextureListItem *) item->clientData; if (titem->selectedFor & (1 << section)) { TextureListItem *titem2; panel->textureIndex[section] = section; item = WMGetListItem(panel->texLs, section); titem2 = (TextureListItem *) item->clientData; titem2->selectedFor |= 1 << section; } wfree(titem->title); wfree(titem->texture); WMReleasePropList(titem->prop); if (titem->path) { if (remove(titem->path) < 0 && errno != ENOENT) { werror(_("could not remove file %s"), titem->path); } wfree(titem->path); } wfree(titem); WMRemoveListItem(panel->texLs, row); WMSetButtonEnabled(panel->delB, False); } static void extractTexture(WMWidget * w, void *data) { _Panel *panel = (_Panel *) data; char *path; WMOpenPanel *opanel; WMScreen *scr = WMWidgetScreen(w); opanel = WMGetOpenPanel(scr); WMSetFilePanelCanChooseDirectories(opanel, False); WMSetFilePanelCanChooseFiles(opanel, True); if (WMRunModalFilePanelForDirectory(opanel, panel->parent, wgethomedir(), _("Select File"), NULL)) { path = WMGetFilePanelFileName(opanel); OpenExtractPanelFor(panel); wfree(path); } } static void changePage(WMWidget * w, void *data) { _Panel *panel = (_Panel *) data; int section; WMScreen *scr = WMWidgetScreen(panel->box); RContext *rc = WMScreenRContext(scr); if (w) { section = WMGetPopUpButtonSelectedItem(panel->secP); WMSelectListItem(panel->texLs, panel->textureIndex[section]); WMSetListPosition(panel->texLs, panel->textureIndex[section] - 2); } { GC gc; gc = XCreateGC(rc->dpy, WMWidgetXID(panel->parent), 0, NULL); XCopyArea(rc->dpy, panel->previewBack, panel->preview, gc, textureOptions[panel->oldsection].hand.x, textureOptions[panel->oldsection].hand.y, 22, 22, textureOptions[panel->oldsection].hand.x, textureOptions[panel->oldsection].hand.y); } if (w) { panel->oldsection = section; WMDrawPixmap(panel->hand, panel->preview, textureOptions[section].hand.x, textureOptions[section].hand.y); } WMRedisplayWidget(panel->prevL); } static void previewClick(XEvent * event, void *clientData) { _Panel *panel = (_Panel *) clientData; int i; switch (panel->oldTabItem) { case 0: for (i = 0; i < wlengthof(textureOptions); i++) { if (event->xbutton.x >= textureOptions[i].preview.pos.x && event->xbutton.y >= textureOptions[i].preview.pos.y && event->xbutton.x < textureOptions[i].preview.pos.x + textureOptions[i].preview.size.width && event->xbutton.y < textureOptions[i].preview.pos.y + textureOptions[i].preview.size.height) { WMSetPopUpButtonSelectedItem(panel->secP, i); changePage(panel->secP, panel); return; } } break; case 1: for (i = 0; i < WMGetPopUpButtonNumberOfItems(panel->colP); i++) { if (event->xbutton.x >= colorOptions[i].preview.pos.x && event->xbutton.y >= colorOptions[i].preview.pos.y && event->xbutton.x < colorOptions[i].preview.pos.x + colorOptions[i].preview.size.width && event->xbutton.y < colorOptions[i].preview.pos.y + colorOptions[i].preview.size.height) { /* * yuck kluge: the entry #7 is HighlightTextColor which does not have actually a * display area, but are reused to make the last "Normal Item" menu entry actually * pick the same color item as the other similar item displayed, which corresponds * to MenuTextColor */ if (i == 7) i = 4; WMSetPopUpButtonSelectedItem(panel->colP, i); changeColorPage(panel->colP, panel); return;
rails/render_component
859b45cc201b7698371ead3fff51aa5adc01dd24
Require rubygems instead of lifo's rails
diff --git a/test/abstract_unit.rb b/test/abstract_unit.rb index e6b6ad5..f022971 100644 --- a/test/abstract_unit.rb +++ b/test/abstract_unit.rb @@ -1,10 +1,8 @@ -# [TODO] Replace with requiring rails gem after we release 2.2 -$: << '/Users/lifo/commit-rails/rails/actionpack/lib' - +require 'rubygems' require 'test/unit' require 'action_controller' require 'action_controller/test_process' ActionController::Routing::Routes.reload rescue nil $: << File.dirname(__FILE__) + "/../lib" require File.dirname(__FILE__) + "/../init"
rails/render_component
a0d363fac54cddb88660ddce5593d461f764d67e
Get rid of 'Object#send!'. It was originally added because it's in Ruby 1.9, but it has since been removed from 1.9.
diff --git a/lib/components.rb b/lib/components.rb index b9b3c9e..3762eed 100644 --- a/lib/components.rb +++ b/lib/components.rb @@ -1,142 +1,142 @@ module Components def self.included(base) #:nodoc: base.class_eval do include InstanceMethods extend ClassMethods helper HelperMethods # If this controller was instantiated to process a component request, # +parent_controller+ points to the instantiator of this controller. attr_accessor :parent_controller alias_method_chain :process_cleanup, :render_component alias_method_chain :set_session_options, :render_component alias_method_chain :flash, :render_component alias_method_chain :assign_shortcuts, :render_component alias_method_chain :send_response, :render_component alias_method :component_request?, :parent_controller end end module ClassMethods # Track parent controller to identify component requests def process_with_components(request, response, parent_controller = nil) #:nodoc: controller = new controller.parent_controller = parent_controller controller.process(request, response) end end module HelperMethods def render_component(options) - @controller.send!(:render_component_as_string, options) + @controller.__send__(:render_component_as_string, options) end end module InstanceMethods # Extracts the action_name from the request parameters and performs that action. def process_with_components(request, response, method = :perform_action, *arguments) #:nodoc: flash.discard if component_request? process_without_components(request, response, method, *arguments) end def send_response_with_render_component response.prepare! unless component_request? response end protected # Renders the component specified as the response for the current method def render_component(options) #:doc: component_logging(options) do render_for_text(component_response(options, true).body, response.headers["Status"]) end end # Returns the component response as a string def render_component_as_string(options) #:doc: component_logging(options) do response = component_response(options, false) if redirected = response.redirected_to render_component_as_string(redirected) else response.body end end end def flash_with_render_component(refresh = false) #:nodoc: if !defined?(@_flash) || refresh @_flash = if defined?(@parent_controller) @parent_controller.flash else flash_without_render_component end end @_flash end private def component_response(options, reuse_response) klass = component_class(options) request = request_for_component(klass.controller_name, options) new_response = reuse_response ? response : response.dup klass.process_with_components(request, new_response, self) end # determine the controller class for the component request def component_class(options) if controller = options[:controller] controller.is_a?(Class) ? controller : "#{controller.camelize}Controller".constantize else self.class end end # Create a new request object based on the current request. # The new request inherits the session from the current request, # bypassing any session options set for the component controller's class def request_for_component(controller_name, options) new_request = request.dup new_request.session = request.session new_request.instance_variable_set( :@parameters, (options[:params] || {}).with_indifferent_access.update( "controller" => controller_name, "action" => options[:action], "id" => options[:id] ) ) new_request end def component_logging(options) if logger logger.info "Start rendering component (#{options.inspect}): " result = yield logger.info "\n\nEnd of component rendering" result else yield end end def set_session_options_with_render_component(request) set_session_options_without_render_component(request) unless component_request? end def process_cleanup_with_render_component process_cleanup_without_render_component unless component_request? end def assign_shortcuts_with_render_component(request, response) assign_shortcuts_without_flash(request, response) flash(:refresh) flash.sweep if @_session && !component_request? end end end \ No newline at end of file
TheWanderer/namelessness
8e32da1dae08e95d97e6e92245d1c59c764deb70
add GTK theme Darker Ice
diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Arrows/arrow-down-insens.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Arrows/arrow-down-insens.png new file mode 100644 index 0000000..ffd0c6c Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Arrows/arrow-down-insens.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Arrows/arrow-down-prelight.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Arrows/arrow-down-prelight.png new file mode 100644 index 0000000..87ddf77 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Arrows/arrow-down-prelight.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Arrows/arrow-down-pressed.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Arrows/arrow-down-pressed.png new file mode 100644 index 0000000..30327ad Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Arrows/arrow-down-pressed.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Arrows/arrow-down.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Arrows/arrow-down.png new file mode 100644 index 0000000..6c5cb97 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Arrows/arrow-down.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Arrows/arrow-left.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Arrows/arrow-left.png new file mode 100755 index 0000000..0767a37 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Arrows/arrow-left.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Arrows/arrow-right-norm.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Arrows/arrow-right-norm.png new file mode 100644 index 0000000..8326755 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Arrows/arrow-right-norm.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Arrows/arrow-right-prelight.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Arrows/arrow-right-prelight.png new file mode 100755 index 0000000..c943f55 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Arrows/arrow-right-prelight.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Arrows/arrow-right.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Arrows/arrow-right.png new file mode 100755 index 0000000..5318795 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Arrows/arrow-right.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Arrows/arrow-up.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Arrows/arrow-up.png new file mode 100644 index 0000000..6733c18 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Arrows/arrow-up.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Buttons/button-default.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Buttons/button-default.png new file mode 100755 index 0000000..60da238 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Buttons/button-default.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Buttons/button-insensitive.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Buttons/button-insensitive.png new file mode 100755 index 0000000..b5f5a83 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Buttons/button-insensitive.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Buttons/button-normal.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Buttons/button-normal.png new file mode 100755 index 0000000..79f6f50 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Buttons/button-normal.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Buttons/button-prelight.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Buttons/button-prelight.png new file mode 100755 index 0000000..50459c8 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Buttons/button-prelight.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Buttons/button-pressed.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Buttons/button-pressed.png new file mode 100755 index 0000000..1402a97 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Buttons/button-pressed.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/check1.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/check1.png new file mode 100755 index 0000000..0327d9c Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/check1.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/check2.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/check2.png new file mode 100755 index 0000000..7554ee4 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/check2.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/check3.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/check3.png new file mode 100755 index 0000000..67a6ee9 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/check3.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/check4.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/check4.png new file mode 100755 index 0000000..955871b Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/check4.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/checklight.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/checklight.png new file mode 100755 index 0000000..ba53742 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/checklight.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/highlight.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/highlight.png new file mode 100755 index 0000000..2923ec3 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/highlight.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/option1.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/option1.png new file mode 100755 index 0000000..9fff8b6 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/option1.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/option2.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/option2.png new file mode 100755 index 0000000..0ddc06e Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/option2.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/option3.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/option3.png new file mode 100755 index 0000000..8fc3b32 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/option3.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/option4.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/option4.png new file mode 100755 index 0000000..df1e9ab Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Check-Radio/option4.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Combo/combo-active.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Combo/combo-active.png new file mode 100755 index 0000000..91e3b3e Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Combo/combo-active.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Combo/combo-arrow-insens.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Combo/combo-arrow-insens.png new file mode 100644 index 0000000..ffd0c6c Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Combo/combo-arrow-insens.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Combo/combo-arrow-prelight.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Combo/combo-arrow-prelight.png new file mode 100644 index 0000000..87ddf77 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Combo/combo-arrow-prelight.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Combo/combo-arrow.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Combo/combo-arrow.png new file mode 100644 index 0000000..6c5cb97 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Combo/combo-arrow.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Combo/combo-inactive.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Combo/combo-inactive.png new file mode 100755 index 0000000..969f4be Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Combo/combo-inactive.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Combo/combo-normal.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Combo/combo-normal.png new file mode 100755 index 0000000..20dd5a0 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Combo/combo-normal.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Combo/combo-prelight.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Combo/combo-prelight.png new file mode 100755 index 0000000..940a811 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Combo/combo-prelight.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Combo/combo-pressed.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Combo/combo-pressed.png new file mode 100644 index 0000000..89f6ccb Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Combo/combo-pressed.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Combo/text-entry.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Combo/text-entry.png new file mode 100755 index 0000000..43b3b65 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Combo/text-entry.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Frame-Gap/frame-gap-end.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Frame-Gap/frame-gap-end.png new file mode 100755 index 0000000..cd615ce Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Frame-Gap/frame-gap-end.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Frame-Gap/frame-gap-start.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Frame-Gap/frame-gap-start.png new file mode 100755 index 0000000..869cccb Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Frame-Gap/frame-gap-start.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Frame-Gap/frame1.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Frame-Gap/frame1.png new file mode 100755 index 0000000..2a2049f Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Frame-Gap/frame1.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Frame-Gap/frame2.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Frame-Gap/frame2.png new file mode 100755 index 0000000..99bc019 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Frame-Gap/frame2.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Handles/handle-h.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Handles/handle-h.png new file mode 100755 index 0000000..eec2cb5 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Handles/handle-h.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Handles/handle-v.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Handles/handle-v.png new file mode 100755 index 0000000..12c0fb9 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Handles/handle-v.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Handles/resize-grip.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Handles/resize-grip.png new file mode 100755 index 0000000..c651b68 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Handles/resize-grip.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Lines/line-h.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Lines/line-h.png new file mode 100755 index 0000000..0a45288 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Lines/line-h.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Lines/line-v.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Lines/line-v.png new file mode 100755 index 0000000..2e7d3f6 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Lines/line-v.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Menu-Menubar/menu.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Menu-Menubar/menu.png new file mode 100755 index 0000000..7e77e8c Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Menu-Menubar/menu.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Menu-Menubar/menubar-background.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Menu-Menubar/menubar-background.png new file mode 100644 index 0000000..fb47ef5 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Menu-Menubar/menubar-background.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Menu-Menubar/menubar-item.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Menu-Menubar/menubar-item.png new file mode 100644 index 0000000..d1fd7a4 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Menu-Menubar/menubar-item.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Menu-Menubar/menuitem.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Menu-Menubar/menuitem.png new file mode 100644 index 0000000..b09878c Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Menu-Menubar/menuitem.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Menu-Menubar/menuline.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Menu-Menubar/menuline.png new file mode 100755 index 0000000..458519f Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Menu-Menubar/menuline.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Others/focus.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Others/focus.png new file mode 100755 index 0000000..c41abe1 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Others/focus.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Others/null.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Others/null.png new file mode 100755 index 0000000..9d7e6be Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Others/null.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Others/ruler.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Others/ruler.png new file mode 100755 index 0000000..6cb1c57 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Others/ruler.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Panel/handle-h.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Panel/handle-h.png new file mode 100755 index 0000000..eec2cb5 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Panel/handle-h.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Panel/handle-v.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Panel/handle-v.png new file mode 100755 index 0000000..12c0fb9 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Panel/handle-v.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Panel/panel-bg.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Panel/panel-bg.png new file mode 100644 index 0000000..f1b2e9b Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Panel/panel-bg.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Panel/panelbutton-1.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Panel/panelbutton-1.png new file mode 100644 index 0000000..c521f9e Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Panel/panelbutton-1.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Panel/panelbutton-black-2.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Panel/panelbutton-black-2.png new file mode 100644 index 0000000..f1b2e9b Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Panel/panelbutton-black-2.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Panel/panelbutton1.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Panel/panelbutton1.png new file mode 100644 index 0000000..a898dea Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Panel/panelbutton1.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/ProgressBar/progressbar-horiz.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/ProgressBar/progressbar-horiz.png new file mode 100755 index 0000000..8ebf168 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/ProgressBar/progressbar-horiz.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/ProgressBar/progressbar-vert.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/ProgressBar/progressbar-vert.png new file mode 100755 index 0000000..654282a Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/ProgressBar/progressbar-vert.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/ProgressBar/trough-progressbar-horiz.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/ProgressBar/trough-progressbar-horiz.png new file mode 100755 index 0000000..1790ce3 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/ProgressBar/trough-progressbar-horiz.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Range/null.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Range/null.png new file mode 100755 index 0000000..4136605 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Range/null.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Range/slider-horiz-prelight.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Range/slider-horiz-prelight.png new file mode 100755 index 0000000..2d9c1a1 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Range/slider-horiz-prelight.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Range/slider-horiz.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Range/slider-horiz.png new file mode 100755 index 0000000..52dfba1 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Range/slider-horiz.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Range/slider-vert-prelight.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Range/slider-vert-prelight.png new file mode 100755 index 0000000..3d0f6cc Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Range/slider-vert-prelight.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Range/slider-vert.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Range/slider-vert.png new file mode 100755 index 0000000..4ec2805 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Range/slider-vert.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Range/trough-horizontal.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Range/trough-horizontal.png new file mode 100755 index 0000000..f8031bb Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Range/trough-horizontal.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Range/trough-vertical.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Range/trough-vertical.png new file mode 100755 index 0000000..77eed59 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Range/trough-vertical.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/slider-horiz-insens.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/slider-horiz-insens.png new file mode 100755 index 0000000..5425ba3 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/slider-horiz-insens.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/slider-horiz-prelight.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/slider-horiz-prelight.png new file mode 100755 index 0000000..d12fa9d Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/slider-horiz-prelight.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/slider-horiz.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/slider-horiz.png new file mode 100755 index 0000000..a0f7230 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/slider-horiz.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/slider-vert-insens.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/slider-vert-insens.png new file mode 100755 index 0000000..7f27f88 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/slider-vert-insens.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/slider-vert-prelight.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/slider-vert-prelight.png new file mode 100755 index 0000000..7698a1b Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/slider-vert-prelight.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/slider-vert.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/slider-vert.png new file mode 100755 index 0000000..e81f9e8 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/slider-vert.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-down-insens.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-down-insens.png new file mode 100644 index 0000000..ffd0c6c Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-down-insens.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-down-prelight.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-down-prelight.png new file mode 100644 index 0000000..87ddf77 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-down-prelight.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-down.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-down.png new file mode 100644 index 0000000..6c5cb97 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-down.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-left-insens.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-left-insens.png new file mode 100755 index 0000000..bd63289 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-left-insens.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-left-prelight.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-left-prelight.png new file mode 100755 index 0000000..cd9fd12 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-left-prelight.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-left.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-left.png new file mode 100755 index 0000000..0767a37 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-left.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-right-insens.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-right-insens.png new file mode 100755 index 0000000..8f1b65d Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-right-insens.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-right-prelight.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-right-prelight.png new file mode 100755 index 0000000..c943f55 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-right-prelight.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-right.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-right.png new file mode 100755 index 0000000..5318795 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-right.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-up-insens.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-up-insens.png new file mode 100644 index 0000000..1e21a5c Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-up-insens.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-up-prelight.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-up-prelight.png new file mode 100644 index 0000000..7c0a4a3 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-up-prelight.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-up.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-up.png new file mode 100644 index 0000000..0f8993f Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/stepper-up.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/trough-scrollbar-horiz.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/trough-scrollbar-horiz.png new file mode 100755 index 0000000..ec68501 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/trough-scrollbar-horiz.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/trough-scrollbar-vert.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/trough-scrollbar-vert.png new file mode 100644 index 0000000..6409c06 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Scrollbars/trough-scrollbar-vert.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Shadows/entry-shadow-in.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Shadows/entry-shadow-in.png new file mode 100755 index 0000000..f045016 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Shadows/entry-shadow-in.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Shadows/shadow-etched-out.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Shadows/shadow-etched-out.png new file mode 100755 index 0000000..9256177 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Shadows/shadow-etched-out.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Shadows/shadow-in.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Shadows/shadow-in.png new file mode 100755 index 0000000..9e2b677 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Shadows/shadow-in.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Shadows/shadow-none.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Shadows/shadow-none.png new file mode 100755 index 0000000..9c48cb7 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Shadows/shadow-none.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Shadows/shadow-out.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Shadows/shadow-out.png new file mode 100755 index 0000000..2721952 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Shadows/shadow-out.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Shadows/text-entry.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Shadows/text-entry.png new file mode 100755 index 0000000..d31e1f4 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Shadows/text-entry.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Shadows/text.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Shadows/text.png new file mode 100755 index 0000000..19c1d84 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Shadows/text.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/arrow-down-disable.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/arrow-down-disable.png new file mode 100755 index 0000000..ffd0c6c Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/arrow-down-disable.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/arrow-down-prelight.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/arrow-down-prelight.png new file mode 100755 index 0000000..87ddf77 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/arrow-down-prelight.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/arrow-down.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/arrow-down.png new file mode 100755 index 0000000..6c5cb97 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/arrow-down.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/arrow-up-disable.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/arrow-up-disable.png new file mode 100755 index 0000000..1e21a5c Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/arrow-up-disable.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/arrow-up-prelight.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/arrow-up-prelight.png new file mode 100755 index 0000000..7c0a4a3 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/arrow-up-prelight.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/arrow-up.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/arrow-up.png new file mode 100755 index 0000000..0f8993f Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/arrow-up.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/entry-shadow-in.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/entry-shadow-in.png new file mode 100755 index 0000000..4eb4d79 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/entry-shadow-in.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/spin-down-bg.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/spin-down-bg.png new file mode 100755 index 0000000..6a2494c Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/spin-down-bg.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/spin-up-bg.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/spin-up-bg.png new file mode 100755 index 0000000..23adebb Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/spin-up-bg.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/text-entry-focus.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/text-entry-focus.png new file mode 100755 index 0000000..e8cc7f6 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/text-entry-focus.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/text-entry.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/text-entry.png new file mode 100755 index 0000000..b524f3b Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Spin/text-entry.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/gap-bottom.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/gap-bottom.png new file mode 100755 index 0000000..d84337e Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/gap-bottom.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/gap-left.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/gap-left.png new file mode 100755 index 0000000..8e26e95 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/gap-left.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/gap-right.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/gap-right.png new file mode 100755 index 0000000..901dc61 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/gap-right.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/gap-top.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/gap-top.png new file mode 100755 index 0000000..e19ef50 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/gap-top.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/notebook.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/notebook.png new file mode 100755 index 0000000..0be3c5b Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/notebook.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/null.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/null.png new file mode 100755 index 0000000..079a05a Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/null.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/tab-bottom-active.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/tab-bottom-active.png new file mode 100755 index 0000000..5fa946d Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/tab-bottom-active.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/tab-bottom.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/tab-bottom.png new file mode 100755 index 0000000..6f7f2be Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/tab-bottom.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/tab-left-active.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/tab-left-active.png new file mode 100755 index 0000000..d0918de Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/tab-left-active.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/tab-left.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/tab-left.png new file mode 100755 index 0000000..687e8d9 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/tab-left.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/tab-right-active.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/tab-right-active.png new file mode 100755 index 0000000..ad3f5ac Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/tab-right-active.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/tab-right.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/tab-right.png new file mode 100755 index 0000000..859a445 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/tab-right.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/tab-top-active.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/tab-top-active.png new file mode 100755 index 0000000..a7cbedb Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/tab-top-active.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/tab-top.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/tab-top.png new file mode 100755 index 0000000..a0cc687 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Tabs/tab-top.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Toolbar/toolbar-background.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Toolbar/toolbar-background.png new file mode 100644 index 0000000..746da64 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Toolbar/toolbar-background.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Toolbar/toolbutton-normal.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Toolbar/toolbutton-normal.png new file mode 100755 index 0000000..af131bf Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Toolbar/toolbutton-normal.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Toolbar/toolbutton-prelight.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Toolbar/toolbutton-prelight.png new file mode 100755 index 0000000..811a358 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Toolbar/toolbutton-prelight.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Toolbar/toolbutton-pressed.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Toolbar/toolbutton-pressed.png new file mode 100755 index 0000000..fab0db5 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Toolbar/toolbutton-pressed.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Toolbar/toolbutton-toggled.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Toolbar/toolbutton-toggled.png new file mode 100755 index 0000000..f102d07 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/Toolbar/toolbutton-toggled.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/gtkrc b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/gtkrc new file mode 100755 index 0000000..fe603c2 --- /dev/null +++ b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/gtkrc @@ -0,0 +1,1727 @@ +#DarkerIce by sabrebutt. +#Adapted from +#RoyaltyGrey by 4kas. + +include "panel.rc" +include "menubar.rc" + +gtk-button-images = 0 #disable icons on buttons like close etc +gtk-icon-sizes = "panel-menu=24,24:panel=24,24:gtk-button=16,16:gtk-large-toolbar=24,24" + + +style "default" +{ + GtkWidget::interior_focus = 7 + GtkWidget::focus_padding = 0 + GtkButton::default_border = { 0, 0, 0, 0 } + GtkButton::default_outside_border = { 0, 0, 0, 0 } + + GtkRange::trough_border = 0 + GtkRange::slider_width = 15 + GtkRange::stepper_size = 15 + + GtkVScale::slider_length = 11 + GtkVScale::slider_width = 21 + GtkHScale::slider_length = 11 + GtkHScale::slider_width = 21 + + GtkPaned::handle_size = 6 + GtkScrollbar::min_slider_length = 50 + GtkCheckButton::indicator_size = 12 + GtkCheckButton::indicator_spacing = 3 + GtkMenuBar::internal_padding = 1 + GtkOptionMenu::indicator_size = { 15, 8 } + GtkOptionMenu::indicator_spacing = { 8, 2, 0, 0 } + GtkStatusbar::shadow_type = GTK_SHADOW_NONE + GtkSpinButton::shadow_type = GTK_SHADOW_NONE + + xthickness = 2 + ythickness = 2 + + fg[NORMAL] = "#D7D7D7" # Metacity and mouseover, Most text + fg[ACTIVE] = "#D7D7D7" + fg[PRELIGHT] = "#C4C4C4" + fg[SELECTED] = "#818181" + fg[INSENSITIVE] = "#000000" + + bg[NORMAL] = "#373737" # Normal Background + fg[ACTIVE] = "#9A9A9A" + fg[PRELIGHT] = "#C4C4C4" + fg[SELECTED] = "#818181" + bg[INSENSITIVE] = "#9A9A9A" + + base[NORMAL] = "#434343" # Background, most + base[ACTIVE] = "#434343" # Menu active item in inactive window + base[PRELIGHT] = "#434343" + base[INSENSITIVE] = "#616161" # Inactive Entry bg + base[SELECTED] = "#616161" # Menu active item in active window + + text[NORMAL] = "#808080" # Text in window, arrows + text[INSENSITIVE] = "#808080" # Insensitive arrows + text[SELECTED] = "#ABABAB" # Active text in active window + text[ACTIVE] = "#ffffff" # Active text in inactive window + text[PRELIGHT] = "#ffffff" # Text on Mouseover + + engine "pixmap" + { + image + { + function = HANDLE + recolorable = TRUE + overlay_file = "Panel/handle-v.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + image + { + function = HANDLE + recolorable = TRUE + overlay_file = "Panel/handle-h.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + +####################### SHADOWS ############################x + + image + { + function = SHADOW + shadow = IN + recolorable = FALSE + file = "Shadows/shadow-in.png" + border = { 3, 3, 2, 2 } + stretch = TRUE + } + image + { + function = SHADOW + shadow = OUT + recolorable = TRUE + file = "Shadows/shadow-out.png" + stretch = TRUE + } + + image + { + function = SHADOW + shadow = ETCHED_IN + recolorable = TRUE + file = "Frame-Gap/frame1.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + image + { + function = SHADOW + shadow = ETCHED_OUT + recolorable = TRUE + file = "Shadows/shadow-none.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + image + { + function = SHADOW_GAP + recolorable = TRUE + file = "Frame-Gap/frame1.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + gap_start_file = "Frame-Gap/frame-gap-start.png" + gap_start_border = { 2, 0, 2, 0 } + gap_end_file = "Frame-Gap/frame-gap-end.png" + gap_end_border = { 0, 2, 2, 0 } + gap_side = TOP + } + + image + { + function = VLINE + recolorable = TRUE + file = "Lines/line-v.png" + border = { 1, 1, 0, 0 } + stretch = TRUE + } + image + { + function = HLINE + recolorable = TRUE + file = "Lines/line-h.png" + border = { 0, 0, 1, 1 } + stretch = TRUE + } + + # focus + + image + { + function = FOCUS + recolorable = TRUE + file = "Others/focus.png" + border = { 6, 0, 6, 0 } + stretch = TRUE + } + + # arrows + + image + { + function = ARROW + recolorable = TRUE + overlay_file = "Arrows/arrow-up.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + image + { + function = ARROW + state = NORMAL + recolorable = TRUE + overlay_file = "Arrows/arrow-down.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + image + { + function = ARROW + state = PRELIGHT + recolorable = TRUE + overlay_file = "Arrows/arrow-down-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + image + { + function = ARROW + state = ACTIVE + recolorable = TRUE + overlay_file = "Arrows/arrow-down-pressed.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image + { + function = ARROW + state = INSENSITIVE + recolorable = TRUE + overlay_file = "Arrows/arrow-down-insens.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image + { + function = ARROW + recolorable = TRUE + overlay_file = "Arrows/arrow-left.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + image + { + function = ARROW + recolorable = TRUE + overlay_file = "Arrows/arrow-right.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + image + { + function = BOX + recolorable = TRUE + file = "Others/null.png" + border = { 3, 3, 3, 3 } + stretch = TRUE + } + } + +} + +class "GtkWidget" style "default" + +style "inactivetext" +{ + +engine "mist" + { + } +} + +widget_class "*.<GtkLabel>" style "inactivetext" +widget_class "*.<GtkCellLayout>" style "inactivetext" +#widget_class "*.<Combo>" style "inactivetext" + +style "inactivetext2" +{ + + + fg[PRELIGHT] = "#D7D7D7" + fg[NORMAL] = "#D7D7D7" + +engine "mist" + { + } +} + +widget_class "*.<GtkMenuItem>.*" style "inactivetext2" + + +#################### BUTTONS ####################### + +style "button" = "default" +{ + + engine "pixmap" + { + image + { + function = BOX + detail = "buttondefault" + recolorable = TRUE + file = "Buttons/button-default.png" + border = {4, 4, 4, 4} + stretch = TRUE + } + image + { + function = BOX + state = PRELIGHT + recolorable = TRUE + file = "Buttons/button-prelight.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + image + { + function = BOX + state = ACTIVE + file = "Buttons/button-pressed.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + image + { + function = BOX + state = INSENSITIVE + file = "Buttons/button-insensitive.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + image + { + function = BOX + file = "Buttons/button-normal.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + } +} + + + + +style "checkradiobutton" { + engine "pixmap" { + image + { + function = FLAT_BOX + recolorable = TRUE + file = "Check-Radio/highlight.png" + border = { 2, 5, 2, 5 } + stretch = TRUE + } + } +} + +class "GtkRadioButton" style "checkradiobutton" +class "GtkCheckButton" style "checkradiobutton" + +style "optionmenu" = "default" + +{ + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Combo/combo-prelight.png" + border = { 5, 5, 5, 5} + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = NORMAL + file = "Combo/combo-normal.png" + border = { 5, 5, 5, 5} + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = ACTIVE + file = "Combo/combo-active.png" + border = { 5, 5, 5, 5} + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + state = INSENSITIVE + file = "Combo/combo-inactive.png" + border = { 5, 5, 5, 5} + stretch = TRUE + } + image + { + function = TAB + state = INSENSITIVE + recolorable = TRUE + overlay_file = "Combo/combo-arrow-insens.png" + overlay_stretch = FALSE + } + image + { + function = TAB + recolorable = TRUE + state = NORMAL + overlay_file = "Combo/combo-arrow.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + image + { + function = TAB + recolorable = TRUE + state = PRELIGHT + overlay_file = "Combo/combo-arrow-prelight.png" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + } + } +} + +widget_class "*Combo*" style "optionmenu" + +style "radiobutton" = "default" +{ + engine "pixmap" + { + image + { + function = OPTION + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "Check-Radio/option1.png" + overlay_stretch = FALSE + } + image + { + function = OPTION + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "Check-Radio/option3.png" + overlay_stretch = FALSE + } + image + { + function = OPTION + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "Check-Radio/option3.png" + overlay_stretch = FALSE + } + image + { + function = OPTION + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "Check-Radio/option1.png" + overlay_stretch = FALSE + } + image + { + function = OPTION + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "Check-Radio/option2.png" + overlay_stretch = FALSE + } + image + { + function = OPTION + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "Check-Radio/option4.png" + overlay_stretch = FALSE + } + image + { + function = OPTION + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "Check-Radio/option4.png" + overlay_stretch = FALSE + } + image + { + function = OPTION + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "Check-Radio/option1.png" + overlay_stretch = FALSE + } + image + { + function = FLAT_BOX + recolorable = TRUE + stretch = TRUE + file = "Check-Radio/checklight.png" + border = { 2, 2, 2, 2 } + } + } +} + + +style "checkbutton" = "default" +{ + engine "pixmap" + { + image + { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = OUT + overlay_file = "Check-Radio/check1.png" + overlay_stretch = FALSE + } + image + { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = OUT + overlay_file = "Check-Radio/check3.png" + overlay_stretch = FALSE + } + image + { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = OUT + overlay_file = "Check-Radio/check3.png" + overlay_stretch = FALSE + } + image + { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = OUT + overlay_file = "Check-Radio/check1.png" + overlay_stretch = FALSE + } + image + { + function = CHECK + recolorable = TRUE + state = NORMAL + shadow = IN + overlay_file = "Check-Radio/check2.png" + overlay_stretch = FALSE + } + image + { + function = CHECK + recolorable = TRUE + state = PRELIGHT + shadow = IN + overlay_file = "Check-Radio/check4.png" + overlay_stretch = FALSE + } + image + { + function = CHECK + recolorable = TRUE + state = ACTIVE + shadow = IN + overlay_file = "Check-Radio/check4.png" + overlay_stretch = FALSE + } + image + { + function = CHECK + recolorable = TRUE + state = INSENSITIVE + shadow = IN + overlay_file = "Check-Radio/check1.png" + overlay_stretch = FALSE + } + image + { + function = FLAT_BOX + recolorable = TRUE + stretch = TRUE + file = "Check-Radio/checklight.png" + border = { 2, 2, 2, 2 } + } + } +} + + +####################### ENTRY #####################xx + +style "entry" = "default" +{ + + xthickness = 3 + ythickness = 2 + GtkWidget::interior_focus = 0 + + engine "pixmap" + { + image + { + function = FOCUS + recolorable = TRUE + file = "Shadows/entry-shadow-in.png" + border = { 3,3,3,3 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + shadow = IN + state = NORMAL + file = "Shadows/entry-shadow-in.png" + border = { 3,3,3,3 } + stretch = TRUE + } +image + { + function = BOX + recolorable = TRUE + shadow = OUT + state = NORMAL + file = "Shadows/text-entry.png" + border = { 3,3,3,3 } + stretch = TRUE + } + image + { + function = SHADOW + detail = "entry" + shadow = IN + recolorable = FALSE + file = "Shadows/text-entry.png" + border = { 3,3,3,3 } + stretch = TRUE + } + } +} + +################x SPINBUTTONS ################ + +style "spinbutton" = "default" +{ + + xthickness = 3 + ythickness = 1 + GtkWidget::interior_focus = 0 + + engine "pixmap" + { + image + { + function = ARROW + } + +############################# UP ######################xx + image + { + function = BOX + state = NORMAL + detail = "spinbutton_up" + recolorable = TRUE + file = "Spin/spin-up-bg.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + overlay_file = "Spin/arrow-up.png" + overlay_stretch = FALSE + } + image + { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + recolorable = TRUE + file = "Spin/spin-up-bg.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + overlay_file = "Spin/arrow-up-prelight.png" + overlay_stretch = FALSE + } + image + { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + recolorable = TRUE + file = "Spin/spin-up-bg.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + overlay_file = "Spin/arrow-up-disable.png" + overlay_stretch = FALSE + } + image + { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + recolorable = TRUE + file = "Spin/spin-up-bg.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + +########################x DOWN ######################## + image + { + function = BOX + state = NORMAL + detail = "spinbutton_down" + recolorable = TRUE + file = "Spin/spin-down-bg.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + overlay_file = "Spin/arrow-down.png" + overlay_stretch = FALSE + } + image + { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + recolorable = TRUE + file = "Spin/spin-down-bg.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + overlay_file = "Spin/arrow-down-prelight.png" + overlay_stretch = FALSE + } + image + { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + recolorable = TRUE + file = "Spin/spin-down-bg.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + overlay_file = "Spin/arrow-down-disable.png" + overlay_stretch = FALSE + } + image + { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + recolorable = TRUE + file = "Spin/spin-down-bg.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + overlay_file = "Spin/arrow-down-prelight.png" + overlay_stretch = FALSE + } +########################## SPIN ENTRY ########################### + image + { + function = FOCUS + recolorable = TRUE + file = "Spin/text-entry-focus.png" + border = { 3,3,3,3 } + stretch = TRUE + } + image + { + function = SHADOW + detail = "entry" + shadow = IN + recolorable = FALSE + file = "Spin/text-entry.png" + border = { 3,3,3,3 } + stretch = TRUE + } + } +} + + +############################# SCROLLBAR #################### + +style "scrollbar" = "default" +{ + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "Scrollbars/trough-scrollbar-horiz.png" + border = { 19, 19, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + } + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "Scrollbars/trough-scrollbar-vert.png" + border = { 2, 2, 19, 19 } + stretch = TRUE + orientation = VERTICAL + } + +###########x SLIDERS ##################x + + image + { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/slider-horiz.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + } + image + { + function = SLIDER + recolorable = TRUE + state = ACTIVE + shadow = IN + file = "Scrollbars/slider-horiz.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + + } + image + { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/slider-horiz-prelight.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + + } + image + { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/slider-horiz-insens.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + + } + +#############x verticals################xx + + image + { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/slider-vert.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = VERTICAL + + } + image + { + function = SLIDER + recolorable = TRUE + state = ACTIVE + shadow = IN + file = "Scrollbars/slider-vert.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = VERTICAL + + } + image + { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/slider-vert-prelight.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = VERTICAL + + } + image + { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/slider-vert-insens.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = VERTICAL + + } + +###########x END SLIDERS ##################x + +########### Steppers ###################### +#### UP ####### + image + { + function = STEPPER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/stepper-up.png" + stretch = TRUE + arrow_direction = UP + } + image + { + function = STEPPER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/stepper-up-prelight.png" + stretch = TRUE + arrow_direction = UP + } + image + { + function = STEPPER + recolorable = TRUE + state = ACTIVE + file = "Scrollbars/stepper-up-prelight.png" + stretch = TRUE + arrow_direction = UP + } + image + { + function = STEPPER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/stepper-up-insens.png" + stretch = TRUE + arrow_direction = UP + } + + ######### DOWN ############ + + image + { + function = STEPPER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/stepper-down.png" + stretch = TRUE + arrow_direction = DOWN + } + image + { + function = STEPPER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/stepper-down-prelight.png" + stretch = TRUE + arrow_direction = DOWN + } + image + { + function = STEPPER + recolorable = TRUE + state = ACTIVE + file = "Scrollbars/stepper-down-prelight.png" + stretch = TRUE + arrow_direction = DOWN + } + image + { + function = STEPPER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/stepper-down-insens.png" + stretch = TRUE + arrow_direction = DOWN + } + +############ RIGHT ################ + + image + { + function = STEPPER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/stepper-right.png" + stretch = TRUE + arrow_direction = RIGHT + } + image + { + function = STEPPER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/stepper-right-prelight.png" + stretch = TRUE + arrow_direction = RIGHT + } + image + { + function = STEPPER + recolorable = TRUE + state = ACTIVE + file = "Scrollbars/stepper-right-prelight.png" + stretch = TRUE + arrow_direction = RIGHT + } + image + { + function = STEPPER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/stepper-right-insens.png" + stretch = TRUE + arrow_direction = RIGHT + } + +############### LEFT ################### + + image + { + function = STEPPER + recolorable = TRUE + state = NORMAL + file = "Scrollbars/stepper-left.png" + stretch = TRUE + arrow_direction = LEFT + } + image + { + function = STEPPER + recolorable = TRUE + state = PRELIGHT + file = "Scrollbars/stepper-left-prelight.png" + stretch = TRUE + arrow_direction = LEFT + } + image + { + function = STEPPER + recolorable = TRUE + state = ACTIVE + file = "Scrollbars/stepper-left-prelight.png" + stretch = TRUE + arrow_direction = LEFT + } + image + { + function = STEPPER + recolorable = TRUE + state = INSENSITIVE + file = "Scrollbars/stepper-left-insens.png" + stretch = TRUE + arrow_direction = LEFT + } + } +} + +##################### PROGRESSBAR ###################x + +style "progressbar" { + + fg[PRELIGHT] = "#373737" + + xthickness = 1 + ythickness = 1 + + engine "pixmap" + { + image + { + function = BOX + detail = "trough" + file = "ProgressBar/trough-progressbar-horiz.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + image + { + function = BOX + detail = "bar" + file = "ProgressBar/progressbar-horiz.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = HORIZONTAL + } + image + { + function = BOX + detail = "bar" + file = "ProgressBar/progressbar-vert.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + orientation = VERTICAL + } + } +} + +############################# RANGE ####################### + +style "range" = "default" +{ + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "Range/trough-horizontal.png" + border = { 10, 10, 1, 19 } + stretch = TRUE + orientation = HORIZONTAL + } + image + { + function = BOX + recolorable = TRUE + detail = "trough" + file = "Range/trough-vertical.png" + border = { 0, 19, 10, 10 } + stretch = TRUE + orientation = VERTICAL + } + +############### the sliders ############### + + image + { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "Range/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Range/slider-horiz.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + image + { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "Range/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Range/slider-horiz-prelight.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + image + { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "Range/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Range/slider-horiz.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + +######################### VERTICAL ########################### + + image + { + function = SLIDER + recolorable = TRUE + state = NORMAL + file = "Range/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Range/slider-vert.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + image + { + function = SLIDER + recolorable = TRUE + state = PRELIGHT + file = "Range/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Range/slider-vert-prelight.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + image + { + function = SLIDER + recolorable = TRUE + state = INSENSITIVE + file = "Range/null.png" + border = { 0, 0, 0, 0 } + stretch = TRUE + overlay_file = "Range/slider-vert.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + } +} + +################### TOOLBAR ########################### + +style "toolbar" +{ + engine "pixmap" + { + image + { + function = BOX + file = "Toolbar/toolbar-background.png" + border = { 4, 4, 4, 4} + stretch = TRUE + } + } +} +widget_class "*BonoboDockItem" style "toolbar" +class "*BonoboDockItem" style "toolbar" + +widget_class "*HandleBox" style "toolbar" +class "*HandleBox" style "toolbar" + +widget_class "*Toolbar" style "toolbar" +class "*Toolbar" style "toolbar" + +##################### TOOLBAR BUTTONS ############################### + +style "toolbuttons" = "default" +{ + xthickness = 1 + ythickness = 1 + GtkWidget::focus_padding = 2 + + engine "pixmap" { + +image + { + function = BOX + recolorable = TRUE + state = NORMAL + file = "Toolbar/toolbutton-normal.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } +image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Toolbar/toolbutton-prelight.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } +image + { + function = BOX + recolorable = TRUE + state = ACTIVE + file = "Toolbar/toolbutton-pressed.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } +image + { + function = BOX + recolorable = TRUE + state = INSENSITIVE + file = "Toolbar/toolbutton-normal.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + } + } +} +widget_class "*Tool*GtkToggleButton" style "toolbuttons" +widget_class "*Tool*GtkButton" style "toolbuttons" + +################### PANEL GRAPHICS ################################# +################### MENU ################################# + +style "menu" = "default" +{ +xthickness = 3 +ythickness = 1 + + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + detail = "menu" + file = "Menu-Menubar/menu.png" + border = { 34, 3, 3, 3 } + stretch = TRUE + } + } +} + +########################### Menuitem ############################# +style "menuitem" = "default" +{ + xthickness = 1 + fg[PRELIGHT] = "#ffffff" + + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + file = "Menu-Menubar/menuitem.png" + border = { 10, 10, 10, 10 } + stretch = TRUE + } + image + { + function = ARROW + recolorable = TRUE + state = NORMAL + overlay_file = "Arrows/arrow-right-norm.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + image + { + function = ARROW + recolorable = TRUE + state = PRELIGHT + overlay_file = "Arrows/arrow-right-prelight.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + } +} + + +style "tearoffmenuitem" = "menuitem" +{ + engine "pixmap" + { + image + { + function = ARROW + file = "Arrows/arrow-left.png" + stretch = TRUE + arrow_direction = LEFT + } + } +} + +style "notebook" = "default" +{ + + xthickness = 2 + ythickness = 2 + engine "pixmap" + { + image + { + function = EXTENSION + recolorable = TRUE + state = ACTIVE + file = "Tabs/tab-bottom.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = TOP + } + image + { + function = EXTENSION + recolorable = TRUE + state = ACTIVE + file = "Tabs/tab-top.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = BOTTOM + } + image + { + function = EXTENSION + recolorable = TRUE + state = ACTIVE + file = "Tabs/tab-left.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = RIGHT + } + image + { + function = EXTENSION + recolorable = TRUE + state = ACTIVE + file = "Tabs/tab-right.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = LEFT + } + image + { + function = EXTENSION + recolorable = TRUE + file = "Tabs/tab-top-active.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = BOTTOM + } + image + { + function = EXTENSION + recolorable = TRUE + file = "Tabs/tab-bottom-active.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = TOP + } + image + { + function = EXTENSION + recolorable = TRUE + file = "Tabs/tab-left-active.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = RIGHT + } + image + { + function = EXTENSION + recolorable = TRUE + file = "Tabs/tab-right-active.png" + border = { 4,4,4,4} + stretch = TRUE + gap_side = LEFT + } + +# How to draw boxes with a gap on one side (ie the page of a notebook) + + image + { + function = BOX_GAP + recolorable = TRUE + file = "Tabs/notebook.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + gap_file = "Tabs/gap-top.png" + gap_border = { 5, 5, 5, 5 } + gap_start_file = "Others/null.png" + gap_start_border = { 0, 0, 0, 0 } + gap_end_file = "Others/null.png" + gap_end_border = { 0, 0, 0, 0 } + gap_side = TOP + } + image + { + function = BOX_GAP + recolorable = TRUE + file = "Tabs/notebook.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + gap_file = "Tabs/gap-bottom.png" + gap_border = { 5, 5, 5, 5 } + gap_start_file = "Others/null.png" + gap_start_border = { 0, 0, 0, 0 } + gap_end_file = "Others/null.png" + gap_end_border = { 0, 0, 0, 0 } + gap_side = BOTTOM + } + image + { + function = BOX_GAP + recolorable = TRUE + file = "Tabs/notebook.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + gap_file = "Tabs/gap-left.png" + gap_border = { 5, 5, 5, 5 } + gap_start_file = "Others/null.png" + gap_start_border = { 0, 0, 0, 0 } + gap_end_file = "Others/null.png" + gap_end_border = { 0, 0, 0, 0 } + gap_side = LEFT + } + image + { + function = BOX_GAP + recolorable = TRUE + file = "Tabs/notebook.png" + border = { 5, 5, 5, 5 } + stretch = TRUE + gap_file = "Tabs/gap-right.png" + gap_border = { 5, 5, 5, 5 } + gap_start_file = "Others/null.png" + gap_start_border = { 0, 0, 0, 0 } + gap_end_file = "Others/null.png" + gap_end_border = { 0, 0, 0, 0 } + gap_side = RIGHT + } + +# How to draw the box of a notebook when it isnt attached to a tab + + image + { + function = BOX + recolorable = TRUE + file = "Tabs/notebook.png" + border = { 6,6,6,6 } + stretch = TRUE + } + } +} + +style "tooltips" = "default" +{ + bg[NORMAL] = "#373737" +} + +##################### RULER ################## + +style "ruler" = "default" +{ + engine "pixmap" + { + image + { + function = BOX + recolorable = TRUE + detail = "vruler" + file = "Others/ruler.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + image + { + function = BOX + recolorable = TRUE + detail = "hruler" + file = "Others/ruler.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + } +} + +################# HANDLES ###################x + + +style "handlebox" = "default" +{ + engine "pixmap" + { + image + { + function = HANDLE + recolorable = TRUE + overlay_file = "Others/null.png" +# overlay_file = "Handles/handle-v.png" + overlay_stretch = FALSE + orientation = VERTICAL + } + image + { + function = HANDLE + overlay_file = "Others/null.png" +# overlay_file = "Handles/handle-h.png" + overlay_stretch = FALSE + orientation = HORIZONTAL + } + } +} + +style "flat" = "default" +{ + engine "pixmap" + { + image + { + function = SHADOW + } + } +} + +style "layout" = "default" +{ + engine "pixmap" + { + image + { + function = SHADOW + detail = "entry" + shadow = IN + recolorable = FALSE + file = "Shadows/text.png" + border = { 1, 1, 1, 1 } + stretch = TRUE + } + image + { + function = BOX + detail = "button" + state = NORMAL + file = "Buttons/button-normal.png" + recolorable = TRUE + border = { 2, 3, 2, 3 } + stretch = TRUE + } + } +} + +##################### STATUSBAR ############################### + +style "statusbar" = "default" +{ + +# xthickness = 1 +# ythickness = 1 + + engine "pixmap" + { + image + { + function = RESIZE_GRIP + recolorable = TRUE + #state = NORMAL + detail = "statusbar" + overlay_file = "Handles/resize-grip.png" + + overlay_border = {0,0,0,0 } + overlay_stretch = FALSE + } + } +} + +# This prevents Sodipodi from crashing while opening the +# Object-Style dialog. + +style "unstyle" +{ + engine "" + { + } +} + +# recognizable pressed toggle buttons +# SPIcons seem to erase the background first. That's why I can't use +# the button style. + +style "SPbutton" +{ + engine "pixmap" + { + image + { + function = BOX + shadow = IN + recolorable = TRUE + file = "Shadows/shadow-out.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + image + { + function = BOX + } + } +} + +style "xfdesktop-icon-view" { + +XfdesktopIconView::label-alpha = 00 +font_name="Bauhaus Bold" +base[NORMAL] = "#373737" +base[SELECTED] = "#373737" +base[ACTIVE] = "#ffffff" + +fg[NORMAL] = "#373737" +fg[SELECTED] = "#373737" +fg[ACTIVE] = "#ffffff" +text[NORMAL] = "#ffffff" +} +widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view" + + +# widget styles + +class "GtkButton" style "button" +class "GtkRadioButton" style "radiobutton" +class "GtkRadioMenuItem" style "radiobutton" +class "GtkCheckButton" style "checkbutton" +class "GtkCheckMenuItem" style "checkbutton" +class "GtkOptionMenu" style "optionmenu" +class "GtkCombo*" style "optionmenu" +class "*Font*" style "optionmenu" +class "GtkEntry" style "entry" +class "GtkOldEditable" style "entry" +class "GtkSpinButton" style "spinbutton" +class "GtkRuler" style "ruler" +class "GtkScrollbar" style "scrollbar" +class "GtkStatusbar" style "statusbar" +class "GtkProgressBar" style "progressbar" +class "GtkRange" style "range" +class "GtkMenu" style "menu" +class "GtkMenuBar*" style "menubar" +widget_class "*MenuBar.*" style "menubar" +widget_class "*.<MenuItem>." style "menuitem" +class "GtkMenuItem" style "menuitem" +class "GtkTearoffMenuItem" style "menuitem" +class "GtkNotebook" style "notebook" +class "GtkToolbar" style "flat" +class "GtkHandleBox" style "handlebox" +class "GtkEventBox" style "flat" +class "GtkPaned" style "handlebox" +class "GtkLayout" style "layout" +class "SPButton" style "SPbutton" +widget "gtk-tooltips" style "tooltips" + +# prevent Sodipodi from crashing +class "SPColorSlider" style "unstyle" + diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/menubar.rc b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/menubar.rc new file mode 100755 index 0000000..f139241 --- /dev/null +++ b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/menubar.rc @@ -0,0 +1,52 @@ +#################### MENUBAR ################### + + +style "menubar" + +{ + xthickness = 1 + ythickness = 2 + + engine "pixmap" + { + image + { + function = BOX + state = NORMAL + file = "Menu-Menubar/menubar-background.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = ACTIVE + file = "Menu-Menubar/menubar-background.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + state = INSENSITIVE + file = "Menu-Menubar/menubar-background.png" + border = { 2, 2, 2, 2 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Menu-Menubar/menubar-item.png" + + border = { 10, 10, 10, 10 } + stretch = TRUE + } + + } +} + diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/panel.rc b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/panel.rc new file mode 100755 index 0000000..ac0e105 --- /dev/null +++ b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/gtk-2.0/panel.rc @@ -0,0 +1,111 @@ +#################### PANEL BACKGROUND #########################xx + +style "panelbg" +{ + + xthickness = 0 + ythickness = 0 +bg_pixmap[NORMAL] = "Panel/panelbutton1.png" +#bg_pixmap[SELECTED] = "Panel/panelbutton1.png" +#bg_pixmap[INSENSITIVE] = "Panel/panelbutton1.png" +#bg_pixmap[PRELIGHT] = "Panel/panelbutton1.png" +#bg_pixmap[ACTIVE] = "Panel/panelbutton1.png" +} + +class "*Panel*" style "panelbg" +widget_class "*notif*" style "panelbg" +widget_class "*Notif*" style "panelbg" +widget_class "*Tray*" style "panelbg" +widget_class "*tray*" style "panelbg" + +##################### PANEL BUTTONS ############################### + +style "panelbuttons" +{ + + fg[NORMAL] = "#DDDDDD" # + fg[PRELIGHT] = "#FFFFFF" # text on buttons (hover) + fg[ACTIVE] = "#FFFFFF" # text on unfocused tabs + + xthickness = 2 + ythickness = 1 + + GtkWidget::focus_padding = 2 + + engine "pixmap" { + + image + { + function = BOX + recolorable = TRUE + state = NORMAL + file = "Panel/panelbutton-1.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = PRELIGHT + file = "Panel/panelbutton-1.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + shadow = OUT + state = PRELIGHT + file = "Panel/panelbutton-1.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + shadow = IN + state = PRELIGHT + file = "Panel/panelbutton-1.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = ACTIVE + file = "Panel/panelbutton-1.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + image + { + function = BOX + recolorable = TRUE + state = INSENSITIVE + file = "Panel/panelbutton-1.png" + border = { 4, 4, 4, 4 } + stretch = TRUE + } + + } + +} + + +widget "*PanelWidget*" style "panelbuttons" +widget "*PanelApplet*" style "panelbuttons" +widget_class "*Panel*GtkToggleButton*" style "panelbuttons" +widget_class "*Panel*GtkButton" style "panelbuttons" +widget_class "*PanelButton*." style "panelbuttons" +widget_class "*Panel*" style "panelbg" + + diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-active.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-active.png new file mode 100755 index 0000000..cc036ce Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-active.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-close-focus.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-close-focus.png new file mode 100755 index 0000000..7241875 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-close-focus.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-close-press.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-close-press.png new file mode 100644 index 0000000..d5638c7 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-close-press.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-close.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-close.png new file mode 100755 index 0000000..87f4c73 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-close.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-inactive.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-inactive.png new file mode 100755 index 0000000..cc036ce Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-inactive.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-max-focus.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-max-focus.png new file mode 100755 index 0000000..e1fa743 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-max-focus.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-max-press.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-max-press.png new file mode 100644 index 0000000..e24a850 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-max-press.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-max.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-max.png new file mode 100755 index 0000000..928a6de Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-max.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-min-focus.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-min-focus.png new file mode 100755 index 0000000..7689a57 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-min-focus.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-min-press.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-min-press.png new file mode 100644 index 0000000..0174f59 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-min-press.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-min.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-min.png new file mode 100755 index 0000000..73575aa Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/button-min.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/frame-bottom-left-focused.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/frame-bottom-left-focused.png new file mode 100755 index 0000000..02fac18 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/frame-bottom-left-focused.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/frame-bottom-mid-focused.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/frame-bottom-mid-focused.png new file mode 100755 index 0000000..7e3c4ba Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/frame-bottom-mid-focused.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/frame-bottom-right-focused.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/frame-bottom-right-focused.png new file mode 100755 index 0000000..14d2623 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/frame-bottom-right-focused.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/frame-left-focused.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/frame-left-focused.png new file mode 100755 index 0000000..8a6361b Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/frame-left-focused.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/frame-right-focused.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/frame-right-focused.png new file mode 100755 index 0000000..afedd68 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/frame-right-focused.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/left-side-max.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/left-side-max.png new file mode 100755 index 0000000..0fbad8c Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/left-side-max.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/left-side.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/left-side.png new file mode 100644 index 0000000..95fc344 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/left-side.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/menu-button-inactive.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/menu-button-inactive.png new file mode 100755 index 0000000..cc036ce Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/menu-button-inactive.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/metacity-theme-1.xml b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/metacity-theme-1.xml new file mode 100644 index 0000000..56603d8 --- /dev/null +++ b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/metacity-theme-1.xml @@ -0,0 +1,274 @@ +<?xml version="1.0"?> +<metacity_theme> +<info> + <name>Dark Ice</name> + <author>AnsheShem</author> + <copyright>-</copyright> + <date>15 11 2007</date> + <description>-</description> +</info> + +<constant name="IconTitleSpacing" value="0"/> + +<frame_geometry name="normal" rounded_top_left="false" rounded_top_right="false" rounded_bottom_left="false" rounded_bottom_right="false" title_scale="medium"> + <distance name="left_width" value="1"/> + <distance name="right_width" value="1"/> + <distance name="bottom_height" value="1"/> + <distance name="left_titlebar_edge" value="0"/> + <distance name="right_titlebar_edge" value="0"/> + <distance name="button_width" value="23"/> + <distance name="button_height" value="12"/> + <distance name="title_vertical_pad" value="11"/> + <border name="title_border" left="0" right="0" top="0" bottom="0"/> + <border name="button_border" left="0" right="0" top="0" bottom="0"/> +</frame_geometry> + +<frame_geometry name="maximized" rounded_top_left="false" rounded_top_right="false" rounded_bottom_left="false" rounded_bottom_right="false" title_scale="medium"> + <distance name="left_width" value="0"/> + <distance name="right_width" value="0"/> + <distance name="bottom_height" value="0"/> + <distance name="left_titlebar_edge" value="0"/> + <distance name="right_titlebar_edge" value="0"/> + <distance name="button_width" value="23"/> + <distance name="button_height" value="12"/> + <distance name="title_vertical_pad" value="11"/> + <border name="title_border" left="0" right="0" top="0" bottom="0"/> + <border name="button_border" left="0" right="0" top="0" bottom="0"/> +</frame_geometry> + +<frame_geometry name="border" parent="normal" has_title="false"> + <distance name="button_width" value="0"/> + <distance name="button_height" value="12"/> + <border name="title_border" left="0" right="0" top="0" bottom="0"/> + <border name="button_border" left="0" right="0" top="0" bottom="0"/> +</frame_geometry> + +<draw_ops name="title-text-focused"> +<title color="#DADADA" x="(width - title_width) / 2" y="(height - title_height) / 2"/> +</draw_ops> + +<draw_ops name="title-text-unfocused"> +<title color="#A5A5A5" x="(width - title_width) / 2" y="(height - title_height) / 2"/> +</draw_ops> + +<draw_ops name="blank"> +</draw_ops> + +<draw_ops name="title"> + <image filename="titlebar.png" x="0" y="0" width="width" height="height"/> +</draw_ops> + +<draw_ops name="title-shaded"> + <image filename="titlebar.png" x="0" y="0" width="width" height="height"/> +</draw_ops> + +<draw_ops name="title-unfocused"> + <image filename="titlebar.png" x="0" y="0" width="width" height="height"/> +</draw_ops> + +<draw_ops name="title-max"> + <image filename="titlebar.png" x="0" y="0" width="width" height="height"/> +</draw_ops> + +<draw_ops name="title-max-unfocused"> + <image filename="titlebar.png" x="0" y="0" width="width" height="height"/> +</draw_ops> + +<draw_ops name="button-close-focused"> + <image filename="button-close-focus.png" x="0" y="0" width="width" height="height"/> +</draw_ops> + +<draw_ops name="button-close-unfocused"> + <image filename="button-close.png" x="0" y="0" width="width" height="height"/> +</draw_ops> + +<draw_ops name="button-close-pressed"> + <image filename="button-close-press.png" x="0" y="0" width="width" height="height"/> +</draw_ops> + +<draw_ops name="button-maximize-focused"> + <image filename="button-max-focus.png" x="0" y="0" width="width" height="height"/> +</draw_ops> + +<draw_ops name="button-maximize-unfocused"> + <image filename="button-max.png" x="0" y="0" width="width" height="height"/> +</draw_ops> + +<draw_ops name="button-maximize-pressed"> + <image filename="button-max-press.png" x="0" y="0" width="width" height="height"/> +</draw_ops> + +<draw_ops name="button-minimize-focused"> + <image filename="button-min-focus.png" x="0" y="0" width="width" height="height"/> +</draw_ops> + +<draw_ops name="button-minimize-unfocused"> + <image filename="button-min.png" x="0" y="0" width="width" height="height"/> +</draw_ops> + +<draw_ops name="button-minimize-pressed"> + <image filename="button-min-press.png" x="0" y="0" width="width" height="height"/> +</draw_ops> + +<draw_ops name="frame-left-focused"> + <image filename="frame-left-focused.png" x="0" y="0" width="width" height="height"/> +</draw_ops> + +<draw_ops name="frame-right-focused"> + <image filename="frame-right-focused.png" x="0" y="0" width="width" height="height"/> +</draw_ops> + +<draw_ops name="frame-bottom-focused"> + <image filename="frame-bottom-left-focused.png" x="0" y="0" width="2" height="object_height"/> + <image filename="frame-bottom-mid-focused.png" x="2" y="0" width="width - 2" height="object_height"/> + <image filename="frame-bottom-right-focused.png" x="width - object_width" y="0" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="menu_button_icon"> + <!--<icon x="0" + y="0" + width="width" height="height"/>--> + <icon x="(width-mini_icon_width)/2" + y="(height-mini_icon_height)/2" + width="mini_icon_width" height="mini_icon_height"/> +</draw_ops> + +<draw_ops name="menu_button_icon_unfocused"> + <!--<icon x="0" + y="0" + width="width" height="height" alpha="0.5"/>--> + + <icon x="(width-mini_icon_width)/2" + y="(height-mini_icon_height)/2" + width="mini_icon_width" height="mini_icon_height"/> +</draw_ops> + +<draw_ops name="menu_button_normal"> + <include name="menu_button_icon"/> +</draw_ops> +<draw_ops name="menu_button_pressed"> + <include name="menu_button_icon"/> +</draw_ops> +<draw_ops name="menu_button_unfocused"> + <include name="menu_button_icon_unfocused"/> +</draw_ops> + + + +<frame_style name="normal-focused" geometry="normal"> + <piece position="titlebar" draw_ops="title"/> + <piece position="title" draw_ops="title-text-focused"/> + <button function="close" state="normal" draw_ops="button-close-unfocused"/> + <button function="close" state="prelight" draw_ops="button-close-focused"/> + <button function="close" state="pressed" draw_ops="button-close-pressed"/> + + <button function="minimize" state="normal" draw_ops="button-minimize-unfocused"/> + <button function="minimize" state="prelight" draw_ops="button-minimize-focused"/> + <button function="minimize" state="pressed" draw_ops="button-minimize-pressed"/> + + <button function="maximize" state="normal" draw_ops="button-maximize-unfocused"/> + <button function="maximize" state="prelight" draw_ops="button-maximize-focused"/> + <button function="maximize" state="pressed" draw_ops="button-maximize-pressed"/> + + <button function="menu" state="normal" draw_ops="menu_button_normal"/> + <button function="menu" state="pressed" draw_ops="menu_button_pressed"/> + + <piece position="left_edge" draw_ops="frame-left-focused"/> + <piece position="right_edge" draw_ops="frame-right-focused"/> + <piece position="bottom_edge" draw_ops="frame-bottom-focused"/> + </frame_style> + +<frame_style name="normal-unfocused" geometry="normal"> + <piece position="titlebar" draw_ops="title-unfocused"/> + <piece position="title" draw_ops="title-text-unfocused"/> + + <button function="close" state="normal" draw_ops="button-close-unfocused"/> + <button function="close" state="prelight" draw_ops="button-close-focused"/> + <button function="close" state="pressed" draw_ops="button-close-pressed"/> + + <button function="minimize" state="normal" draw_ops="button-minimize-unfocused"/> + <button function="minimize" state="prelight" draw_ops="button-minimize-focused"/> + <button function="minimize" state="pressed" draw_ops="button-minimize-pressed"/> + + <button function="maximize" state="normal" draw_ops="button-maximize-unfocused"/> + <button function="maximize" state="prelight" draw_ops="button-maximize-focused"/> + <button function="maximize" state="pressed" draw_ops="button-maximize-pressed"/> + + <button function="menu" state="normal" draw_ops="menu_button_normal"/> + <button function="menu" state="pressed" draw_ops="menu_button_pressed"/> + + <piece position="left_edge" draw_ops="frame-left-focused"/> + <piece position="right_edge" draw_ops="frame-right-focused"/> + <piece position="bottom_edge" draw_ops="frame-bottom-focused"/> +</frame_style> + +<frame_style name="normal-maximized-focused" geometry="maximized"> + <piece position="titlebar" draw_ops="title-max"/> + <piece position="title" draw_ops="title-text-focused"/> + <button function="close" state="normal" draw_ops="button-close-unfocused"/> + <button function="close" state="prelight" draw_ops="button-close-focused"/> + <button function="close" state="pressed" draw_ops="button-close-pressed"/> + + <button function="minimize" state="normal" draw_ops="button-minimize-unfocused"/> + <button function="minimize" state="prelight" draw_ops="button-minimize-focused"/> + <button function="minimize" state="pressed" draw_ops="button-minimize-pressed"/> + + <button function="maximize" state="normal" draw_ops="button-maximize-unfocused"/> + <button function="maximize" state="prelight" draw_ops="button-maximize-focused"/> + <button function="maximize" state="pressed" draw_ops="button-maximize-pressed"/> + + <button function="menu" state="normal" draw_ops="menu_button_normal"/> + <button function="menu" state="pressed" draw_ops="menu_button_pressed"/> +</frame_style> + +<frame_style name="normal-maximized-unfocused" geometry="maximized"> + <piece position="titlebar" draw_ops="title-max-unfocused"/> + <piece position="title" draw_ops="title-text-unfocused"/> + + <button function="close" state="normal" draw_ops="button-close-unfocused"/> + <button function="close" state="prelight" draw_ops="button-close-focused"/> + <button function="close" state="pressed" draw_ops="button-close-pressed"/> + + <button function="minimize" state="normal" draw_ops="button-minimize-unfocused"/> + <button function="minimize" state="prelight" draw_ops="button-minimize-focused"/> + <button function="minimize" state="pressed" draw_ops="button-minimize-pressed"/> + + <button function="maximize" state="normal" draw_ops="button-maximize-unfocused"/> + <button function="maximize" state="prelight" draw_ops="button-maximize-focused"/> + <button function="maximize" state="pressed" draw_ops="button-maximize-pressed"/> + + <button function="menu" state="normal" draw_ops="menu_button_normal"/> + <button function="menu" state="pressed" draw_ops="menu_button_pressed"/> +</frame_style> + +<frame_style name="normal-shaded-focused" geometry="normal" parent="normal-focused"> + <piece position="titlebar" draw_ops="title-shaded"/> +</frame_style> + +<frame_style name="normal-shaded-unfocused" geometry="normal" parent="normal-unfocused"> + <piece position="titlebar" draw_ops="title-shaded"/> +</frame_style> + +<frame_style_set name="normal"> + <frame focus="yes" state="normal" resize="both" style="normal-focused"/> + <frame focus="no" state="normal" resize="both" style="normal-unfocused"/> + <frame focus="yes" state="maximized" style="normal-maximized-focused"/> + <frame focus="no" state="maximized" style="normal-maximized-unfocused"/> + <frame focus="yes" state="shaded" style="normal-shaded-focused"/> + <frame focus="no" state="shaded" style="normal-shaded-unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal-shaded-focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal-shaded-unfocused"/> +</frame_style_set> + +<window type="normal" style_set="normal"/> +<window type="dialog" style_set="normal"/> +<window type="modal_dialog" style_set="normal"/> +<window type="menu" style_set="normal"/> +<window type="utility" style_set="normal"/> +<window type="border" style_set="normal"/> + +<menu_icon function="close" state="normal" draw_ops="button-close-focused"/> +<menu_icon function="maximize" state="normal" draw_ops="button-maximize-focused"/> +<menu_icon function="unmaximize" state="normal" draw_ops="button-maximize-focused"/> +<menu_icon function="minimize" state="normal" draw_ops="button-minimize-focused"/> +</metacity_theme> diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/right-side-max.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/right-side-max.png new file mode 100644 index 0000000..89bf09e Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/right-side-max.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/right-side.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/right-side.png new file mode 100644 index 0000000..ed7dd8a Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/right-side.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/title-bar.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/title-bar.png new file mode 100644 index 0000000..354f6b3 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/title-bar.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/titlebar.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/titlebar.png new file mode 100644 index 0000000..45bec7e Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/metacity-1/titlebar.png differ diff --git a/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/panelbg.png b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/panelbg.png new file mode 100644 index 0000000..7b48df1 Binary files /dev/null and b/larch/profiles/myarch/rootoverlay/root/.themes/DarkerIce/panelbg.png differ
gfx/p5-MouseX-NativeTraits
01b3c1c660b28bfc0f8b2e1864853135279c3d10
Checking in changes prior to tagging of version 1.09.
diff --git a/Changes b/Changes index 6d30fc5..1c717a6 100644 --- a/Changes +++ b/Changes @@ -1,44 +1,47 @@ Revision history for Perl extension MouseX::NativeTraits +1.09 2012-11-26 17:56:42 + - Remove "set" handler from pod + 1.08 2012-10-20 20:51:22 - No feature changes. Just upgraded Module::Install. 1.07 2011-12-04 16:11:32 - Resolve RT #69039 - Hash trait: Tied hashes become "untied" when using setter 1.06 2011-12-04 15:23:07 - Apply a patch in RT #72900 - Spelling gritch (gregor herrmann) 1.05 2011-11-28 13:09:51 - Resolve RT #72549 - Counter is slower than doing it by hand 1.04 2010-11-08 14:06:41 - Workaround test problms, again 1.03 2010-11-07 17:07:09 - Workaround test problems 1.02 2010-11-06 19:36:15 - Fix testing issue on Windows/nmake 1.01 2010-11-05 20:27:52 - This is a major update - Requires Mouse 0.82 for type constraint robusity - Follow Moose 1.19 except for smart coercions 1.00 Mon Sep 27 15:01:21 2010 - No functional changes - Follow Mouse 0.74, which is more compatible with Moose 0.002 Mon Mar 15 15:56:36 2010 - First non-dev release 0.001_02 Mon Feb 22 17:42:50 2010 - Improve docs 0.001_01 Sat Feb 20 15:49:59 2010 - first dev release 0.001 Fri Feb 19 10:45:19 2010 - original version; created by Module::Setup diff --git a/lib/Mouse/Meta/Attribute/Native.pm b/lib/Mouse/Meta/Attribute/Native.pm index 4cf4211..02590d0 100644 --- a/lib/Mouse/Meta/Attribute/Native.pm +++ b/lib/Mouse/Meta/Attribute/Native.pm @@ -1,31 +1,31 @@ package Mouse::Meta::Attribute::Native; use strict; -our $VERSION = '1.08'; +our $VERSION = '1.09'; 1; __END__ =head1 NAME Mouse::Meta::Attribute::Native - Extend your attribute interfaces =head1 SYNOPSIS # In your Makefile.PL # you can say: requires 'Mouse::Meta::Attribute::Native'; # just like as 'Moose::Meta::Attribute::Native' =head1 DESCRIPTION This module is just a hook to set C<Mouse::Meta::Attribute::Native> to prerequisites. =head1 SEE ALSO L<MouseX::NativeTraits> L<Moose::Meta::Attribute::Native> =cut diff --git a/lib/MouseX/NativeTraits.pm b/lib/MouseX/NativeTraits.pm index 2778a06..4ce41f0 100644 --- a/lib/MouseX/NativeTraits.pm +++ b/lib/MouseX/NativeTraits.pm @@ -1,295 +1,295 @@ package MouseX::NativeTraits; use 5.006_002; use Mouse::Role; -our $VERSION = '1.08'; +our $VERSION = '1.09'; requires qw(method_provider_class helper_type); #has default => ( # is => 'bare', # don't create new methods # required => 1, #); has type_constraint => ( is => 'bare', # don't create new methods required => 1, ); has method_provider => ( is => 'ro', isa => 'Object', builder => '_build_method_provider', ); sub _build_method_provider{ my($self) = @_; my $mpc = $self->method_provider_class; Mouse::Util::load_class($mpc); return $mpc->new(attr => $self); } before _process_options => sub { my ( $self, $name, $options ) = @_; my $type = $self->helper_type; $options->{isa} = $type if !exists $options->{isa}; my $isa = Mouse::Util::TypeConstraints::find_or_create_isa_type_constraint( $options->{isa} ); ( $isa->is_a_type_of($type) ) || $self->throw_error( "The type constraint for $name must be a subtype of $type but it's a $isa"); $options->{default} = $self->_default_default if !exists $options->{default} && $self->can('_default_default'); }; around _canonicalize_handles => sub { my($next, $self) = @_; my $handles_ref = $self->handles; if( ref($handles_ref) ne 'HASH' ) { $self->throw_error( "The 'handles' option must be a HASH reference, not $handles_ref"); } my $provider = $self->method_provider; my %handles; while(my($name, $to) = each %{$handles_ref}){ $to = [$to] if !ref $to; $provider->has_generator($to->[0]) or $self->throw_error("$to->[0] is an unsupported method type"); $handles{$name} = $to; } return %handles; }; around _make_delegation_method => sub { my( $next, $self, $handle_name, $method_to_call) = @_; return $self->method_provider->generate($handle_name, $method_to_call); }; no Mouse::Role; 1; __END__ =head1 NAME MouseX::NativeTraits - Extend your attribute interfaces for Mouse =head1 VERSION -This document describes MouseX::NativeTraits version 1.08. +This document describes MouseX::NativeTraits version 1.09. =head1 SYNOPSIS package MyClass; use Mouse; has mapping => ( traits => ['Hash'], is => 'rw', isa => 'HashRef[Str]', default => sub { +{} }, handles => { exists_in_mapping => 'exists', ids_in_mapping => 'keys', get_mapping => 'get', set_mapping => 'set', set_quantity => [ set => 'quantity' ], }, ); =head1 DESCRIPTION While L<Mouse> attributes provide a way to name your accessors, readers, writers, clearers and predicates, MouseX::NativeTraits provides commonly used attribute helper methods for more specific types of data. As seen in the L</SYNOPSIS>, you specify the data structure via the C<traits> parameter. These traits will be loaded automatically, so you need not load MouseX::NativeTraits explicitly. This extension is compatible with Moose native traits, although it is not a part of Mouse core. =head1 PARAMETERS =head2 handles This is like C<handles> in L<Mouse/has>, but only HASH references are allowed. Keys are method names that you want installed locally, and values are methods from the method providers (below). Currying with delegated methods works normally for C<< handles >>. =head1 NATIVE TRAITS =head2 Array Common methods for array references. has 'queue' => ( traits => ['Array'], is => 'ro', isa => 'ArrayRef[Str]', default => sub { [] }, handles => { add_item => 'push', next_item => 'shift', } ); See L<MouseX::NativeTraits::ArrayRef>. =head2 Hash Common methods for hash references. has 'options' => ( traits => ['Hash'], is => 'ro', isa => 'HashRef[Str]', default => sub { {} }, handles => { set_option => 'set', get_option => 'get', has_option => 'exists', } ); See L<MouseX::NativeTraits::HashRef>. =head2 Code Common methods for code references. has 'callback' => ( traits => ['Code'], is => 'ro', isa => 'CodeRef', default => sub { sub { 'called' } }, handles => { call => 'execute', } ); See L<MouseX::NativeTraits::CodeRef>. =head2 Bool Common methods for boolean values. has 'is_lit' => ( traits => ['Bool'], is => 'rw', isa => 'Bool', default => 0, handles => { illuminate => 'set', darken => 'unset', flip_switch => 'toggle', is_dark => 'not', } ); See L<MouseX::NativeTraits::Bool>. =head2 String Common methods for string operations. has text => ( traits => ['String'], is => 'rw', isa => 'Str', default => q{}, handles => { add_text => 'append', replace_text => 'replace', # or replace_globally } ); See L<MouseX::NativeTraits::Str>. =head2 Number Common numerical operations. has value => ( traits => ['Number'], is => 'ro', isa => 'Int', default => 5, handles => { set => 'set', add => 'add', sub => 'sub', mul => 'mul', div => 'div', mod => 'mod', abs => 'abs', } ); See L<MouseX::NativeTraits::Num>. =head2 Counter Methods for incrementing and decrementing a counter attribute. has counter => ( traits => ['Counter'], is => 'ro', isa => 'Num', default => 0, handles => { inc_counter => 'inc', dec_counter => 'dec', reset_counter => 'reset', } ); See L<MouseX::NativeTraits::Counter>. =head1 DEPENDENCIES Perl 5.6.2 or later. =head1 BUGS All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. =head1 SEE ALSO L<Mouse> L<MouseX::AttributeHelpers> L<Moose> L<Moose::Meta::Attribute::Native> L<MooseX::AttributeHelpers> =head1 AUTHORS Goro Fuji (gfx) E<lt>gfuji(at)cpan.orgE<gt> This module is based on Moose native traits written by Stevan Little and others. =head1 LICENSE AND COPYRIGHT Copyright (c) 2010, Goro Fuji (gfx), mostly based on Moose, which is (c) Infinity Interactive, Inc (L<http://www.iinteractive.com>). This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L<perlartistic> for details. =cut diff --git a/lib/MouseX/NativeTraits/Num.pm b/lib/MouseX/NativeTraits/Num.pm index a8b82a1..9f4692f 100644 --- a/lib/MouseX/NativeTraits/Num.pm +++ b/lib/MouseX/NativeTraits/Num.pm @@ -1,108 +1,104 @@ package MouseX::NativeTraits::Num; use Mouse::Role; with 'MouseX::NativeTraits'; sub method_provider_class { return 'MouseX::NativeTraits::MethodProvider::Num'; } sub helper_type { return 'Num'; } no Mouse::Role; 1; __END__ =pod =head1 NAME MouseX::NativeTraits::Num - Helper trait for Num attributes =head1 SYNOPSIS package Real; use Mouse; has 'integer' => ( traits => ['Number'], is => 'ro', isa => 'Num', default => 5, handles => { set => 'set', add => 'add', sub => 'sub', mul => 'mul', div => 'div', mod => 'mod', abs => 'abs', }, ); my $real = Real->new(); $real->add(5); # same as $real->integer($real->integer + 5); $real->sub(2); # same as $real->integer($real->integer - 2); =head1 DESCRIPTION This provides a simple numeric attribute, which supports most of the basic math operations. =head1 PROVIDED METHODS It is important to note that all those methods do in place modification of the value stored in the attribute. These methods are implemented within this package. =over 4 -=item B<set($value)> - -Alternate way to set the value. - =item B<add($value)> Adds the current value of the attribute to C<$value>. =item B<sub($value)> Subtracts C<$value> from the current value of the attribute. =item B<mul($value)> Multiplies the current value of the attribute by C<$value>. =item B<div($value)> Divides the current value of the attribute by C<$value>. =item B<mod($value)> Returns the current value of the attribute modulo C<$value>. =item B<abs> Sets the current value of the attribute to its absolute value. =back =head1 METHODS =over 4 =item B<meta> =item B<method_provider_class> =item B<helper_type> =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut
gfx/p5-MouseX-NativeTraits
0e45ae67d395327645d2bf70c3bbb8d7e6917c52
Checking in changes prior to tagging of version 1.08.
diff --git a/Changes b/Changes index 9fe3a92..6d30fc5 100644 --- a/Changes +++ b/Changes @@ -1,41 +1,44 @@ Revision history for Perl extension MouseX::NativeTraits +1.08 2012-10-20 20:51:22 + - No feature changes. Just upgraded Module::Install. + 1.07 2011-12-04 16:11:32 - Resolve RT #69039 - Hash trait: Tied hashes become "untied" when using setter 1.06 2011-12-04 15:23:07 - Apply a patch in RT #72900 - Spelling gritch (gregor herrmann) 1.05 2011-11-28 13:09:51 - Resolve RT #72549 - Counter is slower than doing it by hand 1.04 2010-11-08 14:06:41 - Workaround test problms, again 1.03 2010-11-07 17:07:09 - Workaround test problems 1.02 2010-11-06 19:36:15 - Fix testing issue on Windows/nmake 1.01 2010-11-05 20:27:52 - This is a major update - Requires Mouse 0.82 for type constraint robusity - Follow Moose 1.19 except for smart coercions 1.00 Mon Sep 27 15:01:21 2010 - No functional changes - Follow Mouse 0.74, which is more compatible with Moose 0.002 Mon Mar 15 15:56:36 2010 - First non-dev release 0.001_02 Mon Feb 22 17:42:50 2010 - Improve docs 0.001_01 Sat Feb 20 15:49:59 2010 - first dev release 0.001 Fri Feb 19 10:45:19 2010 - original version; created by Module::Setup diff --git a/Makefile.PL b/Makefile.PL index 7b75af9..155ed28 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,33 +1,33 @@ use strict; use warnings; -use inc::Module::Install; -use Module::Install::TestTarget 0.12; +use inc::Module::Install 1.06; +use Module::Install::TestTarget 0.19; all_from 'lib/MouseX/NativeTraits.pm'; requires 'Mouse' => 0.82; test_requires 'Any::Moose' => 0.13; test_requires 'Test::More' => 0.88; # done_testing() test_requires 'Test::Fatal' => 0.003; tests_recursive 't'; author_tests 'xt'; auto_set_repository() if -d '.git'; default_test_target env => { ANY_MOOSE => 'Mouse' }; test_target 'test_moose' => ( env => { ANY_MOOSE => 'Moose' }, ); clean_files qw( MouseX-NativeTraits-* *.stackdump cover_db nytprof *.out ); WriteAll(check_nmake => 0); diff --git a/lib/Mouse/Meta/Attribute/Native.pm b/lib/Mouse/Meta/Attribute/Native.pm index 0e2d27b..4cf4211 100644 --- a/lib/Mouse/Meta/Attribute/Native.pm +++ b/lib/Mouse/Meta/Attribute/Native.pm @@ -1,31 +1,31 @@ package Mouse::Meta::Attribute::Native; use strict; -our $VERSION = '1.07'; +our $VERSION = '1.08'; 1; __END__ =head1 NAME Mouse::Meta::Attribute::Native - Extend your attribute interfaces =head1 SYNOPSIS # In your Makefile.PL # you can say: requires 'Mouse::Meta::Attribute::Native'; # just like as 'Moose::Meta::Attribute::Native' =head1 DESCRIPTION This module is just a hook to set C<Mouse::Meta::Attribute::Native> to prerequisites. =head1 SEE ALSO L<MouseX::NativeTraits> L<Moose::Meta::Attribute::Native> =cut diff --git a/lib/MouseX/NativeTraits.pm b/lib/MouseX/NativeTraits.pm index 1ee4b69..2778a06 100644 --- a/lib/MouseX/NativeTraits.pm +++ b/lib/MouseX/NativeTraits.pm @@ -1,295 +1,295 @@ package MouseX::NativeTraits; use 5.006_002; use Mouse::Role; -our $VERSION = '1.07'; +our $VERSION = '1.08'; requires qw(method_provider_class helper_type); #has default => ( # is => 'bare', # don't create new methods # required => 1, #); has type_constraint => ( is => 'bare', # don't create new methods required => 1, ); has method_provider => ( is => 'ro', isa => 'Object', builder => '_build_method_provider', ); sub _build_method_provider{ my($self) = @_; my $mpc = $self->method_provider_class; Mouse::Util::load_class($mpc); return $mpc->new(attr => $self); } before _process_options => sub { my ( $self, $name, $options ) = @_; my $type = $self->helper_type; $options->{isa} = $type if !exists $options->{isa}; my $isa = Mouse::Util::TypeConstraints::find_or_create_isa_type_constraint( $options->{isa} ); ( $isa->is_a_type_of($type) ) || $self->throw_error( "The type constraint for $name must be a subtype of $type but it's a $isa"); $options->{default} = $self->_default_default if !exists $options->{default} && $self->can('_default_default'); }; around _canonicalize_handles => sub { my($next, $self) = @_; my $handles_ref = $self->handles; if( ref($handles_ref) ne 'HASH' ) { $self->throw_error( "The 'handles' option must be a HASH reference, not $handles_ref"); } my $provider = $self->method_provider; my %handles; while(my($name, $to) = each %{$handles_ref}){ $to = [$to] if !ref $to; $provider->has_generator($to->[0]) or $self->throw_error("$to->[0] is an unsupported method type"); $handles{$name} = $to; } return %handles; }; around _make_delegation_method => sub { my( $next, $self, $handle_name, $method_to_call) = @_; return $self->method_provider->generate($handle_name, $method_to_call); }; no Mouse::Role; 1; __END__ =head1 NAME MouseX::NativeTraits - Extend your attribute interfaces for Mouse =head1 VERSION -This document describes MouseX::NativeTraits version 1.07. +This document describes MouseX::NativeTraits version 1.08. =head1 SYNOPSIS package MyClass; use Mouse; has mapping => ( traits => ['Hash'], is => 'rw', isa => 'HashRef[Str]', default => sub { +{} }, handles => { exists_in_mapping => 'exists', ids_in_mapping => 'keys', get_mapping => 'get', set_mapping => 'set', set_quantity => [ set => 'quantity' ], }, ); =head1 DESCRIPTION While L<Mouse> attributes provide a way to name your accessors, readers, writers, clearers and predicates, MouseX::NativeTraits provides commonly used attribute helper methods for more specific types of data. As seen in the L</SYNOPSIS>, you specify the data structure via the C<traits> parameter. These traits will be loaded automatically, so you need not load MouseX::NativeTraits explicitly. This extension is compatible with Moose native traits, although it is not a part of Mouse core. =head1 PARAMETERS =head2 handles This is like C<handles> in L<Mouse/has>, but only HASH references are allowed. Keys are method names that you want installed locally, and values are methods from the method providers (below). Currying with delegated methods works normally for C<< handles >>. =head1 NATIVE TRAITS =head2 Array Common methods for array references. has 'queue' => ( traits => ['Array'], is => 'ro', isa => 'ArrayRef[Str]', default => sub { [] }, handles => { add_item => 'push', next_item => 'shift', } ); See L<MouseX::NativeTraits::ArrayRef>. =head2 Hash Common methods for hash references. has 'options' => ( traits => ['Hash'], is => 'ro', isa => 'HashRef[Str]', default => sub { {} }, handles => { set_option => 'set', get_option => 'get', has_option => 'exists', } ); See L<MouseX::NativeTraits::HashRef>. =head2 Code Common methods for code references. has 'callback' => ( traits => ['Code'], is => 'ro', isa => 'CodeRef', default => sub { sub { 'called' } }, handles => { call => 'execute', } ); See L<MouseX::NativeTraits::CodeRef>. =head2 Bool Common methods for boolean values. has 'is_lit' => ( traits => ['Bool'], is => 'rw', isa => 'Bool', default => 0, handles => { illuminate => 'set', darken => 'unset', flip_switch => 'toggle', is_dark => 'not', } ); See L<MouseX::NativeTraits::Bool>. =head2 String Common methods for string operations. has text => ( traits => ['String'], is => 'rw', isa => 'Str', default => q{}, handles => { add_text => 'append', replace_text => 'replace', # or replace_globally } ); See L<MouseX::NativeTraits::Str>. =head2 Number Common numerical operations. has value => ( traits => ['Number'], is => 'ro', isa => 'Int', default => 5, handles => { set => 'set', add => 'add', sub => 'sub', mul => 'mul', div => 'div', mod => 'mod', abs => 'abs', } ); See L<MouseX::NativeTraits::Num>. =head2 Counter Methods for incrementing and decrementing a counter attribute. has counter => ( traits => ['Counter'], is => 'ro', isa => 'Num', default => 0, handles => { inc_counter => 'inc', dec_counter => 'dec', reset_counter => 'reset', } ); See L<MouseX::NativeTraits::Counter>. =head1 DEPENDENCIES Perl 5.6.2 or later. =head1 BUGS All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. =head1 SEE ALSO L<Mouse> L<MouseX::AttributeHelpers> L<Moose> L<Moose::Meta::Attribute::Native> L<MooseX::AttributeHelpers> =head1 AUTHORS Goro Fuji (gfx) E<lt>gfuji(at)cpan.orgE<gt> This module is based on Moose native traits written by Stevan Little and others. =head1 LICENSE AND COPYRIGHT Copyright (c) 2010, Goro Fuji (gfx), mostly based on Moose, which is (c) Infinity Interactive, Inc (L<http://www.iinteractive.com>). This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L<perlartistic> for details. =cut
gfx/p5-MouseX-NativeTraits
a58a71aead49bbd1305df5f1b3108b7a85882d1c
Checking in changes prior to tagging of version 1.07.
diff --git a/Changes b/Changes index ba44e52..9fe3a92 100644 --- a/Changes +++ b/Changes @@ -1,37 +1,41 @@ Revision history for Perl extension MouseX::NativeTraits +1.07 2011-12-04 16:11:32 + - Resolve RT #69039 - Hash trait: Tied hashes become "untied" + when using setter + 1.06 2011-12-04 15:23:07 - Apply a patch in RT #72900 - Spelling gritch (gregor herrmann) 1.05 2011-11-28 13:09:51 - Resolve RT #72549 - Counter is slower than doing it by hand 1.04 2010-11-08 14:06:41 - Workaround test problms, again 1.03 2010-11-07 17:07:09 - Workaround test problems 1.02 2010-11-06 19:36:15 - Fix testing issue on Windows/nmake 1.01 2010-11-05 20:27:52 - This is a major update - Requires Mouse 0.82 for type constraint robusity - Follow Moose 1.19 except for smart coercions 1.00 Mon Sep 27 15:01:21 2010 - No functional changes - Follow Mouse 0.74, which is more compatible with Moose 0.002 Mon Mar 15 15:56:36 2010 - First non-dev release 0.001_02 Mon Feb 22 17:42:50 2010 - Improve docs 0.001_01 Sat Feb 20 15:49:59 2010 - first dev release 0.001 Fri Feb 19 10:45:19 2010 - original version; created by Module::Setup diff --git a/lib/Mouse/Meta/Attribute/Native.pm b/lib/Mouse/Meta/Attribute/Native.pm index 2a20fdc..0e2d27b 100644 --- a/lib/Mouse/Meta/Attribute/Native.pm +++ b/lib/Mouse/Meta/Attribute/Native.pm @@ -1,31 +1,31 @@ package Mouse::Meta::Attribute::Native; use strict; -our $VERSION = '1.06'; +our $VERSION = '1.07'; 1; __END__ =head1 NAME Mouse::Meta::Attribute::Native - Extend your attribute interfaces =head1 SYNOPSIS # In your Makefile.PL # you can say: requires 'Mouse::Meta::Attribute::Native'; # just like as 'Moose::Meta::Attribute::Native' =head1 DESCRIPTION This module is just a hook to set C<Mouse::Meta::Attribute::Native> to prerequisites. =head1 SEE ALSO L<MouseX::NativeTraits> L<Moose::Meta::Attribute::Native> =cut diff --git a/lib/MouseX/NativeTraits.pm b/lib/MouseX/NativeTraits.pm index ffabe40..1ee4b69 100644 --- a/lib/MouseX/NativeTraits.pm +++ b/lib/MouseX/NativeTraits.pm @@ -1,295 +1,295 @@ package MouseX::NativeTraits; use 5.006_002; use Mouse::Role; -our $VERSION = '1.06'; +our $VERSION = '1.07'; requires qw(method_provider_class helper_type); #has default => ( # is => 'bare', # don't create new methods # required => 1, #); has type_constraint => ( is => 'bare', # don't create new methods required => 1, ); has method_provider => ( is => 'ro', isa => 'Object', builder => '_build_method_provider', ); sub _build_method_provider{ my($self) = @_; my $mpc = $self->method_provider_class; Mouse::Util::load_class($mpc); return $mpc->new(attr => $self); } before _process_options => sub { my ( $self, $name, $options ) = @_; my $type = $self->helper_type; $options->{isa} = $type if !exists $options->{isa}; my $isa = Mouse::Util::TypeConstraints::find_or_create_isa_type_constraint( $options->{isa} ); ( $isa->is_a_type_of($type) ) || $self->throw_error( "The type constraint for $name must be a subtype of $type but it's a $isa"); $options->{default} = $self->_default_default if !exists $options->{default} && $self->can('_default_default'); }; around _canonicalize_handles => sub { my($next, $self) = @_; my $handles_ref = $self->handles; if( ref($handles_ref) ne 'HASH' ) { $self->throw_error( "The 'handles' option must be a HASH reference, not $handles_ref"); } my $provider = $self->method_provider; my %handles; while(my($name, $to) = each %{$handles_ref}){ $to = [$to] if !ref $to; $provider->has_generator($to->[0]) or $self->throw_error("$to->[0] is an unsupported method type"); $handles{$name} = $to; } return %handles; }; around _make_delegation_method => sub { my( $next, $self, $handle_name, $method_to_call) = @_; return $self->method_provider->generate($handle_name, $method_to_call); }; no Mouse::Role; 1; __END__ =head1 NAME MouseX::NativeTraits - Extend your attribute interfaces for Mouse =head1 VERSION -This document describes MouseX::NativeTraits version 1.06. +This document describes MouseX::NativeTraits version 1.07. =head1 SYNOPSIS package MyClass; use Mouse; has mapping => ( traits => ['Hash'], is => 'rw', isa => 'HashRef[Str]', default => sub { +{} }, handles => { exists_in_mapping => 'exists', ids_in_mapping => 'keys', get_mapping => 'get', set_mapping => 'set', set_quantity => [ set => 'quantity' ], }, ); =head1 DESCRIPTION While L<Mouse> attributes provide a way to name your accessors, readers, writers, clearers and predicates, MouseX::NativeTraits provides commonly used attribute helper methods for more specific types of data. As seen in the L</SYNOPSIS>, you specify the data structure via the C<traits> parameter. These traits will be loaded automatically, so you need not load MouseX::NativeTraits explicitly. This extension is compatible with Moose native traits, although it is not a part of Mouse core. =head1 PARAMETERS =head2 handles This is like C<handles> in L<Mouse/has>, but only HASH references are allowed. Keys are method names that you want installed locally, and values are methods from the method providers (below). Currying with delegated methods works normally for C<< handles >>. =head1 NATIVE TRAITS =head2 Array Common methods for array references. has 'queue' => ( traits => ['Array'], is => 'ro', isa => 'ArrayRef[Str]', default => sub { [] }, handles => { add_item => 'push', next_item => 'shift', } ); See L<MouseX::NativeTraits::ArrayRef>. =head2 Hash Common methods for hash references. has 'options' => ( traits => ['Hash'], is => 'ro', isa => 'HashRef[Str]', default => sub { {} }, handles => { set_option => 'set', get_option => 'get', has_option => 'exists', } ); See L<MouseX::NativeTraits::HashRef>. =head2 Code Common methods for code references. has 'callback' => ( traits => ['Code'], is => 'ro', isa => 'CodeRef', default => sub { sub { 'called' } }, handles => { call => 'execute', } ); See L<MouseX::NativeTraits::CodeRef>. =head2 Bool Common methods for boolean values. has 'is_lit' => ( traits => ['Bool'], is => 'rw', isa => 'Bool', default => 0, handles => { illuminate => 'set', darken => 'unset', flip_switch => 'toggle', is_dark => 'not', } ); See L<MouseX::NativeTraits::Bool>. =head2 String Common methods for string operations. has text => ( traits => ['String'], is => 'rw', isa => 'Str', default => q{}, handles => { add_text => 'append', replace_text => 'replace', # or replace_globally } ); See L<MouseX::NativeTraits::Str>. =head2 Number Common numerical operations. has value => ( traits => ['Number'], is => 'ro', isa => 'Int', default => 5, handles => { set => 'set', add => 'add', sub => 'sub', mul => 'mul', div => 'div', mod => 'mod', abs => 'abs', } ); See L<MouseX::NativeTraits::Num>. =head2 Counter Methods for incrementing and decrementing a counter attribute. has counter => ( traits => ['Counter'], is => 'ro', isa => 'Num', default => 0, handles => { inc_counter => 'inc', dec_counter => 'dec', reset_counter => 'reset', } ); See L<MouseX::NativeTraits::Counter>. =head1 DEPENDENCIES Perl 5.6.2 or later. =head1 BUGS All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. =head1 SEE ALSO L<Mouse> L<MouseX::AttributeHelpers> L<Moose> L<Moose::Meta::Attribute::Native> L<MooseX::AttributeHelpers> =head1 AUTHORS Goro Fuji (gfx) E<lt>gfuji(at)cpan.orgE<gt> This module is based on Moose native traits written by Stevan Little and others. =head1 LICENSE AND COPYRIGHT Copyright (c) 2010, Goro Fuji (gfx), mostly based on Moose, which is (c) Infinity Interactive, Inc (L<http://www.iinteractive.com>). This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L<perlartistic> for details. =cut
gfx/p5-MouseX-NativeTraits
b1684c25fda854ddc692ac66fb5152647b9b45f1
Resolve RT #69039 (untied after HashRef#set)
diff --git a/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm b/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm index 1d8ff63..1f6e997 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm @@ -1,377 +1,391 @@ package MouseX::NativeTraits::MethodProvider::HashRef; use Mouse; extends qw(MouseX::NativeTraits::MethodProvider); sub generate_keys { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('keys', 1, 1, scalar @_); } return keys %{ $reader->( $_[0] ) }; }; } sub generate_sorted_keys { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('sorted_keys', 1, 1, scalar @_); } return sort keys %{ $reader->( $_[0] ) }; }; } sub generate_values { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('values', 1, 1, scalar @_); } return values %{ $reader->( $_[0] ) }; }; } sub generate_kv { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('kv', 1, 1, scalar @_); } my $hash_ref = $reader->( $_[0] ); return map { [ $_ => $hash_ref->{$_} ] } keys %{ $hash_ref }; }; } sub generate_elements { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('elements', 1, 1, scalar @_); } return %{ $reader->( $_[0] ) }; }; } sub generate_count { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('count', 1, 1, scalar @_); } return scalar keys %{ $reader->( $_[0] ) }; }; } sub generate_is_empty { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('is_empty', 1, 1, scalar @_); } return scalar(keys %{ $reader->( $_[0] ) }) == 0; }; } sub generate_exists { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $key) = @_; if(@_ != 2) { $self->argument_error('exists', 2, 2, scalar @_); } defined($key) or $self->meta->throw_error( "Hash keys passed to exists must be defined" ); return exists $reader->( $instance )->{ $key }; } } sub generate_defined { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $key) = @_; if(@_ != 2) { $self->argument_error('defined', 2, 2, scalar @_); } defined($key) or $self->meta->throw_error( "Hash keys passed to defined must be defined" ); return defined $reader->( $instance )->{ $key }; } } __PACKAGE__->meta->add_method(generate_get => \&generate_fetch); sub generate_fetch { my($self) = @_; my $reader = $self->reader; return sub { if(@_ < 2) { $self->argument_error('get', 2, undef, scalar @_); } my $instance = shift; foreach my $key(@_) { defined($key) or $self->meta->throw_error( "Hash keys passed to get must be defined" ); } if ( @_ == 1 ) { return $reader->( $instance )->{ $_[0] }; } else { return @{ $reader->($instance) }{@_}; } }; } __PACKAGE__->meta->add_method(generate_set => \&generate_store); sub generate_store { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; + my $constraint = $self->attr->type_constraint; + my $trigger = $self->attr->trigger; + return sub { my ( $instance, @kv ) = @_; if(@_ < 2) { $self->argument_error('set', 2, undef, scalar @_); } - my %new_value = %{ $reader->($instance) }; # copy + my $hash_ref = $reader->($instance); + my %new_value = %{ $hash_ref }; # make a working copy my @ret_value; while (my ($key, $value) = splice @kv, 0, 2 ) { defined($key) or $self->meta->throw_error( "Hash keys passed to set must be defined" ); push @ret_value, $new_value{$key} = $value; # change } - $writer->( $instance, \%new_value ); # commit + $constraint->assert_valid(\%new_value) if defined $constraint; + + %{ $hash_ref } = %new_value; # commit + $trigger->($instance) if defined $trigger; + return wantarray ? @ret_value : $ret_value[-1]; }; } sub generate_accessor { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; + my $constraint = $self->attr->type_constraint; + my $trigger = $self->attr->trigger; + return sub { my($instance, $key, $value) = @_;; if ( @_ == 2 ) { # reader defined($key) or $self->meta->throw_error( "Hash keys passed to accessor must be defined" ); return $reader->($instance)->{ $key }; } elsif ( @_ == 3 ) { # writer - defined($key) - or $self->meta->throw_error( + defined($key) or $self->meta->throw_error( "Hash keys passed to accessor must be defined" ); - my %new_value = %{ $reader->($instance) }; + + my $hash_ref = $reader->($instance); + my %new_value = %{ $hash_ref }; $new_value{$key} = $value; - $writer->($instance, \%new_value); # commit + $constraint->assert_valid(\%new_value) if defined $constraint; + %{ $hash_ref } = %new_value; + $trigger->($instance) if defined $trigger; } else { $self->argument_error('accessor', 2, 3, scalar @_); } }; } sub generate_clear { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('clear', 1, 1, scalar @_); } %{ $reader->( $_[0] ) } = (); }; } sub generate_delete { my($self) = @_; my $reader = $self->reader; my $trigger = $self->attr->trigger; return sub { if(@_ < 2) { $self->argument_error('delete', 2, undef, scalar @_); } my $instance = shift; my @r = delete @{ $reader->($instance) }{@_}; - defined($trigger) and $trigger->($instance); + $trigger->($instance) if defined $trigger; return wantarray ? @r : $r[-1]; }; } sub generate_for_each_key { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $block) = @_; if(@_ != 2) { $self->argument_error('for_each_key', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::CodeRef($block) or $instance->meta->throw_error( "The argument passed to for_each_key must be a code reference"); foreach (keys %{$reader->($instance)}) { # intentional use of $_ $block->($_); } return $instance; }; } sub generate_for_each_value { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $block) = @_; if(@_ != 2) { $self->argument_error('for_each_value', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::CodeRef($block) or $instance->meta->throw_error( "The argument passed to for_each_value must be a code reference"); foreach (values %{$reader->($instance)}) { # intentional use of $_ $block->($_); } return $instance; }; } sub generate_for_each_pair { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $block) = @_; if(@_ != 2) { $self->argument_error('for_each_pair', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::CodeRef($block) or $instance->meta->throw_error( "The argument passed to for_each_pair must be a code reference"); my $hash_ref = $reader->($instance); foreach my $key(keys %{$hash_ref}){ $block->($key, $hash_ref->{$key}); } return $instance; }; } no Mouse; __PACKAGE__->meta->make_immutable(); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::HashRef - Provides methods for HashRef =head1 DESCRIPTION This class provides method generators for the C<Hash> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Hash> for details. =head1 METHOD GENERATORS =over 4 =item generate_keys =item generate_sorted_keys =item generate_values =item generate_kv =item generate_elements =item generate_count =item generate_is_empty =item generate_exists =item generate_defined =item generate_fetch =item generate_get The same as C<generate_fetch>. =item generate_store =item generate_set The same as C<generate_store>. =item generate_accessor =item generate_clear =item generate_delete =item generate_for_each_key =item generate_for_each_value =item generate_for_each_pair =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/t/05_remain_tied.t b/t/05_remain_tied.t new file mode 100644 index 0000000..10d3a08 --- /dev/null +++ b/t/05_remain_tied.t @@ -0,0 +1,36 @@ +#!perl -w +# https://rt.cpan.org/Ticket/Display.html?id=69039 + +package HashTest; + +use Mouse; +use Tie::Hash; +use Test::More; + +my @triggered; +has values => ( + is => 'ro', + isa => 'HashRef', + traits => ['Hash'], + default => sub { tie my %e, 'Tie::StdHash'; \%e }, + handles => { + set_value => 'set', + }, + trigger => sub { + my($self) = @_; + push @triggered, $self; + }, +); + +my $test = __PACKAGE__->new; + +isa_ok tied(%{$test->values}), 'Tie::StdHash', 'HashRef is still tied after set directly'; + +$test->set_value('b' => 'b'); + +isa_ok tied(%{$test->values}), 'Tie::StdHash', 'HashRef is still tied after set via NativeTraits'; + +is_deeply \@triggered, [$test]; + +done_testing; +
gfx/p5-MouseX-NativeTraits
1bc0d6c4d1cfdf74e5cf4b32d8a5eb648ccc28db
Checking in changes prior to tagging of version 1.06.
diff --git a/Changes b/Changes index 1599911..ba44e52 100644 --- a/Changes +++ b/Changes @@ -1,34 +1,37 @@ Revision history for Perl extension MouseX::NativeTraits +1.06 2011-12-04 15:23:07 + - Apply a patch in RT #72900 - Spelling gritch (gregor herrmann) + 1.05 2011-11-28 13:09:51 - Resolve RT #72549 - Counter is slower than doing it by hand 1.04 2010-11-08 14:06:41 - Workaround test problms, again 1.03 2010-11-07 17:07:09 - Workaround test problems 1.02 2010-11-06 19:36:15 - Fix testing issue on Windows/nmake 1.01 2010-11-05 20:27:52 - This is a major update - Requires Mouse 0.82 for type constraint robusity - Follow Moose 1.19 except for smart coercions 1.00 Mon Sep 27 15:01:21 2010 - No functional changes - Follow Mouse 0.74, which is more compatible with Moose 0.002 Mon Mar 15 15:56:36 2010 - First non-dev release 0.001_02 Mon Feb 22 17:42:50 2010 - Improve docs 0.001_01 Sat Feb 20 15:49:59 2010 - first dev release 0.001 Fri Feb 19 10:45:19 2010 - original version; created by Module::Setup diff --git a/lib/Mouse/Meta/Attribute/Native.pm b/lib/Mouse/Meta/Attribute/Native.pm index 6842c73..2a20fdc 100644 --- a/lib/Mouse/Meta/Attribute/Native.pm +++ b/lib/Mouse/Meta/Attribute/Native.pm @@ -1,31 +1,31 @@ package Mouse::Meta::Attribute::Native; use strict; -our $VERSION = '1.05'; +our $VERSION = '1.06'; 1; __END__ =head1 NAME Mouse::Meta::Attribute::Native - Extend your attribute interfaces =head1 SYNOPSIS # In your Makefile.PL # you can say: requires 'Mouse::Meta::Attribute::Native'; # just like as 'Moose::Meta::Attribute::Native' =head1 DESCRIPTION This module is just a hook to set C<Mouse::Meta::Attribute::Native> to prerequisites. =head1 SEE ALSO L<MouseX::NativeTraits> L<Moose::Meta::Attribute::Native> =cut diff --git a/lib/MouseX/NativeTraits.pm b/lib/MouseX/NativeTraits.pm index bf390bc..ffabe40 100644 --- a/lib/MouseX/NativeTraits.pm +++ b/lib/MouseX/NativeTraits.pm @@ -1,295 +1,295 @@ package MouseX::NativeTraits; use 5.006_002; use Mouse::Role; -our $VERSION = '1.05'; +our $VERSION = '1.06'; requires qw(method_provider_class helper_type); #has default => ( # is => 'bare', # don't create new methods # required => 1, #); has type_constraint => ( is => 'bare', # don't create new methods required => 1, ); has method_provider => ( is => 'ro', isa => 'Object', builder => '_build_method_provider', ); sub _build_method_provider{ my($self) = @_; my $mpc = $self->method_provider_class; Mouse::Util::load_class($mpc); return $mpc->new(attr => $self); } before _process_options => sub { my ( $self, $name, $options ) = @_; my $type = $self->helper_type; $options->{isa} = $type if !exists $options->{isa}; my $isa = Mouse::Util::TypeConstraints::find_or_create_isa_type_constraint( $options->{isa} ); ( $isa->is_a_type_of($type) ) || $self->throw_error( "The type constraint for $name must be a subtype of $type but it's a $isa"); $options->{default} = $self->_default_default if !exists $options->{default} && $self->can('_default_default'); }; around _canonicalize_handles => sub { my($next, $self) = @_; my $handles_ref = $self->handles; if( ref($handles_ref) ne 'HASH' ) { $self->throw_error( "The 'handles' option must be a HASH reference, not $handles_ref"); } my $provider = $self->method_provider; my %handles; while(my($name, $to) = each %{$handles_ref}){ $to = [$to] if !ref $to; $provider->has_generator($to->[0]) or $self->throw_error("$to->[0] is an unsupported method type"); $handles{$name} = $to; } return %handles; }; around _make_delegation_method => sub { my( $next, $self, $handle_name, $method_to_call) = @_; return $self->method_provider->generate($handle_name, $method_to_call); }; no Mouse::Role; 1; __END__ =head1 NAME MouseX::NativeTraits - Extend your attribute interfaces for Mouse =head1 VERSION -This document describes MouseX::NativeTraits version 1.05. +This document describes MouseX::NativeTraits version 1.06. =head1 SYNOPSIS package MyClass; use Mouse; has mapping => ( traits => ['Hash'], is => 'rw', isa => 'HashRef[Str]', default => sub { +{} }, handles => { exists_in_mapping => 'exists', ids_in_mapping => 'keys', get_mapping => 'get', set_mapping => 'set', set_quantity => [ set => 'quantity' ], }, ); =head1 DESCRIPTION While L<Mouse> attributes provide a way to name your accessors, readers, writers, clearers and predicates, MouseX::NativeTraits provides commonly used attribute helper methods for more specific types of data. As seen in the L</SYNOPSIS>, you specify the data structure via the C<traits> parameter. These traits will be loaded automatically, so you need not load MouseX::NativeTraits explicitly. This extension is compatible with Moose native traits, although it is not a part of Mouse core. =head1 PARAMETERS =head2 handles This is like C<handles> in L<Mouse/has>, but only HASH references are allowed. Keys are method names that you want installed locally, and values are methods from the method providers (below). Currying with delegated methods works normally for C<< handles >>. =head1 NATIVE TRAITS =head2 Array Common methods for array references. has 'queue' => ( traits => ['Array'], is => 'ro', isa => 'ArrayRef[Str]', default => sub { [] }, handles => { add_item => 'push', next_item => 'shift', } ); See L<MouseX::NativeTraits::ArrayRef>. =head2 Hash Common methods for hash references. has 'options' => ( traits => ['Hash'], is => 'ro', isa => 'HashRef[Str]', default => sub { {} }, handles => { set_option => 'set', get_option => 'get', has_option => 'exists', } ); See L<MouseX::NativeTraits::HashRef>. =head2 Code Common methods for code references. has 'callback' => ( traits => ['Code'], is => 'ro', isa => 'CodeRef', default => sub { sub { 'called' } }, handles => { call => 'execute', } ); See L<MouseX::NativeTraits::CodeRef>. =head2 Bool Common methods for boolean values. has 'is_lit' => ( traits => ['Bool'], is => 'rw', isa => 'Bool', default => 0, handles => { illuminate => 'set', darken => 'unset', flip_switch => 'toggle', is_dark => 'not', } ); See L<MouseX::NativeTraits::Bool>. =head2 String Common methods for string operations. has text => ( traits => ['String'], is => 'rw', isa => 'Str', default => q{}, handles => { add_text => 'append', replace_text => 'replace', # or replace_globally } ); See L<MouseX::NativeTraits::Str>. =head2 Number Common numerical operations. has value => ( traits => ['Number'], is => 'ro', isa => 'Int', default => 5, handles => { set => 'set', add => 'add', sub => 'sub', mul => 'mul', div => 'div', mod => 'mod', abs => 'abs', } ); See L<MouseX::NativeTraits::Num>. =head2 Counter Methods for incrementing and decrementing a counter attribute. has counter => ( traits => ['Counter'], is => 'ro', isa => 'Num', default => 0, handles => { inc_counter => 'inc', dec_counter => 'dec', reset_counter => 'reset', } ); See L<MouseX::NativeTraits::Counter>. =head1 DEPENDENCIES Perl 5.6.2 or later. =head1 BUGS All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. =head1 SEE ALSO L<Mouse> L<MouseX::AttributeHelpers> L<Moose> L<Moose::Meta::Attribute::Native> L<MooseX::AttributeHelpers> =head1 AUTHORS Goro Fuji (gfx) E<lt>gfuji(at)cpan.orgE<gt> This module is based on Moose native traits written by Stevan Little and others. =head1 LICENSE AND COPYRIGHT Copyright (c) 2010, Goro Fuji (gfx), mostly based on Moose, which is (c) Infinity Interactive, Inc (L<http://www.iinteractive.com>). This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L<perlartistic> for details. =cut
gfx/p5-MouseX-NativeTraits
9f8e8f1aeb08a6c9c8bf7fcabf58d91b4ad29087
Apply RT #72900: Spelling gritch
diff --git a/lib/MouseX/NativeTraits.pm b/lib/MouseX/NativeTraits.pm index f8d7d67..bf390bc 100644 --- a/lib/MouseX/NativeTraits.pm +++ b/lib/MouseX/NativeTraits.pm @@ -1,295 +1,295 @@ package MouseX::NativeTraits; use 5.006_002; use Mouse::Role; our $VERSION = '1.05'; requires qw(method_provider_class helper_type); #has default => ( # is => 'bare', # don't create new methods # required => 1, #); has type_constraint => ( is => 'bare', # don't create new methods required => 1, ); has method_provider => ( is => 'ro', isa => 'Object', builder => '_build_method_provider', ); sub _build_method_provider{ my($self) = @_; my $mpc = $self->method_provider_class; Mouse::Util::load_class($mpc); return $mpc->new(attr => $self); } before _process_options => sub { my ( $self, $name, $options ) = @_; my $type = $self->helper_type; $options->{isa} = $type if !exists $options->{isa}; my $isa = Mouse::Util::TypeConstraints::find_or_create_isa_type_constraint( $options->{isa} ); ( $isa->is_a_type_of($type) ) || $self->throw_error( "The type constraint for $name must be a subtype of $type but it's a $isa"); $options->{default} = $self->_default_default if !exists $options->{default} && $self->can('_default_default'); }; around _canonicalize_handles => sub { my($next, $self) = @_; my $handles_ref = $self->handles; if( ref($handles_ref) ne 'HASH' ) { $self->throw_error( "The 'handles' option must be a HASH reference, not $handles_ref"); } my $provider = $self->method_provider; my %handles; while(my($name, $to) = each %{$handles_ref}){ $to = [$to] if !ref $to; $provider->has_generator($to->[0]) or $self->throw_error("$to->[0] is an unsupported method type"); $handles{$name} = $to; } return %handles; }; around _make_delegation_method => sub { my( $next, $self, $handle_name, $method_to_call) = @_; return $self->method_provider->generate($handle_name, $method_to_call); }; no Mouse::Role; 1; __END__ =head1 NAME MouseX::NativeTraits - Extend your attribute interfaces for Mouse =head1 VERSION This document describes MouseX::NativeTraits version 1.05. =head1 SYNOPSIS package MyClass; use Mouse; has mapping => ( traits => ['Hash'], is => 'rw', isa => 'HashRef[Str]', default => sub { +{} }, handles => { exists_in_mapping => 'exists', ids_in_mapping => 'keys', get_mapping => 'get', set_mapping => 'set', set_quantity => [ set => 'quantity' ], }, ); =head1 DESCRIPTION While L<Mouse> attributes provide a way to name your accessors, readers, writers, clearers and predicates, MouseX::NativeTraits provides commonly used attribute helper methods for more specific types of data. As seen in the L</SYNOPSIS>, you specify the data structure via the C<traits> parameter. These traits will be loaded automatically, so you need not load MouseX::NativeTraits explicitly. -This extention is compatible with Moose native traits, although it +This extension is compatible with Moose native traits, although it is not a part of Mouse core. =head1 PARAMETERS =head2 handles This is like C<handles> in L<Mouse/has>, but only HASH references are allowed. Keys are method names that you want installed locally, and values are methods from the method providers (below). Currying with delegated methods works normally for C<< handles >>. =head1 NATIVE TRAITS =head2 Array Common methods for array references. has 'queue' => ( traits => ['Array'], is => 'ro', isa => 'ArrayRef[Str]', default => sub { [] }, handles => { add_item => 'push', next_item => 'shift', } ); See L<MouseX::NativeTraits::ArrayRef>. =head2 Hash Common methods for hash references. has 'options' => ( traits => ['Hash'], is => 'ro', isa => 'HashRef[Str]', default => sub { {} }, handles => { set_option => 'set', get_option => 'get', has_option => 'exists', } ); See L<MouseX::NativeTraits::HashRef>. =head2 Code Common methods for code references. has 'callback' => ( traits => ['Code'], is => 'ro', isa => 'CodeRef', default => sub { sub { 'called' } }, handles => { call => 'execute', } ); See L<MouseX::NativeTraits::CodeRef>. =head2 Bool Common methods for boolean values. has 'is_lit' => ( traits => ['Bool'], is => 'rw', isa => 'Bool', default => 0, handles => { illuminate => 'set', darken => 'unset', flip_switch => 'toggle', is_dark => 'not', } ); See L<MouseX::NativeTraits::Bool>. =head2 String Common methods for string operations. has text => ( traits => ['String'], is => 'rw', isa => 'Str', default => q{}, handles => { add_text => 'append', replace_text => 'replace', # or replace_globally } ); See L<MouseX::NativeTraits::Str>. =head2 Number Common numerical operations. has value => ( traits => ['Number'], is => 'ro', isa => 'Int', default => 5, handles => { set => 'set', add => 'add', sub => 'sub', mul => 'mul', div => 'div', mod => 'mod', abs => 'abs', } ); See L<MouseX::NativeTraits::Num>. =head2 Counter Methods for incrementing and decrementing a counter attribute. has counter => ( traits => ['Counter'], is => 'ro', isa => 'Num', default => 0, handles => { inc_counter => 'inc', dec_counter => 'dec', reset_counter => 'reset', } ); See L<MouseX::NativeTraits::Counter>. =head1 DEPENDENCIES Perl 5.6.2 or later. =head1 BUGS All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. =head1 SEE ALSO L<Mouse> L<MouseX::AttributeHelpers> L<Moose> L<Moose::Meta::Attribute::Native> L<MooseX::AttributeHelpers> =head1 AUTHORS Goro Fuji (gfx) E<lt>gfuji(at)cpan.orgE<gt> This module is based on Moose native traits written by Stevan Little and others. =head1 LICENSE AND COPYRIGHT Copyright (c) 2010, Goro Fuji (gfx), mostly based on Moose, which is (c) Infinity Interactive, Inc (L<http://www.iinteractive.com>). This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L<perlartistic> for details. =cut
gfx/p5-MouseX-NativeTraits
8f184f79dd973a1ef96d4bfbfcf33b7274557322
missing author_tests 'xt'
diff --git a/Makefile.PL b/Makefile.PL index 6daa9f4..7b75af9 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,32 +1,33 @@ use strict; use warnings; use inc::Module::Install; use Module::Install::TestTarget 0.12; all_from 'lib/MouseX/NativeTraits.pm'; requires 'Mouse' => 0.82; test_requires 'Any::Moose' => 0.13; test_requires 'Test::More' => 0.88; # done_testing() test_requires 'Test::Fatal' => 0.003; tests_recursive 't'; +author_tests 'xt'; auto_set_repository() if -d '.git'; default_test_target env => { ANY_MOOSE => 'Mouse' }; test_target 'test_moose' => ( env => { ANY_MOOSE => 'Moose' }, ); clean_files qw( MouseX-NativeTraits-* *.stackdump cover_db nytprof *.out ); WriteAll(check_nmake => 0); diff --git a/xt/01_podspell.t b/xt/01_podspell.t index 0f8ceef..bb3b6d9 100644 --- a/xt/01_podspell.t +++ b/xt/01_podspell.t @@ -1,35 +1,32 @@ #!perl -w use strict; use Test::More; - -eval q{ use Test::Spelling }; - -plan skip_all => q{Test::Spelling is not installed.} - if $@; +use Test::Spelling; add_stopwords(map { split /[\s\:\-]/ } <DATA>); $ENV{LANG} = 'C'; all_pod_files_spelling_ok('lib'); __DATA__ Goro Fuji (gfx) gfuji(at)cpan.org MouseX::NativeTraits +incrementing +decrementing Stevan clearers cpan -extention gfx Num Str versa uniq indices dec kv isa arity metaclass attr
gfx/p5-MouseX-NativeTraits
c3729ecc7e330cbcba06c636455d95577f8baaa1
Checking in changes prior to tagging of version 1.05.
diff --git a/Changes b/Changes index ee1348d..1599911 100644 --- a/Changes +++ b/Changes @@ -1,31 +1,34 @@ Revision history for Perl extension MouseX::NativeTraits +1.05 2011-11-28 13:09:51 + - Resolve RT #72549 - Counter is slower than doing it by hand + 1.04 2010-11-08 14:06:41 - Workaround test problms, again 1.03 2010-11-07 17:07:09 - Workaround test problems 1.02 2010-11-06 19:36:15 - Fix testing issue on Windows/nmake 1.01 2010-11-05 20:27:52 - This is a major update - Requires Mouse 0.82 for type constraint robusity - Follow Moose 1.19 except for smart coercions 1.00 Mon Sep 27 15:01:21 2010 - No functional changes - Follow Mouse 0.74, which is more compatible with Moose 0.002 Mon Mar 15 15:56:36 2010 - First non-dev release 0.001_02 Mon Feb 22 17:42:50 2010 - Improve docs 0.001_01 Sat Feb 20 15:49:59 2010 - first dev release 0.001 Fri Feb 19 10:45:19 2010 - original version; created by Module::Setup diff --git a/lib/Mouse/Meta/Attribute/Native.pm b/lib/Mouse/Meta/Attribute/Native.pm index f0e747f..6842c73 100644 --- a/lib/Mouse/Meta/Attribute/Native.pm +++ b/lib/Mouse/Meta/Attribute/Native.pm @@ -1,31 +1,31 @@ package Mouse::Meta::Attribute::Native; use strict; -our $VERSION = '1.04'; +our $VERSION = '1.05'; 1; __END__ =head1 NAME Mouse::Meta::Attribute::Native - Extend your attribute interfaces =head1 SYNOPSIS # In your Makefile.PL # you can say: requires 'Mouse::Meta::Attribute::Native'; # just like as 'Moose::Meta::Attribute::Native' =head1 DESCRIPTION This module is just a hook to set C<Mouse::Meta::Attribute::Native> to prerequisites. =head1 SEE ALSO L<MouseX::NativeTraits> L<Moose::Meta::Attribute::Native> =cut diff --git a/lib/MouseX/NativeTraits.pm b/lib/MouseX/NativeTraits.pm index e2694e0..f8d7d67 100644 --- a/lib/MouseX/NativeTraits.pm +++ b/lib/MouseX/NativeTraits.pm @@ -1,295 +1,295 @@ package MouseX::NativeTraits; use 5.006_002; use Mouse::Role; -our $VERSION = '1.04'; +our $VERSION = '1.05'; requires qw(method_provider_class helper_type); #has default => ( # is => 'bare', # don't create new methods # required => 1, #); has type_constraint => ( is => 'bare', # don't create new methods required => 1, ); has method_provider => ( is => 'ro', isa => 'Object', builder => '_build_method_provider', ); sub _build_method_provider{ my($self) = @_; my $mpc = $self->method_provider_class; Mouse::Util::load_class($mpc); return $mpc->new(attr => $self); } before _process_options => sub { my ( $self, $name, $options ) = @_; my $type = $self->helper_type; $options->{isa} = $type if !exists $options->{isa}; my $isa = Mouse::Util::TypeConstraints::find_or_create_isa_type_constraint( $options->{isa} ); ( $isa->is_a_type_of($type) ) || $self->throw_error( "The type constraint for $name must be a subtype of $type but it's a $isa"); $options->{default} = $self->_default_default if !exists $options->{default} && $self->can('_default_default'); }; around _canonicalize_handles => sub { my($next, $self) = @_; my $handles_ref = $self->handles; if( ref($handles_ref) ne 'HASH' ) { $self->throw_error( "The 'handles' option must be a HASH reference, not $handles_ref"); } my $provider = $self->method_provider; my %handles; while(my($name, $to) = each %{$handles_ref}){ $to = [$to] if !ref $to; $provider->has_generator($to->[0]) or $self->throw_error("$to->[0] is an unsupported method type"); $handles{$name} = $to; } return %handles; }; around _make_delegation_method => sub { my( $next, $self, $handle_name, $method_to_call) = @_; return $self->method_provider->generate($handle_name, $method_to_call); }; no Mouse::Role; 1; __END__ =head1 NAME MouseX::NativeTraits - Extend your attribute interfaces for Mouse =head1 VERSION -This document describes MouseX::NativeTraits version 1.04. +This document describes MouseX::NativeTraits version 1.05. =head1 SYNOPSIS package MyClass; use Mouse; has mapping => ( traits => ['Hash'], is => 'rw', isa => 'HashRef[Str]', default => sub { +{} }, handles => { exists_in_mapping => 'exists', ids_in_mapping => 'keys', get_mapping => 'get', set_mapping => 'set', set_quantity => [ set => 'quantity' ], }, ); =head1 DESCRIPTION While L<Mouse> attributes provide a way to name your accessors, readers, writers, clearers and predicates, MouseX::NativeTraits provides commonly used attribute helper methods for more specific types of data. As seen in the L</SYNOPSIS>, you specify the data structure via the C<traits> parameter. These traits will be loaded automatically, so you need not load MouseX::NativeTraits explicitly. This extention is compatible with Moose native traits, although it is not a part of Mouse core. =head1 PARAMETERS =head2 handles This is like C<handles> in L<Mouse/has>, but only HASH references are allowed. Keys are method names that you want installed locally, and values are methods from the method providers (below). Currying with delegated methods works normally for C<< handles >>. =head1 NATIVE TRAITS =head2 Array Common methods for array references. has 'queue' => ( traits => ['Array'], is => 'ro', isa => 'ArrayRef[Str]', default => sub { [] }, handles => { add_item => 'push', next_item => 'shift', } ); See L<MouseX::NativeTraits::ArrayRef>. =head2 Hash Common methods for hash references. has 'options' => ( traits => ['Hash'], is => 'ro', isa => 'HashRef[Str]', default => sub { {} }, handles => { set_option => 'set', get_option => 'get', has_option => 'exists', } ); See L<MouseX::NativeTraits::HashRef>. =head2 Code Common methods for code references. has 'callback' => ( traits => ['Code'], is => 'ro', isa => 'CodeRef', default => sub { sub { 'called' } }, handles => { call => 'execute', } ); See L<MouseX::NativeTraits::CodeRef>. =head2 Bool Common methods for boolean values. has 'is_lit' => ( traits => ['Bool'], is => 'rw', isa => 'Bool', default => 0, handles => { illuminate => 'set', darken => 'unset', flip_switch => 'toggle', is_dark => 'not', } ); See L<MouseX::NativeTraits::Bool>. =head2 String Common methods for string operations. has text => ( traits => ['String'], is => 'rw', isa => 'Str', default => q{}, handles => { add_text => 'append', replace_text => 'replace', # or replace_globally } ); See L<MouseX::NativeTraits::Str>. =head2 Number Common numerical operations. has value => ( traits => ['Number'], is => 'ro', isa => 'Int', default => 5, handles => { set => 'set', add => 'add', sub => 'sub', mul => 'mul', div => 'div', mod => 'mod', abs => 'abs', } ); See L<MouseX::NativeTraits::Num>. =head2 Counter Methods for incrementing and decrementing a counter attribute. has counter => ( traits => ['Counter'], is => 'ro', isa => 'Num', default => 0, handles => { inc_counter => 'inc', dec_counter => 'dec', reset_counter => 'reset', } ); See L<MouseX::NativeTraits::Counter>. =head1 DEPENDENCIES Perl 5.6.2 or later. =head1 BUGS All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. =head1 SEE ALSO L<Mouse> L<MouseX::AttributeHelpers> L<Moose> L<Moose::Meta::Attribute::Native> L<MooseX::AttributeHelpers> =head1 AUTHORS Goro Fuji (gfx) E<lt>gfuji(at)cpan.orgE<gt> This module is based on Moose native traits written by Stevan Little and others. =head1 LICENSE AND COPYRIGHT Copyright (c) 2010, Goro Fuji (gfx), mostly based on Moose, which is (c) Infinity Interactive, Inc (L<http://www.iinteractive.com>). This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L<perlartistic> for details. =cut
gfx/p5-MouseX-NativeTraits
e4d7a82354a4804e12873ed6c6af90bb0b181219
Ignore *~
diff --git a/.gitignore b/.gitignore index 5c28350..518f4e5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,23 +1,24 @@ MouseX-NativeTraits-* .* +*~ !.gitignore !.shipit *.o *.obj *.bs *.def Makefile* !Makefile.PL *blib META.* MYMETA.* inc/ MANIFEST *.out *.bak ppport.h nytprof* cover_db* *.gcda *.gno *.gcov
gfx/p5-MouseX-NativeTraits
903fd9e1e47aa004b0ba3d18a53707a952e2c472
Optimize inc for Counter (RT #72549)
diff --git a/lib/MouseX/NativeTraits/MethodProvider/Counter.pm b/lib/MouseX/NativeTraits/MethodProvider/Counter.pm index 2fd10cf..a75416d 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/Counter.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/Counter.pm @@ -1,130 +1,138 @@ package MouseX::NativeTraits::MethodProvider::Counter; use Mouse; extends qw(MouseX::NativeTraits::MethodProvider); sub generate_reset { my($self) = @_; my $attr = $self->attr; my $writer = $self->writer; my $builder; my $default; if($attr->has_builder){ $builder = $attr->builder; } else { $default = $attr->default; if(ref $default){ $builder = $default; } } if(ref $builder){ return sub { my($instance) = @_; if(@_ != 1) { $self->argument_error('reset', 1, 1, scalar @_); } $writer->($instance, $instance->$builder()); }; } else{ return sub { my($instance) = @_; if(@_ != 1) { $self->argument_error('reset', 1, 1, scalar @_); } $writer->($instance, $default); }; } } sub generate_set{ my($self) = @_; my $writer = $self->writer; return sub { if(@_ != 2) { $self->argument_error('set', 2, 2, scalar @_); } $writer->( $_[0], $_[1] ) }; } sub generate_inc { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; my $constraint = $self->attr->type_constraint; + my $name = $self->attr->name; + my $optimized_inc = ( $constraint->name eq 'Int' + && !$self->attr->trigger ); return sub { my($instance, $value) = @_; if(@_ == 1){ - $value = 1; + if($optimized_inc) { + return ++$instance->{$name}; + } + else { + $value = 1; + } } elsif(@_ == 2){ $constraint->assert_valid($value); } else { $self->argument_error('inc', 1, 2, scalar @_); } - $writer->($instance, $reader->($instance) + $value); + $instance->$writer($instance->$reader() + $value); }; } sub generate_dec { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; my $constraint = $self->attr->type_constraint; return sub { my($instance, $value) = @_; if(@_ == 1){ $value = 1; } elsif(@_ == 2){ $constraint->assert_valid($value); } else { $self->argument_error('dec', 1, 2, scalar @_); } $writer->($instance, $reader->($instance) - $value); }; } no Mouse; __PACKAGE__->meta->make_immutable(); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::Counter - Provides methods for Counter =head1 DESCRIPTION This class provides method generators for the C<Counter> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Counter> for details. =head1 METHOD GENERATORS =over 4 =item generate_reset =item generate_set =item generate_inc =item generate_dec =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut
gfx/p5-MouseX-NativeTraits
a68ff063ff0f2834d843d5dadd1a5bac2ecade45
Checking in changes prior to tagging of version 1.04.
diff --git a/Changes b/Changes index 473fa49..ee1348d 100644 --- a/Changes +++ b/Changes @@ -1,28 +1,31 @@ Revision history for Perl extension MouseX::NativeTraits +1.04 2010-11-08 14:06:41 + - Workaround test problms, again + 1.03 2010-11-07 17:07:09 - Workaround test problems 1.02 2010-11-06 19:36:15 - Fix testing issue on Windows/nmake 1.01 2010-11-05 20:27:52 - This is a major update - Requires Mouse 0.82 for type constraint robusity - Follow Moose 1.19 except for smart coercions 1.00 Mon Sep 27 15:01:21 2010 - No functional changes - Follow Mouse 0.74, which is more compatible with Moose 0.002 Mon Mar 15 15:56:36 2010 - First non-dev release 0.001_02 Mon Feb 22 17:42:50 2010 - Improve docs 0.001_01 Sat Feb 20 15:49:59 2010 - first dev release 0.001 Fri Feb 19 10:45:19 2010 - original version; created by Module::Setup diff --git a/Makefile.PL b/Makefile.PL index 74238fd..6daa9f4 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,33 +1,32 @@ use strict; use warnings; use inc::Module::Install; use Module::Install::TestTarget 0.12; all_from 'lib/MouseX/NativeTraits.pm'; requires 'Mouse' => 0.82; test_requires 'Any::Moose' => 0.13; test_requires 'Test::More' => 0.88; # done_testing() test_requires 'Test::Fatal' => 0.003; tests_recursive 't'; auto_set_repository() if -d '.git'; default_test_target - load_modules => [qw(Test::Builder)], # workaround T::B 2.00_01 problems - env => { ANY_MOOSE => 'Mouse' }; + env => { ANY_MOOSE => 'Mouse' }; test_target 'test_moose' => ( env => { ANY_MOOSE => 'Moose' }, ); clean_files qw( MouseX-NativeTraits-* *.stackdump cover_db nytprof *.out ); WriteAll(check_nmake => 0); diff --git a/lib/Mouse/Meta/Attribute/Native.pm b/lib/Mouse/Meta/Attribute/Native.pm index c3aca25..f0e747f 100644 --- a/lib/Mouse/Meta/Attribute/Native.pm +++ b/lib/Mouse/Meta/Attribute/Native.pm @@ -1,31 +1,31 @@ package Mouse::Meta::Attribute::Native; use strict; -our $VERSION = '1.03'; +our $VERSION = '1.04'; 1; __END__ =head1 NAME Mouse::Meta::Attribute::Native - Extend your attribute interfaces =head1 SYNOPSIS # In your Makefile.PL # you can say: requires 'Mouse::Meta::Attribute::Native'; # just like as 'Moose::Meta::Attribute::Native' =head1 DESCRIPTION This module is just a hook to set C<Mouse::Meta::Attribute::Native> to prerequisites. =head1 SEE ALSO L<MouseX::NativeTraits> L<Moose::Meta::Attribute::Native> =cut diff --git a/lib/MouseX/NativeTraits.pm b/lib/MouseX/NativeTraits.pm index bcbcaa7..e2694e0 100644 --- a/lib/MouseX/NativeTraits.pm +++ b/lib/MouseX/NativeTraits.pm @@ -1,295 +1,295 @@ package MouseX::NativeTraits; use 5.006_002; use Mouse::Role; -our $VERSION = '1.03'; +our $VERSION = '1.04'; requires qw(method_provider_class helper_type); #has default => ( # is => 'bare', # don't create new methods # required => 1, #); has type_constraint => ( is => 'bare', # don't create new methods required => 1, ); has method_provider => ( is => 'ro', isa => 'Object', builder => '_build_method_provider', ); sub _build_method_provider{ my($self) = @_; my $mpc = $self->method_provider_class; Mouse::Util::load_class($mpc); return $mpc->new(attr => $self); } before _process_options => sub { my ( $self, $name, $options ) = @_; my $type = $self->helper_type; $options->{isa} = $type if !exists $options->{isa}; my $isa = Mouse::Util::TypeConstraints::find_or_create_isa_type_constraint( $options->{isa} ); ( $isa->is_a_type_of($type) ) || $self->throw_error( "The type constraint for $name must be a subtype of $type but it's a $isa"); $options->{default} = $self->_default_default if !exists $options->{default} && $self->can('_default_default'); }; around _canonicalize_handles => sub { my($next, $self) = @_; my $handles_ref = $self->handles; if( ref($handles_ref) ne 'HASH' ) { $self->throw_error( "The 'handles' option must be a HASH reference, not $handles_ref"); } my $provider = $self->method_provider; my %handles; while(my($name, $to) = each %{$handles_ref}){ $to = [$to] if !ref $to; $provider->has_generator($to->[0]) or $self->throw_error("$to->[0] is an unsupported method type"); $handles{$name} = $to; } return %handles; }; around _make_delegation_method => sub { my( $next, $self, $handle_name, $method_to_call) = @_; return $self->method_provider->generate($handle_name, $method_to_call); }; no Mouse::Role; 1; __END__ =head1 NAME MouseX::NativeTraits - Extend your attribute interfaces for Mouse =head1 VERSION -This document describes MouseX::NativeTraits version 1.03. +This document describes MouseX::NativeTraits version 1.04. =head1 SYNOPSIS package MyClass; use Mouse; has mapping => ( traits => ['Hash'], is => 'rw', isa => 'HashRef[Str]', default => sub { +{} }, handles => { exists_in_mapping => 'exists', ids_in_mapping => 'keys', get_mapping => 'get', set_mapping => 'set', set_quantity => [ set => 'quantity' ], }, ); =head1 DESCRIPTION While L<Mouse> attributes provide a way to name your accessors, readers, writers, clearers and predicates, MouseX::NativeTraits provides commonly used attribute helper methods for more specific types of data. As seen in the L</SYNOPSIS>, you specify the data structure via the C<traits> parameter. These traits will be loaded automatically, so you need not load MouseX::NativeTraits explicitly. This extention is compatible with Moose native traits, although it is not a part of Mouse core. =head1 PARAMETERS =head2 handles This is like C<handles> in L<Mouse/has>, but only HASH references are allowed. Keys are method names that you want installed locally, and values are methods from the method providers (below). Currying with delegated methods works normally for C<< handles >>. =head1 NATIVE TRAITS =head2 Array Common methods for array references. has 'queue' => ( traits => ['Array'], is => 'ro', isa => 'ArrayRef[Str]', default => sub { [] }, handles => { add_item => 'push', next_item => 'shift', } ); See L<MouseX::NativeTraits::ArrayRef>. =head2 Hash Common methods for hash references. has 'options' => ( traits => ['Hash'], is => 'ro', isa => 'HashRef[Str]', default => sub { {} }, handles => { set_option => 'set', get_option => 'get', has_option => 'exists', } ); See L<MouseX::NativeTraits::HashRef>. =head2 Code Common methods for code references. has 'callback' => ( traits => ['Code'], is => 'ro', isa => 'CodeRef', default => sub { sub { 'called' } }, handles => { call => 'execute', } ); See L<MouseX::NativeTraits::CodeRef>. =head2 Bool Common methods for boolean values. has 'is_lit' => ( traits => ['Bool'], is => 'rw', isa => 'Bool', default => 0, handles => { illuminate => 'set', darken => 'unset', flip_switch => 'toggle', is_dark => 'not', } ); See L<MouseX::NativeTraits::Bool>. =head2 String Common methods for string operations. has text => ( traits => ['String'], is => 'rw', isa => 'Str', default => q{}, handles => { add_text => 'append', replace_text => 'replace', # or replace_globally } ); See L<MouseX::NativeTraits::Str>. =head2 Number Common numerical operations. has value => ( traits => ['Number'], is => 'ro', isa => 'Int', default => 5, handles => { set => 'set', add => 'add', sub => 'sub', mul => 'mul', div => 'div', mod => 'mod', abs => 'abs', } ); See L<MouseX::NativeTraits::Num>. =head2 Counter Methods for incrementing and decrementing a counter attribute. has counter => ( traits => ['Counter'], is => 'ro', isa => 'Num', default => 0, handles => { inc_counter => 'inc', dec_counter => 'dec', reset_counter => 'reset', } ); See L<MouseX::NativeTraits::Counter>. =head1 DEPENDENCIES Perl 5.6.2 or later. =head1 BUGS All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. =head1 SEE ALSO L<Mouse> L<MouseX::AttributeHelpers> L<Moose> L<Moose::Meta::Attribute::Native> L<MooseX::AttributeHelpers> =head1 AUTHORS Goro Fuji (gfx) E<lt>gfuji(at)cpan.orgE<gt> This module is based on Moose native traits written by Stevan Little and others. =head1 LICENSE AND COPYRIGHT Copyright (c) 2010, Goro Fuji (gfx), mostly based on Moose, which is (c) Infinity Interactive, Inc (L<http://www.iinteractive.com>). This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L<perlartistic> for details. =cut diff --git a/t/00_load.t b/t/00_load.t index f4c8243..6a6819d 100644 --- a/t/00_load.t +++ b/t/00_load.t @@ -1,27 +1,26 @@ #!perl -w use strict; use Test::More; require_ok 'Mouse::Meta::Attribute::Native'; require_ok 'MouseX::NativeTraits'; require_ok 'MouseX::NativeTraits::MethodProvider'; foreach my $type(qw(ArrayRef HashRef CodeRef Str Num Bool Counter)){ my $trait = 'MouseX::NativeTraits::' . $type; require_ok $trait; require_ok $trait->method_provider_class; } +ok( Mouse::Meta::Attribute::Native->VERSION ); diag "Testing MouseX::NativeTraits/$MouseX::NativeTraits::VERSION"; diag "Dependencies:"; require Mouse; diag " Mouse/$Mouse::VERSION"; -ok( Mouse::Meta::Attribute::Native->VERSION ); - done_testing; diff --git a/t/070_native_traits/010_trait_array.t b/t/070_native_traits/010_trait_array.t index d04b306..2207b88 100644 --- a/t/070_native_traits/010_trait_array.t +++ b/t/070_native_traits/010_trait_array.t @@ -1,522 +1,522 @@ #!/usr/bin/perl use strict; use warnings; +use Test::More; +use Test::Fatal; use Any::Moose (); use Any::Moose '::Util::TypeConstraints'; #use NoInlineAttribute; -use Test::More; -use Test::Fatal; BEGIN { eval 'use Test::' . any_moose(); } { my %handles = ( count => 'count', elements => 'elements', is_empty => 'is_empty', push => 'push', push_curried => [ push => 42, 84 ], unshift => 'unshift', unshift_curried => [ unshift => 42, 84 ], pop => 'pop', shift => 'shift', get => 'get', get_curried => [ get => 1 ], set => 'set', set_curried_1 => [ set => 1 ], set_curried_2 => [ set => ( 1, 98 ) ], accessor => 'accessor', accessor_curried_1 => [ accessor => 1 ], accessor_curried_2 => [ accessor => ( 1, 90 ) ], clear => 'clear', delete => 'delete', delete_curried => [ delete => 1 ], insert => 'insert', insert_curried => [ insert => ( 1, 101 ) ], splice => 'splice', splice_curried_1 => [ splice => 1 ], splice_curried_2 => [ splice => 1, 2 ], splice_curried_all => [ splice => 1, 2, ( 3, 4, 5 ) ], sort => 'sort', sort_curried => [ sort => ( sub { $_[1] <=> $_[0] } ) ], sort_in_place => 'sort_in_place', sort_in_place_curried => [ sort_in_place => ( sub { $_[1] <=> $_[0] } ) ], map => 'map', map_curried => [ map => ( sub { $_ + 1 } ) ], grep => 'grep', grep_curried => [ grep => ( sub { $_ < 5 } ) ], first => 'first', first_curried => [ first => ( sub { $_ % 2 } ) ], join => 'join', join_curried => [ join => '-' ], shuffle => 'shuffle', uniq => 'uniq', reduce => 'reduce', reduce_curried => [ reduce => ( sub { $_[0] * $_[1] } ) ], #natatime => 'natatime', #natatime_curried => [ natatime => 2 ], ); my $name = 'Foo1'; sub build_class { my %attr = @_; my $class = any_moose('::Meta::Class')->create( $name++, superclasses => [any_moose('::Object')], ); my @traits = 'Array'; push @traits, 'NoInlineAttribute' if delete $attr{no_inline}; $class->add_attribute( _values => ( traits => \@traits, is => 'rw', isa => 'ArrayRef[Int]', default => sub { [] }, handles => \%handles, clearer => '_clear_values', %attr, ), ); return ( $class->name, \%handles ); } } { package Overloader; use overload '&{}' => sub { ${ $_[0] } }, bool => sub {1}; sub new { bless \$_[1], $_[0]; } } { run_tests(build_class); run_tests( build_class( lazy => 1, default => sub { [ 42, 84 ] } ) ); run_tests( build_class( trigger => sub { } ) ); #run_tests( build_class( no_inline => 1 ) ); # Will force the inlining code to check the entire arrayref when it is modified. subtype 'MyArrayRef', as 'ArrayRef', where { 1 }; run_tests( build_class( isa => 'MyArrayRef' ) ); coerce 'MyArrayRef', from 'ArrayRef', via { $_ }; run_tests( build_class( isa => 'MyArrayRef', coerce => 1 ) ); } sub run_tests { my ( $class, $handles ) = @_; can_ok( $class, $_ ) for sort keys %{$handles}; with_immutable { my $obj = $class->new( _values => [ 10, 12, 42 ] ); is_deeply( $obj->_values, [ 10, 12, 42 ], 'values can be set in constructor' ); ok( !$obj->is_empty, 'values is not empty' ); is( $obj->count, 3, 'count returns 3' ); like( exception { $obj->count(22) }, qr/Cannot call count with any arguments/, 'throws an error when passing an argument passed to count' ); is( exception { $obj->push( 1, 2, 3 ) }, undef, 'pushed three new values and lived' ); is( exception { $obj->push() }, undef, 'call to push without arguments lives' ); is( exception { is( $obj->unshift( 101, 22 ), 8, 'unshift returns size of the new array' ); }, undef, 'unshifted two values and lived' ); is_deeply( $obj->_values, [ 101, 22, 10, 12, 42, 1, 2, 3 ], 'unshift changed the value of the array in the object' ); is( exception { $obj->unshift() }, undef, 'call to unshift without arguments lives' ); is( $obj->pop, 3, 'pop returns the last value in the array' ); is_deeply( $obj->_values, [ 101, 22, 10, 12, 42, 1, 2 ], 'pop changed the value of the array in the object' ); like( exception { $obj->pop(42) }, qr/Cannot call pop with any arguments/, 'call to pop with arguments dies' ); is( $obj->shift, 101, 'shift returns the first value' ); like( exception { $obj->shift(42) }, qr/Cannot call shift with any arguments/, 'call to shift with arguments dies' ); is_deeply( $obj->_values, [ 22, 10, 12, 42, 1, 2 ], 'shift changed the value of the array in the object' ); is_deeply( [ $obj->elements ], [ 22, 10, 12, 42, 1, 2 ], 'call to elements returns values as a list' ); like( exception { $obj->elements(22) }, qr/Cannot call elements with any arguments/, 'throws an error when passing an argument passed to elements' ); $obj->_values( [ 1, 2, 3 ] ); is( $obj->get(0), 1, 'get values at index 0' ); is( $obj->get(1), 2, 'get values at index 1' ); is( $obj->get(2), 3, 'get values at index 2' ); is( $obj->get_curried, 2, 'get_curried returns value at index 1' ); like( exception { $obj->get() }, qr/Cannot call get without at least 1 argument/, 'throws an error when get is called without any arguments' ); like( exception { $obj->get( {} ) }, qr/The index passed to get must be an integer/, 'throws an error when get is called with an invalid argument' ); like( exception { $obj->get(2.2) }, qr/The index passed to get must be an integer/, 'throws an error when get is called with an invalid argument' ); like( exception { $obj->get('foo') }, qr/The index passed to get must be an integer/, 'throws an error when get is called with an invalid argument' ); like( exception { $obj->get_curried(2) }, qr/Cannot call get with more than 1 argument/, 'throws an error when get_curried is called with an argument' ); is( exception { is( $obj->set( 1, 100 ), 100, 'set returns new value' ); }, undef, 'set value at index 1 lives' ); is( $obj->get(1), 100, 'get value at index 1 returns new value' ); like( exception { $obj->set( 1, 99, 42 ) }, qr/Cannot call set with more than 2 arguments/, 'throws an error when set is called with three arguments' ); is( exception { $obj->set_curried_1(99) }, undef, 'set_curried_1 lives' ); is( $obj->get(1), 99, 'get value at index 1 returns new value' ); like( exception { $obj->set_curried_1( 99, 42 ) }, qr/Cannot call set with more than 2 arguments/, 'throws an error when set_curried_1 is called with two arguments' ); is( exception { $obj->set_curried_2 }, undef, 'set_curried_2 lives' ); is( $obj->get(1), 98, 'get value at index 1 returns new value' ); like( exception { $obj->set_curried_2(42) }, qr/Cannot call set with more than 2 arguments/, 'throws an error when set_curried_2 is called with one argument' ); is( $obj->accessor(1), 98, 'accessor with one argument returns value at index 1' ); is( exception { is( $obj->accessor( 1 => 97 ), 97, 'accessor returns new value' ); }, undef, 'accessor as writer lives' ); like( exception { $obj->accessor; }, qr/Cannot call accessor without at least 1 argument/, 'throws an error when accessor is called without arguments' ); is( $obj->get(1), 97, 'accessor set value at index 1' ); like( exception { $obj->accessor( 1, 96, 42 ) }, qr/Cannot call accessor with more than 2 arguments/, 'throws an error when accessor is called with three arguments' ); is( $obj->accessor_curried_1, 97, 'accessor_curried_1 returns expected value when called with no arguments' ); is( exception { $obj->accessor_curried_1(95) }, undef, 'accessor_curried_1 as writer lives' ); is( $obj->get(1), 95, 'accessor_curried_1 set value at index 1' ); like( exception { $obj->accessor_curried_1( 96, 42 ) }, qr/Cannot call accessor with more than 2 arguments/, 'throws an error when accessor_curried_1 is called with two arguments' ); is( exception { $obj->accessor_curried_2 }, undef, 'accessor_curried_2 as writer lives' ); is( $obj->get(1), 90, 'accessor_curried_2 set value at index 1' ); like( exception { $obj->accessor_curried_2(42) }, qr/Cannot call accessor with more than 2 arguments/, 'throws an error when accessor_curried_2 is called with one argument' ); is( exception { $obj->clear }, undef, 'clear lives' ); ok( $obj->is_empty, 'values is empty after call to clear' ); $obj->set( 0 => 42 ); like( exception { $obj->clear(50) }, qr/Cannot call clear with any arguments/, 'throws an error when clear is called with an argument' ); ok( !$obj->is_empty, 'values is not empty after failed call to clear' ); like( exception { $obj->is_empty(50) }, qr/Cannot call is_empty with any arguments/, 'throws an error when is_empty is called with an argument' ); $obj->clear; is( $obj->push( 1, 5, 10, 42 ), 4, 'pushed 4 elements, got number of elements in the array back' ); is( exception { is( $obj->delete(2), 10, 'delete returns deleted value' ); }, undef, 'delete lives' ); is_deeply( $obj->_values, [ 1, 5, 42 ], 'delete removed the specified element' ); like( exception { $obj->delete( 2, 3 ) }, qr/Cannot call delete with more than 1 argument/, 'throws an error when delete is called with two arguments' ); is( exception { $obj->delete_curried }, undef, 'delete_curried lives' ); is_deeply( $obj->_values, [ 1, 42 ], 'delete removed the specified element' ); like( exception { $obj->delete_curried(2) }, qr/Cannot call delete with more than 1 argument/, 'throws an error when delete_curried is called with one argument' ); is( exception { $obj->insert( 1, 21 ) }, undef, 'insert lives' ); is_deeply( $obj->_values, [ 1, 21, 42 ], 'insert added the specified element' ); like( exception { $obj->insert( 1, 22, 44 ) }, qr/Cannot call insert with more than 2 arguments/, 'throws an error when insert is called with three arguments' ); is( exception { is_deeply( [ $obj->splice( 1, 0, 2, 3 ) ], [], 'return value of splice is empty list when not removing elements' ); }, undef, 'splice lives' ); is_deeply( $obj->_values, [ 1, 2, 3, 21, 42 ], 'splice added the specified elements' ); is( exception { is_deeply( [ $obj->splice( 1, 2, 99 ) ], [ 2, 3 ], 'splice returns list of removed values' ); }, undef, 'splice lives' ); is_deeply( $obj->_values, [ 1, 99, 21, 42 ], 'splice added the specified elements' ); like( exception { $obj->splice() }, qr/Cannot call splice without at least 1 argument/, 'throws an error when splice is called with no arguments' ); like( exception { $obj->splice( 1, 'foo', ) }, qr/The length argument passed to splice must be an integer/, 'throws an error when splice is called with an invalid length' ); is( exception { $obj->splice_curried_1( 2, 101 ) }, undef, 'splice_curried_1 lives' ); is_deeply( $obj->_values, [ 1, 101, 42 ], 'splice added the specified elements' ); is( exception { $obj->splice_curried_2(102) }, undef, 'splice_curried_2 lives' ); is_deeply( $obj->_values, [ 1, 102 ], 'splice added the specified elements' ); is( exception { $obj->splice_curried_all }, undef, 'splice_curried_all lives' ); is_deeply( $obj->_values, [ 1, 3, 4, 5 ], 'splice added the specified elements' ); is_deeply( scalar $obj->splice( 1, 2 ), 4, 'splice in scalar context returns last element removed' ); is_deeply( scalar $obj->splice( 1, 0, 42 ), undef, 'splice in scalar context returns undef when no elements are removed' ); $obj->_values( [ 3, 9, 5, 22, 11 ] ); is_deeply( [ $obj->sort ], [ 11, 22, 3, 5, 9 ], 'sort returns sorted values' ); is_deeply( [ $obj->sort( sub { $_[0] <=> $_[1] } ) ], [ 3, 5, 9, 11, 22 ], 'sort returns values sorted by provided function' ); like( exception { $obj->sort(1) }, qr/The argument passed to sort must be a code reference/, 'throws an error when passing a non coderef to sort' ); like( exception { $obj->sort( sub { }, 27 ); }, qr/Cannot call sort with more than 1 argument/, 'throws an error when passing two arguments to sort' ); $obj->_values( [ 3, 9, 5, 22, 11 ] ); $obj->sort_in_place; is_deeply( $obj->_values, [ 11, 22, 3, 5, 9 ], 'sort_in_place sorts values' ); $obj->sort_in_place( sub { $_[0] <=> $_[1] } ); is_deeply( $obj->_values, [ 3, 5, 9, 11, 22 ], 'sort_in_place with function sorts values' ); like( exception { $obj->sort_in_place( 27 ); }, qr/The argument passed to sort_in_place must be a code reference/, 'throws an error when passing a non coderef to sort_in_place' ); like( exception { $obj->sort_in_place( sub { }, 27 ); }, qr/Cannot call sort_in_place with more than 1 argument/, 'throws an error when passing two arguments to sort_in_place' ); $obj->_values( [ 3, 9, 5, 22, 11 ] ); $obj->sort_in_place_curried; is_deeply( $obj->_values, [ 22, 11, 9, 5, 3 ], 'sort_in_place_curried sorts values' ); like( exception { $obj->sort_in_place_curried(27) }, qr/Cannot call sort_in_place with more than 1 argument/, 'throws an error when passing one argument passed to sort_in_place_curried' ); $obj->_values( [ 1 .. 5 ] ); is_deeply( [ $obj->map( sub { $_ + 1 } ) ], [ 2 .. 6 ], 'map returns the expected values' ); like( exception { $obj->map }, qr/Cannot call map without at least 1 argument/, 'throws an error when passing no arguments to map' ); like( exception { $obj->map( sub { }, 2 ); }, qr/Cannot call map with more than 1 argument/, 'throws an error when passing two arguments to map' ); like( exception { $obj->map( {} ) }, qr/The argument passed to map must be a code reference/, 'throws an error when passing a non coderef to map' ); $obj->_values( [ 1 .. 5 ] ); is_deeply( [ $obj->map_curried ], [ 2 .. 6 ], 'map_curried returns the expected values' ); like( exception { $obj->map_curried( sub { } ); }, qr/Cannot call map with more than 1 argument/, 'throws an error when passing one argument passed to map_curried' ); $obj->_values( [ 2 .. 9 ] ); is_deeply( [ $obj->grep( sub { $_ < 5 } ) ], [ 2 .. 4 ], 'grep returns the expected values' ); like( exception { $obj->grep }, qr/Cannot call grep without at least 1 argument/, 'throws an error when passing no arguments to grep' ); like( exception { $obj->grep( sub { }, 2 ); }, qr/Cannot call grep with more than 1 argument/, 'throws an error when passing two arguments to grep' ); like( exception { $obj->grep( {} ) }, qr/The argument passed to grep must be a code reference/, 'throws an error when passing a non coderef to grep' ); my $overloader = Overloader->new( sub { $_ < 5 } ); is_deeply( [ $obj->grep(\&$overloader) ], [ 2 .. 4 ], 'grep works with obj that overload code dereferencing' ); is_deeply( [ $obj->grep_curried ], [ 2 .. 4 ], 'grep_curried returns the expected values' ); like( exception { $obj->grep_curried( sub { } ); }, qr/Cannot call grep with more than 1 argument/, 'throws an error when passing one argument passed to grep_curried' ); $obj->_values( [ 2, 4, 22, 99, 101, 6 ] ); is( $obj->first( sub { $_ % 2 } ), 99, 'first returns expected value' ); like( exception { $obj->first }, qr/Cannot call first without at least 1 argument/, 'throws an error when passing no arguments to first' ); like( exception { $obj->first( sub { }, 2 ); }, qr/Cannot call first with more than 1 argument/, 'throws an error when passing two arguments to first' ); like( exception { $obj->first( {} ) }, qr/The argument passed to first must be a code reference/, 'throws an error when passing a non coderef to first' ); is( $obj->first_curried, 99, 'first_curried returns expected value' ); like( exception { $obj->first_curried( sub { } ); }, qr/Cannot call first with more than 1 argument/, 'throws an error when passing one argument passed to first_curried' ); $obj->_values( [ 1 .. 4 ] ); diff --git a/t/070_native_traits/020_trait_bool.t b/t/070_native_traits/020_trait_bool.t index 70d1bab..6fad040 100644 --- a/t/070_native_traits/020_trait_bool.t +++ b/t/070_native_traits/020_trait_bool.t @@ -1,103 +1,102 @@ #!/usr/bin/perl use strict; use warnings; -use Any::Moose (); -use Any::Moose '::Util::TypeConstraints'; -#use NoInlineAttribute; use Test::More; use Test::Fatal; +use Any::Moose (); +use Any::Moose '::Util::TypeConstraints'; BEGIN { eval 'use Test::' . any_moose(); } { my %handles = ( illuminate => 'set', darken => 'unset', flip_switch => 'toggle', is_dark => 'not', ); my $name = 'Foo1'; sub build_class { my %attr = @_; my $class = any_moose('::Meta::Class')->create( $name++, superclasses => [any_moose '::Object'], ); my @traits = 'Bool'; push @traits, 'NoInlineAttribute' if delete $attr{no_inline}; $class->add_attribute( is_lit => ( traits => \@traits, is => 'rw', isa => 'Bool', default => 0, handles => \%handles, clearer => '_clear_is_list', %attr, ), ); return ( $class->name, \%handles ); } } { run_tests(build_class); run_tests( build_class( lazy => 1 ) ); run_tests( build_class( trigger => sub { } ) ); #run_tests( build_class( no_inline => 1 ) ); # Will force the inlining code to check the entire hashref when it is modified. subtype 'MyBool', as 'Bool', where { 1 }; run_tests( build_class( isa => 'MyBool' ) ); coerce 'MyBool', from 'Bool', via { $_ }; run_tests( build_class( isa => 'MyBool', coerce => 1 ) ); } sub run_tests { my ( $class, $handles ) = @_; can_ok( $class, $_ ) for sort keys %{$handles}; with_immutable { my $obj = $class->new; ok( $obj->illuminate, 'set returns true' ); ok( $obj->is_lit, 'set is_lit to 1 using ->illuminate' ); ok( !$obj->is_dark, 'check if is_dark does the right thing' ); like( exception { $obj->illuminate(1) }, qr/Cannot call set with any arguments/, 'set throws an error when an argument is passed' ); ok( !$obj->darken, 'unset returns false' ); ok( !$obj->is_lit, 'set is_lit to 0 using ->darken' ); ok( $obj->is_dark, 'check if is_dark does the right thing' ); like( exception { $obj->darken(1) }, qr/Cannot call unset with any arguments/, 'unset throws an error when an argument is passed' ); ok( $obj->flip_switch, 'toggle returns new value' ); ok( $obj->is_lit, 'toggle is_lit back to 1 using ->flip_switch' ); ok( !$obj->is_dark, 'check if is_dark does the right thing' ); like( exception { $obj->flip_switch(1) }, qr/Cannot call toggle with any arguments/, 'toggle throws an error when an argument is passed' ); $obj->flip_switch; ok( !$obj->is_lit, 'toggle is_lit back to 0 again using ->flip_switch' ); ok( $obj->is_dark, 'check if is_dark does the right thing' ); } $class; } done_testing; diff --git a/t/070_native_traits/030_trait_code.t b/t/070_native_traits/030_trait_code.t index 826c499..e3ce7ce 100644 --- a/t/070_native_traits/030_trait_code.t +++ b/t/070_native_traits/030_trait_code.t @@ -1,116 +1,115 @@ use strict; use warnings; -use Any::Moose (); -use Any::Moose '::Util::TypeConstraints'; -#use NoInlineAttribute; use Test::More; use Test::Fatal; +use Any::Moose (); +use Any::Moose '::Util::TypeConstraints'; BEGIN { eval 'use Test::' . any_moose(); } { my $name = 'Foo1'; sub build_class { my ( $attr1, $attr2, $attr3, $no_inline ) = @_; my $class = any_moose('::Meta::Class')->create( $name++, superclasses => [any_moose '::Object'], ); my @traits = 'Code'; push @traits, 'NoInlineAttribute' if $no_inline; $class->add_attribute( callback => ( traits => \@traits, isa => 'CodeRef', required => 1, handles => { 'invoke_callback' => 'execute' }, %{ $attr1 || {} }, ) ); $class->add_attribute( callback_method => ( traits => \@traits, isa => 'CodeRef', required => 1, handles => { 'invoke_method_callback' => 'execute_method' }, %{ $attr2 || {} }, ) ); $class->add_attribute( multiplier => ( traits => \@traits, isa => 'CodeRef', required => 1, handles => { 'multiply' => 'execute' }, %{ $attr3 || {} }, ) ); return $class->name; } } { my $i; my %subs = ( callback => sub { ++$i }, callback_method => sub { shift->multiply(@_) }, multiplier => sub { $_[0] * 2 }, ); run_tests( build_class, \$i, \%subs ); #run_tests( build_class( undef, undef, undef, 1 ), \$i, \%subs ); run_tests( build_class( { lazy => 1, default => sub { $subs{callback} } }, { lazy => 1, default => sub { $subs{callback_method} } }, { lazy => 1, default => sub { $subs{multiplier} } }, ), \$i, ); } sub run_tests { my ( $class, $iref, @args ) = @_; ok( !$class->can($_), "Code trait didn't create reader method for $_" ) for qw(callback callback_method multiplier); with_immutable { ${$iref} = 0; my $obj = $class->new(@args); $obj->invoke_callback; is( ${$iref}, 1, '$i is 1 after invoke_callback' ); is( $obj->invoke_method_callback(3), 6, 'invoke_method_callback calls multiply with @_' ); is( $obj->multiply(3), 6, 'multiple double value' ); } $class; } done_testing; diff --git a/t/070_native_traits/040_trait_counter.t b/t/070_native_traits/040_trait_counter.t index 0314b3d..71309cf 100644 --- a/t/070_native_traits/040_trait_counter.t +++ b/t/070_native_traits/040_trait_counter.t @@ -1,136 +1,135 @@ #!/usr/bin/perl use strict; use warnings; -use Any::Moose (); -use Any::Moose '::Util::TypeConstraints'; -#use NoInlineAttribute; use Test::More; use Test::Fatal; +use Any::Moose (); +use Any::Moose '::Util::TypeConstraints'; BEGIN { eval 'use Test::' . any_moose(); } { my %handles = ( inc_counter => 'inc', inc_counter_2 => [ inc => 2 ], dec_counter => 'dec', dec_counter_2 => [ dec => 2 ], reset_counter => 'reset', set_counter => 'set', set_counter_42 => [ set => 42 ], ); my $name = 'Foo1'; sub build_class { my %attr = @_; my $class = any_moose('::Meta::Class')->create( $name++, superclasses => [any_moose '::Object'], ); my @traits = 'Counter'; push @traits, 'NoInlineAttribute' if delete $attr{no_inline}; $class->add_attribute( counter => ( traits => \@traits, is => 'ro', isa => 'Int', default => 0, handles => \%handles, clearer => '_clear_counter', %attr, ), ); return ( $class->name, \%handles ); } } { run_tests(build_class); run_tests( build_class( lazy => 1 ) ); run_tests( build_class( trigger => sub { } ) ); #run_tests( build_class( no_inline => 1 ) ); # Will force the inlining code to check the entire hashref when it is modified. subtype 'MyInt', as 'Int', where { 1 }; run_tests( build_class( isa => 'MyInt' ) ); coerce 'MyInt', from 'Int', via { $_ }; run_tests( build_class( isa => 'MyInt', coerce => 1 ) ); } sub run_tests { my ( $class, $handles ) = @_; can_ok( $class, $_ ) for sort keys %{$handles}; with_immutable { my $obj = $class->new(); is( $obj->counter, 0, '... got the default value' ); is( $obj->inc_counter, 1, 'inc returns new value' ); is( $obj->counter, 1, '... got the incremented value' ); is( $obj->inc_counter, 2, 'inc returns new value' ); is( $obj->counter, 2, '... got the incremented value (again)' ); like( exception { $obj->inc_counter( 1, 2 ) }, qr/Cannot call inc with more than 1 argument/, 'inc throws an error when two arguments are passed' ); is( $obj->dec_counter, 1, 'dec returns new value' ); is( $obj->counter, 1, '... got the decremented value' ); like( exception { $obj->dec_counter( 1, 2 ) }, qr/Cannot call dec with more than 1 argument/, 'dec throws an error when two arguments are passed' ); is( $obj->reset_counter, 0, 'reset returns new value' ); is( $obj->counter, 0, '... got the original value' ); like( exception { $obj->reset_counter(2) }, qr/Cannot call reset with any arguments/, 'reset throws an error when an argument is passed' ); is( $obj->set_counter(5), 5, 'set returns new value' ); is( $obj->counter, 5, '... set the value' ); like( exception { $obj->set_counter( 1, 2 ) }, qr/Cannot call set with more than 1 argument/, 'set throws an error when two arguments are passed' ); $obj->inc_counter(2); is( $obj->counter, 7, '... increment by arg' ); $obj->dec_counter(5); is( $obj->counter, 2, '... decrement by arg' ); $obj->inc_counter_2; is( $obj->counter, 4, '... curried increment' ); $obj->dec_counter_2; is( $obj->counter, 2, '... curried deccrement' ); $obj->set_counter_42; is( $obj->counter, 42, '... curried set' ); if ( $class->meta->get_attribute('counter')->is_lazy ) { my $obj = $class->new; $obj->inc_counter; is( $obj->counter, 1, 'inc increments - with lazy default' ); $obj->_clear_counter; $obj->dec_counter; is( $obj->counter, -1, 'dec decrements - with lazy default' ); } } $class; } done_testing; diff --git a/t/070_native_traits/050_trait_hash.t b/t/070_native_traits/050_trait_hash.t index 0b74a52..dded810 100644 --- a/t/070_native_traits/050_trait_hash.t +++ b/t/070_native_traits/050_trait_hash.t @@ -1,295 +1,294 @@ #!/usr/bin/perl use strict; use warnings; -use Any::Moose (); -use Any::Moose '::Util::TypeConstraints'; -#use NoInlineAttribute; use Test::More; use Test::Fatal; +use Any::Moose (); +use Any::Moose '::Util::TypeConstraints'; BEGIN { eval 'use Test::' . any_moose(); } { my %handles = ( option_accessor => 'accessor', quantity => [ accessor => 'quantity' ], clear_options => 'clear', num_options => 'count', delete_option => 'delete', is_defined => 'defined', options_elements => 'elements', has_option => 'exists', get_option => 'get', has_no_options => 'is_empty', keys => 'keys', values => 'values', key_value => 'kv', set_option => 'set', ); my $name = 'Foo1'; sub build_class { my %attr = @_; my $class = any_moose('::Meta::Class')->create( $name++, superclasses => [any_moose '::Object'], ); my @traits = 'Hash'; push @traits, 'NoInlineAttribute' if delete $attr{no_inline}; $class->add_attribute( options => ( traits => \@traits, is => 'rw', isa => 'HashRef[Str]', default => sub { {} }, handles => \%handles, clearer => '_clear_options', %attr, ), ); return ( $class->name, \%handles ); } } { run_tests(build_class); run_tests( build_class( lazy => 1, default => sub { { x => 1 } } ) ); run_tests( build_class( trigger => sub { } ) ); #run_tests( build_class( no_inline => 1 ) ); # Will force the inlining code to check the entire hashref when it is modified. subtype 'MyHashRef', as 'HashRef[Str]', where { 1 }; run_tests( build_class( isa => 'MyHashRef' ) ); coerce 'MyHashRef', from 'HashRef', via { $_ }; run_tests( build_class( isa => 'MyHashRef', coerce => 1 ) ); } sub run_tests { my ( $class, $handles ) = @_; can_ok( $class, $_ ) for sort keys %{$handles}; with_immutable { my $obj = $class->new( options => {} ); ok( $obj->has_no_options, '... we have no options' ); is( $obj->num_options, 0, '... we have no options' ); is_deeply( $obj->options, {}, '... no options yet' ); ok( !$obj->has_option('foo'), '... we have no foo option' ); is( exception { is( $obj->set_option( foo => 'bar' ), 'bar', 'set return single new value in scalar context' ); }, undef, '... set the option okay' ); ok( $obj->is_defined('foo'), '... foo is defined' ); ok( !$obj->has_no_options, '... we have options' ); is( $obj->num_options, 1, '... we have 1 option(s)' ); ok( $obj->has_option('foo'), '... we have a foo option' ); is_deeply( $obj->options, { foo => 'bar' }, '... got options now' ); is( exception { $obj->set_option( bar => 'baz' ); }, undef, '... set the option okay' ); is( $obj->num_options, 2, '... we have 2 option(s)' ); is_deeply( $obj->options, { foo => 'bar', bar => 'baz' }, '... got more options now' ); is( $obj->get_option('foo'), 'bar', '... got the right option' ); is_deeply( [ $obj->get_option(qw(foo bar)) ], [qw(bar baz)], "get multiple options at once" ); is( scalar( $obj->get_option(qw( foo bar)) ), "baz", '... got last option in scalar context' ); is( exception { $obj->set_option( oink => "blah", xxy => "flop" ); }, undef, '... set the option okay' ); is( $obj->num_options, 4, "4 options" ); is_deeply( [ $obj->get_option(qw(foo bar oink xxy)) ], [qw(bar baz blah flop)], "get multiple options at once" ); is( exception { is( scalar $obj->delete_option('bar'), 'baz', 'delete returns deleted value' ); }, undef, '... deleted the option okay' ); is( exception { is_deeply( [ $obj->delete_option( 'oink', 'xxy' ) ], [ 'blah', 'flop' ], 'delete returns all deleted values in list context' ); }, undef, '... deleted multiple option okay' ); is( $obj->num_options, 1, '... we have 1 option(s)' ); is_deeply( $obj->options, { foo => 'bar' }, '... got more options now' ); $obj->clear_options; is_deeply( $obj->options, {}, "... cleared options" ); is( exception { $obj->quantity(4); }, undef, '... options added okay with defaults' ); is( $obj->quantity, 4, 'reader part of curried accessor works' ); is( $obj->option_accessor('quantity'), 4, 'accessor as reader' ); is_deeply( $obj->options, { quantity => 4 }, '... returns what we expect' ); $obj->option_accessor( size => 42 ); like( exception { $obj->option_accessor; }, qr/Cannot call accessor without at least 1 argument/, 'error when calling accessor with no arguments' ); is_deeply( $obj->options, { quantity => 4, size => 42 }, 'accessor as writer' ); is( exception { $class->new( options => { foo => 'BAR' } ); }, undef, '... good constructor params' ); isnt( exception { $obj->set_option( bar => {} ); }, undef, '... could not add a hash ref where an string is expected' ); isnt( exception { $class->new( options => { foo => [] } ); }, undef, '... bad constructor params' ); $obj->options( {} ); is_deeply( [ $obj->set_option( oink => "blah", xxy => "flop" ) ], [ 'blah', 'flop' ], 'set returns newly set values in order of keys provided' ); is_deeply( [ sort $obj->keys ], [ 'oink', 'xxy' ], 'keys returns expected keys' ); is_deeply( [ sort $obj->values ], [ 'blah', 'flop' ], 'values returns expected values' ); my @key_value = sort { $a->[0] cmp $b->[0] } $obj->key_value; is_deeply( \@key_value, [ sort { $a->[0] cmp $b->[0] }[ 'xxy', 'flop' ], [ 'oink', 'blah' ] ], '... got the right key value pairs' ) or do { require Data::Dumper; diag( Data::Dumper::Dumper( \@key_value ) ); }; my %options_elements = $obj->options_elements; is_deeply( \%options_elements, { 'oink' => 'blah', 'xxy' => 'flop' }, '... got the right hash elements' ); if ( $class->meta->get_attribute('options')->is_lazy ) { my $obj = $class->new; $obj->set_option( y => 2 ); is_deeply( $obj->options, { x => 1, y => 2 }, 'set_option with lazy default' ); $obj->_clear_options; ok( $obj->has_option('x'), 'key for x exists - lazy default' ); $obj->_clear_options; ok( $obj->is_defined('x'), 'key for x is defined - lazy default' ); $obj->_clear_options; is_deeply( [ $obj->key_value ], [ [ x => 1 ] ], 'kv returns lazy default' ); $obj->_clear_options; $obj->option_accessor( y => 2 ); is_deeply( [ sort $obj->keys ], [ 'x', 'y' ], 'accessor triggers lazy default generator' ); } } $class; } done_testing; diff --git a/t/070_native_traits/060_trait_number.t b/t/070_native_traits/060_trait_number.t index 9a50f00..54df09b 100644 --- a/t/070_native_traits/060_trait_number.t +++ b/t/070_native_traits/060_trait_number.t @@ -1,170 +1,169 @@ #!/usr/bin/perl use strict; use warnings; -use Any::Moose (); -use Any::Moose '::Util::TypeConstraints'; -#use NoInlineAttribute; use Test::More; use Test::Fatal; +use Any::Moose (); +use Any::Moose '::Util::TypeConstraints'; BEGIN { eval 'use Test::' . any_moose(); } { my $any_moose_is_mouse = any_moose() eq 'Mouse'; my %handles = ( abs => 'abs', add => 'add', inc => [ add => 1 ], div => 'div', cut_in_half => [ div => 2 ], mod => 'mod', odd => [ mod => 2 ], mul => 'mul', #set => 'set', sub => 'sub', dec => [ sub => 1 ], ); if(!$any_moose_is_mouse) { $handles{set} = 'set'; } my $name = 'Foo1'; sub build_class { my %attr = @_; my $class = any_moose('::Meta::Class')->create( $name++, superclasses => [any_moose '::Object'], ); my @traits = 'Number'; push @traits, 'NoInlineAttribute' if delete $attr{no_inline}; $class->add_attribute( integer => ( traits => \@traits, is => 'ro', isa => 'Int', default => 5, handles => \%handles, ($any_moose_is_mouse ? (writer => 'set') : ()), clearer => '_clear_integer', %attr, ), ); return ( $class->name, \%handles ); } } { run_tests(build_class); run_tests( build_class( lazy => 1 ) ); run_tests( build_class( trigger => sub { } ) ); #run_tests( build_class( no_inline => 1 ) ); # Will force the inlining code to check the entire hashref when it is modified. subtype 'MyInt', as 'Int', where { 1 }; run_tests( build_class( isa => 'MyInt' ) ); coerce 'MyInt', from 'Int', via { $_ }; run_tests( build_class( isa => 'MyInt', coerce => 1 ) ); } sub run_tests { my ( $class, $handles ) = @_; can_ok( $class, $_ ) for sort keys %{$handles}; with_immutable { my $obj = $class->new; is( $obj->integer, 5, 'Default to five' ); is( $obj->add(10), 15, 'add returns new value' ); is( $obj->integer, 15, 'Add ten for fithteen' ); like( exception { $obj->add( 10, 2 ) }, qr/Cannot call add with more than 1 argument/, 'add throws an error when 2 arguments are passed' ); is( $obj->sub(3), 12, 'sub returns new value' ); is( $obj->integer, 12, 'Subtract three for 12' ); like( exception { $obj->sub( 10, 2 ) }, qr/Cannot call sub with more than 1 argument/, 'sub throws an error when 2 arguments are passed' ); is( $obj->set(10), 10, 'set returns new value' ); is( $obj->integer, 10, 'Set to ten' ); isnt exception { $obj->set(10, 2) }, undef; # XXX: Mouse specific #like( exception { $obj->set( 10, 2 ) }, qr/Cannot call set with more than 1 argument/, 'set throws an error when 2 arguments are passed' ); is( $obj->div(2), 5, 'div returns new value' ); is( $obj->integer, 5, 'divide by 2' ); like( exception { $obj->div( 10, 2 ) }, qr/Cannot call div with more than 1 argument/, 'div throws an error when 2 arguments are passed' ); is( $obj->mul(2), 10, 'mul returns new value' ); is( $obj->integer, 10, 'multiplied by 2' ); like( exception { $obj->mul( 10, 2 ) }, qr/Cannot call mul with more than 1 argument/, 'mul throws an error when 2 arguments are passed' ); is( $obj->mod(2), 0, 'mod returns new value' ); is( $obj->integer, 0, 'Mod by 2' ); like( exception { $obj->mod( 10, 2 ) }, qr/Cannot call mod with more than 1 argument/, 'mod throws an error when 2 arguments are passed' ); $obj->set(7); $obj->mod(5); is( $obj->integer, 2, 'Mod by 5' ); $obj->set(-1); is( $obj->abs, 1, 'abs returns new value' ); like( exception { $obj->abs(10) }, qr/Cannot call abs with any arguments/, 'abs throws an error when an argument is passed' ); is( $obj->integer, 1, 'abs 1' ); $obj->set(12); $obj->inc; is( $obj->integer, 13, 'inc 12' ); $obj->dec; is( $obj->integer, 12, 'dec 13' ); if ( $class->meta->get_attribute('integer')->is_lazy ) { my $obj = $class->new; $obj->add(2); is( $obj->integer, 7, 'add with lazy default' ); $obj->_clear_integer; $obj->mod(2); is( $obj->integer, 1, 'mod with lazy default' ); } } $class; } done_testing; diff --git a/t/070_native_traits/070_trait_string.t b/t/070_native_traits/070_trait_string.t index 7d361c6..f277be0 100644 --- a/t/070_native_traits/070_trait_string.t +++ b/t/070_native_traits/070_trait_string.t @@ -1,305 +1,304 @@ #!/usr/bin/perl use strict; use warnings; -use Any::Moose (); -use Any::Moose '::Util::TypeConstraints'; -#use NoInlineAttribute; use Test::More; use Test::Fatal; +use Any::Moose (); +use Any::Moose '::Util::TypeConstraints'; BEGIN { eval 'use Test::' . any_moose(); } { my %handles = ( inc => 'inc', append => 'append', append_curried => [ append => '!' ], prepend => 'prepend', prepend_curried => [ prepend => '-' ], replace => 'replace', replace_curried => [ replace => qr/(.)$/, sub { uc $1 } ], chop => 'chop', chomp => 'chomp', clear => 'clear', match => 'match', match_curried => [ match => qr/\D/ ], length => 'length', substr => 'substr', substr_curried_1 => [ substr => (1) ], substr_curried_2 => [ substr => ( 1, 3 ) ], substr_curried_3 => [ substr => ( 1, 3, 'ong' ) ], ); my $name = 'Foo1'; sub build_class { my %attr = @_; my $class = any_moose('::Meta::Class')->create( $name++, superclasses => [any_moose '::Object'], ); my @traits = 'String'; push @traits, 'NoInlineAttribute' if delete $attr{no_inline}; $class->add_attribute( _string => ( traits => \@traits, is => 'rw', isa => 'Str', default => q{}, handles => \%handles, clearer => '_clear_string', %attr, ), ); return ( $class->name, \%handles ); } } { run_tests(build_class); run_tests( build_class( lazy => 1, default => q{} ) ); run_tests( build_class( trigger => sub { } ) ); #run_tests( build_class( no_inline => 1 ) ); # Will force the inlining code to check the entire hashref when it is modified. subtype 'MyStr', as 'Str', where { 1 }; run_tests( build_class( isa => 'MyStr' ) ); coerce 'MyStr', from 'Str', via { $_ }; run_tests( build_class( isa => 'MyStr', coerce => 1 ) ); } sub run_tests { my ( $class, $handles ) = @_; can_ok( $class, $_ ) for sort keys %{$handles}; with_immutable { my $obj = $class->new(); is( $obj->length, 0, 'length returns zero' ); $obj->_string('a'); is( $obj->length, 1, 'length returns 1 for new string' ); like( exception { $obj->length(42) }, qr/Cannot call length with any arguments/, 'length throws an error when an argument is passed' ); is( $obj->inc, 'b', 'inc returns new value' ); is( $obj->_string, 'b', 'a becomes b after inc' ); like( exception { $obj->inc(42) }, qr/Cannot call inc with any arguments/, 'inc throws an error when an argument is passed' ); is( $obj->append('foo'), 'bfoo', 'append returns new value' ); is( $obj->_string, 'bfoo', 'appended to the string' ); like( exception { $obj->append( 'foo', 2 ) }, qr/Cannot call append with more than 1 argument/, 'append throws an error when two arguments are passed' ); $obj->append_curried; is( $obj->_string, 'bfoo!', 'append_curried appended to the string' ); like( exception { $obj->append_curried('foo') }, qr/Cannot call append with more than 1 argument/, 'append_curried throws an error when two arguments are passed' ); $obj->_string("has nl$/"); is( $obj->chomp, 1, 'chomp returns number of characters removed' ); is( $obj->_string, 'has nl', 'chomped string' ); is( $obj->chomp, 0, 'chomp returns number of characters removed' ); is( $obj->_string, 'has nl', 'chomp is a no-op when string has no line ending' ); like( exception { $obj->chomp(42) }, qr/Cannot call chomp with any arguments/, 'chomp throws an error when an argument is passed' ); is( $obj->chop, 'l', 'chop returns character removed' ); is( $obj->_string, 'has n', 'chopped string' ); like( exception { $obj->chop(42) }, qr/Cannot call chop with any arguments/, 'chop throws an error when an argument is passed' ); $obj->_string('x'); is( $obj->prepend('bar'), 'barx', 'prepend returns new value' ); is( $obj->_string, 'barx', 'prepended to string' ); $obj->prepend_curried; is( $obj->_string, '-barx', 'prepend_curried prepended to string' ); is( $obj->replace( qr/([ao])/, sub { uc($1) } ), '-bArx', 'replace returns new value' ); is( $obj->_string, '-bArx', 'substitution using coderef for replacement' ); $obj->replace( qr/A/, 'X' ); is( $obj->_string, '-bXrx', 'substitution using string as replacement' ); $obj->_string('foo'); $obj->replace( qr/oo/, q{} ); is( $obj->_string, 'f', 'replace accepts an empty string as second argument' ); $obj->replace( q{}, 'a' ); is( $obj->_string, 'af', 'replace accepts an empty string as first argument' ); like( exception { $obj->replace( {}, 'x' ) }, qr/The first argument passed to replace must be a string or regexp reference/, 'replace throws an error when the first argument is not a string or regexp' ); like( exception { $obj->replace( qr/x/, {} ) }, qr/The second argument passed to replace must be a string or code reference/, 'replace throws an error when the first argument is not a string or regexp' ); $obj->_string('Mousex'); $obj->replace_curried; is( $obj->_string, 'MouseX', 'capitalize last' ); $obj->_string('abcdef'); is_deeply( [ $obj->match(qr/([az]).*([fy])/) ], [ 'a', 'f' ], 'match -barx against /[aq]/ returns matches' ); is_deeply( [ $obj->match(qr/([az]).*([fy])/) ], [ 'a', 'f' ], 'match -barx against /[aq]/ returns matches' ); ok( scalar $obj->match('b'), 'match with string as argument returns true' ); ok( scalar $obj->match(q{}), 'match with empty string as argument returns true' ); like( exception { $obj->match }, qr/Cannot call match without at least 1 argument/, 'match throws an error when no arguments are passed' ); like( exception { $obj->match( {} ) }, qr/The argument passed to match must be a string or regexp reference/, 'match throws an error when an invalid argument is passed' ); $obj->_string('1234'); ok( !$obj->match_curried, 'match_curried returns false' ); $obj->_string('one two three four'); ok( $obj->match_curried, 'match curried returns true' ); $obj->clear; is( $obj->_string, q{}, 'clear' ); like( exception { $obj->clear(42) }, qr/Cannot call clear with any arguments/, 'clear throws an error when an argument is passed' ); $obj->_string('some long string'); is( $obj->substr(1), 'ome long string', 'substr as getter with one argument' ); $obj->_string('some long string'); is( $obj->substr( 1, 3 ), 'ome', 'substr as getter with two arguments' ); is( $obj->substr( 1, 3, 'ong' ), 'ome', 'substr as setter returns replaced string' ); is( $obj->_string, 'song long string', 'substr as setter with three arguments' ) or diag $obj->dump; $obj->substr( 1, 3, '' ); is( $obj->_string, 's long string', 'substr as setter with three arguments, replacment is empty string' ); like( exception { $obj->substr }, qr/Cannot call substr without at least 1 argument/, 'substr throws an error when no argumemts are passed' ); like( exception { $obj->substr( 1, 2, 3, 4 ) }, qr/Cannot call substr with more than 3 arguments/, 'substr throws an error when four argumemts are passed' ); like( exception { $obj->substr( {} ) }, qr/The first argument passed to substr must be an integer/, 'substr throws an error when first argument is not an integer' ); like( exception { $obj->substr( 1, {} ) }, qr/The second argument passed to substr must be an integer/, 'substr throws an error when second argument is not an integer' ); like( exception { $obj->substr( 1, 2, {} ) }, qr/The third argument passed to substr must be a string/, 'substr throws an error when third argument is not a string' ); $obj->_string('some long string'); is( $obj->substr_curried_1, 'ome long string', 'substr_curried_1 returns expected value' ); is( $obj->substr_curried_1(3), 'ome', 'substr_curried_1 with one argument returns expected value' ); $obj->substr_curried_1( 3, 'ong' ); is( $obj->_string, 'song long string', 'substr_curried_1 as setter with two arguments' ); $obj->_string('some long string'); is( $obj->substr_curried_2, 'ome', 'substr_curried_2 returns expected value' ); $obj->substr_curried_2('ong'); is( $obj->_string, 'song long string', 'substr_curried_2 as setter with one arguments' ); $obj->_string('some long string'); $obj->substr_curried_3; is( $obj->_string, 'song long string', 'substr_curried_3 as setter' ); if ( $class->meta->get_attribute('_string')->is_lazy ) { my $obj = $class->new; $obj->append('foo'); is( $obj->_string, 'foo', 'append with lazy default' ); } } $class; } done_testing;
gfx/p5-MouseX-NativeTraits
4061c1a1ba8ab285768d09a9ba0b2016c9e0cdc7
Checking in changes prior to tagging of version 1.03.
diff --git a/Changes b/Changes index e4d3a80..473fa49 100644 --- a/Changes +++ b/Changes @@ -1,24 +1,28 @@ Revision history for Perl extension MouseX::NativeTraits +1.03 2010-11-07 17:07:09 + - Workaround test problems + 1.02 2010-11-06 19:36:15 - Fix testing issue on Windows/nmake 1.01 2010-11-05 20:27:52 + - This is a major update - Requires Mouse 0.82 for type constraint robusity - Follow Moose 1.19 except for smart coercions 1.00 Mon Sep 27 15:01:21 2010 - No functional changes - Follow Mouse 0.74, which is more compatible with Moose 0.002 Mon Mar 15 15:56:36 2010 - First non-dev release 0.001_02 Mon Feb 22 17:42:50 2010 - Improve docs 0.001_01 Sat Feb 20 15:49:59 2010 - first dev release 0.001 Fri Feb 19 10:45:19 2010 - original version; created by Module::Setup diff --git a/Makefile.PL b/Makefile.PL index 6217781..74238fd 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,30 +1,33 @@ use strict; use warnings; use inc::Module::Install; use Module::Install::TestTarget 0.12; all_from 'lib/MouseX/NativeTraits.pm'; requires 'Mouse' => 0.82; test_requires 'Any::Moose' => 0.13; test_requires 'Test::More' => 0.88; # done_testing() test_requires 'Test::Fatal' => 0.003; tests_recursive 't'; auto_set_repository() if -d '.git'; -default_test_target env => { ANY_MOOSE => 'Mouse' }; +default_test_target + load_modules => [qw(Test::Builder)], # workaround T::B 2.00_01 problems + env => { ANY_MOOSE => 'Mouse' }; + test_target 'test_moose' => ( env => { ANY_MOOSE => 'Moose' }, ); clean_files qw( MouseX-NativeTraits-* *.stackdump cover_db nytprof *.out ); WriteAll(check_nmake => 0); diff --git a/lib/Mouse/Meta/Attribute/Native.pm b/lib/Mouse/Meta/Attribute/Native.pm index 08967d7..c3aca25 100644 --- a/lib/Mouse/Meta/Attribute/Native.pm +++ b/lib/Mouse/Meta/Attribute/Native.pm @@ -1,31 +1,31 @@ package Mouse::Meta::Attribute::Native; use strict; -our $VERSION = '1.02'; +our $VERSION = '1.03'; 1; __END__ =head1 NAME Mouse::Meta::Attribute::Native - Extend your attribute interfaces =head1 SYNOPSIS # In your Makefile.PL # you can say: requires 'Mouse::Meta::Attribute::Native'; # just like as 'Moose::Meta::Attribute::Native' =head1 DESCRIPTION This module is just a hook to set C<Mouse::Meta::Attribute::Native> to prerequisites. =head1 SEE ALSO L<MouseX::NativeTraits> L<Moose::Meta::Attribute::Native> =cut diff --git a/lib/MouseX/NativeTraits.pm b/lib/MouseX/NativeTraits.pm index 5995186..bcbcaa7 100644 --- a/lib/MouseX/NativeTraits.pm +++ b/lib/MouseX/NativeTraits.pm @@ -1,295 +1,295 @@ package MouseX::NativeTraits; use 5.006_002; use Mouse::Role; -our $VERSION = '1.02'; +our $VERSION = '1.03'; requires qw(method_provider_class helper_type); #has default => ( # is => 'bare', # don't create new methods # required => 1, #); has type_constraint => ( is => 'bare', # don't create new methods required => 1, ); has method_provider => ( is => 'ro', isa => 'Object', builder => '_build_method_provider', ); sub _build_method_provider{ my($self) = @_; my $mpc = $self->method_provider_class; Mouse::Util::load_class($mpc); return $mpc->new(attr => $self); } before _process_options => sub { my ( $self, $name, $options ) = @_; my $type = $self->helper_type; $options->{isa} = $type if !exists $options->{isa}; my $isa = Mouse::Util::TypeConstraints::find_or_create_isa_type_constraint( $options->{isa} ); ( $isa->is_a_type_of($type) ) || $self->throw_error( "The type constraint for $name must be a subtype of $type but it's a $isa"); $options->{default} = $self->_default_default if !exists $options->{default} && $self->can('_default_default'); }; around _canonicalize_handles => sub { my($next, $self) = @_; my $handles_ref = $self->handles; if( ref($handles_ref) ne 'HASH' ) { $self->throw_error( "The 'handles' option must be a HASH reference, not $handles_ref"); } my $provider = $self->method_provider; my %handles; while(my($name, $to) = each %{$handles_ref}){ $to = [$to] if !ref $to; $provider->has_generator($to->[0]) or $self->throw_error("$to->[0] is an unsupported method type"); $handles{$name} = $to; } return %handles; }; around _make_delegation_method => sub { my( $next, $self, $handle_name, $method_to_call) = @_; return $self->method_provider->generate($handle_name, $method_to_call); }; no Mouse::Role; 1; __END__ =head1 NAME MouseX::NativeTraits - Extend your attribute interfaces for Mouse =head1 VERSION -This document describes MouseX::NativeTraits version 1.02. +This document describes MouseX::NativeTraits version 1.03. =head1 SYNOPSIS package MyClass; use Mouse; has mapping => ( traits => ['Hash'], is => 'rw', isa => 'HashRef[Str]', default => sub { +{} }, handles => { exists_in_mapping => 'exists', ids_in_mapping => 'keys', get_mapping => 'get', set_mapping => 'set', set_quantity => [ set => 'quantity' ], }, ); =head1 DESCRIPTION While L<Mouse> attributes provide a way to name your accessors, readers, writers, clearers and predicates, MouseX::NativeTraits provides commonly used attribute helper methods for more specific types of data. As seen in the L</SYNOPSIS>, you specify the data structure via the C<traits> parameter. These traits will be loaded automatically, so you need not load MouseX::NativeTraits explicitly. This extention is compatible with Moose native traits, although it is not a part of Mouse core. =head1 PARAMETERS =head2 handles This is like C<handles> in L<Mouse/has>, but only HASH references are allowed. Keys are method names that you want installed locally, and values are methods from the method providers (below). Currying with delegated methods works normally for C<< handles >>. =head1 NATIVE TRAITS =head2 Array Common methods for array references. has 'queue' => ( traits => ['Array'], is => 'ro', isa => 'ArrayRef[Str]', default => sub { [] }, handles => { add_item => 'push', next_item => 'shift', } ); See L<MouseX::NativeTraits::ArrayRef>. =head2 Hash Common methods for hash references. has 'options' => ( traits => ['Hash'], is => 'ro', isa => 'HashRef[Str]', default => sub { {} }, handles => { set_option => 'set', get_option => 'get', has_option => 'exists', } ); See L<MouseX::NativeTraits::HashRef>. =head2 Code Common methods for code references. has 'callback' => ( traits => ['Code'], is => 'ro', isa => 'CodeRef', default => sub { sub { 'called' } }, handles => { call => 'execute', } ); See L<MouseX::NativeTraits::CodeRef>. =head2 Bool Common methods for boolean values. has 'is_lit' => ( traits => ['Bool'], is => 'rw', isa => 'Bool', default => 0, handles => { illuminate => 'set', darken => 'unset', flip_switch => 'toggle', is_dark => 'not', } ); See L<MouseX::NativeTraits::Bool>. =head2 String Common methods for string operations. has text => ( traits => ['String'], is => 'rw', isa => 'Str', default => q{}, handles => { add_text => 'append', replace_text => 'replace', # or replace_globally } ); See L<MouseX::NativeTraits::Str>. =head2 Number Common numerical operations. has value => ( traits => ['Number'], is => 'ro', isa => 'Int', default => 5, handles => { set => 'set', add => 'add', sub => 'sub', mul => 'mul', div => 'div', mod => 'mod', abs => 'abs', } ); See L<MouseX::NativeTraits::Num>. =head2 Counter Methods for incrementing and decrementing a counter attribute. has counter => ( traits => ['Counter'], is => 'ro', isa => 'Num', default => 0, handles => { inc_counter => 'inc', dec_counter => 'dec', reset_counter => 'reset', } ); See L<MouseX::NativeTraits::Counter>. =head1 DEPENDENCIES Perl 5.6.2 or later. =head1 BUGS All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. =head1 SEE ALSO L<Mouse> L<MouseX::AttributeHelpers> L<Moose> L<Moose::Meta::Attribute::Native> L<MooseX::AttributeHelpers> =head1 AUTHORS Goro Fuji (gfx) E<lt>gfuji(at)cpan.orgE<gt> This module is based on Moose native traits written by Stevan Little and others. =head1 LICENSE AND COPYRIGHT Copyright (c) 2010, Goro Fuji (gfx), mostly based on Moose, which is (c) Infinity Interactive, Inc (L<http://www.iinteractive.com>). This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L<perlartistic> for details. =cut
gfx/p5-MouseX-NativeTraits
a820ddbf6ae8a368f59f655be7508371883e0bbf
Checking in changes prior to tagging of version 1.02.
diff --git a/Changes b/Changes index 4895404..e4d3a80 100644 --- a/Changes +++ b/Changes @@ -1,21 +1,24 @@ Revision history for Perl extension MouseX::NativeTraits +1.02 2010-11-06 19:36:15 + - Fix testing issue on Windows/nmake + 1.01 2010-11-05 20:27:52 - Requires Mouse 0.82 for type constraint robusity - Follow Moose 1.19 except for smart coercions 1.00 Mon Sep 27 15:01:21 2010 - No functional changes - Follow Mouse 0.74, which is more compatible with Moose 0.002 Mon Mar 15 15:56:36 2010 - First non-dev release 0.001_02 Mon Feb 22 17:42:50 2010 - Improve docs 0.001_01 Sat Feb 20 15:49:59 2010 - first dev release 0.001 Fri Feb 19 10:45:19 2010 - original version; created by Module::Setup diff --git a/Makefile.PL b/Makefile.PL index d6e080f..6217781 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,30 +1,30 @@ use strict; use warnings; use inc::Module::Install; -use Module::Install::TestTarget; +use Module::Install::TestTarget 0.12; all_from 'lib/MouseX/NativeTraits.pm'; requires 'Mouse' => 0.82; test_requires 'Any::Moose' => 0.13; test_requires 'Test::More' => 0.88; # done_testing() test_requires 'Test::Fatal' => 0.003; tests_recursive 't'; auto_set_repository() if -d '.git'; default_test_target env => { ANY_MOOSE => 'Mouse' }; test_target 'test_moose' => ( env => { ANY_MOOSE => 'Moose' }, ); clean_files qw( MouseX-NativeTraits-* *.stackdump cover_db nytprof *.out ); WriteAll(check_nmake => 0); diff --git a/lib/Mouse/Meta/Attribute/Native.pm b/lib/Mouse/Meta/Attribute/Native.pm index a9f760a..08967d7 100644 --- a/lib/Mouse/Meta/Attribute/Native.pm +++ b/lib/Mouse/Meta/Attribute/Native.pm @@ -1,31 +1,31 @@ package Mouse::Meta::Attribute::Native; use strict; -our $VERSION = '1.01'; +our $VERSION = '1.02'; 1; __END__ =head1 NAME Mouse::Meta::Attribute::Native - Extend your attribute interfaces =head1 SYNOPSIS # In your Makefile.PL # you can say: requires 'Mouse::Meta::Attribute::Native'; # just like as 'Moose::Meta::Attribute::Native' =head1 DESCRIPTION This module is just a hook to set C<Mouse::Meta::Attribute::Native> to prerequisites. =head1 SEE ALSO L<MouseX::NativeTraits> L<Moose::Meta::Attribute::Native> =cut diff --git a/lib/MouseX/NativeTraits.pm b/lib/MouseX/NativeTraits.pm index 247d01d..5995186 100644 --- a/lib/MouseX/NativeTraits.pm +++ b/lib/MouseX/NativeTraits.pm @@ -1,295 +1,295 @@ package MouseX::NativeTraits; use 5.006_002; use Mouse::Role; -our $VERSION = '1.01'; +our $VERSION = '1.02'; requires qw(method_provider_class helper_type); #has default => ( # is => 'bare', # don't create new methods # required => 1, #); has type_constraint => ( is => 'bare', # don't create new methods required => 1, ); has method_provider => ( is => 'ro', isa => 'Object', builder => '_build_method_provider', ); sub _build_method_provider{ my($self) = @_; my $mpc = $self->method_provider_class; Mouse::Util::load_class($mpc); return $mpc->new(attr => $self); } before _process_options => sub { my ( $self, $name, $options ) = @_; my $type = $self->helper_type; $options->{isa} = $type if !exists $options->{isa}; my $isa = Mouse::Util::TypeConstraints::find_or_create_isa_type_constraint( $options->{isa} ); ( $isa->is_a_type_of($type) ) || $self->throw_error( "The type constraint for $name must be a subtype of $type but it's a $isa"); $options->{default} = $self->_default_default if !exists $options->{default} && $self->can('_default_default'); }; around _canonicalize_handles => sub { my($next, $self) = @_; my $handles_ref = $self->handles; if( ref($handles_ref) ne 'HASH' ) { $self->throw_error( "The 'handles' option must be a HASH reference, not $handles_ref"); } my $provider = $self->method_provider; my %handles; while(my($name, $to) = each %{$handles_ref}){ $to = [$to] if !ref $to; $provider->has_generator($to->[0]) or $self->throw_error("$to->[0] is an unsupported method type"); $handles{$name} = $to; } return %handles; }; around _make_delegation_method => sub { my( $next, $self, $handle_name, $method_to_call) = @_; return $self->method_provider->generate($handle_name, $method_to_call); }; no Mouse::Role; 1; __END__ =head1 NAME MouseX::NativeTraits - Extend your attribute interfaces for Mouse =head1 VERSION -This document describes MouseX::NativeTraits version 1.01. +This document describes MouseX::NativeTraits version 1.02. =head1 SYNOPSIS package MyClass; use Mouse; has mapping => ( traits => ['Hash'], is => 'rw', isa => 'HashRef[Str]', default => sub { +{} }, handles => { exists_in_mapping => 'exists', ids_in_mapping => 'keys', get_mapping => 'get', set_mapping => 'set', set_quantity => [ set => 'quantity' ], }, ); =head1 DESCRIPTION While L<Mouse> attributes provide a way to name your accessors, readers, writers, clearers and predicates, MouseX::NativeTraits provides commonly used attribute helper methods for more specific types of data. As seen in the L</SYNOPSIS>, you specify the data structure via the C<traits> parameter. These traits will be loaded automatically, so you need not load MouseX::NativeTraits explicitly. This extention is compatible with Moose native traits, although it is not a part of Mouse core. =head1 PARAMETERS =head2 handles This is like C<handles> in L<Mouse/has>, but only HASH references are allowed. Keys are method names that you want installed locally, and values are methods from the method providers (below). Currying with delegated methods works normally for C<< handles >>. =head1 NATIVE TRAITS =head2 Array Common methods for array references. has 'queue' => ( traits => ['Array'], is => 'ro', isa => 'ArrayRef[Str]', default => sub { [] }, handles => { add_item => 'push', next_item => 'shift', } ); See L<MouseX::NativeTraits::ArrayRef>. =head2 Hash Common methods for hash references. has 'options' => ( traits => ['Hash'], is => 'ro', isa => 'HashRef[Str]', default => sub { {} }, handles => { set_option => 'set', get_option => 'get', has_option => 'exists', } ); See L<MouseX::NativeTraits::HashRef>. =head2 Code Common methods for code references. has 'callback' => ( traits => ['Code'], is => 'ro', isa => 'CodeRef', default => sub { sub { 'called' } }, handles => { call => 'execute', } ); See L<MouseX::NativeTraits::CodeRef>. =head2 Bool Common methods for boolean values. has 'is_lit' => ( traits => ['Bool'], is => 'rw', isa => 'Bool', default => 0, handles => { illuminate => 'set', darken => 'unset', flip_switch => 'toggle', is_dark => 'not', } ); See L<MouseX::NativeTraits::Bool>. =head2 String Common methods for string operations. has text => ( traits => ['String'], is => 'rw', isa => 'Str', default => q{}, handles => { add_text => 'append', replace_text => 'replace', # or replace_globally } ); See L<MouseX::NativeTraits::Str>. =head2 Number Common numerical operations. has value => ( traits => ['Number'], is => 'ro', isa => 'Int', default => 5, handles => { set => 'set', add => 'add', sub => 'sub', mul => 'mul', div => 'div', mod => 'mod', abs => 'abs', } ); See L<MouseX::NativeTraits::Num>. =head2 Counter Methods for incrementing and decrementing a counter attribute. has counter => ( traits => ['Counter'], is => 'ro', isa => 'Num', default => 0, handles => { inc_counter => 'inc', dec_counter => 'dec', reset_counter => 'reset', } ); See L<MouseX::NativeTraits::Counter>. =head1 DEPENDENCIES Perl 5.6.2 or later. =head1 BUGS All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. =head1 SEE ALSO L<Mouse> L<MouseX::AttributeHelpers> L<Moose> L<Moose::Meta::Attribute::Native> L<MooseX::AttributeHelpers> =head1 AUTHORS Goro Fuji (gfx) E<lt>gfuji(at)cpan.orgE<gt> This module is based on Moose native traits written by Stevan Little and others. =head1 LICENSE AND COPYRIGHT Copyright (c) 2010, Goro Fuji (gfx), mostly based on Moose, which is (c) Infinity Interactive, Inc (L<http://www.iinteractive.com>). This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L<perlartistic> for details. =cut
gfx/p5-MouseX-NativeTraits
7b71843354d8d16b810402a0ab2cac999860c0a3
Add an example for native traits + complex type constraints
diff --git a/example/complex_tc.pl b/example/complex_tc.pl new file mode 100644 index 0000000..fff9c1a --- /dev/null +++ b/example/complex_tc.pl @@ -0,0 +1,35 @@ +#!perl -w +use strict; +{ + package Foo; + use Any::Moose; + use Any::Moose '::Util::TypeConstraints'; + + subtype 'ArrayRef3', + as 'ArrayRef', + where { @{$_} <= 3 }; + + has 'a3' => ( + is => 'rw', + isa => 'ArrayRef3', + + traits => ['Array'], + + handles => { + push => 'push', + }, + default => sub { [] }, + ); + + no Any::Moose '::Util::TypeConstraints'; + no Any::Moose; +} + +my $foo = Foo->new; +eval { + $foo->push($_) for 10 .. 20; + 1; +} or warn $@; + +print $foo->dump; +
gfx/p5-MouseX-NativeTraits
a223d8b6503819a8addcda83819c386da4b4e3a1
Checking in changes prior to tagging of version 1.01.
diff --git a/Changes b/Changes index 9c658e7..4895404 100644 --- a/Changes +++ b/Changes @@ -1,17 +1,21 @@ Revision history for Perl extension MouseX::NativeTraits +1.01 2010-11-05 20:27:52 + - Requires Mouse 0.82 for type constraint robusity + - Follow Moose 1.19 except for smart coercions + 1.00 Mon Sep 27 15:01:21 2010 - No functional changes - Follow Mouse 0.74, which is more compatible with Moose 0.002 Mon Mar 15 15:56:36 2010 - First non-dev release 0.001_02 Mon Feb 22 17:42:50 2010 - Improve docs 0.001_01 Sat Feb 20 15:49:59 2010 - first dev release 0.001 Fri Feb 19 10:45:19 2010 - original version; created by Module::Setup diff --git a/Makefile.PL b/Makefile.PL index fc3490a..d6e080f 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,30 +1,30 @@ use strict; use warnings; use inc::Module::Install; use Module::Install::TestTarget; all_from 'lib/MouseX/NativeTraits.pm'; requires 'Mouse' => 0.82; test_requires 'Any::Moose' => 0.13; test_requires 'Test::More' => 0.88; # done_testing() -test_requires 'Test::Fatal' => 0.03; +test_requires 'Test::Fatal' => 0.003; tests_recursive 't'; auto_set_repository() if -d '.git'; default_test_target env => { ANY_MOOSE => 'Mouse' }; test_target 'test_moose' => ( env => { ANY_MOOSE => 'Moose' }, ); clean_files qw( MouseX-NativeTraits-* *.stackdump cover_db nytprof *.out ); WriteAll(check_nmake => 0); diff --git a/lib/Mouse/Meta/Attribute/Native.pm b/lib/Mouse/Meta/Attribute/Native.pm index b45f8a3..a9f760a 100644 --- a/lib/Mouse/Meta/Attribute/Native.pm +++ b/lib/Mouse/Meta/Attribute/Native.pm @@ -1,31 +1,31 @@ package Mouse::Meta::Attribute::Native; use strict; -our $VERSION = '1.00'; +our $VERSION = '1.01'; 1; __END__ =head1 NAME Mouse::Meta::Attribute::Native - Extend your attribute interfaces =head1 SYNOPSIS # In your Makefile.PL # you can say: requires 'Mouse::Meta::Attribute::Native'; # just like as 'Moose::Meta::Attribute::Native' =head1 DESCRIPTION This module is just a hook to set C<Mouse::Meta::Attribute::Native> to prerequisites. =head1 SEE ALSO L<MouseX::NativeTraits> L<Moose::Meta::Attribute::Native> =cut diff --git a/lib/MouseX/NativeTraits.pm b/lib/MouseX/NativeTraits.pm index 196251e..247d01d 100644 --- a/lib/MouseX/NativeTraits.pm +++ b/lib/MouseX/NativeTraits.pm @@ -1,295 +1,295 @@ package MouseX::NativeTraits; use 5.006_002; use Mouse::Role; -our $VERSION = '1.00'; +our $VERSION = '1.01'; requires qw(method_provider_class helper_type); #has default => ( # is => 'bare', # don't create new methods # required => 1, #); has type_constraint => ( is => 'bare', # don't create new methods required => 1, ); has method_provider => ( is => 'ro', isa => 'Object', builder => '_build_method_provider', ); sub _build_method_provider{ my($self) = @_; my $mpc = $self->method_provider_class; Mouse::Util::load_class($mpc); return $mpc->new(attr => $self); } before _process_options => sub { my ( $self, $name, $options ) = @_; my $type = $self->helper_type; $options->{isa} = $type if !exists $options->{isa}; my $isa = Mouse::Util::TypeConstraints::find_or_create_isa_type_constraint( $options->{isa} ); ( $isa->is_a_type_of($type) ) || $self->throw_error( "The type constraint for $name must be a subtype of $type but it's a $isa"); $options->{default} = $self->_default_default if !exists $options->{default} && $self->can('_default_default'); }; around _canonicalize_handles => sub { my($next, $self) = @_; my $handles_ref = $self->handles; if( ref($handles_ref) ne 'HASH' ) { $self->throw_error( "The 'handles' option must be a HASH reference, not $handles_ref"); } my $provider = $self->method_provider; my %handles; while(my($name, $to) = each %{$handles_ref}){ $to = [$to] if !ref $to; $provider->has_generator($to->[0]) or $self->throw_error("$to->[0] is an unsupported method type"); $handles{$name} = $to; } return %handles; }; around _make_delegation_method => sub { my( $next, $self, $handle_name, $method_to_call) = @_; return $self->method_provider->generate($handle_name, $method_to_call); }; no Mouse::Role; 1; __END__ =head1 NAME MouseX::NativeTraits - Extend your attribute interfaces for Mouse =head1 VERSION -This document describes MouseX::NativeTraits version 1.00. +This document describes MouseX::NativeTraits version 1.01. =head1 SYNOPSIS package MyClass; use Mouse; has mapping => ( traits => ['Hash'], is => 'rw', isa => 'HashRef[Str]', default => sub { +{} }, handles => { exists_in_mapping => 'exists', ids_in_mapping => 'keys', get_mapping => 'get', set_mapping => 'set', set_quantity => [ set => 'quantity' ], }, ); =head1 DESCRIPTION While L<Mouse> attributes provide a way to name your accessors, readers, writers, clearers and predicates, MouseX::NativeTraits provides commonly used attribute helper methods for more specific types of data. As seen in the L</SYNOPSIS>, you specify the data structure via the C<traits> parameter. These traits will be loaded automatically, so you need not load MouseX::NativeTraits explicitly. This extention is compatible with Moose native traits, although it is not a part of Mouse core. =head1 PARAMETERS =head2 handles This is like C<handles> in L<Mouse/has>, but only HASH references are allowed. Keys are method names that you want installed locally, and values are methods from the method providers (below). Currying with delegated methods works normally for C<< handles >>. =head1 NATIVE TRAITS =head2 Array Common methods for array references. has 'queue' => ( traits => ['Array'], is => 'ro', isa => 'ArrayRef[Str]', default => sub { [] }, handles => { add_item => 'push', next_item => 'shift', } ); See L<MouseX::NativeTraits::ArrayRef>. =head2 Hash Common methods for hash references. has 'options' => ( traits => ['Hash'], is => 'ro', isa => 'HashRef[Str]', default => sub { {} }, handles => { set_option => 'set', get_option => 'get', has_option => 'exists', } ); See L<MouseX::NativeTraits::HashRef>. =head2 Code Common methods for code references. has 'callback' => ( traits => ['Code'], is => 'ro', isa => 'CodeRef', default => sub { sub { 'called' } }, handles => { call => 'execute', } ); See L<MouseX::NativeTraits::CodeRef>. =head2 Bool Common methods for boolean values. has 'is_lit' => ( traits => ['Bool'], is => 'rw', isa => 'Bool', default => 0, handles => { illuminate => 'set', darken => 'unset', flip_switch => 'toggle', is_dark => 'not', } ); See L<MouseX::NativeTraits::Bool>. =head2 String Common methods for string operations. has text => ( traits => ['String'], is => 'rw', isa => 'Str', default => q{}, handles => { add_text => 'append', replace_text => 'replace', # or replace_globally } ); See L<MouseX::NativeTraits::Str>. =head2 Number Common numerical operations. has value => ( traits => ['Number'], is => 'ro', isa => 'Int', default => 5, handles => { set => 'set', add => 'add', sub => 'sub', mul => 'mul', div => 'div', mod => 'mod', abs => 'abs', } ); See L<MouseX::NativeTraits::Num>. =head2 Counter Methods for incrementing and decrementing a counter attribute. has counter => ( traits => ['Counter'], is => 'ro', isa => 'Num', default => 0, handles => { inc_counter => 'inc', dec_counter => 'dec', reset_counter => 'reset', } ); See L<MouseX::NativeTraits::Counter>. =head1 DEPENDENCIES Perl 5.6.2 or later. =head1 BUGS All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. =head1 SEE ALSO L<Mouse> L<MouseX::AttributeHelpers> L<Moose> L<Moose::Meta::Attribute::Native> L<MooseX::AttributeHelpers> =head1 AUTHORS Goro Fuji (gfx) E<lt>gfuji(at)cpan.orgE<gt> This module is based on Moose native traits written by Stevan Little and others. =head1 LICENSE AND COPYRIGHT Copyright (c) 2010, Goro Fuji (gfx), mostly based on Moose, which is (c) Infinity Interactive, Inc (L<http://www.iinteractive.com>). This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L<perlartistic> for details. =cut
gfx/p5-MouseX-NativeTraits
cc078aecfc75a83e86c7a5259e66340a0581a704
Make tests Any::Moose based
diff --git a/Makefile.PL b/Makefile.PL index 6340926..fc3490a 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,23 +1,30 @@ use strict; use warnings; use inc::Module::Install; +use Module::Install::TestTarget; all_from 'lib/MouseX/NativeTraits.pm'; -requires 'Mouse' => 0.74; +requires 'Mouse' => 0.82; -test_requires 'Test::More' => 0.88; # done_testing() -test_requires 'Test::Exception' => 0.29; +test_requires 'Any::Moose' => 0.13; +test_requires 'Test::More' => 0.88; # done_testing() +test_requires 'Test::Fatal' => 0.03; tests_recursive 't'; auto_set_repository() if -d '.git'; +default_test_target env => { ANY_MOOSE => 'Mouse' }; +test_target 'test_moose' => ( + env => { ANY_MOOSE => 'Moose' }, +); + clean_files qw( MouseX-NativeTraits-* *.stackdump cover_db nytprof *.out ); WriteAll(check_nmake => 0); diff --git a/t/01_basic.t b/t/01_basic.t index 2ede295..21a201e 100644 --- a/t/01_basic.t +++ b/t/01_basic.t @@ -1,71 +1,71 @@ #!perl -w use strict; use Test::More; { package MyClass; - use Mouse; + use Any::Moose; has stack => ( is => 'rw', isa => 'ArrayRef', traits => ['Array'], handles => { pop => 'pop', push => 'push', top => [ get => -1 ], stack_is_empty => 'is_empty', }, default => sub{ [] }, ); has mapping => ( is => 'rw', isa => 'HashRef', traits => ['Hash'], handles => { - keys => 'sorted_keys', + keys => 'keys', values => 'values', store_to_map => 'set', map_count => 'count', }, default => sub{ +{} }, ); } my $o = MyClass->new(); note 'Array'; $o->push(10); is $o->top, 10; $o->push(20); is $o->top, 20; ok !$o->stack_is_empty; is $o->pop, 20; is $o->top, 10; is $o->pop, 10; is $o->pop, undef; ok $o->stack_is_empty; note 'Hash'; $o->store_to_map(aaa => 42, bbb => 10); -is join(' ', $o->keys), 'aaa bbb'; +is join(' ', sort $o->keys), 'aaa bbb'; is join(' ', sort $o->values), '10 42'; is $o->map_count, 2; $o->store_to_map(ccc => 99); -is join(' ', $o->keys), 'aaa bbb ccc'; +is join(' ', sort $o->keys), 'aaa bbb ccc'; is join(' ', sort $o->values), '10 42 99'; is $o->map_count, 3; done_testing; diff --git a/t/02_meta.t b/t/02_meta.t index 74add34..a3c102f 100644 --- a/t/02_meta.t +++ b/t/02_meta.t @@ -1,41 +1,42 @@ #!perl -w use strict; use Test::More; -use Test::Exception; +use Test::Fatal; -use Mouse; +use Any::Moose; -lives_ok { +is exception { has foo => ( traits => [qw(Array)], default => sub{ [] }, handles => { mypush0 => 'push' }, ); -} '"is" parameter can be omitted'; +}, undef, '"is" parameter can be omitted'; #throws_ok { # has bar1 => ( # traits => [qw(Array)], # handles => { mypush1 => 'push' }, # ); #} qr/default .* is \s+ required/xms; -throws_ok { +my $e = exception { has bar2 => ( traits => [qw(Array)], default => sub{ [] }, handles => { push => 'mypush2' }, ); -} qr/\b unsupported \b/xms; +}; +like $e, qr/\b unsupported \b/xms, 'wrong use of handles'; -throws_ok { +like exception { has bar3 => ( traits => [qw(Array)], isa => 'HashRef', default => sub{ [] }, handles => { mypush3 => 'push' }, ); -} qr/must be a subtype of ArrayRef/; +}, qr/must be a subtype of ArrayRef/; done_testing; diff --git a/t/03_extra.t b/t/03_extra.t index b2b7717..1424c6b 100644 --- a/t/03_extra.t +++ b/t/03_extra.t @@ -1,44 +1,63 @@ #!perl -w - +# Mouse specific features use strict; use Test::More; { package MyClass; use Mouse; has list => ( is => 'rw', isa => 'ArrayRef', traits => ['Array'], handles => { any => 'any', sort_by => 'sort_by', sort_in_place_by => 'sort_in_place_by', apply => 'apply', map => 'map', }, default => sub{ [] }, ); + + has hash => ( + is => 'rw', + isa => 'HashRef', + + traits => ['Hash'], + + handles => { + sorted_keys => 'sorted_keys', + }, + default => sub{ {} }, + ); } my $o = MyClass->new(list => [ {value => 3}, {value => 10}, { value => 0 } ]); +note 'Array'; + ok $o->any(sub{ $_->{value} == 0 }), 'any'; is join(' ', map{ $_->{value} } $o->sort_by(sub{ $_->{value} }, sub{ $_[0] <=> $_[1] })), '0 3 10', 'sort_by'; $o->sort_in_place_by(sub{ $_->{value} }, sub{ $_[0] <=> $_[1] }); is join(' ', $o->map(sub{ $_->{value} })), '0 3 10', 'sort_in_place_by'; is join(' ', $o->apply(sub{ $_ = $_->{value} })), '0 3 10', 'apply'; is join(' ', $o->map(sub{ $_->{value} })), '0 3 10', 'apply does not affect the original value'; +note 'Hash'; + +$o->hash({ 'a' => 10, 'b' => 20, 'c' => 30 }); +is join(' ', $o->sorted_keys), 'a b c', 'sorted_keys'; + done_testing; diff --git a/t/070_native_traits/010_trait_array.t b/t/070_native_traits/010_trait_array.t index 2236378..d04b306 100644 --- a/t/070_native_traits/010_trait_array.t +++ b/t/070_native_traits/010_trait_array.t @@ -1,585 +1,585 @@ #!/usr/bin/perl use strict; use warnings; -use lib 't/lib'; - -use Mouse (); -use Mouse::Util::TypeConstraints; +use Any::Moose (); +use Any::Moose '::Util::TypeConstraints'; #use NoInlineAttribute; use Test::More; use Test::Fatal; -use Test::Mouse; +BEGIN { + eval 'use Test::' . any_moose(); +} { my %handles = ( count => 'count', elements => 'elements', is_empty => 'is_empty', push => 'push', push_curried => [ push => 42, 84 ], unshift => 'unshift', unshift_curried => [ unshift => 42, 84 ], pop => 'pop', shift => 'shift', get => 'get', get_curried => [ get => 1 ], set => 'set', set_curried_1 => [ set => 1 ], set_curried_2 => [ set => ( 1, 98 ) ], accessor => 'accessor', accessor_curried_1 => [ accessor => 1 ], accessor_curried_2 => [ accessor => ( 1, 90 ) ], clear => 'clear', delete => 'delete', delete_curried => [ delete => 1 ], insert => 'insert', insert_curried => [ insert => ( 1, 101 ) ], splice => 'splice', splice_curried_1 => [ splice => 1 ], splice_curried_2 => [ splice => 1, 2 ], splice_curried_all => [ splice => 1, 2, ( 3, 4, 5 ) ], sort => 'sort', sort_curried => [ sort => ( sub { $_[1] <=> $_[0] } ) ], sort_in_place => 'sort_in_place', sort_in_place_curried => [ sort_in_place => ( sub { $_[1] <=> $_[0] } ) ], map => 'map', map_curried => [ map => ( sub { $_ + 1 } ) ], grep => 'grep', grep_curried => [ grep => ( sub { $_ < 5 } ) ], first => 'first', first_curried => [ first => ( sub { $_ % 2 } ) ], join => 'join', join_curried => [ join => '-' ], shuffle => 'shuffle', uniq => 'uniq', reduce => 'reduce', reduce_curried => [ reduce => ( sub { $_[0] * $_[1] } ) ], #natatime => 'natatime', #natatime_curried => [ natatime => 2 ], ); my $name = 'Foo1'; sub build_class { my %attr = @_; - my $class = Mouse::Meta::Class->create( + my $class = any_moose('::Meta::Class')->create( $name++, - superclasses => ['Mouse::Object'], + superclasses => [any_moose('::Object')], ); my @traits = 'Array'; push @traits, 'NoInlineAttribute' if delete $attr{no_inline}; $class->add_attribute( _values => ( traits => \@traits, is => 'rw', isa => 'ArrayRef[Int]', default => sub { [] }, handles => \%handles, clearer => '_clear_values', %attr, ), ); return ( $class->name, \%handles ); } } { package Overloader; use overload '&{}' => sub { ${ $_[0] } }, bool => sub {1}; sub new { bless \$_[1], $_[0]; } } { run_tests(build_class); run_tests( build_class( lazy => 1, default => sub { [ 42, 84 ] } ) ); run_tests( build_class( trigger => sub { } ) ); #run_tests( build_class( no_inline => 1 ) ); # Will force the inlining code to check the entire arrayref when it is modified. subtype 'MyArrayRef', as 'ArrayRef', where { 1 }; run_tests( build_class( isa => 'MyArrayRef' ) ); coerce 'MyArrayRef', from 'ArrayRef', via { $_ }; run_tests( build_class( isa => 'MyArrayRef', coerce => 1 ) ); } sub run_tests { my ( $class, $handles ) = @_; can_ok( $class, $_ ) for sort keys %{$handles}; with_immutable { my $obj = $class->new( _values => [ 10, 12, 42 ] ); is_deeply( $obj->_values, [ 10, 12, 42 ], 'values can be set in constructor' ); ok( !$obj->is_empty, 'values is not empty' ); is( $obj->count, 3, 'count returns 3' ); like( exception { $obj->count(22) }, qr/Cannot call count with any arguments/, 'throws an error when passing an argument passed to count' ); is( exception { $obj->push( 1, 2, 3 ) }, undef, 'pushed three new values and lived' ); is( exception { $obj->push() }, undef, 'call to push without arguments lives' ); is( exception { is( $obj->unshift( 101, 22 ), 8, 'unshift returns size of the new array' ); }, undef, 'unshifted two values and lived' ); is_deeply( $obj->_values, [ 101, 22, 10, 12, 42, 1, 2, 3 ], 'unshift changed the value of the array in the object' ); is( exception { $obj->unshift() }, undef, 'call to unshift without arguments lives' ); is( $obj->pop, 3, 'pop returns the last value in the array' ); is_deeply( $obj->_values, [ 101, 22, 10, 12, 42, 1, 2 ], 'pop changed the value of the array in the object' ); like( exception { $obj->pop(42) }, qr/Cannot call pop with any arguments/, 'call to pop with arguments dies' ); is( $obj->shift, 101, 'shift returns the first value' ); like( exception { $obj->shift(42) }, qr/Cannot call shift with any arguments/, 'call to shift with arguments dies' ); is_deeply( $obj->_values, [ 22, 10, 12, 42, 1, 2 ], 'shift changed the value of the array in the object' ); is_deeply( [ $obj->elements ], [ 22, 10, 12, 42, 1, 2 ], 'call to elements returns values as a list' ); like( exception { $obj->elements(22) }, qr/Cannot call elements with any arguments/, 'throws an error when passing an argument passed to elements' ); $obj->_values( [ 1, 2, 3 ] ); is( $obj->get(0), 1, 'get values at index 0' ); is( $obj->get(1), 2, 'get values at index 1' ); is( $obj->get(2), 3, 'get values at index 2' ); is( $obj->get_curried, 2, 'get_curried returns value at index 1' ); like( exception { $obj->get() }, qr/Cannot call get without at least 1 argument/, 'throws an error when get is called without any arguments' ); like( exception { $obj->get( {} ) }, qr/The index passed to get must be an integer/, 'throws an error when get is called with an invalid argument' ); like( exception { $obj->get(2.2) }, qr/The index passed to get must be an integer/, 'throws an error when get is called with an invalid argument' ); like( exception { $obj->get('foo') }, qr/The index passed to get must be an integer/, 'throws an error when get is called with an invalid argument' ); like( exception { $obj->get_curried(2) }, qr/Cannot call get with more than 1 argument/, 'throws an error when get_curried is called with an argument' ); is( exception { is( $obj->set( 1, 100 ), 100, 'set returns new value' ); }, undef, 'set value at index 1 lives' ); is( $obj->get(1), 100, 'get value at index 1 returns new value' ); like( exception { $obj->set( 1, 99, 42 ) }, qr/Cannot call set with more than 2 arguments/, 'throws an error when set is called with three arguments' ); is( exception { $obj->set_curried_1(99) }, undef, 'set_curried_1 lives' ); is( $obj->get(1), 99, 'get value at index 1 returns new value' ); like( exception { $obj->set_curried_1( 99, 42 ) }, qr/Cannot call set with more than 2 arguments/, 'throws an error when set_curried_1 is called with two arguments' ); is( exception { $obj->set_curried_2 }, undef, 'set_curried_2 lives' ); is( $obj->get(1), 98, 'get value at index 1 returns new value' ); like( exception { $obj->set_curried_2(42) }, qr/Cannot call set with more than 2 arguments/, 'throws an error when set_curried_2 is called with one argument' ); is( $obj->accessor(1), 98, 'accessor with one argument returns value at index 1' ); is( exception { is( $obj->accessor( 1 => 97 ), 97, 'accessor returns new value' ); }, undef, 'accessor as writer lives' ); like( exception { $obj->accessor; }, qr/Cannot call accessor without at least 1 argument/, 'throws an error when accessor is called without arguments' ); is( $obj->get(1), 97, 'accessor set value at index 1' ); like( exception { $obj->accessor( 1, 96, 42 ) }, qr/Cannot call accessor with more than 2 arguments/, 'throws an error when accessor is called with three arguments' ); is( $obj->accessor_curried_1, 97, 'accessor_curried_1 returns expected value when called with no arguments' ); is( exception { $obj->accessor_curried_1(95) }, undef, 'accessor_curried_1 as writer lives' ); is( $obj->get(1), 95, 'accessor_curried_1 set value at index 1' ); like( exception { $obj->accessor_curried_1( 96, 42 ) }, qr/Cannot call accessor with more than 2 arguments/, 'throws an error when accessor_curried_1 is called with two arguments' ); is( exception { $obj->accessor_curried_2 }, undef, 'accessor_curried_2 as writer lives' ); is( $obj->get(1), 90, 'accessor_curried_2 set value at index 1' ); like( exception { $obj->accessor_curried_2(42) }, qr/Cannot call accessor with more than 2 arguments/, 'throws an error when accessor_curried_2 is called with one argument' ); is( exception { $obj->clear }, undef, 'clear lives' ); ok( $obj->is_empty, 'values is empty after call to clear' ); $obj->set( 0 => 42 ); like( exception { $obj->clear(50) }, qr/Cannot call clear with any arguments/, 'throws an error when clear is called with an argument' ); ok( !$obj->is_empty, 'values is not empty after failed call to clear' ); like( exception { $obj->is_empty(50) }, qr/Cannot call is_empty with any arguments/, 'throws an error when is_empty is called with an argument' ); $obj->clear; is( $obj->push( 1, 5, 10, 42 ), 4, 'pushed 4 elements, got number of elements in the array back' ); is( exception { is( $obj->delete(2), 10, 'delete returns deleted value' ); }, undef, 'delete lives' ); is_deeply( $obj->_values, [ 1, 5, 42 ], 'delete removed the specified element' ); like( exception { $obj->delete( 2, 3 ) }, qr/Cannot call delete with more than 1 argument/, 'throws an error when delete is called with two arguments' ); is( exception { $obj->delete_curried }, undef, 'delete_curried lives' ); is_deeply( $obj->_values, [ 1, 42 ], 'delete removed the specified element' ); like( exception { $obj->delete_curried(2) }, qr/Cannot call delete with more than 1 argument/, 'throws an error when delete_curried is called with one argument' ); is( exception { $obj->insert( 1, 21 ) }, undef, 'insert lives' ); is_deeply( $obj->_values, [ 1, 21, 42 ], 'insert added the specified element' ); like( exception { $obj->insert( 1, 22, 44 ) }, qr/Cannot call insert with more than 2 arguments/, 'throws an error when insert is called with three arguments' ); is( exception { is_deeply( [ $obj->splice( 1, 0, 2, 3 ) ], [], 'return value of splice is empty list when not removing elements' ); }, undef, 'splice lives' ); is_deeply( $obj->_values, [ 1, 2, 3, 21, 42 ], 'splice added the specified elements' ); is( exception { is_deeply( [ $obj->splice( 1, 2, 99 ) ], [ 2, 3 ], 'splice returns list of removed values' ); }, undef, 'splice lives' ); is_deeply( $obj->_values, [ 1, 99, 21, 42 ], 'splice added the specified elements' ); like( exception { $obj->splice() }, qr/Cannot call splice without at least 1 argument/, 'throws an error when splice is called with no arguments' ); like( exception { $obj->splice( 1, 'foo', ) }, qr/The length argument passed to splice must be an integer/, 'throws an error when splice is called with an invalid length' ); is( exception { $obj->splice_curried_1( 2, 101 ) }, undef, 'splice_curried_1 lives' ); is_deeply( $obj->_values, [ 1, 101, 42 ], 'splice added the specified elements' ); is( exception { $obj->splice_curried_2(102) }, undef, 'splice_curried_2 lives' ); is_deeply( $obj->_values, [ 1, 102 ], 'splice added the specified elements' ); is( exception { $obj->splice_curried_all }, undef, 'splice_curried_all lives' ); is_deeply( $obj->_values, [ 1, 3, 4, 5 ], 'splice added the specified elements' ); is_deeply( scalar $obj->splice( 1, 2 ), 4, 'splice in scalar context returns last element removed' ); is_deeply( scalar $obj->splice( 1, 0, 42 ), undef, 'splice in scalar context returns undef when no elements are removed' ); $obj->_values( [ 3, 9, 5, 22, 11 ] ); is_deeply( [ $obj->sort ], [ 11, 22, 3, 5, 9 ], 'sort returns sorted values' ); is_deeply( [ $obj->sort( sub { $_[0] <=> $_[1] } ) ], [ 3, 5, 9, 11, 22 ], 'sort returns values sorted by provided function' ); like( exception { $obj->sort(1) }, qr/The argument passed to sort must be a code reference/, 'throws an error when passing a non coderef to sort' ); like( exception { $obj->sort( sub { }, 27 ); }, qr/Cannot call sort with more than 1 argument/, 'throws an error when passing two arguments to sort' ); $obj->_values( [ 3, 9, 5, 22, 11 ] ); $obj->sort_in_place; is_deeply( $obj->_values, [ 11, 22, 3, 5, 9 ], 'sort_in_place sorts values' ); $obj->sort_in_place( sub { $_[0] <=> $_[1] } ); is_deeply( $obj->_values, [ 3, 5, 9, 11, 22 ], 'sort_in_place with function sorts values' ); like( exception { $obj->sort_in_place( 27 ); }, qr/The argument passed to sort_in_place must be a code reference/, 'throws an error when passing a non coderef to sort_in_place' ); like( exception { $obj->sort_in_place( sub { }, 27 ); }, qr/Cannot call sort_in_place with more than 1 argument/, 'throws an error when passing two arguments to sort_in_place' ); $obj->_values( [ 3, 9, 5, 22, 11 ] ); $obj->sort_in_place_curried; is_deeply( $obj->_values, [ 22, 11, 9, 5, 3 ], 'sort_in_place_curried sorts values' ); like( exception { $obj->sort_in_place_curried(27) }, qr/Cannot call sort_in_place with more than 1 argument/, 'throws an error when passing one argument passed to sort_in_place_curried' ); $obj->_values( [ 1 .. 5 ] ); is_deeply( [ $obj->map( sub { $_ + 1 } ) ], [ 2 .. 6 ], 'map returns the expected values' ); like( exception { $obj->map }, qr/Cannot call map without at least 1 argument/, 'throws an error when passing no arguments to map' ); like( exception { $obj->map( sub { }, 2 ); }, qr/Cannot call map with more than 1 argument/, 'throws an error when passing two arguments to map' ); like( exception { $obj->map( {} ) }, qr/The argument passed to map must be a code reference/, 'throws an error when passing a non coderef to map' ); $obj->_values( [ 1 .. 5 ] ); is_deeply( [ $obj->map_curried ], [ 2 .. 6 ], 'map_curried returns the expected values' ); like( exception { $obj->map_curried( sub { } ); }, qr/Cannot call map with more than 1 argument/, 'throws an error when passing one argument passed to map_curried' ); $obj->_values( [ 2 .. 9 ] ); is_deeply( [ $obj->grep( sub { $_ < 5 } ) ], [ 2 .. 4 ], 'grep returns the expected values' ); like( exception { $obj->grep }, qr/Cannot call grep without at least 1 argument/, 'throws an error when passing no arguments to grep' ); like( exception { $obj->grep( sub { }, 2 ); }, qr/Cannot call grep with more than 1 argument/, 'throws an error when passing two arguments to grep' ); like( exception { $obj->grep( {} ) }, qr/The argument passed to grep must be a code reference/, 'throws an error when passing a non coderef to grep' ); my $overloader = Overloader->new( sub { $_ < 5 } ); is_deeply( [ $obj->grep(\&$overloader) ], [ 2 .. 4 ], 'grep works with obj that overload code dereferencing' ); is_deeply( [ $obj->grep_curried ], [ 2 .. 4 ], 'grep_curried returns the expected values' ); like( exception { $obj->grep_curried( sub { } ); }, qr/Cannot call grep with more than 1 argument/, 'throws an error when passing one argument passed to grep_curried' ); $obj->_values( [ 2, 4, 22, 99, 101, 6 ] ); is( $obj->first( sub { $_ % 2 } ), 99, 'first returns expected value' ); like( exception { $obj->first }, qr/Cannot call first without at least 1 argument/, 'throws an error when passing no arguments to first' ); like( exception { $obj->first( sub { }, 2 ); }, qr/Cannot call first with more than 1 argument/, 'throws an error when passing two arguments to first' ); like( exception { $obj->first( {} ) }, qr/The argument passed to first must be a code reference/, 'throws an error when passing a non coderef to first' ); is( $obj->first_curried, 99, 'first_curried returns expected value' ); like( exception { $obj->first_curried( sub { } ); }, qr/Cannot call first with more than 1 argument/, 'throws an error when passing one argument passed to first_curried' ); $obj->_values( [ 1 .. 4 ] ); is( $obj->join('-'), '1-2-3-4', 'join returns expected result' ); is( $obj->join(q{}), '1234', 'join returns expected result when joining with empty string' ); like( exception { $obj->join }, qr/Cannot call join without at least 1 argument/, 'throws an error when passing no arguments to join' ); like( exception { $obj->join( '-', 2 ) }, qr/Cannot call join with more than 1 argument/, 'throws an error when passing two arguments to join' ); like( exception { $obj->join( {} ) }, qr/The argument passed to join must be a string/, 'throws an error when passing a non string to join' ); is_deeply( [ sort $obj->shuffle ], [ 1 .. 4 ], 'shuffle returns all values (cannot check for a random order)' ); like( exception { $obj->shuffle(2) }, qr/Cannot call shuffle with any arguments/, 'throws an error when passing an argument passed to shuffle' ); $obj->_values( [ 1 .. 4, 2, 5, 3, 7, 3, 3, 1 ] ); is_deeply( [ $obj->uniq ], [ 1 .. 4, 5, 7 ], 'uniq returns expected values (in original order)' ); like( exception { $obj->uniq(2) }, qr/Cannot call uniq with any arguments/, 'throws an error when passing an argument passed to uniq' ); $obj->_values( [ 1 .. 5 ] ); is( $obj->reduce( sub { $_[0] * $_[1] } ), 120, 'reduce returns expected value' ); like( exception { $obj->reduce }, qr/Cannot call reduce without at least 1 argument/, 'throws an error when passing no arguments to reduce' ); like( exception { $obj->reduce( sub { }, 2 ); }, qr/Cannot call reduce with more than 1 argument/, 'throws an error when passing two arguments to reduce' ); like( exception { $obj->reduce( {} ) }, qr/The argument passed to reduce must be a code reference/, 'throws an error when passing a non coderef to reduce' ); is( $obj->reduce_curried, 120, 'reduce_curried returns expected value' ); like( exception { $obj->reduce_curried( sub { } ); }, qr/Cannot call reduce with more than 1 argument/, 'throws an error when passing one argument passed to reduce_curried' ); $obj->_values( [ 1 .. 6 ] ); # my $it = $obj->natatime(2); diff --git a/t/070_native_traits/011_array_subtypes.t b/t/070_native_traits/011_array_subtypes.t index f74a56c..bbb3e6d 100644 --- a/t/070_native_traits/011_array_subtypes.t +++ b/t/070_native_traits/011_array_subtypes.t @@ -1,237 +1,236 @@ #!/usr/bin/env perl use strict; use warnings; use Test::More; use Test::Fatal; { - use Mouse::Util::TypeConstraints; + use Any::Moose '::Util::TypeConstraints'; use List::Util qw(sum); subtype 'A1', as 'ArrayRef[Int]'; subtype 'A2', as 'ArrayRef', where { @$_ < 2 }; subtype 'A3', as 'ArrayRef[Int]', where { ( sum(@$_) || 0 ) < 5 }; subtype 'A5', as 'ArrayRef'; coerce 'A5', from 'Str', via { [ $_ ] }; - no Mouse::Util::TypeConstraints; } { package Foo; - use Mouse; + use Any::Moose; has array => ( traits => ['Array'], is => 'rw', isa => 'ArrayRef', handles => { push_array => 'push', }, ); has array_int => ( traits => ['Array'], is => 'rw', isa => 'ArrayRef[Int]', handles => { push_array_int => 'push', }, ); has a1 => ( traits => ['Array'], is => 'rw', isa => 'A1', handles => { push_a1 => 'push', }, ); has a2 => ( traits => ['Array'], is => 'rw', isa => 'A2', handles => { push_a2 => 'push', }, ); has a3 => ( traits => ['Array'], is => 'rw', isa => 'A3', handles => { push_a3 => 'push', }, ); has a4 => ( traits => ['Array'], is => 'rw', isa => 'ArrayRef', lazy => 1, default => 'invalid', clearer => '_clear_a4', handles => { get_a4 => 'get', push_a4 => 'push', accessor_a4 => 'accessor', }, ); has a5 => ( traits => ['Array'], is => 'rw', isa => 'A5', coerce => 1, lazy => 1, default => 'invalid', clearer => '_clear_a5', handles => { get_a5 => 'get', push_a5 => 'push', accessor_a5 => 'accessor', }, ); } my $foo = Foo->new; { $foo->array( [] ); is_deeply( $foo->array, [], "array - correct contents" ); $foo->push_array('foo'); is_deeply( $foo->array, ['foo'], "array - correct contents" ); } { $foo->array_int( [] ); is_deeply( $foo->array_int, [], "array_int - correct contents" ); isnt( exception { $foo->push_array_int('foo') }, undef, "array_int - can't push wrong type" ); is_deeply( $foo->array_int, [], "array_int - correct contents" ); $foo->push_array_int(1); is_deeply( $foo->array_int, [1], "array_int - correct contents" ); } { isnt( exception { $foo->push_a1('foo') }, undef, "a1 - can't push onto undef" ); $foo->a1( [] ); is_deeply( $foo->a1, [], "a1 - correct contents" ); isnt( exception { $foo->push_a1('foo') }, undef, "a1 - can't push wrong type" ); is_deeply( $foo->a1, [], "a1 - correct contents" ); $foo->push_a1(1); is_deeply( $foo->a1, [1], "a1 - correct contents" ); } { isnt( exception { $foo->push_a2('foo') }, undef, "a2 - can't push onto undef" ); $foo->a2( [] ); is_deeply( $foo->a2, [], "a2 - correct contents" ); $foo->push_a2('foo'); is_deeply( $foo->a2, ['foo'], "a2 - correct contents" ); isnt( exception { $foo->push_a2('bar') }, undef, "a2 - can't push more than one element" ); is_deeply( $foo->a2, ['foo'], "a2 - correct contents" ); } { isnt( exception { $foo->push_a3(1) }, undef, "a3 - can't push onto undef" ); $foo->a3( [] ); is_deeply( $foo->a3, [], "a3 - correct contents" ); isnt( exception { $foo->push_a3('foo') }, undef, "a3 - can't push non-int" ); isnt( exception { $foo->push_a3(100) }, undef, "a3 - can't violate overall type constraint" ); is_deeply( $foo->a3, [], "a3 - correct contents" ); $foo->push_a3(1); is_deeply( $foo->a3, [1], "a3 - correct contents" ); isnt( exception { $foo->push_a3(100) }, undef, "a3 - can't violate overall type constraint" ); is_deeply( $foo->a3, [1], "a3 - correct contents" ); $foo->push_a3(3); is_deeply( $foo->a3, [ 1, 3 ], "a3 - correct contents" ); } { my $expect = qr/\QAttribute (a4) does not pass the type constraint because: Validation failed for 'ArrayRef' with value invalid/; like( exception { $foo->accessor_a4(0); }, $expect, 'invalid default is caught when trying to read via accessor' ); like( exception { $foo->accessor_a4( 0 => 42 ); }, $expect, 'invalid default is caught when trying to write via accessor' ); like( exception { $foo->push_a4(42); }, $expect, 'invalid default is caught when trying to push' ); like( exception { $foo->get_a4(42); }, $expect, 'invalid default is caught when trying to get' ); } { my $foo = Foo->new; is( $foo->accessor_a5(0), 'invalid', 'lazy default is coerced when trying to read via accessor' ); $foo->_clear_a5; $foo->accessor_a5( 1 => 'thing' ); is_deeply( $foo->a5, [ 'invalid', 'thing' ], 'lazy default is coerced when trying to write via accessor' ); $foo->_clear_a5; $foo->push_a5('thing'); is_deeply( $foo->a5, [ 'invalid', 'thing' ], 'lazy default is coerced when trying to push' ); $foo->_clear_a5; is( $foo->get_a5(0), 'invalid', 'lazy default is coerced when trying to get' ); } done_testing; diff --git a/t/070_native_traits/020_trait_bool.t b/t/070_native_traits/020_trait_bool.t index 8c55539..70d1bab 100644 --- a/t/070_native_traits/020_trait_bool.t +++ b/t/070_native_traits/020_trait_bool.t @@ -1,103 +1,103 @@ #!/usr/bin/perl use strict; use warnings; -use lib 't/lib'; - -use Mouse (); -use Mouse::Util::TypeConstraints; +use Any::Moose (); +use Any::Moose '::Util::TypeConstraints'; #use NoInlineAttribute; use Test::More; use Test::Fatal; -use Test::Mouse; +BEGIN { + eval 'use Test::' . any_moose(); +} { my %handles = ( illuminate => 'set', darken => 'unset', flip_switch => 'toggle', is_dark => 'not', ); my $name = 'Foo1'; sub build_class { my %attr = @_; - my $class = Mouse::Meta::Class->create( + my $class = any_moose('::Meta::Class')->create( $name++, - superclasses => ['Mouse::Object'], + superclasses => [any_moose '::Object'], ); my @traits = 'Bool'; push @traits, 'NoInlineAttribute' if delete $attr{no_inline}; $class->add_attribute( is_lit => ( traits => \@traits, is => 'rw', isa => 'Bool', default => 0, handles => \%handles, clearer => '_clear_is_list', %attr, ), ); return ( $class->name, \%handles ); } } { run_tests(build_class); run_tests( build_class( lazy => 1 ) ); run_tests( build_class( trigger => sub { } ) ); #run_tests( build_class( no_inline => 1 ) ); # Will force the inlining code to check the entire hashref when it is modified. subtype 'MyBool', as 'Bool', where { 1 }; run_tests( build_class( isa => 'MyBool' ) ); coerce 'MyBool', from 'Bool', via { $_ }; run_tests( build_class( isa => 'MyBool', coerce => 1 ) ); } sub run_tests { my ( $class, $handles ) = @_; can_ok( $class, $_ ) for sort keys %{$handles}; with_immutable { my $obj = $class->new; ok( $obj->illuminate, 'set returns true' ); ok( $obj->is_lit, 'set is_lit to 1 using ->illuminate' ); ok( !$obj->is_dark, 'check if is_dark does the right thing' ); like( exception { $obj->illuminate(1) }, qr/Cannot call set with any arguments/, 'set throws an error when an argument is passed' ); ok( !$obj->darken, 'unset returns false' ); ok( !$obj->is_lit, 'set is_lit to 0 using ->darken' ); ok( $obj->is_dark, 'check if is_dark does the right thing' ); like( exception { $obj->darken(1) }, qr/Cannot call unset with any arguments/, 'unset throws an error when an argument is passed' ); ok( $obj->flip_switch, 'toggle returns new value' ); ok( $obj->is_lit, 'toggle is_lit back to 1 using ->flip_switch' ); ok( !$obj->is_dark, 'check if is_dark does the right thing' ); like( exception { $obj->flip_switch(1) }, qr/Cannot call toggle with any arguments/, 'toggle throws an error when an argument is passed' ); $obj->flip_switch; ok( !$obj->is_lit, 'toggle is_lit back to 0 again using ->flip_switch' ); ok( $obj->is_dark, 'check if is_dark does the right thing' ); } $class; } done_testing; diff --git a/t/070_native_traits/030_trait_code.t b/t/070_native_traits/030_trait_code.t index 73ea16d..826c499 100644 --- a/t/070_native_traits/030_trait_code.t +++ b/t/070_native_traits/030_trait_code.t @@ -1,113 +1,116 @@ use strict; use warnings; -use lib 't/lib'; - -use Mouse (); +use Any::Moose (); +use Any::Moose '::Util::TypeConstraints'; #use NoInlineAttribute; use Test::More; -use Test::Mouse; +use Test::Fatal; +BEGIN { + eval 'use Test::' . any_moose(); +} + { my $name = 'Foo1'; sub build_class { my ( $attr1, $attr2, $attr3, $no_inline ) = @_; - my $class = Mouse::Meta::Class->create( + my $class = any_moose('::Meta::Class')->create( $name++, - superclasses => ['Mouse::Object'], + superclasses => [any_moose '::Object'], ); my @traits = 'Code'; push @traits, 'NoInlineAttribute' if $no_inline; $class->add_attribute( callback => ( traits => \@traits, isa => 'CodeRef', required => 1, handles => { 'invoke_callback' => 'execute' }, %{ $attr1 || {} }, ) ); $class->add_attribute( callback_method => ( traits => \@traits, isa => 'CodeRef', required => 1, handles => { 'invoke_method_callback' => 'execute_method' }, %{ $attr2 || {} }, ) ); $class->add_attribute( multiplier => ( traits => \@traits, isa => 'CodeRef', required => 1, handles => { 'multiply' => 'execute' }, %{ $attr3 || {} }, ) ); return $class->name; } } { my $i; my %subs = ( callback => sub { ++$i }, callback_method => sub { shift->multiply(@_) }, multiplier => sub { $_[0] * 2 }, ); run_tests( build_class, \$i, \%subs ); #run_tests( build_class( undef, undef, undef, 1 ), \$i, \%subs ); run_tests( build_class( { lazy => 1, default => sub { $subs{callback} } }, { lazy => 1, default => sub { $subs{callback_method} } }, { lazy => 1, default => sub { $subs{multiplier} } }, ), \$i, ); } sub run_tests { my ( $class, $iref, @args ) = @_; ok( !$class->can($_), "Code trait didn't create reader method for $_" ) for qw(callback callback_method multiplier); with_immutable { ${$iref} = 0; my $obj = $class->new(@args); $obj->invoke_callback; is( ${$iref}, 1, '$i is 1 after invoke_callback' ); is( $obj->invoke_method_callback(3), 6, 'invoke_method_callback calls multiply with @_' ); is( $obj->multiply(3), 6, 'multiple double value' ); } $class; } done_testing; diff --git a/t/070_native_traits/040_trait_counter.t b/t/070_native_traits/040_trait_counter.t index e2d2274..0314b3d 100644 --- a/t/070_native_traits/040_trait_counter.t +++ b/t/070_native_traits/040_trait_counter.t @@ -1,135 +1,136 @@ #!/usr/bin/perl use strict; use warnings; -use lib 't/lib'; - -use Mouse (); -use Mouse::Util::TypeConstraints; +use Any::Moose (); +use Any::Moose '::Util::TypeConstraints'; #use NoInlineAttribute; -use Test::Fatal; use Test::More; -use Test::Mouse; +use Test::Fatal; +BEGIN { + eval 'use Test::' . any_moose(); +} + { my %handles = ( inc_counter => 'inc', inc_counter_2 => [ inc => 2 ], dec_counter => 'dec', dec_counter_2 => [ dec => 2 ], reset_counter => 'reset', set_counter => 'set', set_counter_42 => [ set => 42 ], ); my $name = 'Foo1'; sub build_class { my %attr = @_; - my $class = Mouse::Meta::Class->create( + my $class = any_moose('::Meta::Class')->create( $name++, - superclasses => ['Mouse::Object'], + superclasses => [any_moose '::Object'], ); my @traits = 'Counter'; push @traits, 'NoInlineAttribute' if delete $attr{no_inline}; $class->add_attribute( counter => ( traits => \@traits, is => 'ro', isa => 'Int', default => 0, handles => \%handles, clearer => '_clear_counter', %attr, ), ); return ( $class->name, \%handles ); } } { run_tests(build_class); run_tests( build_class( lazy => 1 ) ); run_tests( build_class( trigger => sub { } ) ); #run_tests( build_class( no_inline => 1 ) ); # Will force the inlining code to check the entire hashref when it is modified. subtype 'MyInt', as 'Int', where { 1 }; run_tests( build_class( isa => 'MyInt' ) ); coerce 'MyInt', from 'Int', via { $_ }; run_tests( build_class( isa => 'MyInt', coerce => 1 ) ); } sub run_tests { my ( $class, $handles ) = @_; can_ok( $class, $_ ) for sort keys %{$handles}; with_immutable { my $obj = $class->new(); is( $obj->counter, 0, '... got the default value' ); is( $obj->inc_counter, 1, 'inc returns new value' ); is( $obj->counter, 1, '... got the incremented value' ); is( $obj->inc_counter, 2, 'inc returns new value' ); is( $obj->counter, 2, '... got the incremented value (again)' ); like( exception { $obj->inc_counter( 1, 2 ) }, qr/Cannot call inc with more than 1 argument/, 'inc throws an error when two arguments are passed' ); is( $obj->dec_counter, 1, 'dec returns new value' ); is( $obj->counter, 1, '... got the decremented value' ); like( exception { $obj->dec_counter( 1, 2 ) }, qr/Cannot call dec with more than 1 argument/, 'dec throws an error when two arguments are passed' ); is( $obj->reset_counter, 0, 'reset returns new value' ); is( $obj->counter, 0, '... got the original value' ); like( exception { $obj->reset_counter(2) }, qr/Cannot call reset with any arguments/, 'reset throws an error when an argument is passed' ); is( $obj->set_counter(5), 5, 'set returns new value' ); is( $obj->counter, 5, '... set the value' ); like( exception { $obj->set_counter( 1, 2 ) }, qr/Cannot call set with more than 1 argument/, 'set throws an error when two arguments are passed' ); $obj->inc_counter(2); is( $obj->counter, 7, '... increment by arg' ); $obj->dec_counter(5); is( $obj->counter, 2, '... decrement by arg' ); $obj->inc_counter_2; is( $obj->counter, 4, '... curried increment' ); $obj->dec_counter_2; is( $obj->counter, 2, '... curried deccrement' ); $obj->set_counter_42; is( $obj->counter, 42, '... curried set' ); if ( $class->meta->get_attribute('counter')->is_lazy ) { my $obj = $class->new; $obj->inc_counter; is( $obj->counter, 1, 'inc increments - with lazy default' ); $obj->_clear_counter; $obj->dec_counter; is( $obj->counter, -1, 'dec decrements - with lazy default' ); } } $class; } done_testing; diff --git a/t/070_native_traits/050_trait_hash.t b/t/070_native_traits/050_trait_hash.t index 3dc76e2..0b74a52 100644 --- a/t/070_native_traits/050_trait_hash.t +++ b/t/070_native_traits/050_trait_hash.t @@ -1,294 +1,295 @@ #!/usr/bin/perl use strict; use warnings; -use lib 't/lib'; - -use Mouse (); -use Mouse::Util::TypeConstraints; +use Any::Moose (); +use Any::Moose '::Util::TypeConstraints'; #use NoInlineAttribute; -use Test::Fatal; use Test::More; -use Test::Mouse; +use Test::Fatal; +BEGIN { + eval 'use Test::' . any_moose(); +} + { my %handles = ( option_accessor => 'accessor', quantity => [ accessor => 'quantity' ], clear_options => 'clear', num_options => 'count', delete_option => 'delete', is_defined => 'defined', options_elements => 'elements', has_option => 'exists', get_option => 'get', has_no_options => 'is_empty', keys => 'keys', values => 'values', key_value => 'kv', set_option => 'set', ); my $name = 'Foo1'; sub build_class { my %attr = @_; - my $class = Mouse::Meta::Class->create( + my $class = any_moose('::Meta::Class')->create( $name++, - superclasses => ['Mouse::Object'], + superclasses => [any_moose '::Object'], ); my @traits = 'Hash'; push @traits, 'NoInlineAttribute' if delete $attr{no_inline}; $class->add_attribute( options => ( traits => \@traits, is => 'rw', isa => 'HashRef[Str]', default => sub { {} }, handles => \%handles, clearer => '_clear_options', %attr, ), ); return ( $class->name, \%handles ); } } { run_tests(build_class); run_tests( build_class( lazy => 1, default => sub { { x => 1 } } ) ); run_tests( build_class( trigger => sub { } ) ); #run_tests( build_class( no_inline => 1 ) ); # Will force the inlining code to check the entire hashref when it is modified. subtype 'MyHashRef', as 'HashRef[Str]', where { 1 }; run_tests( build_class( isa => 'MyHashRef' ) ); coerce 'MyHashRef', from 'HashRef', via { $_ }; run_tests( build_class( isa => 'MyHashRef', coerce => 1 ) ); } sub run_tests { my ( $class, $handles ) = @_; can_ok( $class, $_ ) for sort keys %{$handles}; with_immutable { my $obj = $class->new( options => {} ); ok( $obj->has_no_options, '... we have no options' ); is( $obj->num_options, 0, '... we have no options' ); is_deeply( $obj->options, {}, '... no options yet' ); ok( !$obj->has_option('foo'), '... we have no foo option' ); is( exception { is( $obj->set_option( foo => 'bar' ), 'bar', 'set return single new value in scalar context' ); }, undef, '... set the option okay' ); ok( $obj->is_defined('foo'), '... foo is defined' ); ok( !$obj->has_no_options, '... we have options' ); is( $obj->num_options, 1, '... we have 1 option(s)' ); ok( $obj->has_option('foo'), '... we have a foo option' ); is_deeply( $obj->options, { foo => 'bar' }, '... got options now' ); is( exception { $obj->set_option( bar => 'baz' ); }, undef, '... set the option okay' ); is( $obj->num_options, 2, '... we have 2 option(s)' ); is_deeply( $obj->options, { foo => 'bar', bar => 'baz' }, '... got more options now' ); is( $obj->get_option('foo'), 'bar', '... got the right option' ); is_deeply( [ $obj->get_option(qw(foo bar)) ], [qw(bar baz)], "get multiple options at once" ); is( scalar( $obj->get_option(qw( foo bar)) ), "baz", '... got last option in scalar context' ); is( exception { $obj->set_option( oink => "blah", xxy => "flop" ); }, undef, '... set the option okay' ); is( $obj->num_options, 4, "4 options" ); is_deeply( [ $obj->get_option(qw(foo bar oink xxy)) ], [qw(bar baz blah flop)], "get multiple options at once" ); is( exception { is( scalar $obj->delete_option('bar'), 'baz', 'delete returns deleted value' ); }, undef, '... deleted the option okay' ); is( exception { is_deeply( [ $obj->delete_option( 'oink', 'xxy' ) ], [ 'blah', 'flop' ], 'delete returns all deleted values in list context' ); }, undef, '... deleted multiple option okay' ); is( $obj->num_options, 1, '... we have 1 option(s)' ); is_deeply( $obj->options, { foo => 'bar' }, '... got more options now' ); $obj->clear_options; is_deeply( $obj->options, {}, "... cleared options" ); is( exception { $obj->quantity(4); }, undef, '... options added okay with defaults' ); is( $obj->quantity, 4, 'reader part of curried accessor works' ); is( $obj->option_accessor('quantity'), 4, 'accessor as reader' ); is_deeply( $obj->options, { quantity => 4 }, '... returns what we expect' ); $obj->option_accessor( size => 42 ); like( exception { $obj->option_accessor; }, qr/Cannot call accessor without at least 1 argument/, 'error when calling accessor with no arguments' ); is_deeply( $obj->options, { quantity => 4, size => 42 }, 'accessor as writer' ); is( exception { $class->new( options => { foo => 'BAR' } ); }, undef, '... good constructor params' ); isnt( exception { $obj->set_option( bar => {} ); }, undef, '... could not add a hash ref where an string is expected' ); isnt( exception { $class->new( options => { foo => [] } ); }, undef, '... bad constructor params' ); $obj->options( {} ); is_deeply( [ $obj->set_option( oink => "blah", xxy => "flop" ) ], [ 'blah', 'flop' ], 'set returns newly set values in order of keys provided' ); is_deeply( [ sort $obj->keys ], [ 'oink', 'xxy' ], 'keys returns expected keys' ); is_deeply( [ sort $obj->values ], [ 'blah', 'flop' ], 'values returns expected values' ); my @key_value = sort { $a->[0] cmp $b->[0] } $obj->key_value; is_deeply( \@key_value, [ sort { $a->[0] cmp $b->[0] }[ 'xxy', 'flop' ], [ 'oink', 'blah' ] ], '... got the right key value pairs' ) or do { require Data::Dumper; diag( Data::Dumper::Dumper( \@key_value ) ); }; my %options_elements = $obj->options_elements; is_deeply( \%options_elements, { 'oink' => 'blah', 'xxy' => 'flop' }, '... got the right hash elements' ); if ( $class->meta->get_attribute('options')->is_lazy ) { my $obj = $class->new; $obj->set_option( y => 2 ); is_deeply( $obj->options, { x => 1, y => 2 }, 'set_option with lazy default' ); $obj->_clear_options; ok( $obj->has_option('x'), 'key for x exists - lazy default' ); $obj->_clear_options; ok( $obj->is_defined('x'), 'key for x is defined - lazy default' ); $obj->_clear_options; is_deeply( [ $obj->key_value ], [ [ x => 1 ] ], 'kv returns lazy default' ); $obj->_clear_options; $obj->option_accessor( y => 2 ); is_deeply( [ sort $obj->keys ], [ 'x', 'y' ], 'accessor triggers lazy default generator' ); } } $class; } done_testing; diff --git a/t/070_native_traits/060_trait_number.t b/t/070_native_traits/060_trait_number.t index 449de2b..9a50f00 100644 --- a/t/070_native_traits/060_trait_number.t +++ b/t/070_native_traits/060_trait_number.t @@ -1,165 +1,170 @@ #!/usr/bin/perl use strict; use warnings; -#use lib 't/lib'; - -use Mouse (); -use Mouse::Util::TypeConstraints; +use Any::Moose (); +use Any::Moose '::Util::TypeConstraints'; #use NoInlineAttribute; -use Test::Fatal; use Test::More; -use Test::Mouse; +use Test::Fatal; +BEGIN { + eval 'use Test::' . any_moose(); +} + { + my $any_moose_is_mouse = any_moose() eq 'Mouse'; my %handles = ( abs => 'abs', add => 'add', inc => [ add => 1 ], div => 'div', cut_in_half => [ div => 2 ], mod => 'mod', odd => [ mod => 2 ], mul => 'mul', #set => 'set', sub => 'sub', dec => [ sub => 1 ], ); + if(!$any_moose_is_mouse) { + $handles{set} = 'set'; + } my $name = 'Foo1'; sub build_class { my %attr = @_; - my $class = Mouse::Meta::Class->create( + my $class = any_moose('::Meta::Class')->create( $name++, - superclasses => ['Mouse::Object'], + superclasses => [any_moose '::Object'], ); my @traits = 'Number'; push @traits, 'NoInlineAttribute' if delete $attr{no_inline}; $class->add_attribute( integer => ( traits => \@traits, is => 'ro', isa => 'Int', default => 5, handles => \%handles, - writer => 'set', + ($any_moose_is_mouse ? (writer => 'set') : ()), clearer => '_clear_integer', %attr, ), ); return ( $class->name, \%handles ); } } { run_tests(build_class); run_tests( build_class( lazy => 1 ) ); run_tests( build_class( trigger => sub { } ) ); #run_tests( build_class( no_inline => 1 ) ); # Will force the inlining code to check the entire hashref when it is modified. subtype 'MyInt', as 'Int', where { 1 }; run_tests( build_class( isa => 'MyInt' ) ); coerce 'MyInt', from 'Int', via { $_ }; run_tests( build_class( isa => 'MyInt', coerce => 1 ) ); } sub run_tests { my ( $class, $handles ) = @_; can_ok( $class, $_ ) for sort keys %{$handles}; with_immutable { my $obj = $class->new; is( $obj->integer, 5, 'Default to five' ); is( $obj->add(10), 15, 'add returns new value' ); is( $obj->integer, 15, 'Add ten for fithteen' ); like( exception { $obj->add( 10, 2 ) }, qr/Cannot call add with more than 1 argument/, 'add throws an error when 2 arguments are passed' ); is( $obj->sub(3), 12, 'sub returns new value' ); is( $obj->integer, 12, 'Subtract three for 12' ); like( exception { $obj->sub( 10, 2 ) }, qr/Cannot call sub with more than 1 argument/, 'sub throws an error when 2 arguments are passed' ); is( $obj->set(10), 10, 'set returns new value' ); is( $obj->integer, 10, 'Set to ten' ); isnt exception { $obj->set(10, 2) }, undef; # XXX: Mouse specific #like( exception { $obj->set( 10, 2 ) }, qr/Cannot call set with more than 1 argument/, 'set throws an error when 2 arguments are passed' ); is( $obj->div(2), 5, 'div returns new value' ); is( $obj->integer, 5, 'divide by 2' ); like( exception { $obj->div( 10, 2 ) }, qr/Cannot call div with more than 1 argument/, 'div throws an error when 2 arguments are passed' ); is( $obj->mul(2), 10, 'mul returns new value' ); is( $obj->integer, 10, 'multiplied by 2' ); like( exception { $obj->mul( 10, 2 ) }, qr/Cannot call mul with more than 1 argument/, 'mul throws an error when 2 arguments are passed' ); is( $obj->mod(2), 0, 'mod returns new value' ); is( $obj->integer, 0, 'Mod by 2' ); like( exception { $obj->mod( 10, 2 ) }, qr/Cannot call mod with more than 1 argument/, 'mod throws an error when 2 arguments are passed' ); $obj->set(7); $obj->mod(5); is( $obj->integer, 2, 'Mod by 5' ); $obj->set(-1); is( $obj->abs, 1, 'abs returns new value' ); like( exception { $obj->abs(10) }, qr/Cannot call abs with any arguments/, 'abs throws an error when an argument is passed' ); is( $obj->integer, 1, 'abs 1' ); $obj->set(12); $obj->inc; is( $obj->integer, 13, 'inc 12' ); $obj->dec; is( $obj->integer, 12, 'dec 13' ); if ( $class->meta->get_attribute('integer')->is_lazy ) { my $obj = $class->new; $obj->add(2); is( $obj->integer, 7, 'add with lazy default' ); $obj->_clear_integer; $obj->mod(2); is( $obj->integer, 1, 'mod with lazy default' ); } } $class; } done_testing; diff --git a/t/070_native_traits/070_trait_string.t b/t/070_native_traits/070_trait_string.t index 1489109..7d361c6 100644 --- a/t/070_native_traits/070_trait_string.t +++ b/t/070_native_traits/070_trait_string.t @@ -1,305 +1,305 @@ #!/usr/bin/perl use strict; use warnings; -#use lib 't/lib'; - -use Mouse (); -use Mouse::Util::TypeConstraints; +use Any::Moose (); +use Any::Moose '::Util::TypeConstraints'; #use NoInlineAttribute; use Test::More; use Test::Fatal; -use Test::Mouse; +BEGIN { + eval 'use Test::' . any_moose(); +} { my %handles = ( inc => 'inc', append => 'append', append_curried => [ append => '!' ], prepend => 'prepend', prepend_curried => [ prepend => '-' ], replace => 'replace', replace_curried => [ replace => qr/(.)$/, sub { uc $1 } ], chop => 'chop', chomp => 'chomp', clear => 'clear', match => 'match', match_curried => [ match => qr/\D/ ], length => 'length', substr => 'substr', substr_curried_1 => [ substr => (1) ], substr_curried_2 => [ substr => ( 1, 3 ) ], substr_curried_3 => [ substr => ( 1, 3, 'ong' ) ], ); my $name = 'Foo1'; sub build_class { my %attr = @_; - my $class = Mouse::Meta::Class->create( + my $class = any_moose('::Meta::Class')->create( $name++, - superclasses => ['Mouse::Object'], + superclasses => [any_moose '::Object'], ); my @traits = 'String'; push @traits, 'NoInlineAttribute' if delete $attr{no_inline}; $class->add_attribute( _string => ( traits => \@traits, is => 'rw', isa => 'Str', default => q{}, handles => \%handles, clearer => '_clear_string', %attr, ), ); return ( $class->name, \%handles ); } } { run_tests(build_class); run_tests( build_class( lazy => 1, default => q{} ) ); run_tests( build_class( trigger => sub { } ) ); #run_tests( build_class( no_inline => 1 ) ); # Will force the inlining code to check the entire hashref when it is modified. subtype 'MyStr', as 'Str', where { 1 }; run_tests( build_class( isa => 'MyStr' ) ); coerce 'MyStr', from 'Str', via { $_ }; run_tests( build_class( isa => 'MyStr', coerce => 1 ) ); } sub run_tests { my ( $class, $handles ) = @_; can_ok( $class, $_ ) for sort keys %{$handles}; with_immutable { my $obj = $class->new(); is( $obj->length, 0, 'length returns zero' ); $obj->_string('a'); is( $obj->length, 1, 'length returns 1 for new string' ); like( exception { $obj->length(42) }, qr/Cannot call length with any arguments/, 'length throws an error when an argument is passed' ); is( $obj->inc, 'b', 'inc returns new value' ); is( $obj->_string, 'b', 'a becomes b after inc' ); like( exception { $obj->inc(42) }, qr/Cannot call inc with any arguments/, 'inc throws an error when an argument is passed' ); is( $obj->append('foo'), 'bfoo', 'append returns new value' ); is( $obj->_string, 'bfoo', 'appended to the string' ); like( exception { $obj->append( 'foo', 2 ) }, qr/Cannot call append with more than 1 argument/, 'append throws an error when two arguments are passed' ); $obj->append_curried; is( $obj->_string, 'bfoo!', 'append_curried appended to the string' ); like( exception { $obj->append_curried('foo') }, qr/Cannot call append with more than 1 argument/, 'append_curried throws an error when two arguments are passed' ); $obj->_string("has nl$/"); is( $obj->chomp, 1, 'chomp returns number of characters removed' ); is( $obj->_string, 'has nl', 'chomped string' ); is( $obj->chomp, 0, 'chomp returns number of characters removed' ); is( $obj->_string, 'has nl', 'chomp is a no-op when string has no line ending' ); like( exception { $obj->chomp(42) }, qr/Cannot call chomp with any arguments/, 'chomp throws an error when an argument is passed' ); is( $obj->chop, 'l', 'chop returns character removed' ); is( $obj->_string, 'has n', 'chopped string' ); like( exception { $obj->chop(42) }, qr/Cannot call chop with any arguments/, 'chop throws an error when an argument is passed' ); $obj->_string('x'); is( $obj->prepend('bar'), 'barx', 'prepend returns new value' ); is( $obj->_string, 'barx', 'prepended to string' ); $obj->prepend_curried; is( $obj->_string, '-barx', 'prepend_curried prepended to string' ); is( $obj->replace( qr/([ao])/, sub { uc($1) } ), '-bArx', 'replace returns new value' ); is( $obj->_string, '-bArx', 'substitution using coderef for replacement' ); $obj->replace( qr/A/, 'X' ); is( $obj->_string, '-bXrx', 'substitution using string as replacement' ); $obj->_string('foo'); $obj->replace( qr/oo/, q{} ); is( $obj->_string, 'f', 'replace accepts an empty string as second argument' ); $obj->replace( q{}, 'a' ); is( $obj->_string, 'af', 'replace accepts an empty string as first argument' ); like( exception { $obj->replace( {}, 'x' ) }, qr/The first argument passed to replace must be a string or regexp reference/, 'replace throws an error when the first argument is not a string or regexp' ); like( exception { $obj->replace( qr/x/, {} ) }, qr/The second argument passed to replace must be a string or code reference/, 'replace throws an error when the first argument is not a string or regexp' ); $obj->_string('Mousex'); $obj->replace_curried; is( $obj->_string, 'MouseX', 'capitalize last' ); $obj->_string('abcdef'); is_deeply( [ $obj->match(qr/([az]).*([fy])/) ], [ 'a', 'f' ], 'match -barx against /[aq]/ returns matches' ); is_deeply( [ $obj->match(qr/([az]).*([fy])/) ], [ 'a', 'f' ], 'match -barx against /[aq]/ returns matches' ); ok( scalar $obj->match('b'), 'match with string as argument returns true' ); ok( scalar $obj->match(q{}), 'match with empty string as argument returns true' ); like( exception { $obj->match }, qr/Cannot call match without at least 1 argument/, 'match throws an error when no arguments are passed' ); like( exception { $obj->match( {} ) }, qr/The argument passed to match must be a string or regexp reference/, 'match throws an error when an invalid argument is passed' ); $obj->_string('1234'); ok( !$obj->match_curried, 'match_curried returns false' ); $obj->_string('one two three four'); ok( $obj->match_curried, 'match curried returns true' ); $obj->clear; is( $obj->_string, q{}, 'clear' ); like( exception { $obj->clear(42) }, qr/Cannot call clear with any arguments/, 'clear throws an error when an argument is passed' ); $obj->_string('some long string'); is( $obj->substr(1), 'ome long string', 'substr as getter with one argument' ); $obj->_string('some long string'); is( $obj->substr( 1, 3 ), 'ome', 'substr as getter with two arguments' ); is( $obj->substr( 1, 3, 'ong' ), 'ome', 'substr as setter returns replaced string' ); is( $obj->_string, 'song long string', 'substr as setter with three arguments' ) or diag $obj->dump; $obj->substr( 1, 3, '' ); is( $obj->_string, 's long string', 'substr as setter with three arguments, replacment is empty string' ); like( exception { $obj->substr }, qr/Cannot call substr without at least 1 argument/, 'substr throws an error when no argumemts are passed' ); like( exception { $obj->substr( 1, 2, 3, 4 ) }, qr/Cannot call substr with more than 3 arguments/, 'substr throws an error when four argumemts are passed' ); like( exception { $obj->substr( {} ) }, qr/The first argument passed to substr must be an integer/, 'substr throws an error when first argument is not an integer' ); like( exception { $obj->substr( 1, {} ) }, qr/The second argument passed to substr must be an integer/, 'substr throws an error when second argument is not an integer' ); like( exception { $obj->substr( 1, 2, {} ) }, qr/The third argument passed to substr must be a string/, 'substr throws an error when third argument is not a string' ); $obj->_string('some long string'); is( $obj->substr_curried_1, 'ome long string', 'substr_curried_1 returns expected value' ); is( $obj->substr_curried_1(3), 'ome', 'substr_curried_1 with one argument returns expected value' ); $obj->substr_curried_1( 3, 'ong' ); is( $obj->_string, 'song long string', 'substr_curried_1 as setter with two arguments' ); $obj->_string('some long string'); is( $obj->substr_curried_2, 'ome', 'substr_curried_2 returns expected value' ); $obj->substr_curried_2('ong'); is( $obj->_string, 'song long string', 'substr_curried_2 as setter with one arguments' ); $obj->_string('some long string'); $obj->substr_curried_3; is( $obj->_string, 'song long string', 'substr_curried_3 as setter' ); if ( $class->meta->get_attribute('_string')->is_lazy ) { my $obj = $class->new; $obj->append('foo'); is( $obj->_string, 'foo', 'append with lazy default' ); } } $class; } done_testing;
gfx/p5-MouseX-NativeTraits
ad2a67d7f8981cedfb27f1717bd41765c82bd265
Import tests from Moose 1.19
diff --git a/.gitignore b/.gitignore index 4f4b16b..e9e50c7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,22 +1,23 @@ MouseX-NativeTraits-* .* !.gitignore !.shipit *.o *.obj *.bs *.def Makefile* !Makefile.PL *blib META.yml +MYMETA.yml inc/ MANIFEST *.out *.bak ppport.h nytprof* cover_db* *.gcda *.gno *.gcov diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP index 32a3180..9504aee 100644 --- a/MANIFEST.SKIP +++ b/MANIFEST.SKIP @@ -1,43 +1,44 @@ #!start included /home/s0710509/sperl/lib/5.10.1/ExtUtils/MANIFEST.SKIP # Avoid version control files. \bRCS\b \bCVS\b \bSCCS\b ,v$ \B\.svn\b \B\.git\b \B\.gitignore\b \b_darcs\b # Avoid Makemaker generated and utility files. \bMANIFEST\.bak \bMakefile$ \bblib/ \bMakeMaker-\d \bpm_to_blib\.ts$ \bpm_to_blib$ \bblibdirs\.ts$ # 6.18 through 6.25 generated this # Avoid Module::Build generated and utility files. \bBuild$ \b_build/ # Avoid temp and backup files. ~$ \.old$ \#$ \b\.# \.bak$ # Avoid Devel::Cover files. \bcover_db\b #!end included /home/s0710509/sperl/lib/5.10.1/ExtUtils/MANIFEST.SKIP # skip dot files ^\. # skip author's files \bauthor\b +MYMETA\.yml$ diff --git a/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm b/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm index d4e8eba..1d8ff63 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm @@ -1,377 +1,377 @@ package MouseX::NativeTraits::MethodProvider::HashRef; use Mouse; extends qw(MouseX::NativeTraits::MethodProvider); sub generate_keys { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('keys', 1, 1, scalar @_); } return keys %{ $reader->( $_[0] ) }; }; } sub generate_sorted_keys { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('sorted_keys', 1, 1, scalar @_); } return sort keys %{ $reader->( $_[0] ) }; }; } sub generate_values { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('values', 1, 1, scalar @_); } return values %{ $reader->( $_[0] ) }; }; } sub generate_kv { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('kv', 1, 1, scalar @_); } my $hash_ref = $reader->( $_[0] ); return map { [ $_ => $hash_ref->{$_} ] } keys %{ $hash_ref }; }; } sub generate_elements { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('elements', 1, 1, scalar @_); } return %{ $reader->( $_[0] ) }; }; } sub generate_count { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('count', 1, 1, scalar @_); } return scalar keys %{ $reader->( $_[0] ) }; }; } sub generate_is_empty { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('is_empty', 1, 1, scalar @_); } return scalar(keys %{ $reader->( $_[0] ) }) == 0; }; } sub generate_exists { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $key) = @_; if(@_ != 2) { $self->argument_error('exists', 2, 2, scalar @_); } defined($key) or $self->meta->throw_error( "Hash keys passed to exists must be defined" ); return exists $reader->( $instance )->{ $key }; } } sub generate_defined { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $key) = @_; if(@_ != 2) { $self->argument_error('defined', 2, 2, scalar @_); } defined($key) or $self->meta->throw_error( "Hash keys passed to defined must be defined" ); return defined $reader->( $instance )->{ $key }; } } __PACKAGE__->meta->add_method(generate_get => \&generate_fetch); sub generate_fetch { my($self) = @_; my $reader = $self->reader; return sub { if(@_ < 2) { $self->argument_error('get', 2, undef, scalar @_); } my $instance = shift; foreach my $key(@_) { defined($key) or $self->meta->throw_error( "Hash keys passed to get must be defined" ); } if ( @_ == 1 ) { return $reader->( $instance )->{ $_[0] }; } else { return @{ $reader->($instance) }{@_}; } }; } __PACKAGE__->meta->add_method(generate_set => \&generate_store); sub generate_store { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my ( $instance, @kv ) = @_; if(@_ < 2) { $self->argument_error('set', 2, undef, scalar @_); } my %new_value = %{ $reader->($instance) }; # copy my @ret_value; while (my ($key, $value) = splice @kv, 0, 2 ) { defined($key) or $self->meta->throw_error( "Hash keys passed to set must be defined" ); push @ret_value, $new_value{$key} = $value; # change } $writer->( $instance, \%new_value ); # commit return wantarray ? @ret_value : $ret_value[-1]; }; } sub generate_accessor { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my($instance, $key, $value) = @_;; if ( @_ == 2 ) { # reader defined($key) or $self->meta->throw_error( "Hash keys passed to accessor must be defined" ); return $reader->($instance)->{ $key }; } elsif ( @_ == 3 ) { # writer defined($key) or $self->meta->throw_error( "Hash keys passed to accessor must be defined" ); my %new_value = %{ $reader->($instance) }; $new_value{$key} = $value; $writer->($instance, \%new_value); # commit } else { $self->argument_error('accessor', 2, 3, scalar @_); } }; } sub generate_clear { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('clear', 1, 1, scalar @_); } %{ $reader->( $_[0] ) } = (); }; } sub generate_delete { my($self) = @_; my $reader = $self->reader; my $trigger = $self->attr->trigger; return sub { if(@_ < 2) { $self->argument_error('delete', 2, undef, scalar @_); } my $instance = shift; - my $r = delete @{ $reader->($instance) }{@_}; + my @r = delete @{ $reader->($instance) }{@_}; defined($trigger) and $trigger->($instance); - return $r; + return wantarray ? @r : $r[-1]; }; } sub generate_for_each_key { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $block) = @_; if(@_ != 2) { $self->argument_error('for_each_key', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::CodeRef($block) or $instance->meta->throw_error( "The argument passed to for_each_key must be a code reference"); foreach (keys %{$reader->($instance)}) { # intentional use of $_ $block->($_); } return $instance; }; } sub generate_for_each_value { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $block) = @_; if(@_ != 2) { $self->argument_error('for_each_value', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::CodeRef($block) or $instance->meta->throw_error( "The argument passed to for_each_value must be a code reference"); foreach (values %{$reader->($instance)}) { # intentional use of $_ $block->($_); } return $instance; }; } sub generate_for_each_pair { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $block) = @_; if(@_ != 2) { $self->argument_error('for_each_pair', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::CodeRef($block) or $instance->meta->throw_error( "The argument passed to for_each_pair must be a code reference"); my $hash_ref = $reader->($instance); foreach my $key(keys %{$hash_ref}){ $block->($key, $hash_ref->{$key}); } return $instance; }; } no Mouse; __PACKAGE__->meta->make_immutable(); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::HashRef - Provides methods for HashRef =head1 DESCRIPTION This class provides method generators for the C<Hash> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Hash> for details. =head1 METHOD GENERATORS =over 4 =item generate_keys =item generate_sorted_keys =item generate_values =item generate_kv =item generate_elements =item generate_count =item generate_is_empty =item generate_exists =item generate_defined =item generate_fetch =item generate_get The same as C<generate_fetch>. =item generate_store =item generate_set The same as C<generate_store>. =item generate_accessor =item generate_clear =item generate_delete =item generate_for_each_key =item generate_for_each_value =item generate_for_each_pair =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/t/070_native_traits/010_trait_array.t b/t/070_native_traits/010_trait_array.t new file mode 100644 index 0000000..2236378 --- /dev/null +++ b/t/070_native_traits/010_trait_array.t @@ -0,0 +1,667 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +use lib 't/lib'; + +use Mouse (); +use Mouse::Util::TypeConstraints; +#use NoInlineAttribute; +use Test::More; +use Test::Fatal; +use Test::Mouse; + +{ + my %handles = ( + count => 'count', + elements => 'elements', + is_empty => 'is_empty', + push => 'push', + push_curried => + [ push => 42, 84 ], + unshift => 'unshift', + unshift_curried => + [ unshift => 42, 84 ], + pop => 'pop', + shift => 'shift', + get => 'get', + get_curried => [ get => 1 ], + set => 'set', + set_curried_1 => [ set => 1 ], + set_curried_2 => [ set => ( 1, 98 ) ], + accessor => 'accessor', + accessor_curried_1 => [ accessor => 1 ], + accessor_curried_2 => [ accessor => ( 1, 90 ) ], + clear => 'clear', + delete => 'delete', + delete_curried => [ delete => 1 ], + insert => 'insert', + insert_curried => [ insert => ( 1, 101 ) ], + splice => 'splice', + splice_curried_1 => [ splice => 1 ], + splice_curried_2 => [ splice => 1, 2 ], + splice_curried_all => [ splice => 1, 2, ( 3, 4, 5 ) ], + sort => 'sort', + sort_curried => [ sort => ( sub { $_[1] <=> $_[0] } ) ], + sort_in_place => 'sort_in_place', + sort_in_place_curried => + [ sort_in_place => ( sub { $_[1] <=> $_[0] } ) ], + map => 'map', + map_curried => [ map => ( sub { $_ + 1 } ) ], + grep => 'grep', + grep_curried => [ grep => ( sub { $_ < 5 } ) ], + first => 'first', + first_curried => [ first => ( sub { $_ % 2 } ) ], + join => 'join', + join_curried => [ join => '-' ], + shuffle => 'shuffle', + uniq => 'uniq', + reduce => 'reduce', + reduce_curried => [ reduce => ( sub { $_[0] * $_[1] } ) ], + #natatime => 'natatime', + #natatime_curried => [ natatime => 2 ], + ); + + my $name = 'Foo1'; + + sub build_class { + my %attr = @_; + + my $class = Mouse::Meta::Class->create( + $name++, + superclasses => ['Mouse::Object'], + ); + + my @traits = 'Array'; + push @traits, 'NoInlineAttribute' + if delete $attr{no_inline}; + + $class->add_attribute( + _values => ( + traits => \@traits, + is => 'rw', + isa => 'ArrayRef[Int]', + default => sub { [] }, + handles => \%handles, + clearer => '_clear_values', + %attr, + ), + ); + + return ( $class->name, \%handles ); + } +} + +{ + package Overloader; + + use overload + '&{}' => sub { ${ $_[0] } }, + bool => sub {1}; + + sub new { + bless \$_[1], $_[0]; + } +} + +{ + run_tests(build_class); + run_tests( build_class( lazy => 1, default => sub { [ 42, 84 ] } ) ); + run_tests( build_class( trigger => sub { } ) ); + #run_tests( build_class( no_inline => 1 ) ); + + # Will force the inlining code to check the entire arrayref when it is modified. + subtype 'MyArrayRef', as 'ArrayRef', where { 1 }; + + run_tests( build_class( isa => 'MyArrayRef' ) ); + + coerce 'MyArrayRef', from 'ArrayRef', via { $_ }; + + run_tests( build_class( isa => 'MyArrayRef', coerce => 1 ) ); +} + +sub run_tests { + my ( $class, $handles ) = @_; + + can_ok( $class, $_ ) for sort keys %{$handles}; + + with_immutable { + my $obj = $class->new( _values => [ 10, 12, 42 ] ); + + is_deeply( + $obj->_values, [ 10, 12, 42 ], + 'values can be set in constructor' + ); + + ok( !$obj->is_empty, 'values is not empty' ); + is( $obj->count, 3, 'count returns 3' ); + + like( exception { $obj->count(22) }, qr/Cannot call count with any arguments/, 'throws an error when passing an argument passed to count' ); + + is( exception { $obj->push( 1, 2, 3 ) }, undef, 'pushed three new values and lived' ); + + is( exception { $obj->push() }, undef, 'call to push without arguments lives' ); + + is( exception { + is( $obj->unshift( 101, 22 ), 8, + 'unshift returns size of the new array' ); + }, undef, 'unshifted two values and lived' ); + + is_deeply( + $obj->_values, [ 101, 22, 10, 12, 42, 1, 2, 3 ], + 'unshift changed the value of the array in the object' + ); + + is( exception { $obj->unshift() }, undef, 'call to unshift without arguments lives' ); + + is( $obj->pop, 3, 'pop returns the last value in the array' ); + + is_deeply( + $obj->_values, [ 101, 22, 10, 12, 42, 1, 2 ], + 'pop changed the value of the array in the object' + ); + + like( exception { $obj->pop(42) }, qr/Cannot call pop with any arguments/, 'call to pop with arguments dies' ); + + is( $obj->shift, 101, 'shift returns the first value' ); + + like( exception { $obj->shift(42) }, qr/Cannot call shift with any arguments/, 'call to shift with arguments dies' ); + + is_deeply( + $obj->_values, [ 22, 10, 12, 42, 1, 2 ], + 'shift changed the value of the array in the object' + ); + + is_deeply( + [ $obj->elements ], [ 22, 10, 12, 42, 1, 2 ], + 'call to elements returns values as a list' + ); + + like( exception { $obj->elements(22) }, qr/Cannot call elements with any arguments/, 'throws an error when passing an argument passed to elements' ); + + $obj->_values( [ 1, 2, 3 ] ); + + is( $obj->get(0), 1, 'get values at index 0' ); + is( $obj->get(1), 2, 'get values at index 1' ); + is( $obj->get(2), 3, 'get values at index 2' ); + is( $obj->get_curried, 2, 'get_curried returns value at index 1' ); + + like( exception { $obj->get() }, qr/Cannot call get without at least 1 argument/, 'throws an error when get is called without any arguments' ); + + like( exception { $obj->get( {} ) }, qr/The index passed to get must be an integer/, 'throws an error when get is called with an invalid argument' ); + + like( exception { $obj->get(2.2) }, qr/The index passed to get must be an integer/, 'throws an error when get is called with an invalid argument' ); + + like( exception { $obj->get('foo') }, qr/The index passed to get must be an integer/, 'throws an error when get is called with an invalid argument' ); + + like( exception { $obj->get_curried(2) }, qr/Cannot call get with more than 1 argument/, 'throws an error when get_curried is called with an argument' ); + + is( exception { + is( $obj->set( 1, 100 ), 100, 'set returns new value' ); + }, undef, 'set value at index 1 lives' ); + + is( $obj->get(1), 100, 'get value at index 1 returns new value' ); + + + like( exception { $obj->set( 1, 99, 42 ) }, qr/Cannot call set with more than 2 arguments/, 'throws an error when set is called with three arguments' ); + + is( exception { $obj->set_curried_1(99) }, undef, 'set_curried_1 lives' ); + + is( $obj->get(1), 99, 'get value at index 1 returns new value' ); + + like( exception { $obj->set_curried_1( 99, 42 ) }, qr/Cannot call set with more than 2 arguments/, 'throws an error when set_curried_1 is called with two arguments' ); + + is( exception { $obj->set_curried_2 }, undef, 'set_curried_2 lives' ); + + is( $obj->get(1), 98, 'get value at index 1 returns new value' ); + + like( exception { $obj->set_curried_2(42) }, qr/Cannot call set with more than 2 arguments/, 'throws an error when set_curried_2 is called with one argument' ); + + is( + $obj->accessor(1), 98, + 'accessor with one argument returns value at index 1' + ); + + is( exception { + is( $obj->accessor( 1 => 97 ), 97, 'accessor returns new value' ); + }, undef, 'accessor as writer lives' ); + + like( + exception { + $obj->accessor; + }, + qr/Cannot call accessor without at least 1 argument/, + 'throws an error when accessor is called without arguments' + ); + + is( + $obj->get(1), 97, + 'accessor set value at index 1' + ); + + like( exception { $obj->accessor( 1, 96, 42 ) }, qr/Cannot call accessor with more than 2 arguments/, 'throws an error when accessor is called with three arguments' ); + + is( + $obj->accessor_curried_1, 97, + 'accessor_curried_1 returns expected value when called with no arguments' + ); + + is( exception { $obj->accessor_curried_1(95) }, undef, 'accessor_curried_1 as writer lives' ); + + is( + $obj->get(1), 95, + 'accessor_curried_1 set value at index 1' + ); + + like( exception { $obj->accessor_curried_1( 96, 42 ) }, qr/Cannot call accessor with more than 2 arguments/, 'throws an error when accessor_curried_1 is called with two arguments' ); + + is( exception { $obj->accessor_curried_2 }, undef, 'accessor_curried_2 as writer lives' ); + + is( + $obj->get(1), 90, + 'accessor_curried_2 set value at index 1' + ); + + like( exception { $obj->accessor_curried_2(42) }, qr/Cannot call accessor with more than 2 arguments/, 'throws an error when accessor_curried_2 is called with one argument' ); + + is( exception { $obj->clear }, undef, 'clear lives' ); + + ok( $obj->is_empty, 'values is empty after call to clear' ); + + $obj->set( 0 => 42 ); + + like( exception { $obj->clear(50) }, qr/Cannot call clear with any arguments/, 'throws an error when clear is called with an argument' ); + + ok( + !$obj->is_empty, + 'values is not empty after failed call to clear' + ); + + like( exception { $obj->is_empty(50) }, qr/Cannot call is_empty with any arguments/, 'throws an error when is_empty is called with an argument' ); + + $obj->clear; + is( + $obj->push( 1, 5, 10, 42 ), 4, + 'pushed 4 elements, got number of elements in the array back' + ); + + is( exception { + is( $obj->delete(2), 10, 'delete returns deleted value' ); + }, undef, 'delete lives' ); + + is_deeply( + $obj->_values, [ 1, 5, 42 ], + 'delete removed the specified element' + ); + + like( exception { $obj->delete( 2, 3 ) }, qr/Cannot call delete with more than 1 argument/, 'throws an error when delete is called with two arguments' ); + + is( exception { $obj->delete_curried }, undef, 'delete_curried lives' ); + + is_deeply( + $obj->_values, [ 1, 42 ], + 'delete removed the specified element' + ); + + like( exception { $obj->delete_curried(2) }, qr/Cannot call delete with more than 1 argument/, 'throws an error when delete_curried is called with one argument' ); + + is( exception { $obj->insert( 1, 21 ) }, undef, 'insert lives' ); + + is_deeply( + $obj->_values, [ 1, 21, 42 ], + 'insert added the specified element' + ); + + like( exception { $obj->insert( 1, 22, 44 ) }, qr/Cannot call insert with more than 2 arguments/, 'throws an error when insert is called with three arguments' ); + + is( exception { + is_deeply( + [ $obj->splice( 1, 0, 2, 3 ) ], + [], + 'return value of splice is empty list when not removing elements' + ); + }, undef, 'splice lives' ); + + is_deeply( + $obj->_values, [ 1, 2, 3, 21, 42 ], + 'splice added the specified elements' + ); + + is( exception { + is_deeply( + [ $obj->splice( 1, 2, 99 ) ], + [ 2, 3 ], + 'splice returns list of removed values' + ); + }, undef, 'splice lives' ); + + is_deeply( + $obj->_values, [ 1, 99, 21, 42 ], + 'splice added the specified elements' + ); + + like( exception { $obj->splice() }, qr/Cannot call splice without at least 1 argument/, 'throws an error when splice is called with no arguments' ); + + like( exception { $obj->splice( 1, 'foo', ) }, qr/The length argument passed to splice must be an integer/, 'throws an error when splice is called with an invalid length' ); + + is( exception { $obj->splice_curried_1( 2, 101 ) }, undef, 'splice_curried_1 lives' ); + + is_deeply( + $obj->_values, [ 1, 101, 42 ], + 'splice added the specified elements' + ); + + is( exception { $obj->splice_curried_2(102) }, undef, 'splice_curried_2 lives' ); + + is_deeply( + $obj->_values, [ 1, 102 ], + 'splice added the specified elements' + ); + + is( exception { $obj->splice_curried_all }, undef, 'splice_curried_all lives' ); + + is_deeply( + $obj->_values, [ 1, 3, 4, 5 ], + 'splice added the specified elements' + ); + + is_deeply( + scalar $obj->splice( 1, 2 ), + 4, + 'splice in scalar context returns last element removed' + ); + + is_deeply( + scalar $obj->splice( 1, 0, 42 ), + undef, + 'splice in scalar context returns undef when no elements are removed' + ); + + $obj->_values( [ 3, 9, 5, 22, 11 ] ); + + is_deeply( + [ $obj->sort ], [ 11, 22, 3, 5, 9 ], + 'sort returns sorted values' + ); + + is_deeply( + [ $obj->sort( sub { $_[0] <=> $_[1] } ) ], [ 3, 5, 9, 11, 22 ], + 'sort returns values sorted by provided function' + ); + + like( exception { $obj->sort(1) }, qr/The argument passed to sort must be a code reference/, 'throws an error when passing a non coderef to sort' ); + + like( exception { + $obj->sort( sub { }, 27 ); + }, qr/Cannot call sort with more than 1 argument/, 'throws an error when passing two arguments to sort' ); + + $obj->_values( [ 3, 9, 5, 22, 11 ] ); + + $obj->sort_in_place; + + is_deeply( + $obj->_values, [ 11, 22, 3, 5, 9 ], + 'sort_in_place sorts values' + ); + + $obj->sort_in_place( sub { $_[0] <=> $_[1] } ); + + is_deeply( + $obj->_values, [ 3, 5, 9, 11, 22 ], + 'sort_in_place with function sorts values' + ); + + like( exception { + $obj->sort_in_place( 27 ); + }, qr/The argument passed to sort_in_place must be a code reference/, 'throws an error when passing a non coderef to sort_in_place' ); + + like( exception { + $obj->sort_in_place( sub { }, 27 ); + }, qr/Cannot call sort_in_place with more than 1 argument/, 'throws an error when passing two arguments to sort_in_place' ); + + $obj->_values( [ 3, 9, 5, 22, 11 ] ); + + $obj->sort_in_place_curried; + + is_deeply( + $obj->_values, [ 22, 11, 9, 5, 3 ], + 'sort_in_place_curried sorts values' + ); + + like( exception { $obj->sort_in_place_curried(27) }, qr/Cannot call sort_in_place with more than 1 argument/, 'throws an error when passing one argument passed to sort_in_place_curried' ); + + $obj->_values( [ 1 .. 5 ] ); + + is_deeply( + [ $obj->map( sub { $_ + 1 } ) ], + [ 2 .. 6 ], + 'map returns the expected values' + ); + + like( exception { $obj->map }, qr/Cannot call map without at least 1 argument/, 'throws an error when passing no arguments to map' ); + + like( exception { + $obj->map( sub { }, 2 ); + }, qr/Cannot call map with more than 1 argument/, 'throws an error when passing two arguments to map' ); + + like( exception { $obj->map( {} ) }, qr/The argument passed to map must be a code reference/, 'throws an error when passing a non coderef to map' ); + + $obj->_values( [ 1 .. 5 ] ); + + is_deeply( + [ $obj->map_curried ], + [ 2 .. 6 ], + 'map_curried returns the expected values' + ); + + like( exception { + $obj->map_curried( sub { } ); + }, qr/Cannot call map with more than 1 argument/, 'throws an error when passing one argument passed to map_curried' ); + + $obj->_values( [ 2 .. 9 ] ); + + is_deeply( + [ $obj->grep( sub { $_ < 5 } ) ], + [ 2 .. 4 ], + 'grep returns the expected values' + ); + + like( exception { $obj->grep }, qr/Cannot call grep without at least 1 argument/, 'throws an error when passing no arguments to grep' ); + + like( exception { + $obj->grep( sub { }, 2 ); + }, qr/Cannot call grep with more than 1 argument/, 'throws an error when passing two arguments to grep' ); + + like( exception { $obj->grep( {} ) }, qr/The argument passed to grep must be a code reference/, 'throws an error when passing a non coderef to grep' ); + + my $overloader = Overloader->new( sub { $_ < 5 } ); + is_deeply( + [ $obj->grep(\&$overloader) ], + [ 2 .. 4 ], + 'grep works with obj that overload code dereferencing' + ); + + is_deeply( + [ $obj->grep_curried ], + [ 2 .. 4 ], + 'grep_curried returns the expected values' + ); + + like( exception { + $obj->grep_curried( sub { } ); + }, qr/Cannot call grep with more than 1 argument/, 'throws an error when passing one argument passed to grep_curried' ); + + $obj->_values( [ 2, 4, 22, 99, 101, 6 ] ); + + is( + $obj->first( sub { $_ % 2 } ), + 99, + 'first returns expected value' + ); + + like( exception { $obj->first }, qr/Cannot call first without at least 1 argument/, 'throws an error when passing no arguments to first' ); + + like( exception { + $obj->first( sub { }, 2 ); + }, qr/Cannot call first with more than 1 argument/, 'throws an error when passing two arguments to first' ); + + like( exception { $obj->first( {} ) }, qr/The argument passed to first must be a code reference/, 'throws an error when passing a non coderef to first' ); + + is( + $obj->first_curried, + 99, + 'first_curried returns expected value' + ); + + like( exception { + $obj->first_curried( sub { } ); + }, qr/Cannot call first with more than 1 argument/, 'throws an error when passing one argument passed to first_curried' ); + + $obj->_values( [ 1 .. 4 ] ); + + is( + $obj->join('-'), '1-2-3-4', + 'join returns expected result' + ); + + is( + $obj->join(q{}), '1234', + 'join returns expected result when joining with empty string' + ); + + like( exception { $obj->join }, qr/Cannot call join without at least 1 argument/, 'throws an error when passing no arguments to join' ); + + like( exception { $obj->join( '-', 2 ) }, qr/Cannot call join with more than 1 argument/, 'throws an error when passing two arguments to join' ); + + like( exception { $obj->join( {} ) }, qr/The argument passed to join must be a string/, 'throws an error when passing a non string to join' ); + + is_deeply( + [ sort $obj->shuffle ], + [ 1 .. 4 ], + 'shuffle returns all values (cannot check for a random order)' + ); + + like( exception { $obj->shuffle(2) }, qr/Cannot call shuffle with any arguments/, 'throws an error when passing an argument passed to shuffle' ); + + $obj->_values( [ 1 .. 4, 2, 5, 3, 7, 3, 3, 1 ] ); + + is_deeply( + [ $obj->uniq ], + [ 1 .. 4, 5, 7 ], + 'uniq returns expected values (in original order)' + ); + + like( exception { $obj->uniq(2) }, qr/Cannot call uniq with any arguments/, 'throws an error when passing an argument passed to uniq' ); + + $obj->_values( [ 1 .. 5 ] ); + + is( + $obj->reduce( sub { $_[0] * $_[1] } ), + 120, + 'reduce returns expected value' + ); + + like( exception { $obj->reduce }, qr/Cannot call reduce without at least 1 argument/, 'throws an error when passing no arguments to reduce' ); + + like( exception { + $obj->reduce( sub { }, 2 ); + }, qr/Cannot call reduce with more than 1 argument/, 'throws an error when passing two arguments to reduce' ); + + like( exception { $obj->reduce( {} ) }, qr/The argument passed to reduce must be a code reference/, 'throws an error when passing a non coderef to reduce' ); + + is( + $obj->reduce_curried, + 120, + 'reduce_curried returns expected value' + ); + + like( exception { + $obj->reduce_curried( sub { } ); + }, qr/Cannot call reduce with more than 1 argument/, 'throws an error when passing one argument passed to reduce_curried' ); + + $obj->_values( [ 1 .. 6 ] ); + +# my $it = $obj->natatime(2); +# my @nat; +# while ( my @v = $it->() ) { +# push @nat, \@v; +# } +# +# is_deeply( +# [ [ 1, 2 ], [ 3, 4 ], [ 5, 6 ] ], +# \@nat, +# 'natatime returns expected iterator' +# ); +# +# @nat = (); +# $obj->natatime( 2, sub { push @nat, [@_] } ); +# +# is_deeply( +# [ [ 1, 2 ], [ 3, 4 ], [ 5, 6 ] ], +# \@nat, +# 'natatime with function returns expected value' +# ); +# +# like( exception { $obj->natatime( {} ) }, qr/The n value passed to natatime must be an integer/, 'throws an error when passing a non integer to natatime' ); +# +# like( exception { $obj->natatime( 2, {} ) }, qr/The second argument passed to natatime must be a code reference/, 'throws an error when passing a non code ref to natatime' ); +# +# $it = $obj->natatime_curried(); +# @nat = (); +# while ( my @v = $it->() ) { +# push @nat, \@v; +# } +# +# is_deeply( +# [ [ 1, 2 ], [ 3, 4 ], [ 5, 6 ] ], +# \@nat, +# 'natatime_curried returns expected iterator' +# ); +# +# @nat = (); +# $obj->natatime_curried( sub { push @nat, [@_] } ); +# +# is_deeply( +# [ [ 1, 2 ], [ 3, 4 ], [ 5, 6 ] ], +# \@nat, +# 'natatime_curried with function returns expected value' +# ); +# +# like( exception { $obj->natatime_curried( {} ) }, qr/The second argument passed to natatime must be a code reference/, 'throws an error when passing a non code ref to natatime_curried' ); + + if ( $class->meta->get_attribute('_values')->is_lazy ) { + my $obj = $class->new; + + is( $obj->count, 2, 'count is 2 (lazy init)' ); + + $obj->_clear_values; + + is_deeply( + [ $obj->elements ], [ 42, 84 ], + 'elements contains default with lazy init' + ); + + $obj->_clear_values; + + $obj->push(2); + + is_deeply( + $obj->_values, [ 42, 84, 2 ], + 'push works with lazy init' + ); + + $obj->_clear_values; + + $obj->unshift( 3, 4 ); + + is_deeply( + $obj->_values, [ 3, 4, 42, 84 ], + 'unshift works with lazy init' + ); + } + } + $class; +} + +done_testing; diff --git a/t/070_native_traits/011_array_subtypes.t b/t/070_native_traits/011_array_subtypes.t new file mode 100644 index 0000000..f74a56c --- /dev/null +++ b/t/070_native_traits/011_array_subtypes.t @@ -0,0 +1,237 @@ +#!/usr/bin/env perl +use strict; +use warnings; +use Test::More; +use Test::Fatal; + +{ + use Mouse::Util::TypeConstraints; + use List::Util qw(sum); + + subtype 'A1', as 'ArrayRef[Int]'; + subtype 'A2', as 'ArrayRef', where { @$_ < 2 }; + subtype 'A3', as 'ArrayRef[Int]', where { ( sum(@$_) || 0 ) < 5 }; + + subtype 'A5', as 'ArrayRef'; + coerce 'A5', from 'Str', via { [ $_ ] }; + + no Mouse::Util::TypeConstraints; +} + +{ + package Foo; + use Mouse; + + has array => ( + traits => ['Array'], + is => 'rw', + isa => 'ArrayRef', + handles => { + push_array => 'push', + }, + ); + + has array_int => ( + traits => ['Array'], + is => 'rw', + isa => 'ArrayRef[Int]', + handles => { + push_array_int => 'push', + }, + ); + + has a1 => ( + traits => ['Array'], + is => 'rw', + isa => 'A1', + handles => { + push_a1 => 'push', + }, + ); + + has a2 => ( + traits => ['Array'], + is => 'rw', + isa => 'A2', + handles => { + push_a2 => 'push', + }, + ); + + has a3 => ( + traits => ['Array'], + is => 'rw', + isa => 'A3', + handles => { + push_a3 => 'push', + }, + ); + + has a4 => ( + traits => ['Array'], + is => 'rw', + isa => 'ArrayRef', + lazy => 1, + default => 'invalid', + clearer => '_clear_a4', + handles => { + get_a4 => 'get', + push_a4 => 'push', + accessor_a4 => 'accessor', + }, + ); + + has a5 => ( + traits => ['Array'], + is => 'rw', + isa => 'A5', + coerce => 1, + lazy => 1, + default => 'invalid', + clearer => '_clear_a5', + handles => { + get_a5 => 'get', + push_a5 => 'push', + accessor_a5 => 'accessor', + }, + ); +} + +my $foo = Foo->new; + +{ + $foo->array( [] ); + is_deeply( $foo->array, [], "array - correct contents" ); + + $foo->push_array('foo'); + is_deeply( $foo->array, ['foo'], "array - correct contents" ); +} + +{ + $foo->array_int( [] ); + is_deeply( $foo->array_int, [], "array_int - correct contents" ); + + isnt( exception { $foo->push_array_int('foo') }, undef, "array_int - can't push wrong type" ); + is_deeply( $foo->array_int, [], "array_int - correct contents" ); + + $foo->push_array_int(1); + is_deeply( $foo->array_int, [1], "array_int - correct contents" ); +} + +{ + isnt( exception { $foo->push_a1('foo') }, undef, "a1 - can't push onto undef" ); + + $foo->a1( [] ); + is_deeply( $foo->a1, [], "a1 - correct contents" ); + + isnt( exception { $foo->push_a1('foo') }, undef, "a1 - can't push wrong type" ); + + is_deeply( $foo->a1, [], "a1 - correct contents" ); + + $foo->push_a1(1); + is_deeply( $foo->a1, [1], "a1 - correct contents" ); +} + +{ + isnt( exception { $foo->push_a2('foo') }, undef, "a2 - can't push onto undef" ); + + $foo->a2( [] ); + is_deeply( $foo->a2, [], "a2 - correct contents" ); + + $foo->push_a2('foo'); + is_deeply( $foo->a2, ['foo'], "a2 - correct contents" ); + + isnt( exception { $foo->push_a2('bar') }, undef, "a2 - can't push more than one element" ); + + is_deeply( $foo->a2, ['foo'], "a2 - correct contents" ); +} + +{ + isnt( exception { $foo->push_a3(1) }, undef, "a3 - can't push onto undef" ); + + $foo->a3( [] ); + is_deeply( $foo->a3, [], "a3 - correct contents" ); + + isnt( exception { $foo->push_a3('foo') }, undef, "a3 - can't push non-int" ); + + isnt( exception { $foo->push_a3(100) }, undef, "a3 - can't violate overall type constraint" ); + + is_deeply( $foo->a3, [], "a3 - correct contents" ); + + $foo->push_a3(1); + is_deeply( $foo->a3, [1], "a3 - correct contents" ); + + isnt( exception { $foo->push_a3(100) }, undef, "a3 - can't violate overall type constraint" ); + + is_deeply( $foo->a3, [1], "a3 - correct contents" ); + + $foo->push_a3(3); + is_deeply( $foo->a3, [ 1, 3 ], "a3 - correct contents" ); +} + +{ + my $expect + = qr/\QAttribute (a4) does not pass the type constraint because: Validation failed for 'ArrayRef' with value invalid/; + + like( + exception { $foo->accessor_a4(0); }, + $expect, + 'invalid default is caught when trying to read via accessor' + ); + + like( + exception { $foo->accessor_a4( 0 => 42 ); }, + $expect, + 'invalid default is caught when trying to write via accessor' + ); + + like( + exception { $foo->push_a4(42); }, + $expect, + 'invalid default is caught when trying to push' + ); + + like( + exception { $foo->get_a4(42); }, + $expect, + 'invalid default is caught when trying to get' + ); +} + +{ + my $foo = Foo->new; + + is( + $foo->accessor_a5(0), 'invalid', + 'lazy default is coerced when trying to read via accessor' + ); + + $foo->_clear_a5; + + $foo->accessor_a5( 1 => 'thing' ); + + is_deeply( + $foo->a5, + [ 'invalid', 'thing' ], + 'lazy default is coerced when trying to write via accessor' + ); + + $foo->_clear_a5; + + $foo->push_a5('thing'); + + is_deeply( + $foo->a5, + [ 'invalid', 'thing' ], + 'lazy default is coerced when trying to push' + ); + + $foo->_clear_a5; + + is( + $foo->get_a5(0), 'invalid', + 'lazy default is coerced when trying to get' + ); +} + +done_testing; diff --git a/t/070_native_traits/012_array_trigger.t b/t/070_native_traits/012_array_trigger.t new file mode 100644 index 0000000..34177e7 --- /dev/null +++ b/t/070_native_traits/012_array_trigger.t @@ -0,0 +1,53 @@ +use strict; +use warnings; + +use Test::More; + +{ + package Foo; + use Mouse; + + our $Triggered = 0; + + has array => ( + traits => ['Array'], + is => 'rw', + isa => 'ArrayRef', + handles => { + push_array => 'push', + set_array => 'set', + }, + clearer => 'clear_array', + trigger => sub { $Triggered++ }, + ); +} + +my $foo = Foo->new; + +{ + $foo->array( [ 1, 2, 3 ] ); + + is_deeply( + $Foo::Triggered, + 1, + 'trigger was called for normal writer' + ); + + $foo->push_array(5); + + is_deeply( + $Foo::Triggered, + 2, + 'trigger was called on push' + ); + + $foo->set_array( 1, 42 ); + + is_deeply( + $Foo::Triggered, + 3, + 'trigger was called on set' + ); +} + +done_testing; diff --git a/t/070_native_traits/013_array_coerce.t b/t/070_native_traits/013_array_coerce.t new file mode 100644 index 0000000..f2e78a6 --- /dev/null +++ b/t/070_native_traits/013_array_coerce.t @@ -0,0 +1,238 @@ +use strict; +use warnings; + +use Test::More skip_all => 'Not supported by MouseX::NativeTraits'; + +use Test::More; +use Test::Fatal; + +{ + + package Foo; + use Mouse; + use Mouse::Util::TypeConstraints; + + subtype 'UCArray', as 'ArrayRef[Str]', where { + !grep {/[a-z]/} @{$_}; + }; + + coerce 'UCArray', from 'ArrayRef[Str]', via { + [ map { uc $_ } @{$_} ]; + }; + + has array => ( + traits => ['Array'], + is => 'rw', + isa => 'UCArray', + coerce => 1, + handles => { + push_array => 'push', + set_array => 'set', + }, + ); + + our @TriggerArgs; + + has lazy => ( + traits => ['Array'], + is => 'rw', + isa => 'UCArray', + coerce => 1, + lazy => 1, + default => sub { ['a'] }, + handles => { + push_lazy => 'push', + set_lazy => 'set', + }, + trigger => sub { @TriggerArgs = @_ }, + clearer => 'clear_lazy', + ); +} + +my $foo = Foo->new; + +{ + $foo->array( [qw( A B C )] ); + + $foo->push_array('d'); + + is_deeply( + $foo->array, [qw( A B C D )], + 'push coerces the array' + ); + + $foo->set_array( 1 => 'x' ); + + is_deeply( + $foo->array, [qw( A X C D )], + 'set coerces the array' + ); +} + +{ + $foo->push_lazy('d'); + + is_deeply( + $foo->lazy, [qw( A D )], + 'push coerces the array - lazy' + ); + + is_deeply( + \@Foo::TriggerArgs, + [ $foo, [qw( A D )], ['A'] ], + 'trigger receives expected arguments' + ); + + $foo->set_lazy( 2 => 'f' ); + + is_deeply( + $foo->lazy, [qw( A D F )], + 'set coerces the array - lazy' + ); + + is_deeply( + \@Foo::TriggerArgs, + [ $foo, [qw( A D F )], [qw( A D )] ], + 'trigger receives expected arguments' + ); +} + +{ + package Thing; + use Mouse; + + has thing => ( + is => 'ro', + isa => 'Int', + ); +} + +{ + package Bar; + use Mouse; + use Mouse::Util::TypeConstraints; + + class_type 'Thing'; + + coerce 'Thing' + => from 'Int' + => via { Thing->new( thing => $_ ) }; + + subtype 'ArrayRefOfThings' + => as 'ArrayRef[Thing]'; + + coerce 'ArrayRefOfThings' + => from 'ArrayRef[Int]' + => via { [ map { Thing->new( thing => $_ ) } @{$_} ] }; + + coerce 'ArrayRefOfThings' + => from 'Int' + => via { [ Thing->new( thing => $_ ) ] }; + + has array => ( + traits => ['Array'], + is => 'rw', + isa => 'ArrayRefOfThings', + coerce => 1, + handles => { + push_array => 'push', + unshift_array => 'unshift', + set_array => 'set', + insert_array => 'insert', + }, + ); +} + +{ + my $bar = Bar->new( array => [ 1, 2, 3 ] ); + + $bar->push_array( 4, 5 ); + + is_deeply( + [ map { $_->thing } @{ $bar->array } ], + [ 1, 2, 3, 4, 5 ], + 'push coerces new members' + ); + + $bar->unshift_array( -1, 0 ); + + is_deeply( + [ map { $_->thing } @{ $bar->array } ], + [ -1, 0, 1, 2, 3, 4, 5 ], + 'unshift coerces new members' + ); + + $bar->set_array( 3 => 9 ); + + is_deeply( + [ map { $_->thing } @{ $bar->array } ], + [ -1, 0, 1, 9, 3, 4, 5 ], + 'set coerces new members' + ); + + $bar->insert_array( 3 => 42 ); + + is_deeply( + [ map { $_->thing } @{ $bar->array } ], + [ -1, 0, 1, 42, 9, 3, 4, 5 ], + 'insert coerces new members' + ); +} + +{ + package Baz; + use Mouse; + use Mouse::Util::TypeConstraints; + + subtype 'SmallArrayRef' + => as 'ArrayRef' + => where { @{$_} <= 2 }; + + coerce 'SmallArrayRef' + => from 'ArrayRef' + => via { [ @{$_}[ -2, -1 ] ] }; + + has array => ( + traits => ['Array'], + is => 'rw', + isa => 'SmallArrayRef', + coerce => 1, + handles => { + push_array => 'push', + set_array => 'set', + insert_array => 'insert', + }, + ); +} + +{ + my $baz = Baz->new( array => [ 1, 2, 3 ] ); + + is_deeply( + $baz->array, [ 2, 3 ], + 'coercion truncates array ref in constructor' + ); + + $baz->push_array(4); + + is_deeply( + $baz->array, [ 3, 4 ], + 'coercion truncates array ref on push' + ); + + $baz->insert_array( 1 => 5 ); + + is_deeply( + $baz->array, [ 5, 4 ], + 'coercion truncates array ref on insert' + ); + + $baz->push_array( 7, 8, 9 ); + + is_deeply( + $baz->array, [ 8, 9 ], + 'coercion truncates array ref on push' + ); +} + +done_testing; diff --git a/t/070_native_traits/020_trait_bool.t b/t/070_native_traits/020_trait_bool.t new file mode 100644 index 0000000..8c55539 --- /dev/null +++ b/t/070_native_traits/020_trait_bool.t @@ -0,0 +1,103 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +use lib 't/lib'; + +use Mouse (); +use Mouse::Util::TypeConstraints; +#use NoInlineAttribute; +use Test::More; +use Test::Fatal; +use Test::Mouse; + +{ + my %handles = ( + illuminate => 'set', + darken => 'unset', + flip_switch => 'toggle', + is_dark => 'not', + ); + + my $name = 'Foo1'; + + sub build_class { + my %attr = @_; + + my $class = Mouse::Meta::Class->create( + $name++, + superclasses => ['Mouse::Object'], + ); + + my @traits = 'Bool'; + push @traits, 'NoInlineAttribute' + if delete $attr{no_inline}; + + $class->add_attribute( + is_lit => ( + traits => \@traits, + is => 'rw', + isa => 'Bool', + default => 0, + handles => \%handles, + clearer => '_clear_is_list', + %attr, + ), + ); + + return ( $class->name, \%handles ); + } +} + +{ + run_tests(build_class); + run_tests( build_class( lazy => 1 ) ); + run_tests( build_class( trigger => sub { } ) ); + #run_tests( build_class( no_inline => 1 ) ); + + # Will force the inlining code to check the entire hashref when it is modified. + subtype 'MyBool', as 'Bool', where { 1 }; + + run_tests( build_class( isa => 'MyBool' ) ); + + coerce 'MyBool', from 'Bool', via { $_ }; + + run_tests( build_class( isa => 'MyBool', coerce => 1 ) ); +} + +sub run_tests { + my ( $class, $handles ) = @_; + + can_ok( $class, $_ ) for sort keys %{$handles}; + + with_immutable { + my $obj = $class->new; + + ok( $obj->illuminate, 'set returns true' ); + ok( $obj->is_lit, 'set is_lit to 1 using ->illuminate' ); + ok( !$obj->is_dark, 'check if is_dark does the right thing' ); + + like( exception { $obj->illuminate(1) }, qr/Cannot call set with any arguments/, 'set throws an error when an argument is passed' ); + + ok( !$obj->darken, 'unset returns false' ); + ok( !$obj->is_lit, 'set is_lit to 0 using ->darken' ); + ok( $obj->is_dark, 'check if is_dark does the right thing' ); + + like( exception { $obj->darken(1) }, qr/Cannot call unset with any arguments/, 'unset throws an error when an argument is passed' ); + + ok( $obj->flip_switch, 'toggle returns new value' ); + ok( $obj->is_lit, 'toggle is_lit back to 1 using ->flip_switch' ); + ok( !$obj->is_dark, 'check if is_dark does the right thing' ); + + like( exception { $obj->flip_switch(1) }, qr/Cannot call toggle with any arguments/, 'toggle throws an error when an argument is passed' ); + + $obj->flip_switch; + ok( !$obj->is_lit, + 'toggle is_lit back to 0 again using ->flip_switch' ); + ok( $obj->is_dark, 'check if is_dark does the right thing' ); + } + $class; +} + +done_testing; diff --git a/t/070_native_traits/030_trait_code.t b/t/070_native_traits/030_trait_code.t new file mode 100644 index 0000000..73ea16d --- /dev/null +++ b/t/070_native_traits/030_trait_code.t @@ -0,0 +1,113 @@ +use strict; +use warnings; + +use lib 't/lib'; + +use Mouse (); +#use NoInlineAttribute; +use Test::More; +use Test::Mouse; + +{ + my $name = 'Foo1'; + + sub build_class { + my ( $attr1, $attr2, $attr3, $no_inline ) = @_; + + my $class = Mouse::Meta::Class->create( + $name++, + superclasses => ['Mouse::Object'], + ); + + my @traits = 'Code'; + push @traits, 'NoInlineAttribute' + if $no_inline; + + $class->add_attribute( + callback => ( + traits => \@traits, + isa => 'CodeRef', + required => 1, + handles => { 'invoke_callback' => 'execute' }, + %{ $attr1 || {} }, + ) + ); + + $class->add_attribute( + callback_method => ( + traits => \@traits, + isa => 'CodeRef', + required => 1, + handles => { 'invoke_method_callback' => 'execute_method' }, + %{ $attr2 || {} }, + ) + ); + + $class->add_attribute( + multiplier => ( + traits => \@traits, + isa => 'CodeRef', + required => 1, + handles => { 'multiply' => 'execute' }, + %{ $attr3 || {} }, + ) + ); + + return $class->name; + } +} + +{ + my $i; + + my %subs = ( + callback => sub { ++$i }, + callback_method => sub { shift->multiply(@_) }, + multiplier => sub { $_[0] * 2 }, + ); + + run_tests( build_class, \$i, \%subs ); + + #run_tests( build_class( undef, undef, undef, 1 ), \$i, \%subs ); + + run_tests( + build_class( + { + lazy => 1, default => sub { $subs{callback} } + }, { + lazy => 1, default => sub { $subs{callback_method} } + }, { + lazy => 1, default => sub { $subs{multiplier} } + }, + ), + \$i, + ); +} + +sub run_tests { + my ( $class, $iref, @args ) = @_; + + ok( + !$class->can($_), + "Code trait didn't create reader method for $_" + ) for qw(callback callback_method multiplier); + + with_immutable { + ${$iref} = 0; + my $obj = $class->new(@args); + + $obj->invoke_callback; + + is( ${$iref}, 1, '$i is 1 after invoke_callback' ); + + is( + $obj->invoke_method_callback(3), 6, + 'invoke_method_callback calls multiply with @_' + ); + + is( $obj->multiply(3), 6, 'multiple double value' ); + } + $class; +} + +done_testing; diff --git a/t/070_native_traits/040_trait_counter.t b/t/070_native_traits/040_trait_counter.t new file mode 100644 index 0000000..e2d2274 --- /dev/null +++ b/t/070_native_traits/040_trait_counter.t @@ -0,0 +1,135 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +use lib 't/lib'; + +use Mouse (); +use Mouse::Util::TypeConstraints; +#use NoInlineAttribute; +use Test::Fatal; +use Test::More; +use Test::Mouse; + +{ + my %handles = ( + inc_counter => 'inc', + inc_counter_2 => [ inc => 2 ], + dec_counter => 'dec', + dec_counter_2 => [ dec => 2 ], + reset_counter => 'reset', + set_counter => 'set', + set_counter_42 => [ set => 42 ], + ); + + my $name = 'Foo1'; + + sub build_class { + my %attr = @_; + + my $class = Mouse::Meta::Class->create( + $name++, + superclasses => ['Mouse::Object'], + ); + + my @traits = 'Counter'; + push @traits, 'NoInlineAttribute' + if delete $attr{no_inline}; + + $class->add_attribute( + counter => ( + traits => \@traits, + is => 'ro', + isa => 'Int', + default => 0, + handles => \%handles, + clearer => '_clear_counter', + %attr, + ), + ); + + return ( $class->name, \%handles ); + } +} + +{ + run_tests(build_class); + run_tests( build_class( lazy => 1 ) ); + run_tests( build_class( trigger => sub { } ) ); + #run_tests( build_class( no_inline => 1 ) ); + + # Will force the inlining code to check the entire hashref when it is modified. + subtype 'MyInt', as 'Int', where { 1 }; + + run_tests( build_class( isa => 'MyInt' ) ); + + coerce 'MyInt', from 'Int', via { $_ }; + + run_tests( build_class( isa => 'MyInt', coerce => 1 ) ); +} + +sub run_tests { + my ( $class, $handles ) = @_; + + can_ok( $class, $_ ) for sort keys %{$handles}; + + with_immutable { + my $obj = $class->new(); + + is( $obj->counter, 0, '... got the default value' ); + + is( $obj->inc_counter, 1, 'inc returns new value' ); + is( $obj->counter, 1, '... got the incremented value' ); + + is( $obj->inc_counter, 2, 'inc returns new value' ); + is( $obj->counter, 2, '... got the incremented value (again)' ); + + like( exception { $obj->inc_counter( 1, 2 ) }, qr/Cannot call inc with more than 1 argument/, 'inc throws an error when two arguments are passed' ); + + is( $obj->dec_counter, 1, 'dec returns new value' ); + is( $obj->counter, 1, '... got the decremented value' ); + + like( exception { $obj->dec_counter( 1, 2 ) }, qr/Cannot call dec with more than 1 argument/, 'dec throws an error when two arguments are passed' ); + + is( $obj->reset_counter, 0, 'reset returns new value' ); + is( $obj->counter, 0, '... got the original value' ); + + like( exception { $obj->reset_counter(2) }, qr/Cannot call reset with any arguments/, 'reset throws an error when an argument is passed' ); + + is( $obj->set_counter(5), 5, 'set returns new value' ); + is( $obj->counter, 5, '... set the value' ); + + like( exception { $obj->set_counter( 1, 2 ) }, qr/Cannot call set with more than 1 argument/, 'set throws an error when two arguments are passed' ); + + $obj->inc_counter(2); + is( $obj->counter, 7, '... increment by arg' ); + + $obj->dec_counter(5); + is( $obj->counter, 2, '... decrement by arg' ); + + $obj->inc_counter_2; + is( $obj->counter, 4, '... curried increment' ); + + $obj->dec_counter_2; + is( $obj->counter, 2, '... curried deccrement' ); + + $obj->set_counter_42; + is( $obj->counter, 42, '... curried set' ); + + if ( $class->meta->get_attribute('counter')->is_lazy ) { + my $obj = $class->new; + + $obj->inc_counter; + is( $obj->counter, 1, 'inc increments - with lazy default' ); + + $obj->_clear_counter; + + $obj->dec_counter; + is( $obj->counter, -1, 'dec decrements - with lazy default' ); + } + } + $class; +} + +done_testing; diff --git a/t/070_native_traits/050_trait_hash.t b/t/070_native_traits/050_trait_hash.t new file mode 100644 index 0000000..3dc76e2 --- /dev/null +++ b/t/070_native_traits/050_trait_hash.t @@ -0,0 +1,294 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +use lib 't/lib'; + +use Mouse (); +use Mouse::Util::TypeConstraints; +#use NoInlineAttribute; +use Test::Fatal; +use Test::More; +use Test::Mouse; + +{ + my %handles = ( + option_accessor => 'accessor', + quantity => [ accessor => 'quantity' ], + clear_options => 'clear', + num_options => 'count', + delete_option => 'delete', + is_defined => 'defined', + options_elements => 'elements', + has_option => 'exists', + get_option => 'get', + has_no_options => 'is_empty', + keys => 'keys', + values => 'values', + key_value => 'kv', + set_option => 'set', + ); + + my $name = 'Foo1'; + + sub build_class { + my %attr = @_; + + my $class = Mouse::Meta::Class->create( + $name++, + superclasses => ['Mouse::Object'], + ); + + my @traits = 'Hash'; + push @traits, 'NoInlineAttribute' + if delete $attr{no_inline}; + + $class->add_attribute( + options => ( + traits => \@traits, + is => 'rw', + isa => 'HashRef[Str]', + default => sub { {} }, + handles => \%handles, + clearer => '_clear_options', + %attr, + ), + ); + + return ( $class->name, \%handles ); + } +} + +{ + run_tests(build_class); + run_tests( build_class( lazy => 1, default => sub { { x => 1 } } ) ); + run_tests( build_class( trigger => sub { } ) ); + #run_tests( build_class( no_inline => 1 ) ); + + # Will force the inlining code to check the entire hashref when it is modified. + subtype 'MyHashRef', as 'HashRef[Str]', where { 1 }; + + run_tests( build_class( isa => 'MyHashRef' ) ); + + coerce 'MyHashRef', from 'HashRef', via { $_ }; + + run_tests( build_class( isa => 'MyHashRef', coerce => 1 ) ); +} + +sub run_tests { + my ( $class, $handles ) = @_; + + can_ok( $class, $_ ) for sort keys %{$handles}; + + with_immutable { + my $obj = $class->new( options => {} ); + + ok( $obj->has_no_options, '... we have no options' ); + is( $obj->num_options, 0, '... we have no options' ); + + is_deeply( $obj->options, {}, '... no options yet' ); + ok( !$obj->has_option('foo'), '... we have no foo option' ); + + is( exception { + is( + $obj->set_option( foo => 'bar' ), + 'bar', + 'set return single new value in scalar context' + ); + }, undef, '... set the option okay' ); + + ok( $obj->is_defined('foo'), '... foo is defined' ); + + ok( !$obj->has_no_options, '... we have options' ); + is( $obj->num_options, 1, '... we have 1 option(s)' ); + ok( $obj->has_option('foo'), '... we have a foo option' ); + is_deeply( $obj->options, { foo => 'bar' }, '... got options now' ); + + is( exception { + $obj->set_option( bar => 'baz' ); + }, undef, '... set the option okay' ); + + is( $obj->num_options, 2, '... we have 2 option(s)' ); + is_deeply( + $obj->options, { foo => 'bar', bar => 'baz' }, + '... got more options now' + ); + + is( $obj->get_option('foo'), 'bar', '... got the right option' ); + + is_deeply( + [ $obj->get_option(qw(foo bar)) ], [qw(bar baz)], + "get multiple options at once" + ); + + is( + scalar( $obj->get_option(qw( foo bar)) ), "baz", + '... got last option in scalar context' + ); + + is( exception { + $obj->set_option( oink => "blah", xxy => "flop" ); + }, undef, '... set the option okay' ); + + is( $obj->num_options, 4, "4 options" ); + is_deeply( + [ $obj->get_option(qw(foo bar oink xxy)) ], + [qw(bar baz blah flop)], "get multiple options at once" + ); + + is( exception { + is( scalar $obj->delete_option('bar'), 'baz', + 'delete returns deleted value' ); + }, undef, '... deleted the option okay' ); + + is( exception { + is_deeply( + [ $obj->delete_option( 'oink', 'xxy' ) ], + [ 'blah', 'flop' ], + 'delete returns all deleted values in list context' + ); + }, undef, '... deleted multiple option okay' ); + + is( $obj->num_options, 1, '... we have 1 option(s)' ); + is_deeply( + $obj->options, { foo => 'bar' }, + '... got more options now' + ); + + $obj->clear_options; + + is_deeply( $obj->options, {}, "... cleared options" ); + + is( exception { + $obj->quantity(4); + }, undef, '... options added okay with defaults' ); + + is( $obj->quantity, 4, 'reader part of curried accessor works' ); + + is( + $obj->option_accessor('quantity'), 4, + 'accessor as reader' + ); + + is_deeply( + $obj->options, { quantity => 4 }, + '... returns what we expect' + ); + + $obj->option_accessor( size => 42 ); + + like( + exception { + $obj->option_accessor; + }, + qr/Cannot call accessor without at least 1 argument/, + 'error when calling accessor with no arguments' + ); + + is_deeply( + $obj->options, { quantity => 4, size => 42 }, + 'accessor as writer' + ); + + is( exception { + $class->new( options => { foo => 'BAR' } ); + }, undef, '... good constructor params' ); + isnt( exception { + $obj->set_option( bar => {} ); + }, undef, '... could not add a hash ref where an string is expected' ); + + isnt( exception { + $class->new( options => { foo => [] } ); + }, undef, '... bad constructor params' ); + + $obj->options( {} ); + + is_deeply( + [ $obj->set_option( oink => "blah", xxy => "flop" ) ], + [ 'blah', 'flop' ], + 'set returns newly set values in order of keys provided' + ); + + is_deeply( + [ sort $obj->keys ], + [ 'oink', 'xxy' ], + 'keys returns expected keys' + ); + + is_deeply( + [ sort $obj->values ], + [ 'blah', 'flop' ], + 'values returns expected values' + ); + + my @key_value = sort { $a->[0] cmp $b->[0] } $obj->key_value; + is_deeply( + \@key_value, + [ + sort { $a->[0] cmp $b->[0] }[ 'xxy', 'flop' ], + [ 'oink', 'blah' ] + ], + '... got the right key value pairs' + ) + or do { + require Data::Dumper; + diag( Data::Dumper::Dumper( \@key_value ) ); + }; + + my %options_elements = $obj->options_elements; + is_deeply( + \%options_elements, { + 'oink' => 'blah', + 'xxy' => 'flop' + }, + '... got the right hash elements' + ); + + if ( $class->meta->get_attribute('options')->is_lazy ) { + my $obj = $class->new; + + $obj->set_option( y => 2 ); + + is_deeply( + $obj->options, { x => 1, y => 2 }, + 'set_option with lazy default' + ); + + $obj->_clear_options; + + ok( + $obj->has_option('x'), + 'key for x exists - lazy default' + ); + + $obj->_clear_options; + + ok( + $obj->is_defined('x'), + 'key for x is defined - lazy default' + ); + + $obj->_clear_options; + + is_deeply( + [ $obj->key_value ], + [ [ x => 1 ] ], + 'kv returns lazy default' + ); + + $obj->_clear_options; + + $obj->option_accessor( y => 2 ); + + is_deeply( + [ sort $obj->keys ], + [ 'x', 'y' ], + 'accessor triggers lazy default generator' + ); + } + } + $class; +} + +done_testing; diff --git a/t/070_native_traits/051_hash_subtypes.t b/t/070_native_traits/051_hash_subtypes.t new file mode 100644 index 0000000..de8d6f7 --- /dev/null +++ b/t/070_native_traits/051_hash_subtypes.t @@ -0,0 +1,206 @@ +#!/usr/bin/env perl + +use strict; +use warnings; + +use Test::More; +use Test::Fatal; + +{ + use Mouse::Util::TypeConstraints; + use List::Util qw( sum ); + + subtype 'H1', as 'HashRef[Int]'; + subtype 'H2', as 'HashRef', where { scalar keys %{$_} < 2 }; + subtype 'H3', as 'HashRef[Int]', + where { ( sum( values %{$_} ) || 0 ) < 5 }; + + subtype 'H5', as 'HashRef'; + coerce 'H5', from 'Str', via { { key => $_ } }; + + no Mouse::Util::TypeConstraints; +} + +{ + + package Foo; + use Mouse; + + has hash_int => ( + traits => ['Hash'], + is => 'rw', + isa => 'HashRef[Int]', + handles => { + set_hash_int => 'set', + }, + ); + + has h1 => ( + traits => ['Hash'], + is => 'rw', + isa => 'H1', + handles => { + set_h1 => 'set', + }, + ); + + has h2 => ( + traits => ['Hash'], + is => 'rw', + isa => 'H2', + handles => { + set_h2 => 'set', + }, + ); + + has h3 => ( + traits => ['Hash'], + is => 'rw', + isa => 'H3', + handles => { + set_h3 => 'set', + }, + ); + + has h4 => ( + traits => ['Hash'], + is => 'rw', + isa => 'HashRef', + lazy => 1, + default => 'invalid', + clearer => '_clear_h4', + handles => { + get_h4 => 'get', + accessor_h4 => 'accessor', + }, + ); + + has h5 => ( + traits => ['Hash'], + is => 'rw', + isa => 'H5', + coerce => 1, + lazy => 1, + default => 'invalid', + clearer => '_clear_h5', + handles => { + get_h5 => 'get', + accessor_h5 => 'accessor', + }, + ); +} + +my $foo = Foo->new; + +{ + $foo->hash_int( {} ); + is_deeply( $foo->hash_int, {}, "hash_int - correct contents" ); + + isnt( exception { $foo->set_hash_int( x => 'foo' ) }, undef, "hash_int - can't set wrong type" ); + is_deeply( $foo->hash_int, {}, "hash_int - correct contents" ); + + $foo->set_hash_int( x => 1 ); + is_deeply( $foo->hash_int, { x => 1 }, "hash_int - correct contents" ); +} + +{ + isnt( exception { $foo->set_h1('foo') }, undef, "h1 - can't set onto undef" ); + + $foo->h1( {} ); + is_deeply( $foo->h1, {}, "h1 - correct contents" ); + + isnt( exception { $foo->set_h1( x => 'foo' ) }, undef, "h1 - can't set wrong type" ); + + is_deeply( $foo->h1, {}, "h1 - correct contents" ); + + $foo->set_h1( x => 1 ); + is_deeply( $foo->h1, { x => 1 }, "h1 - correct contents" ); +} + +{ + isnt( exception { $foo->set_h2('foo') }, undef, "h2 - can't set onto undef" ); + + $foo->h2( {} ); + is_deeply( $foo->h2, {}, "h2 - correct contents" ); + + $foo->set_h2( x => 'foo' ); + is_deeply( $foo->h2, { x => 'foo' }, "h2 - correct contents" ); + + isnt( exception { $foo->set_h2( y => 'bar' ) }, undef, "h2 - can't set more than one element" ); + + is_deeply( $foo->h2, { x => 'foo' }, "h2 - correct contents" ); +} + +{ + isnt( exception { $foo->set_h3(1) }, undef, "h3 - can't set onto undef" ); + + $foo->h3( {} ); + is_deeply( $foo->h3, {}, "h3 - correct contents" ); + + isnt( exception { $foo->set_h3( x => 'foo' ) }, undef, "h3 - can't set non-int" ); + + isnt( exception { $foo->set_h3( x => 100 ) }, undef, "h3 - can't violate overall type constraint" ); + + is_deeply( $foo->h3, {}, "h3 - correct contents" ); + + $foo->set_h3( x => 1 ); + is_deeply( $foo->h3, { x => 1 }, "h3 - correct contents" ); + + isnt( exception { $foo->set_h3( x => 100 ) }, undef, "h3 - can't violate overall type constraint" ); + + is_deeply( $foo->h3, { x => 1 }, "h3 - correct contents" ); + + $foo->set_h3( y => 3 ); + is_deeply( $foo->h3, { x => 1, y => 3 }, "h3 - correct contents" ); +} + +{ + my $expect + = qr/\QAttribute (h4) does not pass the type constraint because: Validation failed for 'HashRef' with value invalid/; + + like( + exception { $foo->accessor_h4('key'); }, + $expect, + 'invalid default is caught when trying to read via accessor' + ); + + like( + exception { $foo->accessor_h4( size => 42 ); }, + $expect, + 'invalid default is caught when trying to write via accessor' + ); + + like( + exception { $foo->get_h4(42); }, + $expect, + 'invalid default is caught when trying to get' + ); +} + +{ + my $foo = Foo->new; + + is( + $foo->accessor_h5('key'), 'invalid', + 'lazy default is coerced when trying to read via accessor' + ); + + $foo->_clear_h5; + + $foo->accessor_h5( size => 42 ); + + is_deeply( + $foo->h5, + { key => 'invalid', size => 42 }, + 'lazy default is coerced when trying to write via accessor' + ); + + $foo->_clear_h5; + + is( + $foo->get_h5('key'), 'invalid', + 'lazy default is coerced when trying to get' + ); +} + +done_testing; diff --git a/t/070_native_traits/052_hash_trigger.t b/t/070_native_traits/052_hash_trigger.t new file mode 100644 index 0000000..aae86d9 --- /dev/null +++ b/t/070_native_traits/052_hash_trigger.t @@ -0,0 +1,54 @@ +use strict; +use warnings; + +use Test::More; + +{ + + package Foo; + use Mouse; + + our $Triggered = 0; + + has hash => ( + traits => ['Hash'], + is => 'rw', + isa => 'HashRef', + handles => { + delete_key => 'delete', + set_key => 'set', + }, + clearer => 'clear_key', + trigger => sub { $Triggered++ }, + ); +} + +my $foo = Foo->new; + +{ + $foo->hash( { x => 1, y => 2 } ); + + is_deeply( + $Foo::Triggered, + 1, + 'trigger was called for normal writer' + ); + + $foo->set_key( z => 5 ); + + is_deeply( + $Foo::Triggered, + 2, + 'trigger was called on set' + ); + + $foo->delete_key('y'); + + is_deeply( + $Foo::Triggered, + 3, + 'trigger was called on delete' + ); +} + +done_testing; diff --git a/t/070_native_traits/053_hash_coerce.t b/t/070_native_traits/053_hash_coerce.t new file mode 100644 index 0000000..224e5b4 --- /dev/null +++ b/t/070_native_traits/053_hash_coerce.t @@ -0,0 +1,149 @@ +use strict; +use warnings; + +use Test::More skip_all => 'Not supported by MouseX::NativeTraits'; +use Test::More; + +{ + + package Foo; + use Mouse; + use Mouse::Util::TypeConstraints; + + subtype 'UCHash', as 'HashRef[Str]', where { + !grep {/[a-z]/} values %{$_}; + }; + + coerce 'UCHash', from 'HashRef[Str]', via { + $_ = uc $_ for values %{$_}; + $_; + }; + + has hash => ( + traits => ['Hash'], + is => 'rw', + isa => 'UCHash', + coerce => 1, + handles => { + set_key => 'set', + }, + ); + + our @TriggerArgs; + + has lazy => ( + traits => ['Hash'], + is => 'rw', + isa => 'UCHash', + coerce => 1, + lazy => 1, + default => sub { { x => 'a' } }, + handles => { + set_lazy => 'set', + }, + trigger => sub { @TriggerArgs = @_ }, + clearer => 'clear_lazy', + ); +} + +my $foo = Foo->new; + +{ + $foo->hash( { x => 'A', y => 'B' } ); + + $foo->set_key( z => 'c' ); + + is_deeply( + $foo->hash, { x => 'A', y => 'B', z => 'C' }, + 'set coerces the hash' + ); +} + +{ + $foo->set_lazy( y => 'b' ); + + is_deeply( + $foo->lazy, { x => 'A', y => 'B' }, + 'set coerces the hash - lazy' + ); + + is_deeply( + \@Foo::TriggerArgs, + [ $foo, { x => 'A', y => 'B' }, { x => 'A' } ], + 'trigger receives expected arguments' + ); +} + +{ + package Thing; + use Mouse; + + has thing => ( + is => 'ro', + isa => 'Str', + ); +} + +{ + package Bar; + use Mouse; + use Mouse::Util::TypeConstraints; + + class_type 'Thing'; + + coerce 'Thing' + => from 'Str' + => via { Thing->new( thing => $_ ) }; + + subtype 'HashRefOfThings' + => as 'HashRef[Thing]'; + + coerce 'HashRefOfThings' + => from 'HashRef[Str]' + => via { + my %new; + for my $k ( keys %{$_} ) { + $new{$k} = Thing->new( thing => $_->{$k} ); + } + return \%new; + }; + + coerce 'HashRefOfThings' + => from 'Str' + => via { [ Thing->new( thing => $_ ) ] }; + + has hash => ( + traits => ['Hash'], + is => 'rw', + isa => 'HashRefOfThings', + coerce => 1, + handles => { + set_hash => 'set', + get_hash => 'get', + }, + ); +} + +{ + my $bar = Bar->new( hash => { foo => 1, bar => 2 } ); + + is( + $bar->get_hash('foo')->thing, 1, + 'constructor coerces hash reference' + ); + + $bar->set_hash( baz => 3, quux => 4 ); + + is( + $bar->get_hash('baz')->thing, 3, + 'set coerces new hash values' + ); + + is( + $bar->get_hash('quux')->thing, 4, + 'set coerces new hash values' + ); +} + + +done_testing; diff --git a/t/070_native_traits/060_trait_number.t b/t/070_native_traits/060_trait_number.t new file mode 100644 index 0000000..449de2b --- /dev/null +++ b/t/070_native_traits/060_trait_number.t @@ -0,0 +1,165 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +#use lib 't/lib'; + +use Mouse (); +use Mouse::Util::TypeConstraints; +#use NoInlineAttribute; +use Test::Fatal; +use Test::More; +use Test::Mouse; + +{ + my %handles = ( + abs => 'abs', + add => 'add', + inc => [ add => 1 ], + div => 'div', + cut_in_half => [ div => 2 ], + mod => 'mod', + odd => [ mod => 2 ], + mul => 'mul', + #set => 'set', + sub => 'sub', + dec => [ sub => 1 ], + ); + + my $name = 'Foo1'; + + sub build_class { + my %attr = @_; + + my $class = Mouse::Meta::Class->create( + $name++, + superclasses => ['Mouse::Object'], + ); + + my @traits = 'Number'; + push @traits, 'NoInlineAttribute' + if delete $attr{no_inline}; + + $class->add_attribute( + integer => ( + traits => \@traits, + is => 'ro', + isa => 'Int', + default => 5, + handles => \%handles, + writer => 'set', + clearer => '_clear_integer', + %attr, + ), + ); + + return ( $class->name, \%handles ); + } +} + +{ + run_tests(build_class); + run_tests( build_class( lazy => 1 ) ); + run_tests( build_class( trigger => sub { } ) ); + #run_tests( build_class( no_inline => 1 ) ); + + # Will force the inlining code to check the entire hashref when it is modified. + subtype 'MyInt', as 'Int', where { 1 }; + + run_tests( build_class( isa => 'MyInt' ) ); + + coerce 'MyInt', from 'Int', via { $_ }; + + run_tests( build_class( isa => 'MyInt', coerce => 1 ) ); +} + +sub run_tests { + my ( $class, $handles ) = @_; + + can_ok( $class, $_ ) for sort keys %{$handles}; + + with_immutable { + my $obj = $class->new; + + is( $obj->integer, 5, 'Default to five' ); + + is( $obj->add(10), 15, 'add returns new value' ); + + is( $obj->integer, 15, 'Add ten for fithteen' ); + + like( exception { $obj->add( 10, 2 ) }, qr/Cannot call add with more than 1 argument/, 'add throws an error when 2 arguments are passed' ); + + is( $obj->sub(3), 12, 'sub returns new value' ); + + is( $obj->integer, 12, 'Subtract three for 12' ); + + like( exception { $obj->sub( 10, 2 ) }, qr/Cannot call sub with more than 1 argument/, 'sub throws an error when 2 arguments are passed' ); + + is( $obj->set(10), 10, 'set returns new value' ); + + is( $obj->integer, 10, 'Set to ten' ); + + isnt exception { $obj->set(10, 2) }, undef; # XXX: Mouse specific + #like( exception { $obj->set( 10, 2 ) }, qr/Cannot call set with more than 1 argument/, 'set throws an error when 2 arguments are passed' ); + + is( $obj->div(2), 5, 'div returns new value' ); + + is( $obj->integer, 5, 'divide by 2' ); + + like( exception { $obj->div( 10, 2 ) }, qr/Cannot call div with more than 1 argument/, 'div throws an error when 2 arguments are passed' ); + + is( $obj->mul(2), 10, 'mul returns new value' ); + + is( $obj->integer, 10, 'multiplied by 2' ); + + like( exception { $obj->mul( 10, 2 ) }, qr/Cannot call mul with more than 1 argument/, 'mul throws an error when 2 arguments are passed' ); + + is( $obj->mod(2), 0, 'mod returns new value' ); + + is( $obj->integer, 0, 'Mod by 2' ); + + like( exception { $obj->mod( 10, 2 ) }, qr/Cannot call mod with more than 1 argument/, 'mod throws an error when 2 arguments are passed' ); + + $obj->set(7); + + $obj->mod(5); + + is( $obj->integer, 2, 'Mod by 5' ); + + $obj->set(-1); + + is( $obj->abs, 1, 'abs returns new value' ); + + like( exception { $obj->abs(10) }, qr/Cannot call abs with any arguments/, 'abs throws an error when an argument is passed' ); + + is( $obj->integer, 1, 'abs 1' ); + + $obj->set(12); + + $obj->inc; + + is( $obj->integer, 13, 'inc 12' ); + + $obj->dec; + + is( $obj->integer, 12, 'dec 13' ); + + if ( $class->meta->get_attribute('integer')->is_lazy ) { + my $obj = $class->new; + + $obj->add(2); + + is( $obj->integer, 7, 'add with lazy default' ); + + $obj->_clear_integer; + + $obj->mod(2); + + is( $obj->integer, 1, 'mod with lazy default' ); + } + } + $class; +} + +done_testing; diff --git a/t/070_native_traits/070_trait_string.t b/t/070_native_traits/070_trait_string.t new file mode 100644 index 0000000..1489109 --- /dev/null +++ b/t/070_native_traits/070_trait_string.t @@ -0,0 +1,305 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +#use lib 't/lib'; + +use Mouse (); +use Mouse::Util::TypeConstraints; +#use NoInlineAttribute; +use Test::More; +use Test::Fatal; +use Test::Mouse; + +{ + my %handles = ( + inc => 'inc', + append => 'append', + append_curried => [ append => '!' ], + prepend => 'prepend', + prepend_curried => [ prepend => '-' ], + replace => 'replace', + replace_curried => [ replace => qr/(.)$/, sub { uc $1 } ], + chop => 'chop', + chomp => 'chomp', + clear => 'clear', + match => 'match', + match_curried => [ match => qr/\D/ ], + length => 'length', + substr => 'substr', + substr_curried_1 => [ substr => (1) ], + substr_curried_2 => [ substr => ( 1, 3 ) ], + substr_curried_3 => [ substr => ( 1, 3, 'ong' ) ], + ); + + my $name = 'Foo1'; + + sub build_class { + my %attr = @_; + + my $class = Mouse::Meta::Class->create( + $name++, + superclasses => ['Mouse::Object'], + ); + + my @traits = 'String'; + push @traits, 'NoInlineAttribute' + if delete $attr{no_inline}; + + $class->add_attribute( + _string => ( + traits => \@traits, + is => 'rw', + isa => 'Str', + default => q{}, + handles => \%handles, + clearer => '_clear_string', + %attr, + ), + ); + + return ( $class->name, \%handles ); + } +} + +{ + run_tests(build_class); + run_tests( build_class( lazy => 1, default => q{} ) ); + run_tests( build_class( trigger => sub { } ) ); + #run_tests( build_class( no_inline => 1 ) ); + + # Will force the inlining code to check the entire hashref when it is modified. + subtype 'MyStr', as 'Str', where { 1 }; + + run_tests( build_class( isa => 'MyStr' ) ); + + coerce 'MyStr', from 'Str', via { $_ }; + + run_tests( build_class( isa => 'MyStr', coerce => 1 ) ); +} + +sub run_tests { + my ( $class, $handles ) = @_; + + can_ok( $class, $_ ) for sort keys %{$handles}; + + with_immutable { + my $obj = $class->new(); + + is( $obj->length, 0, 'length returns zero' ); + + $obj->_string('a'); + is( $obj->length, 1, 'length returns 1 for new string' ); + + like( exception { $obj->length(42) }, qr/Cannot call length with any arguments/, 'length throws an error when an argument is passed' ); + + is( $obj->inc, 'b', 'inc returns new value' ); + is( $obj->_string, 'b', 'a becomes b after inc' ); + + like( exception { $obj->inc(42) }, qr/Cannot call inc with any arguments/, 'inc throws an error when an argument is passed' ); + + is( $obj->append('foo'), 'bfoo', 'append returns new value' ); + is( $obj->_string, 'bfoo', 'appended to the string' ); + + like( exception { $obj->append( 'foo', 2 ) }, qr/Cannot call append with more than 1 argument/, 'append throws an error when two arguments are passed' ); + + $obj->append_curried; + is( $obj->_string, 'bfoo!', 'append_curried appended to the string' ); + + like( exception { $obj->append_curried('foo') }, qr/Cannot call append with more than 1 argument/, 'append_curried throws an error when two arguments are passed' ); + + $obj->_string("has nl$/"); + is( $obj->chomp, 1, 'chomp returns number of characters removed' ); + is( $obj->_string, 'has nl', 'chomped string' ); + + is( $obj->chomp, 0, 'chomp returns number of characters removed' ); + is( + $obj->_string, 'has nl', + 'chomp is a no-op when string has no line ending' + ); + + like( exception { $obj->chomp(42) }, qr/Cannot call chomp with any arguments/, 'chomp throws an error when an argument is passed' ); + + is( $obj->chop, 'l', 'chop returns character removed' ); + is( $obj->_string, 'has n', 'chopped string' ); + + like( exception { $obj->chop(42) }, qr/Cannot call chop with any arguments/, 'chop throws an error when an argument is passed' ); + + $obj->_string('x'); + is( $obj->prepend('bar'), 'barx', 'prepend returns new value' ); + is( $obj->_string, 'barx', 'prepended to string' ); + + $obj->prepend_curried; + is( $obj->_string, '-barx', 'prepend_curried prepended to string' ); + + is( + $obj->replace( qr/([ao])/, sub { uc($1) } ), + '-bArx', + 'replace returns new value' + ); + + is( + $obj->_string, '-bArx', + 'substitution using coderef for replacement' + ); + + $obj->replace( qr/A/, 'X' ); + is( + $obj->_string, '-bXrx', + 'substitution using string as replacement' + ); + + $obj->_string('foo'); + $obj->replace( qr/oo/, q{} ); + + is( $obj->_string, 'f', + 'replace accepts an empty string as second argument' ); + + $obj->replace( q{}, 'a' ); + + is( $obj->_string, 'af', + 'replace accepts an empty string as first argument' ); + + like( exception { $obj->replace( {}, 'x' ) }, qr/The first argument passed to replace must be a string or regexp reference/, 'replace throws an error when the first argument is not a string or regexp' ); + + like( exception { $obj->replace( qr/x/, {} ) }, qr/The second argument passed to replace must be a string or code reference/, 'replace throws an error when the first argument is not a string or regexp' ); + + $obj->_string('Mousex'); + $obj->replace_curried; + is( $obj->_string, 'MouseX', 'capitalize last' ); + + $obj->_string('abcdef'); + + is_deeply( + [ $obj->match(qr/([az]).*([fy])/) ], [ 'a', 'f' ], + 'match -barx against /[aq]/ returns matches' + ); + + is_deeply( + [ $obj->match(qr/([az]).*([fy])/) ], [ 'a', 'f' ], + 'match -barx against /[aq]/ returns matches' + ); + + ok( + scalar $obj->match('b'), + 'match with string as argument returns true' + ); + + ok( + scalar $obj->match(q{}), + 'match with empty string as argument returns true' + ); + + like( exception { $obj->match }, qr/Cannot call match without at least 1 argument/, 'match throws an error when no arguments are passed' ); + + like( exception { $obj->match( {} ) }, qr/The argument passed to match must be a string or regexp reference/, 'match throws an error when an invalid argument is passed' ); + + $obj->_string('1234'); + ok( !$obj->match_curried, 'match_curried returns false' ); + + $obj->_string('one two three four'); + ok( $obj->match_curried, 'match curried returns true' ); + + $obj->clear; + is( $obj->_string, q{}, 'clear' ); + + like( exception { $obj->clear(42) }, qr/Cannot call clear with any arguments/, 'clear throws an error when an argument is passed' ); + + $obj->_string('some long string'); + is( + $obj->substr(1), 'ome long string', + 'substr as getter with one argument' + ); + + $obj->_string('some long string'); + is( + $obj->substr( 1, 3 ), 'ome', + 'substr as getter with two arguments' + ); + + is( + $obj->substr( 1, 3, 'ong' ), + 'ome', + 'substr as setter returns replaced string' + ); + + is( + $obj->_string, 'song long string', + 'substr as setter with three arguments' + ) or diag $obj->dump; + + $obj->substr( 1, 3, '' ); + + is( + $obj->_string, 's long string', + 'substr as setter with three arguments, replacment is empty string' + ); + + like( exception { $obj->substr }, qr/Cannot call substr without at least 1 argument/, 'substr throws an error when no argumemts are passed' ); + + like( exception { $obj->substr( 1, 2, 3, 4 ) }, qr/Cannot call substr with more than 3 arguments/, 'substr throws an error when four argumemts are passed' ); + + like( exception { $obj->substr( {} ) }, qr/The first argument passed to substr must be an integer/, 'substr throws an error when first argument is not an integer' ); + + like( exception { $obj->substr( 1, {} ) }, qr/The second argument passed to substr must be an integer/, 'substr throws an error when second argument is not an integer' ); + + like( exception { $obj->substr( 1, 2, {} ) }, qr/The third argument passed to substr must be a string/, 'substr throws an error when third argument is not a string' ); + + $obj->_string('some long string'); + + is( + $obj->substr_curried_1, 'ome long string', + 'substr_curried_1 returns expected value' + ); + + is( + $obj->substr_curried_1(3), 'ome', + 'substr_curried_1 with one argument returns expected value' + ); + + $obj->substr_curried_1( 3, 'ong' ); + + is( + $obj->_string, 'song long string', + 'substr_curried_1 as setter with two arguments' + ); + + $obj->_string('some long string'); + + is( + $obj->substr_curried_2, 'ome', + 'substr_curried_2 returns expected value' + ); + + $obj->substr_curried_2('ong'); + + is( + $obj->_string, 'song long string', + 'substr_curried_2 as setter with one arguments' + ); + + $obj->_string('some long string'); + + $obj->substr_curried_3; + + is( + $obj->_string, 'song long string', + 'substr_curried_3 as setter' + ); + + if ( $class->meta->get_attribute('_string')->is_lazy ) { + my $obj = $class->new; + + $obj->append('foo'); + + is( + $obj->_string, 'foo', + 'append with lazy default' + ); + } + } + $class; +} + +done_testing; diff --git a/t/070_native_traits/010_array_from_role.t b/t/070_native_traits/100_array_from_role.t similarity index 70% rename from t/070_native_traits/010_array_from_role.t rename to t/070_native_traits/100_array_from_role.t index dd5cf94..a7e0c5c 100644 --- a/t/070_native_traits/010_array_from_role.t +++ b/t/070_native_traits/100_array_from_role.t @@ -1,48 +1,46 @@ #!/usr/bin/perl use strict; use warnings; use Test::More; -use Test::Exception; +use Test::Fatal; { package Foo; use Mouse; has 'bar' => ( is => 'rw' ); package Stuffed::Role; use Mouse::Role; has 'options' => ( traits => ['Array'], is => 'ro', isa => 'ArrayRef[Foo]', - default => sub{ [] }, ); package Bulkie::Role; use Mouse::Role; has 'stuff' => ( traits => ['Array'], is => 'ro', isa => 'ArrayRef', - default => sub{ [] }, handles => { get_stuff => 'get', } ); package Stuff; use Mouse; - ::lives_ok{ with 'Stuffed::Role'; - } '... this should work correctly'; + ::is( ::exception { with 'Stuffed::Role'; + }, undef, '... this should work correctly' ); - ::lives_ok{ with 'Bulkie::Role'; - } '... this should work correctly'; + ::is( ::exception { with 'Bulkie::Role'; + }, undef, '... this should work correctly' ); } done_testing; diff --git a/t/070_native_traits/101_remove_attribute.t b/t/070_native_traits/101_remove_attribute.t new file mode 100644 index 0000000..2d478e1 --- /dev/null +++ b/t/070_native_traits/101_remove_attribute.t @@ -0,0 +1,51 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +use Test::More skip_all => 'Not supported by MouseX::NativeTraits'; +use Test::More; +use Test::Fatal; + +{ + package MyHomePage; + use Mouse; + + has 'counter' => ( + traits => ['Counter'], + is => 'ro', + isa => 'Int', + default => 0, + handles => { + inc_counter => 'inc', + dec_counter => 'dec', + reset_counter => 'reset', + } + ); +} + +my $page = MyHomePage->new(); +isa_ok( $page, 'MyHomePage' ); + +can_ok( $page, $_ ) for qw[ + counter + dec_counter + inc_counter + reset_counter +]; + +is( exception { + $page->meta->remove_attribute('counter'); +}, undef, '... removed the counter attribute okay' ); + +ok( !$page->meta->has_attribute('counter'), + '... no longer has the attribute' ); + +ok( !$page->can($_), "... our class no longer has the $_ method" ) for qw[ + counter + dec_counter + inc_counter + reset_counter +]; + +done_testing; diff --git a/t/070_native_traits/100_collection_with_roles.t b/t/070_native_traits/102_collection_with_roles.t similarity index 100% rename from t/070_native_traits/100_collection_with_roles.t rename to t/070_native_traits/102_collection_with_roles.t diff --git a/t/070_native_traits/103_custom_instance.t b/t/070_native_traits/103_custom_instance.t new file mode 100644 index 0000000..5df665f --- /dev/null +++ b/t/070_native_traits/103_custom_instance.t @@ -0,0 +1,248 @@ +#!/usr/bin/env perl +use strict; +use warnings; +use Test::More skip_all => 'not supproted by MouseX::NativeTraits'; +use Test::More; +use Test::Fatal; +use Test::Mouse; + +{ + package ValueContainer; + use Mouse; + + has value => ( + is => 'rw', + ); +} + +{ + package Foo::Meta::Instance; + use Mouse::Role; + + around get_slot_value => sub { + my $orig = shift; + my $self = shift; + my ($instance, $slot_name) = @_; + my $value = $self->$orig(@_); + if ($value->isa('ValueContainer')) { + $value = $value->value; + } + return $value; + }; + + around inline_get_slot_value => sub { + my $orig = shift; + my $self = shift; + my $value = $self->$orig(@_); + return q[do {] . "\n" + . q[ my $value = ] . $value . q[;] . "\n" + . q[ if ($value->isa('ValueContainer')) {] . "\n" + . q[ $value = $value->value;] . "\n" + . q[ }] . "\n" + . q[ $value] . "\n" + . q[}]; + }; + + sub inline_get_is_lvalue { 0 } +} + +{ + package Foo; + use Mouse; + Mouse::Util::MetaRole::apply_metaroles( + for => __PACKAGE__, + class_metaroles => { + instance => ['Foo::Meta::Instance'], + } + ); + + ::is( ::exception { + has array => ( + traits => ['Array'], + isa => 'ArrayRef', + default => sub { [] }, + handles => { + array_count => 'count', + array_elements => 'elements', + array_is_empty => 'is_empty', + array_push => 'push', + array_push_curried => [ push => 42, 84 ], + array_unshift => 'unshift', + array_unshift_curried => [ unshift => 42, 84 ], + array_pop => 'pop', + array_shift => 'shift', + array_get => 'get', + array_get_curried => [ get => 1 ], + array_set => 'set', + array_set_curried_1 => [ set => 1 ], + array_set_curried_2 => [ set => ( 1, 98 ) ], + array_accessor => 'accessor', + array_accessor_curried_1 => [ accessor => 1 ], + array_accessor_curried_2 => [ accessor => ( 1, 90 ) ], + array_clear => 'clear', + array_delete => 'delete', + array_delete_curried => [ delete => 1 ], + array_insert => 'insert', + array_insert_curried => [ insert => ( 1, 101 ) ], + array_splice => 'splice', + array_splice_curried_1 => [ splice => 1 ], + array_splice_curried_2 => [ splice => 1, 2 ], + array_splice_curried_all => [ splice => 1, 2, ( 3, 4, 5 ) ], + array_sort => 'sort', + array_sort_curried => + [ sort => ( sub { $_[1] <=> $_[0] } ) ], + array_sort_in_place => 'sort_in_place', + array_sort_in_place_curried => + [ sort_in_place => ( sub { $_[1] <=> $_[0] } ) ], + array_map => 'map', + array_map_curried => [ map => ( sub { $_ + 1 } ) ], + array_grep => 'grep', + array_grep_curried => [ grep => ( sub { $_ < 5 } ) ], + array_first => 'first', + array_first_curried => [ first => ( sub { $_ % 2 } ) ], + array_join => 'join', + array_join_curried => [ join => '-' ], + array_shuffle => 'shuffle', + array_uniq => 'uniq', + array_reduce => 'reduce', + array_reduce_curried => + [ reduce => ( sub { $_[0] * $_[1] } ) ], + array_natatime => 'natatime', + array_natatime_curried => [ natatime => 2 ], + }, + ); + }, undef, "native array trait inlines properly" ); + + ::is( ::exception { + has bool => ( + traits => ['Bool'], + isa => 'Bool', + default => 0, + handles => { + bool_illuminate => 'set', + bool_darken => 'unset', + bool_flip_switch => 'toggle', + bool_is_dark => 'not', + }, + ); + }, undef, "native bool trait inlines properly" ); + + ::is( ::exception { + has code => ( + traits => ['Code'], + isa => 'CodeRef', + default => sub { sub { } }, + handles => { + code_execute => 'execute', + code_execute_method => 'execute_method', + }, + ); + }, undef, "native code trait inlines properly" ); + + ::is( ::exception { + has counter => ( + traits => ['Counter'], + isa => 'Int', + default => 0, + handles => { + inc_counter => 'inc', + inc_counter_2 => [ inc => 2 ], + dec_counter => 'dec', + dec_counter_2 => [ dec => 2 ], + reset_counter => 'reset', + set_counter => 'set', + set_counter_42 => [ set => 42 ], + }, + ); + }, undef, "native counter trait inlines properly" ); + + ::is( ::exception { + has hash => ( + traits => ['Hash'], + isa => 'HashRef', + default => sub { {} }, + handles => { + hash_option_accessor => 'accessor', + hash_quantity => [ accessor => 'quantity' ], + hash_clear_options => 'clear', + hash_num_options => 'count', + hash_delete_option => 'delete', + hash_is_defined => 'defined', + hash_options_elements => 'elements', + hash_has_option => 'exists', + hash_get_option => 'get', + hash_has_no_options => 'is_empty', + hash_key_value => 'kv', + hash_set_option => 'set', + }, + ); + }, undef, "native hash trait inlines properly" ); + + ::is( ::exception { + has number => ( + traits => ['Number'], + isa => 'Num', + default => 0, + handles => { + num_abs => 'abs', + num_add => 'add', + num_inc => [ add => 1 ], + num_div => 'div', + num_cut_in_half => [ div => 2 ], + num_mod => 'mod', + num_odd => [ mod => 2 ], + num_mul => 'mul', + num_set => 'set', + num_sub => 'sub', + num_dec => [ sub => 1 ], + }, + ); + }, undef, "native number trait inlines properly" ); + + ::is( ::exception { + has string => ( + traits => ['String'], + is => 'ro', + isa => 'Str', + default => '', + handles => { + string_inc => 'inc', + string_append => 'append', + string_append_curried => [ append => '!' ], + string_prepend => 'prepend', + string_prepend_curried => [ prepend => '-' ], + string_replace => 'replace', + string_replace_curried => [ replace => qr/(.)$/, sub { uc $1 } ], + string_chop => 'chop', + string_chomp => 'chomp', + string_clear => 'clear', + string_match => 'match', + string_match_curried => [ match => qr/\D/ ], + string_length => 'length', + string_substr => 'substr', + string_substr_curried_1 => [ substr => (1) ], + string_substr_curried_2 => [ substr => ( 1, 3 ) ], + string_substr_curried_3 => [ substr => ( 1, 3, 'ong' ) ], + }, + ); + }, undef, "native string trait inlines properly" ); +} + +with_immutable { + { + my $foo = Foo->new(string => 'a'); + is($foo->string, 'a'); + $foo->string_append('b'); + is($foo->string, 'ab'); + } + + { + my $foo = Foo->new(string => ''); + $foo->{string} = ValueContainer->new(value => 'a'); + is($foo->string, 'a'); + $foo->string_append('b'); + is($foo->string, 'ab'); + } +} 'Foo'; + +done_testing; diff --git a/t/070_native_traits/201_trait_counter.t b/t/070_native_traits/201_trait_counter.t deleted file mode 100644 index 5826005..0000000 --- a/t/070_native_traits/201_trait_counter.t +++ /dev/null @@ -1,82 +0,0 @@ -#!/usr/bin/perl - -use strict; -use warnings; - -use Test::More; -use Test::Mouse 'does_ok'; - -{ - package MyHomePage; - use Mouse; - - has 'counter' => ( - traits => ['Counter'], - is => 'ro', - isa => 'Int', - default => 0, - handles => { - inc_counter => 'inc', - dec_counter => 'dec', - reset_counter => 'reset', - set_counter => 'set' - } - ); -} - -my $page = MyHomePage->new(); -isa_ok( $page, 'MyHomePage' ); - -can_ok( $page, $_ ) for qw[ - dec_counter - inc_counter - reset_counter - set_counter -]; - -is( $page->counter, 0, '... got the default value' ); - -$page->inc_counter; -is( $page->counter, 1, '... got the incremented value' ); - -$page->inc_counter; -is( $page->counter, 2, '... got the incremented value (again)' ); - -$page->dec_counter; -is( $page->counter, 1, '... got the decremented value' ); - -$page->reset_counter; -is( $page->counter, 0, '... got the original value' ); - -$page->set_counter(5); -is( $page->counter, 5, '... set the value' ); - -$page->inc_counter(2); -is( $page->counter, 7, '... increment by arg' ); - -$page->dec_counter(5); -is( $page->counter, 2, '... decrement by arg' ); - -# check the meta .. - -my $counter = $page->meta->get_attribute('counter'); - -#XXX: Mouse role name is different -#does_ok( $counter, 'Mouse::Meta::Attribute::Native::Trait::Counter' ); - - -is( $counter->type_constraint->name, 'Int', - '... got the expected type constraint' ); - -is_deeply( - $counter->handles, - { - inc_counter => 'inc', - dec_counter => 'dec', - reset_counter => 'reset', - set_counter => 'set' - }, - '... got the right handles methods' -); - -done_testing; diff --git a/t/070_native_traits/202_trait_array.t b/t/070_native_traits/202_trait_array.t deleted file mode 100644 index e1aefc0..0000000 --- a/t/070_native_traits/202_trait_array.t +++ /dev/null @@ -1,277 +0,0 @@ -#!/usr/bin/perl - -use strict; -use warnings; - -use Test::More; -use Test::Exception; -use Test::Mouse 'does_ok'; - -my $sort; - -{ - - package Stuff; - use Mouse; - - has 'options' => ( - traits => ['Array'], - is => 'ro', - isa => 'ArrayRef[Str]', - default => sub { [] }, - handles => { - 'add_options' => 'push', - 'remove_last_option' => 'pop', - 'remove_first_option' => 'shift', - 'insert_options' => 'unshift', - 'get_option_at' => 'get', - 'set_option_at' => 'set', - 'num_options' => 'count', - 'has_no_options' => 'is_empty', - 'clear_options' => 'clear', - 'splice_options' => 'splice', - 'sort_options_in_place' => 'sort_in_place', - 'option_accessor' => 'accessor', - 'add_options_with_speed' => - [ 'push' => 'funrolls', 'funbuns' ], - 'prepend_prerequisites_along_with' => - [ 'unshift' => 'first', 'second' ], - 'descending_options' => - [ 'sort_in_place' => ($sort = sub { $_[1] <=> $_[0] }) ], - } - ); -} - -my $stuff = Stuff->new( options => [ 10, 12 ] ); -isa_ok( $stuff, 'Stuff' ); - -can_ok( $stuff, $_ ) for qw[ - add_options - remove_last_option - remove_first_option - insert_options - get_option_at - set_option_at - num_options - clear_options - has_no_options - sort_options_in_place - option_accessor -]; - -is_deeply( $stuff->options, [ 10, 12 ], '... got options' ); - -ok( !$stuff->has_no_options, '... we have options' ); -is( $stuff->num_options, 2, '... got 2 options' ); - -is( $stuff->remove_last_option, 12, '... removed the last option' ); -is( $stuff->remove_first_option, 10, '... removed the last option' ); - -is_deeply( $stuff->options, [], '... no options anymore' ); - -ok( $stuff->has_no_options, '... no options' ); -is( $stuff->num_options, 0, '... got no options' ); - -lives_ok { - $stuff->add_options( 1, 2, 3 ); -} -'... set the option okay'; - -is_deeply( $stuff->options, [ 1, 2, 3 ], '... got options now' ); - -ok( !$stuff->has_no_options, '... has options' ); -is( $stuff->num_options, 3, '... got 3 options' ); - -is( $stuff->get_option_at(0), 1, '... get option at index 0' ); -is( $stuff->get_option_at(1), 2, '... get option at index 1' ); -is( $stuff->get_option_at(2), 3, '... get option at index 2' ); - -lives_ok { - $stuff->set_option_at( 1, 100 ); -} -'... set the option okay'; - -is( $stuff->get_option_at(1), 100, '... get option at index 1' ); - -lives_ok { - $stuff->add_options( 10, 15 ); -} -'... set the option okay'; - -is_deeply( $stuff->options, [ 1, 100, 3, 10, 15 ], - '... got more options now' ); - -is( $stuff->num_options, 5, '... got 5 options' ); - -is( $stuff->remove_last_option, 15, '... removed the last option' ); - -is( $stuff->num_options, 4, '... got 4 options' ); -is_deeply( $stuff->options, [ 1, 100, 3, 10 ], '... got diff options now' ); - -lives_ok { - $stuff->insert_options( 10, 20 ); -} -'... set the option okay'; - -is( $stuff->num_options, 6, '... got 6 options' ); -is_deeply( $stuff->options, [ 10, 20, 1, 100, 3, 10 ], - '... got diff options now' ); - -is( $stuff->get_option_at(0), 10, '... get option at index 0' ); -is( $stuff->get_option_at(1), 20, '... get option at index 1' ); -is( $stuff->get_option_at(3), 100, '... get option at index 3' ); - -is( $stuff->remove_first_option, 10, '... getting the first option' ); - -is( $stuff->num_options, 5, '... got 5 options' ); -is( $stuff->get_option_at(0), 20, '... get option at index 0' ); - -$stuff->clear_options; -is_deeply( $stuff->options, [], "... clear options" ); - -$stuff->add_options( 5, 1, 2, 3 ); -$stuff->sort_options_in_place; -is_deeply( $stuff->options, [ 1, 2, 3, 5 ], - "... sort options in place (default sort order)" ); - -$stuff->sort_options_in_place( sub { $_[1] <=> $_[0] } ); -is_deeply( $stuff->options, [ 5, 3, 2, 1 ], - "... sort options in place (descending order)" ); - -$stuff->clear_options(); -$stuff->add_options( 5, 1, 2, 3 ); -lives_ok { - $stuff->descending_options(); -} -'... curried sort in place lives ok'; - -is_deeply( $stuff->options, [ 5, 3, 2, 1 ], "... sort currying" ); - -dies_ok { $stuff->sort_options_in_place('foo') } -#throws_ok { $stuff->sort_options_in_place('foo') } -# qr/Argument must be a code reference/, - 'error when sort_in_place receives a non-coderef argument'; - -$stuff->clear_options; - -lives_ok { - $stuff->add_options('tree'); -} -'... set the options okay'; - -lives_ok { - $stuff->add_options_with_speed( 'compatible', 'safe' ); -} -'... add options with speed okay'; - -is_deeply( - $stuff->options, [qw/tree funrolls funbuns compatible safe/], - 'check options after add_options_with_speed' -); - -lives_ok { - $stuff->prepend_prerequisites_along_with(); -} -'... add prerequisite options okay'; - -$stuff->clear_options; -$stuff->add_options( 1, 2 ); - -lives_ok { - $stuff->splice_options( 1, 0, 'foo' ); -} -'... splice_options works'; - -is_deeply( - $stuff->options, [ 1, 'foo', 2 ], - 'splice added expected option' -); - -is( $stuff->option_accessor( 1 => 'foo++' ), 'foo++' ); -is( $stuff->option_accessor(1), 'foo++' ); - -## check some errors - -#dies_ok { -# $stuff->insert_options(undef); -#} '... could not add an undef where a string is expected'; -# -#dies_ok { -# $stuff->set_option(5, {}); -#} '... could not add a hash ref where a string is expected'; - -dies_ok { - Stuff->new( options => [ undef, 10, undef, 20 ] ); -} -'... bad constructor params'; - -dies_ok { - my $stuff = Stuff->new(); - $stuff->add_options(undef); -} -'... rejects push of an invalid type'; - -dies_ok { - my $stuff = Stuff->new(); - $stuff->insert_options(undef); -} -'... rejects unshift of an invalid type'; - -dies_ok { - my $stuff = Stuff->new(); - $stuff->set_option_at( 0, undef ); -} -'... rejects set of an invalid type'; - -dies_ok { - my $stuff = Stuff->new(); - $stuff->sort_in_place_options(undef); -} -'... sort rejects arg of invalid type'; - -dies_ok { - my $stuff = Stuff->new(); - $stuff->option_accessor(); -} -'... accessor rejects 0 args'; - -dies_ok { - my $stuff = Stuff->new(); - $stuff->option_accessor( 1, 2, 3 ); -} -'... accessor rejects 3 args'; - -## test the meta - -my $options = $stuff->meta->get_attribute('options'); - -#XXX: Mouse role name is different -#does_ok( $options, 'Mouse::Meta::Attribute::Native::Trait::Array' ); - -is_deeply( - $options->handles, - { - 'add_options' => 'push', - 'remove_last_option' => 'pop', - 'remove_first_option' => 'shift', - 'insert_options' => 'unshift', - 'get_option_at' => 'get', - 'set_option_at' => 'set', - 'num_options' => 'count', - 'has_no_options' => 'is_empty', - 'clear_options' => 'clear', - 'splice_options' => 'splice', - 'sort_options_in_place' => 'sort_in_place', - 'option_accessor' => 'accessor', - 'add_options_with_speed' => [ 'push' => 'funrolls', 'funbuns' ], - 'prepend_prerequisites_along_with' => - [ 'unshift' => 'first', 'second' ], - 'descending_options' => [ 'sort_in_place' => $sort ], - }, - '... got the right handles mapping' -); - -is( $options->type_constraint->type_parameter, 'Str', - '... got the right container type' ); - -done_testing; diff --git a/t/070_native_traits/203_trait_hash.t b/t/070_native_traits/203_trait_hash.t deleted file mode 100644 index 246b7ee..0000000 --- a/t/070_native_traits/203_trait_hash.t +++ /dev/null @@ -1,186 +0,0 @@ -#!/usr/bin/perl - -use strict; -use warnings; - -use Test::More; -use Test::Exception; -use Test::Mouse 'does_ok'; - -{ - package Stuff; - use Mouse; - - has 'options' => ( - traits => ['Hash'], - is => 'ro', - isa => 'HashRef[Str]', - default => sub { {} }, - handles => { - 'set_option' => 'set', - 'get_option' => 'get', - 'has_no_options' => 'is_empty', - 'num_options' => 'count', - 'clear_options' => 'clear', - 'delete_option' => 'delete', - 'has_option' => 'exists', - 'is_defined' => 'defined', - 'option_accessor' => 'accessor', - 'key_value' => 'kv', - 'options_elements' => 'elements', - 'quantity' => [ accessor => 'quantity' ], - }, - ); -} - -my $stuff = Stuff->new(); -isa_ok( $stuff, 'Stuff' ); - -can_ok( $stuff, $_ ) for qw[ - set_option - get_option - has_no_options - num_options - delete_option - clear_options - is_defined - has_option - quantity - option_accessor -]; - -ok( $stuff->has_no_options, '... we have no options' ); -is( $stuff->num_options, 0, '... we have no options' ); - -is_deeply( $stuff->options, {}, '... no options yet' ); -ok( !$stuff->has_option('foo'), '... we have no foo option' ); - -lives_ok { - $stuff->set_option( foo => 'bar' ); -} -'... set the option okay'; - -ok( $stuff->is_defined('foo'), '... foo is defined' ); - -ok( !$stuff->has_no_options, '... we have options' ); -is( $stuff->num_options, 1, '... we have 1 option(s)' ); -ok( $stuff->has_option('foo'), '... we have a foo option' ); -is_deeply( $stuff->options, { foo => 'bar' }, '... got options now' ); - -lives_ok { - $stuff->set_option( bar => 'baz' ); -} -'... set the option okay'; - -is( $stuff->num_options, 2, '... we have 2 option(s)' ); -is_deeply( $stuff->options, { foo => 'bar', bar => 'baz' }, - '... got more options now' ); - -is( $stuff->get_option('foo'), 'bar', '... got the right option' ); - -is_deeply( [ $stuff->get_option(qw(foo bar)) ], [qw(bar baz)], - "get multiple options at once" ); - -is( scalar($stuff->get_option(qw( foo bar) )), "baz", - '... got last option in scalar context'); - -lives_ok { - $stuff->set_option( oink => "blah", xxy => "flop" ); -} -'... set the option okay'; - -is( $stuff->num_options, 4, "4 options" ); -is_deeply( [ $stuff->get_option(qw(foo bar oink xxy)) ], - [qw(bar baz blah flop)], "get multiple options at once" ); - -lives_ok { - $stuff->delete_option('bar'); -} -'... deleted the option okay'; - -lives_ok { - $stuff->delete_option('oink','xxy'); -} -'... deleted multiple option okay'; - -is( $stuff->num_options, 1, '... we have 1 option(s)' ); -is_deeply( $stuff->options, { foo => 'bar' }, '... got more options now' ); - -$stuff->clear_options; - -is_deeply( $stuff->options, {}, "... cleared options" ); - -lives_ok { - $stuff->quantity(4); -} -'... options added okay with defaults'; - -is( $stuff->quantity, 4, 'reader part of curried accessor works' ); - -is_deeply( $stuff->options, { quantity => 4 }, '... returns what we expect' ); - -lives_ok { - Stuff->new( options => { foo => 'BAR' } ); -} -'... good constructor params'; - -## check some errors - -dies_ok { - $stuff->set_option( bar => {} ); -} -'... could not add a hash ref where an string is expected'; - -dies_ok { - Stuff->new( options => { foo => [] } ); -} -'... bad constructor params'; - -## test the meta - -my $options = $stuff->meta->get_attribute('options'); -#XXX: Mouse role name is different -#does_ok( $options, 'Mouse::Meta::Attribute::Native::Trait::Hash' ); - -is_deeply( - $options->handles, - { - 'set_option' => 'set', - 'get_option' => 'get', - 'has_no_options' => 'is_empty', - 'num_options' => 'count', - 'clear_options' => 'clear', - 'delete_option' => 'delete', - 'has_option' => 'exists', - 'is_defined' => 'defined', - 'option_accessor' => 'accessor', - 'key_value' => 'kv', - 'options_elements' => 'elements', - 'quantity' => [ accessor => 'quantity' ], - }, - '... got the right handles mapping' -); - -is( $options->type_constraint->type_parameter, 'Str', - '... got the right container type' ); - -$stuff->set_option( oink => "blah", xxy => "flop" ); -my @key_value = sort{ $a->[0] cmp $b->[0] } $stuff->key_value; -is_deeply( - \@key_value, - [ sort{ $a->[0] cmp $b->[0] } [ 'xxy', 'flop' ], [ 'quantity', 4 ], [ 'oink', 'blah' ] ], - '... got the right key value pairs' -) or do{ require Data::Dumper; diag(Data::Dumper::Dumper(\@key_value)) }; - -my %options_elements = $stuff->options_elements; -is_deeply( - \%options_elements, - { - 'oink' => 'blah', - 'quantity' => 4, - 'xxy' => 'flop' - }, - '... got the right hash elements' -); - -done_testing; diff --git a/t/070_native_traits/204_trait_number.t b/t/070_native_traits/204_trait_number.t deleted file mode 100644 index 7891b8a..0000000 --- a/t/070_native_traits/204_trait_number.t +++ /dev/null @@ -1,116 +0,0 @@ -#!/usr/bin/perl - -use strict; -use warnings; - -use Test::More; -use Test::Mouse; - -{ - package Real; - use Mouse; - - has 'integer' => ( - traits => ['Number'], - is => 'ro', - isa => 'Num', - default => 5, - - writer => 'set', - handles => { -# set => 'set', - add => 'add', - sub => 'sub', - mul => 'mul', - div => 'div', - mod => 'mod', - abs => 'abs', - inc => [ add => 1 ], - dec => [ sub => 1 ], - odd => [ mod => 2 ], - cut_in_half => [ div => 2 ], - - }, - ); -} - -my $real = Real->new; -isa_ok( $real, 'Real' ); - -can_ok( $real, $_ ) for qw[ - set add sub mul div mod abs inc dec odd cut_in_half -]; - -is $real->integer, 5, 'Default to five'; - -$real->add(10); - -is $real->integer, 15, 'Add ten for fithteen'; - -$real->sub(3); - -is $real->integer, 12, 'Subtract three for 12'; - -$real->set(10); - -is $real->integer, 10, 'Set to ten'; - -$real->div(2); - -is $real->integer, 5, 'divide by 2'; - -$real->mul(2); - -is $real->integer, 10, 'multiplied by 2'; - -$real->mod(2); - -is $real->integer, 0, 'Mod by 2'; - -$real->set(7); - -$real->mod(5); - -is $real->integer, 2, 'Mod by 5'; - -$real->set(-1); - -$real->abs; - -is $real->integer, 1, 'abs 1'; - -$real->set(12); - -$real->inc; - -is $real->integer, 13, 'inc 12'; - -$real->dec; - -is $real->integer, 12, 'dec 13'; - -## test the meta - -my $attr = $real->meta->get_attribute('integer'); -#XXX: Mouse role name is different -#does_ok( $attr, 'Mouse::Meta::Attribute::Native::Trait::Number' ); - -is_deeply( - $attr->handles, - { -# set => 'set', - add => 'add', - sub => 'sub', - mul => 'mul', - div => 'div', - mod => 'mod', - abs => 'abs', - inc => [ add => 1 ], - dec => [ sub => 1 ], - odd => [ mod => 2 ], - cut_in_half => [ div => 2 ], - }, - '... got the right handles mapping' -); - -done_testing; diff --git a/t/070_native_traits/205_trait_list.t b/t/070_native_traits/205_trait_list.t deleted file mode 100644 index 780453d..0000000 --- a/t/070_native_traits/205_trait_list.t +++ /dev/null @@ -1,171 +0,0 @@ -#!/usr/bin/perl - -use strict; -use warnings; - -use Test::More; -use Test::Exception; -use Test::Mouse 'does_ok'; - -my $sort; -my $less; -my $up; -my $prod; -{ - package Stuff; - use Mouse; - - has '_options' => ( - traits => ['Array'], - is => 'ro', - isa => 'ArrayRef[Int]', - init_arg => 'options', - default => sub { [] }, - handles => { - 'num_options' => 'count', - 'has_no_options' => 'is_empty', - 'map_options', => 'map', - 'filter_options' => 'grep', - 'find_option' => 'first', - 'options' => 'elements', - 'join_options' => 'join', - 'get_option_at' => 'get', - 'sorted_options' => 'sort', - 'randomized_options' => 'shuffle', - 'unique_options' => 'uniq', - 'less_than_five' => [ grep => ($less = sub { $_ < 5 }) ], - 'up_by_one' => [ map => ($up = sub { $_ + 1 }) ], - 'pairwise_options' => 'for_each_pair', - 'dashify' => [ join => '-' ], - 'descending' => [ sort => ($sort = sub { $_[1] <=> $_[0] }) ], - 'product' => [ reduce => ($prod = sub { $_[0] * $_[1] }) ], - }, - ); - -} - -my $stuff = Stuff->new( options => [ 1 .. 10 ] ); -isa_ok( $stuff, 'Stuff' ); - -can_ok( $stuff, $_ ) for qw[ - _options - num_options - has_no_options - map_options - filter_options - find_option - options - join_options - get_option_at - sorted_options - randomized_options - unique_options - less_than_five - up_by_one - pairwise_options - dashify - descending - product -]; - -is_deeply( $stuff->_options, [ 1 .. 10 ], '... got options' ); - -ok( !$stuff->has_no_options, '... we have options' ); -is( $stuff->num_options, 10, '... got 2 options' ); -cmp_ok( $stuff->get_option_at(0), '==', 1, '... get option 0' ); - -is_deeply( - [ $stuff->filter_options( sub { $_ % 2 == 0 } ) ], - [ 2, 4, 6, 8, 10 ], - '... got the right filtered values' -); - -is_deeply( - [ $stuff->map_options( sub { $_ * 2 } ) ], - [ 2, 4, 6, 8, 10, 12, 14, 16, 18, 20 ], - '... got the right mapped values' -); - -is( $stuff->find_option( sub { $_ % 2 == 0 } ), 2, - '.. found the right option' ); - -is_deeply( [ $stuff->options ], [ 1 .. 10 ], '... got the list of options' ); - -is( $stuff->join_options(':'), '1:2:3:4:5:6:7:8:9:10', - '... joined the list of options by :' ); - -is_deeply( - [ $stuff->sorted_options ], [ sort ( 1 .. 10 ) ], - '... got sorted options (default sort order)' -); -is_deeply( - [ $stuff->sorted_options( sub { $_[1] <=> $_[0] } ) ], - [ sort { $b <=> $a } ( 1 .. 10 ) ], - '... got sorted options (descending sort order) ' -); - -dies_ok { my @options = $stuff->sorted_options('foo') } -#throws_ok { $stuff->sorted_options('foo') } -#qr/Argument must be a code reference/, - 'error when sort receives a non-coderef argument'; - -is_deeply( [ sort { $a <=> $b } $stuff->randomized_options ], [ 1 .. 10 ] ); - -my @pairs; -$stuff->pairwise_options(sub { push @pairs, [@_] }); -is_deeply( \@pairs, [ [ 1, 2 ], [ 3, 4 ], [ 5, 6 ], [ 7, 8 ], [ 9, 10 ] ] ); - -# test the currying -is_deeply( [ $stuff->less_than_five() ], [ 1 .. 4 ] ); - -is_deeply( [ $stuff->up_by_one() ], [ 2 .. 11 ] ); - -is( $stuff->dashify, '1-2-3-4-5-6-7-8-9-10' ); - -is_deeply( [ $stuff->descending ], [ reverse 1 .. 10 ] ); - -is( $stuff->product, 3628800 ); - -my $other_stuff = Stuff->new( options => [ 1, 1, 2, 3, 5 ] ); -is_deeply( [ $other_stuff->unique_options ], [1, 2, 3, 5] ); - -## test the meta - -my $options = $stuff->meta->get_attribute('_options'); - -#XXX: Mouse role name is different -#does_ok( $options, 'Mouse::Meta::Attribute::Native::Trait::Array' ); - -is_deeply( - $options->handles, - { - 'num_options' => 'count', - 'has_no_options' => 'is_empty', - 'map_options', => 'map', - 'filter_options' => 'grep', - 'find_option' => 'first', - 'options' => 'elements', - 'join_options' => 'join', - 'get_option_at' => 'get', - 'sorted_options' => 'sort', - 'randomized_options' => 'shuffle', - 'unique_options' => 'uniq', - 'less_than_five' => [ grep => $less ], - 'up_by_one' => [ map => $up ], - 'pairwise_options' => 'for_each_pair', - 'dashify' => [ join => '-' ], - 'descending' => [ sort => $sort ], - 'product' => [ reduce => $prod ], - }, - '... got the right handles mapping' -); - -is( $options->type_constraint->type_parameter, 'Int', - '... got the right container type' ); - -dies_ok { - $stuff->sort_in_place_options(undef); -} -'... sort rejects arg of invalid type'; - -done_testing; diff --git a/t/070_native_traits/207_trait_string.t b/t/070_native_traits/207_trait_string.t deleted file mode 100644 index ee12cc0..0000000 --- a/t/070_native_traits/207_trait_string.t +++ /dev/null @@ -1,117 +0,0 @@ -#!/usr/bin/perl - -use strict; -use warnings; - -use Test::More; -use Test::Mouse 'does_ok'; - -my $uc; -{ - package MyHomePage; - use Mouse; - - has 'string' => ( - traits => ['String'], - is => 'rw', - isa => 'Str', - default => sub {''}, - handles => { - inc_string => 'inc', - append_string => 'append', - prepend_string => 'prepend', - match_string => 'match', - replace_string => 'replace', - chop_string => 'chop', - chomp_string => 'chomp', - clear_string => 'clear', - length_string => 'length', - exclaim => [ append => '!' ], - capitalize_last => [ replace => qr/(.)$/, ($uc = sub { uc $1 }) ], - invalid_number => [ match => qr/\D/ ], - }, - ); -} - -my $page = MyHomePage->new(); -isa_ok( $page, 'MyHomePage' ); - -is( $page->string, '', '... got the default value' ); -is( $page->length_string, 0,'... length is zero' ); - -$page->string('a'); -is( $page->length_string, 1,'... new string has length of one' ); - -$page->inc_string; -is( $page->string, 'b', '... got the incremented value' ); - -$page->inc_string; -is( $page->string, 'c', '... got the incremented value (again)' ); - -$page->append_string("foo$/"); -is( $page->string, "cfoo$/", 'appended to string' ); - -$page->chomp_string; -is( $page->string, "cfoo", 'chomped string' ); - -$page->chomp_string; -is( $page->string, "cfoo", 'chomped is noop' ); - -$page->chop_string; -is( $page->string, "cfo", 'chopped string' ); - -$page->prepend_string("bar"); -is( $page->string, 'barcfo', 'prepended to string' ); - -is_deeply( [ $page->match_string(qr/([ao])/) ], ["a"], "match" ); - -$page->replace_string( qr/([ao])/, sub { uc($1) } ); -is( $page->string, 'bArcfo', "substitution" ); -is( $page->length_string, 6, 'right length' ); - -$page->exclaim; -is( $page->string, 'bArcfo!', 'exclaim!' ); - -$page->string('Mousex'); -$page->capitalize_last; -is( $page->string, 'MouseX', 'capitalize last' ); - -$page->string('1234'); -ok( !$page->invalid_number, 'string "isn\'t an invalid number' ); - -$page->string('one two three four'); -ok( $page->invalid_number, 'string an invalid number' ); - -$page->clear_string; -is( $page->string, '', "clear" ); - -# check the meta .. - -my $string = $page->meta->get_attribute('string'); -#does_ok( $string, 'Mouse::Meta::Attribute::Native::Trait::String' ); - -is( - $string->type_constraint->name, 'Str', - '... got the expected type constraint' -); - -is_deeply( - $string->handles, - { - inc_string => 'inc', - append_string => 'append', - prepend_string => 'prepend', - match_string => 'match', - replace_string => 'replace', - chop_string => 'chop', - chomp_string => 'chomp', - clear_string => 'clear', - length_string => 'length', - exclaim => [ append => '!' ], - capitalize_last => [ replace => qr/(.)$/, $uc ], - invalid_number => [ match => qr/\D/ ], - }, - '... got the right handles methods' -); - -done_testing; diff --git a/t/070_native_traits/208_trait_bool.t b/t/070_native_traits/208_trait_bool.t deleted file mode 100644 index 8d10928..0000000 --- a/t/070_native_traits/208_trait_bool.t +++ /dev/null @@ -1,43 +0,0 @@ -#!/usr/bin/perl - -use strict; -use warnings; - -use Test::More; - -{ - package Room; - use Mouse; - - has 'is_lit' => ( - traits => ['Bool'], - is => 'rw', - isa => 'Bool', - default => 0, - handles => { - illuminate => 'set', - darken => 'unset', - flip_switch => 'toggle', - is_dark => 'not', - }, - ) -} - -my $room = Room->new; -$room->illuminate; -ok( $room->is_lit, 'set is_lit to 1 using ->illuminate' ); -ok( !$room->is_dark, 'check if is_dark does the right thing' ); - -$room->darken; -ok( !$room->is_lit, 'set is_lit to 0 using ->darken' ); -ok( $room->is_dark, 'check if is_dark does the right thing' ); - -$room->flip_switch; -ok( $room->is_lit, 'toggle is_lit back to 1 using ->flip_switch' ); -ok( !$room->is_dark, 'check if is_dark does the right thing' ); - -$room->flip_switch; -ok( !$room->is_lit, 'toggle is_lit back to 0 again using ->flip_switch' ); -ok( $room->is_dark, 'check if is_dark does the right thing' ); - -done_testing; diff --git a/t/070_native_traits/209_trait_code.t b/t/070_native_traits/209_trait_code.t deleted file mode 100644 index 158f93a..0000000 --- a/t/070_native_traits/209_trait_code.t +++ /dev/null @@ -1,48 +0,0 @@ -use strict; -use warnings; - -use Test::More; - -{ - package Thingy; - use Mouse; - - has callback => ( - traits => ['Code'], - is => 'ro', - isa => 'CodeRef', - required => 1, - handles => { 'invoke_callback' => 'execute' }, - ); - - has callback_method => ( - traits => ['Code'], - is => 'ro', - isa => 'CodeRef', - required => 1, - handles => { 'invoke_method_callback' => 'execute_method' }, - ); - - has multiplier => ( - traits => ['Code'], - is => 'ro', - isa => 'CodeRef', - required => 1, - handles => { 'multiply' => 'execute' }, - ); -} - -my $i = 0; -my $thingy = Thingy->new( - callback => sub { ++$i }, - multiplier => sub { $_[0] * 2 }, - callback_method => sub { shift->multiply(@_) }, -); - -is($i, 0); -$thingy->invoke_callback; -is($i, 1); -is($thingy->multiply(3), 6); -is($thingy->invoke_method_callback(3), 6); - -done_testing;
gfx/p5-MouseX-NativeTraits
849e74358ea9c72e88a729bffa4c4093ae9d0f6e
Triggers should be invoked on delete()
diff --git a/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm b/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm index 0ed01be..d4e8eba 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm @@ -1,374 +1,377 @@ package MouseX::NativeTraits::MethodProvider::HashRef; use Mouse; extends qw(MouseX::NativeTraits::MethodProvider); sub generate_keys { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('keys', 1, 1, scalar @_); } return keys %{ $reader->( $_[0] ) }; }; } sub generate_sorted_keys { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('sorted_keys', 1, 1, scalar @_); } return sort keys %{ $reader->( $_[0] ) }; }; } sub generate_values { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('values', 1, 1, scalar @_); } return values %{ $reader->( $_[0] ) }; }; } sub generate_kv { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('kv', 1, 1, scalar @_); } my $hash_ref = $reader->( $_[0] ); return map { [ $_ => $hash_ref->{$_} ] } keys %{ $hash_ref }; }; } sub generate_elements { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('elements', 1, 1, scalar @_); } return %{ $reader->( $_[0] ) }; }; } sub generate_count { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('count', 1, 1, scalar @_); } return scalar keys %{ $reader->( $_[0] ) }; }; } sub generate_is_empty { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('is_empty', 1, 1, scalar @_); } return scalar(keys %{ $reader->( $_[0] ) }) == 0; }; } sub generate_exists { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $key) = @_; if(@_ != 2) { $self->argument_error('exists', 2, 2, scalar @_); } defined($key) or $self->meta->throw_error( "Hash keys passed to exists must be defined" ); return exists $reader->( $instance )->{ $key }; } } sub generate_defined { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $key) = @_; if(@_ != 2) { $self->argument_error('defined', 2, 2, scalar @_); } defined($key) or $self->meta->throw_error( "Hash keys passed to defined must be defined" ); return defined $reader->( $instance )->{ $key }; } } __PACKAGE__->meta->add_method(generate_get => \&generate_fetch); sub generate_fetch { my($self) = @_; my $reader = $self->reader; return sub { if(@_ < 2) { $self->argument_error('get', 2, undef, scalar @_); } my $instance = shift; foreach my $key(@_) { defined($key) or $self->meta->throw_error( "Hash keys passed to get must be defined" ); } if ( @_ == 1 ) { return $reader->( $instance )->{ $_[0] }; } else { return @{ $reader->($instance) }{@_}; } }; } __PACKAGE__->meta->add_method(generate_set => \&generate_store); sub generate_store { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my ( $instance, @kv ) = @_; if(@_ < 2) { $self->argument_error('set', 2, undef, scalar @_); } my %new_value = %{ $reader->($instance) }; # copy my @ret_value; while (my ($key, $value) = splice @kv, 0, 2 ) { defined($key) or $self->meta->throw_error( "Hash keys passed to set must be defined" ); push @ret_value, $new_value{$key} = $value; # change } $writer->( $instance, \%new_value ); # commit return wantarray ? @ret_value : $ret_value[-1]; }; } sub generate_accessor { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my($instance, $key, $value) = @_;; if ( @_ == 2 ) { # reader defined($key) or $self->meta->throw_error( "Hash keys passed to accessor must be defined" ); return $reader->($instance)->{ $key }; } elsif ( @_ == 3 ) { # writer defined($key) or $self->meta->throw_error( "Hash keys passed to accessor must be defined" ); my %new_value = %{ $reader->($instance) }; $new_value{$key} = $value; $writer->($instance, \%new_value); # commit } else { $self->argument_error('accessor', 2, 3, scalar @_); } }; } sub generate_clear { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('clear', 1, 1, scalar @_); } %{ $reader->( $_[0] ) } = (); }; } sub generate_delete { my($self) = @_; - my $reader = $self->reader; + my $reader = $self->reader; + my $trigger = $self->attr->trigger; return sub { if(@_ < 2) { $self->argument_error('delete', 2, undef, scalar @_); } my $instance = shift; - return delete @{ $reader->($instance) }{@_}; + my $r = delete @{ $reader->($instance) }{@_}; + defined($trigger) and $trigger->($instance); + return $r; }; } sub generate_for_each_key { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $block) = @_; if(@_ != 2) { $self->argument_error('for_each_key', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::CodeRef($block) or $instance->meta->throw_error( "The argument passed to for_each_key must be a code reference"); foreach (keys %{$reader->($instance)}) { # intentional use of $_ $block->($_); } return $instance; }; } sub generate_for_each_value { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $block) = @_; if(@_ != 2) { $self->argument_error('for_each_value', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::CodeRef($block) or $instance->meta->throw_error( "The argument passed to for_each_value must be a code reference"); foreach (values %{$reader->($instance)}) { # intentional use of $_ $block->($_); } return $instance; }; } sub generate_for_each_pair { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $block) = @_; if(@_ != 2) { $self->argument_error('for_each_pair', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::CodeRef($block) or $instance->meta->throw_error( "The argument passed to for_each_pair must be a code reference"); my $hash_ref = $reader->($instance); foreach my $key(keys %{$hash_ref}){ $block->($key, $hash_ref->{$key}); } return $instance; }; } no Mouse; __PACKAGE__->meta->make_immutable(); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::HashRef - Provides methods for HashRef =head1 DESCRIPTION This class provides method generators for the C<Hash> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Hash> for details. =head1 METHOD GENERATORS =over 4 =item generate_keys =item generate_sorted_keys =item generate_values =item generate_kv =item generate_elements =item generate_count =item generate_is_empty =item generate_exists =item generate_defined =item generate_fetch =item generate_get The same as C<generate_fetch>. =item generate_store =item generate_set The same as C<generate_store>. =item generate_accessor =item generate_clear =item generate_delete =item generate_for_each_key =item generate_for_each_value =item generate_for_each_pair =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut
gfx/p5-MouseX-NativeTraits
dc6722316333c27bbee2f2728a4bb2be358ab90e
Argument checks for Counter, Num, and Str
diff --git a/lib/MouseX/NativeTraits/MethodProvider/Counter.pm b/lib/MouseX/NativeTraits/MethodProvider/Counter.pm index 54449cc..2fd10cf 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/Counter.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/Counter.pm @@ -1,113 +1,130 @@ package MouseX::NativeTraits::MethodProvider::Counter; use Mouse; extends qw(MouseX::NativeTraits::MethodProvider); sub generate_reset { my($self) = @_; my $attr = $self->attr; my $writer = $self->writer; my $builder; my $default; if($attr->has_builder){ $builder = $attr->builder; } else { $default = $attr->default; if(ref $default){ $builder = $default; } } if(ref $builder){ return sub { my($instance) = @_; + if(@_ != 1) { + $self->argument_error('reset', 1, 1, scalar @_); + } $writer->($instance, $instance->$builder()); }; } else{ return sub { my($instance) = @_; + if(@_ != 1) { + $self->argument_error('reset', 1, 1, scalar @_); + } $writer->($instance, $default); }; } } sub generate_set{ my($self) = @_; my $writer = $self->writer; - return sub { $writer->( $_[0], $_[1] ) }; + return sub { + if(@_ != 2) { + $self->argument_error('set', 2, 2, scalar @_); + } + $writer->( $_[0], $_[1] ) + }; } sub generate_inc { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; my $constraint = $self->attr->type_constraint; return sub { my($instance, $value) = @_; - if(@_ > 1){ + if(@_ == 1){ + $value = 1; + } + elsif(@_ == 2){ $constraint->assert_valid($value); } - else{ - $value = 1; + else { + $self->argument_error('inc', 1, 2, scalar @_); } $writer->($instance, $reader->($instance) + $value); }; } sub generate_dec { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; my $constraint = $self->attr->type_constraint; return sub { my($instance, $value) = @_; - if(@_ > 1){ + if(@_ == 1){ + $value = 1; + } + elsif(@_ == 2){ $constraint->assert_valid($value); } - else{ - $value = 1; + else { + $self->argument_error('dec', 1, 2, scalar @_); } $writer->($instance, $reader->($instance) - $value); }; } no Mouse; __PACKAGE__->meta->make_immutable(); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::Counter - Provides methods for Counter =head1 DESCRIPTION This class provides method generators for the C<Counter> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Counter> for details. =head1 METHOD GENERATORS =over 4 =item generate_reset =item generate_set =item generate_inc =item generate_dec =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/lib/MouseX/NativeTraits/MethodProvider/Num.pm b/lib/MouseX/NativeTraits/MethodProvider/Num.pm index 2c16e88..ccd07a8 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/Num.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/Num.pm @@ -1,120 +1,138 @@ package MouseX::NativeTraits::MethodProvider::Num; use Mouse; extends qw(MouseX::NativeTraits::MethodProvider); sub generate_add { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; my $constraint = $self->attr->type_constraint; return sub { my($instance, $value) = @_; + if(@_ != 2) { + $self->argument_error('add', 2, 2, scalar @_); + } $constraint->assert_valid($value); $writer->( $instance, $reader->( $instance ) + $value ); }; } sub generate_sub { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; my $constraint = $self->attr->type_constraint; return sub { my($instance, $value) = @_; + if(@_ != 2) { + $self->argument_error('sub', 2, 2, scalar @_); + } $constraint->assert_valid($value); $writer->( $instance, $reader->( $instance ) - $value ); }; } sub generate_mul { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; my $constraint = $self->attr->type_constraint; return sub { my($instance, $value) = @_; + if(@_ != 2) { + $self->argument_error('mul', 2, 2, scalar @_); + } $constraint->assert_valid($value); $writer->( $instance, $reader->( $instance ) * $value ); }; } sub generate_div { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; my $constraint = $self->attr->type_constraint; return sub { my($instance, $value) = @_; + if(@_ != 2) { + $self->argument_error('div', 2, 2, scalar @_); + } $constraint->assert_valid($value); $writer->( $instance, $reader->( $instance ) / $value ); }; } sub generate_mod { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; my $constraint = $self->attr->type_constraint; return sub { my($instance, $value) = @_; + if(@_ != 2) { + $self->argument_error('mod', 2, 2, scalar @_); + } $constraint->assert_valid($value); $writer->( $instance, $reader->( $instance ) % $value ); }; } sub generate_abs { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my($instance) = @_; + if(@_ != 1) { + $self->argument_error('abs', 1, 1, scalar @_); + } $writer->( $instance, abs( $reader->( $instance ) ) ); }; } no Mouse; __PACKAGE__->meta->make_immutable(); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::Num - Provides methods for Num =head1 DESCRIPTION This class provides method generators for the C<Number> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Number> for details. =head1 METHOD GENERATORS =over 4 =item generate_add =item generate_sub =item generate_mul =item generate_div =item generate_mod =item generate_abs =back =head1 SEE ALSO L<MouseX::NativeTraits>. =cut diff --git a/lib/MouseX/NativeTraits/MethodProvider/Str.pm b/lib/MouseX/NativeTraits/MethodProvider/Str.pm index 9dc1d46..cb20c2b 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/Str.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/Str.pm @@ -1,206 +1,285 @@ package MouseX::NativeTraits::MethodProvider::Str; use Mouse; +use Mouse::Util::TypeConstraints (); extends qw(MouseX::NativeTraits::MethodProvider); sub generate_append { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my($instance, $value) = @_; + if(@_ != 2) { + $self->argument_error('append', 2, 2, scalar @_); + } + defined($value) or $self->meta->throw_error( + "The argument passed to append must be a string"); $writer->( $instance, $reader->( $instance ) . $value ); }; } sub generate_prepend { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my($instance, $value) = @_; + if(@_ != 2) { + $self->argument_error('prepend', 2, 2, scalar @_); + } + defined($value) or $self->meta->throw_error( + "The argument passed to prepend must be a string"); $writer->( $instance, $value . $reader->( $instance ) ); }; } sub generate_replace { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my( $instance, $regexp, $replacement ) = @_; + if(@_ != 3) { + $self->argument_error('replace', 3, 3, scalar @_); + } + ( Mouse::Util::TypeConstraints::Str($regexp) + || Mouse::Util::TypeConstraints::RegexpRef($regexp) ) + or $self->meta->throw_error( + "The first argument passed to replace must be a string" + . " or regexp reference"); my $v = $reader->( $instance ); if ( ref($replacement) eq 'CODE' ) { $v =~ s/$regexp/$replacement->()/e; } else { + Mouse::Util::TypeConstraints::Str($replacement) + or $self->meta->throw_error( + "The second argument passed to replace must be a string" + . " or code reference"); $v =~ s/$regexp/$replacement/; } $writer->( $instance, $v ); }; } sub generate_replace_globally { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my( $instance, $regexp, $replacement ) = @_; + if(@_ != 3) { + $self->argument_error('replace_globally', 3, 3, scalar @_); + } + ( Mouse::Util::TypeConstraints::Str($regexp) + || Mouse::Util::TypeConstraints::RegexpRef($regexp) ) + or $self->meta->throw_error( + "The first argument passed to replace_globally must be a string" + . " or regexp reference"); my $v = $reader->( $instance ); if ( ref($replacement) eq 'CODE' ) { $v =~ s/$regexp/$replacement->()/eg; } else { + Mouse::Util::TypeConstraints::Str($replacement) + or $self->meta->throw_error( + "The second argument passed to replace must be a string" + . " or code reference"); $v =~ s/$regexp/$replacement/g; } $writer->( $instance, $v ); }; } sub generate_match { my($self) = @_; my $reader = $self->reader; - return sub { $reader->( $_[0] ) =~ $_[1] }; + return sub { + my($instance, $regexp) = @_; + if(@_ != 2) { + $self->argument_error('match', 2, 2, scalar @_); + } + ( Mouse::Util::TypeConstraints::Str($regexp) + || Mouse::Util::TypeConstraints::RegexpRef($regexp) ) + or $self->meta->throw_error( + "The argument passed to match must be a string" + . " or regexp reference"); + $reader->( $instance ) =~ $regexp; + }; } sub generate_chop { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my($instance) = @_; + if(@_ != 1) { + $self->argument_error('chop', 1, 1, scalar @_); + } my $v = $reader->( $instance ); - chop($v); + my $r = chop($v); $writer->( $instance, $v ); + return $r; }; } sub generate_chomp { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my($instance) = @_; + if(@_ != 1) { + $self->argument_error('chomp', 1, 1, scalar @_); + } my $v = $reader->( $instance ); - chomp($v); + my $r = chomp($v); $writer->( $instance, $v ); + return $r; }; } sub generate_inc { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my($instance) = @_; + if(@_ != 1) { + $self->argument_error('inc', 1, 1, scalar @_); + } my $v = $reader->( $instance ); $v++; $writer->( $instance, $v ); }; } sub generate_clear { my($self) = @_; my $writer = $self->writer; return sub { my($instance) = @_; + if(@_ != 1) { + $self->argument_error('clear', 1, 1, scalar @_); + } $writer->( $instance, '' ); }; } sub generate_length { my($self) = @_; my $reader = $self->reader; return sub { + if(@_ != 1) { + $self->argument_error('length', 1, 1, scalar @_); + } return length( $reader->($_[0]) ); }; } sub generate_substr { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my($instance, $offset, $length, $replacement) = @_; + if(@_ < 2 or @_ > 4) { + $self->argument_error('substr', 2, 4, scalar @_); + } my $v = $reader->($instance); - $offset = 0 if !defined $offset; - $length = length($v) if !defined $length; + Mouse::Util::TypeConstraints::Int($offset) + or $self->meta->throw_error( + "The first argument passed to substr must be an integer"); + + if(defined $length) { + Mouse::Util::TypeConstraints::Int($length) + or $self->meta->throw_error( + "The second argument passed to substr must be an integer"); + } + else { + $length = length($v); + } my $ret; if ( defined $replacement ) { + Mouse::Util::TypeConstraints::Str($replacement) + or $self->meta->throw_error( + "The third argument passed to substr must be a string"); $ret = substr( $v, $offset, $length, $replacement ); - $writer->( $self, $v ); + $writer->( $instance, $v ); } else { $ret = substr( $v, $offset, $length ); } return $ret; }; } no Mouse; __PACKAGE__->meta->make_immutable(); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::Str - Provides methods for Str =head1 DESCRIPTION This class provides method generators for the C<String> trait. See L<Mouse::Meta::Attribute::Custom::Trait::String> for details. =head1 METHOD GENERATORS =over 4 =item generate_append =item generate_prepend =item generate_replace =item generate_replace_globally =item generate_match =item generate_chop =item generate_chomp =item generate_inc =item generate_clear =item generate_length =item generate_substr =back =head1 SEE ALSO L<MouseX::NativeTraits>. =cut
gfx/p5-MouseX-NativeTraits
5575452039d1fac0d0b05c2895008a4a45634d9d
Add argument checks for Bool
diff --git a/lib/MouseX/NativeTraits/MethodProvider/Bool.pm b/lib/MouseX/NativeTraits/MethodProvider/Bool.pm index 0b4d3b2..ae54673 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/Bool.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/Bool.pm @@ -1,64 +1,84 @@ package MouseX::NativeTraits::MethodProvider::Bool; use Mouse; extends qw(MouseX::NativeTraits::MethodProvider); sub generate_set { my($self) = @_; - my $writer = $self->writer; - return sub { $writer->( $_[0], 1 ) }; + my $writer = $self->writer; + return sub { + if(@_ != 1) { + $self->argument_error('set', 1, 1, scalar @_); + } + $writer->( $_[0], 1 ); + }; } sub generate_unset { my($self) = @_; - my $writer = $self->writer; - return sub { $writer->( $_[0], 0 ) }; + my $writer = $self->writer; + return sub { + if(@_ != 1) { + $self->argument_error('unset', 1, 1, scalar @_); + } + $writer->( $_[0], 0 ); + }; } sub generate_toggle { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; - return sub { $writer->( $_[0], !$reader->( $_[0] ) ) }; + return sub { + if(@_ != 1) { + $self->argument_error('toggle', 1, 1, scalar @_); + } + $writer->( $_[0], !$reader->( $_[0] ) ); + }; } sub generate_not { my($self) = @_; - my $reader = $self->reader; - return sub { !$reader->( $_[0] ) }; + my $reader = $self->reader; + return sub { + if(@_ != 1) { + $self->argument_error('not', 1, 1, scalar @_); + } + !$reader->( $_[0] ); + }; } no Mouse; __PACKAGE__->meta->make_immutable(); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::Bool - Provides methods for Bool =head1 DESCRIPTION This class provides method generators for the C<Bool> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Bool> for details. =head1 METHOD GENERATORS =over 4 =item generate_set =item generate_unset =item generate_toggle =item generate_not =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut
gfx/p5-MouseX-NativeTraits
13bbcd6cef6869111f5ff49f8e471067e6f4bbad
Improve type constraint process
diff --git a/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm b/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm index 4c84484..4ea36a4 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm @@ -1,708 +1,680 @@ package MouseX::NativeTraits::MethodProvider::ArrayRef; use Mouse; use Mouse::Util::TypeConstraints (); use List::Util (); extends qw(MouseX::NativeTraits::MethodProvider); sub generate_count { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('count', 1, 1, scalar @_); } return scalar @{ $reader->( $_[0] ) }; }; } sub generate_is_empty { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('is_empty', 1, 1, scalar @_); } return scalar(@{ $reader->( $_[0] ) }) == 0; }; } sub generate_first { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; if(@_ != 2) { $self->argument_error('first', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::CodeRef($block) or $instance->meta->throw_error( "The argument passed to first must be a code reference"); return List::Util::first(\&{$block}, @{ $reader->($instance) }); }; } sub generate_any { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; if(@_ != 2) { $self->argument_error('any', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::CodeRef($block) or $instance->meta->throw_error( "The argument passed to any must be a code reference"); foreach (@{ $reader->($instance) }){ if($block->($_)){ return 1; } } return 0; }; } sub generate_apply { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; if(@_ != 2) { $self->argument_error('apply', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::CodeRef($block) or $instance->meta->throw_error( "The argument passed to apply must be a code reference"); my @values = @{ $reader->($instance) }; foreach (@values){ $block->(); } return @values; }; } sub generate_map { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; if(@_ != 2) { $self->argument_error('map', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::CodeRef($block) or $instance->meta->throw_error( "The argument passed to map must be a code reference"); return map { $block->() } @{ $reader->($instance) }; }; } sub generate_reduce { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; if(@_ != 2) { $self->argument_error('reduce', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::CodeRef($block) or $instance->meta->throw_error( "The argument passed to reduce must be a code reference"); our ($a, $b); return List::Util::reduce { $block->($a, $b) } @{ $reader->($instance) }; }; } sub generate_sort { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; if(@_ < 1 or @_ > 2) { $self->argument_error('sort', 1, 2, scalar @_); } if (defined $block) { Mouse::Util::TypeConstraints::CodeRef($block) or $instance->meta->throw_error( "The argument passed to sort must be a code reference"); return sort { $block->( $a, $b ) } @{ $reader->($instance) }; } else { return sort @{ $reader->($instance) }; } }; } sub generate_sort_in_place { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; if(@_ < 1 or @_ > 2) { $self->argument_error('sort_in_place', 1, 2, scalar @_); } my $array_ref = $reader->($instance); if(defined $block){ Mouse::Util::TypeConstraints::CodeRef($block) or $instance->meta->throw_error( "The argument passed to sort_in_place must be a code reference"); @{$array_ref} = sort { $block->($a, $b) } @{$array_ref}; } else{ @{$array_ref} = sort @{$array_ref}; } return $instance; }; } # The sort_by algorithm comes from perlfunc/sort # See also perldoc -f sort and perldoc -q sort sub generate_sort_by { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block, $compare ) = @_; if(@_ < 1 or @_ > 3) { $self->argument_error('sort_by', 1, 3, scalar @_); } my $array_ref = $reader->($instance); my @idx; foreach (@{$array_ref}){ # intentinal use of $_ push @idx, scalar $block->($_); } # NOTE: scalar(@idx)-1 is faster than $#idx if($compare){ return @{ $array_ref }[ sort { $compare->($idx[$a], $idx[$b]) } 0 .. scalar(@idx)-1 ]; } else{ return @{ $array_ref }[ sort { $idx[$a] cmp $idx[$b] } 0 .. scalar(@idx)-1 ]; } }; } sub generate_sort_in_place_by { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block, $compare ) = @_; if(@_ < 1 or @_ > 3) { $self->argument_error('sort_by', 1, 3, scalar @_); } my $array_ref = $reader->($instance); my @idx; foreach (@{$array_ref}){ push @idx, scalar $block->($_); } if($compare){ @{ $array_ref } = @{ $array_ref }[ sort { $compare->($idx[$a], $idx[$b]) } 0 .. scalar(@idx)-1 ]; } else{ @{ $array_ref } = @{ $array_ref }[ sort { $idx[$a] cmp $idx[$b] } 0 .. scalar(@idx)-1 ]; } return $instance; }; } sub generate_shuffle { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance ) = @_; if(@_ != 1) { $self->argument_error('shuffle', 1, 1, scalar @_); } return List::Util::shuffle @{ $reader->($instance) }; }; } sub generate_grep { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; if(@_ != 2) { $self->argument_error('grep', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::CodeRef($block) or $instance->meta->throw_error( "The argument passed to grep must be a code reference"); return grep { $block->() } @{ $reader->($instance) }; }; } sub generate_uniq { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance ) = @_; if(@_ != 1) { $self->argument_error('uniq', 1, 1, scalar @_); } my %seen; my $seen_undef; return grep{ ( defined($_) ? ++$seen{$_} : ++$seen_undef ) == 1 } @{ $reader->($instance) }; }; } sub generate_elements { my($self) = @_; my $reader = $self->reader; return sub { my ($instance) = @_; if(@_ != 1) { $self->argument_error('elements', 1, 1, scalar @_); } return @{ $reader->($instance) }; }; } sub generate_join { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $separator ) = @_; if(@_ != 2) { $self->argument_error('join', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::Str($separator) or $instance->meta->throw_error( "The argument passed to join must be a string"); return join $separator, @{ $reader->($instance) }; }; } sub generate_push { my($self) = @_; my $reader = $self->reader; - my $constraint = $self->attr->type_constraint; - - my $container_type_constraint = $constraint->__is_parameterized - ? $constraint->type_parameter - : undef; + my $writer = $self->writer; return sub { - my $instance = shift; - if(defined $container_type_constraint) { - foreach my $value(@_){ - $container_type_constraint->assert_valid($value) - } - } - return push @{ $reader->($instance) }, @_; + my($instance, @values) = @_; + + my @new_values = @{ $reader->($instance) }; + push @new_values, @values; + $writer->($instance, \@new_values); # commit + return scalar @new_values; }; } sub generate_pop { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('pop', 1, 1, scalar @_); } return pop @{ $reader->( $_[0] ) }; }; } sub generate_unshift { my($self) = @_; my $reader = $self->reader; - my $constraint = $self->attr->type_constraint; - - my $container_type_constraint = $constraint->__is_parameterized - ? $constraint->type_parameter - : undef; + my $writer = $self->writer; return sub { - my $instance = shift; - if(defined $container_type_constraint) { - foreach my $value(@_){ - $container_type_constraint->assert_valid($value) - } - } - return unshift @{ $reader->($instance) }, @_; + my($instance, @values) = @_; + + my @new_values = @{ $reader->($instance) }; + unshift @new_values, @values; + $writer->($instance, \@new_values); # commit + return scalar @new_values; }; } sub generate_shift { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('shift', 1, 1, scalar @_); } return shift @{ $reader->( $_[0] ) }; }; } __PACKAGE__->meta->add_method(generate_get => \&generate_fetch); # alias sub generate_fetch { my($self, $handle_name) = @_; my $reader = $self->reader; return sub { my($instance, $idx) = @_; if(@_ != 2) { $self->argument_error('get', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::Int($idx) or $instance->meta->throw_error( "The index passed to get must be an integer"); return $reader->( $instance )->[ $idx ]; }; } __PACKAGE__->meta->add_method(generate_set => \&generate_store); # alias sub generate_store { my($self) = @_; my $reader = $self->reader; - my $constraint = $self->attr->type_constraint; - - my $container_type_constraint = $constraint->__is_parameterized - ? $constraint->type_parameter - : undef; + my $writer = $self->writer; return sub { my($instance, $idx, $value) = @_; if(@_ != 3) { $self->argument_error('set', 3, 3, scalar @_); } Mouse::Util::TypeConstraints::Int($idx) or $instance->meta->throw_error( "The index argument passed to set must be an integer"); - defined($container_type_constraint) - and $container_type_constraint->assert_valid( $value ); - $reader->( $instance )->[ $idx ] = $value; + my @new_values = @{ $reader->($instance) }; + $new_values[$idx] = $value; + $writer->($instance, \@new_values); # commit + return $value; }; } sub generate_accessor { my($self) = @_; my $reader = $self->reader; - my $constraint = $self->attr->type_constraint; - - my $container_type_constraint = $constraint->__is_parameterized - ? $constraint->type_parameter - : undef; + my $writer = $self->writer; return sub { my($instance, $idx, $value) = @_; if ( @_ == 2 ) { # reader Mouse::Util::TypeConstraints::Int($idx) or $instance->meta->throw_error( "The index argument passed to accessor must be an integer"); return $reader->($instance)->[ $idx ]; } elsif ( @_ == 3) { # writer Mouse::Util::TypeConstraints::Int($idx) or $instance->meta->throw_error( "The index argument passed to accessor must be an integer"); - defined($container_type_constraint) - and $container_type_constraint->assert_valid( $value ); - $reader->($instance)->[ $idx ] = $value; + my @new_values = @{ $reader->($instance) }; + $new_values[$idx] = $value; + $writer->($instance, \@new_values); # commit + return $value; } else { $self->argument_error('accessor', 2, 3, scalar @_); } }; } sub generate_clear { my($self) = @_; my $reader = $self->reader; return sub { my($instance) = @_; if(@_ != 1) { $self->argument_error('clear', 1, 1, scalar @_); } @{ $reader->( $instance ) } = (); return $instance; }; } __PACKAGE__->meta->add_method(generate_delete => \&generate_remove); # alias sub generate_remove { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $idx) = @_; if(@_ != 2) { $self->argument_error('delete', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::Int($idx) or $instance->meta->throw_error( "The index argument passed to delete must be an integer"); return splice @{ $reader->( $instance ) }, $idx, 1; }; } sub generate_insert { my($self) = @_; my $reader = $self->reader; - my $constraint = $self->attr->type_constraint; - - my $container_type_constraint = $constraint->__is_parameterized - ? $constraint->type_parameter - : undef; + my $writer = $self->writer; return sub { my($instance, $idx, $value) = @_; if(@_ != 3) { $self->argument_error('insert', 3, 3, scalar @_); } Mouse::Util::TypeConstraints::Int($idx) or $instance->meta->throw_error( "The index argument passed to insert must be an integer"); - if(defined $container_type_constraint) { - $container_type_constraint->assert_valid( $value ); - } - - splice @{ $reader->( $instance ) }, $idx, 0, $value; - return $instance; + my @new_values = @{ $reader->($instance) }; + splice @new_values, $idx, 0, $value; + $writer->($instance, \@new_values); # commit + return $instance; }; } sub generate_splice { my($self) = @_; my $reader = $self->reader; - my $constraint = $self->attr->type_constraint; - - my $container_type_constraint = $constraint->__is_parameterized - ? $constraint->type_parameter - : undef; + my $writer = $self->writer; return sub { my ( $instance, $idx, $len, @elems ) = @_; if(@_ < 2) { $self->argument_error('splice', 2, undef, scalar @_); } Mouse::Util::TypeConstraints::Int($idx) or $instance->meta->throw_error( "The index argument passed to splice must be an integer"); if(defined $len) { Mouse::Util::TypeConstraints::Int($len) or $instance->meta->throw_error( "The length argument passed to splice must be an integer"); } - if(defined $container_type_constraint and @elems) { - foreach my $value(@elems){ - $container_type_constraint->assert_valid($value); - } - } - return defined($len) - ? splice @{ $reader->($instance) }, $idx, $len, @elems - : splice @{ $reader->($instance) }, $idx; + my @new_values = @{ $reader->($instance) }; + my @ret_values = defined($len) + ? splice @new_values, $idx, $len, @elems + : splice @new_values, $idx; + $writer->($instance, \@new_values); # commit + return wantarray ? @ret_values : $ret_values[-1]; }; } sub generate_for_each { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; foreach my $element(@{ $reader->instance($instance) }){ $block->($element); } return $instance; }; } sub generate_for_each_pair { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; my $array_ref = $reader->($instance); for(my $i = 0; $i < @{$array_ref}; $i += 2){ $block->($array_ref->[$i], $array_ref->[$i + 1]); } return $instance; }; } no Mouse; __PACKAGE__->meta->make_immutable(); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::ArrayRef - Provides methods for ArrayRef =head1 DESCRIPTION This class provides method generators for the C<Array> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Array> for details. =head1 METHOD GENERATORS =over 4 =item generate_count =item generate_is_empty =item generate_first =item generate_any =item generate_apply =item generate_map =item generate_reduce =item generate_sort =item generate_sort_in_place =item generate_sort_by =item generate_sort_in_place_by =item generate_shuffle =item generate_grep =item generate_uniq =item generate_elements =item generate_join =item generate_push =item generate_pop =item generate_unshift =item generate_shift =item generate_fetch =item generate_get The same as C<generate_fetch> =item generate_store =item generate_set The same as C<generate_store> =item generate_accessor =item generate_clear =item generate_remove =item generate_delete The same as C<generate_remove>. Note that it is different from C<CORE::delete>. =item generate_insert =item generate_splice =item generate_for_each =item generate_for_each_pair =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm b/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm index 8b525b4..0ed01be 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm @@ -1,381 +1,374 @@ package MouseX::NativeTraits::MethodProvider::HashRef; use Mouse; extends qw(MouseX::NativeTraits::MethodProvider); sub generate_keys { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('keys', 1, 1, scalar @_); } return keys %{ $reader->( $_[0] ) }; }; } sub generate_sorted_keys { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('sorted_keys', 1, 1, scalar @_); } return sort keys %{ $reader->( $_[0] ) }; }; } sub generate_values { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('values', 1, 1, scalar @_); } return values %{ $reader->( $_[0] ) }; }; } sub generate_kv { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('kv', 1, 1, scalar @_); } my $hash_ref = $reader->( $_[0] ); return map { [ $_ => $hash_ref->{$_} ] } keys %{ $hash_ref }; }; } sub generate_elements { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('elements', 1, 1, scalar @_); } return %{ $reader->( $_[0] ) }; }; } sub generate_count { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('count', 1, 1, scalar @_); } return scalar keys %{ $reader->( $_[0] ) }; }; } sub generate_is_empty { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('is_empty', 1, 1, scalar @_); } return scalar(keys %{ $reader->( $_[0] ) }) == 0; }; } sub generate_exists { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $key) = @_; if(@_ != 2) { $self->argument_error('exists', 2, 2, scalar @_); } defined($key) or $self->meta->throw_error( "Hash keys passed to exists must be defined" ); return exists $reader->( $instance )->{ $key }; } } sub generate_defined { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $key) = @_; if(@_ != 2) { $self->argument_error('defined', 2, 2, scalar @_); } defined($key) or $self->meta->throw_error( "Hash keys passed to defined must be defined" ); return defined $reader->( $instance )->{ $key }; } } __PACKAGE__->meta->add_method(generate_get => \&generate_fetch); sub generate_fetch { my($self) = @_; my $reader = $self->reader; return sub { if(@_ < 2) { $self->argument_error('get', 2, undef, scalar @_); } my $instance = shift; foreach my $key(@_) { defined($key) or $self->meta->throw_error( "Hash keys passed to get must be defined" ); } if ( @_ == 1 ) { return $reader->( $instance )->{ $_[0] }; } else { return @{ $reader->($instance) }{@_}; } }; } __PACKAGE__->meta->add_method(generate_set => \&generate_store); sub generate_store { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; - my $constraint = $self->attr->type_constraint; return sub { my ( $instance, @kv ) = @_; if(@_ < 2) { $self->argument_error('set', 2, undef, scalar @_); } - my %new_value = %{ $reader->($instance) }; + my %new_value = %{ $reader->($instance) }; # copy my @ret_value; while (my ($key, $value) = splice @kv, 0, 2 ) { defined($key) or $self->meta->throw_error( "Hash keys passed to set must be defined" ); - push @ret_value, $new_value{$key} = $value; + push @ret_value, $new_value{$key} = $value; # change } - $constraint->check(\%new_value); - - $writer->( $instance, \%new_value ); + $writer->( $instance, \%new_value ); # commit return wantarray ? @ret_value : $ret_value[-1]; }; } sub generate_accessor { my($self) = @_; my $reader = $self->reader; - my $constraint = $self->attr->type_constraint; - - my $container_type_constraint = $constraint->__is_parameterized - ? $constraint->type_parameter - : undef; + my $writer = $self->writer; return sub { my($instance, $key, $value) = @_;; if ( @_ == 2 ) { # reader defined($key) or $self->meta->throw_error( "Hash keys passed to accessor must be defined" ); return $reader->($instance)->{ $key }; } elsif ( @_ == 3 ) { # writer defined($key) or $self->meta->throw_error( "Hash keys passed to accessor must be defined" ); - defined($container_type_constraint) - and $container_type_constraint->assert_valid( $value ); - $reader->($instance)->{ $key } = $value; + my %new_value = %{ $reader->($instance) }; + $new_value{$key} = $value; + $writer->($instance, \%new_value); # commit } else { $self->argument_error('accessor', 2, 3, scalar @_); } }; } sub generate_clear { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('clear', 1, 1, scalar @_); } %{ $reader->( $_[0] ) } = (); }; } sub generate_delete { my($self) = @_; my $reader = $self->reader; return sub { if(@_ < 2) { $self->argument_error('delete', 2, undef, scalar @_); } my $instance = shift; return delete @{ $reader->($instance) }{@_}; }; } sub generate_for_each_key { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $block) = @_; if(@_ != 2) { $self->argument_error('for_each_key', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::CodeRef($block) or $instance->meta->throw_error( "The argument passed to for_each_key must be a code reference"); foreach (keys %{$reader->($instance)}) { # intentional use of $_ $block->($_); } return $instance; }; } sub generate_for_each_value { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $block) = @_; if(@_ != 2) { $self->argument_error('for_each_value', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::CodeRef($block) or $instance->meta->throw_error( "The argument passed to for_each_value must be a code reference"); foreach (values %{$reader->($instance)}) { # intentional use of $_ $block->($_); } return $instance; }; } sub generate_for_each_pair { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $block) = @_; if(@_ != 2) { $self->argument_error('for_each_pair', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::CodeRef($block) or $instance->meta->throw_error( "The argument passed to for_each_pair must be a code reference"); my $hash_ref = $reader->($instance); foreach my $key(keys %{$hash_ref}){ $block->($key, $hash_ref->{$key}); } return $instance; }; } no Mouse; __PACKAGE__->meta->make_immutable(); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::HashRef - Provides methods for HashRef =head1 DESCRIPTION This class provides method generators for the C<Hash> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Hash> for details. =head1 METHOD GENERATORS =over 4 =item generate_keys =item generate_sorted_keys =item generate_values =item generate_kv =item generate_elements =item generate_count =item generate_is_empty =item generate_exists =item generate_defined =item generate_fetch =item generate_get The same as C<generate_fetch>. =item generate_store =item generate_set The same as C<generate_store>. =item generate_accessor =item generate_clear =item generate_delete =item generate_for_each_key =item generate_for_each_value =item generate_for_each_pair =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut
gfx/p5-MouseX-NativeTraits
cd950a8095e2c103a6a25f3b9ceffa43ea48f979
Check arguments and type constraint correctly
diff --git a/lib/MouseX/NativeTraits/MethodProvider.pm b/lib/MouseX/NativeTraits/MethodProvider.pm index ea81d92..c29e062 100644 --- a/lib/MouseX/NativeTraits/MethodProvider.pm +++ b/lib/MouseX/NativeTraits/MethodProvider.pm @@ -1,142 +1,142 @@ package MouseX::NativeTraits::MethodProvider; use Mouse; has attr => ( is => 'ro', isa => 'Object', required => 1, weak_ref => 1, ); has reader => ( is => 'ro', lazy_build => 1, ); has writer => ( is => 'ro', lazy_build => 1, ); sub _build_reader { my($self) = @_; return $self->attr->get_read_method_ref; } sub _build_writer { my($self) = @_; return $self->attr->get_write_method_ref; } sub has_generator { my($self, $name) = @_; return $self->meta->has_method("generate_$name"); } sub generate { my($self, $handle_name, $method_to_call) = @_; my @curried_args; ($method_to_call, @curried_args) = @{$method_to_call}; my $code = $self->meta ->get_method_body("generate_$method_to_call")->($self); if(@curried_args){ return sub { my $instance = shift; $code->($instance, @curried_args, @_); }; } else{ return $code; } } sub get_generators { my($self) = @_; return grep{ s/\A generate_ //xms } $self->meta->get_method_list; } sub argument_error { my($self, $name, $min, $max, $nargs) = @_; if(not defined $max) { $max = 9 ** 9 ** 9; # inifinity :p } # fix numbers for $self $min--; $max--; $nargs--; if($min <= $nargs and $nargs <= $max) { Carp::croak("Oops ($name): nags=$nargs, min=$min, max=$max"); } my $message = 'Cannot call %s %s argument%s'; - + if($min == 0 and $max == 0 && $nargs > 0) { $self->meta->throw_error( sprintf $message, $name, 'with any', 's' ); } - + $self->meta->throw_error( sprintf 'Cannot call %s %s %d argument%s', $name, ($nargs < $min ? ('without at least', $min) : ('with more than', $max) ), $nargs == 1 ? '' : 's' ); } no Mouse; __PACKAGE__->meta->make_immutable(strict_constructor => 1); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider - The common base class for method providers =head1 DESCRIPTION This class is the common base class for method providers. =head1 ATTRIBUTES =over 4 =item attr =item reader Shortcut for C<< $provider->attr->get_read_method_ref >>. =item writer Shortcut for C<< $provider->attr->get_write_method_ref >>. =back =head1 METHODS =over 4 =item has_generator =item generate =item get_generators =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm b/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm index 5cb3d2d..8b525b4 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm @@ -1,312 +1,381 @@ package MouseX::NativeTraits::MethodProvider::HashRef; use Mouse; extends qw(MouseX::NativeTraits::MethodProvider); sub generate_keys { my($self) = @_; my $reader = $self->reader; - return sub { return keys %{ $reader->( $_[0] ) } }; + return sub { + if(@_ != 1) { + $self->argument_error('keys', 1, 1, scalar @_); + } + return keys %{ $reader->( $_[0] ) }; + }; } sub generate_sorted_keys { my($self) = @_; my $reader = $self->reader; - return sub { return sort keys %{ $reader->( $_[0] ) } }; + return sub { + if(@_ != 1) { + $self->argument_error('sorted_keys', 1, 1, scalar @_); + } + return sort keys %{ $reader->( $_[0] ) }; + }; } sub generate_values { my($self) = @_; my $reader = $self->reader; - return sub { return values %{ $reader->( $_[0] ) } }; + return sub { + if(@_ != 1) { + $self->argument_error('values', 1, 1, scalar @_); + } + return values %{ $reader->( $_[0] ) }; + }; } sub generate_kv { my($self) = @_; my $reader = $self->reader; return sub { - my($instance) = @_; - my $hash_ref = $reader->( $instance ); + if(@_ != 1) { + $self->argument_error('kv', 1, 1, scalar @_); + } + my $hash_ref = $reader->( $_[0] ); return map { [ $_ => $hash_ref->{$_} ] } keys %{ $hash_ref }; }; } sub generate_elements { my($self) = @_; my $reader = $self->reader; return sub { + if(@_ != 1) { + $self->argument_error('elements', 1, 1, scalar @_); + } return %{ $reader->( $_[0] ) }; }; } sub generate_count { my($self) = @_; my $reader = $self->reader; return sub { + if(@_ != 1) { + $self->argument_error('count', 1, 1, scalar @_); + } return scalar keys %{ $reader->( $_[0] ) }; }; } sub generate_is_empty { my($self) = @_; my $reader = $self->reader; return sub { + if(@_ != 1) { + $self->argument_error('is_empty', 1, 1, scalar @_); + } return scalar(keys %{ $reader->( $_[0] ) }) == 0; }; } sub generate_exists { my($self) = @_; my $reader = $self->reader; - return sub { return exists $reader->( $_[0] )->{ $_[1] } }; + return sub { + my($instance, $key) = @_; + if(@_ != 2) { + $self->argument_error('exists', 2, 2, scalar @_); + } + defined($key) + or $self->meta->throw_error( + "Hash keys passed to exists must be defined" ); + return exists $reader->( $instance )->{ $key }; + } } sub generate_defined { my($self) = @_; my $reader = $self->reader; - return sub { return defined $reader->( $_[0] )->{ $_[1] } }; + return sub { + my($instance, $key) = @_; + if(@_ != 2) { + $self->argument_error('defined', 2, 2, scalar @_); + } + defined($key) + or $self->meta->throw_error( + "Hash keys passed to defined must be defined" ); + return defined $reader->( $instance )->{ $key }; + } } __PACKAGE__->meta->add_method(generate_get => \&generate_fetch); sub generate_fetch { my($self) = @_; my $reader = $self->reader; return sub { - if ( @_ == 2 ) { - return $reader->( $_[0] )->{ $_[1] }; + if(@_ < 2) { + $self->argument_error('get', 2, undef, scalar @_); + } + + my $instance = shift; + foreach my $key(@_) { + defined($key) + or $self->meta->throw_error( + "Hash keys passed to get must be defined" ); + } + + if ( @_ == 1 ) { + return $reader->( $instance )->{ $_[0] }; } else { - my ( $self, @keys ) = @_; - return @{ $reader->($self) }{@keys}; + return @{ $reader->($instance) }{@_}; } }; } __PACKAGE__->meta->add_method(generate_set => \&generate_store); sub generate_store { my($self) = @_; my $reader = $self->reader; + my $writer = $self->writer; my $constraint = $self->attr->type_constraint; - if ($constraint->__is_parameterized){ - my $container_type_constraint = $constraint->type_parameter; - return sub { - my ( $self, @kv ) = @_; - - my ( @keys, @values ); - - while (my($key, $value) = splice @kv, 0, 2 ) { - $container_type_constraint->assert_valid($value); - push @keys, $key; - push @values, $value; - } - - if ( @values > 1 ) { - @{ $reader->($self) }{@keys} = @values; - } - else { - $reader->($self)->{ $keys[0] } = $values[0]; - } - }; - } - else { - return sub { - my ( $instance, @kv ) = @_; + return sub { + my ( $instance, @kv ) = @_; + if(@_ < 2) { + $self->argument_error('set', 2, undef, scalar @_); + } - my $hash_ref = $reader->($instance); + my %new_value = %{ $reader->($instance) }; + my @ret_value; + while (my ($key, $value) = splice @kv, 0, 2 ) { + defined($key) + or $self->meta->throw_error( + "Hash keys passed to set must be defined" ); + push @ret_value, $new_value{$key} = $value; + } - while (my($key, $value) = splice @kv, 0, 2) { - $hash_ref->{$key} = $value; - } - }; - } + $constraint->check(\%new_value); + + $writer->( $instance, \%new_value ); + return wantarray ? @ret_value : $ret_value[-1]; + }; } sub generate_accessor { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; - if ($constraint->__is_parameterized){ - my $container_type_constraint = $constraint->type_parameter; - return sub { - my $self = shift; - - if ( @_ == 1 ) { # reader - return $reader->($self)->{ $_[0] }; - } - elsif ( @_ == 2 ) { # writer - $container_type_constraint->assert_valid( $_[1] ); - $reader->($self)->{ $_[0] } = $_[1]; - } - else { - confess "One or two arguments expected, not " . @_; - } - }; - } - else { - return sub { - my $self = shift; - - if ( @_ == 1 ) { # reader - return $reader->($self)->{ $_[0] }; - } - elsif ( @_ == 2 ) { # writer - $reader->($self)->{ $_[0] } = $_[1]; - } - else { - confess "One or two arguments expected, not " . @_; - } - }; - } + my $container_type_constraint = $constraint->__is_parameterized + ? $constraint->type_parameter + : undef; + + return sub { + my($instance, $key, $value) = @_;; + + if ( @_ == 2 ) { # reader + defined($key) + or $self->meta->throw_error( + "Hash keys passed to accessor must be defined" ); + return $reader->($instance)->{ $key }; + } + elsif ( @_ == 3 ) { # writer + defined($key) + or $self->meta->throw_error( + "Hash keys passed to accessor must be defined" ); + defined($container_type_constraint) + and $container_type_constraint->assert_valid( $value ); + $reader->($instance)->{ $key } = $value; + } + else { + $self->argument_error('accessor', 2, 3, scalar @_); + } + }; } sub generate_clear { my($self) = @_; my $reader = $self->reader; - return sub { %{ $reader->( $_[0] ) } = () }; + return sub { + if(@_ != 1) { + $self->argument_error('clear', 1, 1, scalar @_); + } + %{ $reader->( $_[0] ) } = (); + }; } sub generate_delete { my($self) = @_; - my $reader = $self->reader; + my $reader = $self->reader; return sub { + if(@_ < 2) { + $self->argument_error('delete', 2, undef, scalar @_); + } my $instance = shift; + return delete @{ $reader->($instance) }{@_}; }; } sub generate_for_each_key { my($self) = @_; - my $reader = $self->reader; + my $reader = $self->reader; return sub { my($instance, $block) = @_; - foreach my $key(keys %{$reader->($instance)}){ - $block->($key); + if(@_ != 2) { + $self->argument_error('for_each_key', 2, 2, scalar @_); + } + + Mouse::Util::TypeConstraints::CodeRef($block) + or $instance->meta->throw_error( + "The argument passed to for_each_key must be a code reference"); + + foreach (keys %{$reader->($instance)}) { # intentional use of $_ + $block->($_); } return $instance; }; } sub generate_for_each_value { my($self) = @_; - my $reader = $self->reader; + my $reader = $self->reader; return sub { my($instance, $block) = @_; - foreach my $value(values %{$reader->($instance)}){ - $block->($value); + if(@_ != 2) { + $self->argument_error('for_each_value', 2, 2, scalar @_); + } + + Mouse::Util::TypeConstraints::CodeRef($block) + or $instance->meta->throw_error( + "The argument passed to for_each_value must be a code reference"); + + foreach (values %{$reader->($instance)}) { # intentional use of $_ + $block->($_); } return $instance; }; } sub generate_for_each_pair { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $block) = @_; + if(@_ != 2) { + $self->argument_error('for_each_pair', 2, 2, scalar @_); + } + + Mouse::Util::TypeConstraints::CodeRef($block) + or $instance->meta->throw_error( + "The argument passed to for_each_pair must be a code reference"); + my $hash_ref = $reader->($instance); foreach my $key(keys %{$hash_ref}){ $block->($key, $hash_ref->{$key}); } return $instance; }; } no Mouse; __PACKAGE__->meta->make_immutable(); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::HashRef - Provides methods for HashRef =head1 DESCRIPTION This class provides method generators for the C<Hash> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Hash> for details. =head1 METHOD GENERATORS =over 4 =item generate_keys =item generate_sorted_keys =item generate_values =item generate_kv =item generate_elements =item generate_count =item generate_is_empty =item generate_exists =item generate_defined =item generate_fetch =item generate_get The same as C<generate_fetch>. =item generate_store =item generate_set The same as C<generate_store>. =item generate_accessor =item generate_clear =item generate_delete =item generate_for_each_key =item generate_for_each_value =item generate_for_each_pair =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut
gfx/p5-MouseX-NativeTraits
7d7bcd4d9512b7358f87efce2ac6a89e150c7d06
Tweaks
diff --git a/benchmarks/arrayref.pl b/benchmarks/arrayref.pl index f139ac0..1bcc8ea 100644 --- a/benchmarks/arrayref.pl +++ b/benchmarks/arrayref.pl @@ -1,65 +1,65 @@ #!perl -w use strict; use Benchmark qw(:all); print "Benchmark for native traits (Array)\n"; { package MouseStack; use Mouse; has stack => ( is => 'rw', isa => 'ArrayRef', traits => ['Array'], handles => { pop => 'pop', push => 'push', top => [ get => -1 ], is_empty => 'is_empty', }, default => sub{ [] }, ); __PACKAGE__->meta->make_immutable(); } { package MooseStack; use Moose; has stack => ( is => 'rw', isa => 'ArrayRef', traits => ['Array'], handles => { pop => 'pop', push => 'push', top => [ get => -1 ], is_empty => 'is_empty', }, default => sub{ [] }, ); __PACKAGE__->meta->make_immutable(); } my $mouse = MouseStack->new; my $moose = MooseStack->new; -print "push && pop\n"; +print "push && pop && is_empty\n"; cmpthese -1 => { Mouse => sub{ $mouse->push($_) for 1 .. 100; $mouse->pop() until $mouse->is_empty; }, Moose => sub{ $moose->push($_) for 1 .. 100; $moose->pop() until $moose->is_empty; }, }; diff --git a/benchmarks/sort_by.pl b/benchmarks/sort_by.pl index 91f4879..7e0baa0 100644 --- a/benchmarks/sort_by.pl +++ b/benchmarks/sort_by.pl @@ -1,55 +1,55 @@ #!perl -w use strict; use Benchmark qw(:all); use Digest::MD5 qw(md5_hex); print "Benchmark for native traits (Array)\n"; { package MouseList; use Mouse; has list => ( traits => ['Array'], is => 'rw', handles => { sort => 'sort', sort_by => 'sort_by', }, default => sub{ [] }, ); __PACKAGE__->meta->make_immutable(); } sub f{ return md5_hex($_[0]); } -print "sort_by (10 items)\n"; +print "sort_by vs. sort (10 items)\n"; cmpthese -1 => { sort_by => sub{ my $o = MouseList->new(list => [0 .. 10]); my @a = $o->sort_by(sub{ f($_) }, sub{ $_[0] cmp $_[1] }); }, sort => sub{ my $o = MouseList->new(list => [0 .. 10]); my @a = $o->sort(sub{ f($_[0]) cmp f($_[1]) }); }, }; -print "sort_by (100 items)\n"; +print "sort_by vs. sort (100 items)\n"; cmpthese timethese -1 => { sort_by => sub{ my $o = MouseList->new(list => [0 .. 100]); my @a = $o->sort_by(sub{ f($_) }, sub{ $_[0] cmp $_[1] }); }, sort => sub{ my $o = MouseList->new(list => [0 .. 100]); my @a = $o->sort(sub{ f($_[0]) cmp f($_[1]) }); }, }; diff --git a/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm b/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm index b487b95..4c84484 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm @@ -1,700 +1,708 @@ package MouseX::NativeTraits::MethodProvider::ArrayRef; use Mouse; use Mouse::Util::TypeConstraints (); use List::Util (); extends qw(MouseX::NativeTraits::MethodProvider); sub generate_count { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('count', 1, 1, scalar @_); } return scalar @{ $reader->( $_[0] ) }; }; } sub generate_is_empty { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('is_empty', 1, 1, scalar @_); } return scalar(@{ $reader->( $_[0] ) }) == 0; }; } sub generate_first { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; if(@_ != 2) { $self->argument_error('first', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::CodeRef($block) or $instance->meta->throw_error( "The argument passed to first must be a code reference"); return List::Util::first(\&{$block}, @{ $reader->($instance) }); }; } sub generate_any { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; if(@_ != 2) { $self->argument_error('any', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::CodeRef($block) or $instance->meta->throw_error( "The argument passed to any must be a code reference"); - foreach (@{ $reader->($block) }){ + foreach (@{ $reader->($instance) }){ if($block->($_)){ return 1; } } return 0; }; } sub generate_apply { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; if(@_ != 2) { $self->argument_error('apply', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::CodeRef($block) or $instance->meta->throw_error( "The argument passed to apply must be a code reference"); my @values = @{ $reader->($instance) }; foreach (@values){ $block->(); } return @values; }; } sub generate_map { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; if(@_ != 2) { $self->argument_error('map', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::CodeRef($block) or $instance->meta->throw_error( "The argument passed to map must be a code reference"); return map { $block->() } @{ $reader->($instance) }; }; } sub generate_reduce { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; if(@_ != 2) { $self->argument_error('reduce', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::CodeRef($block) or $instance->meta->throw_error( "The argument passed to reduce must be a code reference"); our ($a, $b); return List::Util::reduce { $block->($a, $b) } @{ $reader->($instance) }; }; } sub generate_sort { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; if(@_ < 1 or @_ > 2) { $self->argument_error('sort', 1, 2, scalar @_); } if (defined $block) { Mouse::Util::TypeConstraints::CodeRef($block) or $instance->meta->throw_error( "The argument passed to sort must be a code reference"); return sort { $block->( $a, $b ) } @{ $reader->($instance) }; } else { return sort @{ $reader->($instance) }; } }; } sub generate_sort_in_place { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; if(@_ < 1 or @_ > 2) { $self->argument_error('sort_in_place', 1, 2, scalar @_); } my $array_ref = $reader->($instance); if(defined $block){ Mouse::Util::TypeConstraints::CodeRef($block) or $instance->meta->throw_error( "The argument passed to sort_in_place must be a code reference"); @{$array_ref} = sort { $block->($a, $b) } @{$array_ref}; } else{ @{$array_ref} = sort @{$array_ref}; } return $instance; }; } # The sort_by algorithm comes from perlfunc/sort # See also perldoc -f sort and perldoc -q sort sub generate_sort_by { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block, $compare ) = @_; + if(@_ < 1 or @_ > 3) { + $self->argument_error('sort_by', 1, 3, scalar @_); + } + my $array_ref = $reader->($instance); my @idx; foreach (@{$array_ref}){ # intentinal use of $_ push @idx, scalar $block->($_); } # NOTE: scalar(@idx)-1 is faster than $#idx if($compare){ return @{ $array_ref }[ sort { $compare->($idx[$a], $idx[$b]) } 0 .. scalar(@idx)-1 ]; } else{ return @{ $array_ref }[ sort { $idx[$a] cmp $idx[$b] } 0 .. scalar(@idx)-1 ]; } }; } sub generate_sort_in_place_by { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block, $compare ) = @_; + if(@_ < 1 or @_ > 3) { + $self->argument_error('sort_by', 1, 3, scalar @_); + } + my $array_ref = $reader->($instance); my @idx; foreach (@{$array_ref}){ push @idx, scalar $block->($_); } if($compare){ @{ $array_ref } = @{ $array_ref }[ sort { $compare->($idx[$a], $idx[$b]) } 0 .. scalar(@idx)-1 ]; } else{ @{ $array_ref } = @{ $array_ref }[ sort { $idx[$a] cmp $idx[$b] } 0 .. scalar(@idx)-1 ]; } return $instance; }; } sub generate_shuffle { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance ) = @_; if(@_ != 1) { $self->argument_error('shuffle', 1, 1, scalar @_); } return List::Util::shuffle @{ $reader->($instance) }; }; } sub generate_grep { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; if(@_ != 2) { $self->argument_error('grep', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::CodeRef($block) or $instance->meta->throw_error( "The argument passed to grep must be a code reference"); return grep { $block->() } @{ $reader->($instance) }; }; } sub generate_uniq { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance ) = @_; if(@_ != 1) { $self->argument_error('uniq', 1, 1, scalar @_); } my %seen; my $seen_undef; return grep{ ( defined($_) ? ++$seen{$_} : ++$seen_undef ) == 1 } @{ $reader->($instance) }; }; } sub generate_elements { my($self) = @_; my $reader = $self->reader; return sub { my ($instance) = @_; if(@_ != 1) { $self->argument_error('elements', 1, 1, scalar @_); } return @{ $reader->($instance) }; }; } sub generate_join { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $separator ) = @_; if(@_ != 2) { $self->argument_error('join', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::Str($separator) or $instance->meta->throw_error( "The argument passed to join must be a string"); return join $separator, @{ $reader->($instance) }; }; } sub generate_push { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; my $container_type_constraint = $constraint->__is_parameterized ? $constraint->type_parameter : undef; return sub { my $instance = shift; if(defined $container_type_constraint) { foreach my $value(@_){ $container_type_constraint->assert_valid($value) } } return push @{ $reader->($instance) }, @_; }; } sub generate_pop { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('pop', 1, 1, scalar @_); } return pop @{ $reader->( $_[0] ) }; }; } sub generate_unshift { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; my $container_type_constraint = $constraint->__is_parameterized ? $constraint->type_parameter : undef; return sub { my $instance = shift; if(defined $container_type_constraint) { foreach my $value(@_){ $container_type_constraint->assert_valid($value) } } return unshift @{ $reader->($instance) }, @_; }; } sub generate_shift { my($self) = @_; my $reader = $self->reader; return sub { if(@_ != 1) { $self->argument_error('shift', 1, 1, scalar @_); } return shift @{ $reader->( $_[0] ) }; }; } __PACKAGE__->meta->add_method(generate_get => \&generate_fetch); # alias sub generate_fetch { my($self, $handle_name) = @_; my $reader = $self->reader; return sub { my($instance, $idx) = @_; if(@_ != 2) { $self->argument_error('get', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::Int($idx) or $instance->meta->throw_error( "The index passed to get must be an integer"); return $reader->( $instance )->[ $idx ]; }; } __PACKAGE__->meta->add_method(generate_set => \&generate_store); # alias sub generate_store { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; my $container_type_constraint = $constraint->__is_parameterized ? $constraint->type_parameter : undef; return sub { my($instance, $idx, $value) = @_; if(@_ != 3) { $self->argument_error('set', 3, 3, scalar @_); } Mouse::Util::TypeConstraints::Int($idx) or $instance->meta->throw_error( "The index argument passed to set must be an integer"); defined($container_type_constraint) and $container_type_constraint->assert_valid( $value ); $reader->( $instance )->[ $idx ] = $value; }; } sub generate_accessor { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; my $container_type_constraint = $constraint->__is_parameterized ? $constraint->type_parameter : undef; return sub { my($instance, $idx, $value) = @_; if ( @_ == 2 ) { # reader Mouse::Util::TypeConstraints::Int($idx) or $instance->meta->throw_error( "The index argument passed to accessor must be an integer"); return $reader->($instance)->[ $idx ]; } elsif ( @_ == 3) { # writer Mouse::Util::TypeConstraints::Int($idx) or $instance->meta->throw_error( "The index argument passed to accessor must be an integer"); defined($container_type_constraint) and $container_type_constraint->assert_valid( $value ); $reader->($instance)->[ $idx ] = $value; } else { $self->argument_error('accessor', 2, 3, scalar @_); } }; } sub generate_clear { my($self) = @_; my $reader = $self->reader; return sub { my($instance) = @_; if(@_ != 1) { $self->argument_error('clear', 1, 1, scalar @_); } @{ $reader->( $instance ) } = (); return $instance; }; } __PACKAGE__->meta->add_method(generate_delete => \&generate_remove); # alias sub generate_remove { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $idx) = @_; if(@_ != 2) { $self->argument_error('delete', 2, 2, scalar @_); } Mouse::Util::TypeConstraints::Int($idx) or $instance->meta->throw_error( "The index argument passed to delete must be an integer"); return splice @{ $reader->( $instance ) }, $idx, 1; }; } sub generate_insert { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; my $container_type_constraint = $constraint->__is_parameterized ? $constraint->type_parameter : undef; return sub { my($instance, $idx, $value) = @_; if(@_ != 3) { $self->argument_error('insert', 3, 3, scalar @_); } Mouse::Util::TypeConstraints::Int($idx) or $instance->meta->throw_error( "The index argument passed to insert must be an integer"); if(defined $container_type_constraint) { $container_type_constraint->assert_valid( $value ); } splice @{ $reader->( $instance ) }, $idx, 0, $value; return $instance; }; } sub generate_splice { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; my $container_type_constraint = $constraint->__is_parameterized ? $constraint->type_parameter : undef; return sub { my ( $instance, $idx, $len, @elems ) = @_; if(@_ < 2) { $self->argument_error('splice', 2, undef, scalar @_); } Mouse::Util::TypeConstraints::Int($idx) or $instance->meta->throw_error( "The index argument passed to splice must be an integer"); if(defined $len) { Mouse::Util::TypeConstraints::Int($len) or $instance->meta->throw_error( "The length argument passed to splice must be an integer"); } if(defined $container_type_constraint and @elems) { foreach my $value(@elems){ $container_type_constraint->assert_valid($value); } } return defined($len) ? splice @{ $reader->($instance) }, $idx, $len, @elems : splice @{ $reader->($instance) }, $idx; }; } sub generate_for_each { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; foreach my $element(@{ $reader->instance($instance) }){ $block->($element); } return $instance; }; } sub generate_for_each_pair { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; my $array_ref = $reader->($instance); for(my $i = 0; $i < @{$array_ref}; $i += 2){ $block->($array_ref->[$i], $array_ref->[$i + 1]); } return $instance; }; } no Mouse; __PACKAGE__->meta->make_immutable(); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::ArrayRef - Provides methods for ArrayRef =head1 DESCRIPTION This class provides method generators for the C<Array> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Array> for details. =head1 METHOD GENERATORS =over 4 =item generate_count =item generate_is_empty =item generate_first =item generate_any =item generate_apply =item generate_map =item generate_reduce =item generate_sort =item generate_sort_in_place =item generate_sort_by =item generate_sort_in_place_by =item generate_shuffle =item generate_grep =item generate_uniq =item generate_elements =item generate_join =item generate_push =item generate_pop =item generate_unshift =item generate_shift =item generate_fetch =item generate_get The same as C<generate_fetch> =item generate_store =item generate_set The same as C<generate_store> =item generate_accessor =item generate_clear =item generate_remove =item generate_delete The same as C<generate_remove>. Note that it is different from C<CORE::delete>. =item generate_insert =item generate_splice =item generate_for_each =item generate_for_each_pair =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut
gfx/p5-MouseX-NativeTraits
0c489c1a309e930d6acb484c71a049c935e7de75
Make ArrayRef methods compatible with Moose's
diff --git a/lib/MouseX/NativeTraits/MethodProvider.pm b/lib/MouseX/NativeTraits/MethodProvider.pm index ab26045..ea81d92 100644 --- a/lib/MouseX/NativeTraits/MethodProvider.pm +++ b/lib/MouseX/NativeTraits/MethodProvider.pm @@ -1,110 +1,142 @@ package MouseX::NativeTraits::MethodProvider; use Mouse; has attr => ( is => 'ro', isa => 'Object', required => 1, weak_ref => 1, ); has reader => ( is => 'ro', lazy_build => 1, ); has writer => ( is => 'ro', lazy_build => 1, ); sub _build_reader { my($self) = @_; return $self->attr->get_read_method_ref; } sub _build_writer { my($self) = @_; return $self->attr->get_write_method_ref; } sub has_generator { my($self, $name) = @_; return $self->meta->has_method("generate_$name"); } sub generate { my($self, $handle_name, $method_to_call) = @_; my @curried_args; ($method_to_call, @curried_args) = @{$method_to_call}; my $code = $self->meta ->get_method_body("generate_$method_to_call")->($self); if(@curried_args){ return sub { my $instance = shift; $code->($instance, @curried_args, @_); }; } else{ return $code; } } sub get_generators { my($self) = @_; return grep{ s/\A generate_ //xms } $self->meta->get_method_list; } +sub argument_error { + my($self, $name, $min, $max, $nargs) = @_; + + if(not defined $max) { + $max = 9 ** 9 ** 9; # inifinity :p + } + + # fix numbers for $self + $min--; + $max--; + $nargs--; + + if($min <= $nargs and $nargs <= $max) { + Carp::croak("Oops ($name): nags=$nargs, min=$min, max=$max"); + } + + my $message = 'Cannot call %s %s argument%s'; + + if($min == 0 and $max == 0 && $nargs > 0) { + $self->meta->throw_error( + sprintf $message, + $name, 'with any', 's' ); + } + + $self->meta->throw_error( + sprintf 'Cannot call %s %s %d argument%s', + $name, ($nargs < $min + ? ('without at least', $min) + : ('with more than', $max) ), + $nargs == 1 ? '' : 's' ); +} + no Mouse; __PACKAGE__->meta->make_immutable(strict_constructor => 1); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider - The common base class for method providers =head1 DESCRIPTION This class is the common base class for method providers. =head1 ATTRIBUTES =over 4 =item attr =item reader Shortcut for C<< $provider->attr->get_read_method_ref >>. =item writer Shortcut for C<< $provider->attr->get_write_method_ref >>. =back =head1 METHODS =over 4 =item has_generator =item generate =item get_generators =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm b/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm index 6ac6496..b487b95 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm @@ -1,551 +1,700 @@ package MouseX::NativeTraits::MethodProvider::ArrayRef; use Mouse; +use Mouse::Util::TypeConstraints (); -use List::Util; +use List::Util (); extends qw(MouseX::NativeTraits::MethodProvider); sub generate_count { my($self) = @_; my $reader = $self->reader; return sub { + if(@_ != 1) { + $self->argument_error('count', 1, 1, scalar @_); + } return scalar @{ $reader->( $_[0] ) }; }; } sub generate_is_empty { my($self) = @_; my $reader = $self->reader; return sub { + if(@_ != 1) { + $self->argument_error('is_empty', 1, 1, scalar @_); + } return scalar(@{ $reader->( $_[0] ) }) == 0; }; } sub generate_first { my($self) = @_; my $reader = $self->reader; return sub { - my ( $instance, $predicate ) = @_; - return List::Util::first(\&{$predicate}, @{ $reader->($instance) }); + my ( $instance, $block ) = @_; + + if(@_ != 2) { + $self->argument_error('first', 2, 2, scalar @_); + } + + Mouse::Util::TypeConstraints::CodeRef($block) + or $instance->meta->throw_error( + "The argument passed to first must be a code reference"); + + return List::Util::first(\&{$block}, @{ $reader->($instance) }); }; } sub generate_any { my($self) = @_; my $reader = $self->reader; return sub { - my ( $instance, $predicate ) = @_; - foreach (@{ $reader->($instance) }){ - if($predicate->($_)){ + my ( $instance, $block ) = @_; + + if(@_ != 2) { + $self->argument_error('any', 2, 2, scalar @_); + } + + Mouse::Util::TypeConstraints::CodeRef($block) + or $instance->meta->throw_error( + "The argument passed to any must be a code reference"); + + foreach (@{ $reader->($block) }){ + if($block->($_)){ return 1; } } return 0; }; } sub generate_apply { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; + + if(@_ != 2) { + $self->argument_error('apply', 2, 2, scalar @_); + } + + Mouse::Util::TypeConstraints::CodeRef($block) + or $instance->meta->throw_error( + "The argument passed to apply must be a code reference"); + my @values = @{ $reader->($instance) }; foreach (@values){ $block->(); } return @values; }; } sub generate_map { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; + + if(@_ != 2) { + $self->argument_error('map', 2, 2, scalar @_); + } + + Mouse::Util::TypeConstraints::CodeRef($block) + or $instance->meta->throw_error( + "The argument passed to map must be a code reference"); + return map { $block->() } @{ $reader->($instance) }; }; } sub generate_reduce { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; + + if(@_ != 2) { + $self->argument_error('reduce', 2, 2, scalar @_); + } + + Mouse::Util::TypeConstraints::CodeRef($block) + or $instance->meta->throw_error( + "The argument passed to reduce must be a code reference"); + our ($a, $b); return List::Util::reduce { $block->($a, $b) } @{ $reader->($instance) }; }; } sub generate_sort { my($self) = @_; my $reader = $self->reader; return sub { - my ( $instance, $compare ) = @_; + my ( $instance, $block ) = @_; - if ($compare) { - return sort { $compare->( $a, $b ) } @{ $reader->($instance) }; + if(@_ < 1 or @_ > 2) { + $self->argument_error('sort', 1, 2, scalar @_); + } + + if (defined $block) { + Mouse::Util::TypeConstraints::CodeRef($block) + or $instance->meta->throw_error( + "The argument passed to sort must be a code reference"); + + return sort { $block->( $a, $b ) } @{ $reader->($instance) }; } else { return sort @{ $reader->($instance) }; } }; } sub generate_sort_in_place { my($self) = @_; my $reader = $self->reader; return sub { - my ( $instance, $compare ) = @_; + my ( $instance, $block ) = @_; + + if(@_ < 1 or @_ > 2) { + $self->argument_error('sort_in_place', 1, 2, scalar @_); + } my $array_ref = $reader->($instance); - if($compare){ - @{$array_ref} = sort { $compare->($a, $b) } @{$array_ref}; + if(defined $block){ + Mouse::Util::TypeConstraints::CodeRef($block) + or $instance->meta->throw_error( + "The argument passed to sort_in_place must be a code reference"); + @{$array_ref} = sort { $block->($a, $b) } @{$array_ref}; } else{ @{$array_ref} = sort @{$array_ref}; } return $instance; }; } # The sort_by algorithm comes from perlfunc/sort # See also perldoc -f sort and perldoc -q sort sub generate_sort_by { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block, $compare ) = @_; my $array_ref = $reader->($instance); my @idx; foreach (@{$array_ref}){ # intentinal use of $_ push @idx, scalar $block->($_); } # NOTE: scalar(@idx)-1 is faster than $#idx if($compare){ return @{ $array_ref }[ sort { $compare->($idx[$a], $idx[$b]) } 0 .. scalar(@idx)-1 ]; } else{ return @{ $array_ref }[ sort { $idx[$a] cmp $idx[$b] } 0 .. scalar(@idx)-1 ]; } }; } sub generate_sort_in_place_by { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block, $compare ) = @_; my $array_ref = $reader->($instance); my @idx; foreach (@{$array_ref}){ push @idx, scalar $block->($_); } if($compare){ @{ $array_ref } = @{ $array_ref }[ sort { $compare->($idx[$a], $idx[$b]) } 0 .. scalar(@idx)-1 ]; } else{ @{ $array_ref } = @{ $array_ref }[ sort { $idx[$a] cmp $idx[$b] } 0 .. scalar(@idx)-1 ]; } return $instance; }; } sub generate_shuffle { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance ) = @_; + + if(@_ != 1) { + $self->argument_error('shuffle', 1, 1, scalar @_); + } + return List::Util::shuffle @{ $reader->($instance) }; }; } sub generate_grep { my($self) = @_; my $reader = $self->reader; return sub { - my ( $instance, $predicate ) = @_; - return grep { $predicate->() } @{ $reader->($instance) }; + my ( $instance, $block ) = @_; + + if(@_ != 2) { + $self->argument_error('grep', 2, 2, scalar @_); + } + + Mouse::Util::TypeConstraints::CodeRef($block) + or $instance->meta->throw_error( + "The argument passed to grep must be a code reference"); + + return grep { $block->() } @{ $reader->($instance) }; }; } sub generate_uniq { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance ) = @_; + + if(@_ != 1) { + $self->argument_error('uniq', 1, 1, scalar @_); + } + my %seen; my $seen_undef; - return grep{ (defined($_) ? ++$seen{$_} : ++$seen_undef) == 1 } @{ $reader->($instance) }; + return grep{ + ( defined($_) + ? ++$seen{$_} + : ++$seen_undef + ) == 1 + } @{ $reader->($instance) }; }; } sub generate_elements { my($self) = @_; my $reader = $self->reader; return sub { my ($instance) = @_; + + if(@_ != 1) { + $self->argument_error('elements', 1, 1, scalar @_); + } + return @{ $reader->($instance) }; }; } sub generate_join { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $separator ) = @_; + + if(@_ != 2) { + $self->argument_error('join', 2, 2, scalar @_); + } + + Mouse::Util::TypeConstraints::Str($separator) + or $instance->meta->throw_error( + "The argument passed to join must be a string"); + return join $separator, @{ $reader->($instance) }; }; } sub generate_push { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; - if ( $constraint->__is_parameterized ){ - my $container_type_constraint = $constraint->type_parameter; - return sub { - my $instance = shift; + my $container_type_constraint = $constraint->__is_parameterized + ? $constraint->type_parameter + : undef; + + return sub { + my $instance = shift; + if(defined $container_type_constraint) { foreach my $value(@_){ $container_type_constraint->assert_valid($value) } - push @{ $reader->($instance) }, @_; - return $instance; - }; - } - else { - return sub { - my $instance = shift; - push @{ $reader->($instance) }, @_; - return $instance; - }; - } + } + return push @{ $reader->($instance) }, @_; + }; } sub generate_pop { my($self) = @_; my $reader = $self->reader; return sub { + if(@_ != 1) { + $self->argument_error('pop', 1, 1, scalar @_); + } return pop @{ $reader->( $_[0] ) }; }; } sub generate_unshift { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; - if ( $constraint->__is_parameterized ){ - my $container_type_constraint = $constraint->type_parameter; - return sub { - my $instance = shift; + my $container_type_constraint = $constraint->__is_parameterized + ? $constraint->type_parameter + : undef; + + return sub { + my $instance = shift; + if(defined $container_type_constraint) { foreach my $value(@_){ $container_type_constraint->assert_valid($value) } - unshift @{ $reader->($instance) }, @_; - return $instance; - }; - } - else { - return sub { - my $instance = shift; - unshift @{ $reader->($instance) }, @_; - return $instance; - }; - } + } + return unshift @{ $reader->($instance) }, @_; + }; } sub generate_shift { my($self) = @_; my $reader = $self->reader; return sub { + if(@_ != 1) { + $self->argument_error('shift', 1, 1, scalar @_); + } + return shift @{ $reader->( $_[0] ) }; }; } __PACKAGE__->meta->add_method(generate_get => \&generate_fetch); # alias sub generate_fetch { my($self, $handle_name) = @_; my $reader = $self->reader; return sub { - return $reader->( $_[0] )->[ $_[1] ]; + my($instance, $idx) = @_; + + if(@_ != 2) { + $self->argument_error('get', 2, 2, scalar @_); + } + + Mouse::Util::TypeConstraints::Int($idx) + or $instance->meta->throw_error( + "The index passed to get must be an integer"); + + return $reader->( $instance )->[ $idx ]; }; } __PACKAGE__->meta->add_method(generate_set => \&generate_store); # alias sub generate_store { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; - if ( $constraint->__is_parameterized ){ - my $container_type_constraint = $constraint->type_parameter; - return sub { - $container_type_constraint->assert_valid( $_[2] ); - $reader->( $_[0] )->[ $_[1] ] = $_[2]; - }; - } - else { - return sub { - $reader->( $_[0] )->[ $_[1] ] = $_[2]; - }; - } + my $container_type_constraint = $constraint->__is_parameterized + ? $constraint->type_parameter + : undef; + + return sub { + my($instance, $idx, $value) = @_; + + if(@_ != 3) { + $self->argument_error('set', 3, 3, scalar @_); + } + + Mouse::Util::TypeConstraints::Int($idx) + or $instance->meta->throw_error( + "The index argument passed to set must be an integer"); + + defined($container_type_constraint) + and $container_type_constraint->assert_valid( $value ); + $reader->( $instance )->[ $idx ] = $value; + }; } sub generate_accessor { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; - if ( $constraint->__is_parameterized ){ - my $container_type_constraint = $constraint->type_parameter; - return sub { - my $instance = shift; + my $container_type_constraint = $constraint->__is_parameterized + ? $constraint->type_parameter + : undef; - if ( @_ == 1 ) { # reader - return $reader->($instance)->[ $_[0] ]; - } - elsif ( @_ == 2 ) { # writer - $container_type_constraint->assert_valid( $_[1] ); - $reader->($instance)->[ $_[0] ] = $_[1]; - } - else { - confess "One or two arguments expected, not " . @_; - } - }; - } - else { - return sub { - my $instance = shift; - - if ( @_ == 1 ) { # reader - return $reader->($instance)->[ $_[0] ]; - } - elsif ( @_ == 2 ) { # writer - $reader->($instance)->[ $_[0] ] = $_[1]; - return $instance; - } - else { - confess "One or two arguments expected, not " . @_; - } - }; - } + return sub { + my($instance, $idx, $value) = @_; + + + if ( @_ == 2 ) { # reader + Mouse::Util::TypeConstraints::Int($idx) + or $instance->meta->throw_error( + "The index argument passed to accessor must be an integer"); + + return $reader->($instance)->[ $idx ]; + } + elsif ( @_ == 3) { # writer + Mouse::Util::TypeConstraints::Int($idx) + or $instance->meta->throw_error( + "The index argument passed to accessor must be an integer"); + defined($container_type_constraint) + and $container_type_constraint->assert_valid( $value ); + + $reader->($instance)->[ $idx ] = $value; + } + else { + $self->argument_error('accessor', 2, 3, scalar @_); + } + }; } sub generate_clear { my($self) = @_; my $reader = $self->reader; return sub { - @{ $reader->( $_[0] ) } = (); - return $_[0]; + my($instance) = @_; + + if(@_ != 1) { + $self->argument_error('clear', 1, 1, scalar @_); + } + + @{ $reader->( $instance ) } = (); + return $instance; }; } __PACKAGE__->meta->add_method(generate_delete => \&generate_remove); # alias sub generate_remove { my($self) = @_; my $reader = $self->reader; return sub { - return splice @{ $reader->( $_[0] ) }, $_[1], 1; + my($instance, $idx) = @_; + + if(@_ != 2) { + $self->argument_error('delete', 2, 2, scalar @_); + } + + Mouse::Util::TypeConstraints::Int($idx) + or $instance->meta->throw_error( + "The index argument passed to delete must be an integer"); + + return splice @{ $reader->( $instance ) }, $idx, 1; }; } sub generate_insert { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; - if ( $constraint->__is_parameterized ){ - my $container_type_constraint = $constraint->type_parameter; - return sub { - my($instance, $index, $value) = @_; - $container_type_constraint->assert_valid( $value ); - splice @{ $reader->( $instance ) }, $index, 0, $value; - return $instance; - }; - } - else { - return sub { - my($instance, $index, $value) = @_; - splice @{ $reader->( $instance ) }, $index, 0, $value; + my $container_type_constraint = $constraint->__is_parameterized + ? $constraint->type_parameter + : undef; + + return sub { + my($instance, $idx, $value) = @_; + + if(@_ != 3) { + $self->argument_error('insert', 3, 3, scalar @_); + } + + Mouse::Util::TypeConstraints::Int($idx) + or $instance->meta->throw_error( + "The index argument passed to insert must be an integer"); + + if(defined $container_type_constraint) { + $container_type_constraint->assert_valid( $value ); + } + + splice @{ $reader->( $instance ) }, $idx, 0, $value; return $instance; - }; - } + }; } sub generate_splice { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; - if ( $constraint->__is_parameterized ){ - my $container_type_constraint = $constraint->type_parameter; - return sub { - my ( $self, $i, $j, @elems ) = @_; + my $container_type_constraint = $constraint->__is_parameterized + ? $constraint->type_parameter + : undef; + + return sub { + my ( $instance, $idx, $len, @elems ) = @_; + + if(@_ < 2) { + $self->argument_error('splice', 2, undef, scalar @_); + } + + Mouse::Util::TypeConstraints::Int($idx) + or $instance->meta->throw_error( + "The index argument passed to splice must be an integer"); + if(defined $len) { + Mouse::Util::TypeConstraints::Int($len) + or $instance->meta->throw_error( + "The length argument passed to splice must be an integer"); + } + + if(defined $container_type_constraint and @elems) { foreach my $value(@elems){ $container_type_constraint->assert_valid($value); } - return splice @{ $reader->($self) }, $i, $j, @elems; - }; - } - else { - return sub { - my ( $self, $i, $j, @elems ) = @_; - return splice @{ $reader->($self) }, $i, $j, @elems; - }; - } + } + return defined($len) + ? splice @{ $reader->($instance) }, $idx, $len, @elems + : splice @{ $reader->($instance) }, $idx; + }; } sub generate_for_each { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; foreach my $element(@{ $reader->instance($instance) }){ $block->($element); } return $instance; }; } sub generate_for_each_pair { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; my $array_ref = $reader->($instance); for(my $i = 0; $i < @{$array_ref}; $i += 2){ $block->($array_ref->[$i], $array_ref->[$i + 1]); } return $instance; }; } no Mouse; __PACKAGE__->meta->make_immutable(); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::ArrayRef - Provides methods for ArrayRef =head1 DESCRIPTION This class provides method generators for the C<Array> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Array> for details. =head1 METHOD GENERATORS =over 4 =item generate_count =item generate_is_empty =item generate_first =item generate_any =item generate_apply =item generate_map =item generate_reduce =item generate_sort =item generate_sort_in_place =item generate_sort_by =item generate_sort_in_place_by =item generate_shuffle =item generate_grep =item generate_uniq =item generate_elements =item generate_join =item generate_push =item generate_pop =item generate_unshift =item generate_shift =item generate_fetch =item generate_get The same as C<generate_fetch> =item generate_store =item generate_set The same as C<generate_store> =item generate_accessor =item generate_clear =item generate_remove =item generate_delete The same as C<generate_remove>. Note that it is different from C<CORE::delete>. =item generate_insert =item generate_splice =item generate_for_each =item generate_for_each_pair =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut
gfx/p5-MouseX-NativeTraits
05c4a5972a59f07f58a3fb00fdd2fa185a94858e
Checking in changes prior to tagging of version 1.00.
diff --git a/.shipit b/.shipit index e6bb279..989226e 100644 --- a/.shipit +++ b/.shipit @@ -1,7 +1,7 @@ # auto-generated shipit config file. -steps = FindVersion, ChangeAllVersions, CheckVersionsMatch, CheckChangeLog, DistTest, Commit, Tag, MakeDist, UploadCPAN +steps = FindVersion, ChangeAllVersions, CheckChangeLog, DistTest, Commit, Tag, MakeDist, UploadCPAN git.tagpattern = %v git.push_to = origin CheckChangeLog.files = Changes diff --git a/Changes b/Changes index 98a78b2..9c658e7 100644 --- a/Changes +++ b/Changes @@ -1,13 +1,17 @@ Revision history for Perl extension MouseX::NativeTraits +1.00 Mon Sep 27 15:01:21 2010 + - No functional changes + - Follow Mouse 0.74, which is more compatible with Moose + 0.002 Mon Mar 15 15:56:36 2010 - First non-dev release 0.001_02 Mon Feb 22 17:42:50 2010 - Improve docs 0.001_01 Sat Feb 20 15:49:59 2010 - first dev release 0.001 Fri Feb 19 10:45:19 2010 - original version; created by Module::Setup diff --git a/lib/Mouse/Meta/Attribute/Native.pm b/lib/Mouse/Meta/Attribute/Native.pm index 62712d8..b45f8a3 100644 --- a/lib/Mouse/Meta/Attribute/Native.pm +++ b/lib/Mouse/Meta/Attribute/Native.pm @@ -1,31 +1,31 @@ package Mouse::Meta::Attribute::Native; use strict; -our $VERSION = '0.002'; +our $VERSION = '1.00'; 1; __END__ =head1 NAME Mouse::Meta::Attribute::Native - Extend your attribute interfaces =head1 SYNOPSIS # In your Makefile.PL # you can say: requires 'Mouse::Meta::Attribute::Native'; # just like as 'Moose::Meta::Attribute::Native' =head1 DESCRIPTION This module is just a hook to set C<Mouse::Meta::Attribute::Native> to prerequisites. =head1 SEE ALSO L<MouseX::NativeTraits> L<Moose::Meta::Attribute::Native> =cut diff --git a/lib/MouseX/NativeTraits.pm b/lib/MouseX/NativeTraits.pm index 9d176b4..196251e 100644 --- a/lib/MouseX/NativeTraits.pm +++ b/lib/MouseX/NativeTraits.pm @@ -1,295 +1,295 @@ package MouseX::NativeTraits; use 5.006_002; use Mouse::Role; -our $VERSION = '0.002'; +our $VERSION = '1.00'; requires qw(method_provider_class helper_type); #has default => ( # is => 'bare', # don't create new methods # required => 1, #); has type_constraint => ( is => 'bare', # don't create new methods required => 1, ); has method_provider => ( is => 'ro', isa => 'Object', builder => '_build_method_provider', ); sub _build_method_provider{ my($self) = @_; my $mpc = $self->method_provider_class; Mouse::Util::load_class($mpc); return $mpc->new(attr => $self); } before _process_options => sub { my ( $self, $name, $options ) = @_; my $type = $self->helper_type; $options->{isa} = $type if !exists $options->{isa}; my $isa = Mouse::Util::TypeConstraints::find_or_create_isa_type_constraint( $options->{isa} ); ( $isa->is_a_type_of($type) ) || $self->throw_error( "The type constraint for $name must be a subtype of $type but it's a $isa"); $options->{default} = $self->_default_default if !exists $options->{default} && $self->can('_default_default'); }; around _canonicalize_handles => sub { my($next, $self) = @_; my $handles_ref = $self->handles; if( ref($handles_ref) ne 'HASH' ) { $self->throw_error( "The 'handles' option must be a HASH reference, not $handles_ref"); } my $provider = $self->method_provider; my %handles; while(my($name, $to) = each %{$handles_ref}){ $to = [$to] if !ref $to; $provider->has_generator($to->[0]) or $self->throw_error("$to->[0] is an unsupported method type"); $handles{$name} = $to; } return %handles; }; around _make_delegation_method => sub { my( $next, $self, $handle_name, $method_to_call) = @_; return $self->method_provider->generate($handle_name, $method_to_call); }; no Mouse::Role; 1; __END__ =head1 NAME MouseX::NativeTraits - Extend your attribute interfaces for Mouse =head1 VERSION -This document describes MouseX::NativeTraits version 0.002. +This document describes MouseX::NativeTraits version 1.00. =head1 SYNOPSIS package MyClass; use Mouse; has mapping => ( traits => ['Hash'], is => 'rw', isa => 'HashRef[Str]', default => sub { +{} }, handles => { exists_in_mapping => 'exists', ids_in_mapping => 'keys', get_mapping => 'get', set_mapping => 'set', set_quantity => [ set => 'quantity' ], }, ); =head1 DESCRIPTION While L<Mouse> attributes provide a way to name your accessors, readers, writers, clearers and predicates, MouseX::NativeTraits provides commonly used attribute helper methods for more specific types of data. As seen in the L</SYNOPSIS>, you specify the data structure via the C<traits> parameter. These traits will be loaded automatically, so you need not load MouseX::NativeTraits explicitly. This extention is compatible with Moose native traits, although it is not a part of Mouse core. =head1 PARAMETERS =head2 handles This is like C<handles> in L<Mouse/has>, but only HASH references are allowed. Keys are method names that you want installed locally, and values are methods from the method providers (below). Currying with delegated methods works normally for C<< handles >>. =head1 NATIVE TRAITS =head2 Array Common methods for array references. has 'queue' => ( traits => ['Array'], is => 'ro', isa => 'ArrayRef[Str]', default => sub { [] }, handles => { add_item => 'push', next_item => 'shift', } ); See L<MouseX::NativeTraits::ArrayRef>. =head2 Hash Common methods for hash references. has 'options' => ( traits => ['Hash'], is => 'ro', isa => 'HashRef[Str]', default => sub { {} }, handles => { set_option => 'set', get_option => 'get', has_option => 'exists', } ); See L<MouseX::NativeTraits::HashRef>. =head2 Code Common methods for code references. has 'callback' => ( traits => ['Code'], is => 'ro', isa => 'CodeRef', default => sub { sub { 'called' } }, handles => { call => 'execute', } ); See L<MouseX::NativeTraits::CodeRef>. =head2 Bool Common methods for boolean values. has 'is_lit' => ( traits => ['Bool'], is => 'rw', isa => 'Bool', default => 0, handles => { illuminate => 'set', darken => 'unset', flip_switch => 'toggle', is_dark => 'not', } ); See L<MouseX::NativeTraits::Bool>. =head2 String Common methods for string operations. has text => ( traits => ['String'], is => 'rw', isa => 'Str', default => q{}, handles => { add_text => 'append', replace_text => 'replace', # or replace_globally } ); See L<MouseX::NativeTraits::Str>. =head2 Number Common numerical operations. has value => ( traits => ['Number'], is => 'ro', isa => 'Int', default => 5, handles => { set => 'set', add => 'add', sub => 'sub', mul => 'mul', div => 'div', mod => 'mod', abs => 'abs', } ); See L<MouseX::NativeTraits::Num>. =head2 Counter Methods for incrementing and decrementing a counter attribute. has counter => ( traits => ['Counter'], is => 'ro', isa => 'Num', default => 0, handles => { inc_counter => 'inc', dec_counter => 'dec', reset_counter => 'reset', } ); See L<MouseX::NativeTraits::Counter>. =head1 DEPENDENCIES Perl 5.6.2 or later. =head1 BUGS All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. =head1 SEE ALSO L<Mouse> L<MouseX::AttributeHelpers> L<Moose> L<Moose::Meta::Attribute::Native> L<MooseX::AttributeHelpers> =head1 AUTHORS Goro Fuji (gfx) E<lt>gfuji(at)cpan.orgE<gt> This module is based on Moose native traits written by Stevan Little and others. =head1 LICENSE AND COPYRIGHT Copyright (c) 2010, Goro Fuji (gfx), mostly based on Moose, which is (c) Infinity Interactive, Inc (L<http://www.iinteractive.com>). This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L<perlartistic> for details. =cut
gfx/p5-MouseX-NativeTraits
45954b5aa588c62083c9bd60bc88fa4ec0b60ca6
Fix _canonicalize_handles(), which has become compatible with Moose
diff --git a/Makefile.PL b/Makefile.PL index ab38dee..6340926 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,23 +1,23 @@ use strict; use warnings; use inc::Module::Install; all_from 'lib/MouseX/NativeTraits.pm'; -requires 'Mouse', 0.51; +requires 'Mouse' => 0.74; test_requires 'Test::More' => 0.88; # done_testing() test_requires 'Test::Exception' => 0.29; tests_recursive 't'; auto_set_repository() if -d '.git'; clean_files qw( MouseX-NativeTraits-* *.stackdump cover_db nytprof *.out ); WriteAll(check_nmake => 0); diff --git a/lib/MouseX/NativeTraits.pm b/lib/MouseX/NativeTraits.pm index 7da65d5..1c64e0a 100644 --- a/lib/MouseX/NativeTraits.pm +++ b/lib/MouseX/NativeTraits.pm @@ -1,297 +1,297 @@ package MouseX::NativeTraits; use 5.006_002; use Mouse::Role; our $VERSION = '0.002'; requires qw(method_provider_class helper_type); #has default => ( # is => 'bare', # don't create new methods # required => 1, #); has type_constraint => ( is => 'bare', # don't create new methods required => 1, ); has method_provider => ( is => 'ro', isa => 'Object', builder => '_build_method_provider', ); sub _build_method_provider{ my($self) = @_; my $mpc = $self->method_provider_class; Mouse::Util::load_class($mpc); return $mpc->new(attr => $self); } before _process_options => sub { my ( $self, $name, $options ) = @_; my $type = $self->helper_type; $options->{isa} = $type if !exists $options->{isa}; my $isa = Mouse::Util::TypeConstraints::find_or_create_isa_type_constraint( $options->{isa} ); ( $isa->is_a_type_of($type) ) || $self->throw_error( "The type constraint for $name must be a subtype of $type but it's a $isa"); $options->{default} = $self->_default_default if !exists $options->{default} && $self->can('_default_default'); }; around _canonicalize_handles => sub { - my($next, $self, $handles_ref) = @_; - + my($next, $self) = @_; + my $handles_ref = $self->handles; if( ref($handles_ref) ne 'HASH' ) { $self->throw_error( "The 'handles' option must be a HASH reference, not $handles_ref"); } my $provider = $self->method_provider; my %handles; while(my($name, $to) = each %{$handles_ref}){ $to = [$to] if !ref $to; $provider->has_generator($to->[0]) or $self->throw_error("$to->[0] is an unsupported method type"); $handles{$name} = $to; } return %handles; }; around _make_delegation_method => sub { my( $next, $self, $handle_name, $method_to_call) = @_; return $self->method_provider->generate($handle_name, $method_to_call); }; no Mouse::Role; 1; __END__ =head1 NAME MouseX::NativeTraits - Extend your attribute interfaces for Mouse =head1 VERSION This document describes MouseX::NativeTraits version 0.002. =head1 SYNOPSIS package MyClass; use Mouse; has mapping => ( traits => ['Hash'], is => 'rw', isa => 'HashRef[Str]', default => sub { +{} }, handles => { exists_in_mapping => 'exists', ids_in_mapping => 'keys', get_mapping => 'get', set_mapping => 'set', set_quantity => [ set => 'quantity' ], }, ); =head1 DESCRIPTION While L<Mouse> attributes provide a way to name your accessors, readers, writers, clearers and predicates, MouseX::NativeTraits provides commonly used attribute helper methods for more specific types of data. As seen in the L</SYNOPSIS>, you specify the data structure via the C<traits> parameter. These traits will be loaded automatically, so you need not load MouseX::NativeTraits explicitly. This extention is compatible with Moose native traits, although it is not a part of Mouse core. =head1 PARAMETERS =head2 handles This is like C<handles> in L<Mouse/has>, but only HASH references are allowed. Keys are method names that you want installed locally, and values are methods from the method providers (below). Currying with delegated methods works normally for C<< handles >>. =head1 NATIVE TRAITS =head2 Array Common methods for array references. has 'queue' => ( traits => ['Array'], is => 'ro', isa => 'ArrayRef[Str]', default => sub { [] }, handles => { add_item => 'push', next_item => 'shift', } ); See L<MouseX::NativeTraits::ArrayRef>. =head2 Hash Common methods for hash references. has 'options' => ( traits => ['Hash'], is => 'ro', isa => 'HashRef[Str]', default => sub { {} }, handles => { set_option => 'set', get_option => 'get', has_option => 'exists', } ); See L<MouseX::NativeTraits::HashRef>. =head2 Code Common methods for code references. has 'callback' => ( traits => ['Code'], is => 'ro', isa => 'CodeRef', default => sub { sub { 'called' } }, handles => { call => 'execute', } ); See L<MouseX::NativeTraits::CodeRef>. =head2 Bool Common methods for boolean values. has 'is_lit' => ( traits => ['Bool'], is => 'rw', isa => 'Bool', default => 0, handles => { illuminate => 'set', darken => 'unset', flip_switch => 'toggle', is_dark => 'not', } ); See L<MouseX::NativeTraits::Bool>. =head2 String Common methods for string operations. has text => ( traits => ['String'], is => 'rw', isa => 'Str', default => q{}, handles => { add_text => 'append', replace_text => 'replace', # or replace_globally } ); See L<MouseX::NativeTraits::Str>. =head2 Number Common numerical operations. has value => ( traits => ['Number'], is => 'ro', isa => 'Int', default => 5, handles => { set => 'set', add => 'add', sub => 'sub', mul => 'mul', div => 'div', mod => 'mod', abs => 'abs', } ); See L<MouseX::NativeTraits::Num>. =head2 Counter Methods for incrementing and decrementing a counter attribute. has counter => ( traits => ['Counter'], is => 'ro', isa => 'Num', default => 0, handles => { inc_counter => 'inc', dec_counter => 'dec', reset_counter => 'reset', } ); See L<MouseX::NativeTraits::Counter>. =head1 DEPENDENCIES Perl 5.6.2 or later. =head1 BUGS All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. =head1 SEE ALSO L<Mouse> L<MouseX::AttributeHelpers> L<Moose> L<Moose::Meta::Attribute::Native> L<MooseX::AttributeHelpers> =head1 AUTHORS Goro Fuji (gfx) E<lt>gfuji(at)cpan.orgE<gt> This module is based on Moose native traits written by Stevan Little and others. =head1 LICENSE AND COPYRIGHT Copyright (c) 2010, Goro Fuji (gfx), mostly based on Moose, which is (c) Infinity Interactive, Inc (L<http://www.iinteractive.com>). This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L<perlartistic> for details. =cut
gfx/p5-MouseX-NativeTraits
f40bae6aef10d82777940a85f005a8de09c4acd4
Checking in changes prior to tagging of version 0.002. Changelog diff is:
diff --git a/Changes b/Changes index 6d3e3a1..98a78b2 100644 --- a/Changes +++ b/Changes @@ -1,10 +1,13 @@ Revision history for Perl extension MouseX::NativeTraits +0.002 Mon Mar 15 15:56:36 2010 + - First non-dev release + 0.001_02 Mon Feb 22 17:42:50 2010 - Improve docs 0.001_01 Sat Feb 20 15:49:59 2010 - - first dev-release + - first dev release 0.001 Fri Feb 19 10:45:19 2010 - original version; created by Module::Setup diff --git a/lib/Mouse/Meta/Attribute/Native.pm b/lib/Mouse/Meta/Attribute/Native.pm index 4f70352..62712d8 100644 --- a/lib/Mouse/Meta/Attribute/Native.pm +++ b/lib/Mouse/Meta/Attribute/Native.pm @@ -1,31 +1,31 @@ package Mouse::Meta::Attribute::Native; use strict; -our $VERSION = '0.001_02'; +our $VERSION = '0.002'; 1; __END__ =head1 NAME Mouse::Meta::Attribute::Native - Extend your attribute interfaces =head1 SYNOPSIS # In your Makefile.PL # you can say: requires 'Mouse::Meta::Attribute::Native'; # just like as 'Moose::Meta::Attribute::Native' =head1 DESCRIPTION This module is just a hook to set C<Mouse::Meta::Attribute::Native> to prerequisites. =head1 SEE ALSO L<MouseX::NativeTraits> L<Moose::Meta::Attribute::Native> =cut diff --git a/lib/MouseX/NativeTraits.pm b/lib/MouseX/NativeTraits.pm index 95f9e6f..7da65d5 100644 --- a/lib/MouseX/NativeTraits.pm +++ b/lib/MouseX/NativeTraits.pm @@ -1,297 +1,297 @@ package MouseX::NativeTraits; use 5.006_002; use Mouse::Role; -our $VERSION = '0.001_02'; +our $VERSION = '0.002'; requires qw(method_provider_class helper_type); #has default => ( # is => 'bare', # don't create new methods # required => 1, #); has type_constraint => ( is => 'bare', # don't create new methods required => 1, ); has method_provider => ( is => 'ro', isa => 'Object', builder => '_build_method_provider', ); sub _build_method_provider{ my($self) = @_; my $mpc = $self->method_provider_class; Mouse::Util::load_class($mpc); return $mpc->new(attr => $self); } before _process_options => sub { my ( $self, $name, $options ) = @_; my $type = $self->helper_type; $options->{isa} = $type if !exists $options->{isa}; my $isa = Mouse::Util::TypeConstraints::find_or_create_isa_type_constraint( $options->{isa} ); ( $isa->is_a_type_of($type) ) || $self->throw_error( "The type constraint for $name must be a subtype of $type but it's a $isa"); $options->{default} = $self->_default_default if !exists $options->{default} && $self->can('_default_default'); }; around _canonicalize_handles => sub { my($next, $self, $handles_ref) = @_; if( ref($handles_ref) ne 'HASH' ) { $self->throw_error( "The 'handles' option must be a HASH reference, not $handles_ref"); } my $provider = $self->method_provider; my %handles; while(my($name, $to) = each %{$handles_ref}){ $to = [$to] if !ref $to; $provider->has_generator($to->[0]) or $self->throw_error("$to->[0] is an unsupported method type"); $handles{$name} = $to; } return %handles; }; around _make_delegation_method => sub { my( $next, $self, $handle_name, $method_to_call) = @_; return $self->method_provider->generate($handle_name, $method_to_call); }; no Mouse::Role; 1; __END__ =head1 NAME MouseX::NativeTraits - Extend your attribute interfaces for Mouse =head1 VERSION -This document describes MouseX::NativeTraits version 0.001_02. +This document describes MouseX::NativeTraits version 0.002. =head1 SYNOPSIS package MyClass; use Mouse; has mapping => ( traits => ['Hash'], is => 'rw', isa => 'HashRef[Str]', default => sub { +{} }, handles => { exists_in_mapping => 'exists', ids_in_mapping => 'keys', get_mapping => 'get', set_mapping => 'set', set_quantity => [ set => 'quantity' ], }, ); =head1 DESCRIPTION While L<Mouse> attributes provide a way to name your accessors, readers, writers, clearers and predicates, MouseX::NativeTraits provides commonly used attribute helper methods for more specific types of data. As seen in the L</SYNOPSIS>, you specify the data structure via the C<traits> parameter. These traits will be loaded automatically, so you need not load MouseX::NativeTraits explicitly. This extention is compatible with Moose native traits, although it is not a part of Mouse core. =head1 PARAMETERS =head2 handles This is like C<handles> in L<Mouse/has>, but only HASH references are allowed. Keys are method names that you want installed locally, and values are methods from the method providers (below). Currying with delegated methods works normally for C<< handles >>. =head1 NATIVE TRAITS =head2 Array Common methods for array references. has 'queue' => ( traits => ['Array'], is => 'ro', isa => 'ArrayRef[Str]', default => sub { [] }, handles => { add_item => 'push', next_item => 'shift', } ); See L<MouseX::NativeTraits::ArrayRef>. =head2 Hash Common methods for hash references. has 'options' => ( traits => ['Hash'], is => 'ro', isa => 'HashRef[Str]', default => sub { {} }, handles => { set_option => 'set', get_option => 'get', has_option => 'exists', } ); See L<MouseX::NativeTraits::HashRef>. =head2 Code Common methods for code references. has 'callback' => ( traits => ['Code'], is => 'ro', isa => 'CodeRef', default => sub { sub { 'called' } }, handles => { call => 'execute', } ); See L<MouseX::NativeTraits::CodeRef>. =head2 Bool Common methods for boolean values. has 'is_lit' => ( traits => ['Bool'], is => 'rw', isa => 'Bool', default => 0, handles => { illuminate => 'set', darken => 'unset', flip_switch => 'toggle', is_dark => 'not', } ); See L<MouseX::NativeTraits::Bool>. =head2 String Common methods for string operations. has text => ( traits => ['String'], is => 'rw', isa => 'Str', default => q{}, handles => { add_text => 'append', replace_text => 'replace', # or replace_globally } ); See L<MouseX::NativeTraits::Str>. =head2 Number Common numerical operations. has value => ( traits => ['Number'], is => 'ro', isa => 'Int', default => 5, handles => { set => 'set', add => 'add', sub => 'sub', mul => 'mul', div => 'div', mod => 'mod', abs => 'abs', } ); See L<MouseX::NativeTraits::Num>. =head2 Counter Methods for incrementing and decrementing a counter attribute. has counter => ( traits => ['Counter'], is => 'ro', isa => 'Num', default => 0, handles => { inc_counter => 'inc', dec_counter => 'dec', reset_counter => 'reset', } ); See L<MouseX::NativeTraits::Counter>. =head1 DEPENDENCIES Perl 5.6.2 or later. =head1 BUGS All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. =head1 SEE ALSO L<Mouse> L<MouseX::AttributeHelpers> L<Moose> L<Moose::Meta::Attribute::Native> L<MooseX::AttributeHelpers> =head1 AUTHORS Goro Fuji (gfx) E<lt>gfuji(at)cpan.orgE<gt> This module is based on Moose native traits written by Stevan Little and others. =head1 LICENSE AND COPYRIGHT Copyright (c) 2010, Goro Fuji (gfx), mostly based on Moose, which is (c) Infinity Interactive, Inc (L<http://www.iinteractive.com>). This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L<perlartistic> for details. =cut
gfx/p5-MouseX-NativeTraits
54d2862dd0f99e7437aa894e78348f6760b351a4
Add tests
diff --git a/t/00_load.t b/t/00_load.t index 35bc8a6..f4c8243 100644 --- a/t/00_load.t +++ b/t/00_load.t @@ -1,24 +1,27 @@ #!perl -w use strict; use Test::More; +require_ok 'Mouse::Meta::Attribute::Native'; + require_ok 'MouseX::NativeTraits'; require_ok 'MouseX::NativeTraits::MethodProvider'; foreach my $type(qw(ArrayRef HashRef CodeRef Str Num Bool Counter)){ my $trait = 'MouseX::NativeTraits::' . $type; require_ok $trait; require_ok $trait->method_provider_class; } diag "Testing MouseX::NativeTraits/$MouseX::NativeTraits::VERSION"; diag "Dependencies:"; require Mouse; diag " Mouse/$Mouse::VERSION"; +ok( Mouse::Meta::Attribute::Native->VERSION ); done_testing;
gfx/p5-MouseX-NativeTraits
1b93f36c4b0513b5bae18ff6d447738ed64c7fb3
Add Mouse::Meta::Attribute::Native to hook prerequisites
diff --git a/lib/Mouse/Meta/Attribute/Native.pm b/lib/Mouse/Meta/Attribute/Native.pm new file mode 100644 index 0000000..4f70352 --- /dev/null +++ b/lib/Mouse/Meta/Attribute/Native.pm @@ -0,0 +1,31 @@ +package Mouse::Meta::Attribute::Native; +use strict; + +our $VERSION = '0.001_02'; + +1; +__END__ + +=head1 NAME + +Mouse::Meta::Attribute::Native - Extend your attribute interfaces + +=head1 SYNOPSIS + + # In your Makefile.PL + # you can say: + requires 'Mouse::Meta::Attribute::Native'; + # just like as 'Moose::Meta::Attribute::Native' + +=head1 DESCRIPTION + +This module is just a hook to set C<Mouse::Meta::Attribute::Native> to +prerequisites. + +=head1 SEE ALSO + +L<MouseX::NativeTraits> + +L<Moose::Meta::Attribute::Native> + +=cut
gfx/p5-MouseX-NativeTraits
8eb5bf68bc4fa8dea4533e9a2eeeb8c4fe120410
No strict_constructor => 1. its interface will be changed.
diff --git a/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm b/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm index 5c668a2..6ac6496 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm @@ -1,551 +1,551 @@ package MouseX::NativeTraits::MethodProvider::ArrayRef; use Mouse; use List::Util; extends qw(MouseX::NativeTraits::MethodProvider); sub generate_count { my($self) = @_; my $reader = $self->reader; return sub { return scalar @{ $reader->( $_[0] ) }; }; } sub generate_is_empty { my($self) = @_; my $reader = $self->reader; return sub { return scalar(@{ $reader->( $_[0] ) }) == 0; }; } sub generate_first { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $predicate ) = @_; return List::Util::first(\&{$predicate}, @{ $reader->($instance) }); }; } sub generate_any { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $predicate ) = @_; foreach (@{ $reader->($instance) }){ if($predicate->($_)){ return 1; } } return 0; }; } sub generate_apply { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; my @values = @{ $reader->($instance) }; foreach (@values){ $block->(); } return @values; }; } sub generate_map { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; return map { $block->() } @{ $reader->($instance) }; }; } sub generate_reduce { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; our ($a, $b); return List::Util::reduce { $block->($a, $b) } @{ $reader->($instance) }; }; } sub generate_sort { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $compare ) = @_; if ($compare) { return sort { $compare->( $a, $b ) } @{ $reader->($instance) }; } else { return sort @{ $reader->($instance) }; } }; } sub generate_sort_in_place { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $compare ) = @_; my $array_ref = $reader->($instance); if($compare){ @{$array_ref} = sort { $compare->($a, $b) } @{$array_ref}; } else{ @{$array_ref} = sort @{$array_ref}; } return $instance; }; } # The sort_by algorithm comes from perlfunc/sort # See also perldoc -f sort and perldoc -q sort sub generate_sort_by { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block, $compare ) = @_; my $array_ref = $reader->($instance); my @idx; foreach (@{$array_ref}){ # intentinal use of $_ push @idx, scalar $block->($_); } # NOTE: scalar(@idx)-1 is faster than $#idx if($compare){ return @{ $array_ref }[ sort { $compare->($idx[$a], $idx[$b]) } 0 .. scalar(@idx)-1 ]; } else{ return @{ $array_ref }[ sort { $idx[$a] cmp $idx[$b] } 0 .. scalar(@idx)-1 ]; } }; } sub generate_sort_in_place_by { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block, $compare ) = @_; my $array_ref = $reader->($instance); my @idx; foreach (@{$array_ref}){ push @idx, scalar $block->($_); } if($compare){ @{ $array_ref } = @{ $array_ref }[ sort { $compare->($idx[$a], $idx[$b]) } 0 .. scalar(@idx)-1 ]; } else{ @{ $array_ref } = @{ $array_ref }[ sort { $idx[$a] cmp $idx[$b] } 0 .. scalar(@idx)-1 ]; } return $instance; }; } sub generate_shuffle { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance ) = @_; return List::Util::shuffle @{ $reader->($instance) }; }; } sub generate_grep { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $predicate ) = @_; return grep { $predicate->() } @{ $reader->($instance) }; }; } sub generate_uniq { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance ) = @_; my %seen; my $seen_undef; return grep{ (defined($_) ? ++$seen{$_} : ++$seen_undef) == 1 } @{ $reader->($instance) }; }; } sub generate_elements { my($self) = @_; my $reader = $self->reader; return sub { my ($instance) = @_; return @{ $reader->($instance) }; }; } sub generate_join { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $separator ) = @_; return join $separator, @{ $reader->($instance) }; }; } sub generate_push { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { my $instance = shift; foreach my $value(@_){ $container_type_constraint->assert_valid($value) } push @{ $reader->($instance) }, @_; return $instance; }; } else { return sub { my $instance = shift; push @{ $reader->($instance) }, @_; return $instance; }; } } sub generate_pop { my($self) = @_; my $reader = $self->reader; return sub { return pop @{ $reader->( $_[0] ) }; }; } sub generate_unshift { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { my $instance = shift; foreach my $value(@_){ $container_type_constraint->assert_valid($value) } unshift @{ $reader->($instance) }, @_; return $instance; }; } else { return sub { my $instance = shift; unshift @{ $reader->($instance) }, @_; return $instance; }; } } sub generate_shift { my($self) = @_; my $reader = $self->reader; return sub { return shift @{ $reader->( $_[0] ) }; }; } __PACKAGE__->meta->add_method(generate_get => \&generate_fetch); # alias sub generate_fetch { my($self, $handle_name) = @_; my $reader = $self->reader; return sub { return $reader->( $_[0] )->[ $_[1] ]; }; } __PACKAGE__->meta->add_method(generate_set => \&generate_store); # alias sub generate_store { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { $container_type_constraint->assert_valid( $_[2] ); $reader->( $_[0] )->[ $_[1] ] = $_[2]; }; } else { return sub { $reader->( $_[0] )->[ $_[1] ] = $_[2]; }; } } sub generate_accessor { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { my $instance = shift; if ( @_ == 1 ) { # reader return $reader->($instance)->[ $_[0] ]; } elsif ( @_ == 2 ) { # writer $container_type_constraint->assert_valid( $_[1] ); $reader->($instance)->[ $_[0] ] = $_[1]; } else { confess "One or two arguments expected, not " . @_; } }; } else { return sub { my $instance = shift; if ( @_ == 1 ) { # reader return $reader->($instance)->[ $_[0] ]; } elsif ( @_ == 2 ) { # writer $reader->($instance)->[ $_[0] ] = $_[1]; return $instance; } else { confess "One or two arguments expected, not " . @_; } }; } } sub generate_clear { my($self) = @_; my $reader = $self->reader; return sub { @{ $reader->( $_[0] ) } = (); return $_[0]; }; } __PACKAGE__->meta->add_method(generate_delete => \&generate_remove); # alias sub generate_remove { my($self) = @_; my $reader = $self->reader; return sub { return splice @{ $reader->( $_[0] ) }, $_[1], 1; }; } sub generate_insert { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { my($instance, $index, $value) = @_; $container_type_constraint->assert_valid( $value ); splice @{ $reader->( $instance ) }, $index, 0, $value; return $instance; }; } else { return sub { my($instance, $index, $value) = @_; splice @{ $reader->( $instance ) }, $index, 0, $value; return $instance; }; } } sub generate_splice { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { my ( $self, $i, $j, @elems ) = @_; foreach my $value(@elems){ $container_type_constraint->assert_valid($value); } return splice @{ $reader->($self) }, $i, $j, @elems; }; } else { return sub { my ( $self, $i, $j, @elems ) = @_; return splice @{ $reader->($self) }, $i, $j, @elems; }; } } sub generate_for_each { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; foreach my $element(@{ $reader->instance($instance) }){ $block->($element); } return $instance; }; } sub generate_for_each_pair { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; my $array_ref = $reader->($instance); for(my $i = 0; $i < @{$array_ref}; $i += 2){ $block->($array_ref->[$i], $array_ref->[$i + 1]); } return $instance; }; } no Mouse; -__PACKAGE__->meta->make_immutable(strict_constructor => 1); +__PACKAGE__->meta->make_immutable(); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::ArrayRef - Provides methods for ArrayRef =head1 DESCRIPTION This class provides method generators for the C<Array> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Array> for details. =head1 METHOD GENERATORS =over 4 =item generate_count =item generate_is_empty =item generate_first =item generate_any =item generate_apply =item generate_map =item generate_reduce =item generate_sort =item generate_sort_in_place =item generate_sort_by =item generate_sort_in_place_by =item generate_shuffle =item generate_grep =item generate_uniq =item generate_elements =item generate_join =item generate_push =item generate_pop =item generate_unshift =item generate_shift =item generate_fetch =item generate_get The same as C<generate_fetch> =item generate_store =item generate_set The same as C<generate_store> =item generate_accessor =item generate_clear =item generate_remove =item generate_delete The same as C<generate_remove>. Note that it is different from C<CORE::delete>. =item generate_insert =item generate_splice =item generate_for_each =item generate_for_each_pair =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/lib/MouseX/NativeTraits/MethodProvider/Bool.pm b/lib/MouseX/NativeTraits/MethodProvider/Bool.pm index a9e5e70..0b4d3b2 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/Bool.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/Bool.pm @@ -1,64 +1,64 @@ package MouseX::NativeTraits::MethodProvider::Bool; use Mouse; extends qw(MouseX::NativeTraits::MethodProvider); sub generate_set { my($self) = @_; my $writer = $self->writer; return sub { $writer->( $_[0], 1 ) }; } sub generate_unset { my($self) = @_; my $writer = $self->writer; return sub { $writer->( $_[0], 0 ) }; } sub generate_toggle { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { $writer->( $_[0], !$reader->( $_[0] ) ) }; } sub generate_not { my($self) = @_; my $reader = $self->reader; return sub { !$reader->( $_[0] ) }; } no Mouse; -__PACKAGE__->meta->make_immutable(strict_constructor => 1); +__PACKAGE__->meta->make_immutable(); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::Bool - Provides methods for Bool =head1 DESCRIPTION This class provides method generators for the C<Bool> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Bool> for details. =head1 METHOD GENERATORS =over 4 =item generate_set =item generate_unset =item generate_toggle =item generate_not =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/lib/MouseX/NativeTraits/MethodProvider/CodeRef.pm b/lib/MouseX/NativeTraits/MethodProvider/CodeRef.pm index 68e8911..33b06a7 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/CodeRef.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/CodeRef.pm @@ -1,54 +1,54 @@ package MouseX::NativeTraits::MethodProvider::CodeRef; use Mouse; extends qw(MouseX::NativeTraits::MethodProvider); sub generate_execute { my($self) = @_; my $reader = $self->reader; return sub { my ($instance, @args) = @_; $reader->($instance)->(@args); }; } sub generate_execute_method { my($self) = @_; my $reader = $self->reader; return sub { my ($instance, @args) = @_; $reader->($instance)->($instance, @args); }; } no Mouse; -__PACKAGE__->meta->make_immutable(strict_constructor => 1); +__PACKAGE__->meta->make_immutable(); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::CodeRef - Provides methods for CodeRef =head1 DESCRIPTION This class provides method generators for the C<Code> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Code> for details. =head1 METHOD GENERATORS =over 4 =item generate_execute =item generate_execute_method =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/lib/MouseX/NativeTraits/MethodProvider/Counter.pm b/lib/MouseX/NativeTraits/MethodProvider/Counter.pm index 429c306..54449cc 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/Counter.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/Counter.pm @@ -1,113 +1,113 @@ package MouseX::NativeTraits::MethodProvider::Counter; use Mouse; extends qw(MouseX::NativeTraits::MethodProvider); sub generate_reset { my($self) = @_; my $attr = $self->attr; my $writer = $self->writer; my $builder; my $default; if($attr->has_builder){ $builder = $attr->builder; } else { $default = $attr->default; if(ref $default){ $builder = $default; } } if(ref $builder){ return sub { my($instance) = @_; $writer->($instance, $instance->$builder()); }; } else{ return sub { my($instance) = @_; $writer->($instance, $default); }; } } sub generate_set{ my($self) = @_; my $writer = $self->writer; return sub { $writer->( $_[0], $_[1] ) }; } sub generate_inc { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; my $constraint = $self->attr->type_constraint; return sub { my($instance, $value) = @_; if(@_ > 1){ $constraint->assert_valid($value); } else{ $value = 1; } $writer->($instance, $reader->($instance) + $value); }; } sub generate_dec { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; my $constraint = $self->attr->type_constraint; return sub { my($instance, $value) = @_; if(@_ > 1){ $constraint->assert_valid($value); } else{ $value = 1; } $writer->($instance, $reader->($instance) - $value); }; } no Mouse; -__PACKAGE__->meta->make_immutable(strict_constructor => 1); +__PACKAGE__->meta->make_immutable(); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::Counter - Provides methods for Counter =head1 DESCRIPTION This class provides method generators for the C<Counter> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Counter> for details. =head1 METHOD GENERATORS =over 4 =item generate_reset =item generate_set =item generate_inc =item generate_dec =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm b/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm index 22406c3..5cb3d2d 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm @@ -1,312 +1,312 @@ package MouseX::NativeTraits::MethodProvider::HashRef; use Mouse; extends qw(MouseX::NativeTraits::MethodProvider); sub generate_keys { my($self) = @_; my $reader = $self->reader; return sub { return keys %{ $reader->( $_[0] ) } }; } sub generate_sorted_keys { my($self) = @_; my $reader = $self->reader; return sub { return sort keys %{ $reader->( $_[0] ) } }; } sub generate_values { my($self) = @_; my $reader = $self->reader; return sub { return values %{ $reader->( $_[0] ) } }; } sub generate_kv { my($self) = @_; my $reader = $self->reader; return sub { my($instance) = @_; my $hash_ref = $reader->( $instance ); return map { [ $_ => $hash_ref->{$_} ] } keys %{ $hash_ref }; }; } sub generate_elements { my($self) = @_; my $reader = $self->reader; return sub { return %{ $reader->( $_[0] ) }; }; } sub generate_count { my($self) = @_; my $reader = $self->reader; return sub { return scalar keys %{ $reader->( $_[0] ) }; }; } sub generate_is_empty { my($self) = @_; my $reader = $self->reader; return sub { return scalar(keys %{ $reader->( $_[0] ) }) == 0; }; } sub generate_exists { my($self) = @_; my $reader = $self->reader; return sub { return exists $reader->( $_[0] )->{ $_[1] } }; } sub generate_defined { my($self) = @_; my $reader = $self->reader; return sub { return defined $reader->( $_[0] )->{ $_[1] } }; } __PACKAGE__->meta->add_method(generate_get => \&generate_fetch); sub generate_fetch { my($self) = @_; my $reader = $self->reader; return sub { if ( @_ == 2 ) { return $reader->( $_[0] )->{ $_[1] }; } else { my ( $self, @keys ) = @_; return @{ $reader->($self) }{@keys}; } }; } __PACKAGE__->meta->add_method(generate_set => \&generate_store); sub generate_store { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ($constraint->__is_parameterized){ my $container_type_constraint = $constraint->type_parameter; return sub { my ( $self, @kv ) = @_; my ( @keys, @values ); while (my($key, $value) = splice @kv, 0, 2 ) { $container_type_constraint->assert_valid($value); push @keys, $key; push @values, $value; } if ( @values > 1 ) { @{ $reader->($self) }{@keys} = @values; } else { $reader->($self)->{ $keys[0] } = $values[0]; } }; } else { return sub { my ( $instance, @kv ) = @_; my $hash_ref = $reader->($instance); while (my($key, $value) = splice @kv, 0, 2) { $hash_ref->{$key} = $value; } }; } } sub generate_accessor { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ($constraint->__is_parameterized){ my $container_type_constraint = $constraint->type_parameter; return sub { my $self = shift; if ( @_ == 1 ) { # reader return $reader->($self)->{ $_[0] }; } elsif ( @_ == 2 ) { # writer $container_type_constraint->assert_valid( $_[1] ); $reader->($self)->{ $_[0] } = $_[1]; } else { confess "One or two arguments expected, not " . @_; } }; } else { return sub { my $self = shift; if ( @_ == 1 ) { # reader return $reader->($self)->{ $_[0] }; } elsif ( @_ == 2 ) { # writer $reader->($self)->{ $_[0] } = $_[1]; } else { confess "One or two arguments expected, not " . @_; } }; } } sub generate_clear { my($self) = @_; my $reader = $self->reader; return sub { %{ $reader->( $_[0] ) } = () }; } sub generate_delete { my($self) = @_; my $reader = $self->reader; return sub { my $instance = shift; return delete @{ $reader->($instance) }{@_}; }; } sub generate_for_each_key { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $block) = @_; foreach my $key(keys %{$reader->($instance)}){ $block->($key); } return $instance; }; } sub generate_for_each_value { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $block) = @_; foreach my $value(values %{$reader->($instance)}){ $block->($value); } return $instance; }; } sub generate_for_each_pair { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $block) = @_; my $hash_ref = $reader->($instance); foreach my $key(keys %{$hash_ref}){ $block->($key, $hash_ref->{$key}); } return $instance; }; } no Mouse; -__PACKAGE__->meta->make_immutable(strict_constructor => 1); +__PACKAGE__->meta->make_immutable(); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::HashRef - Provides methods for HashRef =head1 DESCRIPTION This class provides method generators for the C<Hash> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Hash> for details. =head1 METHOD GENERATORS =over 4 =item generate_keys =item generate_sorted_keys =item generate_values =item generate_kv =item generate_elements =item generate_count =item generate_is_empty =item generate_exists =item generate_defined =item generate_fetch =item generate_get The same as C<generate_fetch>. =item generate_store =item generate_set The same as C<generate_store>. =item generate_accessor =item generate_clear =item generate_delete =item generate_for_each_key =item generate_for_each_value =item generate_for_each_pair =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/lib/MouseX/NativeTraits/MethodProvider/Num.pm b/lib/MouseX/NativeTraits/MethodProvider/Num.pm index 06d0a64..2c16e88 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/Num.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/Num.pm @@ -1,120 +1,120 @@ package MouseX::NativeTraits::MethodProvider::Num; use Mouse; extends qw(MouseX::NativeTraits::MethodProvider); sub generate_add { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; my $constraint = $self->attr->type_constraint; return sub { my($instance, $value) = @_; $constraint->assert_valid($value); $writer->( $instance, $reader->( $instance ) + $value ); }; } sub generate_sub { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; my $constraint = $self->attr->type_constraint; return sub { my($instance, $value) = @_; $constraint->assert_valid($value); $writer->( $instance, $reader->( $instance ) - $value ); }; } sub generate_mul { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; my $constraint = $self->attr->type_constraint; return sub { my($instance, $value) = @_; $constraint->assert_valid($value); $writer->( $instance, $reader->( $instance ) * $value ); }; } sub generate_div { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; my $constraint = $self->attr->type_constraint; return sub { my($instance, $value) = @_; $constraint->assert_valid($value); $writer->( $instance, $reader->( $instance ) / $value ); }; } sub generate_mod { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; my $constraint = $self->attr->type_constraint; return sub { my($instance, $value) = @_; $constraint->assert_valid($value); $writer->( $instance, $reader->( $instance ) % $value ); }; } sub generate_abs { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my($instance) = @_; $writer->( $instance, abs( $reader->( $instance ) ) ); }; } no Mouse; -__PACKAGE__->meta->make_immutable(strict_constructor => 1); +__PACKAGE__->meta->make_immutable(); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::Num - Provides methods for Num =head1 DESCRIPTION This class provides method generators for the C<Number> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Number> for details. =head1 METHOD GENERATORS =over 4 =item generate_add =item generate_sub =item generate_mul =item generate_div =item generate_mod =item generate_abs =back =head1 SEE ALSO L<MouseX::NativeTraits>. =cut diff --git a/lib/MouseX/NativeTraits/MethodProvider/Str.pm b/lib/MouseX/NativeTraits/MethodProvider/Str.pm index db2e8df..9dc1d46 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/Str.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/Str.pm @@ -1,206 +1,206 @@ package MouseX::NativeTraits::MethodProvider::Str; use Mouse; extends qw(MouseX::NativeTraits::MethodProvider); sub generate_append { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my($instance, $value) = @_; $writer->( $instance, $reader->( $instance ) . $value ); }; } sub generate_prepend { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my($instance, $value) = @_; $writer->( $instance, $value . $reader->( $instance ) ); }; } sub generate_replace { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my( $instance, $regexp, $replacement ) = @_; my $v = $reader->( $instance ); if ( ref($replacement) eq 'CODE' ) { $v =~ s/$regexp/$replacement->()/e; } else { $v =~ s/$regexp/$replacement/; } $writer->( $instance, $v ); }; } sub generate_replace_globally { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my( $instance, $regexp, $replacement ) = @_; my $v = $reader->( $instance ); if ( ref($replacement) eq 'CODE' ) { $v =~ s/$regexp/$replacement->()/eg; } else { $v =~ s/$regexp/$replacement/g; } $writer->( $instance, $v ); }; } sub generate_match { my($self) = @_; my $reader = $self->reader; return sub { $reader->( $_[0] ) =~ $_[1] }; } sub generate_chop { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my($instance) = @_; my $v = $reader->( $instance ); chop($v); $writer->( $instance, $v ); }; } sub generate_chomp { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my($instance) = @_; my $v = $reader->( $instance ); chomp($v); $writer->( $instance, $v ); }; } sub generate_inc { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my($instance) = @_; my $v = $reader->( $instance ); $v++; $writer->( $instance, $v ); }; } sub generate_clear { my($self) = @_; my $writer = $self->writer; return sub { my($instance) = @_; $writer->( $instance, '' ); }; } sub generate_length { my($self) = @_; my $reader = $self->reader; return sub { return length( $reader->($_[0]) ); }; } sub generate_substr { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my($instance, $offset, $length, $replacement) = @_; my $v = $reader->($instance); $offset = 0 if !defined $offset; $length = length($v) if !defined $length; my $ret; if ( defined $replacement ) { $ret = substr( $v, $offset, $length, $replacement ); $writer->( $self, $v ); } else { $ret = substr( $v, $offset, $length ); } return $ret; }; } no Mouse; -__PACKAGE__->meta->make_immutable(strict_constructor => 1); +__PACKAGE__->meta->make_immutable(); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::Str - Provides methods for Str =head1 DESCRIPTION This class provides method generators for the C<String> trait. See L<Mouse::Meta::Attribute::Custom::Trait::String> for details. =head1 METHOD GENERATORS =over 4 =item generate_append =item generate_prepend =item generate_replace =item generate_replace_globally =item generate_match =item generate_chop =item generate_chomp =item generate_inc =item generate_clear =item generate_length =item generate_substr =back =head1 SEE ALSO L<MouseX::NativeTraits>. =cut
gfx/p5-MouseX-NativeTraits
0a30c010e3267c03079a774e05ae7f8c0cc988f3
Fix typos
diff --git a/lib/MouseX/NativeTraits/ArrayRef.pm b/lib/MouseX/NativeTraits/ArrayRef.pm index 5cc7d7a..7af5ecd 100644 --- a/lib/MouseX/NativeTraits/ArrayRef.pm +++ b/lib/MouseX/NativeTraits/ArrayRef.pm @@ -1,266 +1,266 @@ package MouseX::NativeTraits::ArrayRef; use Mouse::Role; with 'MouseX::NativeTraits'; sub method_provider_class { return 'MouseX::NativeTraits::MethodProvider::ArrayRef'; } sub helper_type { return 'ArrayRef'; } no Mouse::Role; 1; __END__ =head1 NAME MouseX::NativeTraits::ArrayRef - Helper trait for ArrayRef attributes =head1 SYNOPSIS package Stuff; use Mouse; has 'options' => ( traits => ['Array'], is => 'ro', isa => 'ArrayRef[Str]', default => sub { [] }, handles => { all_options => 'elements', add_option => 'push', map_options => 'map', filter_options => 'grep', find_option => 'first', get_option => 'get', join_options => 'join', count_options => 'count', has_options => 'count', has_no_options => 'is_empty', sorted_options => 'sort', }, ); =head1 DESCRIPTION This module provides an Array attribute which provides a number of array operations. =head1 PROVIDED METHODS These methods are implemented in L<MouseX::NativeTraits::MethodProvider::ArrayRef>. =over 4 =item B<count> Returns the number of elements in the array. $stuff = Stuff->new; $stuff->options(["foo", "bar", "baz", "boo"]); my $count = $stuff->count_options; print "$count\n"; # prints 4 =item B<is_empty> Returns a boolean value that is true when the array has no elements. $stuff->has_no_options ? die "No options!\n" : print "Good boy.\n"; =item B<elements> Returns all of the elements of the array. my @option = $stuff->all_options; print "@options\n"; # prints "foo bar baz boo" =item B<get($index)> Returns an element of the array by its index. You can also use negative index numbers, just as with Perl's core array handling. my $option = $stuff->get_option(1); print "$option\n"; # prints "bar" =item B<pop> =item B<push($value1, $value2, value3 ...)> =item B<shift> =item B<unshift($value1, $value2, value3 ...)> =item B<splice($offset, $length, @values)> These methods are all equivalent to the Perl core functions of the same name. =item B<first( sub { ... } )> This method returns the first item matching item in the array, just like L<List::Util>'s C<first> function. The matching is done with a subroutine reference you pass to this method. The reference will be called against each element in the array until one matches or all elements have been checked. my $found = $stuff->find_option( sub { /^b/ } ); print "$found\n"; # prints "bar" =item B<any( sub { ... } )> This method returns true if any item in the array meets the criterion given through the subroutine, otherwise returns false. It sets $_ for each item in the array. =item B<grep( sub { ... } )> This method returns every element matching a given criteria, just like Perl's core C<grep> function. This method requires a subroutine which implements the matching logic. my @found = $stuff->filter_options( sub { /^b/ } ); print "@found\n"; # prints "bar baz boo" =item B<map( sub { ... } )> This method transforms every element in the array and returns a new array, just like Perl's core C<map> function. This method requires a subroutine which implements the transformation. my @mod_options = $stuff->map_options( sub { $_ . "-tag" } ); print "@mod_options\n"; # prints "foo-tag bar-tag baz-tag boo-tag" =item B<apply( sub { ... } )> -This method also transform evely element in the array and returns a new array, +This method also transform every element in the array and returns a new array, just like L<List::MoreUtils>'s C<apply> function.his is similar to C<map>, -but does not modifiy the element of the array. +but does not modify the element of the array. =item B<reduce( sub { ... } )> This method condenses an array into a single value, by passing a function the value so far and the next value in the array, just like L<List::Util>'s C<reduce> function. The reducing is done with a subroutine reference you pass to this method. my $found = $stuff->reduce_options( sub { $_[0] . $_[1] } ); print "$found\n"; # prints "foobarbazboo" =item B<sort( \&compare )> Returns the array in sorted order. You can provide an optional subroutine reference to sort with (as you can with Perl's core C<sort> function). However, instead of using C<$a> and C<$b>, you will need to use C<$_[0]> and C<$_[1]> instead. # ascending ASCIIbetical my @sorted = $stuff->sort_options(); # Descending alphabetical order my @sorted_options = $stuff->sort_options( sub { lc $_[1] cmp lc $_[0] } ); print "@sorted_options\n"; # prints "foo boo baz bar" =item B<sort_in_place( \&compare )> Sorts the array I<in place>, modifying the value of the attribute. You can provide an optional subroutine reference to sort with (as you can with Perl's core C<sort> function). However, instead of using C<$a> and C<$b>, you will need to use C<$_[0]> and C<$_[1]> instead. =item B<sort_by( \&by, \&compare )> Returns the array in sorted order, applying I<\&by> function to each item. This is equivalent to C<< sort(sub{ by($_[0]) cmp by($_[1]) }) >>, but implemented effectively. Currently (as of Moose 0.98) this is a Mouse specific method. =item B<sort_in_place_by( \&by, \&compare )> Sorts the array, applying I<\&by> function to each item, modifying the value of the attribute. This is equivalent to C<< sort_in_place(sub{ by($_[0]) cmp by($_[1]) }) >>, but implemented effectively. Currently (as of Moose 0.98) this is a Mouse specific method. =item B<shuffle> Returns the array, with indices in random order, like C<shuffle> from L<List::Util>. =item B<uniq> Returns the array, with all duplicate elements removed, like C<uniq> from L<List::MoreUtils>. =item B<join($str)> Joins every element of the array using the separator given as argument, just like Perl's core C<join> function. my $joined = $stuff->join_options( ':' ); print "$joined\n"; # prints "foo:bar:baz:boo" =item B<set($index, $value)> Given an index and a value, sets the specified array element's value. =item B<delete($index)> Removes the element at the given index from the array. =item B<insert($index, $value)> Inserts a new element into the array at the given index. =item B<clear> Empties the entire array, like C<@array = ()>. =item B<accessor> This method provides a get/set accessor for the array, based on array indexes. If passed one argument, it returns the value at the specified index. If passed two arguments, it sets the value of the specified index. =item B<for_each(sub{ ... })> This method calls the given subroutine with each element of the array, like Perl's core C<foreach> statement. Currently (as of Moose 0.98) this is a Mouse specific method. =item B<for_each_pair( sub{ ... } )> This method calls the given subroutine with each two element of the array, as if the array is a list of pairs. Currently (as of Moose 0.98) this is a Mouse specific method. =back =head1 METHODS =over 4 =item B<meta> =item B<method_provider_class> =item B<helper_type> =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut
gfx/p5-MouseX-NativeTraits
f4f5782ca49c24b16107d131cbbf095cd8c3c05b
Display Mouse version
diff --git a/t/00_load.t b/t/00_load.t index 7d17125..35bc8a6 100644 --- a/t/00_load.t +++ b/t/00_load.t @@ -1,20 +1,24 @@ #!perl -w use strict; use Test::More; require_ok 'MouseX::NativeTraits'; require_ok 'MouseX::NativeTraits::MethodProvider'; foreach my $type(qw(ArrayRef HashRef CodeRef Str Num Bool Counter)){ my $trait = 'MouseX::NativeTraits::' . $type; require_ok $trait; require_ok $trait->method_provider_class; } diag "Testing MouseX::NativeTraits/$MouseX::NativeTraits::VERSION"; +diag "Dependencies:"; + +require Mouse; +diag " Mouse/$Mouse::VERSION"; done_testing;
gfx/p5-MouseX-NativeTraits
9d3b86ac6fa2e322679060e15b9022c2fc4fed24
Remove extra $VERSION
diff --git a/lib/Mouse/Meta/Attribute/Custom/Trait/Array.pm b/lib/Mouse/Meta/Attribute/Custom/Trait/Array.pm index 4389a7d..463ee58 100644 --- a/lib/Mouse/Meta/Attribute/Custom/Trait/Array.pm +++ b/lib/Mouse/Meta/Attribute/Custom/Trait/Array.pm @@ -1,27 +1,25 @@ package Mouse::Meta::Attribute::Custom::Trait::Array; use strict; -our $VERSION = '0.001_02'; - sub register_implementation { 'MouseX::NativeTraits::ArrayRef' } 1; __END__ =head1 NAME Mouse::Meta::Attribute::Custom::Trait::Array - Shortcut for ArrayRef trait =head1 DESCRIPTION This module is an alias to MouseX::NativeTraits::ArrayRef, which allows you to refer the trait as C<Array>. =head1 SEE ALSO L<MouseX::NativeTraits::ArrayRef> L<MouseX::NativeTraits> =cut diff --git a/lib/Mouse/Meta/Attribute/Custom/Trait/Bool.pm b/lib/Mouse/Meta/Attribute/Custom/Trait/Bool.pm index 4200d18..5425a77 100644 --- a/lib/Mouse/Meta/Attribute/Custom/Trait/Bool.pm +++ b/lib/Mouse/Meta/Attribute/Custom/Trait/Bool.pm @@ -1,27 +1,25 @@ package Mouse::Meta::Attribute::Custom::Trait::Bool; use strict; -our $VERSION = '0.001_02'; - sub register_implementation { 'MouseX::NativeTraits::Bool' } 1; __END__ =head1 NAME Mouse::Meta::Attribute::Custom::Trait::Bool - Shortcut for Bool trait =head1 DESCRIPTION This module is an alias to MouseX::NativeTraits::Bool, which allows you to refer the trait as C<Bool>. =head1 SEE ALSO L<MouseX::NativeTraits::BoolRef> L<MouseX::NativeTraits> =cut diff --git a/lib/Mouse/Meta/Attribute/Custom/Trait/Code.pm b/lib/Mouse/Meta/Attribute/Custom/Trait/Code.pm index 9d58d17..062cd33 100644 --- a/lib/Mouse/Meta/Attribute/Custom/Trait/Code.pm +++ b/lib/Mouse/Meta/Attribute/Custom/Trait/Code.pm @@ -1,27 +1,25 @@ package Mouse::Meta::Attribute::Custom::Trait::Code; use strict; -our $VERSION = '0.001_02'; - sub register_implementation { 'MouseX::NativeTraits::CodeRef' } 1; __END__ =head1 NAME Mouse::Meta::Attribute::Custom::Trait::Code - Shortcut for CodeRef trait =head1 DESCRIPTION This module is an alias to MouseX::NativeTraits::CodeRef, which allows you to refer the trait as C<Code>. =head1 SEE ALSO L<MouseX::NativeTraits::CodeRef> L<MouseX::NativeTraits> =cut diff --git a/lib/Mouse/Meta/Attribute/Custom/Trait/Counter.pm b/lib/Mouse/Meta/Attribute/Custom/Trait/Counter.pm index b95494a..29d9f1a 100644 --- a/lib/Mouse/Meta/Attribute/Custom/Trait/Counter.pm +++ b/lib/Mouse/Meta/Attribute/Custom/Trait/Counter.pm @@ -1,27 +1,25 @@ package Mouse::Meta::Attribute::Custom::Trait::Counter; use strict; -our $VERSION = '0.001_02'; - sub register_implementation { 'MouseX::NativeTraits::Counter' } 1; __END__ =head1 NAME Mouse::Meta::Attribute::Custom::Trait::Counter - Shortcut for Counter trait =head1 DESCRIPTION This module is an alias to MouseX::NativeTraits::Counter, which allows you to refer the trait as C<Counter>. =head1 SEE ALSO L<MouseX::NativeTraits::Counter> L<MouseX::NativeTraits> =cut diff --git a/lib/Mouse/Meta/Attribute/Custom/Trait/Hash.pm b/lib/Mouse/Meta/Attribute/Custom/Trait/Hash.pm index eb5bf4f..17af620 100644 --- a/lib/Mouse/Meta/Attribute/Custom/Trait/Hash.pm +++ b/lib/Mouse/Meta/Attribute/Custom/Trait/Hash.pm @@ -1,27 +1,25 @@ package Mouse::Meta::Attribute::Custom::Trait::Hash; use strict; -our $VERSION = '0.001_02'; - sub register_implementation { 'MouseX::NativeTraits::HashRef' } 1; __END__ =head1 NAME Mouse::Meta::Attribute::Custom::Trait::Hash - Shortcut for HashRef trait =head1 DESCRIPTION This module is an alias to MouseX::NativeTraits::HashRef, which allows you to refer the trait as C<Hash>. =head1 SEE ALSO L<MouseX::NativeTraits::HashRef> L<MouseX::NativeTraits> =cut diff --git a/lib/Mouse/Meta/Attribute/Custom/Trait/Number.pm b/lib/Mouse/Meta/Attribute/Custom/Trait/Number.pm index a9f7d97..2731019 100644 --- a/lib/Mouse/Meta/Attribute/Custom/Trait/Number.pm +++ b/lib/Mouse/Meta/Attribute/Custom/Trait/Number.pm @@ -1,27 +1,25 @@ package Mouse::Meta::Attribute::Custom::Trait::Number; use strict; -our $VERSION = '0.001_02'; - sub register_implementation { 'MouseX::NativeTraits::Num' } 1; __END__ =head1 NAME Mouse::Meta::Attribute::Custom::Trait::Number - Shortcut for Number trait =head1 DESCRIPTION This module is an alias to MouseX::NativeTraits::Number, which allows you to refer the trait as C<Number>. =head1 SEE ALSO L<MouseX::NativeTraits::Number> L<MouseX::NativeTraits> =cut diff --git a/lib/Mouse/Meta/Attribute/Custom/Trait/String.pm b/lib/Mouse/Meta/Attribute/Custom/Trait/String.pm index 7c99918..933ab9b 100644 --- a/lib/Mouse/Meta/Attribute/Custom/Trait/String.pm +++ b/lib/Mouse/Meta/Attribute/Custom/Trait/String.pm @@ -1,27 +1,25 @@ package Mouse::Meta::Attribute::Custom::Trait::String; use strict; -our $VERSION = '0.001_02'; - sub register_implementation { 'MouseX::NativeTraits::Str' } 1; __END__ =head1 NAME Mouse::Meta::Attribute::Custom::Trait::String - Shortcut for Str trait =head1 DESCRIPTION This module is an alias to MouseX::NativeTraits::Str, which allows you to refer the trait as C<String>. =head1 SEE ALSO L<MouseX::NativeTraits::Str> L<MouseX::NativeTraits> =cut
gfx/p5-MouseX-NativeTraits
98b9023547dbdf95723fca020d3f9992a1d6ff13
Add tests for MouseX::NativeTraits specific methods
diff --git a/t/03_extra.t b/t/03_extra.t new file mode 100644 index 0000000..b2b7717 --- /dev/null +++ b/t/03_extra.t @@ -0,0 +1,44 @@ +#!perl -w + +use strict; +use Test::More; + +{ + package MyClass; + use Mouse; + + has list => ( + is => 'rw', + isa => 'ArrayRef', + + traits => ['Array'], + + handles => { + any => 'any', + sort_by => 'sort_by', + sort_in_place_by => 'sort_in_place_by', + apply => 'apply', + map => 'map', + }, + default => sub{ [] }, + ); +} + +my $o = MyClass->new(list => [ {value => 3}, {value => 10}, { value => 0 } ]); + +ok $o->any(sub{ $_->{value} == 0 }), 'any'; + +is join(' ', map{ $_->{value} } $o->sort_by(sub{ $_->{value} }, sub{ $_[0] <=> $_[1] })), + '0 3 10', 'sort_by'; + +$o->sort_in_place_by(sub{ $_->{value} }, sub{ $_[0] <=> $_[1] }); + +is join(' ', $o->map(sub{ $_->{value} })), + '0 3 10', 'sort_in_place_by'; +is join(' ', $o->apply(sub{ $_ = $_->{value} })), + '0 3 10', 'apply'; + +is join(' ', $o->map(sub{ $_->{value} })), + '0 3 10', 'apply does not affect the original value'; + +done_testing;
gfx/p5-MouseX-NativeTraits
a4668942d99ddaa60d1b70849502194ac2bb4db6
Add documents for map() and apply()
diff --git a/lib/MouseX/NativeTraits/ArrayRef.pm b/lib/MouseX/NativeTraits/ArrayRef.pm index d30af0f..5cc7d7a 100644 --- a/lib/MouseX/NativeTraits/ArrayRef.pm +++ b/lib/MouseX/NativeTraits/ArrayRef.pm @@ -1,254 +1,266 @@ package MouseX::NativeTraits::ArrayRef; use Mouse::Role; with 'MouseX::NativeTraits'; sub method_provider_class { return 'MouseX::NativeTraits::MethodProvider::ArrayRef'; } sub helper_type { return 'ArrayRef'; } no Mouse::Role; 1; __END__ =head1 NAME MouseX::NativeTraits::ArrayRef - Helper trait for ArrayRef attributes =head1 SYNOPSIS package Stuff; use Mouse; has 'options' => ( traits => ['Array'], is => 'ro', isa => 'ArrayRef[Str]', default => sub { [] }, handles => { all_options => 'elements', add_option => 'push', map_options => 'map', filter_options => 'grep', find_option => 'first', get_option => 'get', join_options => 'join', count_options => 'count', has_options => 'count', has_no_options => 'is_empty', sorted_options => 'sort', }, ); =head1 DESCRIPTION This module provides an Array attribute which provides a number of array operations. =head1 PROVIDED METHODS These methods are implemented in L<MouseX::NativeTraits::MethodProvider::ArrayRef>. =over 4 =item B<count> Returns the number of elements in the array. $stuff = Stuff->new; $stuff->options(["foo", "bar", "baz", "boo"]); my $count = $stuff->count_options; print "$count\n"; # prints 4 =item B<is_empty> Returns a boolean value that is true when the array has no elements. $stuff->has_no_options ? die "No options!\n" : print "Good boy.\n"; =item B<elements> Returns all of the elements of the array. my @option = $stuff->all_options; print "@options\n"; # prints "foo bar baz boo" =item B<get($index)> Returns an element of the array by its index. You can also use negative index numbers, just as with Perl's core array handling. my $option = $stuff->get_option(1); print "$option\n"; # prints "bar" =item B<pop> =item B<push($value1, $value2, value3 ...)> =item B<shift> =item B<unshift($value1, $value2, value3 ...)> =item B<splice($offset, $length, @values)> These methods are all equivalent to the Perl core functions of the same name. =item B<first( sub { ... } )> This method returns the first item matching item in the array, just like L<List::Util>'s C<first> function. The matching is done with a subroutine reference you pass to this method. The reference will be called against each element in the array until one matches or all elements have been checked. my $found = $stuff->find_option( sub { /^b/ } ); print "$found\n"; # prints "bar" +=item B<any( sub { ... } )> + +This method returns true if any item in the array meets the criterion given +through the subroutine, otherwise returns false. It sets $_ for each item +in the array. + =item B<grep( sub { ... } )> This method returns every element matching a given criteria, just like Perl's core C<grep> function. This method requires a subroutine which implements the matching logic. my @found = $stuff->filter_options( sub { /^b/ } ); print "@found\n"; # prints "bar baz boo" =item B<map( sub { ... } )> This method transforms every element in the array and returns a new array, just like Perl's core C<map> function. This method requires a subroutine which implements the transformation. my @mod_options = $stuff->map_options( sub { $_ . "-tag" } ); print "@mod_options\n"; # prints "foo-tag bar-tag baz-tag boo-tag" +=item B<apply( sub { ... } )> + +This method also transform evely element in the array and returns a new array, +just like L<List::MoreUtils>'s C<apply> function.his is similar to C<map>, +but does not modifiy the element of the array. + =item B<reduce( sub { ... } )> This method condenses an array into a single value, by passing a function the value so far and the next value in the array, just like L<List::Util>'s C<reduce> function. The reducing is done with a subroutine reference you pass to this method. my $found = $stuff->reduce_options( sub { $_[0] . $_[1] } ); print "$found\n"; # prints "foobarbazboo" =item B<sort( \&compare )> Returns the array in sorted order. You can provide an optional subroutine reference to sort with (as you can with Perl's core C<sort> function). However, instead of using C<$a> and C<$b>, you will need to use C<$_[0]> and C<$_[1]> instead. # ascending ASCIIbetical my @sorted = $stuff->sort_options(); # Descending alphabetical order my @sorted_options = $stuff->sort_options( sub { lc $_[1] cmp lc $_[0] } ); print "@sorted_options\n"; # prints "foo boo baz bar" =item B<sort_in_place( \&compare )> Sorts the array I<in place>, modifying the value of the attribute. You can provide an optional subroutine reference to sort with (as you can with Perl's core C<sort> function). However, instead of using C<$a> and C<$b>, you will need to use C<$_[0]> and C<$_[1]> instead. =item B<sort_by( \&by, \&compare )> Returns the array in sorted order, applying I<\&by> function to each item. This is equivalent to C<< sort(sub{ by($_[0]) cmp by($_[1]) }) >>, but implemented effectively. Currently (as of Moose 0.98) this is a Mouse specific method. =item B<sort_in_place_by( \&by, \&compare )> Sorts the array, applying I<\&by> function to each item, modifying the value of the attribute. This is equivalent to C<< sort_in_place(sub{ by($_[0]) cmp by($_[1]) }) >>, but implemented effectively. Currently (as of Moose 0.98) this is a Mouse specific method. =item B<shuffle> Returns the array, with indices in random order, like C<shuffle> from L<List::Util>. =item B<uniq> Returns the array, with all duplicate elements removed, like C<uniq> from L<List::MoreUtils>. =item B<join($str)> Joins every element of the array using the separator given as argument, just like Perl's core C<join> function. my $joined = $stuff->join_options( ':' ); print "$joined\n"; # prints "foo:bar:baz:boo" =item B<set($index, $value)> Given an index and a value, sets the specified array element's value. =item B<delete($index)> Removes the element at the given index from the array. =item B<insert($index, $value)> Inserts a new element into the array at the given index. =item B<clear> Empties the entire array, like C<@array = ()>. =item B<accessor> This method provides a get/set accessor for the array, based on array indexes. If passed one argument, it returns the value at the specified index. If passed two arguments, it sets the value of the specified index. =item B<for_each(sub{ ... })> This method calls the given subroutine with each element of the array, like Perl's core C<foreach> statement. Currently (as of Moose 0.98) this is a Mouse specific method. =item B<for_each_pair( sub{ ... } )> This method calls the given subroutine with each two element of the array, as if the array is a list of pairs. Currently (as of Moose 0.98) this is a Mouse specific method. =back =head1 METHODS =over 4 =item B<meta> =item B<method_provider_class> =item B<helper_type> =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut
gfx/p5-MouseX-NativeTraits
5f6bfc59eb566a070d2cbf39d826e18e65434b17
Add any() and apply() (like List::MoreUtils's) to ArrayRef
diff --git a/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm b/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm index f3dab3a..5c668a2 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm @@ -1,520 +1,551 @@ package MouseX::NativeTraits::MethodProvider::ArrayRef; use Mouse; use List::Util; extends qw(MouseX::NativeTraits::MethodProvider); sub generate_count { my($self) = @_; my $reader = $self->reader; return sub { return scalar @{ $reader->( $_[0] ) }; }; } sub generate_is_empty { my($self) = @_; my $reader = $self->reader; return sub { return scalar(@{ $reader->( $_[0] ) }) == 0; }; } sub generate_first { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $predicate ) = @_; return List::Util::first(\&{$predicate}, @{ $reader->($instance) }); }; } +sub generate_any { + my($self) = @_; + my $reader = $self->reader; + return sub { + my ( $instance, $predicate ) = @_; + foreach (@{ $reader->($instance) }){ + if($predicate->($_)){ + return 1; + } + } + return 0; + }; +} + +sub generate_apply { + my($self) = @_; + my $reader = $self->reader; + return sub { + my ( $instance, $block ) = @_; + my @values = @{ $reader->($instance) }; + foreach (@values){ + $block->(); + } + return @values; + }; +} + sub generate_map { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; return map { $block->() } @{ $reader->($instance) }; }; } sub generate_reduce { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; our ($a, $b); return List::Util::reduce { $block->($a, $b) } @{ $reader->($instance) }; }; } sub generate_sort { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $compare ) = @_; if ($compare) { return sort { $compare->( $a, $b ) } @{ $reader->($instance) }; } else { return sort @{ $reader->($instance) }; } }; } sub generate_sort_in_place { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $compare ) = @_; my $array_ref = $reader->($instance); if($compare){ @{$array_ref} = sort { $compare->($a, $b) } @{$array_ref}; } else{ @{$array_ref} = sort @{$array_ref}; } return $instance; }; } # The sort_by algorithm comes from perlfunc/sort # See also perldoc -f sort and perldoc -q sort sub generate_sort_by { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block, $compare ) = @_; my $array_ref = $reader->($instance); my @idx; foreach (@{$array_ref}){ # intentinal use of $_ push @idx, scalar $block->($_); } # NOTE: scalar(@idx)-1 is faster than $#idx if($compare){ return @{ $array_ref }[ sort { $compare->($idx[$a], $idx[$b]) } 0 .. scalar(@idx)-1 ]; } else{ return @{ $array_ref }[ sort { $idx[$a] cmp $idx[$b] } 0 .. scalar(@idx)-1 ]; } }; } sub generate_sort_in_place_by { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block, $compare ) = @_; my $array_ref = $reader->($instance); my @idx; foreach (@{$array_ref}){ push @idx, scalar $block->($_); } if($compare){ @{ $array_ref } = @{ $array_ref }[ sort { $compare->($idx[$a], $idx[$b]) } 0 .. scalar(@idx)-1 ]; } else{ @{ $array_ref } = @{ $array_ref }[ sort { $idx[$a] cmp $idx[$b] } 0 .. scalar(@idx)-1 ]; } return $instance; }; } sub generate_shuffle { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance ) = @_; return List::Util::shuffle @{ $reader->($instance) }; }; } sub generate_grep { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $predicate ) = @_; return grep { $predicate->() } @{ $reader->($instance) }; }; } sub generate_uniq { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance ) = @_; my %seen; my $seen_undef; return grep{ (defined($_) ? ++$seen{$_} : ++$seen_undef) == 1 } @{ $reader->($instance) }; }; } sub generate_elements { my($self) = @_; my $reader = $self->reader; return sub { my ($instance) = @_; return @{ $reader->($instance) }; }; } sub generate_join { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $separator ) = @_; return join $separator, @{ $reader->($instance) }; }; } sub generate_push { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { my $instance = shift; foreach my $value(@_){ $container_type_constraint->assert_valid($value) } push @{ $reader->($instance) }, @_; return $instance; }; } else { return sub { my $instance = shift; push @{ $reader->($instance) }, @_; return $instance; }; } } sub generate_pop { my($self) = @_; my $reader = $self->reader; return sub { return pop @{ $reader->( $_[0] ) }; }; } sub generate_unshift { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { my $instance = shift; foreach my $value(@_){ $container_type_constraint->assert_valid($value) } unshift @{ $reader->($instance) }, @_; return $instance; }; } else { return sub { my $instance = shift; unshift @{ $reader->($instance) }, @_; return $instance; }; } } sub generate_shift { my($self) = @_; my $reader = $self->reader; return sub { return shift @{ $reader->( $_[0] ) }; }; } __PACKAGE__->meta->add_method(generate_get => \&generate_fetch); # alias sub generate_fetch { my($self, $handle_name) = @_; my $reader = $self->reader; return sub { return $reader->( $_[0] )->[ $_[1] ]; }; } __PACKAGE__->meta->add_method(generate_set => \&generate_store); # alias sub generate_store { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { $container_type_constraint->assert_valid( $_[2] ); $reader->( $_[0] )->[ $_[1] ] = $_[2]; }; } else { return sub { $reader->( $_[0] )->[ $_[1] ] = $_[2]; }; } } sub generate_accessor { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { my $instance = shift; if ( @_ == 1 ) { # reader return $reader->($instance)->[ $_[0] ]; } elsif ( @_ == 2 ) { # writer $container_type_constraint->assert_valid( $_[1] ); $reader->($instance)->[ $_[0] ] = $_[1]; } else { confess "One or two arguments expected, not " . @_; } }; } else { return sub { my $instance = shift; if ( @_ == 1 ) { # reader return $reader->($instance)->[ $_[0] ]; } elsif ( @_ == 2 ) { # writer $reader->($instance)->[ $_[0] ] = $_[1]; return $instance; } else { confess "One or two arguments expected, not " . @_; } }; } } sub generate_clear { my($self) = @_; my $reader = $self->reader; return sub { @{ $reader->( $_[0] ) } = (); return $_[0]; }; } __PACKAGE__->meta->add_method(generate_delete => \&generate_remove); # alias sub generate_remove { my($self) = @_; my $reader = $self->reader; return sub { return splice @{ $reader->( $_[0] ) }, $_[1], 1; }; } sub generate_insert { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { my($instance, $index, $value) = @_; $container_type_constraint->assert_valid( $value ); splice @{ $reader->( $instance ) }, $index, 0, $value; return $instance; }; } else { return sub { my($instance, $index, $value) = @_; splice @{ $reader->( $instance ) }, $index, 0, $value; return $instance; }; } } sub generate_splice { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { my ( $self, $i, $j, @elems ) = @_; foreach my $value(@elems){ $container_type_constraint->assert_valid($value); } return splice @{ $reader->($self) }, $i, $j, @elems; }; } else { return sub { my ( $self, $i, $j, @elems ) = @_; return splice @{ $reader->($self) }, $i, $j, @elems; }; } } sub generate_for_each { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; foreach my $element(@{ $reader->instance($instance) }){ $block->($element); } return $instance; }; } sub generate_for_each_pair { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; my $array_ref = $reader->($instance); for(my $i = 0; $i < @{$array_ref}; $i += 2){ $block->($array_ref->[$i], $array_ref->[$i + 1]); } return $instance; }; } no Mouse; __PACKAGE__->meta->make_immutable(strict_constructor => 1); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::ArrayRef - Provides methods for ArrayRef =head1 DESCRIPTION This class provides method generators for the C<Array> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Array> for details. =head1 METHOD GENERATORS =over 4 =item generate_count =item generate_is_empty =item generate_first +=item generate_any + +=item generate_apply + =item generate_map =item generate_reduce =item generate_sort =item generate_sort_in_place =item generate_sort_by =item generate_sort_in_place_by =item generate_shuffle =item generate_grep =item generate_uniq =item generate_elements =item generate_join =item generate_push =item generate_pop =item generate_unshift =item generate_shift =item generate_fetch =item generate_get The same as C<generate_fetch> =item generate_store =item generate_set The same as C<generate_store> =item generate_accessor =item generate_clear =item generate_remove =item generate_delete The same as C<generate_remove>. Note that it is different from C<CORE::delete>. =item generate_insert =item generate_splice =item generate_for_each =item generate_for_each_pair =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut
gfx/p5-MouseX-NativeTraits
a40b492ff7caed2fe0c39638eff468947d79005c
Checking in changes prior to tagging of version 0.001_02. Changelog diff is:
diff --git a/Changes b/Changes index 243b857..6d3e3a1 100644 --- a/Changes +++ b/Changes @@ -1,7 +1,10 @@ Revision history for Perl extension MouseX::NativeTraits +0.001_02 Mon Feb 22 17:42:50 2010 + - Improve docs + 0.001_01 Sat Feb 20 15:49:59 2010 - first dev-release 0.001 Fri Feb 19 10:45:19 2010 - original version; created by Module::Setup diff --git a/lib/Mouse/Meta/Attribute/Custom/Trait/Array.pm b/lib/Mouse/Meta/Attribute/Custom/Trait/Array.pm index bc8146b..4389a7d 100644 --- a/lib/Mouse/Meta/Attribute/Custom/Trait/Array.pm +++ b/lib/Mouse/Meta/Attribute/Custom/Trait/Array.pm @@ -1,27 +1,27 @@ package Mouse::Meta::Attribute::Custom::Trait::Array; use strict; -our $VERSION = '0.001_01'; +our $VERSION = '0.001_02'; sub register_implementation { 'MouseX::NativeTraits::ArrayRef' } 1; __END__ =head1 NAME Mouse::Meta::Attribute::Custom::Trait::Array - Shortcut for ArrayRef trait =head1 DESCRIPTION This module is an alias to MouseX::NativeTraits::ArrayRef, which allows you to refer the trait as C<Array>. =head1 SEE ALSO L<MouseX::NativeTraits::ArrayRef> L<MouseX::NativeTraits> =cut diff --git a/lib/Mouse/Meta/Attribute/Custom/Trait/Bool.pm b/lib/Mouse/Meta/Attribute/Custom/Trait/Bool.pm index cfa1e0e..4200d18 100644 --- a/lib/Mouse/Meta/Attribute/Custom/Trait/Bool.pm +++ b/lib/Mouse/Meta/Attribute/Custom/Trait/Bool.pm @@ -1,27 +1,27 @@ package Mouse::Meta::Attribute::Custom::Trait::Bool; use strict; -our $VERSION = '0.001_01'; +our $VERSION = '0.001_02'; sub register_implementation { 'MouseX::NativeTraits::Bool' } 1; __END__ =head1 NAME Mouse::Meta::Attribute::Custom::Trait::Bool - Shortcut for Bool trait =head1 DESCRIPTION This module is an alias to MouseX::NativeTraits::Bool, which allows you to refer the trait as C<Bool>. =head1 SEE ALSO L<MouseX::NativeTraits::BoolRef> L<MouseX::NativeTraits> =cut diff --git a/lib/Mouse/Meta/Attribute/Custom/Trait/Code.pm b/lib/Mouse/Meta/Attribute/Custom/Trait/Code.pm index 0fc8ff4..9d58d17 100644 --- a/lib/Mouse/Meta/Attribute/Custom/Trait/Code.pm +++ b/lib/Mouse/Meta/Attribute/Custom/Trait/Code.pm @@ -1,27 +1,27 @@ package Mouse::Meta::Attribute::Custom::Trait::Code; use strict; -our $VERSION = '0.001_01'; +our $VERSION = '0.001_02'; sub register_implementation { 'MouseX::NativeTraits::CodeRef' } 1; __END__ =head1 NAME Mouse::Meta::Attribute::Custom::Trait::Code - Shortcut for CodeRef trait =head1 DESCRIPTION This module is an alias to MouseX::NativeTraits::CodeRef, which allows you to refer the trait as C<Code>. =head1 SEE ALSO L<MouseX::NativeTraits::CodeRef> L<MouseX::NativeTraits> =cut diff --git a/lib/Mouse/Meta/Attribute/Custom/Trait/Counter.pm b/lib/Mouse/Meta/Attribute/Custom/Trait/Counter.pm index 9cede1d..b95494a 100644 --- a/lib/Mouse/Meta/Attribute/Custom/Trait/Counter.pm +++ b/lib/Mouse/Meta/Attribute/Custom/Trait/Counter.pm @@ -1,27 +1,27 @@ package Mouse::Meta::Attribute::Custom::Trait::Counter; use strict; -our $VERSION = '0.001_01'; +our $VERSION = '0.001_02'; sub register_implementation { 'MouseX::NativeTraits::Counter' } 1; __END__ =head1 NAME Mouse::Meta::Attribute::Custom::Trait::Counter - Shortcut for Counter trait =head1 DESCRIPTION This module is an alias to MouseX::NativeTraits::Counter, which allows you to refer the trait as C<Counter>. =head1 SEE ALSO L<MouseX::NativeTraits::Counter> L<MouseX::NativeTraits> =cut diff --git a/lib/Mouse/Meta/Attribute/Custom/Trait/Hash.pm b/lib/Mouse/Meta/Attribute/Custom/Trait/Hash.pm index 825867a..eb5bf4f 100644 --- a/lib/Mouse/Meta/Attribute/Custom/Trait/Hash.pm +++ b/lib/Mouse/Meta/Attribute/Custom/Trait/Hash.pm @@ -1,27 +1,27 @@ package Mouse::Meta::Attribute::Custom::Trait::Hash; use strict; -our $VERSION = '0.001_01'; +our $VERSION = '0.001_02'; sub register_implementation { 'MouseX::NativeTraits::HashRef' } 1; __END__ =head1 NAME Mouse::Meta::Attribute::Custom::Trait::Hash - Shortcut for HashRef trait =head1 DESCRIPTION This module is an alias to MouseX::NativeTraits::HashRef, which allows you to refer the trait as C<Hash>. =head1 SEE ALSO L<MouseX::NativeTraits::HashRef> L<MouseX::NativeTraits> =cut diff --git a/lib/Mouse/Meta/Attribute/Custom/Trait/Number.pm b/lib/Mouse/Meta/Attribute/Custom/Trait/Number.pm index 59d5eba..a9f7d97 100644 --- a/lib/Mouse/Meta/Attribute/Custom/Trait/Number.pm +++ b/lib/Mouse/Meta/Attribute/Custom/Trait/Number.pm @@ -1,27 +1,27 @@ package Mouse::Meta::Attribute::Custom::Trait::Number; use strict; -our $VERSION = '0.001_01'; +our $VERSION = '0.001_02'; sub register_implementation { 'MouseX::NativeTraits::Num' } 1; __END__ =head1 NAME Mouse::Meta::Attribute::Custom::Trait::Number - Shortcut for Number trait =head1 DESCRIPTION This module is an alias to MouseX::NativeTraits::Number, which allows you to refer the trait as C<Number>. =head1 SEE ALSO L<MouseX::NativeTraits::Number> L<MouseX::NativeTraits> =cut diff --git a/lib/Mouse/Meta/Attribute/Custom/Trait/String.pm b/lib/Mouse/Meta/Attribute/Custom/Trait/String.pm index 44c7f75..7c99918 100644 --- a/lib/Mouse/Meta/Attribute/Custom/Trait/String.pm +++ b/lib/Mouse/Meta/Attribute/Custom/Trait/String.pm @@ -1,27 +1,27 @@ package Mouse::Meta::Attribute::Custom::Trait::String; use strict; -our $VERSION = '0.001_01'; +our $VERSION = '0.001_02'; sub register_implementation { 'MouseX::NativeTraits::Str' } 1; __END__ =head1 NAME Mouse::Meta::Attribute::Custom::Trait::String - Shortcut for Str trait =head1 DESCRIPTION This module is an alias to MouseX::NativeTraits::Str, which allows you to refer the trait as C<String>. =head1 SEE ALSO L<MouseX::NativeTraits::Str> L<MouseX::NativeTraits> =cut diff --git a/lib/MouseX/NativeTraits.pm b/lib/MouseX/NativeTraits.pm index b5fce93..95f9e6f 100644 --- a/lib/MouseX/NativeTraits.pm +++ b/lib/MouseX/NativeTraits.pm @@ -1,297 +1,297 @@ package MouseX::NativeTraits; use 5.006_002; use Mouse::Role; -our $VERSION = '0.001_01'; +our $VERSION = '0.001_02'; requires qw(method_provider_class helper_type); #has default => ( # is => 'bare', # don't create new methods # required => 1, #); has type_constraint => ( is => 'bare', # don't create new methods required => 1, ); has method_provider => ( is => 'ro', isa => 'Object', builder => '_build_method_provider', ); sub _build_method_provider{ my($self) = @_; my $mpc = $self->method_provider_class; Mouse::Util::load_class($mpc); return $mpc->new(attr => $self); } before _process_options => sub { my ( $self, $name, $options ) = @_; my $type = $self->helper_type; $options->{isa} = $type if !exists $options->{isa}; my $isa = Mouse::Util::TypeConstraints::find_or_create_isa_type_constraint( $options->{isa} ); ( $isa->is_a_type_of($type) ) || $self->throw_error( "The type constraint for $name must be a subtype of $type but it's a $isa"); $options->{default} = $self->_default_default if !exists $options->{default} && $self->can('_default_default'); }; around _canonicalize_handles => sub { my($next, $self, $handles_ref) = @_; if( ref($handles_ref) ne 'HASH' ) { $self->throw_error( "The 'handles' option must be a HASH reference, not $handles_ref"); } my $provider = $self->method_provider; my %handles; while(my($name, $to) = each %{$handles_ref}){ $to = [$to] if !ref $to; $provider->has_generator($to->[0]) or $self->throw_error("$to->[0] is an unsupported method type"); $handles{$name} = $to; } return %handles; }; around _make_delegation_method => sub { my( $next, $self, $handle_name, $method_to_call) = @_; return $self->method_provider->generate($handle_name, $method_to_call); }; no Mouse::Role; 1; __END__ =head1 NAME MouseX::NativeTraits - Extend your attribute interfaces for Mouse =head1 VERSION -This document describes MouseX::NativeTraits version 0.001_01. +This document describes MouseX::NativeTraits version 0.001_02. =head1 SYNOPSIS package MyClass; use Mouse; has mapping => ( traits => ['Hash'], is => 'rw', isa => 'HashRef[Str]', default => sub { +{} }, handles => { exists_in_mapping => 'exists', ids_in_mapping => 'keys', get_mapping => 'get', set_mapping => 'set', set_quantity => [ set => 'quantity' ], }, ); =head1 DESCRIPTION While L<Mouse> attributes provide a way to name your accessors, readers, writers, clearers and predicates, MouseX::NativeTraits provides commonly used attribute helper methods for more specific types of data. As seen in the L</SYNOPSIS>, you specify the data structure via the C<traits> parameter. These traits will be loaded automatically, so you need not load MouseX::NativeTraits explicitly. This extention is compatible with Moose native traits, although it is not a part of Mouse core. =head1 PARAMETERS =head2 handles This is like C<handles> in L<Mouse/has>, but only HASH references are allowed. Keys are method names that you want installed locally, and values are methods from the method providers (below). Currying with delegated methods works normally for C<< handles >>. =head1 NATIVE TRAITS =head2 Array Common methods for array references. has 'queue' => ( traits => ['Array'], is => 'ro', isa => 'ArrayRef[Str]', default => sub { [] }, handles => { add_item => 'push', next_item => 'shift', } ); See L<MouseX::NativeTraits::ArrayRef>. =head2 Hash Common methods for hash references. has 'options' => ( traits => ['Hash'], is => 'ro', isa => 'HashRef[Str]', default => sub { {} }, handles => { set_option => 'set', get_option => 'get', has_option => 'exists', } ); See L<MouseX::NativeTraits::HashRef>. =head2 Code Common methods for code references. has 'callback' => ( traits => ['Code'], is => 'ro', isa => 'CodeRef', default => sub { sub { 'called' } }, handles => { call => 'execute', } ); See L<MouseX::NativeTraits::CodeRef>. =head2 Bool Common methods for boolean values. has 'is_lit' => ( traits => ['Bool'], is => 'rw', isa => 'Bool', default => 0, handles => { illuminate => 'set', darken => 'unset', flip_switch => 'toggle', is_dark => 'not', } ); See L<MouseX::NativeTraits::Bool>. =head2 String Common methods for string operations. has text => ( traits => ['String'], is => 'rw', isa => 'Str', default => q{}, handles => { add_text => 'append', replace_text => 'replace', # or replace_globally } ); See L<MouseX::NativeTraits::Str>. =head2 Number Common numerical operations. has value => ( traits => ['Number'], is => 'ro', isa => 'Int', default => 5, handles => { set => 'set', add => 'add', sub => 'sub', mul => 'mul', div => 'div', mod => 'mod', abs => 'abs', } ); See L<MouseX::NativeTraits::Num>. =head2 Counter Methods for incrementing and decrementing a counter attribute. has counter => ( traits => ['Counter'], is => 'ro', isa => 'Num', default => 0, handles => { inc_counter => 'inc', dec_counter => 'dec', reset_counter => 'reset', } ); See L<MouseX::NativeTraits::Counter>. =head1 DEPENDENCIES Perl 5.6.2 or later. =head1 BUGS All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. =head1 SEE ALSO L<Mouse> L<MouseX::AttributeHelpers> L<Moose> L<Moose::Meta::Attribute::Native> L<MooseX::AttributeHelpers> =head1 AUTHORS Goro Fuji (gfx) E<lt>gfuji(at)cpan.orgE<gt> This module is based on Moose native traits written by Stevan Little and others. =head1 LICENSE AND COPYRIGHT Copyright (c) 2010, Goro Fuji (gfx), mostly based on Moose, which is (c) Infinity Interactive, Inc (L<http://www.iinteractive.com>). This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L<perlartistic> for details. =cut
gfx/p5-MouseX-NativeTraits
ef1de1149e1845c74688dc8330d1347c48ca3f17
Add a benchmark to curried args
diff --git a/benchmarks/inc2.pl b/benchmarks/inc2.pl new file mode 100644 index 0000000..9c24f92 --- /dev/null +++ b/benchmarks/inc2.pl @@ -0,0 +1,59 @@ +#!perl -w + +use strict; +use Benchmark qw(:all); + +print "Benchmark for native traits (Counter)\n"; + +{ + package MouseCounter; + use Mouse; + + has ok => ( + is => 'rw', + isa => 'Int', + + traits => ['Counter'], + + handles => { + inc2 => [inc => 2 ], + }, + default => 0, + clearer => 'foo', + ); + + __PACKAGE__->meta->make_immutable(); +} + +{ + package MooseCounter; + use Moose; + + has ok => ( + is => 'rw', + isa => 'Int', + + traits => ['Counter'], + + handles => { + inc2 => [inc => 2 ], + }, + default => 0, + ); + + __PACKAGE__->meta->make_immutable(); +} + +print "curried inc\n"; +cmpthese -1 => { + Mouse => sub{ + my $mouse = MouseCounter->new; + $mouse->inc2() for 1 .. 100; + $mouse->ok == 200 or die $mouse->ok; + }, + Moose => sub{ + my $moose = MooseCounter->new; + $moose->inc2() for 1 .. 100; + $moose->ok == 200 or die $moose->ok; + }, +};
gfx/p5-MouseX-NativeTraits
f0e93c119295f70a199b50cdedcd6ce2cf2be523
Adjust curried args to Mouse core
diff --git a/lib/MouseX/NativeTraits.pm b/lib/MouseX/NativeTraits.pm index 3b0116f..b5fce93 100644 --- a/lib/MouseX/NativeTraits.pm +++ b/lib/MouseX/NativeTraits.pm @@ -1,297 +1,297 @@ package MouseX::NativeTraits; use 5.006_002; use Mouse::Role; our $VERSION = '0.001_01'; requires qw(method_provider_class helper_type); #has default => ( # is => 'bare', # don't create new methods # required => 1, #); has type_constraint => ( is => 'bare', # don't create new methods required => 1, ); has method_provider => ( is => 'ro', isa => 'Object', builder => '_build_method_provider', ); sub _build_method_provider{ my($self) = @_; my $mpc = $self->method_provider_class; Mouse::Util::load_class($mpc); return $mpc->new(attr => $self); } before _process_options => sub { my ( $self, $name, $options ) = @_; my $type = $self->helper_type; $options->{isa} = $type if !exists $options->{isa}; my $isa = Mouse::Util::TypeConstraints::find_or_create_isa_type_constraint( $options->{isa} ); ( $isa->is_a_type_of($type) ) || $self->throw_error( "The type constraint for $name must be a subtype of $type but it's a $isa"); $options->{default} = $self->_default_default if !exists $options->{default} && $self->can('_default_default'); }; around _canonicalize_handles => sub { my($next, $self, $handles_ref) = @_; if( ref($handles_ref) ne 'HASH' ) { $self->throw_error( "The 'handles' option must be a HASH reference, not $handles_ref"); } my $provider = $self->method_provider; my %handles; while(my($name, $to) = each %{$handles_ref}){ $to = [$to] if !ref $to; $provider->has_generator($to->[0]) or $self->throw_error("$to->[0] is an unsupported method type"); $handles{$name} = $to; } return %handles; }; around _make_delegation_method => sub { - my( $next, $self, $handle_name, $method_to_call, @curried_args ) = @_; - return $self->method_provider->generate($handle_name, $method_to_call, @curried_args); + my( $next, $self, $handle_name, $method_to_call) = @_; + return $self->method_provider->generate($handle_name, $method_to_call); }; no Mouse::Role; 1; __END__ =head1 NAME MouseX::NativeTraits - Extend your attribute interfaces for Mouse =head1 VERSION This document describes MouseX::NativeTraits version 0.001_01. =head1 SYNOPSIS package MyClass; use Mouse; has mapping => ( traits => ['Hash'], is => 'rw', isa => 'HashRef[Str]', default => sub { +{} }, handles => { exists_in_mapping => 'exists', ids_in_mapping => 'keys', get_mapping => 'get', set_mapping => 'set', set_quantity => [ set => 'quantity' ], }, ); =head1 DESCRIPTION While L<Mouse> attributes provide a way to name your accessors, readers, writers, clearers and predicates, MouseX::NativeTraits provides commonly used attribute helper methods for more specific types of data. As seen in the L</SYNOPSIS>, you specify the data structure via the C<traits> parameter. These traits will be loaded automatically, so you need not load MouseX::NativeTraits explicitly. This extention is compatible with Moose native traits, although it is not a part of Mouse core. =head1 PARAMETERS =head2 handles This is like C<handles> in L<Mouse/has>, but only HASH references are allowed. Keys are method names that you want installed locally, and values are methods from the method providers (below). Currying with delegated methods works normally for C<< handles >>. =head1 NATIVE TRAITS =head2 Array Common methods for array references. has 'queue' => ( traits => ['Array'], is => 'ro', isa => 'ArrayRef[Str]', default => sub { [] }, handles => { add_item => 'push', next_item => 'shift', } ); See L<MouseX::NativeTraits::ArrayRef>. =head2 Hash Common methods for hash references. has 'options' => ( traits => ['Hash'], is => 'ro', isa => 'HashRef[Str]', default => sub { {} }, handles => { set_option => 'set', get_option => 'get', has_option => 'exists', } ); See L<MouseX::NativeTraits::HashRef>. =head2 Code Common methods for code references. has 'callback' => ( traits => ['Code'], is => 'ro', isa => 'CodeRef', default => sub { sub { 'called' } }, handles => { call => 'execute', } ); See L<MouseX::NativeTraits::CodeRef>. =head2 Bool Common methods for boolean values. has 'is_lit' => ( traits => ['Bool'], is => 'rw', isa => 'Bool', default => 0, handles => { illuminate => 'set', darken => 'unset', flip_switch => 'toggle', is_dark => 'not', } ); See L<MouseX::NativeTraits::Bool>. =head2 String Common methods for string operations. has text => ( traits => ['String'], is => 'rw', isa => 'Str', default => q{}, handles => { add_text => 'append', replace_text => 'replace', # or replace_globally } ); See L<MouseX::NativeTraits::Str>. =head2 Number Common numerical operations. has value => ( traits => ['Number'], is => 'ro', isa => 'Int', default => 5, handles => { set => 'set', add => 'add', sub => 'sub', mul => 'mul', div => 'div', mod => 'mod', abs => 'abs', } ); See L<MouseX::NativeTraits::Num>. =head2 Counter Methods for incrementing and decrementing a counter attribute. has counter => ( traits => ['Counter'], is => 'ro', isa => 'Num', default => 0, handles => { inc_counter => 'inc', dec_counter => 'dec', reset_counter => 'reset', } ); See L<MouseX::NativeTraits::Counter>. =head1 DEPENDENCIES Perl 5.6.2 or later. =head1 BUGS All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. =head1 SEE ALSO L<Mouse> L<MouseX::AttributeHelpers> L<Moose> L<Moose::Meta::Attribute::Native> L<MooseX::AttributeHelpers> =head1 AUTHORS Goro Fuji (gfx) E<lt>gfuji(at)cpan.orgE<gt> This module is based on Moose native traits written by Stevan Little and others. =head1 LICENSE AND COPYRIGHT Copyright (c) 2010, Goro Fuji (gfx), mostly based on Moose, which is (c) Infinity Interactive, Inc (L<http://www.iinteractive.com>). This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L<perlartistic> for details. =cut
gfx/p5-MouseX-NativeTraits
d47a4acaa5195dc71b8a48fc596bd99b16ac29dc
Fix the NAME of MX::NT::MP::ArrayRef
diff --git a/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm b/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm index c2459e1..f3dab3a 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm @@ -1,520 +1,520 @@ package MouseX::NativeTraits::MethodProvider::ArrayRef; use Mouse; use List::Util; extends qw(MouseX::NativeTraits::MethodProvider); sub generate_count { my($self) = @_; my $reader = $self->reader; return sub { return scalar @{ $reader->( $_[0] ) }; }; } sub generate_is_empty { my($self) = @_; my $reader = $self->reader; return sub { return scalar(@{ $reader->( $_[0] ) }) == 0; }; } sub generate_first { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $predicate ) = @_; return List::Util::first(\&{$predicate}, @{ $reader->($instance) }); }; } sub generate_map { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; return map { $block->() } @{ $reader->($instance) }; }; } sub generate_reduce { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; our ($a, $b); return List::Util::reduce { $block->($a, $b) } @{ $reader->($instance) }; }; } sub generate_sort { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $compare ) = @_; if ($compare) { return sort { $compare->( $a, $b ) } @{ $reader->($instance) }; } else { return sort @{ $reader->($instance) }; } }; } sub generate_sort_in_place { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $compare ) = @_; my $array_ref = $reader->($instance); if($compare){ @{$array_ref} = sort { $compare->($a, $b) } @{$array_ref}; } else{ @{$array_ref} = sort @{$array_ref}; } return $instance; }; } # The sort_by algorithm comes from perlfunc/sort # See also perldoc -f sort and perldoc -q sort sub generate_sort_by { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block, $compare ) = @_; my $array_ref = $reader->($instance); my @idx; foreach (@{$array_ref}){ # intentinal use of $_ push @idx, scalar $block->($_); } # NOTE: scalar(@idx)-1 is faster than $#idx if($compare){ return @{ $array_ref }[ sort { $compare->($idx[$a], $idx[$b]) } 0 .. scalar(@idx)-1 ]; } else{ return @{ $array_ref }[ sort { $idx[$a] cmp $idx[$b] } 0 .. scalar(@idx)-1 ]; } }; } sub generate_sort_in_place_by { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block, $compare ) = @_; my $array_ref = $reader->($instance); my @idx; foreach (@{$array_ref}){ push @idx, scalar $block->($_); } if($compare){ @{ $array_ref } = @{ $array_ref }[ sort { $compare->($idx[$a], $idx[$b]) } 0 .. scalar(@idx)-1 ]; } else{ @{ $array_ref } = @{ $array_ref }[ sort { $idx[$a] cmp $idx[$b] } 0 .. scalar(@idx)-1 ]; } return $instance; }; } sub generate_shuffle { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance ) = @_; return List::Util::shuffle @{ $reader->($instance) }; }; } sub generate_grep { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $predicate ) = @_; return grep { $predicate->() } @{ $reader->($instance) }; }; } sub generate_uniq { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance ) = @_; my %seen; my $seen_undef; return grep{ (defined($_) ? ++$seen{$_} : ++$seen_undef) == 1 } @{ $reader->($instance) }; }; } sub generate_elements { my($self) = @_; my $reader = $self->reader; return sub { my ($instance) = @_; return @{ $reader->($instance) }; }; } sub generate_join { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $separator ) = @_; return join $separator, @{ $reader->($instance) }; }; } sub generate_push { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { my $instance = shift; foreach my $value(@_){ $container_type_constraint->assert_valid($value) } push @{ $reader->($instance) }, @_; return $instance; }; } else { return sub { my $instance = shift; push @{ $reader->($instance) }, @_; return $instance; }; } } sub generate_pop { my($self) = @_; my $reader = $self->reader; return sub { return pop @{ $reader->( $_[0] ) }; }; } sub generate_unshift { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { my $instance = shift; foreach my $value(@_){ $container_type_constraint->assert_valid($value) } unshift @{ $reader->($instance) }, @_; return $instance; }; } else { return sub { my $instance = shift; unshift @{ $reader->($instance) }, @_; return $instance; }; } } sub generate_shift { my($self) = @_; my $reader = $self->reader; return sub { return shift @{ $reader->( $_[0] ) }; }; } __PACKAGE__->meta->add_method(generate_get => \&generate_fetch); # alias sub generate_fetch { my($self, $handle_name) = @_; my $reader = $self->reader; return sub { return $reader->( $_[0] )->[ $_[1] ]; }; } __PACKAGE__->meta->add_method(generate_set => \&generate_store); # alias sub generate_store { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { $container_type_constraint->assert_valid( $_[2] ); $reader->( $_[0] )->[ $_[1] ] = $_[2]; }; } else { return sub { $reader->( $_[0] )->[ $_[1] ] = $_[2]; }; } } sub generate_accessor { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { my $instance = shift; if ( @_ == 1 ) { # reader return $reader->($instance)->[ $_[0] ]; } elsif ( @_ == 2 ) { # writer $container_type_constraint->assert_valid( $_[1] ); $reader->($instance)->[ $_[0] ] = $_[1]; } else { confess "One or two arguments expected, not " . @_; } }; } else { return sub { my $instance = shift; if ( @_ == 1 ) { # reader return $reader->($instance)->[ $_[0] ]; } elsif ( @_ == 2 ) { # writer $reader->($instance)->[ $_[0] ] = $_[1]; return $instance; } else { confess "One or two arguments expected, not " . @_; } }; } } sub generate_clear { my($self) = @_; my $reader = $self->reader; return sub { @{ $reader->( $_[0] ) } = (); return $_[0]; }; } __PACKAGE__->meta->add_method(generate_delete => \&generate_remove); # alias sub generate_remove { my($self) = @_; my $reader = $self->reader; return sub { return splice @{ $reader->( $_[0] ) }, $_[1], 1; }; } sub generate_insert { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { my($instance, $index, $value) = @_; $container_type_constraint->assert_valid( $value ); splice @{ $reader->( $instance ) }, $index, 0, $value; return $instance; }; } else { return sub { my($instance, $index, $value) = @_; splice @{ $reader->( $instance ) }, $index, 0, $value; return $instance; }; } } sub generate_splice { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { my ( $self, $i, $j, @elems ) = @_; foreach my $value(@elems){ $container_type_constraint->assert_valid($value); } return splice @{ $reader->($self) }, $i, $j, @elems; }; } else { return sub { my ( $self, $i, $j, @elems ) = @_; return splice @{ $reader->($self) }, $i, $j, @elems; }; } } sub generate_for_each { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; foreach my $element(@{ $reader->instance($instance) }){ $block->($element); } return $instance; }; } sub generate_for_each_pair { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; my $array_ref = $reader->($instance); for(my $i = 0; $i < @{$array_ref}; $i += 2){ $block->($array_ref->[$i], $array_ref->[$i + 1]); } return $instance; }; } no Mouse; __PACKAGE__->meta->make_immutable(strict_constructor => 1); __END__ =head1 NAME -MouseX::NativeTraits::MethodProvider::Array - Provides methods for ArrayRef +MouseX::NativeTraits::MethodProvider::ArrayRef - Provides methods for ArrayRef =head1 DESCRIPTION This class provides method generators for the C<Array> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Array> for details. =head1 METHOD GENERATORS =over 4 =item generate_count =item generate_is_empty =item generate_first =item generate_map =item generate_reduce =item generate_sort =item generate_sort_in_place =item generate_sort_by =item generate_sort_in_place_by =item generate_shuffle =item generate_grep =item generate_uniq =item generate_elements =item generate_join =item generate_push =item generate_pop =item generate_unshift =item generate_shift =item generate_fetch =item generate_get The same as C<generate_fetch> =item generate_store =item generate_set The same as C<generate_store> =item generate_accessor =item generate_clear =item generate_remove =item generate_delete The same as C<generate_remove>. Note that it is different from C<CORE::delete>. =item generate_insert =item generate_splice =item generate_for_each =item generate_for_each_pair =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut
gfx/p5-MouseX-NativeTraits
17bfa0e5b6c2de3e83f25cc4ef93a1113128d2a2
Checking in changes prior to tagging of version 0.001_01. Changelog diff is:
diff --git a/Changes b/Changes index ea53c8d..243b857 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,7 @@ Revision history for Perl extension MouseX::NativeTraits +0.001_01 Sat Feb 20 15:49:59 2010 + - first dev-release + 0.001 Fri Feb 19 10:45:19 2010 - original version; created by Module::Setup diff --git a/lib/Mouse/Meta/Attribute/Custom/Trait/Array.pm b/lib/Mouse/Meta/Attribute/Custom/Trait/Array.pm index 15795c6..bc8146b 100644 --- a/lib/Mouse/Meta/Attribute/Custom/Trait/Array.pm +++ b/lib/Mouse/Meta/Attribute/Custom/Trait/Array.pm @@ -1,27 +1,27 @@ package Mouse::Meta::Attribute::Custom::Trait::Array; use strict; -our $VERSION = '0.001'; +our $VERSION = '0.001_01'; sub register_implementation { 'MouseX::NativeTraits::ArrayRef' } 1; __END__ =head1 NAME Mouse::Meta::Attribute::Custom::Trait::Array - Shortcut for ArrayRef trait =head1 DESCRIPTION This module is an alias to MouseX::NativeTraits::ArrayRef, which allows you to refer the trait as C<Array>. =head1 SEE ALSO L<MouseX::NativeTraits::ArrayRef> L<MouseX::NativeTraits> =cut diff --git a/lib/Mouse/Meta/Attribute/Custom/Trait/Bool.pm b/lib/Mouse/Meta/Attribute/Custom/Trait/Bool.pm index 60a9fdf..cfa1e0e 100644 --- a/lib/Mouse/Meta/Attribute/Custom/Trait/Bool.pm +++ b/lib/Mouse/Meta/Attribute/Custom/Trait/Bool.pm @@ -1,27 +1,27 @@ package Mouse::Meta::Attribute::Custom::Trait::Bool; use strict; -our $VERSION = '0.001'; +our $VERSION = '0.001_01'; sub register_implementation { 'MouseX::NativeTraits::Bool' } 1; __END__ =head1 NAME Mouse::Meta::Attribute::Custom::Trait::Bool - Shortcut for Bool trait =head1 DESCRIPTION This module is an alias to MouseX::NativeTraits::Bool, which allows you to refer the trait as C<Bool>. =head1 SEE ALSO L<MouseX::NativeTraits::BoolRef> L<MouseX::NativeTraits> =cut diff --git a/lib/Mouse/Meta/Attribute/Custom/Trait/Code.pm b/lib/Mouse/Meta/Attribute/Custom/Trait/Code.pm index 6e91927..0fc8ff4 100644 --- a/lib/Mouse/Meta/Attribute/Custom/Trait/Code.pm +++ b/lib/Mouse/Meta/Attribute/Custom/Trait/Code.pm @@ -1,27 +1,27 @@ package Mouse::Meta::Attribute::Custom::Trait::Code; use strict; -our $VERSION = '0.001'; +our $VERSION = '0.001_01'; sub register_implementation { 'MouseX::NativeTraits::CodeRef' } 1; __END__ =head1 NAME Mouse::Meta::Attribute::Custom::Trait::Code - Shortcut for CodeRef trait =head1 DESCRIPTION This module is an alias to MouseX::NativeTraits::CodeRef, which allows you to refer the trait as C<Code>. =head1 SEE ALSO L<MouseX::NativeTraits::CodeRef> L<MouseX::NativeTraits> =cut diff --git a/lib/Mouse/Meta/Attribute/Custom/Trait/Counter.pm b/lib/Mouse/Meta/Attribute/Custom/Trait/Counter.pm index 4ce893e..9cede1d 100644 --- a/lib/Mouse/Meta/Attribute/Custom/Trait/Counter.pm +++ b/lib/Mouse/Meta/Attribute/Custom/Trait/Counter.pm @@ -1,27 +1,27 @@ package Mouse::Meta::Attribute::Custom::Trait::Counter; use strict; -our $VERSION = '0.001'; +our $VERSION = '0.001_01'; sub register_implementation { 'MouseX::NativeTraits::Counter' } 1; __END__ =head1 NAME Mouse::Meta::Attribute::Custom::Trait::Counter - Shortcut for Counter trait =head1 DESCRIPTION This module is an alias to MouseX::NativeTraits::Counter, which allows you to refer the trait as C<Counter>. =head1 SEE ALSO L<MouseX::NativeTraits::Counter> L<MouseX::NativeTraits> =cut diff --git a/lib/Mouse/Meta/Attribute/Custom/Trait/Hash.pm b/lib/Mouse/Meta/Attribute/Custom/Trait/Hash.pm index 7e6c89f..825867a 100644 --- a/lib/Mouse/Meta/Attribute/Custom/Trait/Hash.pm +++ b/lib/Mouse/Meta/Attribute/Custom/Trait/Hash.pm @@ -1,27 +1,27 @@ package Mouse::Meta::Attribute::Custom::Trait::Hash; use strict; -our $VERSION = '0.001'; +our $VERSION = '0.001_01'; sub register_implementation { 'MouseX::NativeTraits::HashRef' } 1; __END__ =head1 NAME Mouse::Meta::Attribute::Custom::Trait::Hash - Shortcut for HashRef trait =head1 DESCRIPTION This module is an alias to MouseX::NativeTraits::HashRef, which allows you to refer the trait as C<Hash>. =head1 SEE ALSO L<MouseX::NativeTraits::HashRef> L<MouseX::NativeTraits> =cut diff --git a/lib/Mouse/Meta/Attribute/Custom/Trait/Number.pm b/lib/Mouse/Meta/Attribute/Custom/Trait/Number.pm index 5848cce..59d5eba 100644 --- a/lib/Mouse/Meta/Attribute/Custom/Trait/Number.pm +++ b/lib/Mouse/Meta/Attribute/Custom/Trait/Number.pm @@ -1,27 +1,27 @@ package Mouse::Meta::Attribute::Custom::Trait::Number; use strict; -our $VERSION = '0.001'; +our $VERSION = '0.001_01'; sub register_implementation { 'MouseX::NativeTraits::Num' } 1; __END__ =head1 NAME Mouse::Meta::Attribute::Custom::Trait::Number - Shortcut for Number trait =head1 DESCRIPTION This module is an alias to MouseX::NativeTraits::Number, which allows you to refer the trait as C<Number>. =head1 SEE ALSO L<MouseX::NativeTraits::Number> L<MouseX::NativeTraits> =cut diff --git a/lib/Mouse/Meta/Attribute/Custom/Trait/String.pm b/lib/Mouse/Meta/Attribute/Custom/Trait/String.pm index ecafa05..44c7f75 100644 --- a/lib/Mouse/Meta/Attribute/Custom/Trait/String.pm +++ b/lib/Mouse/Meta/Attribute/Custom/Trait/String.pm @@ -1,27 +1,27 @@ package Mouse::Meta::Attribute::Custom::Trait::String; use strict; -our $VERSION = '0.001'; +our $VERSION = '0.001_01'; sub register_implementation { 'MouseX::NativeTraits::Str' } 1; __END__ =head1 NAME Mouse::Meta::Attribute::Custom::Trait::String - Shortcut for Str trait =head1 DESCRIPTION This module is an alias to MouseX::NativeTraits::Str, which allows you to refer the trait as C<String>. =head1 SEE ALSO L<MouseX::NativeTraits::Str> L<MouseX::NativeTraits> =cut diff --git a/lib/MouseX/NativeTraits.pm b/lib/MouseX/NativeTraits.pm index 95438af..3b0116f 100644 --- a/lib/MouseX/NativeTraits.pm +++ b/lib/MouseX/NativeTraits.pm @@ -1,297 +1,297 @@ package MouseX::NativeTraits; use 5.006_002; use Mouse::Role; -our $VERSION = '0.001'; +our $VERSION = '0.001_01'; requires qw(method_provider_class helper_type); #has default => ( # is => 'bare', # don't create new methods # required => 1, #); has type_constraint => ( is => 'bare', # don't create new methods required => 1, ); has method_provider => ( is => 'ro', isa => 'Object', builder => '_build_method_provider', ); sub _build_method_provider{ my($self) = @_; my $mpc = $self->method_provider_class; Mouse::Util::load_class($mpc); return $mpc->new(attr => $self); } before _process_options => sub { my ( $self, $name, $options ) = @_; my $type = $self->helper_type; $options->{isa} = $type if !exists $options->{isa}; my $isa = Mouse::Util::TypeConstraints::find_or_create_isa_type_constraint( $options->{isa} ); ( $isa->is_a_type_of($type) ) || $self->throw_error( "The type constraint for $name must be a subtype of $type but it's a $isa"); $options->{default} = $self->_default_default if !exists $options->{default} && $self->can('_default_default'); }; around _canonicalize_handles => sub { my($next, $self, $handles_ref) = @_; if( ref($handles_ref) ne 'HASH' ) { $self->throw_error( "The 'handles' option must be a HASH reference, not $handles_ref"); } my $provider = $self->method_provider; my %handles; while(my($name, $to) = each %{$handles_ref}){ $to = [$to] if !ref $to; $provider->has_generator($to->[0]) or $self->throw_error("$to->[0] is an unsupported method type"); $handles{$name} = $to; } return %handles; }; around _make_delegation_method => sub { my( $next, $self, $handle_name, $method_to_call, @curried_args ) = @_; return $self->method_provider->generate($handle_name, $method_to_call, @curried_args); }; no Mouse::Role; 1; __END__ =head1 NAME MouseX::NativeTraits - Extend your attribute interfaces for Mouse =head1 VERSION -This document describes MouseX::NativeTraits version 0.001. +This document describes MouseX::NativeTraits version 0.001_01. =head1 SYNOPSIS package MyClass; use Mouse; has mapping => ( traits => ['Hash'], is => 'rw', isa => 'HashRef[Str]', default => sub { +{} }, handles => { exists_in_mapping => 'exists', ids_in_mapping => 'keys', get_mapping => 'get', set_mapping => 'set', set_quantity => [ set => 'quantity' ], }, ); =head1 DESCRIPTION While L<Mouse> attributes provide a way to name your accessors, readers, writers, clearers and predicates, MouseX::NativeTraits provides commonly used attribute helper methods for more specific types of data. As seen in the L</SYNOPSIS>, you specify the data structure via the C<traits> parameter. These traits will be loaded automatically, so you need not load MouseX::NativeTraits explicitly. This extention is compatible with Moose native traits, although it is not a part of Mouse core. =head1 PARAMETERS =head2 handles This is like C<handles> in L<Mouse/has>, but only HASH references are allowed. Keys are method names that you want installed locally, and values are methods from the method providers (below). Currying with delegated methods works normally for C<< handles >>. =head1 NATIVE TRAITS =head2 Array Common methods for array references. has 'queue' => ( traits => ['Array'], is => 'ro', isa => 'ArrayRef[Str]', default => sub { [] }, handles => { add_item => 'push', next_item => 'shift', } ); See L<MouseX::NativeTraits::ArrayRef>. =head2 Hash Common methods for hash references. has 'options' => ( traits => ['Hash'], is => 'ro', isa => 'HashRef[Str]', default => sub { {} }, handles => { set_option => 'set', get_option => 'get', has_option => 'exists', } ); See L<MouseX::NativeTraits::HashRef>. =head2 Code Common methods for code references. has 'callback' => ( traits => ['Code'], is => 'ro', isa => 'CodeRef', default => sub { sub { 'called' } }, handles => { call => 'execute', } ); See L<MouseX::NativeTraits::CodeRef>. =head2 Bool Common methods for boolean values. has 'is_lit' => ( traits => ['Bool'], is => 'rw', isa => 'Bool', default => 0, handles => { illuminate => 'set', darken => 'unset', flip_switch => 'toggle', is_dark => 'not', } ); See L<MouseX::NativeTraits::Bool>. =head2 String Common methods for string operations. has text => ( traits => ['String'], is => 'rw', isa => 'Str', default => q{}, handles => { add_text => 'append', replace_text => 'replace', # or replace_globally } ); See L<MouseX::NativeTraits::Str>. =head2 Number Common numerical operations. has value => ( traits => ['Number'], is => 'ro', isa => 'Int', default => 5, handles => { set => 'set', add => 'add', sub => 'sub', mul => 'mul', div => 'div', mod => 'mod', abs => 'abs', } ); See L<MouseX::NativeTraits::Num>. =head2 Counter Methods for incrementing and decrementing a counter attribute. has counter => ( traits => ['Counter'], is => 'ro', isa => 'Num', default => 0, handles => { inc_counter => 'inc', dec_counter => 'dec', reset_counter => 'reset', } ); See L<MouseX::NativeTraits::Counter>. =head1 DEPENDENCIES Perl 5.6.2 or later. =head1 BUGS All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. =head1 SEE ALSO L<Mouse> L<MouseX::AttributeHelpers> L<Moose> L<Moose::Meta::Attribute::Native> L<MooseX::AttributeHelpers> =head1 AUTHORS Goro Fuji (gfx) E<lt>gfuji(at)cpan.orgE<gt> This module is based on Moose native traits written by Stevan Little and others. =head1 LICENSE AND COPYRIGHT Copyright (c) 2010, Goro Fuji (gfx), mostly based on Moose, which is (c) Infinity Interactive, Inc (L<http://www.iinteractive.com>). This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L<perlartistic> for details. =cut diff --git a/lib/MouseX/NativeTraits/ArrayRef.pm b/lib/MouseX/NativeTraits/ArrayRef.pm index dd21977..4a477c0 100644 --- a/lib/MouseX/NativeTraits/ArrayRef.pm +++ b/lib/MouseX/NativeTraits/ArrayRef.pm @@ -1,234 +1,231 @@ package MouseX::NativeTraits::ArrayRef; use Mouse::Role; with 'MouseX::NativeTraits'; sub method_provider_class { return 'MouseX::NativeTraits::MethodProvider::ArrayRef'; } sub helper_type { return 'ArrayRef'; } no Mouse::Role; 1; __END__ =head1 NAME MouseX::NativeTraits::ArrayRef - Helper trait for ArrayRef attributes =head1 SYNOPSIS package Stuff; use Mouse; has 'options' => ( traits => ['Array'], is => 'ro', isa => 'ArrayRef[Str]', default => sub { [] }, handles => { all_options => 'elements', add_option => 'push', map_options => 'map', filter_options => 'grep', find_option => 'first', get_option => 'get', join_options => 'join', count_options => 'count', has_options => 'count', has_no_options => 'is_empty', sorted_options => 'sort', }, ); - no Moose; - 1; - =head1 DESCRIPTION This module provides an Array attribute which provides a number of array operations. =head1 PROVIDED METHODS These methods are implemented in L<MouseX::NativeTraits::MethodProvider::ArrayRef>. =over 4 =item B<count> Returns the number of elements in the array. $stuff = Stuff->new; $stuff->options(["foo", "bar", "baz", "boo"]); my $count = $stuff->count_options; print "$count\n"; # prints 4 =item B<is_empty> Returns a boolean value that is true when the array has no elements. $stuff->has_no_options ? die "No options!\n" : print "Good boy.\n"; =item B<elements> Returns all of the elements of the array. my @option = $stuff->all_options; print "@options\n"; # prints "foo bar baz boo" =item B<get($index)> Returns an element of the array by its index. You can also use negative index numbers, just as with Perl's core array handling. my $option = $stuff->get_option(1); print "$option\n"; # prints "bar" =item B<pop> =item B<push($value1, $value2, value3 ...)> =item B<shift> =item B<unshift($value1, $value2, value3 ...)> =item B<splice($offset, $length, @values)> These methods are all equivalent to the Perl core functions of the same name. =item B<first( sub { ... } )> This method returns the first item matching item in the array, just like L<List::Util>'s C<first> function. The matching is done with a subroutine reference you pass to this method. The reference will be called against each element in the array until one matches or all elements have been checked. my $found = $stuff->find_option( sub { /^b/ } ); print "$found\n"; # prints "bar" =item B<grep( sub { ... } )> This method returns every element matching a given criteria, just like Perl's core C<grep> function. This method requires a subroutine which implements the matching logic. my @found = $stuff->filter_options( sub { /^b/ } ); print "@found\n"; # prints "bar baz boo" =item B<map( sub { ... } )> This method transforms every element in the array and returns a new array, just like Perl's core C<map> function. This method requires a subroutine which implements the transformation. my @mod_options = $stuff->map_options( sub { $_ . "-tag" } ); print "@mod_options\n"; # prints "foo-tag bar-tag baz-tag boo-tag" =item B<reduce( sub { ... } )> This method condenses an array into a single value, by passing a function the value so far and the next value in the array, just like L<List::Util>'s C<reduce> function. The reducing is done with a subroutine reference you pass to this method. my $found = $stuff->reduce_options( sub { $_[0] . $_[1] } ); print "$found\n"; # prints "foobarbazboo" =item B<sort( sub { ... } )> Returns a the array in sorted order. You can provide an optional subroutine reference to sort with (as you can with Perl's core C<sort> function). However, instead of using C<$a> and C<$b>, you will need to use C<$_[0]> and C<$_[1]> instead. # ascending ASCIIbetical my @sorted = $stuff->sort_options(); # Descending alphabetical order my @sorted_options = $stuff->sort_options( sub { lc $_[1] cmp lc $_[0] } ); print "@sorted_options\n"; # prints "foo boo baz bar" =item B<sort_in_place> Sorts the array I<in place>, modifying the value of the attribute. You can provide an optional subroutine reference to sort with (as you can with Perl's core C<sort> function). However, instead of using C<$a> and C<$b>, you will need to use C<$_[0]> and C<$_[1]> instead. =item B<shuffle> Returns the array, with indices in random order, like C<shuffle> from L<List::Util>. =item B<uniq> Returns the array, with all duplicate elements removed, like C<uniq> from L<List::MoreUtils>. =item B<join($str)> Joins every element of the array using the separator given as argument, just like Perl's core C<join> function. my $joined = $stuff->join_options( ':' ); print "$joined\n"; # prints "foo:bar:baz:boo" =item B<set($index, $value)> Given an index and a value, sets the specified array element's value. =item B<delete($index)> Removes the element at the given index from the array. =item B<insert($index, $value)> Inserts a new element into the array at the given index. =item B<clear> Empties the entire array, like C<@array = ()>. =item B<accessor> This method provides a get/set accessor for the array, based on array indexes. If passed one argument, it returns the value at the specified index. If passed two arguments, it sets the value of the specified index. =item B<for_each(sub{ ... })> This method calls the given subroutine with each element of the array, like Perl's core C<foreach> statement. =item B<for_each_pair( sub{ ... } )> This method calls the given subroutine with each two element of the array, as if the array is a list of pairs. =back =head1 METHODS =over 4 =item B<meta> =item B<method_provider_class> =item B<helper_type> =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/lib/MouseX/NativeTraits/Num.pm b/lib/MouseX/NativeTraits/Num.pm index 538af73..a8b82a1 100644 --- a/lib/MouseX/NativeTraits/Num.pm +++ b/lib/MouseX/NativeTraits/Num.pm @@ -1,108 +1,108 @@ package MouseX::NativeTraits::Num; use Mouse::Role; with 'MouseX::NativeTraits'; sub method_provider_class { return 'MouseX::NativeTraits::MethodProvider::Num'; } sub helper_type { return 'Num'; } no Mouse::Role; 1; __END__ =pod =head1 NAME MouseX::NativeTraits::Num - Helper trait for Num attributes =head1 SYNOPSIS package Real; - use Moose; + use Mouse; has 'integer' => ( traits => ['Number'], is => 'ro', isa => 'Num', default => 5, handles => { set => 'set', add => 'add', sub => 'sub', mul => 'mul', div => 'div', mod => 'mod', abs => 'abs', }, ); my $real = Real->new(); $real->add(5); # same as $real->integer($real->integer + 5); $real->sub(2); # same as $real->integer($real->integer - 2); =head1 DESCRIPTION This provides a simple numeric attribute, which supports most of the basic math operations. =head1 PROVIDED METHODS It is important to note that all those methods do in place modification of the value stored in the attribute. These methods are implemented within this package. =over 4 =item B<set($value)> Alternate way to set the value. =item B<add($value)> Adds the current value of the attribute to C<$value>. =item B<sub($value)> Subtracts C<$value> from the current value of the attribute. =item B<mul($value)> Multiplies the current value of the attribute by C<$value>. =item B<div($value)> Divides the current value of the attribute by C<$value>. =item B<mod($value)> Returns the current value of the attribute modulo C<$value>. =item B<abs> Sets the current value of the attribute to its absolute value. =back =head1 METHODS =over 4 =item B<meta> =item B<method_provider_class> =item B<helper_type> =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/lib/MouseX/NativeTraits/Str.pm b/lib/MouseX/NativeTraits/Str.pm index b68e2a0..66de984 100644 --- a/lib/MouseX/NativeTraits/Str.pm +++ b/lib/MouseX/NativeTraits/Str.pm @@ -1,130 +1,130 @@ package MouseX::NativeTraits::Str; use Mouse::Role; with 'MouseX::NativeTraits'; sub method_provider_class { return 'MouseX::NativeTraits::MethodProvider::Str'; } sub helper_type { return 'Str'; } sub _default_default{ '' } no Mouse::Role; 1; __END__ =head1 NAME MouseX::NativeTraits::Str - Helper trait for Str attributes =head1 SYNOPSIS package MyHomePage; - use Moose; + use Mouse; has 'text' => ( traits => ['String'], is => 'rw', isa => 'Str', default => q{}, handles => { add_text => 'append', replace_text => 'replace', }, ); my $page = MyHomePage->new(); $page->add_text("foo"); # same as $page->text($page->text . "foo"); =head1 DESCRIPTION This module provides a simple string attribute, to which mutating string operations can be applied more easily (no need to make an lvalue attribute metaclass or use temporary variables). Additional methods are provided for completion. =head1 PROVIDED METHODS These methods are implemented in L<MouseX::NativeTraits::MethodProvider::Str>. It is important to note that all those methods do in place modification of the value stored in the attribute. =over 4 =item B<inc> Increments the value stored in this slot using the magical string autoincrement operator. Note that Perl doesn't provide analogous behavior in C<-->, so C<dec> is not available. =item B<append($string)> Append a string, like C<.=>. =item B<prepend($string)> Prepend a string. =item B<replace($pattern, $replacement)> Performs a regexp substitution (L<perlop/s>). A code references will be accepted for the replacement, causing the regexp to be modified with a single C<e>. C</smxi> can be applied using the C<qr> operator. =item B<replace($pattern, $replacement)> Performs a regexp substitution (L<perlop/s>) with the C<g> flag. A code references will be accepted for the replacement, causing the regexp to be modified with a single C<e>. C</smxi> can be applied using the C<qr> operator. =item B<match($pattern)> Like C<replace> but without the replacement. Provided mostly for completeness. =item B<chop> L<perlfunc/chop> =item B<chomp> L<perlfunc/chomp> =item B<clear> Sets the string to the empty string (not the value passed to C<default>). =item B<length> L<perlfunc/length> =item B<substr> L<perlfunc/substr>. We go to some lengths to match the different functionality based on C<substr>'s arity. =back =head1 METHODS =over 4 =item B<meta> =item B<method_provider_class> =item B<helper_type> =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut
gfx/p5-MouseX-NativeTraits
8cec5b1ab17af209e24c517b81ff9f51cfcbf2b6
Fix tests
diff --git a/t/02_meta.t b/t/02_meta.t index 919977b..74add34 100644 --- a/t/02_meta.t +++ b/t/02_meta.t @@ -1,41 +1,41 @@ #!perl -w use strict; use Test::More; use Test::Exception; use Mouse; lives_ok { has foo => ( traits => [qw(Array)], default => sub{ [] }, handles => { mypush0 => 'push' }, ); } '"is" parameter can be omitted'; -throws_ok { - has bar1 => ( - traits => [qw(Array)], - handles => { mypush1 => 'push' }, - ); -} qr/default .* is \s+ required/xms; +#throws_ok { +# has bar1 => ( +# traits => [qw(Array)], +# handles => { mypush1 => 'push' }, +# ); +#} qr/default .* is \s+ required/xms; throws_ok { has bar2 => ( traits => [qw(Array)], default => sub{ [] }, handles => { push => 'mypush2' }, ); } qr/\b unsupported \b/xms; throws_ok { has bar3 => ( traits => [qw(Array)], isa => 'HashRef', default => sub{ [] }, handles => { mypush3 => 'push' }, ); } qr/must be a subtype of ArrayRef/; done_testing; diff --git a/t/070_native_traits/010_array_from_role.t b/t/070_native_traits/010_array_from_role.t index 6d47aa4..dd5cf94 100644 --- a/t/070_native_traits/010_array_from_role.t +++ b/t/070_native_traits/010_array_from_role.t @@ -1,46 +1,48 @@ #!/usr/bin/perl use strict; use warnings; use Test::More; use Test::Exception; { package Foo; use Mouse; has 'bar' => ( is => 'rw' ); package Stuffed::Role; use Mouse::Role; has 'options' => ( traits => ['Array'], is => 'ro', isa => 'ArrayRef[Foo]', + default => sub{ [] }, ); package Bulkie::Role; use Mouse::Role; has 'stuff' => ( traits => ['Array'], is => 'ro', isa => 'ArrayRef', + default => sub{ [] }, handles => { get_stuff => 'get', } ); package Stuff; use Mouse; ::lives_ok{ with 'Stuffed::Role'; } '... this should work correctly'; ::lives_ok{ with 'Bulkie::Role'; } '... this should work correctly'; } done_testing; diff --git a/t/070_native_traits/020_remove_attribute.t b/t/070_native_traits/020_remove_attribute.t deleted file mode 100644 index d42dfa7..0000000 --- a/t/070_native_traits/020_remove_attribute.t +++ /dev/null @@ -1,51 +0,0 @@ -#!/usr/bin/perl - -use strict; -use warnings; - -use Test::More; -use Test::Exception; - -{ - package MyHomePage; - use Mouse; - - has 'counter' => ( - traits => ['Counter'], - is => 'ro', - isa => 'Int', - default => 0, - handles => { - inc_counter => 'inc', - dec_counter => 'dec', - reset_counter => 'reset', - } - ); -} - -my $page = MyHomePage->new(); -isa_ok( $page, 'MyHomePage' ); - -can_ok( $page, $_ ) for qw[ - counter - dec_counter - inc_counter - reset_counter -]; - -lives_ok { - $page->meta->remove_attribute('counter'); -} -'... removed the counter attribute okay'; - -ok( !$page->meta->has_attribute('counter'), - '... no longer has the attribute' ); - -ok( !$page->can($_), "... our class no longer has the $_ method" ) for qw[ - counter - dec_counter - inc_counter - reset_counter -]; - -done_testing; diff --git a/t/070_native_traits/201_trait_counter.t b/t/070_native_traits/201_trait_counter.t index 6e96bbd..5826005 100644 --- a/t/070_native_traits/201_trait_counter.t +++ b/t/070_native_traits/201_trait_counter.t @@ -1,79 +1,82 @@ #!/usr/bin/perl use strict; use warnings; use Test::More; use Test::Mouse 'does_ok'; { package MyHomePage; use Mouse; has 'counter' => ( traits => ['Counter'], is => 'ro', isa => 'Int', default => 0, handles => { inc_counter => 'inc', dec_counter => 'dec', reset_counter => 'reset', set_counter => 'set' } ); } my $page = MyHomePage->new(); isa_ok( $page, 'MyHomePage' ); can_ok( $page, $_ ) for qw[ dec_counter inc_counter reset_counter set_counter ]; is( $page->counter, 0, '... got the default value' ); $page->inc_counter; is( $page->counter, 1, '... got the incremented value' ); $page->inc_counter; is( $page->counter, 2, '... got the incremented value (again)' ); $page->dec_counter; is( $page->counter, 1, '... got the decremented value' ); $page->reset_counter; is( $page->counter, 0, '... got the original value' ); $page->set_counter(5); is( $page->counter, 5, '... set the value' ); $page->inc_counter(2); is( $page->counter, 7, '... increment by arg' ); $page->dec_counter(5); is( $page->counter, 2, '... decrement by arg' ); # check the meta .. my $counter = $page->meta->get_attribute('counter'); -does_ok( $counter, 'Mouse::Meta::Attribute::Native::Trait::Counter' ); + +#XXX: Mouse role name is different +#does_ok( $counter, 'Mouse::Meta::Attribute::Native::Trait::Counter' ); + is( $counter->type_constraint->name, 'Int', '... got the expected type constraint' ); is_deeply( $counter->handles, { inc_counter => 'inc', dec_counter => 'dec', reset_counter => 'reset', set_counter => 'set' }, '... got the right handles methods' ); done_testing; diff --git a/t/070_native_traits/202_trait_array.t b/t/070_native_traits/202_trait_array.t index 15fce2d..e1aefc0 100644 --- a/t/070_native_traits/202_trait_array.t +++ b/t/070_native_traits/202_trait_array.t @@ -1,274 +1,277 @@ #!/usr/bin/perl use strict; use warnings; use Test::More; use Test::Exception; use Test::Mouse 'does_ok'; my $sort; { package Stuff; use Mouse; has 'options' => ( traits => ['Array'], is => 'ro', isa => 'ArrayRef[Str]', default => sub { [] }, handles => { 'add_options' => 'push', 'remove_last_option' => 'pop', 'remove_first_option' => 'shift', 'insert_options' => 'unshift', 'get_option_at' => 'get', 'set_option_at' => 'set', 'num_options' => 'count', 'has_no_options' => 'is_empty', 'clear_options' => 'clear', 'splice_options' => 'splice', 'sort_options_in_place' => 'sort_in_place', 'option_accessor' => 'accessor', 'add_options_with_speed' => [ 'push' => 'funrolls', 'funbuns' ], 'prepend_prerequisites_along_with' => [ 'unshift' => 'first', 'second' ], 'descending_options' => [ 'sort_in_place' => ($sort = sub { $_[1] <=> $_[0] }) ], } ); } my $stuff = Stuff->new( options => [ 10, 12 ] ); isa_ok( $stuff, 'Stuff' ); can_ok( $stuff, $_ ) for qw[ add_options remove_last_option remove_first_option insert_options get_option_at set_option_at num_options clear_options has_no_options sort_options_in_place option_accessor ]; is_deeply( $stuff->options, [ 10, 12 ], '... got options' ); ok( !$stuff->has_no_options, '... we have options' ); is( $stuff->num_options, 2, '... got 2 options' ); is( $stuff->remove_last_option, 12, '... removed the last option' ); is( $stuff->remove_first_option, 10, '... removed the last option' ); is_deeply( $stuff->options, [], '... no options anymore' ); ok( $stuff->has_no_options, '... no options' ); is( $stuff->num_options, 0, '... got no options' ); lives_ok { $stuff->add_options( 1, 2, 3 ); } '... set the option okay'; is_deeply( $stuff->options, [ 1, 2, 3 ], '... got options now' ); ok( !$stuff->has_no_options, '... has options' ); is( $stuff->num_options, 3, '... got 3 options' ); is( $stuff->get_option_at(0), 1, '... get option at index 0' ); is( $stuff->get_option_at(1), 2, '... get option at index 1' ); is( $stuff->get_option_at(2), 3, '... get option at index 2' ); lives_ok { $stuff->set_option_at( 1, 100 ); } '... set the option okay'; is( $stuff->get_option_at(1), 100, '... get option at index 1' ); lives_ok { $stuff->add_options( 10, 15 ); } '... set the option okay'; is_deeply( $stuff->options, [ 1, 100, 3, 10, 15 ], '... got more options now' ); is( $stuff->num_options, 5, '... got 5 options' ); is( $stuff->remove_last_option, 15, '... removed the last option' ); is( $stuff->num_options, 4, '... got 4 options' ); is_deeply( $stuff->options, [ 1, 100, 3, 10 ], '... got diff options now' ); lives_ok { $stuff->insert_options( 10, 20 ); } '... set the option okay'; is( $stuff->num_options, 6, '... got 6 options' ); is_deeply( $stuff->options, [ 10, 20, 1, 100, 3, 10 ], '... got diff options now' ); is( $stuff->get_option_at(0), 10, '... get option at index 0' ); is( $stuff->get_option_at(1), 20, '... get option at index 1' ); is( $stuff->get_option_at(3), 100, '... get option at index 3' ); is( $stuff->remove_first_option, 10, '... getting the first option' ); is( $stuff->num_options, 5, '... got 5 options' ); is( $stuff->get_option_at(0), 20, '... get option at index 0' ); $stuff->clear_options; is_deeply( $stuff->options, [], "... clear options" ); $stuff->add_options( 5, 1, 2, 3 ); $stuff->sort_options_in_place; is_deeply( $stuff->options, [ 1, 2, 3, 5 ], "... sort options in place (default sort order)" ); $stuff->sort_options_in_place( sub { $_[1] <=> $_[0] } ); is_deeply( $stuff->options, [ 5, 3, 2, 1 ], "... sort options in place (descending order)" ); $stuff->clear_options(); $stuff->add_options( 5, 1, 2, 3 ); lives_ok { $stuff->descending_options(); } '... curried sort in place lives ok'; is_deeply( $stuff->options, [ 5, 3, 2, 1 ], "... sort currying" ); -throws_ok { $stuff->sort_options_in_place('foo') } -qr/Argument must be a code reference/, - 'error when sort_in_place receives a non-coderef argument'; +dies_ok { $stuff->sort_options_in_place('foo') } +#throws_ok { $stuff->sort_options_in_place('foo') } +# qr/Argument must be a code reference/, + 'error when sort_in_place receives a non-coderef argument'; $stuff->clear_options; lives_ok { $stuff->add_options('tree'); } '... set the options okay'; lives_ok { $stuff->add_options_with_speed( 'compatible', 'safe' ); } '... add options with speed okay'; is_deeply( $stuff->options, [qw/tree funrolls funbuns compatible safe/], 'check options after add_options_with_speed' ); lives_ok { $stuff->prepend_prerequisites_along_with(); } '... add prerequisite options okay'; $stuff->clear_options; $stuff->add_options( 1, 2 ); lives_ok { $stuff->splice_options( 1, 0, 'foo' ); } '... splice_options works'; is_deeply( $stuff->options, [ 1, 'foo', 2 ], 'splice added expected option' ); is( $stuff->option_accessor( 1 => 'foo++' ), 'foo++' ); is( $stuff->option_accessor(1), 'foo++' ); ## check some errors #dies_ok { # $stuff->insert_options(undef); #} '... could not add an undef where a string is expected'; # #dies_ok { # $stuff->set_option(5, {}); #} '... could not add a hash ref where a string is expected'; dies_ok { Stuff->new( options => [ undef, 10, undef, 20 ] ); } '... bad constructor params'; dies_ok { my $stuff = Stuff->new(); $stuff->add_options(undef); } '... rejects push of an invalid type'; dies_ok { my $stuff = Stuff->new(); $stuff->insert_options(undef); } '... rejects unshift of an invalid type'; dies_ok { my $stuff = Stuff->new(); $stuff->set_option_at( 0, undef ); } '... rejects set of an invalid type'; dies_ok { my $stuff = Stuff->new(); $stuff->sort_in_place_options(undef); } '... sort rejects arg of invalid type'; dies_ok { my $stuff = Stuff->new(); $stuff->option_accessor(); } '... accessor rejects 0 args'; dies_ok { my $stuff = Stuff->new(); $stuff->option_accessor( 1, 2, 3 ); } '... accessor rejects 3 args'; ## test the meta my $options = $stuff->meta->get_attribute('options'); -does_ok( $options, 'Mouse::Meta::Attribute::Native::Trait::Array' ); + +#XXX: Mouse role name is different +#does_ok( $options, 'Mouse::Meta::Attribute::Native::Trait::Array' ); is_deeply( $options->handles, { 'add_options' => 'push', 'remove_last_option' => 'pop', 'remove_first_option' => 'shift', 'insert_options' => 'unshift', 'get_option_at' => 'get', 'set_option_at' => 'set', 'num_options' => 'count', 'has_no_options' => 'is_empty', 'clear_options' => 'clear', 'splice_options' => 'splice', 'sort_options_in_place' => 'sort_in_place', 'option_accessor' => 'accessor', 'add_options_with_speed' => [ 'push' => 'funrolls', 'funbuns' ], 'prepend_prerequisites_along_with' => [ 'unshift' => 'first', 'second' ], 'descending_options' => [ 'sort_in_place' => $sort ], }, '... got the right handles mapping' ); is( $options->type_constraint->type_parameter, 'Str', '... got the right container type' ); done_testing; diff --git a/t/070_native_traits/203_trait_hash.t b/t/070_native_traits/203_trait_hash.t index 2fd2777..246b7ee 100644 --- a/t/070_native_traits/203_trait_hash.t +++ b/t/070_native_traits/203_trait_hash.t @@ -1,185 +1,186 @@ #!/usr/bin/perl use strict; use warnings; use Test::More; use Test::Exception; use Test::Mouse 'does_ok'; { package Stuff; use Mouse; has 'options' => ( traits => ['Hash'], is => 'ro', isa => 'HashRef[Str]', default => sub { {} }, handles => { 'set_option' => 'set', 'get_option' => 'get', 'has_no_options' => 'is_empty', 'num_options' => 'count', 'clear_options' => 'clear', 'delete_option' => 'delete', 'has_option' => 'exists', 'is_defined' => 'defined', 'option_accessor' => 'accessor', 'key_value' => 'kv', 'options_elements' => 'elements', 'quantity' => [ accessor => 'quantity' ], }, ); } my $stuff = Stuff->new(); isa_ok( $stuff, 'Stuff' ); can_ok( $stuff, $_ ) for qw[ set_option get_option has_no_options num_options delete_option clear_options is_defined has_option quantity option_accessor ]; ok( $stuff->has_no_options, '... we have no options' ); is( $stuff->num_options, 0, '... we have no options' ); is_deeply( $stuff->options, {}, '... no options yet' ); ok( !$stuff->has_option('foo'), '... we have no foo option' ); lives_ok { $stuff->set_option( foo => 'bar' ); } '... set the option okay'; ok( $stuff->is_defined('foo'), '... foo is defined' ); ok( !$stuff->has_no_options, '... we have options' ); is( $stuff->num_options, 1, '... we have 1 option(s)' ); ok( $stuff->has_option('foo'), '... we have a foo option' ); is_deeply( $stuff->options, { foo => 'bar' }, '... got options now' ); lives_ok { $stuff->set_option( bar => 'baz' ); } '... set the option okay'; is( $stuff->num_options, 2, '... we have 2 option(s)' ); is_deeply( $stuff->options, { foo => 'bar', bar => 'baz' }, '... got more options now' ); is( $stuff->get_option('foo'), 'bar', '... got the right option' ); is_deeply( [ $stuff->get_option(qw(foo bar)) ], [qw(bar baz)], "get multiple options at once" ); is( scalar($stuff->get_option(qw( foo bar) )), "baz", '... got last option in scalar context'); lives_ok { $stuff->set_option( oink => "blah", xxy => "flop" ); } '... set the option okay'; is( $stuff->num_options, 4, "4 options" ); is_deeply( [ $stuff->get_option(qw(foo bar oink xxy)) ], [qw(bar baz blah flop)], "get multiple options at once" ); lives_ok { $stuff->delete_option('bar'); } '... deleted the option okay'; lives_ok { $stuff->delete_option('oink','xxy'); } '... deleted multiple option okay'; is( $stuff->num_options, 1, '... we have 1 option(s)' ); is_deeply( $stuff->options, { foo => 'bar' }, '... got more options now' ); $stuff->clear_options; is_deeply( $stuff->options, {}, "... cleared options" ); lives_ok { $stuff->quantity(4); } '... options added okay with defaults'; is( $stuff->quantity, 4, 'reader part of curried accessor works' ); is_deeply( $stuff->options, { quantity => 4 }, '... returns what we expect' ); lives_ok { Stuff->new( options => { foo => 'BAR' } ); } '... good constructor params'; ## check some errors dies_ok { $stuff->set_option( bar => {} ); } '... could not add a hash ref where an string is expected'; dies_ok { Stuff->new( options => { foo => [] } ); } '... bad constructor params'; ## test the meta my $options = $stuff->meta->get_attribute('options'); -does_ok( $options, 'Mouse::Meta::Attribute::Native::Trait::Hash' ); +#XXX: Mouse role name is different +#does_ok( $options, 'Mouse::Meta::Attribute::Native::Trait::Hash' ); is_deeply( $options->handles, { 'set_option' => 'set', 'get_option' => 'get', 'has_no_options' => 'is_empty', 'num_options' => 'count', 'clear_options' => 'clear', 'delete_option' => 'delete', 'has_option' => 'exists', 'is_defined' => 'defined', 'option_accessor' => 'accessor', 'key_value' => 'kv', 'options_elements' => 'elements', 'quantity' => [ accessor => 'quantity' ], }, '... got the right handles mapping' ); is( $options->type_constraint->type_parameter, 'Str', '... got the right container type' ); $stuff->set_option( oink => "blah", xxy => "flop" ); my @key_value = sort{ $a->[0] cmp $b->[0] } $stuff->key_value; is_deeply( \@key_value, [ sort{ $a->[0] cmp $b->[0] } [ 'xxy', 'flop' ], [ 'quantity', 4 ], [ 'oink', 'blah' ] ], '... got the right key value pairs' ) or do{ require Data::Dumper; diag(Data::Dumper::Dumper(\@key_value)) }; my %options_elements = $stuff->options_elements; is_deeply( \%options_elements, { 'oink' => 'blah', 'quantity' => 4, 'xxy' => 'flop' }, '... got the right hash elements' ); done_testing; diff --git a/t/070_native_traits/204_trait_number.t b/t/070_native_traits/204_trait_number.t index afd66ea..7891b8a 100644 --- a/t/070_native_traits/204_trait_number.t +++ b/t/070_native_traits/204_trait_number.t @@ -1,113 +1,116 @@ #!/usr/bin/perl use strict; use warnings; use Test::More; use Test::Mouse; { package Real; use Mouse; has 'integer' => ( traits => ['Number'], is => 'ro', - isa => 'Int', + isa => 'Num', default => 5, + + writer => 'set', handles => { - set => 'set', +# set => 'set', add => 'add', sub => 'sub', mul => 'mul', div => 'div', mod => 'mod', abs => 'abs', inc => [ add => 1 ], dec => [ sub => 1 ], odd => [ mod => 2 ], cut_in_half => [ div => 2 ], }, ); } my $real = Real->new; isa_ok( $real, 'Real' ); can_ok( $real, $_ ) for qw[ set add sub mul div mod abs inc dec odd cut_in_half ]; is $real->integer, 5, 'Default to five'; $real->add(10); is $real->integer, 15, 'Add ten for fithteen'; $real->sub(3); is $real->integer, 12, 'Subtract three for 12'; $real->set(10); is $real->integer, 10, 'Set to ten'; $real->div(2); is $real->integer, 5, 'divide by 2'; $real->mul(2); is $real->integer, 10, 'multiplied by 2'; $real->mod(2); is $real->integer, 0, 'Mod by 2'; $real->set(7); $real->mod(5); is $real->integer, 2, 'Mod by 5'; $real->set(-1); $real->abs; is $real->integer, 1, 'abs 1'; $real->set(12); $real->inc; is $real->integer, 13, 'inc 12'; $real->dec; is $real->integer, 12, 'dec 13'; ## test the meta my $attr = $real->meta->get_attribute('integer'); -does_ok( $attr, 'Mouse::Meta::Attribute::Native::Trait::Number' ); +#XXX: Mouse role name is different +#does_ok( $attr, 'Mouse::Meta::Attribute::Native::Trait::Number' ); is_deeply( $attr->handles, { - set => 'set', +# set => 'set', add => 'add', sub => 'sub', mul => 'mul', div => 'div', mod => 'mod', abs => 'abs', inc => [ add => 1 ], dec => [ sub => 1 ], odd => [ mod => 2 ], cut_in_half => [ div => 2 ], }, '... got the right handles mapping' ); done_testing; diff --git a/t/070_native_traits/205_trait_list.t b/t/070_native_traits/205_trait_list.t index f17f29e..780453d 100644 --- a/t/070_native_traits/205_trait_list.t +++ b/t/070_native_traits/205_trait_list.t @@ -1,168 +1,171 @@ #!/usr/bin/perl use strict; use warnings; use Test::More; use Test::Exception; use Test::Mouse 'does_ok'; my $sort; my $less; my $up; my $prod; { package Stuff; use Mouse; has '_options' => ( traits => ['Array'], is => 'ro', isa => 'ArrayRef[Int]', init_arg => 'options', default => sub { [] }, handles => { 'num_options' => 'count', 'has_no_options' => 'is_empty', 'map_options', => 'map', 'filter_options' => 'grep', 'find_option' => 'first', 'options' => 'elements', 'join_options' => 'join', 'get_option_at' => 'get', 'sorted_options' => 'sort', 'randomized_options' => 'shuffle', 'unique_options' => 'uniq', 'less_than_five' => [ grep => ($less = sub { $_ < 5 }) ], 'up_by_one' => [ map => ($up = sub { $_ + 1 }) ], - 'pairwise_options' => [ natatime => 2 ], + 'pairwise_options' => 'for_each_pair', 'dashify' => [ join => '-' ], 'descending' => [ sort => ($sort = sub { $_[1] <=> $_[0] }) ], 'product' => [ reduce => ($prod = sub { $_[0] * $_[1] }) ], }, ); } my $stuff = Stuff->new( options => [ 1 .. 10 ] ); isa_ok( $stuff, 'Stuff' ); can_ok( $stuff, $_ ) for qw[ _options num_options has_no_options map_options filter_options find_option options join_options get_option_at sorted_options randomized_options unique_options less_than_five up_by_one pairwise_options dashify descending product ]; is_deeply( $stuff->_options, [ 1 .. 10 ], '... got options' ); ok( !$stuff->has_no_options, '... we have options' ); is( $stuff->num_options, 10, '... got 2 options' ); cmp_ok( $stuff->get_option_at(0), '==', 1, '... get option 0' ); is_deeply( [ $stuff->filter_options( sub { $_ % 2 == 0 } ) ], [ 2, 4, 6, 8, 10 ], '... got the right filtered values' ); is_deeply( [ $stuff->map_options( sub { $_ * 2 } ) ], [ 2, 4, 6, 8, 10, 12, 14, 16, 18, 20 ], '... got the right mapped values' ); is( $stuff->find_option( sub { $_ % 2 == 0 } ), 2, '.. found the right option' ); is_deeply( [ $stuff->options ], [ 1 .. 10 ], '... got the list of options' ); is( $stuff->join_options(':'), '1:2:3:4:5:6:7:8:9:10', '... joined the list of options by :' ); is_deeply( [ $stuff->sorted_options ], [ sort ( 1 .. 10 ) ], '... got sorted options (default sort order)' ); is_deeply( [ $stuff->sorted_options( sub { $_[1] <=> $_[0] } ) ], [ sort { $b <=> $a } ( 1 .. 10 ) ], '... got sorted options (descending sort order) ' ); -throws_ok { $stuff->sorted_options('foo') } -qr/Argument must be a code reference/, +dies_ok { my @options = $stuff->sorted_options('foo') } +#throws_ok { $stuff->sorted_options('foo') } +#qr/Argument must be a code reference/, 'error when sort receives a non-coderef argument'; is_deeply( [ sort { $a <=> $b } $stuff->randomized_options ], [ 1 .. 10 ] ); my @pairs; $stuff->pairwise_options(sub { push @pairs, [@_] }); is_deeply( \@pairs, [ [ 1, 2 ], [ 3, 4 ], [ 5, 6 ], [ 7, 8 ], [ 9, 10 ] ] ); # test the currying is_deeply( [ $stuff->less_than_five() ], [ 1 .. 4 ] ); is_deeply( [ $stuff->up_by_one() ], [ 2 .. 11 ] ); is( $stuff->dashify, '1-2-3-4-5-6-7-8-9-10' ); is_deeply( [ $stuff->descending ], [ reverse 1 .. 10 ] ); is( $stuff->product, 3628800 ); my $other_stuff = Stuff->new( options => [ 1, 1, 2, 3, 5 ] ); is_deeply( [ $other_stuff->unique_options ], [1, 2, 3, 5] ); ## test the meta my $options = $stuff->meta->get_attribute('_options'); -does_ok( $options, 'Mouse::Meta::Attribute::Native::Trait::Array' ); + +#XXX: Mouse role name is different +#does_ok( $options, 'Mouse::Meta::Attribute::Native::Trait::Array' ); is_deeply( $options->handles, { 'num_options' => 'count', 'has_no_options' => 'is_empty', 'map_options', => 'map', 'filter_options' => 'grep', 'find_option' => 'first', 'options' => 'elements', 'join_options' => 'join', 'get_option_at' => 'get', 'sorted_options' => 'sort', 'randomized_options' => 'shuffle', 'unique_options' => 'uniq', 'less_than_five' => [ grep => $less ], 'up_by_one' => [ map => $up ], - 'pairwise_options' => [ natatime => 2 ], + 'pairwise_options' => 'for_each_pair', 'dashify' => [ join => '-' ], 'descending' => [ sort => $sort ], 'product' => [ reduce => $prod ], }, '... got the right handles mapping' ); is( $options->type_constraint->type_parameter, 'Int', '... got the right container type' ); dies_ok { $stuff->sort_in_place_options(undef); } '... sort rejects arg of invalid type'; done_testing; diff --git a/t/070_native_traits/207_trait_string.t b/t/070_native_traits/207_trait_string.t index 414ecd7..ee12cc0 100644 --- a/t/070_native_traits/207_trait_string.t +++ b/t/070_native_traits/207_trait_string.t @@ -1,117 +1,117 @@ #!/usr/bin/perl use strict; use warnings; use Test::More; use Test::Mouse 'does_ok'; my $uc; { package MyHomePage; use Mouse; has 'string' => ( traits => ['String'], is => 'rw', isa => 'Str', default => sub {''}, handles => { inc_string => 'inc', append_string => 'append', prepend_string => 'prepend', match_string => 'match', replace_string => 'replace', chop_string => 'chop', chomp_string => 'chomp', clear_string => 'clear', length_string => 'length', exclaim => [ append => '!' ], capitalize_last => [ replace => qr/(.)$/, ($uc = sub { uc $1 }) ], invalid_number => [ match => qr/\D/ ], }, ); } my $page = MyHomePage->new(); isa_ok( $page, 'MyHomePage' ); is( $page->string, '', '... got the default value' ); is( $page->length_string, 0,'... length is zero' ); $page->string('a'); is( $page->length_string, 1,'... new string has length of one' ); $page->inc_string; is( $page->string, 'b', '... got the incremented value' ); $page->inc_string; is( $page->string, 'c', '... got the incremented value (again)' ); $page->append_string("foo$/"); is( $page->string, "cfoo$/", 'appended to string' ); $page->chomp_string; is( $page->string, "cfoo", 'chomped string' ); $page->chomp_string; is( $page->string, "cfoo", 'chomped is noop' ); $page->chop_string; is( $page->string, "cfo", 'chopped string' ); $page->prepend_string("bar"); is( $page->string, 'barcfo', 'prepended to string' ); is_deeply( [ $page->match_string(qr/([ao])/) ], ["a"], "match" ); $page->replace_string( qr/([ao])/, sub { uc($1) } ); is( $page->string, 'bArcfo', "substitution" ); is( $page->length_string, 6, 'right length' ); $page->exclaim; is( $page->string, 'bArcfo!', 'exclaim!' ); $page->string('Mousex'); $page->capitalize_last; is( $page->string, 'MouseX', 'capitalize last' ); $page->string('1234'); ok( !$page->invalid_number, 'string "isn\'t an invalid number' ); $page->string('one two three four'); ok( $page->invalid_number, 'string an invalid number' ); $page->clear_string; is( $page->string, '', "clear" ); # check the meta .. my $string = $page->meta->get_attribute('string'); -does_ok( $string, 'Mouse::Meta::Attribute::Native::Trait::String' ); +#does_ok( $string, 'Mouse::Meta::Attribute::Native::Trait::String' ); is( $string->type_constraint->name, 'Str', '... got the expected type constraint' ); is_deeply( $string->handles, { inc_string => 'inc', append_string => 'append', prepend_string => 'prepend', match_string => 'match', replace_string => 'replace', chop_string => 'chop', chomp_string => 'chomp', clear_string => 'clear', length_string => 'length', exclaim => [ append => '!' ], capitalize_last => [ replace => qr/(.)$/, $uc ], invalid_number => [ match => qr/\D/ ], }, '... got the right handles methods' ); done_testing;
gfx/p5-MouseX-NativeTraits
e5de0704c2e918c6010454c036f79f0163c672d8
Various bugfix
diff --git a/lib/MouseX/NativeTraits.pm b/lib/MouseX/NativeTraits.pm index 44309c8..95438af 100644 --- a/lib/MouseX/NativeTraits.pm +++ b/lib/MouseX/NativeTraits.pm @@ -1,297 +1,297 @@ package MouseX::NativeTraits; use 5.006_002; use Mouse::Role; our $VERSION = '0.001'; requires qw(method_provider_class helper_type); -has default => ( - is => 'bare', # don't create new methods - required => 1, -); +#has default => ( +# is => 'bare', # don't create new methods +# required => 1, +#); has type_constraint => ( is => 'bare', # don't create new methods required => 1, ); has method_provider => ( is => 'ro', isa => 'Object', builder => '_build_method_provider', ); sub _build_method_provider{ my($self) = @_; my $mpc = $self->method_provider_class; Mouse::Util::load_class($mpc); return $mpc->new(attr => $self); } before _process_options => sub { my ( $self, $name, $options ) = @_; my $type = $self->helper_type; $options->{isa} = $type if !exists $options->{isa}; my $isa = Mouse::Util::TypeConstraints::find_or_create_isa_type_constraint( $options->{isa} ); ( $isa->is_a_type_of($type) ) || $self->throw_error( "The type constraint for $name must be a subtype of $type but it's a $isa"); $options->{default} = $self->_default_default if !exists $options->{default} && $self->can('_default_default'); }; around _canonicalize_handles => sub { my($next, $self, $handles_ref) = @_; if( ref($handles_ref) ne 'HASH' ) { $self->throw_error( "The 'handles' option must be a HASH reference, not $handles_ref"); } my $provider = $self->method_provider; my %handles; while(my($name, $to) = each %{$handles_ref}){ $to = [$to] if !ref $to; $provider->has_generator($to->[0]) or $self->throw_error("$to->[0] is an unsupported method type"); $handles{$name} = $to; } return %handles; }; around _make_delegation_method => sub { my( $next, $self, $handle_name, $method_to_call, @curried_args ) = @_; return $self->method_provider->generate($handle_name, $method_to_call, @curried_args); }; no Mouse::Role; 1; __END__ =head1 NAME MouseX::NativeTraits - Extend your attribute interfaces for Mouse =head1 VERSION This document describes MouseX::NativeTraits version 0.001. =head1 SYNOPSIS package MyClass; use Mouse; has mapping => ( traits => ['Hash'], is => 'rw', isa => 'HashRef[Str]', default => sub { +{} }, handles => { exists_in_mapping => 'exists', ids_in_mapping => 'keys', get_mapping => 'get', set_mapping => 'set', set_quantity => [ set => 'quantity' ], }, ); =head1 DESCRIPTION While L<Mouse> attributes provide a way to name your accessors, readers, writers, clearers and predicates, MouseX::NativeTraits provides commonly used attribute helper methods for more specific types of data. As seen in the L</SYNOPSIS>, you specify the data structure via the C<traits> parameter. These traits will be loaded automatically, so you need not load MouseX::NativeTraits explicitly. This extention is compatible with Moose native traits, although it is not a part of Mouse core. =head1 PARAMETERS =head2 handles This is like C<handles> in L<Mouse/has>, but only HASH references are allowed. Keys are method names that you want installed locally, and values are methods from the method providers (below). Currying with delegated methods works normally for C<< handles >>. =head1 NATIVE TRAITS =head2 Array Common methods for array references. has 'queue' => ( traits => ['Array'], is => 'ro', isa => 'ArrayRef[Str]', default => sub { [] }, handles => { add_item => 'push', next_item => 'shift', } ); See L<MouseX::NativeTraits::ArrayRef>. =head2 Hash Common methods for hash references. has 'options' => ( traits => ['Hash'], is => 'ro', isa => 'HashRef[Str]', default => sub { {} }, handles => { set_option => 'set', get_option => 'get', has_option => 'exists', } ); See L<MouseX::NativeTraits::HashRef>. =head2 Code Common methods for code references. has 'callback' => ( traits => ['Code'], is => 'ro', isa => 'CodeRef', default => sub { sub { 'called' } }, handles => { call => 'execute', } ); See L<MouseX::NativeTraits::CodeRef>. =head2 Bool Common methods for boolean values. has 'is_lit' => ( traits => ['Bool'], is => 'rw', isa => 'Bool', default => 0, handles => { illuminate => 'set', darken => 'unset', flip_switch => 'toggle', is_dark => 'not', } ); See L<MouseX::NativeTraits::Bool>. =head2 String Common methods for string operations. has text => ( traits => ['String'], is => 'rw', isa => 'Str', default => q{}, handles => { add_text => 'append', replace_text => 'replace', # or replace_globally } ); See L<MouseX::NativeTraits::Str>. =head2 Number Common numerical operations. has value => ( traits => ['Number'], is => 'ro', isa => 'Int', default => 5, handles => { set => 'set', add => 'add', sub => 'sub', mul => 'mul', div => 'div', mod => 'mod', abs => 'abs', } ); See L<MouseX::NativeTraits::Num>. =head2 Counter Methods for incrementing and decrementing a counter attribute. has counter => ( traits => ['Counter'], is => 'ro', isa => 'Num', default => 0, handles => { inc_counter => 'inc', dec_counter => 'dec', reset_counter => 'reset', } ); See L<MouseX::NativeTraits::Counter>. =head1 DEPENDENCIES Perl 5.6.2 or later. =head1 BUGS All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. =head1 SEE ALSO L<Mouse> L<MouseX::AttributeHelpers> L<Moose> L<Moose::Meta::Attribute::Native> L<MooseX::AttributeHelpers> =head1 AUTHORS Goro Fuji (gfx) E<lt>gfuji(at)cpan.orgE<gt> This module is based on Moose native traits written by Stevan Little and others. =head1 LICENSE AND COPYRIGHT Copyright (c) 2010, Goro Fuji (gfx), mostly based on Moose, which is (c) Infinity Interactive, Inc (L<http://www.iinteractive.com>). This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L<perlartistic> for details. =cut diff --git a/lib/MouseX/NativeTraits/Counter.pm b/lib/MouseX/NativeTraits/Counter.pm index 8ea4000..afe048d 100644 --- a/lib/MouseX/NativeTraits/Counter.pm +++ b/lib/MouseX/NativeTraits/Counter.pm @@ -1,103 +1,103 @@ package MouseX::NativeTraits::Counter; use Mouse::Role; with 'MouseX::NativeTraits'; sub method_provider_class { return 'MouseX::NativeTraits::MethodProvider::Counter'; } sub helper_type { - return 'Num'; + return 'Int'; } sub _default_default { 0 } no Mouse::Role; 1; __END__ =head1 NAME MouseX::NativeTraits::Counter - Helper trait for counter attributes =head1 SYNOPSIS package MyHomePage; use Mouse; has 'counter' => ( traits => ['Counter'], is => 'ro', isa => 'Num', default => 0, handles => { inc_counter => 'inc', dec_counter => 'dec', reset_counter => 'reset', }, ); my $page = MyHomePage->new(); $page->inc_counter; # same as $page->counter( $page->counter + 1 ); $page->dec_counter; # same as $page->counter( $page->counter - 1 ); =head1 DESCRIPTION This module provides a simple counter attribute, which can be incremented and decremented. If your attribute definition does not include any of I<is>, I<isa>, I<default> or I<handles> but does use the C<Counter> trait, then this module applies defaults as in the L</SYNOPSIS> above. This allows for a very basic counter definition: has 'foo' => (traits => ['Counter']); $obj->inc_foo; =head1 PROVIDED METHODS These methods are implemented in L<MouseX::NativeTraits::MethodProvider::Counter>. It is important to note that all those methods do in place modification of the value stored in the attribute. =over 4 =item B<set($value)> Set the counter to the specified value. =item B<inc> Increments the value stored in this slot by 1. Providing an argument will cause the counter to be increased by specified amount. =item B<dec> Decrements the value stored in this slot by 1. Providing an argument will cause the counter to be increased by specified amount. =item B<reset> Resets the value stored in this slot to it's default value. =back =head1 METHODS =over 4 =item B<meta> =item B<method_provider_class> =item B<helper_type> =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm b/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm index f69f3f9..c2459e1 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm @@ -1,520 +1,520 @@ package MouseX::NativeTraits::MethodProvider::ArrayRef; use Mouse; use List::Util; extends qw(MouseX::NativeTraits::MethodProvider); sub generate_count { my($self) = @_; my $reader = $self->reader; return sub { return scalar @{ $reader->( $_[0] ) }; }; } sub generate_is_empty { my($self) = @_; my $reader = $self->reader; return sub { return scalar(@{ $reader->( $_[0] ) }) == 0; }; } sub generate_first { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $predicate ) = @_; return List::Util::first(\&{$predicate}, @{ $reader->($instance) }); }; } sub generate_map { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; return map { $block->() } @{ $reader->($instance) }; }; } sub generate_reduce { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; our ($a, $b); return List::Util::reduce { $block->($a, $b) } @{ $reader->($instance) }; }; } sub generate_sort { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $compare ) = @_; if ($compare) { return sort { $compare->( $a, $b ) } @{ $reader->($instance) }; } else { return sort @{ $reader->($instance) }; } }; } sub generate_sort_in_place { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $compare ) = @_; my $array_ref = $reader->($instance); if($compare){ @{$array_ref} = sort { $compare->($a, $b) } @{$array_ref}; } else{ @{$array_ref} = sort @{$array_ref}; } return $instance; }; } # The sort_by algorithm comes from perlfunc/sort # See also perldoc -f sort and perldoc -q sort sub generate_sort_by { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block, $compare ) = @_; my $array_ref = $reader->($instance); my @idx; foreach (@{$array_ref}){ # intentinal use of $_ push @idx, scalar $block->($_); } # NOTE: scalar(@idx)-1 is faster than $#idx if($compare){ return @{ $array_ref }[ sort { $compare->($idx[$a], $idx[$b]) } 0 .. scalar(@idx)-1 ]; } else{ return @{ $array_ref }[ sort { $idx[$a] cmp $idx[$b] } 0 .. scalar(@idx)-1 ]; } }; } sub generate_sort_in_place_by { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block, $compare ) = @_; my $array_ref = $reader->($instance); my @idx; foreach (@{$array_ref}){ push @idx, scalar $block->($_); } if($compare){ @{ $array_ref } = @{ $array_ref }[ sort { $compare->($idx[$a], $idx[$b]) } 0 .. scalar(@idx)-1 ]; } else{ @{ $array_ref } = @{ $array_ref }[ sort { $idx[$a] cmp $idx[$b] } 0 .. scalar(@idx)-1 ]; } return $instance; }; } sub generate_shuffle { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance ) = @_; return List::Util::shuffle @{ $reader->($instance) }; }; } sub generate_grep { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $predicate ) = @_; return grep { $predicate->() } @{ $reader->($instance) }; }; } sub generate_uniq { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance ) = @_; my %seen; my $seen_undef; return grep{ (defined($_) ? ++$seen{$_} : ++$seen_undef) == 1 } @{ $reader->($instance) }; }; } sub generate_elements { my($self) = @_; my $reader = $self->reader; return sub { my ($instance) = @_; return @{ $reader->($instance) }; }; } sub generate_join { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $separator ) = @_; return join $separator, @{ $reader->($instance) }; }; } sub generate_push { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { my $instance = shift; foreach my $value(@_){ $container_type_constraint->assert_valid($value) } push @{ $reader->($instance) }, @_; return $instance; }; } else { return sub { my $instance = shift; push @{ $reader->($instance) }, @_; return $instance; }; } } sub generate_pop { my($self) = @_; my $reader = $self->reader; return sub { return pop @{ $reader->( $_[0] ) }; }; } sub generate_unshift { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { my $instance = shift; foreach my $value(@_){ $container_type_constraint->assert_valid($value) } unshift @{ $reader->($instance) }, @_; return $instance; }; } else { return sub { my $instance = shift; unshift @{ $reader->($instance) }, @_; return $instance; }; } } sub generate_shift { my($self) = @_; my $reader = $self->reader; return sub { return shift @{ $reader->( $_[0] ) }; }; } __PACKAGE__->meta->add_method(generate_get => \&generate_fetch); # alias sub generate_fetch { my($self, $handle_name) = @_; my $reader = $self->reader; return sub { return $reader->( $_[0] )->[ $_[1] ]; }; } __PACKAGE__->meta->add_method(generate_set => \&generate_store); # alias sub generate_store { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { $container_type_constraint->assert_valid( $_[2] ); $reader->( $_[0] )->[ $_[1] ] = $_[2]; }; } else { return sub { $reader->( $_[0] )->[ $_[1] ] = $_[2]; }; } } sub generate_accessor { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { my $instance = shift; if ( @_ == 1 ) { # reader return $reader->($instance)->[ $_[0] ]; } elsif ( @_ == 2 ) { # writer $container_type_constraint->assert_valid( $_[1] ); - $reader->($self)->[ $_[0] ] = $_[1]; + $reader->($instance)->[ $_[0] ] = $_[1]; } else { confess "One or two arguments expected, not " . @_; } }; } else { return sub { my $instance = shift; if ( @_ == 1 ) { # reader return $reader->($instance)->[ $_[0] ]; } elsif ( @_ == 2 ) { # writer $reader->($instance)->[ $_[0] ] = $_[1]; return $instance; } else { confess "One or two arguments expected, not " . @_; } }; } } sub generate_clear { my($self) = @_; my $reader = $self->reader; return sub { @{ $reader->( $_[0] ) } = (); return $_[0]; }; } __PACKAGE__->meta->add_method(generate_delete => \&generate_remove); # alias sub generate_remove { my($self) = @_; my $reader = $self->reader; return sub { return splice @{ $reader->( $_[0] ) }, $_[1], 1; }; } sub generate_insert { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { my($instance, $index, $value) = @_; $container_type_constraint->assert_valid( $value ); splice @{ $reader->( $instance ) }, $index, 0, $value; return $instance; }; } else { return sub { my($instance, $index, $value) = @_; splice @{ $reader->( $instance ) }, $index, 0, $value; return $instance; }; } } sub generate_splice { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { my ( $self, $i, $j, @elems ) = @_; foreach my $value(@elems){ $container_type_constraint->assert_valid($value); } return splice @{ $reader->($self) }, $i, $j, @elems; }; } else { return sub { my ( $self, $i, $j, @elems ) = @_; return splice @{ $reader->($self) }, $i, $j, @elems; }; } } sub generate_for_each { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; foreach my $element(@{ $reader->instance($instance) }){ $block->($element); } return $instance; }; } sub generate_for_each_pair { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; - my $array_ref = $reader->instance($instance); + my $array_ref = $reader->($instance); for(my $i = 0; $i < @{$array_ref}; $i += 2){ $block->($array_ref->[$i], $array_ref->[$i + 1]); } return $instance; }; } no Mouse; __PACKAGE__->meta->make_immutable(strict_constructor => 1); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::Array - Provides methods for ArrayRef =head1 DESCRIPTION This class provides method generators for the C<Array> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Array> for details. =head1 METHOD GENERATORS =over 4 =item generate_count =item generate_is_empty =item generate_first =item generate_map =item generate_reduce =item generate_sort =item generate_sort_in_place =item generate_sort_by =item generate_sort_in_place_by =item generate_shuffle =item generate_grep =item generate_uniq =item generate_elements =item generate_join =item generate_push =item generate_pop =item generate_unshift =item generate_shift =item generate_fetch =item generate_get The same as C<generate_fetch> =item generate_store =item generate_set The same as C<generate_store> =item generate_accessor =item generate_clear =item generate_remove =item generate_delete The same as C<generate_remove>. Note that it is different from C<CORE::delete>. =item generate_insert =item generate_splice =item generate_for_each =item generate_for_each_pair =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/lib/MouseX/NativeTraits/MethodProvider/CodeRef.pm b/lib/MouseX/NativeTraits/MethodProvider/CodeRef.pm index 76db1fe..68e8911 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/CodeRef.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/CodeRef.pm @@ -1,42 +1,54 @@ package MouseX::NativeTraits::MethodProvider::CodeRef; use Mouse; extends qw(MouseX::NativeTraits::MethodProvider); sub generate_execute { my($self) = @_; my $reader = $self->reader; return sub { - my ($self, @args) = @_; - $reader->($self)->(@args); + my ($instance, @args) = @_; + $reader->($instance)->(@args); + }; +} + +sub generate_execute_method { + my($self) = @_; + my $reader = $self->reader; + + return sub { + my ($instance, @args) = @_; + $reader->($instance)->($instance, @args); }; } no Mouse; __PACKAGE__->meta->make_immutable(strict_constructor => 1); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::CodeRef - Provides methods for CodeRef =head1 DESCRIPTION This class provides method generators for the C<Code> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Code> for details. =head1 METHOD GENERATORS =over 4 =item generate_execute +=item generate_execute_method + =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/lib/MouseX/NativeTraits/MethodProvider/Counter.pm b/lib/MouseX/NativeTraits/MethodProvider/Counter.pm index df2620d..429c306 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/Counter.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/Counter.pm @@ -1,113 +1,113 @@ package MouseX::NativeTraits::MethodProvider::Counter; use Mouse; extends qw(MouseX::NativeTraits::MethodProvider); sub generate_reset { my($self) = @_; my $attr = $self->attr; my $writer = $self->writer; my $builder; my $default; if($attr->has_builder){ $builder = $attr->builder; } else { $default = $attr->default; if(ref $default){ $builder = $default; } } if(ref $builder){ return sub { my($instance) = @_; $writer->($instance, $instance->$builder()); }; } else{ return sub { my($instance) = @_; $writer->($instance, $default); }; } } sub generate_set{ my($self) = @_; my $writer = $self->writer; return sub { $writer->( $_[0], $_[1] ) }; } sub generate_inc { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; - my $constraint = $self->type_constraint; + my $constraint = $self->attr->type_constraint; return sub { my($instance, $value) = @_; if(@_ > 1){ $constraint->assert_valid($value); } else{ $value = 1; } $writer->($instance, $reader->($instance) + $value); }; } sub generate_dec { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; - my $constraint = $self->type_constraint; + my $constraint = $self->attr->type_constraint; return sub { my($instance, $value) = @_; if(@_ > 1){ $constraint->assert_valid($value); } else{ $value = 1; } $writer->($instance, $reader->($instance) - $value); }; } no Mouse; __PACKAGE__->meta->make_immutable(strict_constructor => 1); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::Counter - Provides methods for Counter =head1 DESCRIPTION This class provides method generators for the C<Counter> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Counter> for details. =head1 METHOD GENERATORS =over 4 =item generate_reset =item generate_set =item generate_inc =item generate_dec =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm b/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm index cf13b78..22406c3 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm @@ -1,314 +1,312 @@ package MouseX::NativeTraits::MethodProvider::HashRef; use Mouse; extends qw(MouseX::NativeTraits::MethodProvider); sub generate_keys { my($self) = @_; my $reader = $self->reader; return sub { return keys %{ $reader->( $_[0] ) } }; } sub generate_sorted_keys { my($self) = @_; my $reader = $self->reader; return sub { return sort keys %{ $reader->( $_[0] ) } }; } sub generate_values { my($self) = @_; my $reader = $self->reader; return sub { return values %{ $reader->( $_[0] ) } }; } sub generate_kv { my($self) = @_; my $reader = $self->reader; return sub { my($instance) = @_; my $hash_ref = $reader->( $instance ); return map { [ $_ => $hash_ref->{$_} ] } keys %{ $hash_ref }; }; } sub generate_elements { my($self) = @_; my $reader = $self->reader; return sub { return %{ $reader->( $_[0] ) }; }; } sub generate_count { my($self) = @_; my $reader = $self->reader; return sub { return scalar keys %{ $reader->( $_[0] ) }; }; } sub generate_is_empty { my($self) = @_; my $reader = $self->reader; return sub { - return scalar(keys %{ $reader->( $_[0] ) }) != 0; + return scalar(keys %{ $reader->( $_[0] ) }) == 0; }; } sub generate_exists { my($self) = @_; my $reader = $self->reader; return sub { return exists $reader->( $_[0] )->{ $_[1] } }; } sub generate_defined { my($self) = @_; my $reader = $self->reader; return sub { return defined $reader->( $_[0] )->{ $_[1] } }; } __PACKAGE__->meta->add_method(generate_get => \&generate_fetch); sub generate_fetch { my($self) = @_; my $reader = $self->reader; return sub { if ( @_ == 2 ) { return $reader->( $_[0] )->{ $_[1] }; } else { my ( $self, @keys ) = @_; return @{ $reader->($self) }{@keys}; } }; } __PACKAGE__->meta->add_method(generate_set => \&generate_store); sub generate_store { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ($constraint->__is_parameterized){ my $container_type_constraint = $constraint->type_parameter; return sub { my ( $self, @kv ) = @_; my ( @keys, @values ); while (my($key, $value) = splice @kv, 0, 2 ) { $container_type_constraint->assert_valid($value); push @keys, $key; push @values, $value; } if ( @values > 1 ) { @{ $reader->($self) }{@keys} = @values; } else { $reader->($self)->{ $keys[0] } = $values[0]; } }; } else { return sub { my ( $instance, @kv ) = @_; my $hash_ref = $reader->($instance); while (my($key, $value) = splice @kv, 0, 2) { $hash_ref->{$key} = $value; } }; } } sub generate_accessor { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ($constraint->__is_parameterized){ my $container_type_constraint = $constraint->type_parameter; return sub { my $self = shift; if ( @_ == 1 ) { # reader return $reader->($self)->{ $_[0] }; } elsif ( @_ == 2 ) { # writer - $constraint->assert_valid( $_[1] ); + $container_type_constraint->assert_valid( $_[1] ); $reader->($self)->{ $_[0] } = $_[1]; } else { confess "One or two arguments expected, not " . @_; } }; } else { return sub { my $self = shift; if ( @_ == 1 ) { # reader return $reader->($self)->{ $_[0] }; } elsif ( @_ == 2 ) { # writer $reader->($self)->{ $_[0] } = $_[1]; } else { confess "One or two arguments expected, not " . @_; } }; } } sub generate_clear { my($self) = @_; - my $reader = $self->reader; - my $writer = $self->writer; - my $constraint = $self->type_constraint; + my $reader = $self->reader; return sub { %{ $reader->( $_[0] ) } = () }; } sub generate_delete { my($self) = @_; - my $reader = $self->reader; + my $reader = $self->reader; return sub { my $instance = shift; return delete @{ $reader->($instance) }{@_}; }; } sub generate_for_each_key { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $block) = @_; foreach my $key(keys %{$reader->($instance)}){ $block->($key); } return $instance; }; } sub generate_for_each_value { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $block) = @_; foreach my $value(values %{$reader->($instance)}){ $block->($value); } return $instance; }; } sub generate_for_each_pair { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $block) = @_; my $hash_ref = $reader->($instance); foreach my $key(keys %{$hash_ref}){ $block->($key, $hash_ref->{$key}); } return $instance; }; } no Mouse; __PACKAGE__->meta->make_immutable(strict_constructor => 1); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::HashRef - Provides methods for HashRef =head1 DESCRIPTION This class provides method generators for the C<Hash> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Hash> for details. =head1 METHOD GENERATORS =over 4 =item generate_keys =item generate_sorted_keys =item generate_values =item generate_kv =item generate_elements =item generate_count =item generate_is_empty =item generate_exists =item generate_defined =item generate_fetch =item generate_get The same as C<generate_fetch>. =item generate_store =item generate_set The same as C<generate_store>. =item generate_accessor =item generate_clear =item generate_delete =item generate_for_each_key =item generate_for_each_value =item generate_for_each_pair =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/lib/MouseX/NativeTraits/MethodProvider/Num.pm b/lib/MouseX/NativeTraits/MethodProvider/Num.pm index a370a88..06d0a64 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/Num.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/Num.pm @@ -1,104 +1,120 @@ package MouseX::NativeTraits::MethodProvider::Num; use Mouse; extends qw(MouseX::NativeTraits::MethodProvider); sub generate_add { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; my $constraint = $self->attr->type_constraint; return sub { my($instance, $value) = @_; $constraint->assert_valid($value); $writer->( $instance, $reader->( $instance ) + $value ); }; } sub generate_sub { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; my $constraint = $self->attr->type_constraint; return sub { my($instance, $value) = @_; $constraint->assert_valid($value); $writer->( $instance, $reader->( $instance ) - $value ); }; } sub generate_mul { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; my $constraint = $self->attr->type_constraint; return sub { my($instance, $value) = @_; $constraint->assert_valid($value); $writer->( $instance, $reader->( $instance ) * $value ); }; } sub generate_div { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; my $constraint = $self->attr->type_constraint; return sub { my($instance, $value) = @_; $constraint->assert_valid($value); $writer->( $instance, $reader->( $instance ) / $value ); }; } +sub generate_mod { + my($self) = @_; + my $reader = $self->reader; + my $writer = $self->writer; + my $constraint = $self->attr->type_constraint; + + return sub { + my($instance, $value) = @_; + $constraint->assert_valid($value); + $writer->( $instance, $reader->( $instance ) % $value ); + }; +} + + sub generate_abs { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my($instance) = @_; $writer->( $instance, abs( $reader->( $instance ) ) ); }; } no Mouse; __PACKAGE__->meta->make_immutable(strict_constructor => 1); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::Num - Provides methods for Num =head1 DESCRIPTION This class provides method generators for the C<Number> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Number> for details. =head1 METHOD GENERATORS =over 4 =item generate_add =item generate_sub =item generate_mul =item generate_div +=item generate_mod + =item generate_abs =back =head1 SEE ALSO L<MouseX::NativeTraits>. =cut
gfx/p5-MouseX-NativeTraits
ee5e9228b6c8fa9782fc27fb622ba7d0d3d31ce9
Import tests from Moose
diff --git a/t/070_native_traits/010_array_from_role.t b/t/070_native_traits/010_array_from_role.t new file mode 100644 index 0000000..6d47aa4 --- /dev/null +++ b/t/070_native_traits/010_array_from_role.t @@ -0,0 +1,46 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +use Test::More; +use Test::Exception; + +{ + package Foo; + use Mouse; + + has 'bar' => ( is => 'rw' ); + + package Stuffed::Role; + use Mouse::Role; + + has 'options' => ( + traits => ['Array'], + is => 'ro', + isa => 'ArrayRef[Foo]', + ); + + package Bulkie::Role; + use Mouse::Role; + + has 'stuff' => ( + traits => ['Array'], + is => 'ro', + isa => 'ArrayRef', + handles => { + get_stuff => 'get', + } + ); + + package Stuff; + use Mouse; + + ::lives_ok{ with 'Stuffed::Role'; + } '... this should work correctly'; + + ::lives_ok{ with 'Bulkie::Role'; + } '... this should work correctly'; +} + +done_testing; diff --git a/t/070_native_traits/020_remove_attribute.t b/t/070_native_traits/020_remove_attribute.t new file mode 100644 index 0000000..d42dfa7 --- /dev/null +++ b/t/070_native_traits/020_remove_attribute.t @@ -0,0 +1,51 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +use Test::More; +use Test::Exception; + +{ + package MyHomePage; + use Mouse; + + has 'counter' => ( + traits => ['Counter'], + is => 'ro', + isa => 'Int', + default => 0, + handles => { + inc_counter => 'inc', + dec_counter => 'dec', + reset_counter => 'reset', + } + ); +} + +my $page = MyHomePage->new(); +isa_ok( $page, 'MyHomePage' ); + +can_ok( $page, $_ ) for qw[ + counter + dec_counter + inc_counter + reset_counter +]; + +lives_ok { + $page->meta->remove_attribute('counter'); +} +'... removed the counter attribute okay'; + +ok( !$page->meta->has_attribute('counter'), + '... no longer has the attribute' ); + +ok( !$page->can($_), "... our class no longer has the $_ method" ) for qw[ + counter + dec_counter + inc_counter + reset_counter +]; + +done_testing; diff --git a/t/070_native_traits/100_collection_with_roles.t b/t/070_native_traits/100_collection_with_roles.t new file mode 100644 index 0000000..abd2a0c --- /dev/null +++ b/t/070_native_traits/100_collection_with_roles.t @@ -0,0 +1,124 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +use Test::More; + +{ + package Subject; + + use Mouse::Role; + + has observers => ( + traits => ['Array'], + is => 'ro', + isa => 'ArrayRef[Observer]', + auto_deref => 1, + default => sub { [] }, + handles => { + 'add_observer' => 'push', + 'count_observers' => 'count', + }, + ); + + sub notify { + my ($self) = @_; + foreach my $observer ( $self->observers() ) { + $observer->update($self); + } + } +} + +{ + package Observer; + + use Mouse::Role; + + requires 'update'; +} + +{ + package Counter; + + use Mouse; + + with 'Subject'; + + has count => ( + traits => ['Counter'], + is => 'ro', + isa => 'Int', + default => 0, + handles => { + inc_counter => 'inc', + dec_counter => 'dec', + }, + ); + + after qw(inc_counter dec_counter) => sub { + my ($self) = @_; + $self->notify(); + }; +} + +{ + + package Display; + + use Test::More; + + use Mouse; + + with 'Observer'; + + sub update { + my ( $self, $subject ) = @_; + like $subject->count, qr{^-?\d+$}, + 'Observed number ' . $subject->count; + } +} + +package main; + +my $count = Counter->new(); + +ok( $count->can('add_observer'), 'add_observer method added' ); + +ok( $count->can('count_observers'), 'count_observers method added' ); + +ok( $count->can('inc_counter'), 'inc_counter method added' ); + +ok( $count->can('dec_counter'), 'dec_counter method added' ); + +$count->add_observer( Display->new() ); + +is( $count->count_observers, 1, 'Only one observer' ); + +is( $count->count, 0, 'Default to zero' ); + +$count->inc_counter; + +is( $count->count, 1, 'Increment to one ' ); + +$count->inc_counter for ( 1 .. 6 ); + +is( $count->count, 7, 'Increment up to seven' ); + +$count->dec_counter; + +is( $count->count, 6, 'Decrement to 6' ); + +$count->dec_counter for ( 1 .. 5 ); + +is( $count->count, 1, 'Decrement to 1' ); + +$count->dec_counter for ( 1 .. 2 ); + +is( $count->count, -1, 'Negative numbers' ); + +$count->inc_counter; + +is( $count->count, 0, 'Back to zero' ); + +done_testing; diff --git a/t/070_native_traits/201_trait_counter.t b/t/070_native_traits/201_trait_counter.t new file mode 100644 index 0000000..6e96bbd --- /dev/null +++ b/t/070_native_traits/201_trait_counter.t @@ -0,0 +1,79 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +use Test::More; +use Test::Mouse 'does_ok'; + +{ + package MyHomePage; + use Mouse; + + has 'counter' => ( + traits => ['Counter'], + is => 'ro', + isa => 'Int', + default => 0, + handles => { + inc_counter => 'inc', + dec_counter => 'dec', + reset_counter => 'reset', + set_counter => 'set' + } + ); +} + +my $page = MyHomePage->new(); +isa_ok( $page, 'MyHomePage' ); + +can_ok( $page, $_ ) for qw[ + dec_counter + inc_counter + reset_counter + set_counter +]; + +is( $page->counter, 0, '... got the default value' ); + +$page->inc_counter; +is( $page->counter, 1, '... got the incremented value' ); + +$page->inc_counter; +is( $page->counter, 2, '... got the incremented value (again)' ); + +$page->dec_counter; +is( $page->counter, 1, '... got the decremented value' ); + +$page->reset_counter; +is( $page->counter, 0, '... got the original value' ); + +$page->set_counter(5); +is( $page->counter, 5, '... set the value' ); + +$page->inc_counter(2); +is( $page->counter, 7, '... increment by arg' ); + +$page->dec_counter(5); +is( $page->counter, 2, '... decrement by arg' ); + +# check the meta .. + +my $counter = $page->meta->get_attribute('counter'); +does_ok( $counter, 'Mouse::Meta::Attribute::Native::Trait::Counter' ); + +is( $counter->type_constraint->name, 'Int', + '... got the expected type constraint' ); + +is_deeply( + $counter->handles, + { + inc_counter => 'inc', + dec_counter => 'dec', + reset_counter => 'reset', + set_counter => 'set' + }, + '... got the right handles methods' +); + +done_testing; diff --git a/t/070_native_traits/202_trait_array.t b/t/070_native_traits/202_trait_array.t new file mode 100644 index 0000000..15fce2d --- /dev/null +++ b/t/070_native_traits/202_trait_array.t @@ -0,0 +1,274 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +use Test::More; +use Test::Exception; +use Test::Mouse 'does_ok'; + +my $sort; + +{ + + package Stuff; + use Mouse; + + has 'options' => ( + traits => ['Array'], + is => 'ro', + isa => 'ArrayRef[Str]', + default => sub { [] }, + handles => { + 'add_options' => 'push', + 'remove_last_option' => 'pop', + 'remove_first_option' => 'shift', + 'insert_options' => 'unshift', + 'get_option_at' => 'get', + 'set_option_at' => 'set', + 'num_options' => 'count', + 'has_no_options' => 'is_empty', + 'clear_options' => 'clear', + 'splice_options' => 'splice', + 'sort_options_in_place' => 'sort_in_place', + 'option_accessor' => 'accessor', + 'add_options_with_speed' => + [ 'push' => 'funrolls', 'funbuns' ], + 'prepend_prerequisites_along_with' => + [ 'unshift' => 'first', 'second' ], + 'descending_options' => + [ 'sort_in_place' => ($sort = sub { $_[1] <=> $_[0] }) ], + } + ); +} + +my $stuff = Stuff->new( options => [ 10, 12 ] ); +isa_ok( $stuff, 'Stuff' ); + +can_ok( $stuff, $_ ) for qw[ + add_options + remove_last_option + remove_first_option + insert_options + get_option_at + set_option_at + num_options + clear_options + has_no_options + sort_options_in_place + option_accessor +]; + +is_deeply( $stuff->options, [ 10, 12 ], '... got options' ); + +ok( !$stuff->has_no_options, '... we have options' ); +is( $stuff->num_options, 2, '... got 2 options' ); + +is( $stuff->remove_last_option, 12, '... removed the last option' ); +is( $stuff->remove_first_option, 10, '... removed the last option' ); + +is_deeply( $stuff->options, [], '... no options anymore' ); + +ok( $stuff->has_no_options, '... no options' ); +is( $stuff->num_options, 0, '... got no options' ); + +lives_ok { + $stuff->add_options( 1, 2, 3 ); +} +'... set the option okay'; + +is_deeply( $stuff->options, [ 1, 2, 3 ], '... got options now' ); + +ok( !$stuff->has_no_options, '... has options' ); +is( $stuff->num_options, 3, '... got 3 options' ); + +is( $stuff->get_option_at(0), 1, '... get option at index 0' ); +is( $stuff->get_option_at(1), 2, '... get option at index 1' ); +is( $stuff->get_option_at(2), 3, '... get option at index 2' ); + +lives_ok { + $stuff->set_option_at( 1, 100 ); +} +'... set the option okay'; + +is( $stuff->get_option_at(1), 100, '... get option at index 1' ); + +lives_ok { + $stuff->add_options( 10, 15 ); +} +'... set the option okay'; + +is_deeply( $stuff->options, [ 1, 100, 3, 10, 15 ], + '... got more options now' ); + +is( $stuff->num_options, 5, '... got 5 options' ); + +is( $stuff->remove_last_option, 15, '... removed the last option' ); + +is( $stuff->num_options, 4, '... got 4 options' ); +is_deeply( $stuff->options, [ 1, 100, 3, 10 ], '... got diff options now' ); + +lives_ok { + $stuff->insert_options( 10, 20 ); +} +'... set the option okay'; + +is( $stuff->num_options, 6, '... got 6 options' ); +is_deeply( $stuff->options, [ 10, 20, 1, 100, 3, 10 ], + '... got diff options now' ); + +is( $stuff->get_option_at(0), 10, '... get option at index 0' ); +is( $stuff->get_option_at(1), 20, '... get option at index 1' ); +is( $stuff->get_option_at(3), 100, '... get option at index 3' ); + +is( $stuff->remove_first_option, 10, '... getting the first option' ); + +is( $stuff->num_options, 5, '... got 5 options' ); +is( $stuff->get_option_at(0), 20, '... get option at index 0' ); + +$stuff->clear_options; +is_deeply( $stuff->options, [], "... clear options" ); + +$stuff->add_options( 5, 1, 2, 3 ); +$stuff->sort_options_in_place; +is_deeply( $stuff->options, [ 1, 2, 3, 5 ], + "... sort options in place (default sort order)" ); + +$stuff->sort_options_in_place( sub { $_[1] <=> $_[0] } ); +is_deeply( $stuff->options, [ 5, 3, 2, 1 ], + "... sort options in place (descending order)" ); + +$stuff->clear_options(); +$stuff->add_options( 5, 1, 2, 3 ); +lives_ok { + $stuff->descending_options(); +} +'... curried sort in place lives ok'; + +is_deeply( $stuff->options, [ 5, 3, 2, 1 ], "... sort currying" ); + +throws_ok { $stuff->sort_options_in_place('foo') } +qr/Argument must be a code reference/, + 'error when sort_in_place receives a non-coderef argument'; + +$stuff->clear_options; + +lives_ok { + $stuff->add_options('tree'); +} +'... set the options okay'; + +lives_ok { + $stuff->add_options_with_speed( 'compatible', 'safe' ); +} +'... add options with speed okay'; + +is_deeply( + $stuff->options, [qw/tree funrolls funbuns compatible safe/], + 'check options after add_options_with_speed' +); + +lives_ok { + $stuff->prepend_prerequisites_along_with(); +} +'... add prerequisite options okay'; + +$stuff->clear_options; +$stuff->add_options( 1, 2 ); + +lives_ok { + $stuff->splice_options( 1, 0, 'foo' ); +} +'... splice_options works'; + +is_deeply( + $stuff->options, [ 1, 'foo', 2 ], + 'splice added expected option' +); + +is( $stuff->option_accessor( 1 => 'foo++' ), 'foo++' ); +is( $stuff->option_accessor(1), 'foo++' ); + +## check some errors + +#dies_ok { +# $stuff->insert_options(undef); +#} '... could not add an undef where a string is expected'; +# +#dies_ok { +# $stuff->set_option(5, {}); +#} '... could not add a hash ref where a string is expected'; + +dies_ok { + Stuff->new( options => [ undef, 10, undef, 20 ] ); +} +'... bad constructor params'; + +dies_ok { + my $stuff = Stuff->new(); + $stuff->add_options(undef); +} +'... rejects push of an invalid type'; + +dies_ok { + my $stuff = Stuff->new(); + $stuff->insert_options(undef); +} +'... rejects unshift of an invalid type'; + +dies_ok { + my $stuff = Stuff->new(); + $stuff->set_option_at( 0, undef ); +} +'... rejects set of an invalid type'; + +dies_ok { + my $stuff = Stuff->new(); + $stuff->sort_in_place_options(undef); +} +'... sort rejects arg of invalid type'; + +dies_ok { + my $stuff = Stuff->new(); + $stuff->option_accessor(); +} +'... accessor rejects 0 args'; + +dies_ok { + my $stuff = Stuff->new(); + $stuff->option_accessor( 1, 2, 3 ); +} +'... accessor rejects 3 args'; + +## test the meta + +my $options = $stuff->meta->get_attribute('options'); +does_ok( $options, 'Mouse::Meta::Attribute::Native::Trait::Array' ); + +is_deeply( + $options->handles, + { + 'add_options' => 'push', + 'remove_last_option' => 'pop', + 'remove_first_option' => 'shift', + 'insert_options' => 'unshift', + 'get_option_at' => 'get', + 'set_option_at' => 'set', + 'num_options' => 'count', + 'has_no_options' => 'is_empty', + 'clear_options' => 'clear', + 'splice_options' => 'splice', + 'sort_options_in_place' => 'sort_in_place', + 'option_accessor' => 'accessor', + 'add_options_with_speed' => [ 'push' => 'funrolls', 'funbuns' ], + 'prepend_prerequisites_along_with' => + [ 'unshift' => 'first', 'second' ], + 'descending_options' => [ 'sort_in_place' => $sort ], + }, + '... got the right handles mapping' +); + +is( $options->type_constraint->type_parameter, 'Str', + '... got the right container type' ); + +done_testing; diff --git a/t/070_native_traits/203_trait_hash.t b/t/070_native_traits/203_trait_hash.t new file mode 100644 index 0000000..2fd2777 --- /dev/null +++ b/t/070_native_traits/203_trait_hash.t @@ -0,0 +1,185 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +use Test::More; +use Test::Exception; +use Test::Mouse 'does_ok'; + +{ + package Stuff; + use Mouse; + + has 'options' => ( + traits => ['Hash'], + is => 'ro', + isa => 'HashRef[Str]', + default => sub { {} }, + handles => { + 'set_option' => 'set', + 'get_option' => 'get', + 'has_no_options' => 'is_empty', + 'num_options' => 'count', + 'clear_options' => 'clear', + 'delete_option' => 'delete', + 'has_option' => 'exists', + 'is_defined' => 'defined', + 'option_accessor' => 'accessor', + 'key_value' => 'kv', + 'options_elements' => 'elements', + 'quantity' => [ accessor => 'quantity' ], + }, + ); +} + +my $stuff = Stuff->new(); +isa_ok( $stuff, 'Stuff' ); + +can_ok( $stuff, $_ ) for qw[ + set_option + get_option + has_no_options + num_options + delete_option + clear_options + is_defined + has_option + quantity + option_accessor +]; + +ok( $stuff->has_no_options, '... we have no options' ); +is( $stuff->num_options, 0, '... we have no options' ); + +is_deeply( $stuff->options, {}, '... no options yet' ); +ok( !$stuff->has_option('foo'), '... we have no foo option' ); + +lives_ok { + $stuff->set_option( foo => 'bar' ); +} +'... set the option okay'; + +ok( $stuff->is_defined('foo'), '... foo is defined' ); + +ok( !$stuff->has_no_options, '... we have options' ); +is( $stuff->num_options, 1, '... we have 1 option(s)' ); +ok( $stuff->has_option('foo'), '... we have a foo option' ); +is_deeply( $stuff->options, { foo => 'bar' }, '... got options now' ); + +lives_ok { + $stuff->set_option( bar => 'baz' ); +} +'... set the option okay'; + +is( $stuff->num_options, 2, '... we have 2 option(s)' ); +is_deeply( $stuff->options, { foo => 'bar', bar => 'baz' }, + '... got more options now' ); + +is( $stuff->get_option('foo'), 'bar', '... got the right option' ); + +is_deeply( [ $stuff->get_option(qw(foo bar)) ], [qw(bar baz)], + "get multiple options at once" ); + +is( scalar($stuff->get_option(qw( foo bar) )), "baz", + '... got last option in scalar context'); + +lives_ok { + $stuff->set_option( oink => "blah", xxy => "flop" ); +} +'... set the option okay'; + +is( $stuff->num_options, 4, "4 options" ); +is_deeply( [ $stuff->get_option(qw(foo bar oink xxy)) ], + [qw(bar baz blah flop)], "get multiple options at once" ); + +lives_ok { + $stuff->delete_option('bar'); +} +'... deleted the option okay'; + +lives_ok { + $stuff->delete_option('oink','xxy'); +} +'... deleted multiple option okay'; + +is( $stuff->num_options, 1, '... we have 1 option(s)' ); +is_deeply( $stuff->options, { foo => 'bar' }, '... got more options now' ); + +$stuff->clear_options; + +is_deeply( $stuff->options, {}, "... cleared options" ); + +lives_ok { + $stuff->quantity(4); +} +'... options added okay with defaults'; + +is( $stuff->quantity, 4, 'reader part of curried accessor works' ); + +is_deeply( $stuff->options, { quantity => 4 }, '... returns what we expect' ); + +lives_ok { + Stuff->new( options => { foo => 'BAR' } ); +} +'... good constructor params'; + +## check some errors + +dies_ok { + $stuff->set_option( bar => {} ); +} +'... could not add a hash ref where an string is expected'; + +dies_ok { + Stuff->new( options => { foo => [] } ); +} +'... bad constructor params'; + +## test the meta + +my $options = $stuff->meta->get_attribute('options'); +does_ok( $options, 'Mouse::Meta::Attribute::Native::Trait::Hash' ); + +is_deeply( + $options->handles, + { + 'set_option' => 'set', + 'get_option' => 'get', + 'has_no_options' => 'is_empty', + 'num_options' => 'count', + 'clear_options' => 'clear', + 'delete_option' => 'delete', + 'has_option' => 'exists', + 'is_defined' => 'defined', + 'option_accessor' => 'accessor', + 'key_value' => 'kv', + 'options_elements' => 'elements', + 'quantity' => [ accessor => 'quantity' ], + }, + '... got the right handles mapping' +); + +is( $options->type_constraint->type_parameter, 'Str', + '... got the right container type' ); + +$stuff->set_option( oink => "blah", xxy => "flop" ); +my @key_value = sort{ $a->[0] cmp $b->[0] } $stuff->key_value; +is_deeply( + \@key_value, + [ sort{ $a->[0] cmp $b->[0] } [ 'xxy', 'flop' ], [ 'quantity', 4 ], [ 'oink', 'blah' ] ], + '... got the right key value pairs' +) or do{ require Data::Dumper; diag(Data::Dumper::Dumper(\@key_value)) }; + +my %options_elements = $stuff->options_elements; +is_deeply( + \%options_elements, + { + 'oink' => 'blah', + 'quantity' => 4, + 'xxy' => 'flop' + }, + '... got the right hash elements' +); + +done_testing; diff --git a/t/070_native_traits/204_trait_number.t b/t/070_native_traits/204_trait_number.t new file mode 100644 index 0000000..afd66ea --- /dev/null +++ b/t/070_native_traits/204_trait_number.t @@ -0,0 +1,113 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +use Test::More; +use Test::Mouse; + +{ + package Real; + use Mouse; + + has 'integer' => ( + traits => ['Number'], + is => 'ro', + isa => 'Int', + default => 5, + handles => { + set => 'set', + add => 'add', + sub => 'sub', + mul => 'mul', + div => 'div', + mod => 'mod', + abs => 'abs', + inc => [ add => 1 ], + dec => [ sub => 1 ], + odd => [ mod => 2 ], + cut_in_half => [ div => 2 ], + + }, + ); +} + +my $real = Real->new; +isa_ok( $real, 'Real' ); + +can_ok( $real, $_ ) for qw[ + set add sub mul div mod abs inc dec odd cut_in_half +]; + +is $real->integer, 5, 'Default to five'; + +$real->add(10); + +is $real->integer, 15, 'Add ten for fithteen'; + +$real->sub(3); + +is $real->integer, 12, 'Subtract three for 12'; + +$real->set(10); + +is $real->integer, 10, 'Set to ten'; + +$real->div(2); + +is $real->integer, 5, 'divide by 2'; + +$real->mul(2); + +is $real->integer, 10, 'multiplied by 2'; + +$real->mod(2); + +is $real->integer, 0, 'Mod by 2'; + +$real->set(7); + +$real->mod(5); + +is $real->integer, 2, 'Mod by 5'; + +$real->set(-1); + +$real->abs; + +is $real->integer, 1, 'abs 1'; + +$real->set(12); + +$real->inc; + +is $real->integer, 13, 'inc 12'; + +$real->dec; + +is $real->integer, 12, 'dec 13'; + +## test the meta + +my $attr = $real->meta->get_attribute('integer'); +does_ok( $attr, 'Mouse::Meta::Attribute::Native::Trait::Number' ); + +is_deeply( + $attr->handles, + { + set => 'set', + add => 'add', + sub => 'sub', + mul => 'mul', + div => 'div', + mod => 'mod', + abs => 'abs', + inc => [ add => 1 ], + dec => [ sub => 1 ], + odd => [ mod => 2 ], + cut_in_half => [ div => 2 ], + }, + '... got the right handles mapping' +); + +done_testing; diff --git a/t/070_native_traits/205_trait_list.t b/t/070_native_traits/205_trait_list.t new file mode 100644 index 0000000..f17f29e --- /dev/null +++ b/t/070_native_traits/205_trait_list.t @@ -0,0 +1,168 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +use Test::More; +use Test::Exception; +use Test::Mouse 'does_ok'; + +my $sort; +my $less; +my $up; +my $prod; +{ + package Stuff; + use Mouse; + + has '_options' => ( + traits => ['Array'], + is => 'ro', + isa => 'ArrayRef[Int]', + init_arg => 'options', + default => sub { [] }, + handles => { + 'num_options' => 'count', + 'has_no_options' => 'is_empty', + 'map_options', => 'map', + 'filter_options' => 'grep', + 'find_option' => 'first', + 'options' => 'elements', + 'join_options' => 'join', + 'get_option_at' => 'get', + 'sorted_options' => 'sort', + 'randomized_options' => 'shuffle', + 'unique_options' => 'uniq', + 'less_than_five' => [ grep => ($less = sub { $_ < 5 }) ], + 'up_by_one' => [ map => ($up = sub { $_ + 1 }) ], + 'pairwise_options' => [ natatime => 2 ], + 'dashify' => [ join => '-' ], + 'descending' => [ sort => ($sort = sub { $_[1] <=> $_[0] }) ], + 'product' => [ reduce => ($prod = sub { $_[0] * $_[1] }) ], + }, + ); + +} + +my $stuff = Stuff->new( options => [ 1 .. 10 ] ); +isa_ok( $stuff, 'Stuff' ); + +can_ok( $stuff, $_ ) for qw[ + _options + num_options + has_no_options + map_options + filter_options + find_option + options + join_options + get_option_at + sorted_options + randomized_options + unique_options + less_than_five + up_by_one + pairwise_options + dashify + descending + product +]; + +is_deeply( $stuff->_options, [ 1 .. 10 ], '... got options' ); + +ok( !$stuff->has_no_options, '... we have options' ); +is( $stuff->num_options, 10, '... got 2 options' ); +cmp_ok( $stuff->get_option_at(0), '==', 1, '... get option 0' ); + +is_deeply( + [ $stuff->filter_options( sub { $_ % 2 == 0 } ) ], + [ 2, 4, 6, 8, 10 ], + '... got the right filtered values' +); + +is_deeply( + [ $stuff->map_options( sub { $_ * 2 } ) ], + [ 2, 4, 6, 8, 10, 12, 14, 16, 18, 20 ], + '... got the right mapped values' +); + +is( $stuff->find_option( sub { $_ % 2 == 0 } ), 2, + '.. found the right option' ); + +is_deeply( [ $stuff->options ], [ 1 .. 10 ], '... got the list of options' ); + +is( $stuff->join_options(':'), '1:2:3:4:5:6:7:8:9:10', + '... joined the list of options by :' ); + +is_deeply( + [ $stuff->sorted_options ], [ sort ( 1 .. 10 ) ], + '... got sorted options (default sort order)' +); +is_deeply( + [ $stuff->sorted_options( sub { $_[1] <=> $_[0] } ) ], + [ sort { $b <=> $a } ( 1 .. 10 ) ], + '... got sorted options (descending sort order) ' +); + +throws_ok { $stuff->sorted_options('foo') } +qr/Argument must be a code reference/, + 'error when sort receives a non-coderef argument'; + +is_deeply( [ sort { $a <=> $b } $stuff->randomized_options ], [ 1 .. 10 ] ); + +my @pairs; +$stuff->pairwise_options(sub { push @pairs, [@_] }); +is_deeply( \@pairs, [ [ 1, 2 ], [ 3, 4 ], [ 5, 6 ], [ 7, 8 ], [ 9, 10 ] ] ); + +# test the currying +is_deeply( [ $stuff->less_than_five() ], [ 1 .. 4 ] ); + +is_deeply( [ $stuff->up_by_one() ], [ 2 .. 11 ] ); + +is( $stuff->dashify, '1-2-3-4-5-6-7-8-9-10' ); + +is_deeply( [ $stuff->descending ], [ reverse 1 .. 10 ] ); + +is( $stuff->product, 3628800 ); + +my $other_stuff = Stuff->new( options => [ 1, 1, 2, 3, 5 ] ); +is_deeply( [ $other_stuff->unique_options ], [1, 2, 3, 5] ); + +## test the meta + +my $options = $stuff->meta->get_attribute('_options'); +does_ok( $options, 'Mouse::Meta::Attribute::Native::Trait::Array' ); + +is_deeply( + $options->handles, + { + 'num_options' => 'count', + 'has_no_options' => 'is_empty', + 'map_options', => 'map', + 'filter_options' => 'grep', + 'find_option' => 'first', + 'options' => 'elements', + 'join_options' => 'join', + 'get_option_at' => 'get', + 'sorted_options' => 'sort', + 'randomized_options' => 'shuffle', + 'unique_options' => 'uniq', + 'less_than_five' => [ grep => $less ], + 'up_by_one' => [ map => $up ], + 'pairwise_options' => [ natatime => 2 ], + 'dashify' => [ join => '-' ], + 'descending' => [ sort => $sort ], + 'product' => [ reduce => $prod ], + }, + '... got the right handles mapping' +); + +is( $options->type_constraint->type_parameter, 'Int', + '... got the right container type' ); + +dies_ok { + $stuff->sort_in_place_options(undef); +} +'... sort rejects arg of invalid type'; + +done_testing; diff --git a/t/070_native_traits/207_trait_string.t b/t/070_native_traits/207_trait_string.t new file mode 100644 index 0000000..414ecd7 --- /dev/null +++ b/t/070_native_traits/207_trait_string.t @@ -0,0 +1,117 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +use Test::More; +use Test::Mouse 'does_ok'; + +my $uc; +{ + package MyHomePage; + use Mouse; + + has 'string' => ( + traits => ['String'], + is => 'rw', + isa => 'Str', + default => sub {''}, + handles => { + inc_string => 'inc', + append_string => 'append', + prepend_string => 'prepend', + match_string => 'match', + replace_string => 'replace', + chop_string => 'chop', + chomp_string => 'chomp', + clear_string => 'clear', + length_string => 'length', + exclaim => [ append => '!' ], + capitalize_last => [ replace => qr/(.)$/, ($uc = sub { uc $1 }) ], + invalid_number => [ match => qr/\D/ ], + }, + ); +} + +my $page = MyHomePage->new(); +isa_ok( $page, 'MyHomePage' ); + +is( $page->string, '', '... got the default value' ); +is( $page->length_string, 0,'... length is zero' ); + +$page->string('a'); +is( $page->length_string, 1,'... new string has length of one' ); + +$page->inc_string; +is( $page->string, 'b', '... got the incremented value' ); + +$page->inc_string; +is( $page->string, 'c', '... got the incremented value (again)' ); + +$page->append_string("foo$/"); +is( $page->string, "cfoo$/", 'appended to string' ); + +$page->chomp_string; +is( $page->string, "cfoo", 'chomped string' ); + +$page->chomp_string; +is( $page->string, "cfoo", 'chomped is noop' ); + +$page->chop_string; +is( $page->string, "cfo", 'chopped string' ); + +$page->prepend_string("bar"); +is( $page->string, 'barcfo', 'prepended to string' ); + +is_deeply( [ $page->match_string(qr/([ao])/) ], ["a"], "match" ); + +$page->replace_string( qr/([ao])/, sub { uc($1) } ); +is( $page->string, 'bArcfo', "substitution" ); +is( $page->length_string, 6, 'right length' ); + +$page->exclaim; +is( $page->string, 'bArcfo!', 'exclaim!' ); + +$page->string('Mousex'); +$page->capitalize_last; +is( $page->string, 'MouseX', 'capitalize last' ); + +$page->string('1234'); +ok( !$page->invalid_number, 'string "isn\'t an invalid number' ); + +$page->string('one two three four'); +ok( $page->invalid_number, 'string an invalid number' ); + +$page->clear_string; +is( $page->string, '', "clear" ); + +# check the meta .. + +my $string = $page->meta->get_attribute('string'); +does_ok( $string, 'Mouse::Meta::Attribute::Native::Trait::String' ); + +is( + $string->type_constraint->name, 'Str', + '... got the expected type constraint' +); + +is_deeply( + $string->handles, + { + inc_string => 'inc', + append_string => 'append', + prepend_string => 'prepend', + match_string => 'match', + replace_string => 'replace', + chop_string => 'chop', + chomp_string => 'chomp', + clear_string => 'clear', + length_string => 'length', + exclaim => [ append => '!' ], + capitalize_last => [ replace => qr/(.)$/, $uc ], + invalid_number => [ match => qr/\D/ ], + }, + '... got the right handles methods' +); + +done_testing; diff --git a/t/070_native_traits/208_trait_bool.t b/t/070_native_traits/208_trait_bool.t new file mode 100644 index 0000000..8d10928 --- /dev/null +++ b/t/070_native_traits/208_trait_bool.t @@ -0,0 +1,43 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +use Test::More; + +{ + package Room; + use Mouse; + + has 'is_lit' => ( + traits => ['Bool'], + is => 'rw', + isa => 'Bool', + default => 0, + handles => { + illuminate => 'set', + darken => 'unset', + flip_switch => 'toggle', + is_dark => 'not', + }, + ) +} + +my $room = Room->new; +$room->illuminate; +ok( $room->is_lit, 'set is_lit to 1 using ->illuminate' ); +ok( !$room->is_dark, 'check if is_dark does the right thing' ); + +$room->darken; +ok( !$room->is_lit, 'set is_lit to 0 using ->darken' ); +ok( $room->is_dark, 'check if is_dark does the right thing' ); + +$room->flip_switch; +ok( $room->is_lit, 'toggle is_lit back to 1 using ->flip_switch' ); +ok( !$room->is_dark, 'check if is_dark does the right thing' ); + +$room->flip_switch; +ok( !$room->is_lit, 'toggle is_lit back to 0 again using ->flip_switch' ); +ok( $room->is_dark, 'check if is_dark does the right thing' ); + +done_testing; diff --git a/t/070_native_traits/209_trait_code.t b/t/070_native_traits/209_trait_code.t new file mode 100644 index 0000000..158f93a --- /dev/null +++ b/t/070_native_traits/209_trait_code.t @@ -0,0 +1,48 @@ +use strict; +use warnings; + +use Test::More; + +{ + package Thingy; + use Mouse; + + has callback => ( + traits => ['Code'], + is => 'ro', + isa => 'CodeRef', + required => 1, + handles => { 'invoke_callback' => 'execute' }, + ); + + has callback_method => ( + traits => ['Code'], + is => 'ro', + isa => 'CodeRef', + required => 1, + handles => { 'invoke_method_callback' => 'execute_method' }, + ); + + has multiplier => ( + traits => ['Code'], + is => 'ro', + isa => 'CodeRef', + required => 1, + handles => { 'multiply' => 'execute' }, + ); +} + +my $i = 0; +my $thingy = Thingy->new( + callback => sub { ++$i }, + multiplier => sub { $_[0] * 2 }, + callback_method => sub { shift->multiply(@_) }, +); + +is($i, 0); +$thingy->invoke_callback; +is($i, 1); +is($thingy->multiply(3), 6); +is($thingy->invoke_method_callback(3), 6); + +done_testing;
gfx/p5-MouseX-NativeTraits
5ba2fa4ce10e5697c5c29476e8d61c45a5f59433
Remove VERSIONs; who needs those values?
diff --git a/lib/MouseX/NativeTraits/ArrayRef.pm b/lib/MouseX/NativeTraits/ArrayRef.pm index 7a53e0e..dd21977 100644 --- a/lib/MouseX/NativeTraits/ArrayRef.pm +++ b/lib/MouseX/NativeTraits/ArrayRef.pm @@ -1,236 +1,234 @@ package MouseX::NativeTraits::ArrayRef; use Mouse::Role; -our $VERSION = '0.001'; - with 'MouseX::NativeTraits'; sub method_provider_class { return 'MouseX::NativeTraits::MethodProvider::ArrayRef'; } sub helper_type { return 'ArrayRef'; } no Mouse::Role; 1; __END__ =head1 NAME MouseX::NativeTraits::ArrayRef - Helper trait for ArrayRef attributes =head1 SYNOPSIS package Stuff; use Mouse; has 'options' => ( traits => ['Array'], is => 'ro', isa => 'ArrayRef[Str]', default => sub { [] }, handles => { all_options => 'elements', add_option => 'push', map_options => 'map', filter_options => 'grep', find_option => 'first', get_option => 'get', join_options => 'join', count_options => 'count', has_options => 'count', has_no_options => 'is_empty', sorted_options => 'sort', }, ); no Moose; 1; =head1 DESCRIPTION This module provides an Array attribute which provides a number of array operations. =head1 PROVIDED METHODS These methods are implemented in L<MouseX::NativeTraits::MethodProvider::ArrayRef>. =over 4 =item B<count> Returns the number of elements in the array. $stuff = Stuff->new; $stuff->options(["foo", "bar", "baz", "boo"]); my $count = $stuff->count_options; print "$count\n"; # prints 4 =item B<is_empty> Returns a boolean value that is true when the array has no elements. $stuff->has_no_options ? die "No options!\n" : print "Good boy.\n"; =item B<elements> Returns all of the elements of the array. my @option = $stuff->all_options; print "@options\n"; # prints "foo bar baz boo" =item B<get($index)> Returns an element of the array by its index. You can also use negative index numbers, just as with Perl's core array handling. my $option = $stuff->get_option(1); print "$option\n"; # prints "bar" =item B<pop> =item B<push($value1, $value2, value3 ...)> =item B<shift> =item B<unshift($value1, $value2, value3 ...)> =item B<splice($offset, $length, @values)> These methods are all equivalent to the Perl core functions of the same name. =item B<first( sub { ... } )> This method returns the first item matching item in the array, just like L<List::Util>'s C<first> function. The matching is done with a subroutine reference you pass to this method. The reference will be called against each element in the array until one matches or all elements have been checked. my $found = $stuff->find_option( sub { /^b/ } ); print "$found\n"; # prints "bar" =item B<grep( sub { ... } )> This method returns every element matching a given criteria, just like Perl's core C<grep> function. This method requires a subroutine which implements the matching logic. my @found = $stuff->filter_options( sub { /^b/ } ); print "@found\n"; # prints "bar baz boo" =item B<map( sub { ... } )> This method transforms every element in the array and returns a new array, just like Perl's core C<map> function. This method requires a subroutine which implements the transformation. my @mod_options = $stuff->map_options( sub { $_ . "-tag" } ); print "@mod_options\n"; # prints "foo-tag bar-tag baz-tag boo-tag" =item B<reduce( sub { ... } )> This method condenses an array into a single value, by passing a function the value so far and the next value in the array, just like L<List::Util>'s C<reduce> function. The reducing is done with a subroutine reference you pass to this method. my $found = $stuff->reduce_options( sub { $_[0] . $_[1] } ); print "$found\n"; # prints "foobarbazboo" =item B<sort( sub { ... } )> Returns a the array in sorted order. You can provide an optional subroutine reference to sort with (as you can with Perl's core C<sort> function). However, instead of using C<$a> and C<$b>, you will need to use C<$_[0]> and C<$_[1]> instead. # ascending ASCIIbetical my @sorted = $stuff->sort_options(); # Descending alphabetical order my @sorted_options = $stuff->sort_options( sub { lc $_[1] cmp lc $_[0] } ); print "@sorted_options\n"; # prints "foo boo baz bar" =item B<sort_in_place> Sorts the array I<in place>, modifying the value of the attribute. You can provide an optional subroutine reference to sort with (as you can with Perl's core C<sort> function). However, instead of using C<$a> and C<$b>, you will need to use C<$_[0]> and C<$_[1]> instead. =item B<shuffle> Returns the array, with indices in random order, like C<shuffle> from L<List::Util>. =item B<uniq> Returns the array, with all duplicate elements removed, like C<uniq> from L<List::MoreUtils>. =item B<join($str)> Joins every element of the array using the separator given as argument, just like Perl's core C<join> function. my $joined = $stuff->join_options( ':' ); print "$joined\n"; # prints "foo:bar:baz:boo" =item B<set($index, $value)> Given an index and a value, sets the specified array element's value. =item B<delete($index)> Removes the element at the given index from the array. =item B<insert($index, $value)> Inserts a new element into the array at the given index. =item B<clear> Empties the entire array, like C<@array = ()>. =item B<accessor> This method provides a get/set accessor for the array, based on array indexes. If passed one argument, it returns the value at the specified index. If passed two arguments, it sets the value of the specified index. =item B<for_each(sub{ ... })> This method calls the given subroutine with each element of the array, like Perl's core C<foreach> statement. =item B<for_each_pair( sub{ ... } )> This method calls the given subroutine with each two element of the array, as if the array is a list of pairs. =back =head1 METHODS =over 4 =item B<meta> =item B<method_provider_class> =item B<helper_type> =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/lib/MouseX/NativeTraits/Bool.pm b/lib/MouseX/NativeTraits/Bool.pm index ef50870..9733d00 100644 --- a/lib/MouseX/NativeTraits/Bool.pm +++ b/lib/MouseX/NativeTraits/Bool.pm @@ -1,95 +1,93 @@ package MouseX::NativeTraits::Bool; use Mouse::Role; -our $VERSION = '0.001'; - with 'MouseX::NativeTraits'; sub method_provider_class { return 'MouseX::NativeTraits::MethodProvider::Bool'; } sub helper_type { return 'Bool'; } 1; __END__ =head1 NAME MouseX::NativeTraits::Bool - Helper trait for Bool attributes =head1 SYNOPSIS package Room; use Mouse; has 'is_lit' => ( traits => ['Bool'], is => 'rw', isa => 'Bool', default => 0, handles => { illuminate => 'set', darken => 'unset', flip_switch => 'toggle', is_dark => 'not', }, ); my $room = Room->new(); $room->illuminate; # same as $room->is_lit(1); $room->darken; # same as $room->is_lit(0); $room->flip_switch; # same as $room->is_lit(not $room->is_lit); return $room->is_dark; # same as !$room->is_lit =head1 DESCRIPTION This provides a simple boolean attribute, which supports most of the basic math operations. =head1 PROVIDED METHODS These methods are implemented in L<MouseX::NativeTraits::MethodProvider::Bool>. It is important to note that all those methods do in place modification of the value stored in the attribute. =over 4 =item B<set> Sets the value to true. =item B<unset> Set the value to false. =item B<toggle> Toggles the value. If it's true, set to false, and vice versa. =item B<not> Equivalent of 'not C<$value>'. =back =head1 METHODS =over 4 =item B<meta> =item B<method_provider_class> =item B<helper_type> =back =head1 SEE ALSO L<MouseX::NativeTraits>. =cut diff --git a/lib/MouseX/NativeTraits/CodeRef.pm b/lib/MouseX/NativeTraits/CodeRef.pm index 17cda59..8a2f2e2 100644 --- a/lib/MouseX/NativeTraits/CodeRef.pm +++ b/lib/MouseX/NativeTraits/CodeRef.pm @@ -1,72 +1,70 @@ package MouseX::NativeTraits::CodeRef; use Mouse::Role; -our $VERSION = '0.001'; - with 'MouseX::NativeTraits'; sub method_provider_class { return 'MouseX::NativeTraits::MethodProvider::CodeRef'; } sub helper_type { return 'CodeRef'; } 1; __END__ =head1 NAME MouseX::NativeTraits::CodeRef - Helper trait for CodeRef attributes =head1 SYNOPSIS package Foo; use Mouse; has 'callback' => ( traits => ['Code'], is => 'ro', isa => 'CodeRef', default => sub { sub { print "called" } }, handles => { call => 'execute', }, ); my $foo = Foo->new; $foo->call; # prints "called" =head1 DESCRIPTION This provides operations on coderef attributes. =head1 PROVIDED METHODS =over 4 =item B<execute(@args)> Calls the coderef with the given args. =back =head1 METHODS =over 4 =item B<meta> =item B<method_provider_class> =item B<helper_type> =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/lib/MouseX/NativeTraits/Counter.pm b/lib/MouseX/NativeTraits/Counter.pm index bce82ef..8ea4000 100644 --- a/lib/MouseX/NativeTraits/Counter.pm +++ b/lib/MouseX/NativeTraits/Counter.pm @@ -1,105 +1,103 @@ package MouseX::NativeTraits::Counter; use Mouse::Role; -our $VERSION = '0.001'; - with 'MouseX::NativeTraits'; sub method_provider_class { return 'MouseX::NativeTraits::MethodProvider::Counter'; } sub helper_type { return 'Num'; } sub _default_default { 0 } no Mouse::Role; 1; __END__ =head1 NAME MouseX::NativeTraits::Counter - Helper trait for counter attributes =head1 SYNOPSIS package MyHomePage; use Mouse; has 'counter' => ( traits => ['Counter'], is => 'ro', isa => 'Num', default => 0, handles => { inc_counter => 'inc', dec_counter => 'dec', reset_counter => 'reset', }, ); my $page = MyHomePage->new(); $page->inc_counter; # same as $page->counter( $page->counter + 1 ); $page->dec_counter; # same as $page->counter( $page->counter - 1 ); =head1 DESCRIPTION This module provides a simple counter attribute, which can be incremented and decremented. If your attribute definition does not include any of I<is>, I<isa>, I<default> or I<handles> but does use the C<Counter> trait, then this module applies defaults as in the L</SYNOPSIS> above. This allows for a very basic counter definition: has 'foo' => (traits => ['Counter']); $obj->inc_foo; =head1 PROVIDED METHODS These methods are implemented in L<MouseX::NativeTraits::MethodProvider::Counter>. It is important to note that all those methods do in place modification of the value stored in the attribute. =over 4 =item B<set($value)> Set the counter to the specified value. =item B<inc> Increments the value stored in this slot by 1. Providing an argument will cause the counter to be increased by specified amount. =item B<dec> Decrements the value stored in this slot by 1. Providing an argument will cause the counter to be increased by specified amount. =item B<reset> Resets the value stored in this slot to it's default value. =back =head1 METHODS =over 4 =item B<meta> =item B<method_provider_class> =item B<helper_type> =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/lib/MouseX/NativeTraits/HashRef.pm b/lib/MouseX/NativeTraits/HashRef.pm index 56d748e..86eac0c 100644 --- a/lib/MouseX/NativeTraits/HashRef.pm +++ b/lib/MouseX/NativeTraits/HashRef.pm @@ -1,139 +1,137 @@ package MouseX::NativeTraits::HashRef; use Mouse::Role; -our $VERSION = '0.001'; - with 'MouseX::NativeTraits'; sub method_provider_class { return 'MouseX::NativeTraits::MethodProvider::HashRef'; } sub helper_type { return 'HashRef'; } no Mouse::Role; 1; __END__ =head1 NAME MouseX::NativeTraits::HashRef - Helper trait for HashRef attributes =head1 SYNOPSIS package Stuff; use Mouse; has 'options' => ( traits => ['Hash'], is => 'ro', isa => 'HashRef[Str]', default => sub { {} }, handles => { set_option => 'set', get_option => 'get', has_no_options => 'is_empty', num_options => 'count', delete_option => 'delete', pairs => 'kv', }, ); =head1 DESCRIPTION This module provides a Hash attribute which provides a number of hash-like operations. =head1 PROVIDED METHODS These methods are implemented in L<MouseX::NativeTraits::MethodProvider::HashRef>. =over 4 =item B<get($key, $key2, $key3...)> Returns values from the hash. In list context return a list of values in the hash for the given keys. In scalar context returns the value for the last key specified. =item B<set($key =E<gt> $value, $key2 =E<gt> $value2...)> Sets the elements in the hash to the given values. =item B<delete($key, $key2, $key3...)> Removes the elements with the given keys. =item B<exists($key)> Returns true if the given key is present in the hash. =item B<defined($key)> Returns true if the value of a given key is defined. =item B<keys> Returns the list of keys in the hash. =item B<sorted_keys> Returns the list of sorted keys in the hash. =item B<values> Returns the list of values in the hash. =item B<kv> Returns the key/value pairs in the hash as an array of array references. for my $pair ( $object->options->pairs ) { print "$pair->[0] = $pair->[1]\n"; } =item B<elements> Returns the key/value pairs in the hash as a flattened list. =item B<clear> Resets the hash to an empty value, like C<%hash = ()>. =item B<count> Returns the number of elements in the hash. Also useful for not empty: C<< has_options => 'count' >>. =item B<is_empty> If the hash is populated, returns false. Otherwise, returns true. =item B<accessor> If passed one argument, returns the value of the specified key. If passed two arguments, sets the value of the specified key. =back =head1 METHODS =over 4 =item B<meta> =item B<method_provider_class> =item B<helper_type> =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/lib/MouseX/NativeTraits/MethodProvider.pm b/lib/MouseX/NativeTraits/MethodProvider.pm index ab213ff..ab26045 100644 --- a/lib/MouseX/NativeTraits/MethodProvider.pm +++ b/lib/MouseX/NativeTraits/MethodProvider.pm @@ -1,112 +1,110 @@ package MouseX::NativeTraits::MethodProvider; use Mouse; -our $VERSION = '0.001'; - has attr => ( is => 'ro', isa => 'Object', required => 1, weak_ref => 1, ); has reader => ( is => 'ro', lazy_build => 1, ); has writer => ( is => 'ro', lazy_build => 1, ); sub _build_reader { my($self) = @_; return $self->attr->get_read_method_ref; } sub _build_writer { my($self) = @_; return $self->attr->get_write_method_ref; } sub has_generator { my($self, $name) = @_; return $self->meta->has_method("generate_$name"); } sub generate { my($self, $handle_name, $method_to_call) = @_; my @curried_args; ($method_to_call, @curried_args) = @{$method_to_call}; my $code = $self->meta ->get_method_body("generate_$method_to_call")->($self); if(@curried_args){ return sub { my $instance = shift; $code->($instance, @curried_args, @_); }; } else{ return $code; } } sub get_generators { my($self) = @_; return grep{ s/\A generate_ //xms } $self->meta->get_method_list; } no Mouse; __PACKAGE__->meta->make_immutable(strict_constructor => 1); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider - The common base class for method providers =head1 DESCRIPTION This class is the common base class for method providers. =head1 ATTRIBUTES =over 4 =item attr =item reader Shortcut for C<< $provider->attr->get_read_method_ref >>. =item writer Shortcut for C<< $provider->attr->get_write_method_ref >>. =back =head1 METHODS =over 4 =item has_generator =item generate =item get_generators =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm b/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm index fc39e63..f69f3f9 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/ArrayRef.pm @@ -1,517 +1,515 @@ package MouseX::NativeTraits::MethodProvider::ArrayRef; use Mouse; -our $VERSION = '0.001'; - use List::Util; extends qw(MouseX::NativeTraits::MethodProvider); sub generate_count { my($self) = @_; my $reader = $self->reader; return sub { return scalar @{ $reader->( $_[0] ) }; }; } sub generate_is_empty { my($self) = @_; my $reader = $self->reader; return sub { return scalar(@{ $reader->( $_[0] ) }) == 0; }; } sub generate_first { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $predicate ) = @_; return List::Util::first(\&{$predicate}, @{ $reader->($instance) }); }; } sub generate_map { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; return map { $block->() } @{ $reader->($instance) }; }; } sub generate_reduce { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; our ($a, $b); return List::Util::reduce { $block->($a, $b) } @{ $reader->($instance) }; }; } sub generate_sort { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $compare ) = @_; if ($compare) { return sort { $compare->( $a, $b ) } @{ $reader->($instance) }; } else { return sort @{ $reader->($instance) }; } }; } sub generate_sort_in_place { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $compare ) = @_; my $array_ref = $reader->($instance); if($compare){ @{$array_ref} = sort { $compare->($a, $b) } @{$array_ref}; } else{ @{$array_ref} = sort @{$array_ref}; } return $instance; }; } # The sort_by algorithm comes from perlfunc/sort # See also perldoc -f sort and perldoc -q sort sub generate_sort_by { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block, $compare ) = @_; my $array_ref = $reader->($instance); my @idx; foreach (@{$array_ref}){ # intentinal use of $_ push @idx, scalar $block->($_); } # NOTE: scalar(@idx)-1 is faster than $#idx if($compare){ return @{ $array_ref }[ sort { $compare->($idx[$a], $idx[$b]) } 0 .. scalar(@idx)-1 ]; } else{ return @{ $array_ref }[ sort { $idx[$a] cmp $idx[$b] } 0 .. scalar(@idx)-1 ]; } }; } sub generate_sort_in_place_by { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block, $compare ) = @_; my $array_ref = $reader->($instance); my @idx; foreach (@{$array_ref}){ push @idx, scalar $block->($_); } if($compare){ @{ $array_ref } = @{ $array_ref }[ sort { $compare->($idx[$a], $idx[$b]) } 0 .. scalar(@idx)-1 ]; } else{ @{ $array_ref } = @{ $array_ref }[ sort { $idx[$a] cmp $idx[$b] } 0 .. scalar(@idx)-1 ]; } return $instance; }; } sub generate_shuffle { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance ) = @_; return List::Util::shuffle @{ $reader->($instance) }; }; } sub generate_grep { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $predicate ) = @_; return grep { $predicate->() } @{ $reader->($instance) }; }; } sub generate_uniq { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance ) = @_; my %seen; my $seen_undef; return grep{ (defined($_) ? ++$seen{$_} : ++$seen_undef) == 1 } @{ $reader->($instance) }; }; } sub generate_elements { my($self) = @_; my $reader = $self->reader; return sub { my ($instance) = @_; return @{ $reader->($instance) }; }; } sub generate_join { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $separator ) = @_; return join $separator, @{ $reader->($instance) }; }; } sub generate_push { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { my $instance = shift; foreach my $value(@_){ $container_type_constraint->assert_valid($value) } push @{ $reader->($instance) }, @_; return $instance; }; } else { return sub { my $instance = shift; push @{ $reader->($instance) }, @_; return $instance; }; } } sub generate_pop { my($self) = @_; my $reader = $self->reader; return sub { return pop @{ $reader->( $_[0] ) }; }; } sub generate_unshift { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { my $instance = shift; foreach my $value(@_){ $container_type_constraint->assert_valid($value) } unshift @{ $reader->($instance) }, @_; return $instance; }; } else { return sub { my $instance = shift; unshift @{ $reader->($instance) }, @_; return $instance; }; } } sub generate_shift { my($self) = @_; my $reader = $self->reader; return sub { return shift @{ $reader->( $_[0] ) }; }; } __PACKAGE__->meta->add_method(generate_get => \&generate_fetch); # alias sub generate_fetch { my($self, $handle_name) = @_; my $reader = $self->reader; return sub { return $reader->( $_[0] )->[ $_[1] ]; }; } __PACKAGE__->meta->add_method(generate_set => \&generate_store); # alias sub generate_store { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { $container_type_constraint->assert_valid( $_[2] ); $reader->( $_[0] )->[ $_[1] ] = $_[2]; }; } else { return sub { $reader->( $_[0] )->[ $_[1] ] = $_[2]; }; } } sub generate_accessor { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { my $instance = shift; if ( @_ == 1 ) { # reader return $reader->($instance)->[ $_[0] ]; } elsif ( @_ == 2 ) { # writer $container_type_constraint->assert_valid( $_[1] ); $reader->($self)->[ $_[0] ] = $_[1]; } else { confess "One or two arguments expected, not " . @_; } }; } else { return sub { my $instance = shift; if ( @_ == 1 ) { # reader return $reader->($instance)->[ $_[0] ]; } elsif ( @_ == 2 ) { # writer $reader->($instance)->[ $_[0] ] = $_[1]; return $instance; } else { confess "One or two arguments expected, not " . @_; } }; } } sub generate_clear { my($self) = @_; my $reader = $self->reader; return sub { @{ $reader->( $_[0] ) } = (); return $_[0]; }; } __PACKAGE__->meta->add_method(generate_delete => \&generate_remove); # alias sub generate_remove { my($self) = @_; my $reader = $self->reader; return sub { return splice @{ $reader->( $_[0] ) }, $_[1], 1; }; } sub generate_insert { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { my($instance, $index, $value) = @_; $container_type_constraint->assert_valid( $value ); splice @{ $reader->( $instance ) }, $index, 0, $value; return $instance; }; } else { return sub { my($instance, $index, $value) = @_; splice @{ $reader->( $instance ) }, $index, 0, $value; return $instance; }; } } sub generate_splice { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ( $constraint->__is_parameterized ){ my $container_type_constraint = $constraint->type_parameter; return sub { my ( $self, $i, $j, @elems ) = @_; foreach my $value(@elems){ $container_type_constraint->assert_valid($value); } return splice @{ $reader->($self) }, $i, $j, @elems; }; } else { return sub { my ( $self, $i, $j, @elems ) = @_; return splice @{ $reader->($self) }, $i, $j, @elems; }; } } sub generate_for_each { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; foreach my $element(@{ $reader->instance($instance) }){ $block->($element); } return $instance; }; } sub generate_for_each_pair { my($self) = @_; my $reader = $self->reader; return sub { my ( $instance, $block ) = @_; my $array_ref = $reader->instance($instance); for(my $i = 0; $i < @{$array_ref}; $i += 2){ $block->($array_ref->[$i], $array_ref->[$i + 1]); } return $instance; }; } no Mouse; __PACKAGE__->meta->make_immutable(strict_constructor => 1); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::Array - Provides methods for ArrayRef =head1 DESCRIPTION This class provides method generators for the C<Array> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Array> for details. =head1 METHOD GENERATORS =over 4 =item generate_count =item generate_is_empty =item generate_first =item generate_map =item generate_reduce =item generate_sort =item generate_sort_in_place =item generate_sort_by =item generate_sort_in_place_by =item generate_shuffle =item generate_grep =item generate_uniq =item generate_elements =item generate_join =item generate_push =item generate_pop =item generate_unshift =item generate_shift =item generate_fetch =item generate_get The same as C<generate_fetch> =item generate_store =item generate_set The same as C<generate_store> =item generate_accessor =item generate_clear =item generate_remove =item generate_delete The same as C<generate_remove>. Note that it is different from C<CORE::delete>. =item generate_insert =item generate_splice =item generate_for_each =item generate_for_each_pair =back diff --git a/lib/MouseX/NativeTraits/MethodProvider/Bool.pm b/lib/MouseX/NativeTraits/MethodProvider/Bool.pm index e9cf546..a9e5e70 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/Bool.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/Bool.pm @@ -1,66 +1,64 @@ package MouseX::NativeTraits::MethodProvider::Bool; use Mouse; -our $VERSION = '0.001'; - extends qw(MouseX::NativeTraits::MethodProvider); sub generate_set { my($self) = @_; my $writer = $self->writer; return sub { $writer->( $_[0], 1 ) }; } sub generate_unset { my($self) = @_; my $writer = $self->writer; return sub { $writer->( $_[0], 0 ) }; } sub generate_toggle { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { $writer->( $_[0], !$reader->( $_[0] ) ) }; } sub generate_not { my($self) = @_; my $reader = $self->reader; return sub { !$reader->( $_[0] ) }; } no Mouse; __PACKAGE__->meta->make_immutable(strict_constructor => 1); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::Bool - Provides methods for Bool =head1 DESCRIPTION This class provides method generators for the C<Bool> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Bool> for details. =head1 METHOD GENERATORS =over 4 =item generate_set =item generate_unset =item generate_toggle =item generate_not =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/lib/MouseX/NativeTraits/MethodProvider/CodeRef.pm b/lib/MouseX/NativeTraits/MethodProvider/CodeRef.pm index 0c55ab0..76db1fe 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/CodeRef.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/CodeRef.pm @@ -1,44 +1,42 @@ package MouseX::NativeTraits::MethodProvider::CodeRef; use Mouse; -our $VERSION = '0.001'; - extends qw(MouseX::NativeTraits::MethodProvider); sub generate_execute { my($self) = @_; my $reader = $self->reader; return sub { my ($self, @args) = @_; $reader->($self)->(@args); }; } no Mouse; __PACKAGE__->meta->make_immutable(strict_constructor => 1); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::CodeRef - Provides methods for CodeRef =head1 DESCRIPTION This class provides method generators for the C<Code> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Code> for details. =head1 METHOD GENERATORS =over 4 =item generate_execute =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/lib/MouseX/NativeTraits/MethodProvider/Counter.pm b/lib/MouseX/NativeTraits/MethodProvider/Counter.pm index fd2f5ad..df2620d 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/Counter.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/Counter.pm @@ -1,115 +1,113 @@ package MouseX::NativeTraits::MethodProvider::Counter; use Mouse; -our $VERSION = '0.001'; - extends qw(MouseX::NativeTraits::MethodProvider); sub generate_reset { my($self) = @_; my $attr = $self->attr; my $writer = $self->writer; my $builder; my $default; if($attr->has_builder){ $builder = $attr->builder; } else { $default = $attr->default; if(ref $default){ $builder = $default; } } if(ref $builder){ return sub { my($instance) = @_; $writer->($instance, $instance->$builder()); }; } else{ return sub { my($instance) = @_; $writer->($instance, $default); }; } } sub generate_set{ my($self) = @_; my $writer = $self->writer; return sub { $writer->( $_[0], $_[1] ) }; } sub generate_inc { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; my $constraint = $self->type_constraint; return sub { my($instance, $value) = @_; if(@_ > 1){ $constraint->assert_valid($value); } else{ $value = 1; } $writer->($instance, $reader->($instance) + $value); }; } sub generate_dec { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; my $constraint = $self->type_constraint; return sub { my($instance, $value) = @_; if(@_ > 1){ $constraint->assert_valid($value); } else{ $value = 1; } $writer->($instance, $reader->($instance) - $value); }; } no Mouse; __PACKAGE__->meta->make_immutable(strict_constructor => 1); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::Counter - Provides methods for Counter =head1 DESCRIPTION This class provides method generators for the C<Counter> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Counter> for details. =head1 METHOD GENERATORS =over 4 =item generate_reset =item generate_set =item generate_inc =item generate_dec =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm b/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm index 2d8fd27..cf13b78 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/HashRef.pm @@ -1,316 +1,314 @@ package MouseX::NativeTraits::MethodProvider::HashRef; use Mouse; -our $VERSION = '0.001'; - extends qw(MouseX::NativeTraits::MethodProvider); sub generate_keys { my($self) = @_; my $reader = $self->reader; return sub { return keys %{ $reader->( $_[0] ) } }; } sub generate_sorted_keys { my($self) = @_; my $reader = $self->reader; return sub { return sort keys %{ $reader->( $_[0] ) } }; } sub generate_values { my($self) = @_; my $reader = $self->reader; return sub { return values %{ $reader->( $_[0] ) } }; } sub generate_kv { my($self) = @_; my $reader = $self->reader; return sub { my($instance) = @_; my $hash_ref = $reader->( $instance ); return map { [ $_ => $hash_ref->{$_} ] } keys %{ $hash_ref }; }; } sub generate_elements { my($self) = @_; my $reader = $self->reader; return sub { return %{ $reader->( $_[0] ) }; }; } sub generate_count { my($self) = @_; my $reader = $self->reader; return sub { return scalar keys %{ $reader->( $_[0] ) }; }; } sub generate_is_empty { my($self) = @_; my $reader = $self->reader; return sub { return scalar(keys %{ $reader->( $_[0] ) }) != 0; }; } sub generate_exists { my($self) = @_; my $reader = $self->reader; return sub { return exists $reader->( $_[0] )->{ $_[1] } }; } sub generate_defined { my($self) = @_; my $reader = $self->reader; return sub { return defined $reader->( $_[0] )->{ $_[1] } }; } __PACKAGE__->meta->add_method(generate_get => \&generate_fetch); sub generate_fetch { my($self) = @_; my $reader = $self->reader; return sub { if ( @_ == 2 ) { return $reader->( $_[0] )->{ $_[1] }; } else { my ( $self, @keys ) = @_; return @{ $reader->($self) }{@keys}; } }; } __PACKAGE__->meta->add_method(generate_set => \&generate_store); sub generate_store { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ($constraint->__is_parameterized){ my $container_type_constraint = $constraint->type_parameter; return sub { my ( $self, @kv ) = @_; my ( @keys, @values ); while (my($key, $value) = splice @kv, 0, 2 ) { $container_type_constraint->assert_valid($value); push @keys, $key; push @values, $value; } if ( @values > 1 ) { @{ $reader->($self) }{@keys} = @values; } else { $reader->($self)->{ $keys[0] } = $values[0]; } }; } else { return sub { my ( $instance, @kv ) = @_; my $hash_ref = $reader->($instance); while (my($key, $value) = splice @kv, 0, 2) { $hash_ref->{$key} = $value; } }; } } sub generate_accessor { my($self) = @_; my $reader = $self->reader; my $constraint = $self->attr->type_constraint; if ($constraint->__is_parameterized){ my $container_type_constraint = $constraint->type_parameter; return sub { my $self = shift; if ( @_ == 1 ) { # reader return $reader->($self)->{ $_[0] }; } elsif ( @_ == 2 ) { # writer $constraint->assert_valid( $_[1] ); $reader->($self)->{ $_[0] } = $_[1]; } else { confess "One or two arguments expected, not " . @_; } }; } else { return sub { my $self = shift; if ( @_ == 1 ) { # reader return $reader->($self)->{ $_[0] }; } elsif ( @_ == 2 ) { # writer $reader->($self)->{ $_[0] } = $_[1]; } else { confess "One or two arguments expected, not " . @_; } }; } } sub generate_clear { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; my $constraint = $self->type_constraint; return sub { %{ $reader->( $_[0] ) } = () }; } sub generate_delete { my($self) = @_; my $reader = $self->reader; return sub { my $instance = shift; return delete @{ $reader->($instance) }{@_}; }; } sub generate_for_each_key { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $block) = @_; foreach my $key(keys %{$reader->($instance)}){ $block->($key); } return $instance; }; } sub generate_for_each_value { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $block) = @_; foreach my $value(values %{$reader->($instance)}){ $block->($value); } return $instance; }; } sub generate_for_each_pair { my($self) = @_; my $reader = $self->reader; return sub { my($instance, $block) = @_; my $hash_ref = $reader->($instance); foreach my $key(keys %{$hash_ref}){ $block->($key, $hash_ref->{$key}); } return $instance; }; } no Mouse; __PACKAGE__->meta->make_immutable(strict_constructor => 1); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::HashRef - Provides methods for HashRef =head1 DESCRIPTION This class provides method generators for the C<Hash> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Hash> for details. =head1 METHOD GENERATORS =over 4 =item generate_keys =item generate_sorted_keys =item generate_values =item generate_kv =item generate_elements =item generate_count =item generate_is_empty =item generate_exists =item generate_defined =item generate_fetch =item generate_get The same as C<generate_fetch>. =item generate_store =item generate_set The same as C<generate_store>. =item generate_accessor =item generate_clear =item generate_delete =item generate_for_each_key =item generate_for_each_value =item generate_for_each_pair =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/lib/MouseX/NativeTraits/MethodProvider/Num.pm b/lib/MouseX/NativeTraits/MethodProvider/Num.pm index 4a85307..a370a88 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/Num.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/Num.pm @@ -1,106 +1,104 @@ package MouseX::NativeTraits::MethodProvider::Num; use Mouse; -our $VERSION = '0.001'; - extends qw(MouseX::NativeTraits::MethodProvider); sub generate_add { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; my $constraint = $self->attr->type_constraint; return sub { my($instance, $value) = @_; $constraint->assert_valid($value); $writer->( $instance, $reader->( $instance ) + $value ); }; } sub generate_sub { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; my $constraint = $self->attr->type_constraint; return sub { my($instance, $value) = @_; $constraint->assert_valid($value); $writer->( $instance, $reader->( $instance ) - $value ); }; } sub generate_mul { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; my $constraint = $self->attr->type_constraint; return sub { my($instance, $value) = @_; $constraint->assert_valid($value); $writer->( $instance, $reader->( $instance ) * $value ); }; } sub generate_div { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; my $constraint = $self->attr->type_constraint; return sub { my($instance, $value) = @_; $constraint->assert_valid($value); $writer->( $instance, $reader->( $instance ) / $value ); }; } sub generate_abs { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my($instance) = @_; $writer->( $instance, abs( $reader->( $instance ) ) ); }; } no Mouse; __PACKAGE__->meta->make_immutable(strict_constructor => 1); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::Num - Provides methods for Num =head1 DESCRIPTION This class provides method generators for the C<Number> trait. See L<Mouse::Meta::Attribute::Custom::Trait::Number> for details. =head1 METHOD GENERATORS =over 4 =item generate_add =item generate_sub =item generate_mul =item generate_div =item generate_abs =back =head1 SEE ALSO L<MouseX::NativeTraits>. =cut diff --git a/lib/MouseX/NativeTraits/MethodProvider/Str.pm b/lib/MouseX/NativeTraits/MethodProvider/Str.pm index 6c03012..db2e8df 100644 --- a/lib/MouseX/NativeTraits/MethodProvider/Str.pm +++ b/lib/MouseX/NativeTraits/MethodProvider/Str.pm @@ -1,208 +1,206 @@ package MouseX::NativeTraits::MethodProvider::Str; use Mouse; -our $VERSION = '0.001'; - extends qw(MouseX::NativeTraits::MethodProvider); sub generate_append { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my($instance, $value) = @_; $writer->( $instance, $reader->( $instance ) . $value ); }; } sub generate_prepend { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my($instance, $value) = @_; $writer->( $instance, $value . $reader->( $instance ) ); }; } sub generate_replace { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my( $instance, $regexp, $replacement ) = @_; my $v = $reader->( $instance ); if ( ref($replacement) eq 'CODE' ) { $v =~ s/$regexp/$replacement->()/e; } else { $v =~ s/$regexp/$replacement/; } $writer->( $instance, $v ); }; } sub generate_replace_globally { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my( $instance, $regexp, $replacement ) = @_; my $v = $reader->( $instance ); if ( ref($replacement) eq 'CODE' ) { $v =~ s/$regexp/$replacement->()/eg; } else { $v =~ s/$regexp/$replacement/g; } $writer->( $instance, $v ); }; } sub generate_match { my($self) = @_; my $reader = $self->reader; return sub { $reader->( $_[0] ) =~ $_[1] }; } sub generate_chop { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my($instance) = @_; my $v = $reader->( $instance ); chop($v); $writer->( $instance, $v ); }; } sub generate_chomp { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my($instance) = @_; my $v = $reader->( $instance ); chomp($v); $writer->( $instance, $v ); }; } sub generate_inc { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my($instance) = @_; my $v = $reader->( $instance ); $v++; $writer->( $instance, $v ); }; } sub generate_clear { my($self) = @_; my $writer = $self->writer; return sub { my($instance) = @_; $writer->( $instance, '' ); }; } sub generate_length { my($self) = @_; my $reader = $self->reader; return sub { return length( $reader->($_[0]) ); }; } sub generate_substr { my($self) = @_; my $reader = $self->reader; my $writer = $self->writer; return sub { my($instance, $offset, $length, $replacement) = @_; my $v = $reader->($instance); $offset = 0 if !defined $offset; $length = length($v) if !defined $length; my $ret; if ( defined $replacement ) { $ret = substr( $v, $offset, $length, $replacement ); $writer->( $self, $v ); } else { $ret = substr( $v, $offset, $length ); } return $ret; }; } no Mouse; __PACKAGE__->meta->make_immutable(strict_constructor => 1); __END__ =head1 NAME MouseX::NativeTraits::MethodProvider::Str - Provides methods for Str =head1 DESCRIPTION This class provides method generators for the C<String> trait. See L<Mouse::Meta::Attribute::Custom::Trait::String> for details. =head1 METHOD GENERATORS =over 4 =item generate_append =item generate_prepend =item generate_replace =item generate_replace_globally =item generate_match =item generate_chop =item generate_chomp =item generate_inc =item generate_clear =item generate_length =item generate_substr =back =head1 SEE ALSO L<MouseX::NativeTraits>. =cut diff --git a/lib/MouseX/NativeTraits/Num.pm b/lib/MouseX/NativeTraits/Num.pm index 4ef6df5..538af73 100644 --- a/lib/MouseX/NativeTraits/Num.pm +++ b/lib/MouseX/NativeTraits/Num.pm @@ -1,110 +1,108 @@ package MouseX::NativeTraits::Num; use Mouse::Role; -our $VERSION = '0.001'; - with 'MouseX::NativeTraits'; sub method_provider_class { return 'MouseX::NativeTraits::MethodProvider::Num'; } sub helper_type { return 'Num'; } no Mouse::Role; 1; __END__ =pod =head1 NAME MouseX::NativeTraits::Num - Helper trait for Num attributes =head1 SYNOPSIS package Real; use Moose; has 'integer' => ( traits => ['Number'], is => 'ro', isa => 'Num', default => 5, handles => { set => 'set', add => 'add', sub => 'sub', mul => 'mul', div => 'div', mod => 'mod', abs => 'abs', }, ); my $real = Real->new(); $real->add(5); # same as $real->integer($real->integer + 5); $real->sub(2); # same as $real->integer($real->integer - 2); =head1 DESCRIPTION This provides a simple numeric attribute, which supports most of the basic math operations. =head1 PROVIDED METHODS It is important to note that all those methods do in place modification of the value stored in the attribute. These methods are implemented within this package. =over 4 =item B<set($value)> Alternate way to set the value. =item B<add($value)> Adds the current value of the attribute to C<$value>. =item B<sub($value)> Subtracts C<$value> from the current value of the attribute. =item B<mul($value)> Multiplies the current value of the attribute by C<$value>. =item B<div($value)> Divides the current value of the attribute by C<$value>. =item B<mod($value)> Returns the current value of the attribute modulo C<$value>. =item B<abs> Sets the current value of the attribute to its absolute value. =back =head1 METHODS =over 4 =item B<meta> =item B<method_provider_class> =item B<helper_type> =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/lib/MouseX/NativeTraits/Str.pm b/lib/MouseX/NativeTraits/Str.pm index 22a17f5..b68e2a0 100644 --- a/lib/MouseX/NativeTraits/Str.pm +++ b/lib/MouseX/NativeTraits/Str.pm @@ -1,132 +1,130 @@ package MouseX::NativeTraits::Str; use Mouse::Role; -our $VERSION = '0.001'; - with 'MouseX::NativeTraits'; sub method_provider_class { return 'MouseX::NativeTraits::MethodProvider::Str'; } sub helper_type { return 'Str'; } sub _default_default{ '' } no Mouse::Role; 1; __END__ =head1 NAME MouseX::NativeTraits::Str - Helper trait for Str attributes =head1 SYNOPSIS package MyHomePage; use Moose; has 'text' => ( traits => ['String'], is => 'rw', isa => 'Str', default => q{}, handles => { add_text => 'append', replace_text => 'replace', }, ); my $page = MyHomePage->new(); $page->add_text("foo"); # same as $page->text($page->text . "foo"); =head1 DESCRIPTION This module provides a simple string attribute, to which mutating string operations can be applied more easily (no need to make an lvalue attribute metaclass or use temporary variables). Additional methods are provided for completion. =head1 PROVIDED METHODS These methods are implemented in L<MouseX::NativeTraits::MethodProvider::Str>. It is important to note that all those methods do in place modification of the value stored in the attribute. =over 4 =item B<inc> Increments the value stored in this slot using the magical string autoincrement operator. Note that Perl doesn't provide analogous behavior in C<-->, so C<dec> is not available. =item B<append($string)> Append a string, like C<.=>. =item B<prepend($string)> Prepend a string. =item B<replace($pattern, $replacement)> Performs a regexp substitution (L<perlop/s>). A code references will be accepted for the replacement, causing the regexp to be modified with a single C<e>. C</smxi> can be applied using the C<qr> operator. =item B<replace($pattern, $replacement)> Performs a regexp substitution (L<perlop/s>) with the C<g> flag. A code references will be accepted for the replacement, causing the regexp to be modified with a single C<e>. C</smxi> can be applied using the C<qr> operator. =item B<match($pattern)> Like C<replace> but without the replacement. Provided mostly for completeness. =item B<chop> L<perlfunc/chop> =item B<chomp> L<perlfunc/chomp> =item B<clear> Sets the string to the empty string (not the value passed to C<default>). =item B<length> L<perlfunc/length> =item B<substr> L<perlfunc/substr>. We go to some lengths to match the different functionality based on C<substr>'s arity. =back =head1 METHODS =over 4 =item B<meta> =item B<method_provider_class> =item B<helper_type> =back =head1 SEE ALSO L<MouseX::NativeTraits> =cut diff --git a/xt/01_podspell.t b/xt/01_podspell.t index 08403b3..0f8ceef 100644 --- a/xt/01_podspell.t +++ b/xt/01_podspell.t @@ -1,35 +1,35 @@ #!perl -w use strict; use Test::More; eval q{ use Test::Spelling }; plan skip_all => q{Test::Spelling is not installed.} if $@; add_stopwords(map { split /[\s\:\-]/ } <DATA>); $ENV{LANG} = 'C'; all_pod_files_spelling_ok('lib'); __DATA__ Goro Fuji (gfx) gfuji(at)cpan.org MouseX::NativeTraits -Stevan -clearers -cpan -extention +Stevan +clearers +cpan +extention gfx Num Str versa uniq indices dec kv isa arity metaclass - attr +attr
gfx/p5-MouseX-NativeTraits
7bd8e617c66ba7378211bef5c1216d6c32bfb1b6
Remove testing code
diff --git a/lib/MouseX/NativeTraits.pm b/lib/MouseX/NativeTraits.pm index 489f2dd..44309c8 100644 --- a/lib/MouseX/NativeTraits.pm +++ b/lib/MouseX/NativeTraits.pm @@ -1,311 +1,297 @@ package MouseX::NativeTraits; use 5.006_002; use Mouse::Role; our $VERSION = '0.001'; -#XXX: remove this -{ - package Mouse::Meta::TypeConstraint; - sub __is_parameterized{ exists $_[0]->{parameter} } - sub type_parameter { $_[0]->{parameter} } - - sub assert_valid { - my($self, $value) = @_; - return 1 if $self->check($value); - - Carp::confess($self->get_message($value)); - } -} - requires qw(method_provider_class helper_type); has default => ( is => 'bare', # don't create new methods required => 1, ); has type_constraint => ( is => 'bare', # don't create new methods required => 1, ); has method_provider => ( is => 'ro', isa => 'Object', builder => '_build_method_provider', ); sub _build_method_provider{ my($self) = @_; my $mpc = $self->method_provider_class; Mouse::Util::load_class($mpc); return $mpc->new(attr => $self); } before _process_options => sub { my ( $self, $name, $options ) = @_; my $type = $self->helper_type; $options->{isa} = $type if !exists $options->{isa}; my $isa = Mouse::Util::TypeConstraints::find_or_create_isa_type_constraint( $options->{isa} ); ( $isa->is_a_type_of($type) ) || $self->throw_error( "The type constraint for $name must be a subtype of $type but it's a $isa"); $options->{default} = $self->_default_default if !exists $options->{default} && $self->can('_default_default'); }; around _canonicalize_handles => sub { my($next, $self, $handles_ref) = @_; if( ref($handles_ref) ne 'HASH' ) { $self->throw_error( "The 'handles' option must be a HASH reference, not $handles_ref"); } my $provider = $self->method_provider; my %handles; while(my($name, $to) = each %{$handles_ref}){ $to = [$to] if !ref $to; $provider->has_generator($to->[0]) or $self->throw_error("$to->[0] is an unsupported method type"); $handles{$name} = $to; } return %handles; }; around _make_delegation_method => sub { my( $next, $self, $handle_name, $method_to_call, @curried_args ) = @_; return $self->method_provider->generate($handle_name, $method_to_call, @curried_args); }; no Mouse::Role; 1; __END__ =head1 NAME MouseX::NativeTraits - Extend your attribute interfaces for Mouse =head1 VERSION This document describes MouseX::NativeTraits version 0.001. =head1 SYNOPSIS package MyClass; use Mouse; has mapping => ( traits => ['Hash'], is => 'rw', isa => 'HashRef[Str]', default => sub { +{} }, handles => { exists_in_mapping => 'exists', ids_in_mapping => 'keys', get_mapping => 'get', set_mapping => 'set', set_quantity => [ set => 'quantity' ], }, ); =head1 DESCRIPTION While L<Mouse> attributes provide a way to name your accessors, readers, writers, clearers and predicates, MouseX::NativeTraits provides commonly used attribute helper methods for more specific types of data. As seen in the L</SYNOPSIS>, you specify the data structure via the C<traits> parameter. These traits will be loaded automatically, so you need not load MouseX::NativeTraits explicitly. This extention is compatible with Moose native traits, although it is not a part of Mouse core. =head1 PARAMETERS =head2 handles This is like C<handles> in L<Mouse/has>, but only HASH references are allowed. Keys are method names that you want installed locally, and values are methods from the method providers (below). Currying with delegated methods works normally for C<< handles >>. =head1 NATIVE TRAITS =head2 Array Common methods for array references. has 'queue' => ( traits => ['Array'], is => 'ro', isa => 'ArrayRef[Str]', default => sub { [] }, handles => { add_item => 'push', next_item => 'shift', } ); See L<MouseX::NativeTraits::ArrayRef>. =head2 Hash Common methods for hash references. has 'options' => ( traits => ['Hash'], is => 'ro', isa => 'HashRef[Str]', default => sub { {} }, handles => { set_option => 'set', get_option => 'get', has_option => 'exists', } ); See L<MouseX::NativeTraits::HashRef>. =head2 Code Common methods for code references. has 'callback' => ( traits => ['Code'], is => 'ro', isa => 'CodeRef', default => sub { sub { 'called' } }, handles => { call => 'execute', } ); See L<MouseX::NativeTraits::CodeRef>. =head2 Bool Common methods for boolean values. has 'is_lit' => ( traits => ['Bool'], is => 'rw', isa => 'Bool', default => 0, handles => { illuminate => 'set', darken => 'unset', flip_switch => 'toggle', is_dark => 'not', } ); See L<MouseX::NativeTraits::Bool>. =head2 String Common methods for string operations. has text => ( traits => ['String'], is => 'rw', isa => 'Str', default => q{}, handles => { add_text => 'append', replace_text => 'replace', # or replace_globally } ); See L<MouseX::NativeTraits::Str>. =head2 Number Common numerical operations. has value => ( traits => ['Number'], is => 'ro', isa => 'Int', default => 5, handles => { set => 'set', add => 'add', sub => 'sub', mul => 'mul', div => 'div', mod => 'mod', abs => 'abs', } ); See L<MouseX::NativeTraits::Num>. =head2 Counter Methods for incrementing and decrementing a counter attribute. has counter => ( traits => ['Counter'], is => 'ro', isa => 'Num', default => 0, handles => { inc_counter => 'inc', dec_counter => 'dec', reset_counter => 'reset', } ); See L<MouseX::NativeTraits::Counter>. =head1 DEPENDENCIES Perl 5.6.2 or later. =head1 BUGS All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. =head1 SEE ALSO L<Mouse> L<MouseX::AttributeHelpers> L<Moose> L<Moose::Meta::Attribute::Native> L<MooseX::AttributeHelpers> =head1 AUTHORS Goro Fuji (gfx) E<lt>gfuji(at)cpan.orgE<gt> This module is based on Moose native traits written by Stevan Little and others. =head1 LICENSE AND COPYRIGHT Copyright (c) 2010, Goro Fuji (gfx), mostly based on Moose, which is (c) Infinity Interactive, Inc (L<http://www.iinteractive.com>). This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L<perlartistic> for details. =cut
martinkr/jCookie
8d2f2d64b6abe8219f8942ca77f9a5f0ba5fcad0
Fix using an empty string as cookie value
diff --git a/jcookie.js b/jcookie.js index 0ab4566..a3d70eb 100644 --- a/jcookie.js +++ b/jcookie.js @@ -1,104 +1,104 @@ /** * * jCookie - https://github.com/martinkr/jCookie * * jCookie - a jQuery-Plugin providing an convenient api for CRUD-related cookie handling. * * @version 1.2.0 * * @example: * Create,update: * jQuery.jCookie('cookie','value'); * Delete: * jQuery.jCookie('cookie',null); * Read: * jQuery.jCookie('cookie'); * * Copyright (c) 2008-2011 Martin Krause (jquery.public.mkrause.info) * Dual licensed under the MIT and GPL licenses. * * @author Martin Krause [email protected] * @copyright Martin Krause (jquery.public.mkrause.info) * @license MIT http://www.opensource.org/licenses/mit-license.php * @license GNU http://www.gnu.org/licenses/gpl-3.0.html * * @requires * jQuery JavaScript Library - http://jquery.com/ * Copyright 2010, John Resig * Dual licensed under the MIT or GPL Version 2 licenses - http://jquery.org/license * */ // JSLint setting, @see http://www.jslint.com/lint.html#options /*jslint devel: false, browser: true, continue: true, eqeq: true, vars: true, evil: true, white: true, forin: true, css: true, cap: true, nomen: true, plusplus: true, maxerr: 500, indent: 4 */ /** * * @param {String} sCookieName_, the cookie name * @param {Object} [oValue_], the cokie value * @param {String, Number} [oExpires_], the expire date as string ('session') or number * @param {Object} [oOptions_], additional cookie options { path: {String}, domain: {String}, secure {Bool} } */ jQuery.jCookie = function(sCookieName_, oValue_, oExpires_, oOptions_) { // cookies disabled if (!navigator.cookieEnabled) { return false; } // enfoce params, even if just an object has been passed var oOptions_ = oOptions_ || {}; if (typeof(arguments[0]) !== 'string' && arguments.length === 1) { oOptions_ = arguments[0]; sCookieName_ = oOptions_.name; oValue_ = oOptions_.value; oExpires_ = oOptions_.expires; } // escape characters sCookieName_ = encodeURI(sCookieName_); // basic error handling if (oValue_ && (typeof(oValue_) !== 'number' && typeof(oValue_) !== 'string' && oValue_ !== null)) { return false; } // force values var _sPath = oOptions_.path ? "; path=" + oOptions_.path : ""; var _sDomain = oOptions_.domain ? "; domain=" + oOptions_.domain : ""; var _sSecure = oOptions_.secure ? "; secure" : ""; var sExpires_ = ""; // write ('n delete ) cookie even in case the value === null - if (oValue_ || (oValue_ === null && arguments.length == 2)) { + if (oValue_ !== undefined) { // set preceding expire date in case: expires === null, or the arguments have been (STRING,NULL) oExpires_ = (oExpires_ === null || (oValue_ === null && arguments.length == 2)) ? -1 : oExpires_; // calculate date in case it's no session cookie (expires missing or expires equals 'session' ) if (typeof(oExpires_) === 'number' && oExpires_ != 'session' && oExpires_ !== undefined) { var _date = new Date(); _date.setTime(_date.getTime() + (oExpires_ * 24 * 60 * 60 * 1000)); sExpires_ = ["; expires=", _date.toGMTString()].join(""); } // write cookie document.cookie = [sCookieName_, "=", encodeURI(oValue_), sExpires_, _sDomain, _sPath, _sSecure].join(""); return true; } // read cookie if (!oValue_ && typeof(arguments[0]) === 'string' && arguments.length == 1 && document.cookie && document.cookie.length) { // get the single cookies var _aCookies = document.cookie.split(';'); var _iLenght = _aCookies.length; // parse cookies while (_iLenght--) { var _aCurrrent = _aCookies[_iLenght].split("="); // find the requested one if (jQuery.trim(_aCurrrent[0]) === sCookieName_) { return decodeURI(_aCurrrent[1]); } } return undefined; } // no cookie present if(!document.cookie || !document.cookie.length) { return undefined;} return false; };
martinkr/jCookie
3e40dd0228122edcc4d0cea8e8e8610a5a930d1c
added bower support
diff --git a/bower.json b/bower.json new file mode 100644 index 0000000..012f3ed --- /dev/null +++ b/bower.json @@ -0,0 +1,26 @@ +{ + "name": "jCookie", + "main": "jcookie-min.js", + "version": "1.2.1", + "homepage": "https://github.com/martinkr/jCookie", + "author": "Martin Krause", + "ignore": [ + "*.jquery.json" + ], + "dependencies": { + "jquery": ">=1.4.1" + }, + "description": "jCookie provides a clean and simple interface for cookie handling. Create, update, read and delete browser cookies in a snap by gaining just 949 bytes in weight.", "keywords": [ + "cookie", + "storage", + "data" + ], + "licenses": [ + { + "type": "MIT", + "url": "http://opensource.org/licenses/MIT", + "type": "GPL-3.0", + "url": "http://opensource.org/licenses/gpl-3.0.html" + } + ] +}
martinkr/jCookie
ada99a9c5643f7bcc474178e5f396de9f26b2cc9
added license
diff --git a/LICENSE.markdown b/LICENSE.markdown new file mode 100644 index 0000000..bced85c --- /dev/null +++ b/LICENSE.markdown @@ -0,0 +1,692 @@ + +<a name="LICENSE">License</a> +======= +Dual licensed under the MIT and GPL licenses. + +* MIT - http://www.opensource.org/licenses/mit-license.php +* GNU - http://www.gnu.org/licenses/gpl-3.0.html + +======= +## The MIT License (MIT)- http://www.opensource.org/licenses/mit-license.php +### Copyright (c) 2010-2011 Martin Krause (jquery.public.mkrause.info) +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +======= +## GNU GENERAL PUBLIC LICENSE +## Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +### Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + +### TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + +### END OF TERMS AND CONDITIONS + +### How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + <one line to give the program's name and a brief idea of what it does.> + Copyright (C) <year> <name of author> + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + <program> Copyright (C) <year> <name of author> + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +<http://www.gnu.org/licenses/>. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +<http://www.gnu.org/philosophy/why-not-lgpl.html>. \ No newline at end of file
martinkr/jCookie
86b5a9833f51a5243d848652fc8fef8f9c330cae
package.json
diff --git a/package.json b/package.json new file mode 100644 index 0000000..b540182 --- /dev/null +++ b/package.json @@ -0,0 +1,35 @@ +{ + "name": "jCookie", + "version": "1.2", + "title": "jQuery.jCookie - be the cookie monster", + "author": { + "name": "Martin Krause", + "url": "https://github.com/martinkr" + }, + "licenses": [ + { + "type": "MIT", + "url": "http://www.gnu.org/licenses/gpl-3.0.html", + }, + { + "type": "GPL-3.0", + "url": "http://www.opensource.org/licenses/MIT", + } + ], + "dependencies": { + "jquery": "1.4.1" + }, + "description": "jCookie: a jQuery-Plugin providing an convenient api for CRUD-related cookie handling.", + + "keywords": [ + "data", + "jStorage", + "cookie", + "jQuery" + ], + "homepage": "https://github.com/martinkr/jCookie", + "files": [ + "jcookie.js", + "jcookie.min.js", + ] +} \ No newline at end of file
martinkr/jCookie
a900329b03c42979a5c2beb208822ef014e9c1b6
added license
diff --git a/jcookie-min.js b/jcookie-min.js index a92187f..abbd1bf 100644 --- a/jcookie-min.js +++ b/jcookie-min.js @@ -1 +1,2 @@ +/** Copyright (c) 2008-2010 Martin Krause (jquery.public.mkrause.info)- Dual licensed under the MIT and GPL licenses. */ jQuery.jCookie=function(i,b,l,j){if(!navigator.cookieEnabled){return false}var j=j||{};if(typeof(arguments[0])!=="string"&&arguments.length===1){j=arguments[0];i=j.name;b=j.value;l=j.expires}i=encodeURI(i);if(b&&(typeof(b)!=="number"&&typeof(b)!=="string"&&b!==null)){return false}var e=j.path?"; path="+j.path:"";var f=j.domain?"; domain="+j.domain:"";var d=j.secure?"; secure":"";var g="";if(b||(b===null&&arguments.length==2)){l=(l===null||(b===null&&arguments.length==2))?-1:l;if(typeof(l)==="number"&&l!="session"&&l!==undefined){var k=new Date();k.setTime(k.getTime()+(l*24*60*60*1000));g=["; expires=",k.toGMTString()].join("")}document.cookie=[i,"=",encodeURI(b),g,f,e,d].join("");return true}if(!b&&typeof(arguments[0])==="string"&&arguments.length==1&&document.cookie&&document.cookie.length){var a=document.cookie.split(";");var h=a.length;while(h--){var c=a[h].split("=");if(jQuery.trim(c[0])===i){return decodeURI(c[1])}}}return false}; \ No newline at end of file
iqq/first_app
a769f404aa15c9c43f6961aa0b940081ca40d368
improved readme
diff --git a/README.markdown b/README.markdown index 25fd6d3..6da8531 100644 --- a/README.markdown +++ b/README.markdown @@ -1,5 +1,5 @@ # Ruby on Rails Tutorial: first application -×÷Õߣº³ÂÇ¿ + [*Ruby on Rails Tutorial: Learn Rails by Example*](http://railstutorial.org/) -by [Michael Hartl](http://michaelhartl.com/). +by [Michael Hartl](http://michaelhartl.com/).作者:陈强
iqq/first_app
524c2a02db1fd9498696e389d217a8938d8f61f5
Improved the readme file
diff --git a/.gitignore b/.gitignore index f8dd54b..3c4c413 100644 --- a/.gitignore +++ b/.gitignore @@ -1,13 +1,14 @@ .bundle db/*.sqlite3 db/*.sqlite3* log/*.log *.log tmp tmp/**/* tmp/* doc/api doc/app *.swp *~ - +*.back +*.bak \ No newline at end of file diff --git a/README b/README deleted file mode 100644 index 6966fe9..0000000 --- a/README +++ /dev/null @@ -1,256 +0,0 @@ -== Welcome to Rails - -Rails is a web-application framework that includes everything needed to create -database-backed web applications according to the Model-View-Control pattern. - -This pattern splits the view (also called the presentation) into "dumb" -templates that are primarily responsible for inserting pre-built data in between -HTML tags. The model contains the "smart" domain objects (such as Account, -Product, Person, Post) that holds all the business logic and knows how to -persist themselves to a database. The controller handles the incoming requests -(such as Save New Account, Update Product, Show Post) by manipulating the model -and directing data to the view. - -In Rails, the model is handled by what's called an object-relational mapping -layer entitled Active Record. This layer allows you to present the data from -database rows as objects and embellish these data objects with business logic -methods. You can read more about Active Record in -link:files/vendor/rails/activerecord/README.html. - -The controller and view are handled by the Action Pack, which handles both -layers by its two parts: Action View and Action Controller. These two layers -are bundled in a single package due to their heavy interdependence. This is -unlike the relationship between the Active Record and Action Pack that is much -more separate. Each of these packages can be used independently outside of -Rails. You can read more about Action Pack in -link:files/vendor/rails/actionpack/README.html. - - -== Getting Started - -1. At the command prompt, create a new Rails application: - <tt>rails new myapp</tt> (where <tt>myapp</tt> is the application name) - -2. Change directory to <tt>myapp</tt> and start the web server: - <tt>cd myapp; rails server</tt> (run with --help for options) - -3. Go to http://localhost:3000/ and you'll see: - "Welcome aboard: You're riding Ruby on Rails!" - -4. Follow the guidelines to start developing your application. You can find -the following resources handy: - -* The Getting Started Guide: http://guides.rubyonrails.org/getting_started.html -* Ruby on Rails Tutorial Book: http://www.railstutorial.org/ - - -== Debugging Rails - -Sometimes your application goes wrong. Fortunately there are a lot of tools that -will help you debug it and get it back on the rails. - -First area to check is the application log files. Have "tail -f" commands -running on the server.log and development.log. Rails will automatically display -debugging and runtime information to these files. Debugging info will also be -shown in the browser on requests from 127.0.0.1. - -You can also log your own messages directly into the log file from your code -using the Ruby logger class from inside your controllers. Example: - - class WeblogController < ActionController::Base - def destroy - @weblog = Weblog.find(params[:id]) - @weblog.destroy - logger.info("#{Time.now} Destroyed Weblog ID ##{@weblog.id}!") - end - end - -The result will be a message in your log file along the lines of: - - Mon Oct 08 14:22:29 +1000 2007 Destroyed Weblog ID #1! - -More information on how to use the logger is at http://www.ruby-doc.org/core/ - -Also, Ruby documentation can be found at http://www.ruby-lang.org/. There are -several books available online as well: - -* Programming Ruby: http://www.ruby-doc.org/docs/ProgrammingRuby/ (Pickaxe) -* Learn to Program: http://pine.fm/LearnToProgram/ (a beginners guide) - -These two books will bring you up to speed on the Ruby language and also on -programming in general. - - -== Debugger - -Debugger support is available through the debugger command when you start your -Mongrel or WEBrick server with --debugger. This means that you can break out of -execution at any point in the code, investigate and change the model, and then, -resume execution! You need to install ruby-debug to run the server in debugging -mode. With gems, use <tt>sudo gem install ruby-debug</tt>. Example: - - class WeblogController < ActionController::Base - def index - @posts = Post.find(:all) - debugger - end - end - -So the controller will accept the action, run the first line, then present you -with a IRB prompt in the server window. Here you can do things like: - - >> @posts.inspect - => "[#<Post:0x14a6be8 - @attributes={"title"=>nil, "body"=>nil, "id"=>"1"}>, - #<Post:0x14a6620 - @attributes={"title"=>"Rails", "body"=>"Only ten..", "id"=>"2"}>]" - >> @posts.first.title = "hello from a debugger" - => "hello from a debugger" - -...and even better, you can examine how your runtime objects actually work: - - >> f = @posts.first - => #<Post:0x13630c4 @attributes={"title"=>nil, "body"=>nil, "id"=>"1"}> - >> f. - Display all 152 possibilities? (y or n) - -Finally, when you're ready to resume execution, you can enter "cont". - - -== Console - -The console is a Ruby shell, which allows you to interact with your -application's domain model. Here you'll have all parts of the application -configured, just like it is when the application is running. You can inspect -domain models, change values, and save to the database. Starting the script -without arguments will launch it in the development environment. - -To start the console, run <tt>rails console</tt> from the application -directory. - -Options: - -* Passing the <tt>-s, --sandbox</tt> argument will rollback any modifications - made to the database. -* Passing an environment name as an argument will load the corresponding - environment. Example: <tt>rails console production</tt>. - -To reload your controllers and models after launching the console run -<tt>reload!</tt> - -More information about irb can be found at: -link:http://www.rubycentral.com/pickaxe/irb.html - - -== dbconsole - -You can go to the command line of your database directly through <tt>rails -dbconsole</tt>. You would be connected to the database with the credentials -defined in database.yml. Starting the script without arguments will connect you -to the development database. Passing an argument will connect you to a different -database, like <tt>rails dbconsole production</tt>. Currently works for MySQL, -PostgreSQL and SQLite 3. - -== Description of Contents - -The default directory structure of a generated Ruby on Rails application: - - |-- app - | |-- controllers - | |-- helpers - | |-- models - | `-- views - | `-- layouts - |-- config - | |-- environments - | |-- initializers - | `-- locales - |-- db - |-- doc - |-- lib - | `-- tasks - |-- log - |-- public - | |-- images - | |-- javascripts - | `-- stylesheets - |-- script - | `-- performance - |-- test - | |-- fixtures - | |-- functional - | |-- integration - | |-- performance - | `-- unit - |-- tmp - | |-- cache - | |-- pids - | |-- sessions - | `-- sockets - `-- vendor - `-- plugins - -app - Holds all the code that's specific to this particular application. - -app/controllers - Holds controllers that should be named like weblogs_controller.rb for - automated URL mapping. All controllers should descend from - ApplicationController which itself descends from ActionController::Base. - -app/models - Holds models that should be named like post.rb. Models descend from - ActiveRecord::Base by default. - -app/views - Holds the template files for the view that should be named like - weblogs/index.html.erb for the WeblogsController#index action. All views use - eRuby syntax by default. - -app/views/layouts - Holds the template files for layouts to be used with views. This models the - common header/footer method of wrapping views. In your views, define a layout - using the <tt>layout :default</tt> and create a file named default.html.erb. - Inside default.html.erb, call <% yield %> to render the view using this - layout. - -app/helpers - Holds view helpers that should be named like weblogs_helper.rb. These are - generated for you automatically when using generators for controllers. - Helpers can be used to wrap functionality for your views into methods. - -config - Configuration files for the Rails environment, the routing map, the database, - and other dependencies. - -db - Contains the database schema in schema.rb. db/migrate contains all the - sequence of Migrations for your schema. - -doc - This directory is where your application documentation will be stored when - generated using <tt>rake doc:app</tt> - -lib - Application specific libraries. Basically, any kind of custom code that - doesn't belong under controllers, models, or helpers. This directory is in - the load path. - -public - The directory available for the web server. Contains subdirectories for - images, stylesheets, and javascripts. Also contains the dispatchers and the - default HTML files. This should be set as the DOCUMENT_ROOT of your web - server. - -script - Helper scripts for automation and generation. - -test - Unit and functional tests along with fixtures. When using the rails generate - command, template test files will be generated for you and placed in this - directory. - -vendor - External libraries that the application depends on. Also includes the plugins - subdirectory. If the app has frozen rails, those gems also go here, under - vendor/rails/. This directory is in the load path. diff --git a/README.markdown b/README.markdown new file mode 100644 index 0000000..25fd6d3 --- /dev/null +++ b/README.markdown @@ -0,0 +1,5 @@ +# Ruby on Rails Tutorial: first application +×÷Õߣº³ÂÇ¿ +[*Ruby on Rails Tutorial: Learn Rails by Example*](http://railstutorial.org/) +by [Michael Hartl](http://michaelhartl.com/). +
hluk/config
4b269acf002d3a7ea5b2795f6b0c2e11ac2b7573
Add bin/shortcut_center.py
diff --git a/bin/shortcut_center.py b/bin/shortcut_center.py new file mode 100755 index 0000000..c07fe85 --- /dev/null +++ b/bin/shortcut_center.py @@ -0,0 +1,139 @@ +#!/usr/bin/env python3 +""" +Simple GUI application that runs a command when a shortcut is typed. +""" +import os +import socket +from tkinter import StringVar, Tk, ttk +from threading import Thread + +SERVER = ("localhost", 8889) +TITLE = "Shortcut Center" +WINDOW_CLASS_NAME = "Shortcut_center" +WIDTH = 180 +HEIGHT = 150 + +DEFAULT_ACTION = 'swaymsg "workspace back_and_forth"' +MAPPING = { + "p": "~/bin/toggleplay.sh", + "t": "~/bin/tidal.sh", + "e": "dolphin", + "Q": ":quit", + "a": 'swaymsg "workspace 1"', + "s": 'swaymsg "workspace 2"', + "d": 'swaymsg "workspace 3"', + "f": 'swaymsg "workspace 4"', + "g": 'swaymsg "workspace 4"', + "1": 'swaymsg "workspace 1"', + "2": 'swaymsg "workspace 2"', + "3": 'swaymsg "workspace 3"', + "4": 'swaymsg "workspace 4"', + "5": 'swaymsg "workspace 5"', + "6": 'swaymsg "workspace 6"', + "7": 'swaymsg "workspace 7"', + "8": 'swaymsg "workspace 8"', + "9": 'swaymsg "workspace 9"', + "0": 'swaymsg "workspace 10"', +} + + +class App: + def __init__(self): + self.root = Tk(className=WINDOW_CLASS_NAME) + self.root.title(TITLE) + self.root.minsize(width=WIDTH, height=HEIGHT) + self.root.maxsize(width=WIDTH, height=HEIGHT) + self.root.bind("<FocusOut>", lambda _: self.close()) + self.root.bind("<Escape>", lambda _: self.close()) + self.root.bind("<<ToggleFocus>>", lambda _: self.toggle_focus()) + + mainframe = ttk.Frame(self.root) + mainframe.grid() + + self.shortcut = StringVar() + self.shortcut.trace_add("write", lambda *_: self.trigger(self.shortcut.get())) + entry = ttk.Entry(mainframe, textvariable=self.shortcut) + entry.grid(column=0, row=0, sticky="w") + entry.focus() + + help = "\n".join(f"{k}: {v}" for k, v in MAPPING.items()) + ttk.Label(mainframe, text=help).grid(column=0, row=1, sticky="w") + + def mainloop(self): + self.root.mainloop() + + def run(self, command): + if command == ":quit": + self.root.quit() + return + + os.system(command) + self.close() + self.shortcut.set("") + + def trigger(self, value): + map = MAPPING.get(value) + if map: + self.run(map) + + def quit(self): + self.root.quit() + + def close(self): + self.root.withdraw() + + def open(self): + self.root.deiconify() + + def has_focus(self): + return self.root.focus_get() is not None + + def send_toggle_focus(self): + self.root.event_generate("<<ToggleFocus>>") + + def toggle_focus(self): + if self.has_focus(): + self.run(DEFAULT_ACTION) + else: + self.open() + + +def run_server(callback): + sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) + sock.bind(SERVER) + sock.listen(1) + + try: + while True: + client, _ = sock.accept() + data = client.recv(1) + client.close() + if data: + break + callback() + finally: + sock.close() + +def send(data): + sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + try: + sock.connect(SERVER) + sock.send(data) + return True + except ConnectionRefusedError: + return False + + +def main(): + if send(b""): + return + + app = App() + Thread(target=run_server, args=(app.send_toggle_focus,)).start() + app.mainloop() + send(b"0") + + +if __name__ == "__main__": + main()
hluk/config
db2e2edf26c93541118ccf2e8779b41f2c30c402
Add yq script
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..265baf6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/nvim/lazy-lock.json +/nvim/lua/plugins/example.lua diff --git a/bin/yq b/bin/yq new file mode 100755 index 0000000..f71dfa4 --- /dev/null +++ b/bin/yq @@ -0,0 +1,23 @@ +#!/bin/bash +set -euo pipefail +script=$(cat <<EOD +import sys, yaml, json + +def ignore_unknown(loader, node): + if node.id == "mapping": + d = loader.construct_mapping(node) + elif node.id == "sequence": + d = {"items": loader.construct_sequence(node)} + elif node.id == "scalar": + d = {"value": loader.construct_scalar(node)} + else: + d = {} + d["__tag__"] = node.tag + return d + +yaml.SafeLoader.add_constructor(None, ignore_unknown) +data = yaml.safe_load(sys.stdin) +print(json.dumps(data)) +EOD +) +python3 -c "$script" | jq "$@"
hluk/config
ad94ca0cf3e15f178ea873a28de3e35f98d77857
Add custom LazyVim configuration
diff --git a/LIST b/LIST index a598a78..14167a6 100644 --- a/LIST +++ b/LIST @@ -1,46 +1,46 @@ ~/.ansible.cfg ~/.config/alacritty.yml ~/.config/ansible-review/ ~/.config/fontconfig/fonts.conf ~/.config/foot/foot.ini ~/.config/gdb/gdbinit ~/.config/git/ ~/.config/gtk-3.0/settings.ini gtk-3.0/ ~/.config/kitty/kitty.conf ~/.config/kwinrc ~/.config/latte/ ~/.config/lattedockrc ~/.config/mako/config mako/ -~/.config/nvim/init.vim nvim/ +~/.config/nvim ~/.config/openbox/ ~/.config/qt5ct/ ~/.config/ripgreprc ~/.config/sway/ ~/.config/swaync/ ~/.config/tig/ ~/.config/tmux/tmux.conf ~/.config/ulauncher/ ~/.config/waybar/ ~/.config/wofi/ ~/.config/xitomatl/xitomatl.ini ~/.config/xkb/ ~/.config/qutebrowser/autoconfig.yml qutebrowser/ ~/.config/qutebrowser/greasemonkey/ qutebrowser/ ~/.config/yamllint/ ~/.fakevimrc ~/.local/share/konsole/Screen.profile konsole ~/.mozilla/firefox/*/chrome/userChrome.css firefox ~/.mplayer/ ~/.p10k.zsh ~/.vimrc ~/.zshrc ~/dev/bin/ ~/dev/colors/ ~/dev/menus/*.sh menus/ ~/dev/menus/dmenu/ menus/ ~/dev/pdf/ ~/dev/rss/*.sh rss/ ~/dev/xmobar/ ~/dev/zcode/{_rungame.sh,_saved} zcode/ /usr/lib/udev/keymaps/microsoft-ergonomic-keyboard udev/keymaps/microsoft-ergonomic-keyboard /usr/lib/udev/rules.d/95-keymap.rules udev/rules.d/95-keymap.rules diff --git a/nvim/.gitignore b/nvim/.gitignore new file mode 100644 index 0000000..cc5457a --- /dev/null +++ b/nvim/.gitignore @@ -0,0 +1,8 @@ +tt.* +.tests +doc/tags +debug +.repro +foo.* +*.log +data diff --git a/nvim/.neoconf.json b/nvim/.neoconf.json new file mode 100644 index 0000000..7c48087 --- /dev/null +++ b/nvim/.neoconf.json @@ -0,0 +1,15 @@ +{ + "neodev": { + "library": { + "enabled": true, + "plugins": true + } + }, + "neoconf": { + "plugins": { + "lua_ls": { + "enabled": true + } + } + } +} diff --git a/nvim/LICENSE b/nvim/LICENSE new file mode 100644 index 0000000..261eeb9 --- /dev/null +++ b/nvim/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/nvim/README.md b/nvim/README.md new file mode 100644 index 0000000..185280b --- /dev/null +++ b/nvim/README.md @@ -0,0 +1,4 @@ +# 💤 LazyVim + +A starter template for [LazyVim](https://github.com/LazyVim/LazyVim). +Refer to the [documentation](https://lazyvim.github.io/installation) to get started. diff --git a/nvim/init.lua b/nvim/init.lua new file mode 100644 index 0000000..2514f9e --- /dev/null +++ b/nvim/init.lua @@ -0,0 +1,2 @@ +-- bootstrap lazy.nvim, LazyVim and your plugins +require("config.lazy") diff --git a/nvim/init.vim b/nvim/init.vim deleted file mode 100644 index 84bcbf0..0000000 --- a/nvim/init.vim +++ /dev/null @@ -1,517 +0,0 @@ -" USAGE: -" :h index -" :options -" :read -- open file read only -" :setl ar -- automatically reload file if changed -" :windo difft -- diff open files -" q/ -- search history -" q: -- command history -" gf -- open file which filename is under cursor -" gi -- go to last insert mode place -" g; -- go to last change -" g, -- go to next change -" ~ -- change case of letter -" gq -- reformat -" -" :g/PATTERN/norm ... -- do something with each matched line (e.g. delete with dd) -" -" :args **/*.h | vert sall -- open all matching files -" -" :'<,'>norm @r -- run a macro on each line in selection -" :'<,'>norm . -- repeat last change on each line in selection -" -" :!ctags -R . /usr/include/X11/ /usr/include/qt5/ -- generate ctags -" S-k -- open manual page for symbol under cursor -" -" http://vimbits.com/bits?sort=top -" https://www.reddit.com/r/vim/wiki/vimrctips - -" OPTIONS {{{ -" highlight matched -set hlsearch -" command history size -set history=512 -" case insensitive search -set ignorecase -set smartcase -" search while typing -set incsearch -" shows the effects of a command as you type -set inccommand=nosplit -" show numbers -set number -" automatic indentation -set autoindent -filetype plugin indent on -" cursor show next/prev parenthesis -set showmatch -" completion menu -set wildmenu -set wildmode=longest:full,full -" tab -> spaces -set expandtab -set shiftwidth=4 -set tabstop=4 -" keep a 5 line buffer for the cursor from top/bottom of window -set scrolloff=5 -" X11 clipboard -set clipboard=unnamed,unnamedplus -" use ~ with movement -set tildeop -" persistent undo history -call system('mkdir -p ~/.config/nvim/undofiles/') -set undodir=~/.config/nvim/undofiles/ -set undofile -autocmd OptionSet guicursor noautocmd set guicursor= - -" disable per-file configuration -set nomodeline - -" automatically reload changed file -set autoread - -" show tabs and trailing whitespace -set list listchars=tab:>·,trail:~ - -" Fix resetting nopaste after pasting. (The issue breaks expandtab config.) -" Fixed in version v0.4.2. -" See: https://github.com/neovim/neovim/issues/7994 -au InsertLeave * set nopaste - -set termguicolors - -set showtabline=2 - -let mapleader = " " -set notimeout - -"set relativenumber -" }}} - -" FILES {{{ -" update tab title in tmux -autocmd BufEnter * call system("tmux rename-window " . expand("%:p:gs?/home/[a-z]*/??")) -autocmd VimLeave * call system("tmux rename-window $(basename $SHELL)") - -" doxygen -autocmd BufNewFile,BufReadPost *.cpp,*.c,*.h set syntax+=.doxygen - -" qml -autocmd BufRead,BufNewFile *.qml setfiletype javascript - -" Jenkinsfile -autocmd BufRead,BufNewFile *Jenkinsfile* setfiletype groovy - -" git commit message -autocmd FileType gitcommit au! BufEnter COMMIT_EDITMSG call setpos('.', [0, 1, 1, 0])|set spell|set nosmartindent|set noautoindent|set nocindent - -" json -autocmd BufRead,BufNewFile *.json setlocal ts=2 sts=2 sw=2 expandtab - -" yaml -autocmd FileType yaml setlocal ts=2 sts=2 sw=2 expandtab -autocmd BufRead,BufNewFile ~/.config/yamllint/config setfiletype yaml -autocmd BufRead,BufNewFile */ansible/inventory/* setfiletype yaml - -" lua -autocmd FileType lua setlocal ts=2 sts=2 sw=2 expandtab - -" go -autocmd FileType go setlocal ts=4 sts=4 sw=4 noexpandtab - -" ruby -autocmd FileType ruby setlocal ts=2 sts=2 sw=2 expandtab -autocmd FileType eruby setlocal ts=2 sts=2 sw=2 expandtab - -" meson -autocmd BufRead,BufNewFile meson.build setlocal ts=2 sts=2 sw=2 expandtab - -" elixir -autocmd FileType elixir setlocal formatprg=mix\ format\ - - -" fedpkg update (Bodhi update configuration) -autocmd BufRead,BufNewFile bodhi.template setlocal filetype=toml -" }}} - -" PLUGINS {{{ -" https://github.com/junegunn/vim-plug -" curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim -" :PlugInstall to install new plugins -" :PlugUpdate to update plugins -" :PlugUpgrade to upgrade vim-plug -call plug#begin('~/.config/nvim/plugged') - -"" toggle comment (NERD commenter) -Plug 'scrooloose/nerdcommenter' -map <C-\> ,c<SPACE>j -imap <C-\> <C-o>,c<SPACE><DOWN> - -"" taglist -"Plug 'vim-scripts/taglist.vim' -"noremap tt :TlistToggle<CR> - -" Asynchronous Lint Engine -Plug 'w0rp/ale' -let g:ale_linters = { -\ 'python': ['flake8',], -\} -autocmd BufEnter schema.rb ALEDisable - -" snippets -"Plug 'SirVer/ultisnips' -"Plug 'honza/vim-snippets' -"let g:UltiSnipsExpandTrigger="<tab>" - -" fugitive (git) -Plug 'tpope/vim-fugitive' -command Gbl Git blame - -" lazygit -Plug 'kdheepak/lazygit.nvim' -nnoremap <silent> <leader>G :LazyGit<CR> - -" asynchronous build and test dispatcher -Plug 'tpope/vim-dispatch' - -" file helpers: -" - :Mkdir, :Rename, :SudoWrite, ... -" - automatic chmod +x for new scripts -Plug 'tpope/vim-eunuch' - -" Python -" PEP 8 -Plug 'nvie/vim-flake8' - -" A collection of language packs for Vim. -Plug 'sheerun/vim-polyglot' -let g:polyglot_disabled = ['autoindent', 'markdown'] -" Rust syntax -"Plug 'rust-lang/rust.vim' -" Go -"Plug 'fatih/vim-go' -" meson -"Plug 'igankevich/mesonic' -" jsonnet -"Plug 'google/vim-jsonnet' -"autocmd BufRead,BufNewFile *.jsonnet setlocal ts=2 sts=2 sw=2 expandtab - -" Ruby on Rails -"Plug 'tpope/vim-rails' - -" Jinja2 -Plug 'Glench/Vim-Jinja2-Syntax' - -" Nim -Plug 'alaviss/nim.nvim' - -" fzf -Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } -Plug 'junegunn/fzf.vim' -let g:fzf_layout = { 'window': { 'width': 0.9, 'height': 0.9 } } -let g:fzf_preview_window = ['right:50%', 'ctrl-/'] -let g:fzf_history_dir = '~/.local/share/fzf-history' -let $FZF_DEFAULT_COMMAND = 'rg --files' -let $RIPGREP_CONFIG_PATH = $HOME .. '/.config/ripgreprc' -noremap <leader>f :Files<CR> -noremap <leader>g :Rg!<CR> -noremap <leader>b :Buffers<CR> -noremap <leader>t :Tags<CR> -" Insert mode completion -imap <c-x><c-k> <plug>(fzf-complete-word) -imap <c-x><c-f> <plug>(fzf-complete-path) -imap <c-x><c-j> <plug>(fzf-complete-file-ag) -imap <c-x><c-l> <plug>(fzf-complete-line) - -" Color schemes -Plug 'sjl/badwolf' -Plug 'morhetz/gruvbox' -Plug 'catppuccin/nvim' -Plug 'rose-pine/neovim' -Plug 'EdenEast/nightfox.nvim' -Plug 'folke/tokyonight.nvim', { 'branch': 'main' } - -" reopen files at your last edit position -Plug 'farmergreg/vim-lastplace' - -Plug 'nvim-lualine/lualine.nvim' -Plug 'kyazdani42/nvim-web-devicons' - -" completion -Plug 'neovim/nvim-lspconfig' -Plug 'hrsh7th/cmp-nvim-lsp' -Plug 'hrsh7th/cmp-buffer' -Plug 'hrsh7th/cmp-path' -Plug 'hrsh7th/cmp-cmdline' -Plug 'hrsh7th/nvim-cmp' - -" handle line and column numbers in file names -Plug 'wsdjeg/vim-fetch' - -"Plug 'psf/black' - -" Treesitter -Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'} -Plug 'nvim-treesitter/nvim-treesitter-textobjects' - -call plug#end() -" }}} - -" LUA {{{ -lua <<LUA_END --- https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#pylsp -require'lspconfig'.pylsp.setup{ - settings = { - pylsp = { - plugins = { - mccabe = { - enabled = false, - }, - pycodestyle = { - maxLineLength = 100, - enabled = true, - }, - pylint = { - args = { - '--max-line-length=100', - '--disable=arguments-renamed', - '--disable=missing-class-docstring', - '--disable=missing-function-docstring', - '--disable=missing-module-docstring', - '--extension-pkg-whitelist=PyQt5', - }, - enabled = false, - }, - } - } - } -} - -local cmp = require('cmp') -cmp.setup({ - sources = { - { name = 'nvim_lsp' }, - { name = 'buffer' }, - { name = 'path' }, - }, - completion = { - autocomplete = { - require('cmp.types').cmp.TriggerEvent.InsertEnter, - require('cmp.types').cmp.TriggerEvent.TextChanged - } - }, - mapping = cmp.mapping.preset.insert({ - ['<C-d>'] = cmp.mapping.scroll_docs(-4), - ['<C-f>'] = cmp.mapping.scroll_docs(4), - ['<C-Space>'] = cmp.mapping.complete(), - ['<CR>'] = cmp.mapping.confirm { - behavior = cmp.ConfirmBehavior.Replace, - select = false, - }, - ['<Tab>'] = cmp.mapping(function(fallback) - if cmp.visible() then - cmp.select_next_item() - else - fallback() - end - end, { 'i', 's' }), - ['<S-Tab>'] = cmp.mapping(function(fallback) - if cmp.visible() then - cmp.select_prev_item() - else - fallback() - end - end, { 'i', 's' }), - }), -}) -cmp.setup.cmdline(':', { - sources = cmp.config.sources({ - { name = 'path' } - }, { - { name = 'cmdline' } - }) -}) - -require('nvim-treesitter.configs').setup { - ensure_installed = "all", - sync_install = false, -- install languages synchronously (only applied to `ensure_installed`) - textobjects = { - select = { - enable = true, - keymaps = { - ["af"] = "@function.outer", - ["if"] = "@function.inner", - ["ac"] = "@class.outer", - ["ic"] = "@class.inner", - ["ab"] = "@block.outer", - ["ib"] = "@block.inner", - ["aa"] = "@parameter.outer", - ["ia"] = "@parameter.inner", - }, - }, - move = { - enable = true, - set_jumps = true, - goto_next_start = { - ["]m"] = "@function.outer", - ["]b"] = "@block.outer", - ["]a"] = "@parameter.outer", - }, - goto_next_end = { - ["]M"] = "@function.outer", - ["]B"] = "@block.outer", - ["]A"] = "@parameter.outer", - }, - goto_previous_start = { - ["[m"] = "@function.outer", - ["[b"] = "@block.outer", - ["[a"] = "@parameter.outer", - }, - goto_previous_end = { - ["[M"] = "@function.outer", - ["[B"] = "@block.outer", - ["[A"] = "@parameter.outer", - }, - }, - }, -} -require'lualine'.setup { - sections = { - lualine_a = {'mode'}, - lualine_b = { - 'branch', - 'diff', - {'diagnostics', sources = {'nvim_diagnostic', 'coc'}}, - }, - lualine_c = {{'filename', path=1}}, - lualine_x = {'encoding', 'fileformat', 'filetype'}, - lualine_y = {'progress'}, - lualine_z = {'location'} - }, - inactive_sections = { - lualine_a = {}, - lualine_b = {{'filename', path=1}}, - lualine_c = {}, - lualine_x = {'location'}, - lualine_y = {}, - lualine_z = {} - }, - tabline = { - lualine_a = {{ - 'buffers', - show_filename_only=false, - mode=2, - max_length = vim.o.columns - }}, - lualine_b = {}, - lualine_c = {}, - lualine_x = {}, - lualine_y = {}, - lualine_z = {} - }, -} -LUA_END -" }}} - -" KEYS {{{ -" faster commands -"nnoremap ; : -"nnoremap : ; -"vnoremap ; : -"vnoremap : ; - -" typos -command! Q :q -command! Qa :qa -command! W :w -command! Wq :wq -command! WQ :wq - -" edit/source configuration -noremap <leader>ee :split ~/.config/nvim/init.vim <CR> -noremap <leader>er :source ~/.config/nvim/init.vim <CR> - -" clear highlighted search term on space -noremap <silent> <leader><Space> :nohlsearch<CR> - -" reselect visual block after indent -vnoremap < <gv -vnoremap > >gv - -inoremap jj <Esc> - -nnoremap Q <Nop> - -"tnoremap <Esc> <C-\><C-n> -"tnoremap <leader>h <C-\><C-N><C-w>h -"tnoremap <leader>j <C-\><C-N><C-w>j -"tnoremap <leader>k <C-\><C-N><C-w>k -"tnoremap <leader>l <C-\><C-N><C-w>l -nnoremap <leader>h <C-w>h -nnoremap <leader>j <C-w>j -nnoremap <leader>k <C-w>k -nnoremap <leader>l <C-w>l - -tnoremap <A-S-h> <C-\><C-N><C-w><S-h> -tnoremap <A-S-j> <C-\><C-N><C-w><S-j> -tnoremap <A-S-k> <C-\><C-N><C-w><S-k> -tnoremap <A-S-l> <C-\><C-N><C-w><S-l> -nnoremap <A-S-h> <C-w><S-h> -nnoremap <A-S-j> <C-w><S-j> -nnoremap <A-S-k> <C-w><S-k> -nnoremap <A-S-l> <C-w><S-l> -" }}} - -" COMPLETION {{{ -" don't complete some filenames -set wildignore+=.hg,.git,.svn " Version control -set wildignore+=*.aux,*.out,*.toc " LaTeX intermediate files -set wildignore+=*.o,*.obj,*.exe,*.dll " compiled object files -set wildignore+=*.spl " compiled spelling word lists -set wildignore+=*.sw? " Vim swap files -set wildignore+=*.pyc " python binaries -set wildignore+=*.luac " Lua byte code -" don't complete multimedia binary files -set wildignore+=*.jpg,*.bmp,*.gif,*.png,*.jpeg -set wildignore+=*.flv,.*mp4,*.mp3,*.wav,*.wmv,*.avi,*.mkv,*.mov - -"set completeopt=longest,menuone,preview -"set completeopt=longest,menuone,menu -set completeopt=menu,menuone,noselect -"}}} - -" DICTIONARY (C-x C-k) {{{ -"set dictionary+=/usr/share/dict/words -"set spelllang=cs -map <F7> :set spell!<CR> -set spell -"}}} - -" HEX {{{ -command! Xxd :%!xxd -command! Xxdr :%!xxd -r -"}}} - -" APPEARANCE {{{ -set bg=dark -"colorscheme badwolf -"colorscheme zenburn -"colorscheme mustang -"colorscheme desert -"colorscheme wombat -"colorscheme onedark -"colorscheme molokai - -" gruvbox color theme -"https://github.com/morhetz/gruvbox/wiki/Configuration -"let g:gruvbox_italic=1 -"let g:gruvbox_contrast_dark='hard' -"let g:gruvbox_contrast_light='hard' -"let g:gruvbox_improved_strings=0 -"colorscheme gruvbox - -"colorscheme duskfox -colorscheme nightfox -"colorscheme rose-pine -"colorscheme catppuccin -"colorscheme tokyonight -"}}} diff --git a/nvim/lua/config/autocmds.lua b/nvim/lua/config/autocmds.lua new file mode 100644 index 0000000..17a10c9 --- /dev/null +++ b/nvim/lua/config/autocmds.lua @@ -0,0 +1,17 @@ +-- Autocmds are automatically loaded on the VeryLazy event +-- Default autocmds that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/autocmds.lua +-- Add any additional autocmds here + +-- update tab title in tmux +vim.api.nvim_create_autocmd({ "BufEnter" }, { + pattern = { "*" }, + callback = function() + vim.fn.system("tmux rename-window " .. vim.fn.expand("%:p:gs?/home/[a-z]*/??")) + end, +}) +vim.api.nvim_create_autocmd({ "VimLeave" }, { + pattern = { "*" }, + callback = function() + vim.fn.system("tmux rename-window $(basename $SHELL)") + end, +}) diff --git a/nvim/lua/config/keymaps.lua b/nvim/lua/config/keymaps.lua new file mode 100644 index 0000000..2c134f7 --- /dev/null +++ b/nvim/lua/config/keymaps.lua @@ -0,0 +1,3 @@ +-- Keymaps are automatically loaded on the VeryLazy event +-- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua +-- Add any additional keymaps here diff --git a/nvim/lua/config/lazy.lua b/nvim/lua/config/lazy.lua new file mode 100644 index 0000000..58d2571 --- /dev/null +++ b/nvim/lua/config/lazy.lua @@ -0,0 +1,46 @@ +local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" +if not vim.loop.fs_stat(lazypath) then + -- bootstrap lazy.nvim + -- stylua: ignore + vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", lazypath }) +end +vim.opt.rtp:prepend(vim.env.LAZY or lazypath) + +require("lazy").setup({ + spec = { + -- add LazyVim and import its plugins + { "LazyVim/LazyVim", import = "lazyvim.plugins" }, + -- import any extras modules here + -- { import = "lazyvim.plugins.extras.lang.typescript" }, + { import = "lazyvim.plugins.extras.lang.json" }, + -- { import = "lazyvim.plugins.extras.ui.mini-animate" }, + -- import/override with your plugins + { import = "plugins" }, + }, + defaults = { + -- By default, only LazyVim plugins will be lazy-loaded. Your custom plugins will load during startup. + -- If you know what you're doing, you can set this to `true` to have all your custom plugins lazy-loaded by default. + lazy = false, + -- It's recommended to leave version=false for now, since a lot the plugin that support versioning, + -- have outdated releases, which may break your Neovim install. + version = false, -- always use the latest git commit + -- version = "*", -- try installing the latest stable version for plugins that support semver + }, + install = { colorscheme = { "tokyonight", "habamax" } }, + checker = { enabled = true }, -- automatically check for plugin updates + performance = { + rtp = { + -- disable some rtp plugins + disabled_plugins = { + "gzip", + -- "matchit", + -- "matchparen", + -- "netrwPlugin", + "tarPlugin", + "tohtml", + "tutor", + "zipPlugin", + }, + }, + }, +}) diff --git a/nvim/lua/config/options.lua b/nvim/lua/config/options.lua new file mode 100644 index 0000000..315e9c4 --- /dev/null +++ b/nvim/lua/config/options.lua @@ -0,0 +1,4 @@ +-- Options are automatically loaded before lazy.nvim startup +-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua +-- Add any additional options here +vim.opt.spell = true diff --git a/nvim/lua/plugins/core.lua b/nvim/lua/plugins/core.lua new file mode 100644 index 0000000..3fd7c99 --- /dev/null +++ b/nvim/lua/plugins/core.lua @@ -0,0 +1,53 @@ +return { + --{ "leap.nvim", enabled = false }, + { "nvim-notify", enabled = false }, + { "mini.pairs", enabled = false }, + { "LuaSnip", enabled = false }, + + -- fugitive (git) + { "tpope/vim-fugitive" }, + + -- handle line and column numbers in file names + { "wsdjeg/vim-fetch" }, + + -- Asynchronous Lint Engine + { "w0rp/ale", enabled = false }, + + -- Python - PEP 8 + { "nvie/vim-flake8", enabled = false }, + + -- A collection of language packs for Vim. + { "sheerun/vim-polyglot" }, + + -- Jinja2 + { "Glench/Vim-Jinja2-Syntax" }, + + -- file helpers: + -- - :Mkdir, :Rename, :SudoWrite, ... + -- - automatic chmod +x for new scripts + { "tpope/vim-eunuch" }, + + -- colorscheme + { "EdenEast/nightfox.nvim" }, + + { + "nvim-treesitter", + opts = { + ensure_installed = "all", + }, + }, + + { + "which-key.nvim", + opts = { + plugins = { spelling = true }, + }, + }, + { + "LazyVim/LazyVim", + opts = { + colorscheme = "nightfox", + spelling = true, + }, + }, +} diff --git a/nvim/lua/plugins/leap.lua b/nvim/lua/plugins/leap.lua new file mode 100644 index 0000000..fbd5bde --- /dev/null +++ b/nvim/lua/plugins/leap.lua @@ -0,0 +1,24 @@ +return { + { + "ggandor/leap.nvim", + keys = { + { "gl", mode = { "n", "x", "o" }, desc = "Leap forward to" }, + { "gh", mode = { "n", "x", "o" }, desc = "Leap backward to" }, + { "gs", mode = { "n", "x", "o" }, desc = "Leap from windows" }, + }, + config = function(_, opts) + local leap = require("leap") + for k, v in pairs(opts) do + leap.opts[k] = v + end + leap.add_default_mappings(true) + vim.keymap.del({ "x", "o" }, "x") + vim.keymap.del({ "x", "o" }, "X") + + vim.api.nvim_del_keymap("n", "s") + vim.api.nvim_del_keymap("x", "s") + vim.keymap.set({ "n", "x", "o" }, "gl", "<Plug>(leap-forward-to)") + vim.keymap.set({ "n", "x", "o" }, "gh", "<Plug>(leap-backward-to)") + end, + }, +} diff --git a/nvim/lua/plugins/treesitter.lua b/nvim/lua/plugins/treesitter.lua new file mode 100644 index 0000000..8d0144e --- /dev/null +++ b/nvim/lua/plugins/treesitter.lua @@ -0,0 +1,22 @@ +return { + -- add more treesitter parsers + { + "nvim-treesitter/nvim-treesitter", + opts = { + ensure_installed = { + "bash", + "help", + "html", + "javascript", + "json", + "lua", + "markdown", + "markdown_inline", + "python", + "query", + "regex", + "yaml", + }, + }, + }, +} diff --git a/nvim/queries/python/highlights.scm b/nvim/queries/python/highlights.scm new file mode 100644 index 0000000..36e666f --- /dev/null +++ b/nvim/queries/python/highlights.scm @@ -0,0 +1,2 @@ +;; extends +(string) @string @spell diff --git a/nvim/stylua.toml b/nvim/stylua.toml new file mode 100644 index 0000000..5d6c50d --- /dev/null +++ b/nvim/stylua.toml @@ -0,0 +1,3 @@ +indent_type = "Spaces" +indent_width = 2 +column_width = 120 \ No newline at end of file
hluk/config
d433582fc6c7929d59d1abf550762513505c656c
Clean up and update
diff --git a/.Xmodmap b/.Xmodmap deleted file mode 100644 index b333cae..0000000 --- a/.Xmodmap +++ /dev/null @@ -1,11 +0,0 @@ -! Caps Lock -> Ctrl -clear lock -clear control -add control = Caps_Lock Control_L Control_R -keycode 66 = Control_L Caps_Lock NoSymbol NoSymbol - -keycode 172 = XF86AudioPlay XF86AudioPause XF86AudioPlay XF86AudioPause -keycode 208 = XF86AudioPlay NoSymbol XF86AudioPlay -keycode 209 = XF86AudioPause NoSymbol XF86AudioPause -keycode 215 = XF86AudioPlay NoSymbol XF86AudioPlay -keycode 234 = XF86AudioMedia NoSymbol XF86AudioMedia diff --git a/.Xresources b/.Xresources deleted file mode 100644 index 93edcd1..0000000 --- a/.Xresources +++ /dev/null @@ -1,10 +0,0 @@ -!Xft.dpi: 168 -!Xft.dpi: 192 -Xft.dpi: 96 -Xft.antialias: 1 -Xft.hinting: 1 -Xft.hintstyle: hintslight -Xft.rgba: rgb -Xft.lcdfilter: lcddefault - -Xcursor.size: 32 diff --git a/.asoundrc b/.asoundrc deleted file mode 100644 index 03a7859..0000000 --- a/.asoundrc +++ /dev/null @@ -1,25 +0,0 @@ -#defaults.pcm.rate_converter "samplerate_best" -defaults.pcm.rate_converter "speexrate_medium" - -pcm.!surround51 { - type vdownmix - slave.pcm "default" -} -pcm.!surround40 { - type vdownmix - slave.pcm "default" -} - -#ctl.equal { - #type equal; -#} - -#pcm.plugequal { - #type equal; - #slave.pcm "plug:dmix"; -#} - -#pcm.!default { - #type plug; - #slave.pcm plugequal; -#} diff --git a/.dwmrc.h b/.dwmrc.h deleted file mode 100644 index 413e000..0000000 --- a/.dwmrc.h +++ /dev/null @@ -1,110 +0,0 @@ -/* See LICENSE file for copyright and license details. */ - -/* appearance */ -static const char font[] = "-*-terminus-medium-r-*-*-16-*-*-*-*-*-*-*"; -static const char normbordercolor[] = "#444444"; -static const char normbgcolor[] = "#222222"; -static const char normfgcolor[] = "#bbbbbb"; -static const char selbordercolor[] = "#005577"; -static const char selbgcolor[] = "#005577"; -static const char selfgcolor[] = "#eeeeee"; -static const unsigned int borderpx = 1; /* border pixel of windows */ -static const unsigned int snap = 32; /* snap pixel */ -static const Bool showbar = True; /* False means no bar */ -static const Bool topbar = True; /* False means bottom bar */ - -/* tagging */ -static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; - -static const Rule rules[] = { - /* xprop(1): - * WM_CLASS(STRING) = instance, class - * WM_NAME(STRING) = title - */ - /* class instance title tags mask isfloating monitor */ - { "Gimp", NULL, NULL, 0, True, -1 }, - { "Firefox", NULL, NULL, 1 << 8, False, -1 }, -}; - -/* layout(s) */ -static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */ -static const int nmaster = 1; /* number of clients in master area */ -static const Bool resizehints = True; /* True means respect size hints in tiled resizals */ - -static const Layout layouts[] = { - /* symbol arrange function */ - { "[]=", tile }, /* first entry is default */ - { "><>", NULL }, /* no layout function means floating behavior */ - { "[M]", monocle }, -}; - -/* key definitions */ -#define MODKEY Mod1Mask -#define TAGKEYS(KEY,TAG) \ - { MODKEY, KEY, view, {.ui = 1 << TAG} }, \ - { MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \ - { MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \ - { MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} }, - -/* helper for spawning shell commands in the pre dwm-5.0 fashion */ -#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } } - -/* commands */ -static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ -static const char *dmenucmd[] = { "dmenu_run", "-fn", font, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL }; -static const char *termcmd[] = { "st", "-f", font, NULL }; - -static Key keys[] = { - /* modifier key function argument */ - { MODKEY, XK_p, spawn, {.v = dmenucmd } }, - { MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } }, - { MODKEY, XK_b, togglebar, {0} }, - { MODKEY, XK_j, focusstack, {.i = +1 } }, - { MODKEY, XK_k, focusstack, {.i = -1 } }, - { MODKEY, XK_i, incnmaster, {.i = +1 } }, - { MODKEY, XK_d, incnmaster, {.i = -1 } }, - { MODKEY, XK_h, setmfact, {.f = -0.05} }, - { MODKEY, XK_l, setmfact, {.f = +0.05} }, - { MODKEY, XK_Return, zoom, {0} }, - { MODKEY, XK_Tab, view, {0} }, - { MODKEY|ShiftMask, XK_c, killclient, {0} }, - { MODKEY, XK_t, setlayout, {.v = &layouts[0]} }, - { MODKEY, XK_f, setlayout, {.v = &layouts[1]} }, - { MODKEY, XK_m, setlayout, {.v = &layouts[2]} }, - { MODKEY, XK_space, setlayout, {0} }, - { MODKEY|ShiftMask, XK_space, togglefloating, {0} }, - { MODKEY, XK_0, view, {.ui = ~0 } }, - { MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } }, - { MODKEY, XK_comma, focusmon, {.i = -1 } }, - { MODKEY, XK_period, focusmon, {.i = +1 } }, - { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } }, - { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } }, - TAGKEYS( XK_1, 0) - TAGKEYS( XK_2, 1) - TAGKEYS( XK_3, 2) - TAGKEYS( XK_4, 3) - TAGKEYS( XK_5, 4) - TAGKEYS( XK_6, 5) - TAGKEYS( XK_7, 6) - TAGKEYS( XK_8, 7) - TAGKEYS( XK_9, 8) - { MODKEY|ShiftMask, XK_q, quit, {0} }, -}; - -/* button definitions */ -/* click can be ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */ -static Button buttons[] = { - /* click event mask button function argument */ - { ClkLtSymbol, 0, Button1, setlayout, {0} }, - { ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} }, - { ClkWinTitle, 0, Button2, zoom, {0} }, - { ClkStatusText, 0, Button2, spawn, {.v = termcmd } }, - { ClkClientWin, MODKEY, Button1, movemouse, {0} }, - { ClkClientWin, MODKEY, Button2, togglefloating, {0} }, - { ClkClientWin, MODKEY, Button3, resizemouse, {0} }, - { ClkTagBar, 0, Button1, view, {0} }, - { ClkTagBar, 0, Button3, toggleview, {0} }, - { ClkTagBar, MODKEY, Button1, tag, {0} }, - { ClkTagBar, MODKEY, Button3, toggletag, {0} }, -}; - diff --git a/.gdbinit b/.gdbinit deleted file mode 100644 index 7b86297..0000000 --- a/.gdbinit +++ /dev/null @@ -1,4 +0,0 @@ -set history save on -set print pretty on -set pagination off -set confirm off diff --git a/.gitconfig b/.gitconfig deleted file mode 100644 index 4c68dbd..0000000 --- a/.gitconfig +++ /dev/null @@ -1,63 +0,0 @@ -[user] - name = Lukas Holecek - email = [email protected] -[color] - ui = auto -[alias] - co = checkout - st = status --branch --short - d = diff - la = log --date-order --oneline --all --graph --decorate --branches --tags -20 - c = commit --allow-empty #--signoff - pr = pull --rebase - f = fetch --all --tags --prune - ca = commit --all --amend --no-edit - cn = commit --amend --no-edit - rmb = "!f() { git branch -D $*; git push --delete origin $*; }; f" -[core] - whitespace = cr-at-eol - autocrlf = input - pager = less -FRSX - editor = nvim - trustctime = false -[push] - default = tracking -[rerere] - enabled = true - autoupdate = true -[rebase] - stat = true -[diff] - tool = vimdiff - colorMoved = true - # This removes "a/", "b/" prefix from paths in diff, making it easy to copy - # path, but it breaks creating diff files. - #noprefix = true -[difftool] - prompt = false - trustExitCode = true # :cq in Vim to abort opening next diffs -[merge] - tool = vimdiff -[mergetool] - keepBackup = false - trustExitCode = true -[mergetool "vimdiff"] - cmd = nvim -d $BASE $LOCAL $REMOTE $MERGED -c '$wincmd w' -c 'wincmd J' -[init] - defaultBranch = main - -[diff "ansible-vault"] - textconv = env ANSIBLE_VAULT_PASSWORD_FILE=vault-password-file.sh ansible-vault view - -# Delta - nicer diffs -[core] - pager = delta -[interactive] - diffFilter = delta --color-only -[delta] - navigate = true # use n and N to move between diff sections - side-by-side = true -[merge] - conflictstyle = diff3 -[diff] - colorMoved = default diff --git a/.inputrc b/.inputrc deleted file mode 100644 index 19a0c14..0000000 --- a/.inputrc +++ /dev/null @@ -1,3 +0,0 @@ -# Disable annoying "Display all XXX possibilities?" prompt. -set completion-query-items 0 -set page-completions off diff --git a/.screenrc b/.screenrc deleted file mode 100644 index c20683f..0000000 --- a/.screenrc +++ /dev/null @@ -1,28 +0,0 @@ -startup_message off -defutf8 on - -ignorecase on -defscrollback 3000 - -vbell off -bell_msg 'BELL in window %n' - -caption always "%{= 9w}%?%-Lw%?%{+b 9b}%n*%t%?%?%{= 9w}%?%+Lw%?" - -# disable screen locking -bind ^x -bind x - -# Konsole 256 color workaround {{{ -# terminfo and termcap for nice 256 color terminal -# allow bold colors - necessary for some reason -attrcolor b ".I" -# tell screen how to set colors. AB = background, AF=foreground -termcapinfo xterm 'Co#256:AB=\E[48;5;%dm:AF=\E[38;5;%dm' -# erase background with current bg color -defbce "on" -# }}} - -term screen-256color -#term xterm-256color - diff --git a/.xbindkeysrc b/.xbindkeysrc deleted file mode 100644 index 3ab6bd4..0000000 --- a/.xbindkeysrc +++ /dev/null @@ -1,60 +0,0 @@ -# By defaults, xbindkeys does not pay attention with the modifiers -# NumLock, CapsLock and ScrollLock. -# Uncomment the lines above if you want to pay attention to them. - -#keystate_numlock = enable -#keystate_capslock = enable -#keystate_scrolllock= enable - -"xbindkeys_show" - control+shift+q - -# enable/disable wlan -"sh -c '(sudo /etc/rc.d/net-profiles stop && sudo ifconfig wlan0 down) || sudo /etc/rc.d/net-profiles start'" - XF86WLAN - -"~/dev/bin/status.sh" - XF86Launch2 - -# change keyboard layout -"setxkbmap -print | grep -q cz && setxkbmap us || setxkbmap cz" - mod4+control+k - -"~/dev/bin/volume_up.sh" - XF86AudioRaiseVolume -"~/dev/bin/volume_down.sh" - XF86AudioLowerVolume -"~/dev/bin/togglemute.sh" - XF86AudioMute - -"~/dev/bin/red_up.sh" - mod4+control+Up -"~/dev/bin/red_down.sh" - mod4+control+Down - -"~/dev/bin/console.sh" - mod4+q -"xkill" - mod4+mod1+x -"~/dev/bin/browser.sh" - mod4+w -"~/dev/bin/clipboard.sh" - control+grave - -"xdotool set_desktop 0" - mod4+1 -"xdotool set_desktop 1" - mod4+2 -"xdotool set_desktop 2" - mod4+3 -"xdotool set_desktop 3" - mod4+4 -"xdotool set_desktop 4" - mod4+5 -"xdotool set_desktop 5" - mod4+6 -"xdotool set_desktop 6" - mod4+grave - -"killall -HUP xbindkeys" - mod4+control+r diff --git a/.xinitrc b/.xinitrc deleted file mode 100755 index d0a5ea1..0000000 --- a/.xinitrc +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash -# Runs chromium-freeworld in new X11 session. -# -# Solves issues with bad resolution in XWayland when scaling is enabled. -# -# Add "allowed_users = anybody" to "/etc/X11/Xwrapper.config" to launch from a -# Wayland session. -. /etc/X11/xinit/xinitrc-common - -xrandr --output eDP-1 --off --right-of DP-1-2 -xrandr --output DP-1-2 --primary - -export LIBVA_DRIVER_NAME=iHD -exec chromium-freeworld \ - --force-device-scale-factor=2 \ - --window-position=0,0 diff --git a/.xmobarrc b/.xmobarrc deleted file mode 100644 index 51c9044..0000000 --- a/.xmobarrc +++ /dev/null @@ -1,17 +0,0 @@ -Config { font = "xft:Droid Sans:size=10" - , bgColor = "#222" - , fgColor = "#bbb" - , position = Top - , lowerOnStart = True - , commands = [ Run Network "eth0" ["--template","<rx> <tx>","-L","1","-H","1000","--low","aquamarine3","--normal","#f0e050","--high","#ff3333"] 50 - , Run Network "wlan0" ["--template","<rx> <tx>","-L","1","-H","1000","--low","aquamarine3","--normal","#f0e050","--high","#ff3333"] 50 - , Run Cpu ["--template","CPU <total>%","-L","10","-H","90","--low","aquamarine3","--normal","#f0e050","--high","#ff3333"] 50 - , Run Memory ["--template","MEM <used> MiB","-L","400","-H","1000","--low","aquamarine3","--normal","#f0e050","--high","#ff3333"] 10 - , Run Com "~/dev/xmobar/uptime/uptime" [] "uptime" 600 - , Run Com "uname" ["-r"] "" 36000 - , Run Date "%m/%_d %H:%M" "date" 50 - , Run StdinReader - ] - , sepChar = "%" - , alignSep = "}{" - , template = "%StdinReader% }{ • %uptime% %cpu% • %memory% • %eth0% • %uname% <fc=#ee9a50>%date%</fc> "} diff --git a/.zshrc b/.zshrc index cb2d6fd..931aa32 100644 --- a/.zshrc +++ b/.zshrc @@ -1,281 +1,281 @@ # ALT-H is command help # edit command line on C-x C-e # Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc. if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" fi # env# {{{ export EDITOR="$HOME/dev/bin/editor.sh" export PAGER=less export LESS="--ignore-case --quit-if-one-screen --LONG-PROMPT --shift=5" # support colors in less export LESS_TERMCAP_mb=$'\E[01;31m' export LESS_TERMCAP_md=$'\E[01;33m' export LESS_TERMCAP_me=$'\E[0m' export LESS_TERMCAP_se=$'\E[0m' export LESS_TERMCAP_so=$'\E[01;44;33m' export LESS_TERMCAP_ue=$'\E[0m' export LESS_TERMCAP_us=$'\E[01;32m' export PATH="$HOME/.local/bin:$PATH" export PATH="$HOME/.cargo/bin:$PATH" export PATH="$HOME/dev/Nim/bin:$PATH" export PATH="$HOME/dev/bin:$PATH" export PATH="$HOME/dev/scripts:$PATH" export GOPATH="$HOME/go" export PATH="$GOPATH/bin:$PATH" # }}} # basic configuration# {{{ HISTFILE=~/.histfile HISTSIZE=10000 SAVEHIST=10000 setopt hist_ignore_dups setopt hist_ignore_all_dups setopt hist_expire_dups_first bindkey -e # keys bindkey '^[[1~' beginning-of-line bindkey '^[[4~' end-of-line bindkey '^[[3~' delete-char bindkey '^[[P' delete-char bindkey '^[[Z' reverse-menu-complete bindkey "^[OD" backward-word bindkey "^[OC" forward-word # tmux bindkey -v '^[OH' beginning-of-line bindkey -v '^[OF' end-of-line # kitty terminal bindkey -v '\e[H' beginning-of-line bindkey -v '\e[F' end-of-line bindkey -v '\e[3~' delete-char autoload edit-command-line zle -N edit-command-line bindkey '^Xe' edit-command-line bindkey '^X^e' edit-command-line # no CTRL-S setopt NO_FLOW_CONTROL # }}} # completion# {{{ autoload -Uz compinit compinit zstyle ':completion:*' list-colors '' zstyle :compinstall filename "$HOME/.zshrc" # case insensitive completion zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}' zstyle ':completion:*' verbose yes zstyle ':completion:*:descriptions' format '%B%d%b' zstyle ':completion:*:messages' format '%d' zstyle ':completion:*:warnings' format 'No matches for: %d' zstyle ':completion:*' group-name '' zstyle ':completion:*' completer _expand _complete _approximate _ignored # generate descriptions with magic. zstyle ':completion:*' auto-description 'specify: %d' ## Don't prompt for a huge list, page it! zstyle ':completion:*:default' list-prompt '%S%M matches%s' ## Don't prompt for a huge list, menu it! zstyle ':completion:*:default' menu 'select=0' ## Have the newer files last so I see them first #zstyle ':completion:*' file-sort modification reverse #unsetopt LIST_AMBIGUOUS setopt COMPLETE_IN_WORD # Separate man page sections. Neat. zstyle ':completion:*:manuals' separate-sections true # complete with a menu for xwindow ids zstyle ':completion:*:windows' menu on=0 zstyle ':completion:*:expand:*' tag-order all-expansions # more errors allowed for large words and fewer for small words zstyle ':completion:*:approximate:*' max-errors 'reply=( $(( ($#PREFIX+$#SUFFIX)/3 )) )' # Errors format zstyle ':completion:*:corrections' format '%B%d (errors %e)%b' # Don't complete stuff already on the line zstyle ':completion::*:(rm|cp|mv|e):*' ignore-line true # Don't complete directory we are already in (../here) zstyle ':completion:*' ignore-parents parent pwd zstyle ':completion::approximate*:*' prefix-needed false # }}} # aliases {{{ alias rm="rm -vI" alias cp="cp -v" alias mv="mv -v" alias ls="ls --color=auto -h" alias ll="ls -lA" alias l="ls -lAtr" alias grep="grep --colour=auto" alias man="LESS='' LANG=C man" alias ssh="env TERM=xterm ssh" alias unpack="~/dev/bin/unpack.sh" alias natsort=~/dev/natsort/natsort alias m="QT_SCREEN_SCALE_FACTORS=1 smplayer" alias venv='python3 -m venv .venv && source .venv/bin/activate && pip install --upgrade pip setuptools -q' alias copyq="$HOME/dev/build/copyq/release/copyq" alias :q="exit" alias open="xdg-open" alias g="git" alias gc="git co" alias gd="git d" alias gf="git f" alias gs="git show" alias gst="git st" alias gu="git up" alias gg="lazygit" +alias gpr="git pr" gl() { git la --color -$LINES | head -$((LINES - 4)) } gup() { if git branch --list main|grep -q .; then branch=main elif git branch --list develop|grep -q .; then branch=develop else branch=master fi git checkout $branch && git pull --rebase upstream $branch && git push origin $branch } if [ -n "$DISPLAY" ]; then alias mc="mc -x" else alias xx="startx" fi # package manager . /etc/os-release if [[ $NAME =~ "Fedora" ]]; then alias q="dnf" alias s="q search --cacheonly --all" alias i="sudo dnf install" alias u="sudo dnf remove" alias up="sudo dnf upgrade" elif [[ $NAME =~ "Arch Linux" ]]; then #alias q="pacaur" #alias q="trizen" alias q="yay" alias s="q -Ss" alias i="q -S" alias u="sudo pacman -Rs" alias up="q -Syu --devel --needed" alias Up="q -Qe|awk -F'[/ ]' '/^local/{if(\$2~/-(git|svn|bzr|hg|nightly)$/)print\$2}'" alias qdiff="sudo pacdiff" #alias up="q -Syu --aur" alias clean="q -Qdt" elif [[ $NAME =~ "Ubuntu" ]]; then alias q="apt" alias s="q search" alias i="sudo apt install" alias u="sudo apt remove" alias up="sudo apt update && sudo apt upgrade" fi alias b0="~/dev/scripts/bluetooth.sh off" alias b1="~/dev/scripts/bluetooth.sh on" alias w0="~/dev/scripts/work.sh off" alias w1="~/dev/scripts/work.sh on" # cd ~d d=~/Downloads b=~/dev/bin f=~/dev/factory # }}} # functions {{{ # open editor in tmux in new window e() { label=">$1${2:+..}" if [[ -n $TMUX ]]; then tmux new-window $EDITOR "$@" else $EDITOR "$@" fi } # }}} # {{{ fd, fzf, rg # A-c: cd # C-t: complete path # C-r: history export RIPGREP_CONFIG_PATH=$HOME/.config/ripgreprc if [ -d ~/.fzf ]; then export PATH="$HOME/.fzf/bin:$PATH" export FZF_DEFAULT_COMMAND='rg --files' #export FZF_DEFAULT_COMMAND='fd --type f' export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND" export FZF_DEFAULT_OPTS="--history=$HOME/.local/share/fzf_history" export FZF_ALT_C_COMMAND='fd --type directory' source ~/.fzf.zsh source "$HOME/.fzf/shell/completion.zsh" source "$HOME/.fzf/shell/key-bindings.zsh" fi -alias rg="rg --max-columns 999" # }}} # plugins {{{ source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh ZSH_HIGHLIGHT_HIGHLIGHTERS=( main brackets ) ZSH_HIGHLIGHT_STYLES+=( alias 'fg=magenta,bold' path 'fg=cyan' globbing 'fg=yellow' single-hyphen-option 'bold' double-hyphen-option 'bold' ) ZSH_HIGHLIGHT_STYLES[bracket-level-1]='fg=green,bold' ZSH_HIGHLIGHT_STYLES[bracket-level-2]='fg=red,bold' ZSH_HIGHLIGHT_STYLES[bracket-level-3]='fg=yellow,bold' ZSH_HIGHLIGHT_STYLES[bracket-level-4]='fg=magenta,bold' ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=#888899,bg=0" source /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh # https://github.com/romkatv/powerlevel10k source ~/dev/powerlevel10k/powerlevel10k.zsh-theme # }}} # ccache {{{ PATH=/usr/lib/ccache/bin:$PATH ccache --max-size=8G >/dev/null # }}} # Use vi mode bindkey -v bindkey -M vicmd v edit-command-line bindkey -v '^?' backward-delete-char export KEYTIMEOUT=1 # To customize prompt, run `p10k configure` or edit ~/.p10k.zsh. [[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh source ~/.config/broot/launcher/bash/br diff --git a/LIST b/LIST index 7763fc5..a598a78 100644 --- a/LIST +++ b/LIST @@ -1,55 +1,46 @@ ~/.ansible.cfg -~/.asoundrc ~/.config/alacritty.yml ~/.config/ansible-review/ ~/.config/fontconfig/fonts.conf ~/.config/foot/foot.ini +~/.config/gdb/gdbinit ~/.config/git/ ~/.config/gtk-3.0/settings.ini gtk-3.0/ ~/.config/kitty/kitty.conf ~/.config/kwinrc ~/.config/latte/ ~/.config/lattedockrc ~/.config/mako/config mako/ ~/.config/nvim/init.vim nvim/ ~/.config/openbox/ ~/.config/qt5ct/ ~/.config/ripgreprc ~/.config/sway/ ~/.config/swaync/ ~/.config/tig/ +~/.config/tmux/tmux.conf ~/.config/ulauncher/ ~/.config/waybar/ ~/.config/wofi/ ~/.config/xitomatl/xitomatl.ini ~/.config/xkb/ ~/.config/qutebrowser/autoconfig.yml qutebrowser/ ~/.config/qutebrowser/greasemonkey/ qutebrowser/ ~/.config/yamllint/ -~/.dwmrc.h ~/.fakevimrc -~/.gdbinit -~/.gitconfig -~/.inputrc ~/.local/share/konsole/Screen.profile konsole ~/.mozilla/firefox/*/chrome/userChrome.css firefox ~/.mplayer/ ~/.p10k.zsh -~/.screenrc -~/.tmux.conf ~/.vimrc -~/.xbindkeysrc -~/.xinitrc -~/.Xmodmap -~/.Xresources ~/.zshrc ~/dev/bin/ ~/dev/colors/ ~/dev/menus/*.sh menus/ ~/dev/menus/dmenu/ menus/ ~/dev/pdf/ ~/dev/rss/*.sh rss/ ~/dev/xmobar/ ~/dev/zcode/{_rungame.sh,_saved} zcode/ /usr/lib/udev/keymaps/microsoft-ergonomic-keyboard udev/keymaps/microsoft-ergonomic-keyboard /usr/lib/udev/rules.d/95-keymap.rules udev/rules.d/95-keymap.rules diff --git a/bin/monitors.sh b/bin/monitors.sh index a634e63..ae81e21 100755 --- a/bin/monitors.sh +++ b/bin/monitors.sh @@ -1,62 +1,64 @@ #!/bin/bash set -xeu out1="Unknown 0x086E 0x00000000" out2="Goldstar Company Ltd LG Ultra HD 0x00003617" out1_enabled=${1:-1} +scale1=1.5 +scale2=2 scale=2 wallpaper=~/Pictures/wallpapers/current.jpg script_root="$(dirname "$(readlink -f "$0")")" -s1=$scale +s1=$scale1 w1=1920 h1=1080 if [[ $out1_enabled != "1" ]]; then echo "Disabling $out1" w1=0 fi -s2=$scale +s2=$scale2 w2=3840 h2=2160 x1=$((0)) # In Qt 5.15.2, menu positions are wrong when using multiple displays with # different Y coordinates. #y1=$((h2/s2 - h1/s1)) y1=$((0)) -x2=$((w1/s1)) +x2=$(python -c "print(int($w1/$s1))") y2=$((0)) if [[ $out1_enabled == "1" ]]; then msg_out1=$(cat <<EOD output "$out1" scale $s1 output "$out1" pos $x1 $y1 res ${w1}x$h1 output "$out1" enable EOD ) else msg_out1=$(cat <<EOD output "$out1" disable EOD ) fi msg=$(cat <<EOD output "*" scale $scale $msg_out1 output "$out2" scale $s2 output "$out2" pos $x2 $y2 res ${w2}x$h2 output "*" bg "$wallpaper" fill EOD ) swaymsg "$msg" # Changing monitors layout can break mako notifications. "$script_root/notifications.sh" & disown diff --git a/bin/sway_run.sh b/bin/sway_run.sh index 2614c44..e436c51 100755 --- a/bin/sway_run.sh +++ b/bin/sway_run.sh @@ -1,12 +1,12 @@ #!/bin/bash # Run an app or command in Sway Wayland compositor. set -eo pipefail export QT_QPA_PLATFORMTHEME=kvantum export QT_STYLE_OVERRIDE=kvantum export MOZ_ENABLE_WAYLAND=1 export LIBVA_DRIVER_NAME=iHD #exec rofi -show run - -exec ulauncher +#exec ulauncher +exec krunner diff --git a/bin/waybar.sh b/bin/waybar.sh index a36ea9b..3340183 100755 --- a/bin/waybar.sh +++ b/bin/waybar.sh @@ -1,9 +1,10 @@ #!/bin/bash set -exuo pipefail pkill -f 'waybar -b bar-0' || true pkill -f pomodoro.py || true pkill -f 'inotifywait .* /tmp/redshift' || true +#exec waybar -b bar-0 -l trace waybar -b bar-0 > /dev/null & disown diff --git a/gdbinit b/gdbinit new file mode 100644 index 0000000..ac219d8 --- /dev/null +++ b/gdbinit @@ -0,0 +1,6 @@ +set history save on +set history size 10000 +set history remove-duplicates 1 +set history filename ~/.config/gdb/gdb_history + +set debuginfod enabled off diff --git a/nvim/init.vim b/nvim/init.vim index 728efa8..84bcbf0 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -1,515 +1,517 @@ " USAGE: " :h index " :options " :read -- open file read only " :setl ar -- automatically reload file if changed " :windo difft -- diff open files " q/ -- search history " q: -- command history " gf -- open file which filename is under cursor " gi -- go to last insert mode place " g; -- go to last change " g, -- go to next change " ~ -- change case of letter " gq -- reformat " " :g/PATTERN/norm ... -- do something with each matched line (e.g. delete with dd) " " :args **/*.h | vert sall -- open all matching files " " :'<,'>norm @r -- run a macro on each line in selection " :'<,'>norm . -- repeat last change on each line in selection " " :!ctags -R . /usr/include/X11/ /usr/include/qt5/ -- generate ctags " S-k -- open manual page for symbol under cursor " " http://vimbits.com/bits?sort=top " https://www.reddit.com/r/vim/wiki/vimrctips " OPTIONS {{{ " highlight matched set hlsearch " command history size set history=512 " case insensitive search set ignorecase set smartcase " search while typing set incsearch " shows the effects of a command as you type set inccommand=nosplit " show numbers set number " automatic indentation set autoindent filetype plugin indent on " cursor show next/prev parenthesis set showmatch " completion menu set wildmenu set wildmode=longest:full,full " tab -> spaces set expandtab set shiftwidth=4 set tabstop=4 " keep a 5 line buffer for the cursor from top/bottom of window set scrolloff=5 " X11 clipboard set clipboard=unnamed,unnamedplus " use ~ with movement set tildeop " persistent undo history call system('mkdir -p ~/.config/nvim/undofiles/') set undodir=~/.config/nvim/undofiles/ set undofile autocmd OptionSet guicursor noautocmd set guicursor= " disable per-file configuration set nomodeline " automatically reload changed file set autoread " show tabs and trailing whitespace set list listchars=tab:>·,trail:~ " Fix resetting nopaste after pasting. (The issue breaks expandtab config.) " Fixed in version v0.4.2. " See: https://github.com/neovim/neovim/issues/7994 au InsertLeave * set nopaste set termguicolors set showtabline=2 let mapleader = " " set notimeout + +"set relativenumber " }}} " FILES {{{ " update tab title in tmux autocmd BufEnter * call system("tmux rename-window " . expand("%:p:gs?/home/[a-z]*/??")) autocmd VimLeave * call system("tmux rename-window $(basename $SHELL)") " doxygen autocmd BufNewFile,BufReadPost *.cpp,*.c,*.h set syntax+=.doxygen " qml autocmd BufRead,BufNewFile *.qml setfiletype javascript " Jenkinsfile autocmd BufRead,BufNewFile *Jenkinsfile* setfiletype groovy " git commit message autocmd FileType gitcommit au! BufEnter COMMIT_EDITMSG call setpos('.', [0, 1, 1, 0])|set spell|set nosmartindent|set noautoindent|set nocindent " json autocmd BufRead,BufNewFile *.json setlocal ts=2 sts=2 sw=2 expandtab " yaml autocmd FileType yaml setlocal ts=2 sts=2 sw=2 expandtab autocmd BufRead,BufNewFile ~/.config/yamllint/config setfiletype yaml autocmd BufRead,BufNewFile */ansible/inventory/* setfiletype yaml " lua autocmd FileType lua setlocal ts=2 sts=2 sw=2 expandtab " go autocmd FileType go setlocal ts=4 sts=4 sw=4 noexpandtab " ruby autocmd FileType ruby setlocal ts=2 sts=2 sw=2 expandtab autocmd FileType eruby setlocal ts=2 sts=2 sw=2 expandtab " meson autocmd BufRead,BufNewFile meson.build setlocal ts=2 sts=2 sw=2 expandtab " elixir autocmd FileType elixir setlocal formatprg=mix\ format\ - " fedpkg update (Bodhi update configuration) autocmd BufRead,BufNewFile bodhi.template setlocal filetype=toml " }}} " PLUGINS {{{ " https://github.com/junegunn/vim-plug " curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim " :PlugInstall to install new plugins " :PlugUpdate to update plugins " :PlugUpgrade to upgrade vim-plug call plug#begin('~/.config/nvim/plugged') "" toggle comment (NERD commenter) Plug 'scrooloose/nerdcommenter' map <C-\> ,c<SPACE>j imap <C-\> <C-o>,c<SPACE><DOWN> "" taglist "Plug 'vim-scripts/taglist.vim' "noremap tt :TlistToggle<CR> " Asynchronous Lint Engine Plug 'w0rp/ale' let g:ale_linters = { \ 'python': ['flake8',], \} autocmd BufEnter schema.rb ALEDisable " snippets "Plug 'SirVer/ultisnips' "Plug 'honza/vim-snippets' "let g:UltiSnipsExpandTrigger="<tab>" " fugitive (git) Plug 'tpope/vim-fugitive' command Gbl Git blame " lazygit Plug 'kdheepak/lazygit.nvim' nnoremap <silent> <leader>G :LazyGit<CR> " asynchronous build and test dispatcher Plug 'tpope/vim-dispatch' " file helpers: " - :Mkdir, :Rename, :SudoWrite, ... " - automatic chmod +x for new scripts Plug 'tpope/vim-eunuch' " Python " PEP 8 Plug 'nvie/vim-flake8' " A collection of language packs for Vim. Plug 'sheerun/vim-polyglot' let g:polyglot_disabled = ['autoindent', 'markdown'] " Rust syntax "Plug 'rust-lang/rust.vim' " Go "Plug 'fatih/vim-go' " meson "Plug 'igankevich/mesonic' " jsonnet "Plug 'google/vim-jsonnet' "autocmd BufRead,BufNewFile *.jsonnet setlocal ts=2 sts=2 sw=2 expandtab " Ruby on Rails "Plug 'tpope/vim-rails' " Jinja2 Plug 'Glench/Vim-Jinja2-Syntax' " Nim Plug 'alaviss/nim.nvim' " fzf Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } Plug 'junegunn/fzf.vim' let g:fzf_layout = { 'window': { 'width': 0.9, 'height': 0.9 } } let g:fzf_preview_window = ['right:50%', 'ctrl-/'] let g:fzf_history_dir = '~/.local/share/fzf-history' let $FZF_DEFAULT_COMMAND = 'rg --files' let $RIPGREP_CONFIG_PATH = $HOME .. '/.config/ripgreprc' noremap <leader>f :Files<CR> noremap <leader>g :Rg!<CR> noremap <leader>b :Buffers<CR> noremap <leader>t :Tags<CR> " Insert mode completion imap <c-x><c-k> <plug>(fzf-complete-word) imap <c-x><c-f> <plug>(fzf-complete-path) imap <c-x><c-j> <plug>(fzf-complete-file-ag) imap <c-x><c-l> <plug>(fzf-complete-line) " Color schemes Plug 'sjl/badwolf' Plug 'morhetz/gruvbox' Plug 'catppuccin/nvim' Plug 'rose-pine/neovim' Plug 'EdenEast/nightfox.nvim' Plug 'folke/tokyonight.nvim', { 'branch': 'main' } " reopen files at your last edit position Plug 'farmergreg/vim-lastplace' Plug 'nvim-lualine/lualine.nvim' Plug 'kyazdani42/nvim-web-devicons' " completion Plug 'neovim/nvim-lspconfig' Plug 'hrsh7th/cmp-nvim-lsp' Plug 'hrsh7th/cmp-buffer' Plug 'hrsh7th/cmp-path' Plug 'hrsh7th/cmp-cmdline' Plug 'hrsh7th/nvim-cmp' " handle line and column numbers in file names Plug 'wsdjeg/vim-fetch' "Plug 'psf/black' " Treesitter Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'} Plug 'nvim-treesitter/nvim-treesitter-textobjects' call plug#end() " }}} " LUA {{{ lua <<LUA_END -- https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#pylsp require'lspconfig'.pylsp.setup{ settings = { pylsp = { plugins = { mccabe = { enabled = false, }, pycodestyle = { maxLineLength = 100, enabled = true, }, pylint = { args = { '--max-line-length=100', '--disable=arguments-renamed', '--disable=missing-class-docstring', '--disable=missing-function-docstring', '--disable=missing-module-docstring', '--extension-pkg-whitelist=PyQt5', }, enabled = false, }, } } } } local cmp = require('cmp') cmp.setup({ sources = { { name = 'nvim_lsp' }, { name = 'buffer' }, { name = 'path' }, }, completion = { autocomplete = { require('cmp.types').cmp.TriggerEvent.InsertEnter, require('cmp.types').cmp.TriggerEvent.TextChanged } }, mapping = cmp.mapping.preset.insert({ ['<C-d>'] = cmp.mapping.scroll_docs(-4), ['<C-f>'] = cmp.mapping.scroll_docs(4), ['<C-Space>'] = cmp.mapping.complete(), ['<CR>'] = cmp.mapping.confirm { behavior = cmp.ConfirmBehavior.Replace, select = false, }, ['<Tab>'] = cmp.mapping(function(fallback) if cmp.visible() then cmp.select_next_item() else fallback() end end, { 'i', 's' }), ['<S-Tab>'] = cmp.mapping(function(fallback) if cmp.visible() then cmp.select_prev_item() else fallback() end end, { 'i', 's' }), }), }) cmp.setup.cmdline(':', { sources = cmp.config.sources({ { name = 'path' } }, { { name = 'cmdline' } }) }) require('nvim-treesitter.configs').setup { ensure_installed = "all", sync_install = false, -- install languages synchronously (only applied to `ensure_installed`) textobjects = { select = { enable = true, keymaps = { ["af"] = "@function.outer", ["if"] = "@function.inner", ["ac"] = "@class.outer", ["ic"] = "@class.inner", ["ab"] = "@block.outer", ["ib"] = "@block.inner", ["aa"] = "@parameter.outer", ["ia"] = "@parameter.inner", }, }, move = { enable = true, set_jumps = true, goto_next_start = { ["]m"] = "@function.outer", ["]b"] = "@block.outer", ["]a"] = "@parameter.outer", }, goto_next_end = { ["]M"] = "@function.outer", ["]B"] = "@block.outer", ["]A"] = "@parameter.outer", }, goto_previous_start = { ["[m"] = "@function.outer", ["[b"] = "@block.outer", ["[a"] = "@parameter.outer", }, goto_previous_end = { ["[M"] = "@function.outer", ["[B"] = "@block.outer", ["[A"] = "@parameter.outer", }, }, }, } require'lualine'.setup { sections = { lualine_a = {'mode'}, lualine_b = { 'branch', 'diff', {'diagnostics', sources = {'nvim_diagnostic', 'coc'}}, }, lualine_c = {{'filename', path=1}}, lualine_x = {'encoding', 'fileformat', 'filetype'}, lualine_y = {'progress'}, lualine_z = {'location'} }, inactive_sections = { lualine_a = {}, lualine_b = {{'filename', path=1}}, lualine_c = {}, lualine_x = {'location'}, lualine_y = {}, lualine_z = {} }, tabline = { lualine_a = {{ 'buffers', show_filename_only=false, mode=2, max_length = vim.o.columns }}, lualine_b = {}, lualine_c = {}, lualine_x = {}, lualine_y = {}, lualine_z = {} }, } LUA_END " }}} " KEYS {{{ " faster commands "nnoremap ; : "nnoremap : ; "vnoremap ; : "vnoremap : ; " typos command! Q :q command! Qa :qa command! W :w command! Wq :wq command! WQ :wq " edit/source configuration noremap <leader>ee :split ~/.config/nvim/init.vim <CR> noremap <leader>er :source ~/.config/nvim/init.vim <CR> " clear highlighted search term on space noremap <silent> <leader><Space> :nohlsearch<CR> " reselect visual block after indent vnoremap < <gv vnoremap > >gv inoremap jj <Esc> nnoremap Q <Nop> "tnoremap <Esc> <C-\><C-n> "tnoremap <leader>h <C-\><C-N><C-w>h "tnoremap <leader>j <C-\><C-N><C-w>j "tnoremap <leader>k <C-\><C-N><C-w>k "tnoremap <leader>l <C-\><C-N><C-w>l nnoremap <leader>h <C-w>h nnoremap <leader>j <C-w>j nnoremap <leader>k <C-w>k nnoremap <leader>l <C-w>l tnoremap <A-S-h> <C-\><C-N><C-w><S-h> tnoremap <A-S-j> <C-\><C-N><C-w><S-j> tnoremap <A-S-k> <C-\><C-N><C-w><S-k> tnoremap <A-S-l> <C-\><C-N><C-w><S-l> nnoremap <A-S-h> <C-w><S-h> nnoremap <A-S-j> <C-w><S-j> nnoremap <A-S-k> <C-w><S-k> nnoremap <A-S-l> <C-w><S-l> " }}} " COMPLETION {{{ " don't complete some filenames set wildignore+=.hg,.git,.svn " Version control set wildignore+=*.aux,*.out,*.toc " LaTeX intermediate files set wildignore+=*.o,*.obj,*.exe,*.dll " compiled object files set wildignore+=*.spl " compiled spelling word lists set wildignore+=*.sw? " Vim swap files set wildignore+=*.pyc " python binaries set wildignore+=*.luac " Lua byte code " don't complete multimedia binary files set wildignore+=*.jpg,*.bmp,*.gif,*.png,*.jpeg set wildignore+=*.flv,.*mp4,*.mp3,*.wav,*.wmv,*.avi,*.mkv,*.mov "set completeopt=longest,menuone,preview "set completeopt=longest,menuone,menu set completeopt=menu,menuone,noselect "}}} " DICTIONARY (C-x C-k) {{{ "set dictionary+=/usr/share/dict/words "set spelllang=cs map <F7> :set spell!<CR> set spell "}}} " HEX {{{ command! Xxd :%!xxd command! Xxdr :%!xxd -r "}}} " APPEARANCE {{{ set bg=dark "colorscheme badwolf "colorscheme zenburn "colorscheme mustang "colorscheme desert "colorscheme wombat "colorscheme onedark "colorscheme molokai " gruvbox color theme "https://github.com/morhetz/gruvbox/wiki/Configuration "let g:gruvbox_italic=1 "let g:gruvbox_contrast_dark='hard' "let g:gruvbox_contrast_light='hard' "let g:gruvbox_improved_strings=0 "colorscheme gruvbox "colorscheme duskfox colorscheme nightfox "colorscheme rose-pine "colorscheme catppuccin "colorscheme tokyonight "}}} diff --git a/ripgreprc b/ripgreprc index 14175f2..f5ca00e 100644 --- a/ripgreprc +++ b/ripgreprc @@ -1,8 +1,10 @@ --hidden --smart-case +--max-columns=10000 +--max-columns-preview --glob=!.git --glob=!.mypy_cache* --glob=!.venv* --glob=!venv --glob=!tags diff --git a/sway/config b/sway/config index 9158b8a..ce3e679 100644 --- a/sway/config +++ b/sway/config @@ -1,271 +1,274 @@ # Sway Wayland compositor configuration. # See: sway(5) exec systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK exec hash dbus-update-activation-environment 2>/dev/null && \ dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK # A polkit agent is needed by some apps. exec lxpolkit # Allow screen sharing exec env XDG_CURRENT_DESKTOP=sway /usr/libexec/xdg-desktop-portal -r default_orientation horizontal #workspace_layout tabbed set $mod Mod4 set $alt Mod1 set $ctrl Control # Disable annoying focus with mouse. focus_follows_mouse no # use these keys for focus, movement, and resize directions when reaching for # the arrows is not convenient set $up k set $down j set $left h set $right l # Use Mouse+$mod to drag floating windows to their wanted position floating_modifier $mod # kill focused window #bindsym $mod+Shift+q kill bindsym $alt+F4 kill bindsym $mod+F4 kill # The middle button over a titlebar kills the window bindsym --release button2 kill # The right button toggles floating bindsym button3 floating toggle # change focus bindsym $mod+$left focus left bindsym $mod+$down focus down bindsym $mod+$up focus up bindsym $mod+$right focus right # alternatively, you can use the cursor keys: bindsym $mod+Left focus left bindsym $mod+Down focus down bindsym $mod+Up focus up bindsym $mod+Right focus right bindsym $alt+Tab focus left # move focused window bindsym $mod+$ctrl+$left move left bindsym $mod+$ctrl+$down move down bindsym $mod+$ctrl+$up move up bindsym $mod+$ctrl+$right move right # alternatively, you can use the cursor keys: bindsym $mod+Shift+Left move left bindsym $mod+Shift+Down move down bindsym $mod+Shift+Up move up bindsym $mod+Shift+Right move right # split in horizontal orientation #bindsym $mod+$ctrl+h split h # split in vertical orientation bindsym $mod+v split v # enter fullscreen mode for the focused container bindsym $mod+Shift+f fullscreen toggle # change container layout (stacked, tabbed, toggle split) #bindsym $mod+s layout stacking bindsym $mod+Shift+t layout tabbed bindsym $mod+Shift+s layout toggle split # toggle tiling / floating bindsym $mod+Shift+space floating toggle # change focus between tiling / floating windows bindsym $mod+space focus mode_toggle # focus the parent container #bindsym $mod+a focus parent # focus the child container #bindsym $mod+d focus child # switch to workspace bindsym $mod+grave workspace 0 bindsym $mod+1 workspace 1 bindsym $mod+2 workspace 2 bindsym $mod+3 workspace 3 bindsym $mod+4 workspace 4 bindsym $mod+5 workspace 5 bindsym $mod+6 workspace 6 bindsym $mod+7 workspace 7 bindsym $mod+8 workspace 8 bindsym $mod+9 workspace 9 bindsym $mod+0 workspace 10 bindsym $mod+a workspace 1 bindsym $mod+s workspace 2 bindsym $mod+d workspace 3 bindsym $mod+f workspace 4 bindsym $mod+g workspace 5 # move focused container to workspace bindsym $mod+Shift+grave move container to workspace 0 bindsym $mod+Shift+1 move container to workspace 1 bindsym $mod+Shift+2 move container to workspace 2 bindsym $mod+Shift+3 move container to workspace 3 bindsym $mod+Shift+4 move container to workspace 4 bindsym $mod+Shift+5 move container to workspace 5 bindsym $mod+Shift+6 move container to workspace 6 bindsym $mod+Shift+7 move container to workspace 7 bindsym $mod+Shift+8 move container to workspace 8 bindsym $mod+Shift+9 move container to workspace 9 bindsym $mod+Shift+0 move container to workspace 10 bindsym $mod+m move workspace to output right # reload the configuration file bindsym $mod+Shift+c reload # resize window (you can also use the mouse for that) mode "resize" { # These bindings trigger as soon as you enter the resize mode # Pressing left will shrink the window’s width. # Pressing right will grow the window’s width. # Pressing up will shrink the window’s height. # Pressing down will grow the window’s height. bindsym $left resize shrink width 10 px or 10 ppt bindsym $down resize grow height 10 px or 10 ppt bindsym $up resize shrink height 10 px or 10 ppt bindsym $right resize grow width 10 px or 10 ppt # same bindings, but for the arrow keys bindsym Left resize shrink width 10 px or 10 ppt bindsym Down resize grow height 10 px or 10 ppt bindsym Up resize shrink height 10 px or 10 ppt bindsym Right resize grow width 10 px or 10 ppt # back to normal: Enter or Escape bindsym Return mode "default" bindsym Escape mode "default" } bindsym $mod+$alt+r mode "resize" bar { #tray_output eDP-1 #tray_output DP-4 #status_command i3status --config ~/.i3/status.conf #status_command i3status-rs ~/.config/sway/status.toml swaybar_command waybar colors { background #282828 statusline #aaaaaa separator #505050 focused_workspace #4c7899 #285577 #ffffff active_workspace #333333 #5f676a #ffffff inactive_workspace #333333 #222222 #888888 urgent_workspace #2f343a #900000 #ffffff binding_mode #2f343a #900000 #ffffff } } default_border pixel 4 default_floating_border normal hide_edge_borders --i3 smart titlebar_padding 2 titlebar_border_thickness 0 font JetBrains Mono NL Medium 10px workspace_auto_back_and_forth yes # class border backgr. text indicator child_border client.focused #4c7899 #285577 #aaddff #2e9ef4 #00aaff client.focused_inactive #333333 #5f676a #aaddff #484e50 #5f676a client.unfocused #333333 #222222 #888888 #292d2e #222222 client.urgent #2f343a #900000 #ffffff #900000 #900000 client.placeholder #000000 #0c0c0c #ffffff #000000 #0c0c0c client.background #ffffff # Window behavior #for_window [instance="^copyq$" class="^[Cc]opyq"] floating enable, border normal #for_window [instance="^xfce4-appfinder$" class="^Xfce4-appfinder$"] floating enable, border normal #for_window [instance="^xev$"] floating enable, border normal for_window [app_id="^com.github.hluk.copyq$"] floating enable, border normal for_window [title="^InfiniteCopy$"] floating enable, border normal for_window [app_id="^mpv$"] floating enable, resize set 960 540, border pixel 0 for_window [app_id="^firefox$" title="^Picture-in-Picture$"] floating enable for_window [title=" - Sharing Indicator$"] floating enable, sticky enable for_window [title="^Password Required .* Firefox$"] floating enable for_window [app_id="^ulauncher$"] floating enable, border none # Omit locking when fullscreen window is active # xwayland version for_window [class=".*"] inhibit_idle fullscreen # wayland vesion for_window [app_id=".*"] inhibit_idle fullscreen # Shortcuts bindsym $mod+Shift+q exec "~/dev/bin/console.sh" bindsym $mod+Shift+w exec "~/dev/bin/browser.sh" bindsym $mod+q exec "~/dev/bin/clipboard.sh" bindsym $mod+z exec "~/dev/build/copyq/Desktop-Debug/copyq -s test2 toggle" bindsym $mod+x exec "~/dev/config/bin/sway_run.sh" bindsym $ctrl+$alt+l exec "~/dev/bin/lock.sh" bindsym $mod+$ctrl+t exec "~/dev/bin/clipboard.sh triggerGlobalShortcut 'Copy Text in Image'" bindsym $mod+$ctrl+s exec "~/dev/bin/screenshot.sh" # Volume bindsym XF86AudioLowerVolume exec "~/dev/bin/volume_down.sh" bindsym XF86AudioRaiseVolume exec "~/dev/bin/volume_up.sh" bindsym XF86AudioMute exec "~/dev/bin/togglemute.sh" bindsym $mod+Shift+p exec "pavucontrol" bindsym XF86AudioPlay exec "~/dev/bin/toggleplay.sh" bindsym $mod+p exec "~/dev/bin/toggleplay.sh" +bindsym XF86MonBrightnessDown exec "~/dev/bin/brightness_down.sh" +bindsym XF86MonBrightnessUp exec "~/dev/bin/brightness_up.sh" + # redshift (manual) bindsym $mod+$ctrl+Up exec "~/dev/bin/red_up.sh" bindsym $mod+$ctrl+Down exec "~/dev/bin/red_down.sh" bindsym XF86Launch8 exec "~/dev/bin/red_up.sh" bindsym XF86Launch9 exec "~/dev/bin/red_down.sh" # Autostart exec "~/dev/bin/notifications.sh" exec "~/dev/bin/sunset.sh" exec "~/dev/bin/idle.sh" exec "~/dev/bin/xitomatl.sh" # sleep as workaround for big tray icons waybar 0.9.8 bug # https://github.com/Alexays/Waybar/issues/1212 exec sh -c "sleep 5; exec ~/dev/bin/clipboard.sh" # swaymsg -t get_outputs exec_always "~/dev/bin/monitors.sh" # swaymsg -t get_inputs #input type:keyboard xkb_numlock enable exec_always "~/dev/bin/keyboard.sh" # Toggle notification center bindsym $mod+Shift+n exec swaync-client --toggle-panel --skip-wait workspace 0 output eDP-1 workspace 1 output DP-6 workspace 2 output DP-6 workspace 3 output DP-6 workspace 4 output DP-6 focus output DP-6 diff --git a/.tmux.conf b/tmux.conf similarity index 100% rename from .tmux.conf rename to tmux.conf diff --git a/update.sh b/update.sh index 5232366..a830f01 100755 --- a/update.sh +++ b/update.sh @@ -1,25 +1,25 @@ #!/bin/bash set -ex ./_update.awk LIST args=( --exclude=hotspot.sh --exclude=update.sh --exclude=pwned.sh --exclude=lyrics.py - --exclude=.gitconfig + --exclude-path=git/config --exclude-dir=.git -iRE -e '^P=' -e '^\s*pass.' -e 'passw(ord|d).*[:=>]' -e 'secret' . ) if grep "${args[@]}"; then echo 'Passwords detected' exit 1 fi git diff diff --git a/waybar/config b/waybar/config index 2c05e54..ebb7ca1 100644 --- a/waybar/config +++ b/waybar/config @@ -1,145 +1,146 @@ { "layer": "top", "position": "top", "height": 22, "modules-left": [ "sway/workspaces", "sway/mode" ], "modules-center": [ "sway/window" ], "modules-right": [ //"network", "custom/notification", "custom/redshift", "pulseaudio", "cpu", "battery", "tray", "clock#date", "clock#time" ], "custom/notification": { "tooltip": false, "format": "{icon}", "format-icons": { "notification": "<span foreground='red'></span>", - "none": "", + "none": "<span foreground='#555'></span>", "dnd-notification": "<span foreground='red'></span>", "dnd-none": "" }, "return-type": "json", "exec-if": "which swaync-client", "exec": "swaync-client --subscribe-waybar", + "restart-interval": 300, "on-click": "swaync-client --toggle-panel --skip-wait", "on-click-right": "swaync-client --toggle-dnd --skip-wait", "on-click-middle": "swaync-client --close-all --skip-wait", "escape": true }, "custom/redshift": { "format": "{}°", "on-click": "~/dev/bin/sunset.sh", "on-scroll-up": "~/dev/bin/red_up.sh", "on-scroll-down": "~/dev/bin/red_down.sh", "exec": "~/dev/bin/red_watch.sh" }, "battery": { "interval": 60, "states": { "warning": 30, "critical": 15 }, // Connected to AC "format": " {icon} {capacity}%", // Not connected to AC "format-discharging": "{icon} {capacity}%", "format-icons": [ "", "", "", "", "" ], "tooltip": true }, "clock#time": { "interval": 60, "format": "{:%H:%M}", "tooltip": false }, "clock#date": { "interval": 60, "format": "{:%e %b %Y %a}", "tooltip-format": "{:%e %B %Y %A}" }, "cpu": { "interval": 10, "format": " {usage}%({load})", "states": { - "warning": 70, - "critical": 90 + "warning": 10, + "critical": 25 } }, "network": { "interval": 10, "format-wifi": " {essid} ({signalStrength}%)", "format-ethernet": "{ifname}", "format-disconnected": "⚠ Disconnected", "tooltip-format": "{ifname}: {ipaddr}" }, "pulseaudio": { "scroll-step": 5, "format": "{icon} {volume}%", "format-muted": "🔇 Muted", "format-icons": { "headphones": "", "handsfree": "", "headset": "", "phone": "", "portable": "", "car": "", "default": ["", ""] }, "on-click": "pavucontrol", "tooltip": true }, "sway/mode": { "format": "<span style=\"italic\"> {}</span>", "tooltip": false }, "sway/window": { "format": "{}", "max-length": 120 }, "sway/workspaces": { "all-outputs": false, "disable-scroll": true, "format": "{icon}{name}", "format-icons": { "urgent": "", "focused": "", "default": "" } }, "tray": { "icon-size": 16, "spacing": 10 } } diff --git a/waybar/style.css b/waybar/style.css index a8b8aa9..5087b00 100644 --- a/waybar/style.css +++ b/waybar/style.css @@ -1,116 +1,111 @@ /* Reset all styles */ * { border: none; border-radius: 0; min-height: 0; min-width: 0; margin: 0; padding: 0; } /* The whole bar */ #waybar { background-color: #282828; color: #aaa; - /*font-family: JetBrains Mono NL Medium;*/ - font-family: Overpass; + font-family: JetBrains Mono NL Medium; + /*font-family: Overpass;*/ font-size: 12px; } /* Each module */ -#custom-pomodoro, +#custom-notification, #custom-redshift, #battery, #clock, #cpu, #mode, #network, #pulseaudio, #tray { padding-left: 8px; padding-right: 8px; } #battery.warning { color: orange; } #battery.critical { color: red; } #clock { } #cpu { } #cpu.warning { color: orange; } #cpu.critical { color: red; } #mode { background-color: #64727D; border-bottom: 2px solid #eee; /* To compensate for the top border and still have vertical centering */ padding-top: 2px; } #network { } #network.disconnected { color: orange; } #pulseaudio { } #pulseaudio.muted { } #tray { } #window { margin-left: 32px; margin-right: 32px; font-weight: normal; color: #bbb; } #workspaces button { border-bottom: 2px solid transparent; /* To compensate for the top border and still have vertical centering */ padding-top: 2px; padding-left: 8px; padding-right: 8px; color: #888888; font-weight: bold; } #workspaces button:hover { background: #323232; box-shadow: inherit; text-shadow: inherit; } #workspaces button.focused { border-color: #4c7899; color: #aaddff; background-color: #285577; } #workspaces button.urgent { border-color: #c9545d; color: #c9545d; } - -#custom-pomodoro.paused { - background: #f53c3c; - color: white; -}
rvm/rvm
e1713b0092c58722efe593c766a38ad10ccba070
Add Ruby 3.4.4 (#5568)
diff --git a/CHANGELOG.md b/CHANGELOG.md index d62d669..d145e3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,596 +1,597 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Use OpenSSL 3 for Ruby 3.2 and 3.3 [\#5480](https://github.com/rvm/rvm/pull/5480) * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) * Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) * Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) * Install `libncurses-dev` instead of `libncurses5-dev` on newer Debian and Ubuntu versions [\#5477](https://github.com/rvm/rvm/pull/5477) * Use `zlib-ng-compat` packages for Fedora 40+ [\#5479](https://github.com/rvm/rvm/pull/5479) * Detect core count on ARM-based machines [\#5498](https://github.com/rvm/rvm/pull/5498) * Fix requirement check for Ubuntu [\#5500](https://github.com/rvm/rvm/pull/5500) * Update location of homebrew install script on osx [\#5505](https://github.com/rvm/rvm/pull/5505) * Fix detection of Homebrew's write permissions when using Workbrew [\#5528](https://github.com/rvm/rvm/pull/5528) * Use pkgconf instead of pkg-config on macOS/Homebrew [\#5564](https://github.com/rvm/rvm/pull/5564) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) * 3.3.3 [\#5474](https://github.com/rvm/rvm/pull/5474) * 3.3.4 [\#5488](https://github.com/rvm/rvm/pull/5488) * 3.2.5 [\#5490](https://github.com/rvm/rvm/pull/5490) * 3.3.5 [\#5499](https://github.com/rvm/rvm/pull/5499) * 3.2.6, 3.3.6 [\#5513](https://github.com/rvm/rvm/pull/5513) * 3.4.0, 3.4.1 [\#5533](https://github.com/rvm/rvm/pull/5533) * 3.3.7 [\#5540](https://github.com/rvm/rvm/pull/5540) * 3.2.7 [\#5544](https://github.com/rvm/rvm/pull/5544) * 3.4.2 [\#5549](https://github.com/rvm/rvm/pull/5549) * 3.1.6, 3.1.7, 3.2.8 [\#5558](https://github.com/rvm/rvm/pull/5558) * 3.3.8 [\#5560](https://github.com/rvm/rvm/pull/5560) * 3.4.3 [\#5562](https://github.com/rvm/rvm/pull/5562) * 3.5.0-preview1 [\#5566](https://github.com/rvm/rvm/pull/5566) +* 3.4.4 [\#5568](https://github.com/rvm/rvm/pull/5568) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) * 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1, 24.0.2, 24.1.0, 24.1.1, 24.1.2, 24.2.0, 24.2.1 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.3.15.0 [\#5482](https://github.com/rvm/rvm/pull/5482) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) * 9.4.8.0 [\#5484](https://github.com/rvm/rvm/pull/5484) * 9.4.9.0 [\#5512](https://github.com/rvm/rvm/pull/5512) * 9.4.10.0 [\#5538](https://github.com/rvm/rvm/pull/5538) * 9.4.11.0 [\#5541](https://github.com/rvm/rvm/pull/5541) * 9.4.12.0 [\#5548](https://github.com/rvm/rvm/pull/5548) * 9.4.12.1 [\#5567](https://github.com/rvm/rvm/pull/5567) * 10.0.0.0 [\#5561](https://github.com/rvm/rvm/pull/5561) * 10.0.0.1 [\#5567](https://github.com/rvm/rvm/pull/5567) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) * 3.1.6, 3.2.5, 3.3.2, 3.3.3 and 3.3.4 [\#5491](https://github.com/rvm/rvm/pull/5491) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 24.04 (Noble Numbat) x64 binaries * 3.2.6 and 3.3.6 [\#5529](https://github.com/rvm/rvm/pull/5529) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) #### Upgraded Ruby interpreters: * Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159), 2.5.0-preview1 [\#4204](https://github.com/rvm/rvm/pull/4204), 2.2.9, 2.3.6, 2.4.3 and 2.5.0-rc1 [\#4261](https://github.com/rvm/rvm/pull/4261), 2.5.0 [\#4265](https://github.com/rvm/rvm/pull/4265), 2.6.0-preview1 [\#4317](https://github.com/rvm/rvm/pull/4317), 2.2.10, 2.3.7, 2.4.4, 2.5.1 [\#4340](https://github.com/rvm/rvm/pull/4340) and 2.6.0-preview2[\#4395](https://github.com/rvm/rvm/pull/4395) * Add support for Rubinius 3.85-3.100 * Add support for JRuby 9.1.14.0 [\#4224](https://github.com/rvm/rvm/pull/4224), 9.1.15.0 [\#4258](https://github.com/rvm/rvm/pull/4258), 9.1.16.0 [\#4316](https://github.com/rvm/rvm/pull/4316), 9.1.17.0 [\#4366](https://github.com/rvm/rvm/pull/4366), 9.2.0.0 [\#4390](https://github.com/rvm/rvm/pull/4390) * Add support for mruby 1.4.0 [\#4286](https://github.com/rvm/rvm/pull/4286) * Add support for MagLev 1.1* and 1.2Alpha-1.2Alpha4 [\#4289](https://github.com/rvm/rvm/pull/4289) * Add support for RubyGems 2.6.14 [\#4205](https://github.com/rvm/rvm/pull/4205), 2.7.0-2.7.4 [\#4276](https://github.com/rvm/rvm/issues/4276) and 2.7.5-6 #### Binaries: * Ubuntu 16.04 x64 binaries for Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4362](https://github.com/rvm/rvm/issues/4362), 2.2.9, 2.3.6 and 2.4.3 [\#4259](https://github.com/rvm/rvm/issues/4259), 2.2.8, 2.3.5 and 2.4.2 [\#4161](https://github.com/rvm/rvm/issues/4161), 2.5.0 [\#4272](https://github.com/rvm/rvm/pull/4272) * Ubuntu 17.04 for Ruby 2.1.\*, 2.2.\* [\#4233](https://github.com/rvm/rvm/pull/4233) ## [1.29.3](https://github.com/rvm/rvm/releases/tag/1.29.3) 10 September 2017 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.2...1.29.3) #### New features: * Add RVM commands missing in bash shell completion [\#4078](https://github.com/rvm/rvm/pull/4078) * Railsexpress patches for 2.3.4, 2.3-head [\#4084](https://github.com/rvm/rvm/pull/4084), 2.2.5 and 2.2.6 [\#4153](https://github.com/rvm/rvm/pull/4153) * Update `gem-wrappers` to 1.3.0: Show warnings when the target binary is missing or is not executable [gem-wrappers \#9](https://github.com/rvm/gem-wrappers/issues/9) * Detect Zorin OS as Ubuntu [\#4140](https://github.com/rvm/rvm/issues/4140) #### Bug fixes: * Infinite loop in `gemset_create` [\#4102](https://github.com/rvm/rvm/issues/4102) * Command not found `__rvm_remote_version` error [\#4085](https://github.com/rvm/rvm/pull/4085) * Fix path of version script in `environment` [\#4117](https://github.com/rvm/rvm/pull/4117) * Define `cd()`, `pushd()` and `popd()` properly when using zsh [\#4132](https://github.com/rvm/rvm/pull/4132) * Update gem-wrappers to 1.3.1: Avoid warnings for missing ruby binaries [\#4104](https://github.com/rvm/rvm/issues/4104) * Handles :engine=> and :engine_version=> in Gemfile * Makes $rvm_ruby_string is not installed searchable by adding a fixed keyword * Correctly quotes suggested install command * Fix path to version script in rvm-installer [\#4134](https://github.com/rvm/rvm/pull/4134) * Fix rvm autolibs status, fix [\#4123](https://github.com/rvm/rvm/issues/4123) * Ruby 2.3.x and older are not compatible with OpenSSL 1.1.x on Arch [\#4006](https://github.com/rvm/rvm/issues/4006) * Allow comments after ruby directive in Gemfile [\#4056](https://github.com/rvm/rvm/issues/4056) diff --git a/config/known b/config/known index e7e8eb0..a8bdc4d 100644 --- a/config/known +++ b/config/known @@ -1,83 +1,83 @@ # MRI Rubies [ruby-]1.8.6[-p420] [ruby-]1.8.7[-head] # security released on head [ruby-]1.9.1[-p431] [ruby-]1.9.2[-p330] [ruby-]1.9.3[-p551] [ruby-]2.0.0[-p648] [ruby-]2.1[.10] [ruby-]2.2[.10] [ruby-]2.3[.8] [ruby-]2.4[.10] [ruby-]2.5[.9] [ruby-]2.6[.10] [ruby-]2.7[.8] [ruby-]3.0[.7] [ruby-]3.1[.7] [ruby-]3.2[.8] [ruby-]3.3[.8] -[ruby-]3[.4.3] +[ruby-]3[.4.4] [ruby-]3.5[.0-preview1] ruby-head # for forks use: rvm install ruby-head-<name> --url https://github.com/github/ruby.git --branch 2.2 # JRuby jruby-1.6[.8] jruby-1.7[.27] jruby-9.1[.17.0] jruby-9.2[.21.0] jruby-9.3[.15.0] jruby-9.4[.12.1] jruby[-10.0.0.1] jruby-head # Rubinius rbx-1[.4.3] rbx-2.3[.0] rbx-2.4[.1] rbx-2[.5.8] rbx-3[.107] rbx-4[.20] rbx-5[.0] rbx-head # TruffleRuby truffleruby[-24.2.1] # Opal opal # Minimalistic ruby implementation - ISO 30170:2012 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1[.4.1] mruby-2.0.1 mruby-2[.1.1] mruby[-head] # Ruby Enterprise Edition ree-1.8.6 ree[-1.8.7][-2012.02] # Topaz topaz # MagLev maglev-1.0.0 maglev-1.1[RC1] maglev[-1.2Alpha4] maglev-head # Mac OS X Snow Leopard Or Newer macruby-0.10 macruby-0.11 macruby[-0.12] macruby-nightly macruby-head # IronRuby ironruby[-1.1.3] ironruby-head diff --git a/config/known_strings b/config/known_strings index 0d2b421..92598f4 100644 --- a/config/known_strings +++ b/config/known_strings @@ -28,564 +28,565 @@ jruby-1.2.0RC1 jruby-1.2.0RC2 jruby-1.2.0 jruby-1.3.0RC1 jruby-1.3.0RC2 jruby-1.3.0 jruby-1.3.1 jruby-1.4.0RC1 jruby-1.4.0RC2 jruby-1.4.0RC3 jruby-1.4.0 jruby-1.4.1 jruby-1.5.0.RC1 jruby-1.5.0.RC2 jruby-1.5.0.RC3 jruby-1.5.0 jruby-1.5.1 jruby-1.5.2 jruby-1.5.3 jruby-1.5.4 jruby-1.5.5 jruby-1.5.6 jruby-1.6.0.RC1 jruby-1.6.0.RC2 jruby-1.6.0.RC3 jruby-1.6.0 jruby-1.6.1 jruby-1.6.2 jruby-1.6.3 jruby-1.6.4 jruby-1.6.5 jruby-1.6.5.1 jruby-1.6.7 jruby-1.6.7.2 jruby-1.6.8 jruby-1.7.0.preview1 jruby-1.7.0.preview2 jruby-1.7.0.RC1 jruby-1.7.0.RC2 jruby-1.7.0 jruby-1.7.1 jruby-1.7.2 jruby-1.7.3 jruby-1.7.4 jruby-1.7.5 jruby-1.7.6 jruby-1.7.7 jruby-1.7.8 jruby-1.7.9 jruby-1.7.10 jruby-1.7.11 jruby-1.7.12 jruby-1.7.13 jruby-1.7.14 jruby-1.7.15 jruby-1.7.16 jruby-1.7.16.1 jruby-1.7.16.2 jruby-1.7.17 jruby-1.7.18 jruby-1.7.19 jruby-1.7.20 jruby-1.7.20.1 jruby-1.7.21 jruby-1.7.22 jruby-1.7.23 jruby-1.7.24 jruby-1.7.25 jruby-1.7.26 jruby-1.7.27 jruby-9.0.0.0.pre1 jruby-9.0.0.0.pre2 jruby-9.0.0.0.rc1 jruby-9.0.0.0.rc2 jruby-9.0.0.0 jruby-9.0.1.0 jruby-9.0.2.0 jruby-9.0.3.0 jruby-9.0.4.0 jruby-9.0.5.0 jruby-9.1.0.0 jruby-9.1.1.0 jruby-9.1.2.0 jruby-9.1.3.0 jruby-9.1.4.0 jruby-9.1.5.0 jruby-9.1.6.0 jruby-9.1.7.0 jruby-9.1.8.0 jruby-9.1.9.0 jruby-9.1.10.0 jruby-9.1.11.0 jruby-9.1.12.0 jruby-9.1.13.0 jruby-9.1.14.0 jruby-9.1.15.0 jruby-9.1.16.0 jruby-9.1.17.0 jruby-9.2.0.0 jruby-9.2.1.0 jruby-9.2.2.0 jruby-9.2.3.0 jruby-9.2.4.0 jruby-9.2.4.1 jruby-9.2.5.0 jruby-9.2.6.0 jruby-9.2.7.0 jruby-9.2.8.0 jruby-9.2.9.0 jruby-9.2.10.0 jruby-9.2.11.0 jruby-9.2.11.1 jruby-9.2.12.0 jruby-9.2.13.0 jruby-9.2.14.0 jruby-9.2.15.0 jruby-9.2.16.0 jruby-9.2.17.0 jruby-9.2.18.0 jruby-9.2.19.0 jruby-9.2.20.0 jruby-9.2.20.1 jruby-9.2.21.0 jruby-9.3.0.0 jruby-9.3.1.0 jruby-9.3.2.0 jruby-9.3.3.0 jruby-9.3.4.0 jruby-9.3.6.0 jruby-9.3.7.0 jruby-9.3.8.0 jruby-9.3.9.0 jruby-9.3.10.0 jruby-9.3.11.0 jruby-9.3.13.0 jruby-9.3.14.0 jruby-9.3.15.0 jruby-9.4.0.0 jruby-9.4.1.0 jruby-9.4.2.0 jruby-9.4.3.0 jruby-9.4.4.0 jruby-9.4.5.0 jruby-9.4.6.0 jruby-9.4.7.0 jruby-9.4.8.0 jruby-9.4.9.0 jruby-9.4.10.0 jruby-9.4.11.0 jruby-9.4.12.0 jruby-9.4.12.1 jruby-10.0.0.0 jruby-10.0.0.1 macruby-0.12 maglev-1.0.0 maglev-1.1beta maglev-1.1beta2 maglev-1.1RC1 maglev-1.2Alpha maglev-1.2Alpha2 maglev-1.2Alpha3 maglev-1.2Alpha4 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1.4.0 mruby-1.4.1 mruby-2.0.0 mruby-2.0.1 mruby-2.1.0-rc mruby-2.1.0 mruby-2.1.1-rc mruby-2.1.1-rc2 mruby-2.1.1 rbx-1.0.0-20100514 rbx-1.0.1-20100603 rbx-1.1.0-20100923 rbx-1.1.1-20101116 rbx-1.2.0-20101221 rbx-1.2.1-20110215 rbx-1.2.2-20110222 rbx-1.2.3-20110315 rbx-1.2.4-20110705 rbx-1.3.2 rbx-1.3.3 rbx-1.4.1 rbx-1.4.3 rbx-2.0.0 rbx-2.1.0 rbx-2.1.1 rbx-2.2.0 rbx-2.2.2 rbx-2.2.3 rbx-2.2.4 rbx-2.2.5 rbx-2.2.6 rbx-2.2.7 rbx-2.2.8 rbx-2.2.9 rbx-2.2.10 rbx-2.3.0 rbx-2.4.0 rbx-2.4.1 rbx-2.5.0 rbx-2.5.1 rbx-2.5.2 rbx-2.5.3 rbx-2.5.4 rbx-2.5.5 rbx-2.5.6 rbx-2.5.7 rbx-2.5.8 rbx-3.70 rbx-3.71 rbx-3.72 rbx-3.73 rbx-3.74 rbx-3.75 rbx-3.76 rbx-3.77 rbx-3.78 rbx-3.79 rbx-3.80 rbx-3.81 rbx-3.82 rbx-3.83 rbx-3.84 rbx-3.85 rbx-3.86 rbx-3.87 rbx-3.88 rbx-3.89 rbx-3.90 rbx-3.91 rbx-3.92 rbx-3.93 rbx-3.94 rbx-3.95 rbx-3.96 rbx-3.97 rbx-3.98 rbx-3.99 rbx-3.100 rbx-3.101 rbx-3.102 rbx-3.103 rbx-3.104 rbx-3.105 rbx-3.106 rbx-3.107 rbx-4.0 rbx-4.1 rbx-4.2 rbx-4.3 rbx-4.4 rbx-4.5 rbx-4.6 rbx-4.7 rbx-4.8 rbx-4.9 rbx-4.10 rbx-4.11 rbx-4.12 rbx-4.13 rbx-4.14 rbx-4.15 rbx-4.16 rbx-4.17 rbx-4.18 rbx-4.19 rbx-4.20 rbx-5.0 ree-1.8.6-20080507 ree-1.8.6-20080621 ree-1.8.6-20080623 ree-1.8.6-20080624 ree-1.8.6-20080709 ree-1.8.6-20080810 ree-1.8.6-20081205 ree-1.8.6-20081215 ree-1.8.6-20090113 ree-1.8.6-20090201 ree-1.8.6-20090421 ree-1.8.6-20090520 ree-1.8.6-20090610 ree-1.8.6-20090928 ree-1.8.7-2009.10 ree-1.8.7-2010.01 ree-1.8.7-2010.02 ree-1.8.7-2011.01 ree-1.8.7-2011.02 ree-1.8.7-2011.03 ree-1.8.7-2011.12 ree-1.8.7-2012.02 ruby-1.8.5-p115 ruby-1.8.5-p231 ruby-1.8.6-p286 ruby-1.8.6-p287 ruby-1.8.6-p369 ruby-1.8.6-p383 ruby-1.8.6-p398 ruby-1.8.6-p399 ruby-1.8.6-p420 ruby-1.8.7-p160 ruby-1.8.7-p174 ruby-1.8.7-p248 ruby-1.8.7-p249 ruby-1.8.7-p299 ruby-1.8.7-p302 ruby-1.8.7-p330 ruby-1.8.7-p334 ruby-1.8.7-p352 ruby-1.8.7-p357 ruby-1.8.7-p358 ruby-1.8.7-p370 ruby-1.8.7-p371 ruby-1.8.7-p374 ruby-1.9.0 ruby-1.9.1-p129 ruby-1.9.1-p243 ruby-1.9.1-p376 ruby-1.9.1-p378 ruby-1.9.1-p429 ruby-1.9.1-p431 ruby-1.9.2-p0 ruby-1.9.2-p136 ruby-1.9.2-p180 ruby-1.9.2-p290 ruby-1.9.2-p318 ruby-1.9.2-p320 ruby-1.9.2-p330 ruby-1.9.3-preview1 ruby-1.9.3-rc1 ruby-1.9.3-p0 ruby-1.9.3-p125 ruby-1.9.3-p194 ruby-1.9.3-p286 ruby-1.9.3-p327 ruby-1.9.3-p362 ruby-1.9.3-p374 ruby-1.9.3-p385 ruby-1.9.3-p392 ruby-1.9.3-p429 ruby-1.9.3-p448 ruby-1.9.3-p484 ruby-1.9.3-p545 ruby-1.9.3-p547 ruby-1.9.3-p550 ruby-1.9.3-p551 ruby-2.0.0-preview1 ruby-2.0.0-preview2 ruby-2.0.0-rc1 ruby-2.0.0-rc2 ruby-2.0.0-p0 ruby-2.0.0-p195 ruby-2.0.0-p247 ruby-2.0.0-p353 ruby-2.0.0-p451 ruby-2.0.0-p481 ruby-2.0.0-p576 ruby-2.0.0-p594 ruby-2.0.0-p598 ruby-2.0.0-p643 ruby-2.0.0-p645 ruby-2.0.0-p647 ruby-2.0.0-p648 ruby-2.1.0-preview1 ruby-2.1.0-preview2 ruby-2.1.0-rc1 ruby-2.1.0 ruby-2.1.1 ruby-2.1.2 ruby-2.1.3 ruby-2.1.4 ruby-2.1.5 ruby-2.1.6 ruby-2.1.7 ruby-2.1.8 ruby-2.1.9 ruby-2.1.10 ruby-2.2.0-preview1 ruby-2.2.0-preview2 ruby-2.2.0-rc1 ruby-2.2.0 ruby-2.2.1 ruby-2.2.2 ruby-2.2.3 ruby-2.2.4 ruby-2.2.5 ruby-2.2.6 ruby-2.2.7 ruby-2.2.8 ruby-2.2.9 ruby-2.2.10 ruby-2.3.0-preview1 ruby-2.3.0-preview2 ruby-2.3.0 ruby-2.3.1 ruby-2.3.2 ruby-2.3.3 ruby-2.3.4 ruby-2.3.5 ruby-2.3.6 ruby-2.3.7 ruby-2.3.8 ruby-2.4.0-preview1 ruby-2.4.0-preview2 ruby-2.4.0-preview3 ruby-2.4.0-rc1 ruby-2.4.0 ruby-2.4.1 ruby-2.4.2 ruby-2.4.3 ruby-2.4.4 ruby-2.4.5 ruby-2.4.6 ruby-2.4.7 ruby-2.4.8 ruby-2.4.9 ruby-2.4.10 ruby-2.5.0-preview1 ruby-2.5.0-rc1 ruby-2.5.0 ruby-2.5.1 ruby-2.5.2 ruby-2.5.3 ruby-2.5.4 ruby-2.5.5 ruby-2.5.6 ruby-2.5.7 ruby-2.5.8 ruby-2.5.9 ruby-2.6.0-preview1 ruby-2.6.0-preview2 ruby-2.6.0-preview3 ruby-2.6.0-rc1 ruby-2.6.0-rc2 ruby-2.6.0 ruby-2.6.1 ruby-2.6.2 ruby-2.6.3 ruby-2.6.4 ruby-2.6.5 ruby-2.6.6 ruby-2.6.7 ruby-2.6.8 ruby-2.6.9 ruby-2.6.10 ruby-2.7.0-preview1 ruby-2.7.0-preview2 ruby-2.7.0-preview3 ruby-2.7.0-rc1 ruby-2.7.0-rc2 ruby-2.7.0 ruby-2.7.1 ruby-2.7.2 ruby-2.7.3 ruby-2.7.4 ruby-2.7.5 ruby-2.7.6 ruby-2.7.7 ruby-2.7.8 ruby-3.0.0-preview1 ruby-3.0.0-preview2 ruby-3.0.0-rc1 ruby-3.0.0 ruby-3.0.1 ruby-3.0.2 ruby-3.0.3 ruby-3.0.4 ruby-3.0.5 ruby-3.0.6 ruby-3.0.7 ruby-3.1.0-preview1 ruby-3.1.0 ruby-3.1.1 ruby-3.1.2 ruby-3.1.3 ruby-3.1.4 ruby-3.1.5 ruby-3.1.6 ruby-3.1.7 ruby-3.2.0-preview1 ruby-3.2.0-preview2 ruby-3.2.0-preview3 ruby-3.2.0-rc1 ruby-3.2.0 ruby-3.2.1 ruby-3.2.2 ruby-3.2.3 ruby-3.2.4 ruby-3.2.5 ruby-3.2.6 ruby-3.2.7 ruby-3.2.8 ruby-3.3.0-preview1 ruby-3.3.0-preview2 ruby-3.3.0-preview3 ruby-3.3.0 ruby-3.3.1 ruby-3.3.2 ruby-3.3.3 ruby-3.3.4 ruby-3.3.5 ruby-3.3.6 ruby-3.3.7 ruby-3.3.8 ruby-3.4.0-preview1 ruby-3.4.0 ruby-3.4.1 ruby-3.4.2 ruby-3.4.3 +ruby-3.4.4 ruby-3.5.0-preview1 truffleruby-1.0.0-rc2 truffleruby-1.0.0-rc3 truffleruby-1.0.0-rc5 truffleruby-1.0.0-rc6 truffleruby-1.0.0-rc7 truffleruby-1.0.0-rc8 truffleruby-1.0.0-rc9 truffleruby-1.0.0-rc10 truffleruby-1.0.0-rc11 truffleruby-1.0.0-rc12 truffleruby-1.0.0-rc13 truffleruby-1.0.0-rc14 truffleruby-1.0.0-rc15 truffleruby-1.0.0-rc16 truffleruby-19.0.0 truffleruby-19.0.2 truffleruby-19.1.0 truffleruby-19.1.1 truffleruby-19.2.0 truffleruby-19.2.0.1 truffleruby-19.2.1 truffleruby-19.3.0 truffleruby-19.3.0.2 truffleruby-19.3.1 truffleruby-20.0.0 truffleruby-20.1.0 truffleruby-20.2.0 truffleruby-20.3.0 truffleruby-21.0.0 truffleruby-21.1.0 truffleruby-21.2.0 truffleruby-21.2.0.1 truffleruby-21.3.0 truffleruby-22.0.0.2 truffleruby-22.1.0 truffleruby-22.2.0 truffleruby-22.3.0 truffleruby-22.3.1 truffleruby-23.0.0-preview1 truffleruby-23.0.0 truffleruby-23.1.0 truffleruby-23.1.1 truffleruby-23.1.2 truffleruby-24.0.0 truffleruby-24.0.1 truffleruby-24.0.2 truffleruby-24.1.0 truffleruby-24.1.1 truffleruby-24.1.2 truffleruby-24.2.0 truffleruby-24.2.1 diff --git a/config/md5 b/config/md5 index 86cf5aa..5a3f152 100644 --- a/config/md5 +++ b/config/md5 @@ -1303,780 +1303,781 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=fa690cb7132706fb25dfc625e949e96a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=c443f32cd4c91fb37ff79bd86906e1bc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=6fa3edab1bbacf7328074a7fba22be50 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=a950bc4af16446fce2f9266e95629bdb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=d9bce275c2f36dbde8a6c25f9fa10c2e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=6486c5ce9ec697039b0bb36d2bf18a0d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=79f0927984b8e6e7934b34bdb2a3e5e5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=214ac1e49a75291a68c63134bc246a8a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=94a39d1b226350362666f6305866b20b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=4db7d99d775a7f24bb55c6053d4eb864 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=c0db831a97b8427e0777adeaebf7a9d8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=830b4845fbfd45df75758e311a013ffc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=3fc39c824b2060a3a2766ca01037dd15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=0b395f3884c78c6938896ff253c5251b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=2be294a056a45a50262d1796906f8860 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=0270733b808489a91e41f73d9fe971e9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=33db4a687e4943faf6c2853179b67935 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=dea6663b2c113190e9b99a6dcedb3aa0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=835e563bfbe3c8311326660a51f3394c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=66e3c1e1140300c8236c13e3178cb8ab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=07b12bd2a7d8242c34d824882e654c22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=fe12c0e211f90076b51c7916c830971f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=65ab3105b0c6d5e8a2e9977a3ab7ed94 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=08547ad8e760e0776c74401ae5bbd8e5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=631b4ea065d18df96c6ccbc141904bb3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=03a67e234d886f3c698c1571e42cc7a6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=0ded0cb8ce18a846d71d7e04d24c2e78 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=5251aed0ba4d8349413d6bf4c261bea3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=f09694c4f23d7625f72606bce0efb710 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=340db3acb58829b51e4a7ac1c77246d4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1bd86cb46a9e6c40c285258879a3d59 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=d86b2a1e9721b9459e1283006e03fa92 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.2.6.tar.bz2=7d7e84912bb4d1f9915bb391fac54694 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.3.6.tar.bz2=3148fa25b5cd308156c567181ccf5ac3 ironruby-1.0.zip=7a92888837b3507355ed391dbfc0ab83 ironruby-1.1.3.zip=4f2af6253a459cc054d6c55956e514a9 jruby-bin-1.3.1.tar.gz=4a95db8fc93ed7219663fbede98b6117 jruby-bin-1.4.tar.gz=54dba9a88b2b3f99ac86a79828d0178b jruby-bin-1.4.0.tar.gz=f37322c18e9134e91e064aebb4baa4c7 jruby-bin-1.4.0.zip=3a9c8a5115a679da7d7a49a56d57d4c0 jruby-bin-1.4.1.tar.gz=a4aa8c43d1b9ffd9dbc6cb738d55a034 jruby-bin-1.5.0.tar.gz=ee2b4e326e8b87858e5dd0c8e94102e6 jruby-bin-1.5.1.tar.gz=74251383e08e8c339cacc35a7900d3af jruby-bin-1.5.2.tar.gz=d239deb9a108a6abbfbd6cb79cf8255b jruby-bin-1.5.3.tar.gz=ccb0b2dbc300d8dd4ad1bd4da48b8320 jruby-bin-1.5.5.tar.gz=8e00f7d40cbf221f733d6f7a15784e9a jruby-bin-1.5.6.tar.gz=94033a36517645b7a7ec781a3507c654 jruby-bin-1.6.0.tar.gz=f4d7e339dfc0fbaef5b878d1c0a66fbe jruby-bin-1.6.2.tar.gz=a46f978c24a208717023bb4b8995c678 jruby-bin-1.6.3.tar.gz=694b80e4eea784cdc1eb39fb1e3132c9 jruby-bin-1.6.4.tar.gz=0e96b6f4d1c6f12b5ac480cd7ab7da78 jruby-bin-1.6.5.tar.gz=54354082673bd115f945890dc6864413 jruby-bin-1.6.5.1.tar.gz=246a7aa2b7d7e6e9e8a0c2e282cbcfd0 jruby-bin-1.6.7.tar.gz=fd1b8d7389aa92da69ea6efb4782e40a jruby-bin-1.6.7.2.tar.gz=1e520f1b5130114464e5f1950cb24774 jruby-bin-1.6.8.tar.gz=a76ac5845640e4a1ebdfa74421efc935 jruby-bin-1.7.0.preview1.tar.gz=7b9e5e1cd0d818d0199086d948f948b4 jruby-bin-1.7.0.preview2.tar.gz=e8f1623759590aadbf49e4cc53f1cb61 jruby-bin-1.7.0.RC1.tar.gz=bdddcee3d126cddd9a85b5a066a7e25e jruby-bin-1.7.0.RC2.tar.gz=ffe2dd61711f4574fed344af151e5de5 jruby-bin-1.7.0.tar.gz=21861e0ecdbf48cda713c8ade82fdddb jruby-bin-1.7.1.tar.gz=86e659863541d8b987cb7bfbe3b4cfb0 jruby-bin-1.7.2.tar.gz=6ec9293b6dffd1e8ee57e9b7c6d18cbe jruby-bin-1.7.3.tar.gz=f0adf8ccee6f6777f7ab8e5e1d7a1f47 jruby-bin-1.7.4.tar.gz=c6a56eae78db28dddba911ccd0848c32 jruby-bin-1.7.5.tar.gz=c2a28c43c8095127d4a4aee0cf9b1439 jruby-bin-1.7.6.tar.gz=5d10011516a3d3bde10209b60cfcc0ef jruby-bin-1.7.7.tar.gz=9d6df2188fa57f12bf6fde4e4b2e3f09 jruby-bin-1.7.8.tar.gz=1e68f39d6dba7b6d9db81e24bb6b7d0a jruby-bin-1.7.9.tar.gz=b2e44f1f44837c07068ee453a89f4b55 jruby-bin-1.7.10.tar.gz=c84fe9245a73f9cd29f56343b7d2e39a jruby-bin-1.7.11.tar.gz=d6e6ab72426fa7fdc9ae55950980d877 jruby-bin-1.7.12.tar.gz=2073aa6dfc7c701ef7c3d3143d181582 jruby-bin-1.7.14.tar.gz=bc33284f27a3508a70d2ade100a2f6bd jruby-bin-1.7.15.tar.gz=92e63cffcb86842511aeeed95bdf96ed jruby-bin-1.7.16.tar.gz=92cb058d1a896257b5ac1c26dc433506 jruby-bin-1.7.16.1.tar.gz=eec2f0e03560bacf02a09c0096a99cad jruby-bin-1.7.16.2.tar.gz=cd31909b67239c5c6a795521fca5c239 jruby-bin-1.7.17.tar.gz=8b78ba1acdb718431f71c38287c07967 jruby-bin-1.7.18.tar.gz=aa7286140be0f6f60534ebffededc708 jruby-bin-1.7.19.tar.gz=bc38596757d8000d6ca4c4c3f8eacea6 jruby-bin-1.7.20.tar.gz=0c2adc160cb85c888b269e8ac4f886fc jruby-bin-1.7.21.tar.gz=bc91594072032023d146f330764d3274 jruby-bin-1.7.22.tar.gz=1da904bf41d362d0d0b366d9e781168f jruby-bin-1.7.23.tar.gz=41e3f45c28c94a275f9eeb22721da35d jruby-bin-1.7.25.tar.gz=fc43ead73f657f5261428923974fd605 jruby-bin-1.7.26.tar.gz=4ca60264a9560f37fdba8108543e72c2 jruby-bin-1.7.27.tar.gz=b98b0a2c52e885a868a2b60092e1cd3d jruby-bin-9.0.0.0.pre1.tar.gz=d5c8b30648348aa883f893d464d46bf1 jruby-bin-9.0.0.0.pre2.tar.gz=86994a9d7ed2cf318c75392623a3e6da jruby-bin-9.0.0.0.tar.gz=fe9036ea69bf23dc3b69cfc94adb5404 jruby-bin-9.0.1.0.tar.gz=a82bc640e0080b1d9a21d1477c8400e3 jruby-bin-9.0.3.0.tar.gz=828dd6c6dd18e5b186ccfd65753077bd jruby-bin-9.0.4.0.tar.gz=645bf4a1dcde3f19dc0fff75c8b4b685 jruby-bin-9.0.5.0.tar.gz=1d2dc649cbacbe26418ef3ba421018b1 jruby-bin-9.1.0.0.tar.gz=fe26e6308d006d35eb613cdd47d1dc99 jruby-bin-9.1.1.0.tar.gz=8356334270df07a214590d00a986837b jruby-bin-9.1.2.0.tar.gz=749bb917dde9666e365e12bbe776a5c2 jruby-bin-9.1.3.0.tar.gz=91c246cd623702032e88283565da5480 jruby-bin-9.1.4.0.tar.gz=5b80b78c09bf0cd4dcbcb9e1fe3e8b73 jruby-bin-9.1.5.0.tar.gz=e9b2cc44757db4cfbe7da79601d0169a jruby-bin-9.1.6.0.tar.gz=4092a89b01b55d1fb5498113f97ab0ca jruby-bin-9.1.7.0.tar.gz=b120c3eaeef7ff2aed3a57701e414e78 jruby-bin-9.1.8.0.tar.gz=0fdee002c56ec91dff1efffce205265c jruby-bin-9.1.9.0.tar.gz=170efc34297d7ac2a56bb1163e96b363 jruby-bin-9.1.10.0.tar.gz=b75e0d1a200e8f790d8bbc84f91e3002 jruby-bin-9.1.11.0.tar.gz=0502a14141da25a460ce197720bab4c3 jruby-bin-9.1.12.0.tar.gz=74bd7ae08c159fc62cb6f64845a868cc jruby-bin-9.1.13.0.tar.gz=6c642c8a2653a585779f453d8c843fd7 jruby-bin-9.1.14.0.tar.gz=a7e0ecd529690025d327c45744f60fa4 jruby-bin-9.1.15.0.tar.gz=01c29690324d7eb414fba66e4c009c9e jruby-bin-9.1.16.0.tar.gz=e64c3aa1310c272194fd1750b0b79fac jruby-bin-9.1.17.0.tar.gz=f28d1fcbb60e550f3abd839102ad0069 jruby-bin-9.2.0.0.tar.gz=bd476da4bed39ffcfff7116f448a5365 jruby-bin-9.2.1.0.tar.gz=4b78b0a40ca541556f5ee75a815e0be0 jruby-bin-9.2.2.0.tar.gz=be678559801be029fe233c33396e34d2 jruby-bin-9.2.3.0.tar.gz=79328ab1ed37d612da35271183e46bbd jruby-bin-9.2.4.0.tar.gz=f538f2be459f0f0e517a53446e78a354 jruby-bin-9.2.4.1.tar.gz=d373bbc2bd6caabfcc9914c4067e9d24 jruby-bin-9.2.5.0.tar.gz=14582fd6eee19610f0a7433ce5dd5ce4 jruby-bin-9.2.6.0.tar.gz=dba182ac9943b726b609ca61747c1835 jruby-bin-9.2.7.0.tar.gz=c0111b2cafa920df76284044e1aeedc7 jruby-bin-9.2.8.0.tar.gz=7d652b586a18f1c665289fd7e6edf4f5 jruby-bin-9.2.9.0.tar.gz=74b3451f79c13c2fc66c6dee69d46699 jruby-bin-9.2.10.0.tar.gz=e6ce97eae6e35b622c1b572f9297705b jruby-bin-9.2.11.0.tar.gz=22b003adfb03b253721cc85db248698f jruby-bin-9.2.11.1.tar.gz=687586132f7b649b1bdd7b823577c9d8 jruby-bin-9.2.12.0.tar.gz=cc7599837fbd0839cce7293577a34f2c jruby-bin-9.2.13.0.tar.gz=99df4eb89f88c7582bfe7c313daec7b4 jruby-bin-9.2.14.0.tar.gz=421c5b8146701177a738a0a691190018 jruby-bin-9.2.15.0.tar.gz=ba593f1de2c4e592a8ca9b9e903af457 jruby-bin-9.2.16.0.tar.gz=d8d954ee0ab6f4868c3fc63339660af9 jruby-bin-9.2.17.0.tar.gz=382fb3d9d2982efd5396f1a42e3fa6a1 jruby-bin-9.2.18.0.tar.gz=002ac95859a2176cb0a58d81d6e0fb14 jruby-bin-9.2.19.0.tar.gz=0961867a77838853f32ee72dbde7c00e jruby-bin-9.2.20.0.tar.gz=840876dd0ca0098452dd2667fe9dd7f4 jruby-bin-9.2.20.1.tar.gz=5856ed030f0d9e75d2384cf42f62a4de jruby-bin-9.2.21.0.tar.gz=9957c1d2bd9265144fe55f9f7093272a jruby-bin-9.3.0.0.tar.gz=501a3c975b3c9478b72d4b0cd37170b9 jruby-bin-9.3.1.0.tar.gz=201d3e483bf847f5c59f4b1f3bf594d5 jruby-bin-9.3.2.0.tar.gz=259c276f68a01495dda24407394a382d jruby-bin-9.3.3.0.tar.gz=cd49b81753048cee9c8ffdd2ce1cb3e2 jruby-bin-9.3.4.0.tar.gz=7292dd9a56155aa015ec08c03855b3fc jruby-bin-9.3.6.0.tar.gz=bc5a7b02be69fdf3f5584e8880fc7dcc jruby-bin-9.3.7.0.tar.gz=49b17b5cd7cf8bfb09d8f64147d992ef jruby-bin-9.3.8.0.tar.gz=6ea209b699a06944d0653d8048d8bfec jruby-bin-9.3.9.0.tar.gz=9a0f0a931346bc6ea34196a5c88002ec jruby-bin-9.3.10.0.tar.gz=83c9d776dfc8cf33bfa60f7e78077160 jruby-bin-9.3.11.0.tar.gz=6ccc04e658c49db19fc0c452db0f2931 jruby-bin-9.3.13.0.tar.gz=3f20268b494da900504e921507248183 jruby-bin-9.3.14.0.tar.gz=87a96fd3af448ec8fd5ca45c6469ecc9 jruby-bin-9.3.15.0.tar.gz=385fabe180b68fb8cd3743b315109e5f jruby-bin-9.4.0.0.tar.gz=d0136daa4910f6e6b21858260eb00fe2 jruby-bin-9.4.1.0.tar.gz=abe2669672ac973f1b41a4d3860eb7ae jruby-bin-9.4.2.0.tar.gz=486e50f3c74e7400e71631819fde91da jruby-bin-9.4.3.0.tar.gz=526006fefb3e5ffc5095ab5599cc38c6 jruby-bin-9.4.4.0.tar.gz=287b5c3a9b63ff93e49ae9dc0347263b jruby-bin-9.4.5.0.tar.gz=09c6fceb38d6c086af2e4d5f21f9fe65 jruby-bin-9.4.6.0.tar.gz=5e2fe4ed897d938332ee0d85d2aa60bc jruby-bin-9.4.7.0.tar.gz=a0633ca837efff62edca84ceae1f5515 jruby-bin-9.4.8.0.tar.gz=9f520a3a416b598b4e53916e7180b623 jruby-bin-9.4.9.0.tar.gz=b7a789e9ff1b87d0e8c7bda7fae31c16 jruby-bin-9.4.10.0.tar.gz=36d6d8d745e793580ec4b12caa257501 jruby-bin-9.4.11.0.tar.gz=46e632baba1068e17345c7d24fec4241 jruby-bin-9.4.12.0.tar.gz=c7a26b4bd2fde1064b1cc6bf67f2f645 jruby-bin-9.4.12.1.tar.gz=45f20291603f9de5acb34e738b8812a2 jruby-bin-10.0.0.0.tar.gz=58d273f7f72623e903877de0a74ad9bb jruby-bin-10.0.0.1.tar.gz=26932334d3a5d16c6d3a996b59ba9e00 libiconv-1.13.1.tar.gz=7ab33ebd26687c744a37264a330bbe9a MacRuby%200.5.zip=675454a8c7bc19d606d90a726e08427c MacRuby%200.6.zip=a80afd3700c88cf95c539fc63b272faf MacRuby%200.7.1.zip=e8245dcd03c0757dfae7e6fee913947a MacRuby%200.7.zip=0bb60588c9ec9b1517665743bb05132f MacRuby%200.8.zip=735ac0a70f539e00b5de6fbec09c2c5c MacRuby%200.9.zip=fa01345e8fbfee620bbac64743a45f69 MacRuby%200.10.zip=1662d13d2f73cfc26258598f6988dcbc MacRuby%200.11.zip=b0cc23d60484a07012bcad549cef6054 MacRuby%200.12.zip=e1c5fa1b007a1cdc38c527a47302bf5e MagLev-1.0.0.tar.gz=e02cb8ee04438451eb78df14f91a68a9 MagLev-1.1beta.tar.gz=d542c7af290ce3b588b57629906b19e9 MagLev-1.1beta2.tar.gz=0ef88d5d145611aef324cb51be0aaafd MagLev-1.1RC1.tar.gz=41f4a0994daf1e5271cbd0ebe57816f4 MagLev-1.2Alpha.tar.gz=5c7dd3acef9dbddc0829bb1daa087abb MagLev-1.2Alpha2.tar.gz=cbbeae109854a6bf107a747a93fd478b MagLev-1.2Alpha3.tar.gz=b7470518f2b697eb1a5a39eff9b6d749 MagLev-1.2Alpha4.tar.gz=d54f04a611ce838b9d7009627065b7ca mruby-1.0.0.tar.gz=d9aec6a20fc1add65ee07ff6cf0e1ef2 mruby-1.1.0.tar.gz=60d75ea704c9285f3c80b3ad1d2b68de mruby-1.2.0.tar.gz=b5a3b7962d9db8cb8fb8105aa914d16c mruby-1.3.0.tar.gz=9714dd2804064d0043e099b7211d72b9 mruby-1.4.0.tar.gz=25efc35511070454074b36863c4d5b5e mruby-1.4.1.tar.gz=b40bf09af3f4c6e2bc443b9ac803a3ad mruby-2.0.0.tar.gz=b86c6a1dd86cb4ebe51e3fe38964a830 mruby-2.0.1.tar.gz=15b426a8a94a610c45414578786d05e3 mruby-2.1.0-rc.tar.gz=58a85fcb102d72900a25190da670e01d mruby-2.1.0.tar.gz=c01a4bbf62e6f5765c70b8813e0ce7da mruby-2.1.1-rc.tar.gz=809edd80e680855e7c4cf3c569972f28 mruby-2.1.1-rc2.tar.gz=24879fa5eb587f9415f03f8f3701842e mruby-2.1.1.tar.gz=c0ee4a112695046b9e4f177e31096d6c ncurses.tar.gz=cce05daf61a64501ef6cd8da1f727ec6 openssl-0.9.8k.tar.gz=e555c6d58d276aec7fdc53363e338ab3 openssl-0.9.8n.tar.gz=076d8efc3ed93646bd01f04e23c07066 openssl-1.0.1c.tar.gz=ae412727c8c15b67880aef7bd2999b2e openssl-1.0.1i.tar.gz=c8dc151a671b9b92ff3e4c118b174972 pkg-config-0.23.tar.gz=d922a88782b64441d06547632fd85744 readline-5.2.tar.gz=e39331f32ad14009b9ff49cc10c5e751 readline-6.0.tar.gz=b7f65a48add447693be6e86f04a63019 readline-6.2.tar.gz=67948acb2ca081f23359d0256e9a271c release-2.0.0-rc1.zip=b05b5e3c2712a294e4b09ebf450c1bfe rubinius-1.0.0-20100514.tar.gz=b05f4e791d3712c5a50b3d210dac6eb0 rubinius-1.0.1-20100603.tar.gz=eb185703c7ae0c0210e8dcb7f783ee8e rubinius-1.1.0-20100923.tar.gz=e2ae16238b201de09975abe19da09ea9 rubinius-1.1.1-20101116.tar.gz=b39f618eeba37c3aff215da8bca55fd7 rubinius-1.2.0-20101221.tar.gz=4284c2660f1f648942de35d4fc871f70 rubinius-1.2.1-20110215.tar.gz=e4a5127480062fddddc7ce2860b3b813 rubinius-1.2.2-20110222.tar.gz=59124378fb7ee040e9ee4e4736d89fc0 rubinius-1.2.3-20110315.tar.gz=9782dab18c2dd440af6b76e8eb5bc0f0 rubinius-1.2.4-20110705.tar.gz=403c777d19b3553e9cb36701fe002c5e rubinius-1.3.2.tar.bz2=64801ad8dd4e5e4fcb74ff313fec0a69 rubinius-1.3.3.tar.bz2=79f1f860ed8242257bd7f3e88c81a197 rubinius-1.4.1.tar.bz2=76b840405d4b9303261c27cf15002386 rubinius-2.0.0.tar.bz2=62e379e044c822b81e7b20a27daf133e rubinius-2.1.0.tar.bz2=908053f38fd840c75a93aab7487c20a5 rubinius-2.1.1.tar.bz2=6b4df0caec5ea88373e113f97a3b4c72 rubinius-2.2.0.tar.bz2=f1fbc6f3baf1da5ad86b3858f30f3349 rubinius-2.2.2.tar.bz2=ac70d629ea43525d91e81f4ccf135299 rubinius-2.2.3.tar.bz2=d9978cf1a4e8f0310db63e49834f9837 rubinius-2.2.4.tar.bz2=c10699da85a8eb5861a37b29077213bd rubinius-2.2.5.tar.bz2=5996dc8529b2ffe5921c5e7020bee20e rubinius-2.2.6.tar.bz2=85339bb6dd525eee719edf0551868f56 rubinius-2.2.7.tar.bz2=de2e6f4c3bd9a90bcb89f2ea27ddee9e rubinius-2.2.8.tar.bz2=c4db1ffb8dbdf864240cabe8b7758b49 rubinius-2.2.9.tar.bz2=0bf87ba617fa989e47d20942410028af rubinius-2.2.10.tar.bz2=8680da7eb921e6f595a1d716915ca7e0 rubinius-2.3.0.tar.bz2=e003a30af6689c8198116b3405d09d8e rubinius-2.4.0.tar.bz2=62391a51f49820daa51463066c3ce007 rubinius-2.4.1.tar.bz2=7758721b6e848387c3943ddb9ebd9479 rubinius-2.5.0.tar.bz2=178baa1ad172df0801765ea93bc36d87 rubinius-2.5.1.tar.bz2=77e1b87dc357691ad44b561a5f45c188 rubinius-2.5.2.tar.bz2=e5973d6e0a16f0390dc2a7478db83ff5 rubinius-2.5.3.tar.bz2=b19709eb3fa9e05b3fa6a357b33e3b5b rubinius-2.5.4.tar.bz2=64587916e5d445ed9bc630017a04498e rubinius-2.5.5.tar.bz2=ef671bbab50cbe2f70f953c491311261 rubinius-2.5.6.tar.bz2=597e4b049f49966c646faf699856c1b9 rubinius-2.5.7.tar.bz2=9a7f404019bce9fc34a7af7feb7cbb74 rubinius-2.5.8.tar.bz2=a24520892cada1f660e719a25abf63e3 ruby-1.8.5-p115.tar.bz2=03955e3c367b9beb3efe144c9f00d689 ruby-1.8.5-p115.tar.gz=20ca6cc87eb077296806412feaac0356 ruby-1.8.5-p231.tar.bz2=327f5aa6573787432222e96195cffd1e ruby-1.8.5-p231.tar.gz=e900cf225d55414bffe878f00a85807c ruby-1.8.6-p286.tar.bz2=e6b6bf8f34370e433936adb7a7065e63 ruby-1.8.6-p286.tar.gz=797ea136fe43e4286c9362ee4516674e ruby-1.8.6-p287.tar.bz2=80b5f3db12531d36e6c81fac6d05dda9 ruby-1.8.6-p287.tar.gz=6ff3420094711266c3201a0c7c2faa38 ruby-1.8.6-p369.tar.bz2=c3c1f3dd0dfbd2e17a04e59c2f12cfc8 ruby-1.8.6-p369.tar.gz=8c140ae28b4c3947b92dfad69109d90b ruby-1.8.6-p383.tar.bz2=a48703cd982b9f0e3002700a50b0e88e ruby-1.8.6-p383.tar.gz=4f49544d4a4d0d34e9d86c41e853db2e ruby-1.8.6-p398.tar.bz2=fbd43dc44ee26be4d37e6bebbed6f8bd ruby-1.8.6-p398.tar.gz=736db5f56c2d9b0136e563d049249fa8 ruby-1.8.6-p399.tar.bz2=f77c307cb72fb8808b0e85af5d05cefc ruby-1.8.6-p399.tar.gz=c3d16cdd3c1ee8f3b7d1c399d4884e33 ruby-1.8.6-p420.tar.bz2=1c7a978e9ffd4f56dc2ad74bbd2c34f3 ruby-1.8.6-p420.tar.gz=ca1eee44f842e93b5098bc5a2bb9a40b ruby-1.8.7-p160.tar.bz2=f8ddb886b8a81cf005f53e9a9541091d ruby-1.8.7-p160.tar.gz=945398f97e2de6dd8ab6df68d10bb1a1 ruby-1.8.7-p174.tar.bz2=88c45aaf627b4404e5e4273cb03ba2ee ruby-1.8.7-p174.tar.gz=18dcdfef761a745ac7da45b61776afa5 ruby-1.8.7-p248.tar.bz2=37e19d46b7d4b845f57d3389084b94a6 ruby-1.8.7-p248.tar.gz=60a65374689ac8b90be54ca9c61c48e3 ruby-1.8.7-p249.tar.bz2=37200cc956a16996bbfd25bb4068f242 ruby-1.8.7-p249.tar.gz=d7db7763cffad279952eb7e9bbfc221c ruby-1.8.7-p299.tar.bz2=244439a87d75ab24170a9c2b451ce351 ruby-1.8.7-p299.tar.gz=43533980ee0ea57381040d4135cf9677 ruby-1.8.7-p302.tar.bz2=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p302.tar.gz=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p330.tar.bz2=2689719fb42c8cf0aa336f8c8933f413 ruby-1.8.7-p330.tar.gz=50a49edb787211598d08e756e733e42e ruby-1.8.7-p334.tar.bz2=2f14f604bf981bb938ab5fc8b09eb1a6 ruby-1.8.7-p334.tar.gz=aacb6ee5dfe2367682bba56af7f415b8 ruby-1.8.7-p352.tar.bz2=0c61ea41d1b1183b219b9afe97f18f52 ruby-1.8.7-p352.tar.gz=0c33f663a10a540ea65677bb755e57a7 ruby-1.8.7-p357.tar.bz2=3abd9e2a29f756a0d30c7bfca578cdeb ruby-1.8.7-p357.tar.gz=b2b8248ff5097cfd629f5b9768d1df82 ruby-1.8.7-p358.tar.bz2=de35f00997f4ccee3e22dff0f2d01b8a ruby-1.8.7-p370.tar.bz2=1e4c3194537dd8ff92e756993e55a29d ruby-1.8.7-p371.tar.bz2=c27526b298659a186bdb5107fcec2341 ruby-1.8.7-p371.tar.gz=653f07bb45f03d0bf3910491288764df ruby-1.8.7-p374.tar.bz2=83c92e2b57ea08f31187060098b2200b ruby-1.8.7-p374.tar.gz=b72a0bc5b824398537762e5272bbb8dc ruby-1.9.0.tar.bz2=17eb66ac3721340d21db352d8f5dec76 ruby-1.9.1-p129.tar.bz2=6fa62b20f72da471195830dec4eb2013 ruby-1.9.1-p129.tar.gz=c71f413514ee6341c627be2957023a5c ruby-1.9.1-p243.tar.bz2=66d4f8403d13623051091347764881a0 ruby-1.9.1-p243.tar.gz=515bfd965814e718c0943abf3dde5494 ruby-1.9.1-p376.tar.bz2=e019ae9c643c5efe91be49e29781fb94 ruby-1.9.1-p376.tar.gz=ebb20550a11e7f1a2fbd6fdec2a3e0a3 ruby-1.9.1-p378.tar.bz2=5922459622a23612eb9b68a3586cb5f8 ruby-1.9.1-p378.tar.gz=9fc5941bda150ac0a33b299e1e53654c ruby-1.9.1-p429.tar.bz2=09df32ae51b6337f7a2e3b1909b26213 ruby-1.9.1-p429.tar.gz=0f6d7630f26042e00bc59875755cf879 ruby-1.9.1-p431.tar.bz2=03179138ae95dbfae872ef49e9cc6da7 ruby-1.9.1-p431.tar.gz=23f28cffc007ed5ac72c8e9bec6837ce ruby-1.9.2-p0.tar.bz2=d8a02cadf57d2571cd4250e248ea7e4b ruby-1.9.2-p0.tar.gz=755aba44607c580fddc25e7c89260460 ruby-1.9.2-p136.tar.bz2=52958d35d1b437f5d9d225690de94c13 ruby-1.9.2-p136.tar.gz=6e17b200b907244478582b7d06cd512e ruby-1.9.2-p180.tar.bz2=68510eeb7511c403b91fe5476f250538 ruby-1.9.2-p180.tar.gz=0d6953820c9918820dd916e79f4bfde8 ruby-1.9.2-p290.tar.bz2=096758c3e853b839dc980b183227b182 ruby-1.9.2-p290.tar.gz=604da71839a6ae02b5b5b5e1b792d5eb ruby-1.9.2-p318.tar.bz2=be431c6cbfa27e3836a06c6315717747 ruby-1.9.2-p318.tar.gz=cc7bf1025128e1985882ae243f348802 ruby-1.9.2-p320.tar.bz2=b226dfe95d92750ee7163e899b33af00 ruby-1.9.2-p320.tar.gz=5ef5d9c07af207710bd9c2ad1cef4b42 ruby-1.9.2-p330.tar.bz2=8ba4aaf707023e76f80fc8f455c99858 ruby-1.9.2-p330.tar.gz=4b9330730491f96b402adc4a561e859a ruby-1.9.3-p0.tar.bz2=65401fb3194cdccd6c1175ab29b8fdb8 ruby-1.9.3-p0.tar.gz=8e2fef56185cfbaf29d0c8329fc77c05 ruby-1.9.3-p125.tar.bz2=702529a7f8417ed79f628b77d8061aa5 ruby-1.9.3-p125.tar.gz=e3ea86b9d3fc2d3ec867f66969ae3b92 ruby-1.9.3-p194.tar.bz2=2278eff4cfed3cbc0653bc73085caa34 ruby-1.9.3-p194.tar.gz=bc0c715c69da4d1d8bd57069c19f6c0e ruby-1.9.3-p286.tar.bz2=e76848a86606a4fd5dcf14fc4b4e755e ruby-1.9.3-p327.tar.bz2=7d602aba93f31ceef32800999855fbca ruby-1.9.3-p327.tar.gz=96118e856b502b5d7b3a4398e6c6e98c ruby-1.9.3-p362.tar.bz2=13c26ea368d88a560f07cc8c5eb4fa05 ruby-1.9.3-p374.tar.bz2=944e73eba9ee9e1f2647ff32ec0b14b2 ruby-1.9.3-p385.tar.bz2=5ec9aff670f4912b0f6f0e11e855ef6c ruby-1.9.3-p392.tar.bz2=a810d64e2255179d2f334eb61fb8519c ruby-1.9.3-p392.tar.gz=f689a7b61379f83cbbed3c7077d83859 ruby-1.9.3-p429.tar.bz2=c2b2de5ef15ea9b1aaa3152f9112af1b ruby-1.9.3-p429.tar.gz=993c72f7f805a9eb453f90b0b7fe0d2b ruby-1.9.3-p448.tar.bz2=aa710d386e5903f78f0231868255e6af ruby-1.9.3-p448.tar.gz=a893cff26bcf351b8975ebf2a63b1023 ruby-1.9.3-p484.tar.bz2=03f5b08804927ceabe5122cb90f5d0a9 ruby-1.9.3-p484.tar.gz=8ac0dee72fe12d75c8b2d0ef5d0c2968 ruby-1.9.3-p545.tar.bz2=4743c1dc48491070bae8fc8b423bc1a7 ruby-1.9.3-p545.tar.gz=8e8f6e4d7d0bb54e0edf8d9c4120f40c ruby-1.9.3-p547.tar.bz2=5363d399be7f827c77bf8ae5d1a69b38 ruby-1.9.3-p547.tar.gz=7531f9b1b35b16f3eb3d7bea786babfd ruby-1.9.3-p550.tar.bz2=c2169c8b14ccefd036081aba5ffa96da ruby-1.9.3-p551.tar.bz2=0d8b272b05c3449dc848bb7570f65bfe ruby-1.9.3-preview1.tar.bz2=7d93dc773c5824f05c6e6630d8c4bf9b ruby-1.9.3-preview1.tar.gz=0f0220be4cc7c51a82c1bd8f6a0969f3 ruby-1.9.3-rc1.tar.bz2=26f0dc51ad981e12c58b48380112fa4d ruby-1.9.3-rc1.tar.gz=46a2a481536ca0ca0b80ad2b091df68e ruby-2.0.0-p0.tar.bz2=895c1c581f8d28e8b3bb02472b2ccf6a ruby-2.0.0-p195.tar.bz2=2f54faea6ee1ca500632ec3c0cb59cb6 ruby-2.0.0-p247.tar.bz2=60913f3eec0c4071f44df42600be2604 ruby-2.0.0-p353.tar.bz2=20eb8f067d20f6b76b7e16cce2a85a55 ruby-2.0.0-p451.tar.bz2=908e4d1dbfe7362b15892f16af05adf8 ruby-2.0.0-p481.tar.bz2=ea406a8d415a1a5d8365596d4288f3da ruby-2.0.0-p576.tar.bz2=eccd42d43620544a085c5e3834572f37 ruby-2.0.0-p594.tar.bz2=58469c0daf5f3a892a70cc674ea59c7f ruby-2.0.0-p598.tar.bz2=a3f3908103a7d209d1d1cf4712e3953c ruby-2.0.0-p643.tar.bz2=1390888cac6cd175e6f164eff378cdde ruby-2.0.0-p645.tar.bz2=d576240c97cfcc3ed9bdc457eb1e8280 ruby-2.0.0-p647.tar.bz2=27a3ea1a8b8bca1a6de43a7d08e88b69 ruby-2.0.0-p648.tar.bz2=3544031334f4665aa2eb1414babc9345 ruby-2.0.0-preview1.tar.bz2=47a0f662f0e258aa1c5e429c310861b3 ruby-2.0.0-preview2.tar.bz2=a645a783c3302cc094a9963a5e700a4d ruby-2.0.0-rc1.tar.bz2=24cebdda11e01ff4889ac983cd7dc02c ruby-2.0.0-rc2.tar.bz2=e92420131bd7994513e0bf09a3e2a19b ruby-2.1.0-preview1.tar.bz2=d32d1ea23988399afadbd21c5a7a37fc ruby-2.1.0-preview2.tar.bz2=9d566a9b2d2e7e35ad6125e2a14ce672 ruby-2.1.0-rc1.tar.bz2=cae095b90349b5b0f7026060cc3dd2c5 ruby-2.1.0.tar.bz2=1546eeb763ac7754365664be763a1e8f ruby-2.1.1.tar.bz2=53edc33b2f590ecdd9f6a344b9d92d0d ruby-2.1.1.tar.gz=e57fdbb8ed56e70c43f39c79da1654b2 ruby-2.1.2.tar.bz2=ed9b8565bdeccb401d628ec8d54a0774 ruby-2.1.2.tar.gz=a5b5c83565f8bd954ee522bd287d2ca1 ruby-2.1.3.tar.bz2=02b7da3bb06037c777ca52e1194efccb ruby-2.1.4.tar.bz2=f4136e781d261e3cc20748005e1740b7 ruby-2.1.5.tar.bz2=a7c3e5fec47eff23091b566e9e1dac1b ruby-2.1.6.tar.bz2=e1a8e6c6bfbb09bb7f8d6be8f508e4a1 ruby-2.1.7.tar.bz2=3a878e98311d543e5de3533b82ef4a5a ruby-2.1.8.tar.bz2=b17130b5f02a61640ae3b629af931610 ruby-2.1.9.tar.bz2=62bd1cbfcbc22e4d137462bce992f6d1 ruby-2.1.10.tar.bz2=5155c624807ff2418a9e9f15202954d0 ruby-2.2.0-preview1.tar.bz2=767b132eec3e70b14afe5884a7a767b1 ruby-2.2.0-preview2.tar.bz2=d7abace25a8ffe861cb2807bef1c58a6 ruby-2.2.0-rc1.tar.bz2=7144732d30dd4547c0a59862b3345d54 ruby-2.2.0.tar.bz2=d03cd4690fec1fff81d096d1c1255fde ruby-2.2.1.tar.bz2=06973777736d8e6bdad8dcaa469a9da3 ruby-2.2.2.tar.bz2=af6eb4fa7247f1f7b2e19c8e6f3e3145 ruby-2.2.3.tar.bz2=f49a734729a71774d4a94a9a603114b2 ruby-2.2.4.tar.bz2=c3d65f6d2ebe90dda81a37885ea244f5 ruby-2.2.5.tar.bz2=0c7edd1ff3650c3b74da2efaf641bf34 ruby-2.2.6.tar.bz2=3d13cf447142b8a11cd9beb7bc63fee0 ruby-2.2.7.tar.bz2=ca7224d80c08b015bc3b8c226d0914c3 ruby-2.2.8.tar.bz2=054d2e2904d5175662293e29c3bdb927 ruby-2.2.9.tar.bz2=575adf8ede6b1ca7236a5341e73536b0 ruby-2.2.10.tar.bz2=bef1909a4c885157870ef69548cdad3a ruby-2.3.0-preview1.tar.bz2=776000d74ec6dd34bf355ff6921c8311 ruby-2.3.0-preview2.tar.bz2=3ad442ccb337e77e4acaa4113f25b76a ruby-2.3.0.tar.bz2=f0d9f9bbdc87372ca98988a571875819 ruby-2.3.1.tar.bz2=c194281f63d7fcd816747fe78474be5e ruby-2.3.2.tar.bz2=9d00f3772f1c8fa5eecdfea089e3032f ruby-2.3.3.tar.bz2=04b9c461a2bc1eec0535ad1947cad4fb ruby-2.3.4.tar.bz2=99961e97566aee6d63635e2da4cf73ac ruby-2.3.5.tar.bz2=e1efc3d5a948ca1f552005efe5925513 ruby-2.3.6.tar.bz2=b2443b11ee80319a119f7ec0c9b8d79a ruby-2.3.7.tar.bz2=5eb580d5cd13ffb5aacfb96580c0043d ruby-2.3.8.tar.bz2=78045332e298dfd859ceef9fe946950f ruby-2.4.0-preview1.tar.bz2=64b8983b5f53d053906e394f734aa296 ruby-2.4.0-preview2.tar.bz2=1074e8dea5baa89af7f7c2d1d2b9ebaa ruby-2.4.0-preview3.tar.bz2=9f767e6bc61830735ea7dc9cd5a63653 ruby-2.4.0-rc1.tar.bz2=0f8b665acf4e883334adc121a42a206f ruby-2.4.0.tar.bz2=98f29161860fe1b6c65396717847a358 ruby-2.4.1.tar.bz2=07b2ae5d2f46321c95b37066c8415900 ruby-2.4.2.tar.bz2=5ff3ad6ec816bcce8806a55090936ab6 ruby-2.4.3.tar.bz2=ac8215ba561cc7c79b4f61daee11b706 ruby-2.4.4.tar.bz2=d994274eaa95b82aa5d31ec2188253c6 ruby-2.4.5.tar.bz2=45d70a8bb9397d818795ffe992163d27 ruby-2.4.6.tar.bz2=4abd13c50c1fc273a0a81a0ae74ed39f ruby-2.4.7.tar.bz2=1ce166ced489908993d78e8bb68325e0 ruby-2.4.8.tar.bz2=396d35f1a2d1deaf303f59cb5245d4ae ruby-2.4.9.tar.bz2=0b3447370651df55a2014a170c0cb1d5 ruby-2.4.10.tar.bz2=b10a7d2fcaf218c98edbaf57efc36e58 ruby-2.5.0-preview1.tar.bz2=889454189f41e271ae5ba15382911b6a ruby-2.5.0-rc1.tar.bz2=f5acdeacf56aced3c00ae6a8fa816bbc ruby-2.5.0.tar.bz2=63a6cd49546783d62de25a0ffc4aecc3 ruby-2.5.1.tar.bz2=5aaaf2fb4893214fa316516f3ac43519 ruby-2.5.2.tar.bz2=e90ab127e2ac3ee1d8840835e8ba1f13 ruby-2.5.3.tar.bz2=49aea0bf56d25351ccaf938c642400df ruby-2.5.4.tar.bz2=0c923215470f1debe593fe21e66fd37b ruby-2.5.5.tar.bz2=8f41b5cb683d48b5cb6cdfe03d135d6b ruby-2.5.6.tar.bz2=f2a74416ab3016434896194120796f04 ruby-2.5.7.tar.bz2=65597b69aa54bdca8745502c10349f96 ruby-2.5.8.tar.bz2=9ec96e7a590ef801ede294b6184c9c0f ruby-2.5.9.tar.bz2=9e905a545a729af1f1620ddfc2976fe5 ruby-2.6.0-preview1.tar.bz2=1ce507e27fa02aeb36100dabcf1da94f ruby-2.6.0-preview2.tar.bz2=e45011116334d21857b9e1712a01e6b3 ruby-2.6.0-preview3.tar.bz2=b326ceee3d3756f892515009e148f4b2 ruby-2.6.0-rc1.tar.bz2=40457a72e36cbecd0c51d9f895347302 ruby-2.6.0-rc2.tar.bz2=9665e6d886a9da2d4076fa75836798f1 ruby-2.6.0.tar.bz2=d3372daec93f83e7a91c669821053014 ruby-2.6.1.tar.bz2=73d19ac478db1a178be5ae2f2fb8c9ec ruby-2.6.2.tar.bz2=658fcc0da15578c2420ded807b11cce1 ruby-2.6.3.tar.bz2=52e609b756735115814b9c8463f185e2 ruby-2.6.4.tar.bz2=d9b35753c65f54c745ab6b0094511839 ruby-2.6.5.tar.bz2=d1b89c88effb71d75cd7ef77c35e1985 ruby-2.6.6.tar.bz2=abc030870bfbe18ae9c356abebd95cb6 ruby-2.6.7.tar.bz2=46f24740181f91247c72f19d52334379 ruby-2.6.8.tar.bz2=c53761123d17e929cfe248f50429bcab ruby-2.6.9.tar.bz2=ddc24495adaf215c8ee40630b4a55041 ruby-2.6.10.tar.bz2=6ad76db639ab308e3b6c19408729a0cf ruby-2.7.0-preview1.tar.bz2=82fab0496947acd847a6b2eb758acfc6 ruby-2.7.0-preview2.tar.bz2=966a544ab59114591898403c23d91397 ruby-2.7.0-preview3.tar.bz2=2fa6c213774744b287e7e0212b43f626 ruby-2.7.0-rc1.tar.bz2=48a8837cb352f5b95e97a1ae0d62a9d0 ruby-2.7.0-rc2.tar.bz2=cca58fdb8c5e8be8273842d54199c42d ruby-2.7.0.tar.bz2=89347748b7414f5bc7aeb8f4a87ebef4 ruby-2.7.1.tar.bz2=4bb2b2b2f0c6953859e30af140cf249a ruby-2.7.2.tar.bz2=a8acc9c24708fe29dfc287823ecaae65 ruby-2.7.3.tar.bz2=604acb258b1d8228f55799e846cfe6d3 ruby-2.7.4.tar.bz2=52705d799ed851dd3bfd5634265cde46 ruby-2.7.5.tar.bz2=d97d4377eee18b0e790510c3afed648c ruby-2.7.6.tar.bz2=1b6efacb9f129d0253d8a9faa9c21f99 ruby-2.7.7.tar.bz2=63c55e75150251d3ba092b662138e4af ruby-2.7.8.tar.bz2=f44dedf51fdb7441a7dba592d6a4a14d ruby-3.0.0-preview1.tar.gz=991df063b86a8f8412ca07f548579f39 ruby-3.0.0-preview2.tar.gz=ce14b24e923f2e269fea6441791a7248 ruby-3.0.0-rc1.tar.gz=848a8628c8abde270b66e2474049a4a3 ruby-3.0.0.tar.gz=d6af36269a1b0bc278236d371543ad97 ruby-3.0.1.tar.gz=8d1c460a9a9d48a353de3eb0f338bbfd ruby-3.0.2.tar.gz=b973af486291a1e17ad50d88472bfa86 ruby-3.0.3.tar.gz=9ecae293da9547c1438a970f04f64655 ruby-3.0.4.tar.gz=ec9de9a15acc4f205b08816d94267415 ruby-3.0.5.tar.gz=cdff2395625dc1d632fc5400c8fec103 ruby-3.0.6.tar.gz=6b5a7b14505697e6fc2b40b345679f40 ruby-3.0.7.tar.gz=147a3467facc704b5d479e809c131603 ruby-3.1.0-preview1.tar.gz=d131b9bca700ee87ea276f8233ea4c0b ruby-3.1.0.tar.gz=1ca89d713f2c18a20104befed51b3b9a ruby-3.1.1.tar.gz=702778a0ef8b7a01ef7530a541002e19 ruby-3.1.2.tar.gz=9daf064899cccc32fd564117c7a7e0dd ruby-3.1.3.tar.gz=cce38a2b2c589d59f440f67c7d8cc697 ruby-3.1.4.tar.gz=3e601ae6db76a487219a1084e5cb4c9c ruby-3.1.5.tar.gz=ce1e92ddb1230fa2d4f4367882542555 ruby-3.1.6.tar.gz=880923d0ce02717023683b522dbe92a5 ruby-3.1.7.tar.gz=20b73ea8e850d7e12c226b3772b1d0ed ruby-3.2.0-preview1.tar.gz=a83c91d53e130fe232e4c27ecc8738da ruby-3.2.0-preview2.tar.gz=56e7801b37612b82285c9a09cfeb28ce ruby-3.2.0-preview3.tar.gz=0ed16faae50403b4e2ba2e85ec2314a1 ruby-3.2.0-rc1.tar.gz=4657d7013702adce21ca21dfe71ea4a0 ruby-3.2.0.tar.gz=76ca7e7d71898ab1e85155d69403754e ruby-3.2.1.tar.gz=055101c924538467c63fcbf42abddc75 ruby-3.2.2.tar.gz=eb6f18605e1e1be5dfb5b45f31bf6a93 ruby-3.2.3.tar.gz=e0ba90554f7ea41c587ffa7fcfd064ca ruby-3.2.4.tar.gz=c48283a23c72d7aae19b7f510b89444a ruby-3.2.5.tar.gz=3bd6f2b26918c8637abf56c2f208833e ruby-3.2.6.tar.gz=fa9bd65bc429a43a3e6dda8ff0b97022 ruby-3.2.7.tar.gz=c72e290d57080f828156b5c24fe8e4ad ruby-3.2.8.tar.gz=aa16ae868ae1cb8810581ea604e4e0fa ruby-3.3.0-preview1.tar.gz=0833f555b1b8d5423953600fb4146639 ruby-3.3.0-preview2.tar.gz=4f82f4c9e512ec0a53baa1be8d35ebf7 ruby-3.3.0-preview3.tar.gz=a32ede198a9da50d4afc4421a4a993ad ruby-3.3.0.tar.gz=f57422a0f995cd5a93c726f6c42c310a ruby-3.3.1.tar.gz=368e331a35145ace4948390ed76cf1df ruby-3.3.2.tar.gz=9a7efebc6a0e4810c716ec6d401dc372 ruby-3.3.3.tar.gz=beb9773cc4d9d8da29463ab175e4db28 ruby-3.3.4.tar.gz=f2e16c1a56e07e185214e85c62657941 ruby-3.3.5.tar.gz=ccad73b02d942d1e6b4c27873d4c08e4 ruby-3.3.6.tar.gz=51bcf91da64e5889e2e59c7adc7189c5 ruby-3.3.7.tar.gz=5fa3e653657d868e2c8377d2f3adb335 ruby-3.3.8.tar.gz=874dd01d11ddb2886df05340c6388ba9 ruby-3.4.0-preview1.tar.gz=93b9b1040a2dd7be7514a7870aa7da03 ruby-3.4.0.tar.gz=2acf769caa47f692fea932ab81e75639 ruby-3.4.1.tar.gz=43e587b9a6de2a51dd1fa2613615542b ruby-3.4.2.tar.gz=120907785ecc0a84521e924cbda66af9 ruby-3.4.3.tar.gz=3fe26229fe20342d251503b83fdf0b02 +ruby-3.4.4.tar.gz=288d4c5c376a14fc008649b19068045a ruby-3.5.0-preview1.tar.gz=1e69ce0116e8cb15e9affa261a89def3 ruby-enterprise-1.8.6-20080507.tar.gz=17e3c52e73e42809f57ad0000a6cb4ab ruby-enterprise-1.8.6-20080621.tar.gz=626fc3811eee2dc92ac27ea63d37a8b2 ruby-enterprise-1.8.6-20080623.tar.gz=0bf8a3a93c6b37bb1260cc09b05e81fd ruby-enterprise-1.8.6-20080624.tar.gz=de58b97128aa65209f291c66eab7c4a7 ruby-enterprise-1.8.6-20080709.tar.gz=f0ded08cec64959fa388ec6a237b9c47 ruby-enterprise-1.8.6-20080810.tar.gz=bfdcf06f437af825cd9f2d321f9d1896 ruby-enterprise-1.8.6-20081205.tar.gz=50206bec9be2e08a862e5ec2e70fa693 ruby-enterprise-1.8.6-20081215.tar.gz=aab57b7d5061c1980bec5dbe311ec9b2 ruby-enterprise-1.8.6-20090113.tar.gz=e8d796a5bae0ec1029a88ba95c5d901d ruby-enterprise-1.8.6-20090201.tar.gz=a965e6789b553efaed72191825b13713 ruby-enterprise-1.8.6-20090421.tar.gz=c777b361aadccda7988be16ede7ab15f ruby-enterprise-1.8.6-20090520.tar.gz=156572a8296bd0440970a6bb95018a13 ruby-enterprise-1.8.6-20090610.tar.gz=0bf66ee626918464a6eccdd83c99d63a ruby-enterprise-1.8.7-2009.10.tar.gz=3727eef7b6b1b2f31db7d091328d966e ruby-enterprise-1.8.7-2010.01.tar.gz=587aaea02c86ddbb87394a340a25e554 ruby-enterprise-1.8.7-2010.02.tar.gz=4df7b09c01adfd711b0ab76837611542 ruby-enterprise-1.8.7-2011.01.tar.gz=4640634347cd8e5469cb718853e2112e ruby-enterprise-1.8.7-2011.02.tar.gz=8c5faa11c1ddaed3f44b7294711980cc ruby-enterprise-1.8.7-2011.03.tar.gz=038604ce25349e54363c5df9cd535ec8 ruby-enterprise-1.8.7-2011.12.tar.gz=1e5f3059d52a67ab5d91d472b756de08 ruby-enterprise-1.8.7-2012.02.tar.gz=8d086d2fe68a4c57ba76228e97fb3116 ruby-enterprise-1.8.7-20090928.tar.gz=ae00018ce89d95419dfde370fcd485ac rubygems-0.4.0.tgz=86a64616548a793e1a5f825f0dd385b9 rubygems-0.5.0.tgz=80d151edd94a06bcd2452a7e272b4d96 rubygems-0.6.0.tgz=5df803f5a04654833690dd32283de741 rubygems-0.6.1.tgz=c4a0faa9f876ad805ae80d1396a29d97 rubygems-0.7.0.tgz=ede9b55343219e8b3491793aa12c46f3 rubygems-0.8.0.tgz=9ef6e3c34dcb54e295c8e57321ddc079 rubygems-0.8.1.tgz=6276d268b420c0d61796cdbf6d28dae4 rubygems-0.8.3.tgz=6e6da80f61d6e77d0ad9e531767f6fd5 rubygems-0.8.4.tgz=a2ad2d03dae8a98002c2a7cd6c3ed352 rubygems-0.8.5.tgz=b917c084e1e6e99d8e102af8dd687ddb rubygems-0.8.6.tgz=9de98d2f62e3f91521b0207a4dcdeb5b rubygems-0.8.7.tgz=7fc04b9f9acc0c18cbbe6222be8d0bd3 rubygems-0.8.8.tgz=a8535e9c35a4c215d6ef9268d4bc69ed rubygems-0.8.10.tgz=d26592e280c0fb24c51f2837c3f48e67 rubygems-0.8.11.tgz=aa363b428c4c1fc2e076a4ff77b957d7 rubygems-0.9.0.tgz=5d496e1f415b8b4033ab867f01d1161f rubygems-0.9.1.tgz=a62314cdb174ccc88a27b8924fa79e4a rubygems-0.9.2.tgz=cc525053dd465ab6e33af382166fa808 rubygems-0.9.3.tgz=600940a22ecd79e28e0fd37ad1f1d871 rubygems-0.9.4.tgz=b5680acaa019c80ea44fe87cc2e227da rubygems-0.9.5.tgz=91f7036a724e34cc66dd8d09348733d9 rubygems-1.0.0.tgz=b0b74eac0cbfc5a13f895ab6f803edc1 rubygems-1.0.1.tgz=0d5851084955c327ee1dc9cbd631aa5f rubygems-1.1.0.tgz=85f994904c5b4045f0a859b29d0be717 rubygems-1.1.1.tgz=1a77c5b6b293a3ccd5261dc120641ccc rubygems-1.2.0.tgz=b77a4234360735174d1692e6fc598402 rubygems-1.3.0.tgz=63d3dfc038710eaf532b6a133225115a rubygems-1.3.1.tgz=a04ee6f6897077c5b75f5fd1e134c5a9 rubygems-1.3.2.tgz=6204d0a4c526a1d8fdbce746647b179a rubygems-1.3.3.tgz=0e9697db44d812712350baf28016b4a7 rubygems-1.3.4.tgz=b17b398503253bf36a101c58f02a226f rubygems-1.3.5.tgz=6e317335898e73beab15623cdd5f8cff rubygems-1.3.6.tgz=789ca8e9ad1d4d3fe5f0534fcc038a0d rubygems-1.3.7.tgz=e85cfadd025ff6ab689375adbf344bbe rubygems-1.4.1.tgz=e915dbf79e22249d10c0fcf503a5adda rubygems-1.4.2.tgz=b5badb7c5adda38d9866fa21ae46bbcc rubygems-1.5.0.tgz=49bef7186bf3c0ca6ee7adf4b585bccc rubygems-1.5.1.tgz=47577a5e33c9c6f1e3a56aff7f51d0ff rubygems-1.5.2.tgz=3951f94c09c16c774c8bcebc94fa5374 rubygems-1.5.3.tgz=38bbbdc17aef923fb41f054cf8421116 rubygems-1.6.0.tgz=abd27b5a9002100ff74ddb398a1c9689 rubygems-1.6.1.tgz=a77c64896aaa10d64aaf34f5c1488173 rubygems-1.6.2.tgz=0c95a9869914ba1a45bf71d3b8048420 rubygems-1.8.6.tgz=8e95d0c5b377a003f3d54a49461e81d9 rubygems-1.8.9.tgz=fc399445d693c29778779e5828ee5e90 rubygems-1.8.10.tgz=5b08ee31740c9b0bd36f6c04d537e7d4 rubygems-1.8.23.1.tgz=5259ce3eb7988950fa3aff9051a5de91 rubygems-1.8.23.2.tgz=fb377c7fd387df14a33e529153adc316 rubygems-1.8.23.tgz=178b0ebae78dbb46963c51ad29bb6bd9 rubygems-1.8.24.tgz=3a555b9d579f6a1a1e110628f5110c6b rubygems-1.8.25.tgz=1376a258d43c53750a8df30e67853e10 rubygems-1.8.26.tgz=0ea47f1efd010f4c82b8a51a934f48dc rubygems-1.8.27.tgz=6686ad26735c21d0d6e58b6192c7da5d rubygems-1.8.28.tgz=2df78039f391fb1f71c02c2fc5671c94 rubygems-1.8.29.tgz=a57fec0af33e2e2e1dbb3a68f6cc7269 rubygems-2.0.0.tgz=89ce467eb2d55657e9965a46559acbcf rubygems-2.0.1.tgz=2652ab6f001a873b8933e2ca09505974 rubygems-2.0.2.tgz=3471f140a70bcd32a7495b545cfce790 rubygems-2.0.3.tgz=854691f145cea98b4100e5b0831b73ed rubygems-2.0.4.tgz=3ec32dbe783bab37a87f50758f8efe13 rubygems-2.0.5.tgz=641d82672937d40d664dbc18f49cdcec rubygems-2.0.6.tgz=0633f50db16112bf6c3cf9bfb9ceb9bd rubygems-2.0.7.tgz=9046700f1222712fedfb836fafa08c50 rubygems-2.0.8.tgz=5432214a740c0d13482e43a5328a6518 rubygems-2.0.9.tgz=bc55898247297ffa190223276b1b1bd7 rubygems-2.0.10.tgz=5457ba403cd9a5f4f5fb2ef4a2a1c03e rubygems-2.0.11.tgz=0f28e3fde3348c0f23ceecba73a6cbef rubygems-2.0.12.tgz=99c416517e2de1146d2c6fbb4c4c1441 rubygems-2.0.13.tgz=3970e66a670ddb6d1aade9c7b18033d4 rubygems-2.0.14.tgz=4a7aa0b144e465230ab5d7b59dfd7e8f rubygems-2.1.0.tgz=9a9d242baef5e58fbfe79ec5206cd316 rubygems-2.1.1.tgz=b34d6f4028b69a84123a6b7cb0ac8028 rubygems-2.1.2.tgz=b5c5c4430be60f911014216d41886ef3 rubygems-2.1.3.tgz=ac7bbdfecd49f9304756aa5ebeb51400 rubygems-2.1.4.tgz=aa502b1ea90fbdd14ca9b32634795c2b rubygems-2.1.5.tgz=60564b762d4e186815997653b1c876ab rubygems-2.1.6.tgz=e11237a8f87dbd8c085770551d64a8f8 rubygems-2.1.7.tgz=b721ed7d5fd57ed05f77eb21a3a592ee rubygems-2.1.8.tgz=cc4c84c0482840389a457740e8083ed9 rubygems-2.1.9.tgz=2636bf26c0a9ec889c7bd938887bd9a3 rubygems-2.1.10.tgz=6fa671d7d6605de73d16f529cf7bffb8 rubygems-2.1.11.tgz=b561b7aaa70d387e230688066e46e448 rubygems-2.2.0.rc.1.tgz=f7d80b612339169569f2675155c202f1 rubygems-2.2.0.tgz=3c16e50673adb99d1ce76d5231f764bd rubygems-2.4.8.tgz=dc77b51449dffe5b31776bff826bf559 rubygems-2.6.10.tgz=ab5a0028d2a0653691b29d7463bd0892 rubygems-2.6.11.tgz=8d514b836fcf3ae2c20b4fe8d5cdc3c5 rubygems-2.6.12.tgz=7c454ef88b716c1a123f62b26bb9612b rubygems-2.6.13.tgz=e6f19b51614055d826e431549a12a80b rubygems-2.6.14.tgz=e0a6914ce03b91dfc6d448ebf292f145 rubygems-2.7.0.tgz=771c40015538c0f225c5249e4bc7d441 rubygems-2.7.1.tgz=65646f28f3c36ccaa7f991c17e15b8a9 rubygems-2.7.2.tgz=312a238ed98a61d2b3d165b790b6062b rubygems-2.7.3.tgz=fb3a1927a1842b75677a24f48dd63ddc rubygems-2.7.4.tgz=e9bbf5a4cc9a74293884b91f49603ea0 rubygems-2.7.5.tgz=516a4f219976003feb4b4f797cbc66b0 rubygems-2.7.6.tgz=366cea352c2b1243db726013c3d76fc4 rubygems-2.7.7.tgz=b6721f6ce4af08f68c6f513bbddfe484 rubygems-2.7.8.tgz=a3ed89a34e1ae8f9da0c620a8aa35f12 rubygems-2.7.9.tgz=173272ed55405caf7f858b6981fff526 rubygems-2.7.10.tgz=464754059d8ca01c1121a1233d866e8c rubygems-3.0.0.tgz=3908105894e531f7ad3aceb8b41dcbcd rubygems-3.0.1.tgz=1e8af9b87a67f15841ad2be7d5725a5f rubygems-3.0.2.tgz=d8db1b516ae1e35b8f6f56cb526f879a rubygems-3.0.3.tgz=b7a7dd5f85485334a6cb61b7dac20cff rubygems-3.0.4.tgz=7d0c49077a2d19f48d88567cfa3cf17a rubygems-3.0.5.tgz=4664467d621d719688e4778d147c306a rubygems-3.0.6.tgz=60d84e843b131fb87c8fd67e8fac6470 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=3e9afdf72f153e2f66259fc2b6fca594 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=c30459287aec83548cfcb17340fa73d5 truffleruby-1.0.0-rc3-linux-amd64.tar.gz=138f6814451ce634b0fae3aca5579248 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=94ed54ecb65bea2166a2159431b0362b truffleruby-1.0.0-rc5-linux-amd64.tar.gz=9e5428611e22b093d05afebbe0ccbc2b truffleruby-1.0.0-rc5-macos-amd64.tar.gz=b32a254fed71434c3431fb2effb35c5a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=7f394a8c7fe356b7bd36683c57f74ebd truffleruby-1.0.0-rc6-macos-amd64.tar.gz=f033329d03f1f846d25728c2af9d7524 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=184e98f2d6939f63db4b915943ff60c6 truffleruby-1.0.0-rc7-macos-amd64.tar.gz=d19213b33011f7a55e0f32d25e19184f truffleruby-1.0.0-rc8-linux-amd64.tar.gz=a394167c0331c6d8c1123e1f992e5411 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=dc1bf0fcfdd5837ae0ca56d6d6e5f7b0 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=f6ec25bd532bf0551d35327d1aa4caf9 truffleruby-1.0.0-rc9-macos-amd64.tar.gz=c80a345f9071521cf1961ab75ebc7dd1 truffleruby-1.0.0-rc10-linux-amd64.tar.gz=3a889726efcdf33feb7ef3df13fd5f39 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=bba618b4483b79eebf9f0e7af4078502 truffleruby-1.0.0-rc11-linux-amd64.tar.gz=a25e179ca0be96a1bc737a600729c195 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=bb8d8f5525e1ba86bb039e56291c6c7c truffleruby-1.0.0-rc12-linux-amd64.tar.gz=872774837057489250527bf863192115 truffleruby-1.0.0-rc12-macos-amd64.tar.gz=bb4a64e6c4882fd0c5e412bf9c57720b truffleruby-1.0.0-rc13-linux-amd64.tar.gz=0f36eed2eb36846785fdd4eae24adfa0 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=1bd3087a0f2df4c006b87c9488ada6d4 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=9eddd1aa98c9649e7c01bb10bf28c471 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c93643f1d00b370411310ee7a1dd5330 truffleruby-1.0.0-rc15-linux-amd64.tar.gz=bc7339a6218ea991f2c72ce8759cb6e3 truffleruby-1.0.0-rc15-macos-amd64.tar.gz=1671d08dd2f5026d58b326fd55c9b7de truffleruby-1.0.0-rc16-linux-amd64.tar.gz=5564d17f19b8ee0edb96ab5b1bfbda98 truffleruby-1.0.0-rc16-macos-amd64.tar.gz=61583b529b6a1337398b0966db952d24 truffleruby-19.0.0-linux-amd64.tar.gz=006220c7bde7d0b5c72481133624a83f truffleruby-19.0.0-macos-amd64.tar.gz=9ef7f5a311465d35e54ac6e00ec3d169 truffleruby-19.0.2-linux-amd64.tar.gz=2f7fe574e0695fb6001f4f5282aa2f79 truffleruby-19.0.2-macos-amd64.tar.gz=aa20f76b3eac1f4976a507364201d1ad truffleruby-19.1.0-linux-amd64.tar.gz=71368f8371069017d911528f052b0a55 truffleruby-19.1.0-macos-amd64.tar.gz=7f086adbc89fdfaed35273394ac3ac66 truffleruby-19.1.1-linux-amd64.tar.gz=c1ad4d17bb40e214b124222f3a7c6db6 truffleruby-19.1.1-macos-amd64.tar.gz=f4e76b0612319b4a82480cbd1fc90210 truffleruby-19.2.0-linux-amd64.tar.gz=458ed5fec1a849ef5b00e19b0e25d5e9 truffleruby-19.2.0-macos-amd64.tar.gz=dc324575ad20e3054980835c24ea7161 truffleruby-19.2.0.1-linux-amd64.tar.gz=ad7444145550d89931199159163077c1 truffleruby-19.2.0.1-macos-amd64.tar.gz=b5bcfb0aaded1e2d1763089ab6c9a14d truffleruby-19.2.1-linux-amd64.tar.gz=fc4879d2b0cc22c152a8bf893a72c346 truffleruby-19.2.1-macos-amd64.tar.gz=71448ff3f8f1da086f222751d3f853bc truffleruby-19.3.0-linux-amd64.tar.gz=dd44ac30b5a1ef3a7d61172cda9b30b6 truffleruby-19.3.0-macos-amd64.tar.gz=41daa52f0f308abb77a2b91c1b7e0f3d truffleruby-19.3.0.2-linux-amd64.tar.gz=2db2cb5c29523c9bdb6f59dfa0bd74ce truffleruby-19.3.0.2-macos-amd64.tar.gz=edf1603643938686dce57139aadf7d3c truffleruby-19.3.1-linux-amd64.tar.gz=a14c028351f7a3965bcb56e9b22364de truffleruby-19.3.1-macos-amd64.tar.gz=a8707d0af3eda694ec07a5387d3443fb truffleruby-20.0.0-linux-amd64.tar.gz=b30110ecbc50c4fce402fdf44c45dad5 truffleruby-20.0.0-macos-amd64.tar.gz=0671e5909cefb9a2c12c473fc0110821 truffleruby-20.1.0-linux-amd64.tar.gz=4592b5fc3636d82fc998ab6fe0a43584 truffleruby-20.1.0-macos-amd64.tar.gz=3c0be43db86817c7037d3ff5053d322d truffleruby-20.2.0-linux-amd64.tar.gz=e9859decb24829f9a189d88b3c2e9b79 truffleruby-20.2.0-macos-amd64.tar.gz=49e7ccf8f9e60d6c59b3b07b854466cf truffleruby-20.3.0-linux-amd64.tar.gz=93a20845f7d9d39100761424dfc0a734 truffleruby-20.3.0-macos-amd64.tar.gz=b178b7a94fac58400450417612fe3441 truffleruby-21.0.0-linux-amd64.tar.gz=c03304a505c8699e697acecf5030d95f truffleruby-21.0.0-macos-amd64.tar.gz=019796be37a58ef8e186a625f2ff5d07 truffleruby-21.1.0-linux-amd64.tar.gz=065bfcc48f6925410e0da21e16428b64 truffleruby-21.1.0-macos-amd64.tar.gz=325f6854c10d8a3a114c80da582c469f truffleruby-21.2.0-linux-amd64.tar.gz=0aec44721a040845347f18c1f72ceb75 truffleruby-21.2.0-macos-amd64.tar.gz=76d27715b20902df5779f7a0c00852b1 truffleruby-21.2.0.1-linux-amd64.tar.gz=f68e9b8a9f9cae5efc5ac45a7d9e760d truffleruby-21.2.0.1-macos-amd64.tar.gz=b021e50fc94cab590b49d27f2ea821b0 truffleruby-21.3.0-linux-amd64.tar.gz=359aca79cba4e08f9955d9c6543c2189 truffleruby-21.3.0-macos-amd64.tar.gz=d9e2e2c6fcd3ac16f0c37b0ccffb4f41 truffleruby-22.0.0.2-linux-amd64.tar.gz=324327026e9b2963a8e5fb4ee3f4e216 truffleruby-22.0.0.2-macos-amd64.tar.gz=7029d0e291d498a264d9b413729a3e17 truffleruby-22.1.0-linux-amd64.tar.gz=9329cf507ba8ac529e93156cacc1425d truffleruby-22.1.0-macos-amd64.tar.gz=353242978b46cafc34b05e2c81206096 truffleruby-22.2.0-linux-amd64.tar.gz=5d676377056ae94fe847be721c20405b truffleruby-22.2.0-linux-aarch64.tar.gz=b774f4b7d330842521f1e6e56cb41db5 truffleruby-22.2.0-macos-amd64.tar.gz=e45fdd9a05aec6220a76fb707b0a5ae8 truffleruby-22.2.0-macos-aarch64.tar.gz=ebcbfe056d90d06de4bd0a9d699bad8f truffleruby-22.3.0-linux-amd64.tar.gz=ada8bc5dc52aca8317eaeab04d91e877 truffleruby-22.3.0-linux-aarch64.tar.gz=11493301d5519aa73e8f0e140cefb581 truffleruby-22.3.0-macos-amd64.tar.gz=9e27c677637b69b0460fb0a4569a5cca truffleruby-22.3.0-macos-aarch64.tar.gz=eaa1c9020b521226f8bb48b8c7e5c596 truffleruby-22.3.1-linux-amd64.tar.gz=243d926f038fd2220c03dfbe40ef58c3 truffleruby-22.3.1-linux-aarch64.tar.gz=01487fe680863381489bf2a0a2ac162b truffleruby-22.3.1-macos-amd64.tar.gz=b3d5a777d94856e51034d81076e8ef72 truffleruby-22.3.1-macos-aarch64.tar.gz=320ce75730a5b9f16f111eb7ef5e4e09 truffleruby-23.0.0-preview1-linux-amd64.tar.gz=76c1cb23ee63ba4de93a0c23784bfca9 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=eec3fc74565f08e9468982692f7f9010 truffleruby-23.0.0-preview1-macos-amd64.tar.gz=50e38f3cd548dfe78f397f76ed577bf1 truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=b769bcf9b843d9b2980def1e2139284f truffleruby-23.0.0-linux-amd64.tar.gz=6e1a491406c5dbf42de10fcb3ed7dc1c truffleruby-23.0.0-linux-aarch64.tar.gz=5c3663f64bee707173b2684355a9a42e truffleruby-23.0.0-macos-amd64.tar.gz=515a9a8a0f39ba9399e869cd418ebff5 truffleruby-23.0.0-macos-aarch64.tar.gz=57e5fa52270e692b82c445107fe6b6a6 truffleruby-23.1.0-linux-amd64.tar.gz=f7511c19045e57e72f9b5415bc17c8e8 truffleruby-23.1.0-linux-aarch64.tar.gz=e8a20dd919a2ff77b7cc5457e853d15d truffleruby-23.1.0-macos-amd64.tar.gz=d3b6a3cbc0a230ebae6f3a462a32ddd3 truffleruby-23.1.0-macos-aarch64.tar.gz=ee74fc5d192c2fb8afd0458d2d429c02 truffleruby-23.1.1-linux-amd64.tar.gz=d7e1c040da170aaa36b5f5a1d106d237 truffleruby-23.1.1-linux-aarch64.tar.gz=cf508ba3787be20c03bac690f3bdbac5 truffleruby-23.1.1-macos-amd64.tar.gz=a662a8672871524808500dddef3808c1 truffleruby-23.1.1-macos-aarch64.tar.gz=de543312024993a533e3caa63b396127 truffleruby-23.1.2-linux-amd64.tar.gz=e3e5b01b291d7fea61be2be842c7e8dc truffleruby-23.1.2-linux-aarch64.tar.gz=8fe26f643fa81eec6de3bde7024c858a truffleruby-23.1.2-macos-amd64.tar.gz=83bc41bf699fa847df7e60412bee2823 truffleruby-23.1.2-macos-aarch64.tar.gz=7dbd2e182cfec0cf2d2e37784721903f truffleruby-24.0.0-linux-amd64.tar.gz=202f05706d28faca75d5e3cd0f9bef78 truffleruby-24.0.0-linux-aarch64.tar.gz=4faaf4edde4f6a516246b7c2f4ee80b3 truffleruby-24.0.0-macos-amd64.tar.gz=d07f27e0e29398c6de836b0049105c12 truffleruby-24.0.0-macos-aarch64.tar.gz=10cf176718968893468caba617c02141 truffleruby-24.0.1-linux-amd64.tar.gz=2914bfb81b136cd1fb5736c0a40068e3 truffleruby-24.0.1-linux-aarch64.tar.gz=429e6ada9a95ea23ebb95d01f90eb0f4 truffleruby-24.0.1-macos-amd64.tar.gz=e3aa5ab128f5d169d93f2d6df98c4e77 truffleruby-24.0.1-macos-aarch64.tar.gz=6f81a1afe1b89a40f00c9bd4216ec45d truffleruby-24.0.2-linux-amd64.tar.gz=1a826ea6323a25becce5940d8e6c4642 truffleruby-24.0.2-linux-aarch64.tar.gz=45429f35653bd8cbc328eafe81d15e8a truffleruby-24.0.2-macos-amd64.tar.gz=f68aeb26783d048ae5f78e1c13739747 truffleruby-24.0.2-macos-aarch64.tar.gz=df05f94696b4f4584a259001a3d4d1d0 truffleruby-24.1.0-linux-amd64.tar.gz=14aa05250088f17491072e500c22c039 truffleruby-24.1.0-linux-aarch64.tar.gz=3e26495f8aa7b810ec5794a69e93483a truffleruby-24.1.0-macos-amd64.tar.gz=53b6251cdd359176f9e52fe05f05e949 truffleruby-24.1.0-macos-aarch64.tar.gz=28d61b8a1a307cbdf988313c8a1f77f1 truffleruby-24.1.1-linux-amd64.tar.gz=9ef530c2ac5f597100e69e4b374182c3 truffleruby-24.1.1-linux-aarch64.tar.gz=efcc6f5c51be84d2ec99e6cebccc586a truffleruby-24.1.1-macos-amd64.tar.gz=11e2f0f62c55fcc8330cd66393abb1fc truffleruby-24.1.1-macos-aarch64.tar.gz=eaba15df3e46cd3976bedaf6f086aae2 truffleruby-24.1.2-linux-amd64.tar.gz=ada406523c5cf80f7655a9314902e2b5 truffleruby-24.1.2-linux-aarch64.tar.gz=5a5dc457002a8a65b21264efd0387d5b truffleruby-24.1.2-macos-amd64.tar.gz=cb6142250e4b0b2b164ffa7ce47d5f29 truffleruby-24.1.2-macos-aarch64.tar.gz=f73e0af905cabe695b0fe6c73df699a1 truffleruby-24.2.0-linux-amd64.tar.gz=326d5bc6b5232c88e00837d30884ba52 truffleruby-24.2.0-linux-aarch64.tar.gz=391fa212eaff207df31860a291fee28e truffleruby-24.2.0-macos-amd64.tar.gz=0e21c5233ac4a20c4221900c79602496 truffleruby-24.2.0-macos-aarch64.tar.gz=9573cceaf4e1d6444cff0fda3695228a truffleruby-24.2.1-linux-amd64.tar.gz=c476f9d53f1b5bab9748b1468aca211a truffleruby-24.2.1-linux-aarch64.tar.gz=7965413b6261e499b13e5bb3aa26fa4f truffleruby-24.2.1-macos-amd64.tar.gz=d02cf59ffc11bb92423ca28ceec5863c truffleruby-24.2.1-macos-aarch64.tar.gz=b2134063922abdd3993ce4d2756c60ea yaml-0.1.4.tar.gz=36c852831d02cf90508c29852361d01b zlib-1.2.3.tar.gz=debc62758716a169df9f62e6ab2bc634 zlib-1.2.5.tar.gz=c735eab2d659a96e5a594c9e8541ad63 diff --git a/config/sha512 b/config/sha512 index 217bcf7..ce9faa2 100644 --- a/config/sha512 +++ b/config/sha512 @@ -1114,669 +1114,670 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.4.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.5.tar.bz2=c7396627e45d8df68b18c2491fa756085aeb4ec28c1cc707617cd903fcd47d4fdd3cd6ed225dccc14497afb14200b9bea5ba38f1e8dc621c4aea8b8f0f1ccc7d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.6.tar.bz2=389aa514d93d165fe299856a5348b1667f295aaeb49094bb5ff49e9c6861bac603e698c36bf81777797d05a1d3c405e37c1a00a4dbb85f262bf02c1b0e16ff04 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.7.tar.bz2=5a38bc1dd227658347114b935ad66e27fab67b8da9529a7f9083d6aac5743c40aea8c33ca95d4f10ed1d56f29bcc2c0747a3e88b87425a5786245792d8851301 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.8.tar.bz2=44e36e4918ab4c354cacdd20be30acf12f060aab808172184251186758f750ce688eef72f39ea110ab6429fbaaa5a792b1915a5c2d845b6e22a3cc4bc851c6b9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.9.tar.bz2=358f12ae2d4e177a080bbcde8b275691418884eae9a42c98161170c7b0f6029ffebf7ffad27961bfc8a50a393796934a2dd2c7f0ad2a35992c35dbd6c8c6349f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.10.tar.bz2=e7e98be6cf658eaab81486360f4d5d22f86805582feee4aa11a8e2fe6b461db69b850c7ea98840af0811910be7f534317ab5887bc48f47a9591b65fa7262feea https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.0.tar.bz2=307ee69b3051fcec2942fce075232a62f6adf6486239a89fab7bd63a9bf068e36371e67a5e42f86ed60e31b8219ff431c2d4bcf519b2c10393504942d2d90a9d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.1.tar.bz2=a0a30a805be9c43cfe52793d103e9f0dc6076d02b0c5af36d650564aa43958164a278958f7a7e1132ee5d3357cdcfaa8d59a4cc0bab027e288d935a44958b743 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.2.tar.bz2=d3218d01a18f5dbcdb65f216469a463215784170d32110f06372fda6325bc17e2c2aec1601a5bf3319ad753b123de056e6bee8aacdd7c64c4859570d40571ec6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.3.tar.bz2=4fb3bc10aa46a85cc37fb041d351b2a8f74d70c3de32fbceefebcd6e757cd8dffdfc86cd14fa6ae7d5273f875e1d4e13e6446b6dd1882c8fb015d1d34ab5ed2a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.4.tar.bz2=a008439e903b1e97eb5a66a88cf72c2e7438b12b78750411ba0ffa496c68beb8cacc2037763be1c8c8841fe9a248d4be0d0976420db0520b4b8456aed5480f3d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.5.tar.bz2=14573495aadfabb81b985aa485c0090a816f459a0db8e790a7d1bd948897cf650fef4e8aad7d2ab8232d2ebf56bf08363730dbbfbc2318625dcab04d3904b3dc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.6.tar.bz2=e915bc10ecd1129d7ed55a12fdefdd6b6fccc281cb3cc0790e5970978f17652068ccd7fdc160608cadc8556abb73a2c187d041899adfcfcb4a311285415145ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.7.tar.bz2=d80b934273b84d7ccc4e17fa07c9e0a0f95cb4a38224bd60ff73772ef7ecb3d1974e686bb10aa319642709e49789c0886f98f4fc1ccc5312a19ca19f03674e7e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.8.tar.bz2=9bf0cc35deab5f53900bc8e8264dc1b57f91a3477f241848df48109f4b5c97f3140470f523fa768a7543c61cdb7a93427866d871d09ebf8060a5cb75ac6d3790 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.9.tar.bz2=0cdefbcc88c5b9d34c08c8871c548772bd473dbaf54738f9855afddae8da5eecda607b36c546077efd0165114da385cd1f296433afe411f57a524fbff0a69291 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.10.tar.bz2=3aed1b12ca46e34fce66ac23bdd97ef815918275d91ca4723f9a6f2a2b93cb2b66f845747951593eaaf078bd0d982e06efa7641fc3e11d141b7605b086f93393 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.0.tar.bz2=ac6a699d5d08b33e7580a24c9357c0c8e8378208fc7385f5582f088a879f61e48a4654d72f03263a1dcf33fb0838b01c8c21fd39c5e2549d683466e0441381d5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.1.tar.bz2=77cb7698c66ccede33f558f6ab9ebe4be3b775a567d1d4dc12fd85d7b0f28d7bd446b18ef48ba1c879dadd76b50540b57f283e9f226e904e620afc3ba6585bae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.2.tar.bz2=9592c8e2fd9266f5d1cc780706f558e15d775cece995f5b6e933c54be7b7f2be2839b28ef1898b2072c5cdce36b830e72f967062ece4393765f8dbc88c6dff88 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.3.tar.bz2=8243575f30eb38409003b0450ddece621a589e29a4ffe219410820bc2afb97b7daec4c81d59d95dcfc83138414a2df707c925f0eb56907d565dac4bbd5a929d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.4.tar.bz2=ae16edab6e55d1b2506c4cb30d836639035a7fc153511125b578d6da8a8b40cd87650855fc6b4cf777c1fa0428c593325af88d9ad25d53acfbde0051a730eaa5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.5.tar.bz2=10f4aff595d12bdb425eb3268c868e0efb92059e6aed8683fefa5abedc1ef21d23a45e17802edd8e5e0924ba1c3277b653c0559ef4ad4c9dd2be2fee17226f8d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.6.tar.bz2=bc352df203155008da7a1099f7f7d26eb9f80e0d2e41c8adec5eb47f976529c6126bccc207563de87ccc2867d1e4c43797efbf295c9a7a4afce002ee19116074 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.7.tar.bz2=d71dc217011d154ef7b33780366bff07e4232ae77321ad6d16f19090f924ed3867c31f2af4aca4ffbc6a536b0320b676716ffb43e34b0323e81eafab13f17fa1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.8.tar.bz2=aae74010426e2a1288280f3611ba6aac842ff573f9b122fda9a4f1c514e09cb3d22281e6957b4acfcc753c94113852e083a9a80d0cae6b33682b83669c475eab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.0.tar.bz2=4a083c168d9facf3346b67dde02d9705109feef6fcd4e3c7c59c2bcb35c83597305e09ee143915fd993799a888d6d9ffffadb386bd57e9477312566dd6164deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.1.tar.bz2=58b30b00156691de2acc5d21d3255029fc3f9f2536e668298ab160d300fa0bf3eb0705aa524c9123ff09d770807cda0154bae012632b7e87120d7538f844560f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.2.tar.bz2=4c3c586765fd5afb55383d16eb9d0e7ffa5b1ff988a2b1d847e3f972a211b2401f035ff6c02d71de558cc161655438727079aafcc8ab80c97e07e16cd7fb1304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.3.tar.bz2=e66a4ca4b95496964ff4d77e36caf0894d913c1116f901c9b589da5a0e388302b64a79ad6acfe7eb1ca5917825bc0f866b482f074f1d5fed96d91e238f7ef454 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.4.tar.bz2=f95eee611be949327224b89942f4344e7d8e075b958ce3418b5874e9b23981113e4fd58254629fa9f6c2fdaf5840d44785ecf5f04433987f8fc4415df5c3e367 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.5.tar.bz2=447b28420be5b19f6b1381d232920e3c20bc894c2e0d1d2e394cc44e7859d02d177ec3ee09ce96e922f55b7fe2651918805f00fb783af3780e5f25c21f330195 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.6.tar.bz2=5f60bde5843fdc0b05bb852a2f1b30ce085dbcf7acaf105d5af951398b845c766113ff3740d44585ce3814b4953c004230eb4dc2ce8746b6236ea4b7a1d1cb10 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.7.tar.bz2=929a03725dba7de8d7eee3fe8987b858b9b9d6d377beee710af5c3e84b02501996444aa7b2c1db458aefc3e765da17cd17ac30fb0b4d77ab1e54239e72fa2a63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.8.tar.bz2=227849b5809072b3aee211125c2aad3e2e4984e9d9b4415dd8c01dbff70eb9c3758c3cf54f2b97fe282f7a42f205a2becf7b86e1e6ebb4a4d048ca32659603e1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.9.tar.bz2=c15a46ba1e89cc41523a21eec90d4e3af5b9739d27c2f2b51047f2c1db832e2773cbc04871a176f71e7124eb3f7b53262e40a1baab87262f8811a8d69d8e5358 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.10.tar.bz2=b83334e272e78995b699de28bff67accfc151cc7fb193d5c5746fcf06087643564b3a0b538cb64f50706642a620dba2cc54191357321852db42cc8c5648270df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.0.tar.bz2=82038a66827fbdaf60f404103b3956ead4e03c999893f0095109e7d853919992cab615f85cd96ba9158402b2de5a68fcbdb8b32e9d07c6f754e0591f72851b40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.1.tar.bz2=31e9f176ba61480b33b7761d2a19119a200ad61c8f85145f736eb196de50babaf278d023b274274c6a31f2173c5d022bb93e0f8d46a88223659d8ebcf6f5e278 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.2.tar.bz2=75d25fa6dc81ce8a62d02adc2e163e7c222c5946116c4880cec19460e2309457ee1a11a8eac94243ee8437514bfbba9ebee939218b6ccc7e5c1f15b673d432e7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.3.tar.bz2=84c93c85aa3733f2ac82e695c19e714ad4afd096edd6abda8a4915311d1f604453fc3fdc290c6ae1f9055d305ef400f8f8f152c5e15eb230baf7cfd5e192b7fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.4.tar.bz2=131b874ac376f42f3427dcbeb0adb0edd18ece834514ff5cc15f3b3e29b8f14697050051224d7ba2b509d428f780c653a4d7101149b8ded41ae373aab871e90a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.5.tar.bz2=f55d2ff7f2eae4d30fbc14226c928d1caff21db1f2cd559d3caeb0c07a7a3f034fa369d95f783e6f38cecb493d99aa1928def9d8574698e3edea3d33515749f4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.6.tar.bz2=06b12b2a1e85248311cf55620499806078b3b67110fb45dad9cb11cbaf1e230ce8a0da23c7de0a5abfccdeada8eb799f038b1a09980ee9572ec415e24fcf8c76 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.7.tar.bz2=49128b7845954f1f04502a484f17d5c0c6ecf8990047f5a383b2752ea9e09839e5994b210c2f60307d44ffa8b440472116fa1231ea899caf639e1b8a72f7f97c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.8.tar.bz2=24290aab4e0d48719659f8c1153d2b08020f17ae845e9ac6d6b6d3203e4a5b19061e907a214e8d4390277584ff4b46dd4a0113c6b201fa37e8a95c42fab5aea5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.9.tar.bz2=c2771d6b12f4240200926b2c40ec1bd3058c9ef213e2c6032e44799fa34b75b00f2564a0f7c0d9f972870d34c7742174310bfe3b15e2742a17ba2fa05e5a27cd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.0.tar.bz2=1be48c38da41f462c23d516f465ed34e2fe90c6fd53ee06f1efc9107077d9937413bee589d5d3384aee5c09da7087fa84864a50089bd1cf3c385ba3399e9b0a2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.1.tar.bz2=b7e1204e0e501312828ca0e30b77434b2d8d94581627196f0195ba93fb10a11046d44942393bd8a261585c564bc721313152a9087aa56b57b433ed14cc7922be https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.2.tar.bz2=e91a187a9e726ed26ddfaf09cc49473c8379545e2265934fcd1a1fa78ba99f9a119fe2c3c8247eab583389c3af7ec40a0e71da19f6ecc17ffc086759cebaaa15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.3.tar.bz2=77d9be5bbcd115131ec7c842a4449729d1515bf2106a6a235472dc96b58a56873c2d0fe6a3b824dd15ad00194b30e72a75813d8b4e10ee11cc793973130e2401 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.4.tar.bz2=a2e5409a1a88557bef747ca9b1ea65ac90e430500a8f9370023b4314cb5d1e0679a1b03761980ab2e933ac3521188e2151e521408e33cb4dde5f0bf802d81a41 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.5.tar.bz2=ed6288a4d81a740d722b43925db8f22f794cc704bf834a1f9c844e2072baceb8938547abb8f4fb1a50f92c34a8616904fc2679a44bf4adec4e78ce00e8456b45 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.6.tar.bz2=08cda5ff00b9297b46d1fb620301066b21240951924337b8b87d27526e55024e61121e51d9b35feea2ac5eed4027658b39ff487195140e7abe9158181c3349af https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.7.tar.bz2=3cc5695814c4ca49b6a0d7790093e85f5a359c5411618a12e60f4bda75c3635b94736762983e287cd04ce3ee3155d824bd9bb202aa929f85387a741d1685dd06 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.8.tar.bz2=91e371298a6dc1083c8b6265cc8d3d388d17a21d59e0103bba7e68640f80bdd12b98547584b1cd0feb7f8dad6ad530ef5660a154075960e1a76061d534609296 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.9.tar.bz2=7e3d0f7f42d644cf4eecfd88801afe088260d5fc8f490895378d5e4ede76b2bd67959b9803db59f7b19287801df43eba920885aa1bcd29f60d225745d67093c0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.10.tar.bz2=64683129da9a476d268ffde06bd7aa1c67b3c7c97b539d856833ffb127f458a55176d8b4a101e60b18ee923485097f3bd98e8216c3092c3d0527f6111cf7a051 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.0.tar.bz2=cada908be34428bc2f302bad6ebd778a2c7a8e979476e00e45c9444b65d7f48f397b838549d56ceb91f0e5593ffd663e9facc4ea5f5c6a4aecda85a5a1136496 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.1.tar.bz2=06cb5f2f0c0941802119dbdf34995446d6d69ee59eed9a5e9d7f9e7f0e14de440a9e77eee330357fa305e81ee39a6868651c740ebc91bb9a2085a74b33685f4c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.2.tar.bz2=23654c65e6e62354857f86098852af0ba50a15643df5e7f6fc8b710e35a3872f6eb7dc1bf9266375361f696d8ded0bcdb9ee9acdc8d0c975955d299292da7e21 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.3.tar.bz2=ac02a93a62c55a2a10dc260cd52749bd8f4bcf1a2d43dad3cfd2e5c0bf7800c51a5b00779526d84f759f6d50ce673c7f3e526392c4ab68322649f4fe980f2ac3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.4.tar.bz2=88651ffa2f1623ca3b93b60a591e828ea0dcfc73daf1eead2629531beef291331f8ed1a4a33d682828ca60bacfdd7fea77bcd67f1a0bdbfa9d1e4f173da53208 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.5.tar.bz2=001486271268cd1d2252f46b32001b25d493bbbc8ce981ecb608eaf8d2c2e6d6361f6d9bf052b9b2d7694e228bc302a1082689f2038564439705fbecc00de1ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.6.tar.bz2=a48c974f341cd10143eacf46a9d0eef45cfca3ed91ebc9f7fcbba73d408408eebc60c55e15dab391bc4a9ada6777e2be3ec4b9e849927c5782f4443a813a6ea9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.7.tar.bz2=b9e99d1df4a772441edf7fa4e05dd5aaa62efcc5a8c89fee68aa80c4bf1d17ad0e5ecae5682a10d2eb0ff78ee79c583f0cec46f5ac11ae874126082b9f8d76e4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.0-preview1.tar.bz2=8fe71fdb37955b031769359dadc5062b6c15e0618fd8961c932212a6a2610829aba8b1dbdcf4bdcc2e133665e043b29088f714874e3ef3a41d688b7beba78928 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.0.tar.bz2=c51f55af33e09ed425715dae0dd59dfa253e909bbd44b4bf3dc34452656438c23a754f6b2ccf0a3e878463519043361dc7ad8a757c87a3ae0e747599547dc7cc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.1.tar.bz2=fd09a4d721388c2b9f2fd09b68175dbd620e11df02ff7cea4e438d3205494a9883c25def06d6c1ae4207e7f82bc48fdd122fe12630bb9af9da451ce6be19d86a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.2.tar.bz2=2ade19f26f6e2eaf65a8ac3e9ca21cc8fe04252df58f9b14c6d0f92aba3c0eff27b1c68b1b05041496c367051e020dca7b0c64bf44fb07b4fbdee9e68b78fdf7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.3.tar.bz2=11d81f71ec3d293916bd6a00d28dfbcc93e721d12c6137fd58febb79e7399f8fd1ab5a66915863311db9539009dac06612a4b2daf0408fc1f1e84db8f8f4fdb8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.4.tar.bz2=bff3db8c69e85d503bb0686644f2d60b97c599e0cacbdb7cd4b18d630c50d04ed0dd90ea97be01c3b3220589abefc1e4dbef39246860e3c70993f0f2de738053 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.5.tar.bz2=32f69f0e33f7f7d41f4c0e5c5a1cd859a4c6032b0978c317ec3d333da42047b7f8f8dee9c4d72afe890b47b9f17901139142cfbbf228018d8ab5d02f7a01f0a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.0.tar.bz2=f7fb515855de32badd6e5ebbb03980312144b69dd8b696fb56320981e4f0964065cd13853a34dd321fca1ab160510dee8fc3b6c99f2a5e007e6974d70a564db5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.1.tar.bz2=de183d962dd4a8c95bea54f8740cc34931c2d856783fe7506f0252c5c71bb7125db00c9c7eaf8e80f8fa1c97208ba4b2a4d6c1a76e38d2b6251a92166749fb37 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.2.tar.bz2=7589f0292f72a2217e5024b51791f9a719ff0862bf39480f1460b5106f1c11172c72ccc1fe2a00b166d80610d76fcbefe64b7c9df0ed3a72c58964c2402982c0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.3.tar.bz2=d79cbc4812ebe9b308a145e96f6e7f64c2692b04370ecba0bcbaae5427afcc7e57ee83b4537914b6b90494fd45a11bbf2b27999a7a74c7fd569687a93c43961f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.2.0.tar.bz2=2d11ad1c89c1ce9873dcdc87c41cf38105b00e265277a173d721fce4bd350af73caf01fa4a5797e926f1a0cb180f1c6e969149d1d524c4df797939cdbbe9657f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.2.1.tar.bz2=cbfe8a92e732675ca1f7d51c04775dfdedec1b9f21b3b7f0760ef61b7c375cc4b0758a17302242087b55faac7c3f1217fab0f6a2e713a05dac082cd6a5d5df3c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.0.tar.bz2=172189c66b3c721e7413f0088f50e4eb8dd80d87779c3a4e74231f7036eeaacb8e373b7f5ff017f8aa274c1e1c872066f2f93485a2a369a7e9b442d157840bf2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.1.tar.bz2=829fcc1a3d878ee28e89a58a2f6d4221cec115d241a007b048953672d57548002c3a105ea4e65e344137091baaf5d5c54232a54c116afe03d0f3d61c07547c2c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.2.tar.bz2=ec2e7bd32e2d574773486e1c1d733611465765cf14895fa6b017b6ed6301ef40cd062496a3926788851e7ff3bdd62b488d03385aeacc66bed53aed18a6dec225 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.3.tar.bz2=79f822725d4e3bb7daf416e736d87f3b01c21d011423a2b3c65d9019a47ad4df256fd4a1f171961267ab8f20387019fec8f3f4ebfb6664f682bdf36914f6a329 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.4.tar.bz2=aba571bed773554b18863e6b942f2bca743729834657689a016938a34b7e4352e68d9fffc440b2fd4fcdd1bed4d1ba5dde689da535088d7ff8ae7dc364ac3b2a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.5.tar.bz2=0e46655028859f5abb64d71a5585db638d00edb9d20a487739d307bc1dfa2fca4ad196e04044dceab0e279286379e73110590c772a06786214c4eb23557324f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.6.tar.bz2=177e9f0a193f9dc45f8653306cf6a87bffba16780220fedbd8be67a3608a8f8d370011f3993590d58805a8ea4833d95196385fede4b513d908fd4263a82f113b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.7.tar.bz2=88bfad0d6258372d4e9739613a07352e954db3deb43c0e2d2a176f9cf55bc5e2df73e4cb04bda75e2dbb210799649f020a7284cd2acb5fb92d2b115a933a4f03 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.8.tar.bz2=3710f83ed7f3f30c9b5d3dd515c168534d01811cd33f20d3a54e654dfb5140afc8198f46dd823ac45072a83d844ad866af1e2b8265f54f9997356be88fa254a6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.9.tar.bz2=078ce0d7433e63d947fe4cb0cd5a14e6f5fca00b7309d7288359ed90989dbf618bd8c1f5f31b607f3ad6b0cf540d715dec2c38cfbf71cd170e572321598bde7e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.10.tar.bz2=f97f877f7afa604dfa7e8f1b399a4c034e79b616c95bd4e48927d88d1e8adf8e203901fa178f93c6af4511d26a38e2d8cced7225c2e75457bb02dc27b8feedad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.0.tar.bz2=ad619ccf77132166151e4982996e93135fb91d97701ef9aea12b6bd05e18e585dc4d5fc34883b3369ebba15474741db238fb90192eb273dd5428864429525d9b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.1.tar.bz2=9094c9bbda4c3d830382e89e4e1c24fe43cebd9d733b6878a43a34d679092bdb6c7b23cb3cc08d4efc6e15449c68862799713006703f95e2862bad1c0b0bb94a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.2.tar.bz2=54c8fc2f2a99f834292b83ef8e68e2b120f20fc4ff74856c13137065b95262f62188ed5c6ffea8fc4b0c1034d9f8a1b497878d6a581391d422994911f5fcb35d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.3.tar.bz2=b26daf1825cbc9cbe51e1abea84f3aae542beec7c26628201325026b4d4bdeeb46f8053a1c105973242ef532e66bd4eda5199dc1aa4faba1a6393f9cc126d856 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.4.tar.bz2=e5718fb13f2fe7f6b34fbc2b1a6db95576fcf9cbed481fea59fd4dd28d064104a912a1000533810221141ec09e9fd8d1e59850ae5a26ae441bb6d8878f42c418 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.5.tar.bz2=71ae2c5bac04a97694310daf76e896a1a02c245274e9c96ca96740f78a0e245302564bce757f1688d3e83b7c0c88989f702814c434101f8df786c1276a4f5a2d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.6.tar.bz2=1693ebd7cd3a452f51ce2ef32144aa36f6fa8121ec68cd0fff715db8981214ea9fc729099e4495e1e8bc346409551d4b93c6c3803fe187fc0c25360b80caab72 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.7.tar.bz2=53b05c51b970a239fab953dcf3bb433f59465fa0b4dfe58066132a1bf6247cbe4adcafe41b219ba453ea392f88a521349df14d58a91a855c53c9b9ba4cc16c4c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.8.tar.bz2=b9b0d99e590a48ceedbd1d6318c29b8fecc12b02ce5a6f1555593eb1b3e284c766f2f8800ee3070fb7a041593e4a3806d53590be760381268ef0f9588e127b08 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.0.tar.bz2=90491968190f4809fefb4068fcc37fb7e2ef179454f57c90bf2af308541f1ec175a72ded53202c1e86dbb63cb6b47678656f753574bf6ba525e982f3278a7602 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.1.tar.bz2=7f9ce1b6872352a6feb539948d26dbdfefb3d4225ba582ef8730be8fd85d5c350bd6f21346d43cfe26a8501c4ad145d733d94da5dbf25b15e7610ca037ad4227 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.2.tar.bz2=8544797f46d54cc4098227809561023bb7bd01eb2330724a94921c5a79ac64b44bd56069d7a77a3e6d2d3dbc504ec25157daf7fdf921c3acb3b4289ce1bbfb5c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.3.tar.bz2=fe086aad84ac7fe8009ea2bc16f0ccb7c60a5fc9034690af38fce1a05582a6226dc3d7b80d08d1952d03a9abcebd7b361f5fa2d506d71e1f5aae9b5f31ac22af https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.4.tar.bz2=ce06ce97ea1554972b00781332f126e767a3ab98f5023d3dc83195bb36b954b1b497961c74bf31340827d9a5de2e0bb34240accbadad550b2e692d26cb097d4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.5.tar.bz2=6fa248065a48cebd1e9950ae07f3e653b3e29e369fdd914908be0b215257fa2766b0182e392fb869af51cd498e258435f6d9b45a03452356dc08da0e96877ae4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.6.tar.bz2=ce912342033f395ba6298051b081c89832f656d61ecf2064e9568692552a938599c816d2cd1fd1f9bee721611f890b8329985c69f4d5b2bdbfa6635b48afe3b1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.0.tar.bz2=cbfc7a1cddff0385187a7bf2eb9dc71a8d14912cbbe4e9529b79414e49e681302ac9009b7c8e6fcf92a9f19a0ca5053a6ed25edfdb510e3e4e247474d471c58c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.1.tar.bz2=29b99b3e04325ceca89b64c7846aeadb412215270f6f7c390fb1e275ebe19b2faef811778c0615b2d4720ddd942a2cc209c72e623f559e6c04e78849cc1c1b1e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.2.tar.bz2=f67ab3ac13ae90622fb3664a869b0c584b97df0500384a28bda9c5c36cf2a27ac1f66afafea08bb29bbfbfc1e0ddc444427993ff4163987f5510c4158a90a96d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-3.0.0-preview1.tar.bz2=aaeeafee545dd1ba1c4df5b7e46e82f7e89e0dcf4fb10677b7e177e66f86e6825e85fa5ae3e74062363883768b3485495a3378f97693d45f675a6e547e989cba https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.0.tar.bz2=3e78b2a73167c3680aebb1ed015c583d4f6c58804d3b272253bee2cef37fd2d1cb3852fd2b408f4af1abca17725d923a1f28d40d2a33896e5cc21c4c6711d7ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.1.tar.bz2=14e7962e180b9ae16607347ba5360b9ec086eb8055b88d2f60b1c9284fafd93fea905aceb441f07d594a34b53647520f9dec38e4e9f6ad3e5a6850750d981a27 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.2.tar.bz2=5b7d88d4405cd45a6a720295cb0b7d3152dd757aac996c8d1a576c6ab2a45cf9ed0b0ac006423791cb038a14153048e96308ecc8ba1e761d4b7671dd6f880d15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.3.tar.bz2=320734a124e26de068457237b5f973278286d7e529e92405c1b856b6e57441b5e76c59d0f519fe43fbdd2c8c48c9dd37dc5094831c0e6a81d804e88888ab6237 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.4.tar.bz2=ca34ccbfc24adc4b2c6c5c0e3b27bd2754c2c5be61e9dfa7b919b4902174e351f45128d887c179c37ccd5163a7f51c213fae96be4d0c356e2d7f96acdd4f164b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.5.tar.bz2=fabb151c29ad7ef7432efd4d51ea1e20180006601617ba896f8b1379555f4088d398e96f7bddd7c9815b266acf5ea94527ef4acfad2446950da6fabc3770f788 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.6.tar.bz2=2728c38987d41169b7110fce2b507b5d3e971d5b043b60c9a3b8d6d385ec2a40d24e464f6cf081844282d6b9fadd4abce670e79f02e4606bdd5aeacd1b57f773 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.7.tar.bz2=f98f4dacd9d8c6c9515ddc2597da8b868c66897577cc5a76819db742f3649881ef5a7f85a880f1e359772b1ab08750dda6fa74ee826938e06b93a9848699b929 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.8.tar.bz2=47fb4b41e60b1e536b3a54e18e9ee92aefee7eef92d49716b46884b2a3d73a02e88e4815df64baedebff80e9e17ac7b0af6e65b406a2c53a4f90421dbc948415 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.9.tar.bz2=c81ad5e16aa18beb7c34eeee68ffa96da243f99ff69cf00932ad5ebe427c1f80e3f7fee31b15ec0d96c1be5c2007dfa6e96c38114f61e958c6b7ecc40270db4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.10.tar.bz2=856210b3eb2bf338c5da2668e830b95d48feb82c1c4407371b18c772df12878703a9eec948a2778acd098bcc8eb402ba6d57b2b935766847f3e652c3dadaf6f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.0.tar.bz2=6ea5e6338319e5d6861d420b10f93b5e6634a9925380c61acfbb258b6609ada76bf2a6b474b53a30b0a81f0dd81cfdd1e610b68698df73f69091f479ad39bc63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.1.tar.bz2=8e8e4ef137b9394ee34b760dbeaf4d23953bec083e5775a423ef6c16b75faf8bdfe99df975ab6b6d762509536b017f3510a9a5e9ab63060208edd4d2d96371eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.2.tar.bz2=756c9ecbe3c9801a0a364143478903318c524f7aba026239a1fb42d7390f74110805543a9ac2a9f8bbbeaee48bc867fd15d400d8bd46576bf4fd417d6136a3b2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.3.tar.bz2=594ff95e33d0f7af7be448a781ac68f895f8344ebb1c9a03898813baa5963024aa84b11baa405fa584070e4195fbfda9b908f1fe171f75f19e5e1d7879bdaaf9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.4.tar.bz2=a9703c6edcfa2ddb87bb73c070d963fc4d59599919865be9b1d93989906698c6f3b9c4fd7f2d597e5d710276555de0b5865676b92aa3aba1f1f41be4052bedc1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.5.tar.bz2=dbd91cccc0a00a1ca7e901d56f9840e62e4f139ff4dbae530169f41897d06523c7e8977138ffc6212e1b60589f3091a4e2f6b6714c0fad22fa65e442b248f61e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.6.tar.bz2=ec967415b5bec95154cd9ff8338a602a6d005fa647afb1e1cff54a0fd4e9c0697b9e952c2dfd8e4b30068a697f5391b9cd165d5d33f3b146fe35f2a8fdf9823c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.7.tar.bz2=b8786ef31db7d950b1309646f81e6a99d56b76223bb8d2d20ae045f09917332a869b14cee1bf235675c7d8eebc6942b5ebd6cf0cbd290ea75d9f9be1475352f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.8.tar.bz2=4d949a715a04cd45f6817b1b26093f7bbf03ca630aaa015972e7d0ca72bae094add18664e1489ebf8ade27c160d2fbcebdb105701d719461af13c4d5fcf2cd22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.9.tar.bz2=ec6cd8bd90ee99aa6470d9d524d89531f96f992efab8a9d6a709a3959ef4c314828276e67b84ed97d415cb3e0c837458d13732dc940c93d4d069d9b881d7f92c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.10.tar.bz2=1f60cae30581e3467c7ec07391de5045f238b61a49661ef0cf76d72ef78d220b7ae70b86b1e72625cf37085b6507fb1dfccfbe5554195f0c6eefaa996e199c16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.0.tar.bz2=343f5dd6703b6b58d61fabefc8a50ce5d02d98c32c8b4e52b8deacc9824369a9f0dc8faff69e90ca7585a194a4d742791765b16c3f5e2417b0f54e0e6f6220b4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.1.tar.bz2=aaf7f9e30b3998b8586764f61d09e434c32aba7479aa79fb6afa71ab11c067384ef3a4b9215a1a3639da807f4f642b9efc62b37b55e989b7ed7d75cedc7cab40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.2.tar.bz2=b834ef95d52abc1f0c224193391bded9b4d2089c694378dd5aa45f8b2b1ea41b1c300445f766841cbb8cdb1114491ffe0095f518e1600746f5f583dd0cff9c1f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.3.tar.bz2=9df5ba9423e0a8af9d825e59f8c69889c70af0f6d67f96708a02d7d61260c83474e2f7b2f240af399911bdfc56850255b4f34554f7013d0417a13bb782403aa4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.4.tar.bz2=1d4b55a6a34249e82880fbacfc1d97a093600005deb982c6b42ccb14bbd7bf1db14e0f6d73bc25f1addd72378850f7edcd63738f2b3cbab569e34e89d563188d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.5.tar.bz2=29a76dbb28d5b63ee0ce64cc2e7d022118350a550d3693b8e38d559bbc4f42fdb6b63af4bcc4ebfffc5c0fbabbf2e18db7228e655de3bb416e344a61737870c7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.6.tar.bz2=122322fb462f8fdcb065e6f9d9968027c320ba9be9ad6fba9011760a7296cec1892a0780d7436903cb7763f5d18cce11860c5c7fce82890eaa139a94d5e89428 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.7.tar.bz2=0c17f52a74b73041c588ed76f73862d179d7b9abf9de61279dc74ba7b7f170179e0db5672a403dcc209b6dec9a865a88a382f5df01f5e6ba4cfe0f66232b4a15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.8.tar.bz2=1a30bbda34fee311762a2f05ac7fbcfb4f373f8840f86b9762b0c07f1cd397e3eb3be83210221384333b625a243c7161ef4f368602a613760391265309e4f304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.0.tar.bz2=edf31b2dd02208c96be25c2f4f7d35e2b122e5d327133545e16038836b848b90f81079be4df47c5493bf4ead1d464fa72a8d0d405bb2509ab0db6335c58ff793 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.1.tar.bz2=91cc7a9cf493c7361f3d507cdbb8e258b7dd710100cca8053b77569c07c04fbc2f72fdceb9fd9a3a5d01f4c423a206da97730c356d017157bc2454041e1f1fd4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.2.tar.bz2=8ea603a27560ddde5fc639b86381a303f886ce80384d8edd0e7bc806f10649760d75a76dd5f2ee445371254e727544ec12df49d7fc8876890b73237f4eecea1c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.3.tar.bz2=c42f24668695be5c291836ae6f39b4366e0357c9bb63cf8be2ad36cefe0c6d19cb921a43159d49d4d062dccc15902ec1698a1a6842d13ccaec45c6cb628da4b7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.4.tar.bz2=3ac89131407faefde80bf2e1bed4baa51c371ab4bffc18c8dcf2624f4d1068c9f933eb66486a2bc7c6c67f674c5bd06747bddfe1f1f9dcd939458a08e1bc6108 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.5.tar.bz2=8ca9a9387b8cb434828fa36e5886bc8a28d70fa46d3e20df60389880477fa2ee54fe63c0c14611a2cb0168ef1149d205640c6003e6a507400ad5fc34fa641bd2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.6.tar.bz2=52795cd7d112ff437adf603f58130ce539209628d2224a685d060d67a07325717981fc6f91736d4abfe014ccc8057bb40a097fcf85f5046aabde0019d08bef16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.7.tar.bz2=bc179a31c746ac6e632ce08f57a8f403d4e463ad72285c0ce008d7fa39b88a22be3a43014c9eb019f6a39d022f9448ef151a8d03e89a4d2e767c4f77684e3750 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.8.tar.bz2=d693e3a800c2200c74b24c207425f41cef206a0b3f20625d18b1590e9891f409d6643ee0e7ab8fdb6e1e85de6fea52c6a307bf8f65324ee0f9ac33306ed1e876 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.9.tar.bz2=4b6cab99f6b7be7705efa5eb6f321b5eeb1d1c6e96d4113bf96b57378aaa4950b39f40ad555f630f17d216d235972f028617ea43c28b1970772ffd16be3d9a67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.10.tar.bz2=40bd90d231fcedbe34ec9963eb59645fdd1036b03056b9b8fa3b56900deb86d94e2a256f90e6aed297288d6797857a3ef9fc27bc6ed05c017b5c8e8ddc465df1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.0.tar.bz2=c1df39ae526da7ebf87510017d7694e6f78c59871baac4e9c5f2d13c22cbecc30925e2783ad93f741110b7c3802e9f25a6c3ff85160b33a4080b0f1fb02f7740 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.1.tar.bz2=930f6f7f654fa14076c84365fbc771d5b09679588c4c478d8f6944770c53fdd37213bdad159fd231efbc079b85ab7ab648b0a97fafd666c38d0e280046c6e2ef https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.2.tar.bz2=cb62ca82d57dfc0e21e532d4b523f49c559c4ed5f3d73adbd9d650bbf23c694d382f3cc25eed6a8630f23e4780db127b4b8b6ecf6fc24b0f6febc820dbc6af3e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.3.tar.bz2=708209a89a18cd99c02392307d2bc63e46bd38c72c8ab0e982b28285f8e006d4ed77e04da3900c880eff01c3350033cd00ffc3be1d3a12c4ee5b263282f0dd05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.4.tar.bz2=c94f5b3129ff41da1b07da1cf742592e9822febf6bcfd0e9eb7145c00b732fc66625056bddc72fe9b631742c70d0e731cc6a9a16a089c7b559ae963b072578eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.5.tar.bz2=b4d20f79eebc5496768fc6adb0735c6a23cffbb39ceaf9c2da42851ff7842dd2318c07877d89564176d206e22b8824d2a3c637b5ef02c5caed0b2b5276581032 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.6.tar.bz2=a09ab93c3d6936d30065236ff2abbd0295988a9359f5a76425cecab47af0ca5b6829530d1708e9ddc9e78d1fbb7c0359b9c7e90227870537d099ccc89c73844b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.7.tar.bz2=f6086c879f8737eaf6eef4461d23270e9e43811186a22f35ed69a8303eb933136e7a690bce2d9e18bcff730725292075e09db0f2384d0e26018b7f2a0df70b32 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.8.tar.bz2=62c631026560ee310a849483f1b48690075477942ce86e0564e92f5ca7834553c435a35a1d6d8dd957c3a7be24c63c32104518995eb3a96e61066a04887bb0d6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.9.tar.bz2=0f10741772d2498167c1eb2aa263292f99748518a4ec03dc19440eb5befa075fa69e68b08a09af6eb2e02e462ff20ab10e4121cfeea7bdc938c04762d81fbc4a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.0.tar.bz2=908132a47bd996f8c76bed54078e71abb154294f97dcba779b4cf0d3b82e31c4635dff89e97d5f6b4f1d797d854c6d020afdf9dc77b10c0e522755fa194a17c3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.1.tar.bz2=39c867ac0af48410c0bc6b01f1ecac00616a59cc07f3f5a3e7cfe8f786b70c7cacab65550dfee777d11b8b7a3ac173bb22c602df370eef6a04b40f8e539025ae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.2.tar.bz2=2f04566f6d778121281bc6ba23ec57ad408049e649b351585bc9a3184848c71873910e159f7fd3909c7372378152f5ed264070aefd45933b97980e80f6df4deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.3.tar.bz2=940375b11c525e3f0bf00e19013eeb886bf85b8d8b66d86d53740170b0ae16b14faa491dbcbec29238f875f84204cb0d52ade17c180d71e129cef5254f338f0c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.4.tar.bz2=1c9d41d7ab7bd69d7e3baa3c4149b1938cc147beb2a63923dadf2fd959732c8cc824e2add0946bcd62f44b0e1d509b80b4796a5929841cda8d28f3a8207b17df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar.bz2=f47443a53e3008cb7b7b7afcbbf1adf44887769e42b3defafceacc1e50e349c9000b98010f853c6b7cafdb54b85b640732a56a8e11ad8e58fedb5fa4724f68d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=fc1c9a08c48ad91edb4afcac5244f386d63940fa906dadaabe02a1eb025375443c8174a6ad1acd50f4583d6c57a88feae86e697ec15c8a25bb49f280b1357783 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=aa611f7c350374d2c5c8652a694022e038cb5a65fde795c43e927067f155d0ccb368b281b1575e679b84cd7ba6042216dc28149e138256faf62dd3060ec0a6a7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=ab04071b90ddb81b68f064fbc9f2bf726729220e4359113556d9b71f3549483f122b796b3b1e4dc8404e6f44a4bdd02e9db2c8066974acf190448c4d5a97dc6b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c769fd3814bf31728b83f2bcdaf0928e6423150609f3db903631f9db68ce0a0f9c87bfce5f93983cd962662148a66cc55f5f42bffc1a1b5a237e6938726629ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=c231f8ecd46760db49796519645bcb5cc9fa1c0582abbc419a2ca81805c81fe8912dc32dcc2c5192ca9ef0d502da8f61ce1ce7ecc87b29edad3a144a8a0c200e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=b41557c83084c8e5bb263aa944499932ce7d84457e4e307f1cffecf62aa44f8543a06299e38fee17ba64f8952048612f9289e24c35acfe2ba02b913c15dc1405 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=001d10af5833a03b42d9a254bde844731d3a796d98ce2efea90fc68e4638c7cc3be31a34fa163d4c5ac18c60e685e5cf2ccf88fac46ae6bc587a48ea35cfb09b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=0a8681afc19372ccd9409bb017967f86c2e6642e083ca47ec904cccc34242040f710392d916a69a327ae6a0bb287d97bc05bbe116a1d93478ae282b32e5fcfab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=e505ff2f00334870d07f4ec9348648b7f3b91dbbad1fddb2f60f7a38572a66a7bf081fc7b386f800d86113aac1ce3cb739c86cf0d6da2bab916a4432ad557c54 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=aee6000ac886cdd4e4044a7b43ab20d54d1e99f6b893af69d0d7e7a202f4ae861f939898580c60996b0bb7c6481eecad69a20acc83c75cc594dfbfde3a22c476 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=86f4e6948eaf2586e018570f09232b94f907766590eb75f00992531ef74676070ac5a2308e121ecc1c23388ece4dbe1ee8a4b2a7ab99ca00a28d6583d6df3d0a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=1bf867b0af84eae4e7996047727fbc7ef459afd3b2ca5885f658a74d62910d00eecddbf0c11b23265c625c26b420421ca5add40079438edca8eacd8b5c0149a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=92a3b217079f9d960cc4fbb5908f7fc7ef71cc3ec8e5e404341e2b8875534c0542167d03b61577776e0b0f049f9ba2e3235842be381b4d484845768adaa6e3f7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=608f0f9eafd72226fd1b39f6c92d0f1c6d3aa7ede096cc390fc4f8bee4326b0937767bc6de84fff536dea48cbf9bdb8ef5598670235e013ccd630b06c5b8fb05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=40cccacc66cc4b7891b01c35375ca913efe008157ae540308b649e14f5753f34f1827861c6e16b500c49ac95e1aa22e1c01444faca5dce71f981452a9e0f1b67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=5a33d600e55f7b8755725d7e2f2102cd76720d524d7b378d85fc21ea8d853166dd97e2e615ab18f9e44122e3404b439dd123f8e23d6ade5328982fe72db2af0b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=37e3a4011b3603807c6e0fd48818b256caf272b3720ee654f38c0ae202cffa21600f9cc751b5335b57905ce67db185b37f548ac9c84d6acfc567f0ef4866635f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=6648c1b6bd962e30e89eacdb6130b1788ccdf6ed05ea13eac32eefc222438a298de8121937262851cf5c4cdcc1a804d5d8bf19667819db6599bfcf79e57b0e17 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=ac690170a6801fd741efb88e67961c0c3d717029b3bd9c6e243074799641c940416fc9cde7b4ba2c56e79551d6cb7fe5f7977649404da0d20d1819d7d3ce0bd3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=e6edfed2dd9d6649c47b1dc1b102f933f76a148e6dd8441add2316073dd255cac851e972366e4821fcd665e55b375fac757d189b7552baaa0b49e82349c71b77 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=69c4895076690037199f2a9b98e622f6b5e3c23ea02de79bcade6193da2b1b88ed0c28006059f4ecc502298442275e7e7324232de04a2f0ce430665057410a05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=175777563303c6d6a04393938ffa7e36e0bc6db33f7d2cf1d42ec852b41ea26dd7d50569eee4cb00497e6bceae95592365ea6718a35451e5c929d8a085aa9649 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=b668f0cd853615fec38253b264115ef0fedd21a7879a663ba844f4c3fa8b87e5ccd8adffbaa12ffa3aa16b108a2a439cecf827e7d8e19ec8041d46e758abc391 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=2039b1fcf55cca35ed3c8446eea45819368016ec1a05a5fd4c6a761b54f5cd56cb3301d5d2674af1ff75bda41eba41b7156e71ac48b88ca7a6474f0e944efd89 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=b4bb324a53c316da488c5f60803933eade9ad5c59a6d58e76787d2dd89dc2d2f18016d2ac4ab0853a40976b4beab70864a9c2d23de194bcd63ad089b2159fa7a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=3a9b5868d707d6a4580a44ab7504cb46a2713f78918142b185f0d62c5b7e0dfebc1ff551b2a52e9726befb70abbde867d2802345a01fd3e4568b9f58ac83c168 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=39007e736b28ca599ea244bf4e54b52e86597c950c0ebd8f1696a02c8eef575a734d089b52c7013d00c02aeb261dd7e2facb45f24b34c75c4bbf14cb8bdc3ae2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=0fc4e39f7382c29fa2119119a78040c611fc8298bd4765025599d3018775cb2bb28f51d38efd4306e9f04eeea20e7c2365f2fbba1233e0494a8258c3c184278a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=5dfbcefa70f5b81887d34e776713bb9c6f7bcecbda8f1c9561daa3e235c725417ab0a930f594303723f226d36306e6a73f228abfa3533280659ab387708182da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=00936db899bca33dfa8d0e6ffd4bd6b0453ad5823a450e50e3a055ea696dcf94b317357732e26208a6f34224c33a8b4a6130e5613262d62381179a52cc8f3a1d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=15b816d190fd58382a2f6f6e087f358b54003f186462abf59dbef545af9044a2b9c65576119185adc6bfd9ebcdb49f03a2a268eed4fb0f0d37aa35fa18adc1fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=3a481c35668be459688a66e4e480e11b4e58c13aecc3751da9de8a3e3282bb4a152128528a804742aa0b4380eb537b666a2b29fd79be0d6968c4ff1fa428eb7b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=c604871b39f396c539c52dd4849d1d42f37530003601f60162860efc777c85e7e1a1ee88a77cfc9ca8ca20f0448a5dde4f39cbdae67470d8d2d283d6fbbf0239 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=12042b5c30179da275fcb6155142ff2787e86cf577caef44b7c4d8175ac671cd461814e9a19f4c9b1e78bbdf041fdd06bd463aa972e194caa91e80778a56bce0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=2bf1c13616b2e255b8c269bcb2f979a45009c079ffdcb10a13e238e5d13b0978e8a974bdc1e7bf8519e15264ed5f577cc8f85a5861b3ea3a4589eb78138a3f2f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=2e7876c8c8a1f4e3cd1913023c564d9e74972ce427e85765bbe9ddf237285d7b96017c1ed17868eb912509881e05aaf96e4a6b353a69989e61c733b346511715 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=06de4f6f2761bc58d94659f826c7c86be50192b7dfdb5c8b6710b384a50299ad161309e2a8c333fa5249d0e7112f74dd0c0b0faa2950a6e74bdba68833f68702 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=597374487d196abdfb389c79d7d09b81026fe3e8043f8811497646eaf47bfa432cfb96e2af9be1a35ad2d05f2f5c800afa3f9e5adb0ea2b2d31812d219232a00 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=ba56050ce3fdbb9117c6c9e767f818ce3d467030713b7693ebb039f6888bd5d7e5f7b1986ed117414037e56e550707c3625a88bfd5d00d7319d0c7ad642fc811 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=395facf2f7a15eecc94e554a60d87c269ba70c5063b24b7bc504f579c0d12a7d858eb0b98c502016ff8bf02aaf11ef765e2291b542759fc96affa186206ffe4f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=d1d527b2e95e3a16f521214c5352bcb379b946e8be1a943da872aff0ab4b8edd93a507d693abd7a8ef1cd5ea1ee6e6bf1f838683f5a447a6cb7992de61f744ad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=e47a50392c4f3ee13a565103e0c5f9474ba0a8f5ff60fc9fe7d290b7f5f9a9ddec962fcbb103a8d3b9c7765a28ba59237975f90aa3637a06a128802ede28b3da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=77fdbe62d1694732a7307c29b4f45d0dcab7e8a729f04f45b216345336c5820715bf3f8f7cab52175c4ca1a431d867c7feef7d802dec61c2cffa4abfa8746e90 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=24da0cfc93ac536c505dfaf2dbddc7b312a3cc5c72a9f47e28b3bba760a53b584422b73da8546ca01cc44d3906a31eed7f27a3dfc0bb574f01f9c08f7c589d20 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=aee8267c4855e95a55b7ab858ca6359d635049743b8e38d34ad1430522a0cd746cd572e77884f7e10af14a731ccd8ebb9cad6ea035b0fca4ae534913a38f43f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=ba3e66bd3dde28e7193b90c44194cf7732d294e592321c482deb3b31ddd9655630f5b04aa89a43eb9d1bc222da10884e9da332bc9da78e9e1b655300db52a444 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1df8a2ad9256985b4ffb3da5b545af4160ccebdd8265711d1b642cd2285a004a42cc2ea51ce3ee78854e599f5196c66448b8e0b043846ef6e6bf992828aefb6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=cc460b3d17d460abec27d77f734e1c1e7a649769c3374f02d32a4ad00f989ff3150dab926a203b209c92475100667dd524774fc37633d71f98737ea2d8868968 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.2.6.tar.bz2=335cddbfcf26c82cf9bf9c7ec6637c1c3e30e1b10d00553f5dcc60822d40b560e412d404fa65faefbd1c9022a2d7f0e4d93c25d054681d109c7cdb5968989005 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.3.6.tar.bz2=5531048adec175ad23e3bb050ba6295352cfe17ce27203c356145008434107831186a09c00ff158f4ce9109776f381661f3047e828a177906a52143096249dbc jruby-bin-1.7.0.tar.gz=1e466a3f8d52b553c9def09827fda4b8433576b0262c40ee505602754521a00defd821d5ead5052be52baf281c6cb080fd03a8b15c628a0ee67b4e417633e5e2 jruby-bin-1.7.1.tar.gz=ef28381ca30664cf450f9d3df9927530db771d30e86ebcf535af38e1a7e26724ae2bcfe8487cd2eb349bf609a733a25528aae14beab4d13d298b5604ac7353cc jruby-bin-1.7.2.tar.gz=8155c81eea6743951db7383bd9f6b1750614927c9c0b25a6574f6d64898bb3ada2f626c6e0df6c5486561a03cc7d472fc12fe804ce66a3972d2fe02e3f407100 jruby-bin-1.7.3.tar.gz=1d19be25bf4a7dbb0edad71008704377893d3967aa4204a0d59d6883aa04462ef6798c64d0c0fdd3f5129c16ccb42e8507f3fef38ed56054bf6e689de745935a jruby-bin-1.7.4.tar.gz=d7c0ee0316c50ae5413757e956c18ca68e9d99a25cf85be978da0787c13b8978d4ff2712a3effa564cfdf07144be4a56a0cb8acc794a01f43264fe8baeb125e5 jruby-bin-1.7.5.tar.gz=a4984591a3809330b93f4ce79fd1b9c24360f89d88a03bbc76351be623893c4bfc6441375bbea452ba4f24ca8b9357e03ac938fd6c065b3e2348c0f896b22a1b jruby-bin-1.7.6.tar.gz=98600a2d46bfce14111c7eebc62716352a4b685043afdd696b8fe51c6b205eb9569fc2860423a653b842b173198c76c59767156aa48e0d23482dff3358d884f3 jruby-bin-1.7.7.tar.gz=71da2e72c65899216fa15ec568b51aa7004e2ed7dff99ca376b332d3692c83a674c688dc21ee04d177a3961a2bb3973714509d88cc14d0ba9f79c864c6258a06 jruby-bin-1.7.8.tar.gz=42d54243653ec260abdafecce1143161be63fcc38a80f71ab70fcece4bf91545a2b12ed2319f9fd6f6b41916c398a9a8e89e7f0389f59da56f2739665e74522d jruby-bin-1.7.9.tar.gz=f519f53b1d9f57cfe28982ad70b892dc6fc20fe6601d98d65a1dca9f617a0eb8fff74d0fd82ddb858fe105d05ca7c7bbf3a987677ae0363caa2981bea358c096 jruby-bin-1.7.10.tar.gz=160b701f2f500dfab64beb635e5c4dc57760dd422d0fffe8d3cf8d84ee6ea17a877ef77a0087b4888ea9db64ce7750de01a73a51530aa6666a2efdcdccdb89e0 jruby-bin-1.7.11.tar.gz=a53b0fa327b98344cb4a8aad1ba537ddacb709a0e173b1e32656de8a610cb9896e9a4554d54d0d01d2361f8ff1539a0e2ee01308f670df2004225231b704065c jruby-bin-1.7.12.tar.gz=bf2be8a37b53d38c75712a6331f96b999fa6b0e87f453fac7b9d11eeb1b66098ea0778172f1a6a84345e1881f05d63012e28d4068a0bd31122bf2473bbdae5bf jruby-bin-1.7.14.tar.gz=f14e658da7f2abd469edcfd657dbc2505d6a2c04ba1e5f65f2164256f54625da154b338bd3d286ea6a18da61d04d90a61ad6b012bd9461182753483efcd0f603 jruby-bin-1.7.16.tar.gz=47ca714c3211c95c84e9c80ae4fbc894bfd7ee03e1bcc494cb48d839f8538db4aaca7029a4913b8d323e7227450e4e41bb943dc670f43df8a654eb127012033f jruby-bin-1.7.16.1.tar.gz=9bacdf6e212d08e46ac2c49183c8611873f6ecebfcb0e928b5110bdebfeb8751ac087cf8aba09afb9a8ccb58e59f3c3e06a241c1db445835d7a875b0c3deb4b5 jruby-bin-1.7.16.2.tar.gz=349283bb5344a62f282021ce39648a0c8d0b41ecf8f800ab5099b5ce161ff771e688f205a918324cef6ba0ded6b3694b8dd83f46f56be584202b8fee496b37e7 jruby-bin-1.7.17.tar.gz=a3b171df08e789f91c260c5a57ec842a5d62cc8d6b462b772905ec5284e394ed7b78f5b327ca1ff20f5deba8371a86cb03fade75b5f34f233df47bc3f08d469e jruby-bin-1.7.18.tar.gz=b259da2967e246a387687117eb13e8986b57de6ca8e570d6f8f8f07b8097db6e01cea8b0ec3a860b091fde14de535260dc6dbfc638f9e9b49d348f726e969642 jruby-bin-1.7.19.tar.gz=da91efcd51cfc833666f8b7cf949d3b5c41cd8da99ae1559c88a7358fb48df1245c66702c7cf23e7ca012cbefae98787c200352976d4e8aa3e9120057a89dc8c jruby-bin-1.7.20.tar.gz=77131afe46e72c406ab4250e43cd1f98e59a8351c494044ac89f97a7c9a81492f8a8194541055fcf1fc59569e99a577fd6a36a9f6a3952a99f399d4970e80e69 jruby-bin-1.7.21.tar.gz=111883df12a60d06e9924d33057ba72094fcffd44f7e3954d6c6d2190f8e6442804e739cc525a9e75159251a8dc1cc487570792b1b4f5773f4d0082f0eb360d0 jruby-bin-1.7.22.tar.gz=6ed6cbe7b81a8aee60906fdf965bc217b3db794698e2cb37559f36ac119a0cd2a1ae1a7a766535ab491d647e8b4e6b2f63e62011714b757f8691455831ef365c jruby-bin-1.7.23.tar.gz=6f4b97c4e08274f96195deb176e3126e8d047c981cb655cded9665624033fb905d60d5586704a3f91b2ca06d7e78918d9d31131c93e4c90c75a38182e309ac9c jruby-bin-1.7.25.tar.gz=a89ab8d539bff346ad56d345b6a205f74890b9aafe82a2c82e7c19cfc30b77fefde1003e8bd7ed15f141151bc0fd21946203219691383a64f2234fa586e1905b jruby-bin-1.7.26.tar.gz=feee03a50900e459d9ed7d2096056bef126c4551c02c335c4132e2307411f3fc4fd435e8fe44411184773c80f0630a7812b3d798b7e9be2818e1b5a712bc6995 jruby-bin-1.7.27.tar.gz=656f4313fbfe5db8d2d4fc2087a012c91efef848394c48aeaa0041e9a19b87ab74686702955413d2c51d6b4b11c758ba0555b30fdc42e86d66094411324139b6 jruby-bin-9.0.0.0.pre1.tar.gz=988c6a058336ab9ac8b27c7501ceccf3940837f9b9d3ed32a466b891bda1bc13f76199f5bc3baaa1240dd0dfdaee40775f721294d667f3b8b5bb9ac8206e2e83 jruby-bin-9.0.0.0.pre2.tar.gz=f207f9477a12d7ffacd92b1bb5154ba8101dda8f7b2eeadd4fa83eadec9a75727bc1831733d27fde63ba63322ec491201dd23cc6e2c2b5a4b8381a8fbe49e8f2 jruby-bin-9.0.0.0.tar.gz=33308a983533c129cffbf521bdb8c1996a10a6159a4a436248e645bda682c5a5395ac1aa767e971ae679c935f3b61573cb22d5b8c64af026752db3411a6356e1 jruby-bin-9.0.1.0.tar.gz=277dca63f3faad01c98a793f06bb4d558a970a10a66a38482e8372b25f4cf4fea85f1d5624fce7fb5b4310c42ea8aa360f24f6b9b6ef4bb0ebcb036736009ccd jruby-bin-9.0.3.0.tar.gz=d82f83e20ef17a0675843e306ec5e90993e5952cf5a53957a91e369d2c90d92306aa515b1e135c04b45844a81a0f4ae34289b966821ae5f46ea51fe012627352 jruby-bin-9.0.4.0.tar.gz=b9cd4f4a00da8152740b468914046633d5341b10aa26b0ac56835d5896531030c8afbc4c965b30c36923555ed5b145de8ada69e05ca38b01d43621914a331335 jruby-bin-9.0.5.0.tar.gz=7c61cf010fbae571cd6ba334aefcfd917f6de8224d014026297b840d0b890523e94b2fea20f154c82c25c4f9d5992b9481fb569646a7023e5ddb42db1baf5f34 jruby-bin-9.1.0.0.tar.gz=1ffdd352823436086ebfd37c03401a1f3a9cb8a8c5f75476af1f704c4764396a20f49ddb7fb7f0911e1608f7c88a332944330b8849d13e6badb170efb736dbe2 jruby-bin-9.1.1.0.tar.gz=475acda79ab8c54467ae70094aa86842959200127c1e92709f0a731014c469d3e52e4c48770b64ab1bf31e1b710ac4570b421077c85c08071c1356bee55a2900 jruby-bin-9.1.2.0.tar.gz=cc6b1e1a2907c128dd04edf9da11933a54bbed5e861ab6f0208505bca5aa2aa9d9acdd04bfde65824346fbb435584081fc8ec2e2e9a3aeea1bef8047915e0c61 jruby-bin-9.1.3.0.tar.gz=88339f4cc05f7f0ded21f100755156ade33f19873f49c0c64110916da8c0b059df541a77bb36e54fda9cebf042591450d2d6312ffaa879df926870806985e774 jruby-bin-9.1.4.0.tar.gz=ebe0e9d67cb91721d589461e93e26338e3e3a1f0f98de53f25906684140b49d989ca6d3704cd3f6cbf650f30aed9a3989f117bb4732c83ed870364ce4c31fa36 jruby-bin-9.1.5.0.tar.gz=f2a11e6fc88d37fc1b640ea8c9feda4607bea6da5e6520f61ff85e8d6a51543612ae267b45c033214f8fd0e2283153da02001cbc9fd90be4761b7544e1413b9f jruby-bin-9.1.6.0.tar.gz=ca59d199a0fe791efc57f05801ae26c6cf6402bdc0f1a795250b1a2dda39b233ed24c8cb005016e79727f4bcdceb1bad726a60c16935e76fc87e5d1a078fb5bd jruby-bin-9.1.7.0.tar.gz=f2569d4858a33280e90d984aac53662c25ef057ef9903bace6a2214aa2e6a537c9bc8fc76b08f846b3093cc4a12c70c98d725576a4ac771e640b95cfe3697c7d jruby-bin-9.1.8.0.tar.gz=dba3b41b65ff27dbaa203a5cfc78ac7cb9d952c52b452bc774f593383e4ef9389c0bc37549b798f48b63497ce7007b1ac2d2fa252d9a7c3e52146b4ae192ee49 jruby-bin-9.1.9.0.tar.gz=f8f6419be34aeb7b7577e946a62a094f5921d7319b51876c5e07322d99249b3a9f29fea4ee5c2b8184dfccbd5da8f8262fa97f5e93874887f3355dabfccfa0df jruby-bin-9.1.10.0.tar.gz=857783bb45fc5d62148bd687b43af9ce776099dfea75ec4b5d947a46ed270568bceba2a630a3277746a3a9c1fd3111caa9a4cd13493ea8824c1ee190e6d2abf1 jruby-bin-9.1.11.0.tar.gz=718ed3f5a39cd9f9b45c4e11ba44cd32e035f8d9f26fe59230dbaecb71adfb2513ee1bb86ff72e075b02f20151f3f30e53bfa30b6c4b011a93a138d4f479fbf7 jruby-bin-9.1.12.0.tar.gz=8a9f88d517d8002be570aa95aebb0063eb62a47efee191155f9fa4f045854910f78431514f857c438167ec42f4241faf74d4a8d236ae36feae58732312e4bbed jruby-bin-9.1.13.0.tar.gz=ef88f613ada2665d4f63b2e2f15594739de8ba501406e76de417821f44847b0e258524687b0ae0cf5b737520aa4dd9bb59d80a4b89a81408cda638f28bebbead jruby-bin-9.1.14.0.tar.gz=d15ae0c60421951b830524acd21a0f2a56f480e983b148a2722cd36afed8e99a41f518eb8a679bfa2cf87f08637e81c24ea88be40c0a5390e081322f1fc6f8da jruby-bin-9.1.15.0.tar.gz=74a411f42149510180706b2c70610caeea357f6fc3d2a12ff0227586862e6a9dedf09e752596d6c486af7a310a07241f311a1dfc73ead229d7225c09d4508605 jruby-bin-9.1.16.0.tar.gz=94e88dbeb2545250ba5bef50bbe0baa6f3851e9817f67f879ffaab50048bb0d41cd7a0e87ac9ef547e37c2b82cf1d7aae6b8caa43d03c6a9931b8ce0ad4b2afe jruby-bin-9.1.17.0.tar.gz=4c06b9674e20f48d3815b4084bb38e6994670eac804fbc56d717cde7abdb74d57e0ac17b7fa0b500318de405c187c3eaa01441c22621139dfdbeef62a5467a63 jruby-bin-9.2.0.0.tar.gz=79f5e8674089d2f6b260e033e3ceb4571f54cb5cedbca74ba76b52dd7cb30085a8c6c2676e9be57a8ecd9e962fbcb3682a8de38e1cdde2dc6e05bd179556edc3 jruby-bin-9.2.1.0.tar.gz=185e67da4964c9cf1d9142446efa77605e77894444bdc96bbd10fee22637f197aea9fbb0f60d3a42540e5f383d5b06fcf095d572f432544a40c2145deec81926 jruby-bin-9.2.2.0.tar.gz=85e16e38748b6ec5f237eabc8a17eb225c484c20f7ab6728f2a0f650061bc50c8a9601c04b0128e73c410ffe84dacd2b8bb37167aae5595728aa25e88c4c9b92 jruby-bin-9.2.3.0.tar.gz=97ee210157c451567946b38d33380051f82e7e8cb5f7649fffe050542ff6cd627e2c42f4c46739d1f0995c87e7338865b18844741285bf3f72364aa3c841c54c jruby-bin-9.2.4.0.tar.gz=9fe1506e862a17e261cf726e1bb70a9f612a6d7beda919a01405899660d1f4b79ee690ddf9aeed1d2b2f3cbd698be8df4f98d3815352772cc680e9646d721761 jruby-bin-9.2.4.1.tar.gz=2c41e7884cc54819da17ea9b2b773d05d3240d53a2ecb57ba430ab61308066eeb1bfbe6627e6c261f5f27ab5df7f5972656366a04a191a81b0379f620b74512d jruby-bin-9.2.5.0.tar.gz=d548eba8de420c80062021f5b6e6b203f8b7b36e3f11409919eeab87a028a18f9346f27d2cd8b1f33419adcc83fc804a36dbc3cee169ef1d93383b8f5835ba2c jruby-bin-9.2.6.0.tar.gz=20c7897da0d2b585616ea5848998fe8770517e24e16955797db2e5bff4622c348082628d304240a71a97e9551ef7aa63271cfb728eb5fb7e7d19bb48aff20d4c jruby-bin-9.2.7.0.tar.gz=8e71e27fdb149cb7470fb736e7ce858719d13ce6ff8a1e9ab1c1dc71fcc068fb601946bb28ed2feee3670b5e6ebfa8a655a6618d1badfc3763897912c41b1c82 jruby-bin-9.2.8.0.tar.gz=7f71fb5bc8c6c31b31b4c0430ae091871b21aa345777662f264c728c60212365dadb63a7a4b2fff31adbbf8a2e7cfa678d47486e28840f57b86cd45fe9354013 jruby-bin-9.2.9.0.tar.gz=7df33150858ddff586b3bd86120d4bdd80546c7f8e62245f61facbaa5527400a1aebbb33e4a1a8af52066487e3d29760eb96c7ecb9875eb9bc954ccbcb37a4d2 jruby-bin-9.2.10.0.tar.gz=f4ca024602ddab37154f5547132accb26e7c0ac2e913ebe1b5c7806727eb148249e76031ed4623ab53814beb8fb3f472e386f44d57adb5d2b3b00fb2773c8a63 jruby-bin-9.2.11.0.tar.gz=f736a9e139694c84d0a5ea42f36b972adc82c9be13e0b80bd61045c026e4fe31ccdd4be3dd3e94781c846f356e026465e41716fd2744ded2ab0ca39cd33bb46b jruby-bin-9.2.11.1.tar.gz=2f758fabf5910ea01e9c04c7600d9c666f2df3db8622f3eeb3534578075ce65013c42fe9ea6f95d4499945f795e6d566eed2b1545e149af823eb1d29167a1223 jruby-bin-9.2.12.0.tar.gz=1dbc5bb3814a6590f5e8ecf4889152684b5625fe81794a2c4064d598614a85129256002dcd239e294f209b98e3abaf9bfe70467fff48ef66b1531162dc6c3be6 jruby-bin-9.2.13.0.tar.gz=2cba016ad6a376252083122d51335610209d860c41de1902f5cd49ffc2f6b49c350b68df8fc4113c221255af4db7ec07980267b9888369811faf66db369e757c jruby-bin-9.2.14.0.tar.gz=ee3d17e875dd197f92744c7cba62320bfd3f166bbb2ca117f2910780a7c571779c0940e024351e9d4685ee9781dd207e773ace57a4a8a7011869c8b6209513c5 jruby-bin-9.2.15.0.tar.gz=678abfa7654b53b049e4103ae3647775d970c5a7192539378957c1731a3037c852e03f00a496c022c1c438d159a93be6e6f04d7563c811aeb7d261ced643d9e5 jruby-bin-9.2.16.0.tar.gz=f77e314d578a980071bddc25c65659d62e0644927ebc4e7d7d4523935b6c893e611d47ae7478a26ce7acff38b1525eac11b4a329188cdf76aeb07fab667d99d4 jruby-bin-9.2.17.0.tar.gz=e90ac1890a54a892b13adbbeab3cc5242889ff2a4b6cae535c0a3172072bda6ab01b960705ba608d6d7ebe9de5984d8384dbbb6399ab3b2e53a9e347e7849e1b jruby-bin-9.2.18.0.tar.gz=c5816ee0f7b0f559dac70ffc5277f85ae9c41ad176e43d277f820c2727387baba93998b915cadf9708fa78b5cdf3911a9c39c2ebb61a77a38dcff359f7d88a73 jruby-bin-9.2.19.0.tar.gz=3740674035e27cf7961b3570ad65536c30faab1c9a71a42a696b173379e79647411d57e0d1d06b5f9c9a970eb02a595a559191af08a083773dc4601dcfd07491 jruby-bin-9.2.20.0.tar.gz=1961f52f41e7eb9f50b0f382c8166ad988a6b3c0311c342658edb34486b073ed45c1ca5731aa319196db02cec208a4dfc86aa6b436959b80243bfa4f62629735 jruby-bin-9.2.20.1.tar.gz=598e28cbad682fbb30a9a9a9f708e6e1f4b7903300de2477e88a646c42ae594df5b768ff5379ed447f1a7168e93dbe35cc2d5db7087cb2228233a05bc4687908 jruby-bin-9.2.21.0.tar.gz=8f6cfc43ce3ebbd69781da71c5a70746ada090162bf6cb709dca41a6d968e6072ae62f657cb0bd471c648ff294044bfec3079828bdc410bd64758f76a93c3214 jruby-bin-9.3.0.0.tar.gz=06331ce32ee88aaad5e5bc0668d164ec3263f8ef3ed34bb32981b76ca33f8c817e3632550775706481094159f4feb43916ad1f9ec0f0775ad756b16cb7bd9417 jruby-bin-9.3.1.0.tar.gz=bfcbe6dc5ba736fc944af15eb387b545f6c5b987a7db88045913a02a1d30726c5d1255c4dd609aa7c2d2823ddf9d8360223b0575c93302aeef4c54eb37af9abe jruby-bin-9.3.2.0.tar.gz=b1777bfdf1964d7e527bb3dfc47b4b9e8c589cdb301c38ee8ee988bd0c392ca978ee3c1c24e4b5a65bdecff67d1bd96e2d8645e58ff7e891e3622097ea29e925 jruby-bin-9.3.3.0.tar.gz=648e70de0bda710e2dc70fd03c3dc6b798dd4c7b92584c54306c426f59ebe1168a595c4cf94328f6b44674f5507bee354efdb1cd73060b73b0171a3605051c9c jruby-bin-9.3.4.0.tar.gz=6b09decf412a76578179cefaabf01cc8740f70ab5324954e6aa43b1d8b81c37db7a99b1f94d6ced2b459f1c44c3086892b9a2c06b3ea838baf75a8fd5e0447c8 jruby-bin-9.3.6.0.tar.gz=f730522eff27462192808773cbd071cdaefae11f20bc808a8f22515a33960a730f3c87ec727ddfd9dc9b6b35acffeb50c31d75a4794a3f8daa75e1963ebd246b jruby-bin-9.3.7.0.tar.gz=265051c68d3b9dcce708b75f8267303ae84008859c88d7fe4f282395366c3f52fcf1bb161210555c0fd0a2427ff5a728ea9e337feea3d9b69559cadb2f300aed jruby-bin-9.3.8.0.tar.gz=12e795b7e1f14141bde68f52a29b0aa9f1db20515240dce83cffec351cefd25959579e01059d42dc8c8e4280493a70819d9beb1e0523e9bc10a72af16d9abd60 jruby-bin-9.3.9.0.tar.gz=f0b31d98f39a2bd4436764db0b0139433d6868bce7c30c5d6e3552616ba879c93478c499f3e4c884fd3728502916aed5c9ca1be150ae3e80ff47b36710c3f6df jruby-bin-9.3.10.0.tar.gz=aa36fd4c5de7b17f5fdcca1d1314d309e7b4470d46822c45baefbc0ad5180e5530a7054502b97b414352af485e7936659390690dc6198512ba6733d8f8d503ed jruby-bin-9.3.11.0.tar.gz=d9fd90bc64028dcc45687d2be51414b1561add20d20d1392525f4434cc684d505427f5e56827afffbbb0ce2c9cd7c1ef846b0bffa737679afb95d4c160232da5 jruby-bin-9.3.13.0.tar.gz=eb24641fb7a6b9d2039ec953388053e7333b306056f9a5bf745331b04cfc05dc4211a9b7780ce88bcee9184b8cbb219b574574d308bc2720547c116f4d4721dc jruby-bin-9.3.14.0.tar.gz=d9b02fc35133f71140cc7d891061f8190b61b3d1065f00092a2aa9a4beaf7d67297dfb0529691bd24d29607d698f39c62af9018e8307c1e6624c3104a61bb74c jruby-bin-9.3.15.0.tar.gz=e41521ebf453d6b6a9de937556fcaa972c60268285d0af4a41bfb95aad790eb47dd507e182958ca6f4889a0e03eedee0fa4bbc58e3d0407a2b6ba64a8b87a21a jruby-bin-9.4.0.0.tar.gz=fb72f8e087ea08653fa4e4225fa26694c3ff97c41f3deb8731cdb6571c6c9b21e0d8f69e2096f82ee81e2b5c283f912e2a5228c15873dbbd56de96a2ba35d59b jruby-bin-9.4.1.0.tar.gz=46003ef6192718a6372b79ebc89bee37957686224a08fe2f9a6be3c9e479784409d0269f0885c4d1f1351585c5d2cd31fd2ad45014e425bcaf2d44d66b98d299 jruby-bin-9.4.2.0.tar.gz=77e484ab73ece93e7d7283f876f0d541607c6080eee696b702b485be9794cf7e6d464f250a6d75387ee69aef3ba40ccf4f6d9fcfe324c5bc7a14376177ea2bb8 jruby-bin-9.4.3.0.tar.gz=2361f4bb2989f5951b0d3e9d49bf31e6805ce39bdc987ad3c6934daa98ab7c8e69763d40d7412ccef8adbbc198e52f4b83d00998ee12ac43fbfc6b5d88930c15 jruby-bin-9.4.4.0.tar.gz=e89dff0cc5b4a948daa95196d4bd4fee0c6901bb4aa023ae35b3679d9739967c2a74e8a4388b1835465dd39f1332a1f321b450b40c54ad2b81802645b4a31ca4 jruby-bin-9.4.5.0.tar.gz=06db948e5fa6f8559abd3b6891c7b4867b9f54b7bddf0e36d6f20cc1bfb394cdba8ea920213e545c927d1cb865e083cb1089c8e925bc608e0f8784a79b5d330f jruby-bin-9.4.6.0.tar.gz=ebdc671622baf3c42a988d6ebe24af6bfefa1f717f050f602a1b35909a3220316329aad080ee2cd9cd330da9428f8d736502573efa64bd70f093ccc123ab32b0 jruby-bin-9.4.7.0.tar.gz=4fc8b12deba7b8a53a523a41a31c248895adc9bd54a62664a27107e7205369af39c0eaa508a9a70611c3bb845524d8c5f39451c09b8b9cd87059ae15139703b9 jruby-bin-9.4.8.0.tar.gz=0d65fdfd63e2049ab3b8ccbcb4caaaab20aea5a63276aeb20ed4092191a8814f144425dd0d926aeed757ad6b4daa308a98fafe1bbd1647f3db44368066f61868 jruby-bin-9.4.9.0.tar.gz=1321e2ef5fdce909008ed764051d1bf9be0a4b8cb4a2515fa888c7c0ea48f0f4a2ab7b5c881633dba3d03449c6340255d9411a58836ed059f62d801d48565d1a jruby-bin-9.4.10.0.tar.gz=3396cdda4334552f2ca21c9123e709d72544e11b448d3091ec1a6e6f7beda2cde86ba4c15a4c0648135df34b558d254a96cb970f0a18d098126b7c5c2a2af019 jruby-bin-9.4.11.0.tar.gz=21ee47b4f6d1b6295f7f25cd74e559e6dbc8d98738d31f87c27ea657a740382e8c0e8156eafc8d270946311ebe22a7ce60d5c0499fb52cac7f9b120ed4495834 jruby-bin-9.4.12.0.tar.gz=01f74e4dad2d4357c0dd5dfa937400a3d3d3ebdc0485444359658f3e4b58c8af180ff66ce75b269afc75548cb832c4f75e891f506fb5e4004f9b12286991a8df jruby-bin-9.4.12.1.tar.gz=782402f9227c2b5c2461457e61e21465274e257858376fecd04df59e1a2504aaa63a705c3d2093667aa12e78d9ad8f32e832c2713edc23c2e5796157f18f9e1b jruby-bin-10.0.0.0.tar.gz=4231ceee7098632e027ad24db5231d76078af0bf784a156d1614b6045f8ce25e6b08ad207310bd39b4415c75379b20afcdde8b31ad73b4c48005a5337df319ab jruby-bin-10.0.0.1.tar.gz=2ba8d72d05100ef875c01efc171f81376517f9f4b6415b49b54aabfccdd2a07520853ab7b45aa83f65af8efcbefed06abb8cfd32ea5fdb0a93110deb4a26e2c9 MagLev-1.0.0.tar.gz=8da29f16e08f657b0d2f147b64f2202ac027db26f85da8dec29f926898f178ac8d11260fd6c0a539a9b9b15eb92d8c7ced86a8cab1861ae7f8a33b6fa468e5cb MagLev-1.1beta.tar.gz=7122af70530e76b9a4cee93244d6872b49616e78086bc8a5db0f32d2b846560b352c4831addbbecc72e0e3158bd52f26c2da14f5d83a515ead30efe7c538b62e MagLev-1.1beta2.tar.gz=43b4b831791074f6e8c12f6fbe6ccec2bd0446dae029d3e6717cde1e7adca8462a2d7dc49c14112cb568b5b3adc8cd051767044b41d57ae51f38aca035ff8597 MagLev-1.1RC1.tar.gz=942c1cf43f1a911230aa43bbac1cea2e2e61b5e19af755e29a6a71139d66d304efcc519072dcc3487a2da7462847530564aff4a2159d675e3270cc938a297dd9 MagLev-1.2Alpha.tar.gz=2672e3e5425df2d2ecc49f85df5845fdb083f74a7b242cac75e33d0c1837079ced8ec8b273807326d08e7bf6f95cb4f1d8351f37af8bb38c4150e6292fc553dc MagLev-1.2Alpha2.tar.gz=4492ed58b6c2b852502a2195836f1db5a80f0619467e4d7b44981a993a5e9a9ea5c9fecf1198de1891583e334bbc3c3a86648ce8afea1137ae9c73a4d76b0f4a MagLev-1.2Alpha3.tar.gz=6290895b22efb986ffd7305b7d651f20a051ab6869d51310bf891fa3eed48526a8617b69f72793e8ac0b57f99bc5de75f34235ef94de967bbdcd51857efc2af6 MagLev-1.2Alpha4.tar.gz=a621e9c615ffec503910540db770754f29bab1646d8e67650d5b82413bd551adfb0bbbb8155407ccb6f80933bfe8ae1bf9b688eb0defbc88710308bde1325683 mruby-1.0.0.tar.gz=4a0f2927da3401df23d5c19ba566995f76775def3badbb14f16510a271e7b40a833fc61841f89d8adc6d57b5b12cb453708961c16a22133c092fab8ecfcd1e3c mruby-1.1.0.tar.gz=afa99a973e9c1b72a5a418d709c4aca08dc7449c427cedef5f12db4ccefb15e11a4fd1c23ceb7e31e49d4d2e602c0b1f9dcf2e0f6cf8ea3466f0b9bee23b53df mruby-1.2.0.tar.gz=bd5de32ba52b6642358752755329fa45a954082122a8983012930056c286ac328fb52fbdd11f34ff7c80af2c0e9a6348abcd5214602aca1150f2e7ae25cad1f2 mruby-1.3.0.tar.gz=13a57306706d2d60693151919ae15bb3621e6e7ed3b5e9c6d3b1c8d44e52b898c1ad394b39946d730ff82a19f5e3b7c2a374f9dcc3b6c6f990581e504f1cb9cb mruby-1.4.0.tar.gz=d2dd6e17c7f8e890ef5b6887538cccdea08a2376ba8f9a478d7d5c4377fd4c31a4af6323b1fc73952ef80e5a4778ca22eac3d724ce7d50b76770f7e614df7da0 mruby-1.4.1.tar.gz=2cbf155ba7819211b6410ea606c4d0db3adf4f47a4018ac45285ab3e32b94f280aa0af0936ead7233411957cfca62979d14bbaaf0d8f40521cba5c12272f2af4 mruby-2.0.0.tar.gz=8379f76b7a06d280e2a2552eec2975ffa3fe85b99028f6f7c009cd908f95faf3cd36a9975f502a5779559baf3c45a4297da0b6bcc038d213a0fdee851f9d01ea mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.1.0-rc.tar.gz=f310b385cbf80c6b6ab67e2a41b931411149639c0bf778799e3358d6a9a59f508f42e3faf72fef9e8ef91088d6184c445af7933a47e4e2b2fe114362d579bac0 mruby-2.1.0.tar.gz=da28b5a078e121c75edf62fc68fad6d5810212bd53a3424d4f585ffe5bbd09f652393ffea0f4b3ddd802e5fe178554dc67040c39c9d5069bdfad4ef22ead7e8d mruby-2.1.1-rc.tar.gz=97c9cc2c79a5dbf2f634ea08532f0f512f8af6ffb99ab4eefd83fc336ca9d97b943e76643971047b4508aaddb5e40176d6cc8fa39a17022455aa15d774eb5b98 mruby-2.1.1-rc2.tar.gz=13aa32a35bd5d8f02a9bfd08d17818dbae78ce46c8b0224a029f9f191cb64ac330eddf3871f4396b9221b987a91e4cd6f8933f59814ac0018155ec8454abff18 mruby-2.1.1.tar.gz=66f9b4bebb5a7b19f5cb1be2bd8b9bc65e4dbb5d4350d238ad5f947c9195fd431f2069f7334036ea63a750e9257e59ae1aef16ac99c7e1f4e17724cd1cbe2e50 rubinius-1.3.3.tar.bz2=8b91baf429dac60663d0e4da3152a60ec6e007f5d6c17ffa430876ec88eb87ade44efae90f2e32e238fd74f1b3d54e27492315f08e7bb073220b402e1e2d3163 rubinius-1.4.1.tar.bz2=928d12aa01a1d0f6c80175d67d3b1f8b9840f69f045c8148786612316421223f4cea71e3c373ee18a3f686b1457557ae547645afe758a99d21c4818dff47b9d1 rubinius-2.0.0.tar.bz2=5c81a6b8cf7b59e08c3b9353b0eb37ce985aaf391f5064df65ffb10f6d12b668287e4d4e61e2c6b560d9234c10f0b64bba74259f2c06f1dac488928544d4131d rubinius-2.1.1.tar.bz2=154cfa93ed59835814b8b974f6d738b049942fcc2b75095d21c87647d002c879fd55aa3d1ec95414b5b66eb9926c25a5c6e3e19a7c0da7dec6edbf434acb9c68 rubinius-2.2.10.tar.bz2=c2168e676059c197123916dd948b83e39bb96e99786bdcaef2e690936b761fedb13740b9f19883f991f1b475f3249ea1696213e8448c41ae15dfc14b3d4e1fda rubinius-2.3.0.tar.bz2=d0f3dd5e3b891bff2eb79b7810c6041e15fbbf0606c379f89575cefd829ac7a394b0c12ed3c5a4d452730797bc0a2c6c82646a19a078b56dcac7acad015a4559 rubinius-2.4.1.tar.bz2=7bcea320006b8cd3d122c407d89c325973a74c32456ba0b649657ac848f4682f2eb7455c13e3007709c22932bc2e1b65e2dd43fda0d3c9f993ddf8a74d1e2cb1 rubinius-2.5.0.tar.bz2=ac94d5bc11524e715fc24c1de33f4d358c2cd65e92fbb64c850dc8151d2a712d268227733c99fcffe298c3bdd6ce080c5e9553e4e8f3238868323498a9d10cae rubinius-2.5.1.tar.bz2=9315f76126d0aa754ee63b190385c24cb084f36293a99aa30fc482fd880d5393aabce361e09ff5514bc2540dfede8e179b7e9212b2dd59bd14ca2aa69d209a83 rubinius-2.5.2.tar.bz2=b48bd8d54a450441a50904b07c75c8d31b59822830a74c952720d6f8d2d86e6a27a84775e975ff2bf55bf3346f34e69d742f308933a9d8476e5e78109cb525f6 rubinius-2.5.3.tar.bz2=b923446d325dc3ce5ad28af9ee527607fae3259b85e85aeff97c1bebbb4520daf70616957b1c0ded900ed19e59025826dee66977c19cd2a2d4e9a0296811eb20 rubinius-2.5.4.tar.bz2=75b7ddbe218e4c92210dbf5a06eb8b3c3aa028d16146982a4e813e3af10a90d33f3e239f4508469c6aba17f02cb8bd10e96a204839975e06519869cacd456c92 rubinius-2.5.5.tar.bz2=a862146ddbbdcd4439eb64e78bfe6d09ae4cca540d19869618426d3f451544658713fe8eb7d46493785eb0cc721077e624293cc44d68eea3ef584967b43a18d7 rubinius-2.5.6.tar.bz2=9a0bdb5d77f80f163925ce409d00be3cee34871baae8bcfdb34c3c7545b92fd14102fecb970e42b3012588d299e504b724025f397a5a00e181ab75f1448e426a rubinius-2.5.7.tar.bz2=8048110b3ba4e5ff8c3f35282896067e1b1b46dccaf9ef4f6c9b6098782f27591ff59ccae0234fd7e881e3aaf17a0b420286b1b52ecd2cb672249655795a6982 rubinius-2.5.8.tar.bz2=23fca2f9747d2b0e544af890c3baacfb7b3a009cc59cbe653762ccdd827a6c915dcc57902d317fa1f7a81f8c12682f6c3a93195331b6de0f705b118e2e8c13f1 ruby-1.9.3-p550.tar.bz2=38767e98df25484f7292437f3cb0f798b3a43e9a7414a5401677e96ad1cc367cb3fa23ac3abe568d5bf2b2ca553713469a8770d41b79bc63daf3fa59cb4e15c6 ruby-1.9.3-p551.tar.bz2=5ea40f8c40cf116030ffdedbe436c1fdbf9a50b7bb44bc890845c9c2a885c34da711bc1a9e9694788c2f4710f7e6e0adc4410aec1ab18a25a27168f25ac3d68c ruby-2.0.0-p576.tar.bz2=e089cca4867cd9c715f4f37e40a1db9af6ba0c74b47e79568121bb980476f8877a87ccb848b973381edb4667c0c73165f5e1761f60db839e67f6326302dbd864 ruby-2.0.0-p594.tar.bz2=8301a51c73fb63a8cfeb14af47d0c18b5bc3c45e3d62fc2ed56a673a1cd6b0015c41f275e70eb14a9e40036b1530977199321e05285e107a6adf58514bef1b3d ruby-2.0.0-p598.tar.bz2=10026a04e01a8ad14ea9c99bbdf4f7d04029b73ee0c01bbf6c2eb2817332d49adacf127b646693b67b5dd7010eaf3b696b23b6335cc0f7ee5a6b56dbba0f6f82 ruby-2.0.0-p643.tar.bz2=453117152e6facdcd5bedaa9c3b1e349382bc5bc1dd3d650ec58b398cb9d2519a2822d05da10bcc5dbbb4f513fc5fef310caa3529d176fa2d453befb28e4d83a ruby-2.0.0-p645.tar.bz2=e9ca186b1cf0877cdbecd43dcab2c5161a53103e926609d5e1b769a4980eab4571bfd0951788b4fc92dfd9d10175b0f5f36ea2c7289e575a9db9b62c02f93185 ruby-2.0.0-p647.tar.bz2=3416af771ebb0b27ceacf23d309bd2a1ede832c2edf48a5ca46f0b0b84b2ab94fb6362a0c7fe4f77b21253539db8161ae26d23a78d1ba729bf03812454d93d04 ruby-2.0.0-p648.tar.bz2=609acf6d6352c9746e21cd7f0e7d29f5eb522e6fff2d5fad0431d63c568cc084ed5b7141f84cd33512d8213200d2d1a22e8d7df71469a980a3a92886133fea38 ruby-2.1.3.tar.bz2=9b48adb161e5e4550a71f61252c8edf59944affb82250babcb64240749af4b672e4a54ccd0feac5b36ea447a358b350b5080125ef2d4acf6e9e8b1ab82612f48 ruby-2.1.4.tar.bz2=68db1567751166c5e7d24b6e5015124b8a15568c50556e1f429486395352fa56c4a195a74820ab135697924149d014b445b345a1b9755678aaf824fba79c606b ruby-2.1.5.tar.bz2=d4b1e3c2b6a0dc79846cce056043c48a2a2a97599c76e9a07af21a77fd10e04c8a34f3a60b6975181bff17b2c452af874fa073ad029549f3203e59095ab70196 ruby-2.1.6.tar.bz2=75d58120b5f387bcadbf6d19e85624f78c74f81b9018baef39207214673f7ebc0700ab31145acd88b4071c896ba8e1302a29c90955bcf5f8c863634125022aa6 ruby-2.1.7.tar.bz2=f610d2dd6a93f0a5e84e04ddedf847bbcea5dd3289b3164cdf60be64f67a80dfd5f9836ea5d169970cd0ce24a7e05ea6190699706567cb0d5cf450de6a70e445 ruby-2.1.8.tar.bz2=7129c012bca7f0e7cfa51c73ba0898697f7a9f31abd5ae57d38be5b6b646fd80ab33be9b262cd3e2486c66f65aaf4ec6e881ae6e5a82ec9df62f00fa072510fc ruby-2.1.9.tar.bz2=a86422132e4c64007a84a91696f4557bdcbc8716fbfe1962f1eef3754ee7f994f4de0b5b7e7231c25057515767040d5c4af33339750b6db15744662e9bd24f38 ruby-2.1.10.tar.bz2=4b7213695416876e4de3cbce912f61ac89db052c74f0daa8424477991cfc49b07300e960177ff576b634a97ee8afef3c5aded5d5806329dbd01d0ce7b42b9b63 ruby-2.2.0-preview1.tar.bz2=2f1190f5d8cd1fa9962d1ff416dae97759d032a96801d77bc6b10136eba59dde1a554ff8c0c2d9ce0d3c1361d4dd12ad573b1266fd53b90ab238d8ce39e6b862 ruby-2.2.0-preview2.tar.bz2=c654d4c047f9463a5fb81eaea0fa5ab7bf316962bc7fb0fb356861e6336ce8ce2162c7779d8b27f72d7bc0e9604b5e5af2910abcb0b0a1f197b3138eaddfd4a5 ruby-2.2.0-rc1.tar.bz2=181201168360bee37dceeef3481a69e8a333a5d329680031fd9d371d30ac64460bbdf4db07546133024f541774e51301f1630cfd988c5e5bf2464834f3abe6bf ruby-2.2.0.tar.bz2=04edc53e8cd1732c3ca61ebeb1d6133614beb10f77f9abb80d8d36352fe8aa205112068e460bf600b2c7e81e0ddcc3b311e7e027c320366f1bd992b3e378a6ad ruby-2.2.1.tar.bz2=af6a8e75a66b953ff33ecbca5111bcf1c6560b6b48b370b700820fcbe91363146c5ac8abd670a14e693b44343ae598bab472ed2902834304c03ffcd9550886d1 ruby-2.2.2.tar.bz2=d6693251296e9c6e8452786ce6b0447c8730aff7f92d0a92733444dbf298a1e7504b7bd29bb6ee4f2155ef94ccb63148311c3ed7ac3403b60120a3ab5c70a162 ruby-2.2.3.tar.bz2=795f1b66a6d4f0baef897068899c3a1a4370ce1268618e6a7d6d4720234444259f371d1ba2e174b2f7580265e9f18eda3f295fbb087447aa6e8fb7a0f07526ce ruby-2.2.4.tar.bz2=d27ca2f19c214ce87f906b57edd41f2f8af35b2871c191470facded9cfda15ba46e5c3bc7d5540225a38da6bd65050fcc8aaa4ffbadbb6bf7dc891c1821da0df ruby-2.2.5.tar.bz2=d3224814361c297bc36646c2e40f63c461ccf5a77fea5a3acdcb2c7ad1705bb229ac6abbd7ad1ae61cbe0fefd7a008c6102568d11366ad3107179302cd3e734e ruby-2.2.6.tar.bz2=7a93f72d236521ac28c8a0bc0c73cf805797a8813d22e02f42c5fc05dd39f6e422817272e0db6a24c245f6f97ad4b2b412a9a47ac50156ab186df596918a5f34 ruby-2.2.7.tar.bz2=83756cd1c91516962b83961e0de59d858618f7ed3e9795f930aab4f199d47a95ed8f867d8aa9b51d508be26d9babf2140117c88241168bac41e6ef702cfadf20 ruby-2.2.8.tar.bz2=aa1c65f76a51a57d9059a38a13a823112b53850a9e7d6f72c3f3e38d381412014521049f7065c1b00877501b3b554235135d0f308045c2a9da133c766f5b9e46 ruby-2.2.9.tar.bz2=2a8c8770fda20a22b79c9115b6f468f8e7ea1092c84a5089af7a3122163e5ad298b493e6637e4d93ba02d899d8a619c94064dda8ac98cf3b93f64f45d5401085 ruby-2.2.10.tar.bz2=f8ec96c2a5f4ecf22052ee0b1029989ded52d7bf5d41be24fef67e732e76f72119302240bca08f0547510a9cd29e941a32e263cad9c8a2bf80023d6bc97b2373 ruby-2.3.0-preview1.tar.bz2=ae6d46c87f59e1fd3703b76dfc45bfcf208625f95ab9f4559f0b9f7050e8681f1a6e419f5fa06b704c83e56879c3a9ff1337dba443bcfca76fadb49c97d97a93 ruby-2.3.0-preview2.tar.bz2=e397f321d4338edba8d005d871408775f03d975da90c8abcfdb457a1bc7e6c87efe58c53b2c3bc122e9f58f619767b271bcc8d5d9663ed4b4288c60556e8d288 ruby-2.3.0.tar.bz2=77b707359e754c3616699d21697752741497c719dc3d6fdfb55ed639e76d52560d293ae54cbe5c63be78dc73fbe60f1b8615d704d017bdfe1994aa9747d26a6c ruby-2.3.1.tar.bz2=a8659b96a3a481a3dbdbb6997eb18ff1f8cd926a9707a90d071e937315c21d372c89252f0d44732ae5007d2678fda8c8fbceafa4e4b4ff500d236fb796284d8d ruby-2.3.2.tar.bz2=78699bae5b0a2382a58f9d51f7d891341f00ad3a90d9ca06b68b1b245cf5acebc3a82133e39bf6a412ac999a5c0f778a0dab177c2569ffbee085ffff6f6ec38e ruby-2.3.3.tar.bz2=88f7782effd35bfe0b4c33140b5eb147d09b63fbb35b9c42d2200c010f387e2b70984ead1eca86569e8ec31f08b35289d440c0ca76b662dadb760f848e863d91 ruby-2.3.4.tar.bz2=ad1f16142615498232d0de85149585be1d2c5de2bc40ec160d272a09e098ef6f317d8b25026001735261fd1c5bc0d1f8513a8474e89f0d86eed5b2fe7338d64e ruby-2.3.5.tar.bz2=3ecc7c0ac10672166e1a58cfcd5ae45dfc637c22cec549a30975575cbe59ec39945d806e47661f45071962ef9404566007a982aedccb7d4241b4459cb88507df ruby-2.3.6.tar.bz2=bc3c7a115745a38e44bd91eb5637b1e412011c471d9749db7960185ef75737b944dd0e524f22432809649952ca7d93f46d458990e9cd2b0db5ca8abf4bc8ea99 ruby-2.3.7.tar.bz2=e72754f7703f0706c4b0bccd053035536053451fe069a55427984cc0bc5692b86bd51c243c5f62f78527c66b08300d2e4aa19b73e6ded13d6020aa2450e66a7d rubu-2.3.8.tar.bz2=6d79e0d25757fd37188a8db3e630a52539bce7927fcb779a2ce9a97b9e5f330753035c16843552f1a1fb6c9a1e5c0f916b3cc8b5c0bfe81e20f35f8442e40ae8 ruby-2.4.0-preview1.tar.bz2=c9873e8686eb54dbde61d6e23cd5197beebccd6cb31fd12c82763ebe1fde17095d7514d9d93c2c82b238032c98691df5479dc2d666a8a590e0fc54450ec29cb5 ruby-2.4.0-preview2.tar.bz2=0c9a59a2f57a99c4ee8539a30f41da1de7547566203f89d856e1be9dbb44365754e6c470145dc9336eb324e0feb2f53d9fef18a1564968ac21f9ee528905949f ruby-2.4.0-preview3.tar.bz2=6602c65a7b1e3bc680acc48217108f4335e84fdd74a9cf06f2e2f9ad00a2fccacf9fa035a912bc9d5cc3f0c7a5e21475971dfac37b0364311ef3645f25c7ddf9 ruby-2.4.0-rc1.tar.bz2=b43902ac7794487197df55a45256819d2e7540b77f1ed4eb68def3e0473ee98860a400862075bafadbde74f242e1dfe36a18cd6fe05ac42aae1ea6dddc9978ce ruby-2.4.0.tar.bz2=bef7bb53f63fb74073d071cc125fb67b273ed0779ef43c2d2969089b9ca21fff1bd012281c5b748f7a3c24dd26e71730d7248c05a01cb23ab2089eb4d02115fe ruby-2.4.1.tar.bz2=1c80d4c30ecb51758a193b26b76802a06d214de7f15570f1e85b5fae4cec81bda7237f086b81f6f2b5767f2e93d347ad1fa3f49d7b5c2e084d5f57c419503f74 ruby-2.4.2.tar.bz2=1a5302d2558089a6b91b815fff9b75a29e690f10861de5fdd48211f3f45025a70dad7495f216e6af9c62d72e69ed316f1a52fada704bdc7e6d8c094d141ea77c ruby-2.4.3.tar.bz2=fb4339e30c04d03b1422b6c32ede45902e072cd26325b36f3fc05c341d42eea6431d88718242dcc9ce24d9cad26f3d26772f2e806bd7d93f40be50268c318409 ruby-2.4.4.tar.bz2=ae632852a5f413561d8134e9ef3bb82adb37317696dd293ef92cb76709ecd45718f14116ecce35b12f1c2dd53ccae8dabc7a924a270072b697512d11f4922347 ruby-2.4.5.tar.bz2=7034fcaeaee41f14bc0ecce0d3d93bd1abe95310e1a0b95fac66eaba867adfb2bf7ba4d0d70d67a15ce8df16052dee405c38cdb18987602e64a2f701d37d3df0 ruby-2.4.6.tar.bz2=292802984e5cff6d526d817bde08216fe801d255c4cede0646e450f22d4a3a81ae612ec5d193dcc2a888e3e98b2531af845b6b863a2952bcf3fb863f95368bcf ruby-2.4.7.tar.bz2=2665bca5f55d4b37f100eec0e2e632d41158139b85fcb8d5806c6dc1699e64194f17b9fe757b5afd6aa2c6e7ccabba8710a9aa8182a2d697add11f2b76cf6958 ruby-2.4.8.tar.bz2=2d7e0f5ad766e2a12a1b53ff838e6bfe86244ffb7202196769c25e9df6f71f3ccdd8605e7ef35c53e54310bc82caf6b368ad5111dd0a3ad70a3aae1a7be93f08 ruby-2.4.9.tar.bz2=d485444dcd025a261a16bd740dae63c0aa23e4138a095584e7a83aec47af34415c7d9cbc1313e92da2ec416b11bfddf20bb1a7b60c80f12906d11ef27409b3e8 ruby-2.4.10.tar.bz2=4d730d2d7cb96b002167ee358258f2620862a5a6d8627cfa5b49bd43c6e59c50c0f437b959d4689b231d57706ec7d5910d9b144f4ca1c1ed56bc879ed92e8a59 ruby-2.5.0-preview1.tar.bz2=2d39ef64aaf7a52014905f4ad59b53e83b71433e50a9227f9f50cbb7a2c9a5db9cd69fa7dbe01234819f7edd2216b3d915f21676f07d12bb5f0f3276358bce7f ruby-2.5.0-rc1.tar.bz2=bf0eb114097f9e505ff846f25e7556a2fb393573b4e8b773f94cf5b47998e221f3962a291db15a3cdbdf4ced5a523812937f80d95f4ee3f7b13c4e37f178d7a7 ruby-2.5.0.tar.bz2=8f6fdf6708e7470f55bc009db2567cd8d4e633ad0678d83a015441ecf5b5d88bd7da8fb8533a42157ff83b74d00b6dc617d39bbb17fc2c6c12287a1d8eaa0f2c ruby-2.5.1.tar.bz2=82e799ecf7257a9f5fe8691c50a478b0f91bd4bdca50341c839634b0da5cd76c5556965cb9437264b66438434c94210c949fe9dab88cbc5b3b7fa34b5382659b ruby-2.5.2.tar.bz2=9f9388a162a3ae9c14ec8999fa3b12ff5397de14f55996cc8761d21c757113db37ace4d326b9606de7ad3a5875aa94fec900dd9b81b2fb0dff558c39422f4aa1 ruby-2.5.3.tar.bz2=6fe89fe9d406bb454457442f908774577369ab2501da4fd15725ccbab77675b88faad739a6c8ad1c7b6690b439a27de5e08035b7546406cdeca65c7b295e2c77 ruby-2.5.4.tar.bz2=3c4f54f38ee50914a44d07e4fd299e53dddd045f2d38da2140586b8a9c45d1172fec2ad5b0411c228a9b31f5e161214820903a65b98caf3b0dfeeaabf2cab6ad ruby-2.5.5.tar.bz2=1b56aa79569b818446440b9f2d13122bf7c2976ab9b2865f5fb62d247d7768dd4ac5b5e463709ffec0f757bff7088afd293c2a8c5349c3780763b6444bb354a8 ruby-2.5.6.tar.bz2=e4511d42d19a7bb39ea79f66bb4eca54b63c2a9d27addc035d6d670c1e59ee48a0c6e9c6bc7d082d1f1114b0668831dce3b7422034517f3c4a06ced0e47a7914 ruby-2.5.7.tar.bz2=7d6a7d41b4f3789f46be5f996099f3eb8321aa4778b2a8ff44142654e769ba4ba2df127dd0f267547e4c8cd6ff46364f18e79838df54fcd7e3fb714294ee0099 ruby-2.5.8.tar.bz2=037a5a0510d50b4da85f081d934b07bd6e1c9b5a1ab9b069b3d6eb131ee811351cf02b61988dda7d7aa248aec91612a58d00929d342f0b19ddd7302712caec58 ruby-2.5.9.tar.bz2=12f58e14cfa6337065b0e82941e39b167813920eb54cbdb4ac4a680dd0cb75d2684d341059e7b4d0da1292bfc4e53041443bd14891a66f50991858b440a835c8 ruby-2.6.0-preview1.tar.bz2=d9cb270529a97670d54f43a0236fab072714e715c39277dab70b7a1843ec818e6700e47e1384c7256f9e0ae41ab2c0b768a0de38a5ecf4f4fff5da6ef5ad4944 ruby-2.6.0-preview2.tar.bz2=3872227e9b1c97c206d19bf1e6ce15a38ee15a26c431b4436605dea67affcf16372358984df76b35e7abaa902c15c16f533ac7af47e3031dea9451bbe459b693 ruby-2.6.0-preview3.tar.bz2=d1693625723796e8902f3e4c4fae444f2912af9173489f7cf18c99db2a217afc971b082fce7089e39f8edd54d762d2b4e72843c8306ed29b05ccb15ac03dbb5b ruby-2.6.0-rc1.tar.bz2=cbd6281b2aab6fbce3f699c1ab57e5423304dca7a547a0b3cd4e8e980326dc7b85b2ca2bfaf3f3a648d40f4222fdf1740d81d422790ee7ae1ba1ed33eb11e3e8 ruby-2.6.0-rc2.tar.bz2=9bfbe83fd3699b71bae2350801d8c967eb128e79b62a9d36fc0f011b83c53cab28a280939f4cc9f0a28f9bf02dce8eea30866ca4d06480dc44289400abf580ba ruby-2.6.0.tar.bz2=ca3daf9acf11d3db2900af21b66231bd1f025427a9d2212b35f6137ca03f77f57171ddfdb99022c8c8bcd730ff92a7a4af54e8a2a770a67d8e16c5807aa391f1 ruby-2.6.1.tar.bz2=fc41429491935b89532733b95476ab9f8a4efc310aad8f4c2bd3b68fba08fd7b6e9ac84c6c88ca892022d1ba76435295f3299ea466f9b5453c07d41cb539af59 ruby-2.6.2.tar.bz2=cad678d2ced4085e99009e4fef83c067dd0e6ead27a8695bc212c0e5112a7fa09ceb27f82638faf91932ef8bdd090f844e0a878ffdf6845a891da4b858588aa0 ruby-2.6.3.tar.bz2=c63c3f527bef88922345f4abb4b9ad467117b63f2132e41722ea6b4234cec3446626c3338e673065a06d2894feee92472807c284cbe613a442c8fda234ea7f88 ruby-2.6.4.tar.bz2=a9fa2f51fb5f86cd8dcaa0925fe6f13d4f19f110b5d4c5fd251f199d16aaf920db39ad3bb50460eb94ab8d471ab2ac8bb54daea4a3bb080eaf45250aac3437fe ruby-2.6.5.tar.bz2=28e0b04ac8ca85203eb8939137b5e5de4850c933faf7f62fc69648fe1886faaabf6cdf48382f9d9585c1720876d10b41dafd33efaeb23341c309917fbd8a6e21 ruby-2.6.6.tar.bz2=001851cf55c4529287ca7cc132afc8c7af4293cdef71feb1922da4901ece255ec453d7697b102a9a90aef2a048fe3d09017ea9378ab4a4df998c21ec3890cdbb ruby-2.6.7.tar.bz2=311ec56d23d0de7a163f66c1ef4e5369b822f8409f8e1f3a25785c803f01c68dd13aa8ddcfb3a0fe6a97bf321950f8d6cd75b2babcb04158e791601914666f7a ruby-2.6.8.tar.bz2=51806d48187dfcce269ff904943dd008df800216ad4797f95481bdeecc2fbac40016bc02eabfff32414839ebb2087511d25eebfd6acead1a1d3813be6c10edf7 ruby-2.6.9.tar.bz2=ff067ebc059094c0a9a0debf54a37aad2c85f7ed47be59299041c9c03a7701529f5063ff32a1b8c56d48ee8585015acba63602ed0176b2797d263d43d67aa241 ruby-2.6.10.tar.bz2=275a0f329641e6c3d3d3c33ffabf585195187eb3baa4fb1dfd35999fa0a80bd5925943fa2711827ac00dffb6c9a1deeadabaf2e9ee401d56926fc167db5ae4a4 ruby-2.7.0-preview1.tar.bz2=a36b241fc1eccba121bb7c2cc5675b11609e0153e25a3a8961b67270c05414b1aa669ce5d4a5ebe4c6b2328ea2b8f8635fbba046b70de103320b3fdcb3d51248 ruby-2.7.0-preview2.tar.bz2=7066ececebbbba4b2933ba1a4f70cdef373169910802259a3e52b4fc144ba298f3cffda4be5fe8a7be8ef769ed43076fa046a9ac2c13bb733475b9852112c6f0 ruby-2.7.0-preview3.tar.bz2=5d8e99e3fd984c7d05c0bc483e1504e81ccdb920cbb2d78cad3c314e197b30316b692fd0199f836acac41246e3a713cb81dc6dd64c27cba56f807df4c193db1a ruby-2.7.0-rc1.tar.bz2=b5f96227775f8bdf19f944a555d0a83d7e84b37bd31fe4b8ac008a3272b1a28a4d94abbb1b5570ee32ec0690ba9d476b837a020a5194bee14bebf6f0e768bc79 ruby-2.7.0-rc2.tar.bz2=9010f72bb3f33b6cd3f515531e6e05198f295bb2a8a788e3a46cdfd776a9f6176b6ba8612f07f0236a11359302d2b77fdecca1dc6be33581edbb028069397a0a ruby-2.7.0.tar.bz2=8b8dd0ceba65bdde53b7c59e6a84bc6bf634c676bfeb2ff0b3604c362c663b465397f31ff6c936441b3daabb78fb7a619be5569480c95f113dd0453488761ce7 ruby-2.7.1.tar.bz2=4af568f5210379239531dbc54d35739f6ff7ab1d7ffcafc54fed2afeb2b30450d2df386504edf96a494465b3f5fd90cb030974668aa7a1fde5a6b042ea9ca858 ruby-2.7.2.tar.bz2=f07592cce4de3532c0fa1c84d53a134527d28ba95e310cd3487ac321c49ee680faeace285de544ee6db432a90aa7538a1d49ff10c72b235968ca362ef9be621d ruby-2.7.3.tar.bz2=e9236138be3e61380140f2e0d42f8fb82ad8f5219d454de2f6c2ec546bb208acc8b0f2020f23e6446660d2b3b9ae873cdd8298471f166a5f1efba8e80b05e746 ruby-2.7.4.tar.bz2=f144c32c9cb0006dfcfa7d297f83f88b881f68c94f0130346c74dfd8758583a68d22accfd0fc9f31db304ab5ff0bc135bfb2868145c0dec1ee6cec5ac6c3725d ruby-2.7.5.tar.bz2=0aa2ac44bc22859a39c43d08b7c7f457df05c2dc36b2574fd70ca399143ef1000dc5e496212db9eb055bc4258523d47d26db3c57a1a5a5d63cf1b3de9f81645a ruby-2.7.6.tar.bz2=4f7f3624afc43da25ebf0f01d5a2f92f72f94bab7423587cfd3920e089b479bf559b159adf2891b996f7e6a98c008a4f73a4a2170e2f8619417660ac1ab24bdc ruby-2.7.7.tar.bz2=24cc772ac1b56d3bb423f1b33716f221bf534f3717a506bf8235a698f8a454db7d79d94ae9a84067153c2f737b3f8f6085f34e36cc04be0d75ae2fdd57718870 ruby-2.7.8.tar.bz2=3a9db8d9e79318f869417f2ebf3365907febc0d1428116eabf3253c51d8420f255782b32fa30a54802b9f5f4187fad80dab0611cc80436feec84db87b0456ec6 ruby-3.0.0-preview1.tar.gz=b94892951f842a1538f4b99022606ac2c0b5031f1ede7eef3833a8caa9ed63e9b22868509173bfefb406f263c65211db75597b152b61f49e5ba2a875fce63a27 ruby-3.0.0-preview2.tar.gz=6fa4191425ae71e41894b60bd9c31d483a562ee8216886360ce18238ab48115b95be0367708612c45f634e7584fba8940a524ba0113ce0f36ce4df78a112d0b7 ruby-3.0.0-rc1.tar.gz=798926db82d27366b39be97556ac5cb322986b96df913c398449bd3ece533e484a3047fe35e7a6241dfbd0f7da803438f5b04b805b33f95c73e3e41d0bb51183 ruby-3.0.0.tar.gz=e62f4f63dc12cff424e8a09adc06477e1fa1ee2a9b2b6e28ca22fd52a211e8b8891c0045d47935014a83f2df2d6fc7c8a4fd87f01e63c585afc5ef753e1dd1c1 ruby-3.0.1.tar.gz=cb81db2c9b698cf8159b2ca6507f4c7f171e4eb387f5730c4b658ed632b7900a169808e6fbec0ee80598d937030ad5d9c56b63a2a339373ec5d9e1c06b7661d0 ruby-3.0.2.tar.gz=e1fba6f5429b5fca9c3f52a32535615fcf95fafa415efc71c46db4cce159f249112c01574c305026be5c50140335696042e47a74194caea045acbfaa4da738cd ruby-3.0.3.tar.gz=39dab51a0d784a38302372b99f96205817d466245202586d22123745761e9cb39db128ec2b984ebc3919b9faf2adf828d19c97d3fb1e56d44be0a81dc5d11b87 ruby-3.0.4.tar.gz=0dfded6826063c1b39bf625a6e13b46c109cb160c8648b78f0965f70e7c7a1a65f1c117fc8f2cf8bdb34d7cbf79fecf1f45d169d2323406d66ab27b18bde1d22 ruby-3.0.5.tar.gz=ea45fcd2ca53b87f18fd8696d00a1e340d2495443216aaf87d3f643cb5bd8bb614a1faacd82d07e7f2b72172397c728316a82d7c34a7b4566191268ea517ccf7 ruby-3.0.6.tar.gz=d596bfd374ae777717379b409afe8ee1655ade0c0539ada7a10af4780b818efe25a28aa50a2a7226741d1776d744e10ad916641f9d12fb31c7444b0a01d0e0cc ruby-3.0.7.tar.gz=66e5116ddd027ab1b27d466104a5b440889318b4f2f74b5fdf3099812bf5f7ef77be62fe1df37e0dc7cd5b2f5efe7fee5b9096910ce815ca4126577cb2abfaa7 ruby-3.1.0-preview1.tar.gz=63f528f20905827d03649ed9804e4a4e5c15078f9c6c8efcfb306baa7baafa17a406eb09a2c08b42e151e14af33b1aadbd9fb1cc84f9353d070b54bbf1ff950d ruby-3.1.0.tar.gz=76009d325e961e601d9a287e36490cbc1f3b5dbf4878fa6eab2c4daa5ff2fed78cbc7525cd87b09828f97cbe2beb30f528928bcc5647af745d03dffe7c5baaa9 ruby-3.1.1.tar.gz=a60d69d35d6d4ad8926b324a6092f962510183d9759b096ba4ce9db2e254e0f436030c2a62741352efe72aec5ca2329b45edd85cca8ad3254a9c57e3d8f66319 ruby-3.1.2.tar.gz=9155d1150398eaea7c9954af61ecf8dfdb885cfcf63a67bbcf6c92e282cd3ccac0ff9234d039286a9623297b65197441438c37f707e31d270ce2fe11e8f38a44 ruby-3.1.3.tar.gz=550cfda2ae492312009a58316e18fd77ea92852718b37443bcd76aac84ba6694fb841fe19bf23bee099f96f5aeed9d03e77c8c02fb194e414eca5f707adbbf90 ruby-3.1.4.tar.gz=41cf1561dd7eb249bb2c2f5ea958884880648cc1d11da9315f14158a2d0ff94b2c5c7d75291a67e57e1813d2ec7b618e5372a9f18ee93be6ed306f47b0d3199a ruby-3.1.5.tar.gz=23661cb1b61013d912b7433f8707bbcd723391694d91f413747c71428e74f8c7385c1304de7d08b70c9fa3bd649e4eb5e9acb472d89dc2ad5678cc54855a24ae ruby-3.1.6.tar.gz=624555ab3681bd6663bca7cf3529a969b9f0f16928559cfb713c57f763506c8740410c9b460d946922994859189ef2b9956167bd31423cf2e3acbf5a30086fe1 ruby-3.1.7.tar.gz=a8432aaeaee4f48027ab30b7870bc61350840761b9d72b0b399d8fdfa96acb3c8f1ebe63663bcd8d835dd89b21128a07ef8f0c0c47eb41b942c169954ccb7edd ruby-3.2.0-preview1.tar.gz=d24e77161996c2085f613a86d1ed5ef5c5bf0e18eb459f6a93a0014a5d2ce41079283b4283d24cb96448a0986c8c6c52a04584abd4e73911ea59cefeb786836e ruby-3.2.0-preview2.tar.gz=5e9ddcb1a43cff449b0062cc716bfb80a9ebbb14a1b063f34005e2998c2c5033badb44e882232db9b2fceda9376f6615986e983511fda2575d60894752b605cc ruby-3.2.0-preview3.tar.gz=860634d95e4b9c48f18d38146dfbdc3c389666d45454248a4ccdfc3a5d3cd0c71c73533aabf359558117de9add1472af228d8eaec989c9336b1a3a6f03f1ae88 ruby-3.2.0-rc1.tar.gz=798157d785ebae94cb128d3c134fa35e0e90c654972e531cb6562823042f3fb68a270226f7b1cf0c42572ef2b1488a1a3e44f88389ad2a6f9ca4b280a2a8e759 ruby-3.2.0.tar.gz=94203051d20475b95a66660016721a0457d7ea57656a9f16cdd4264d8aa6c4cd8ea2fab659082611bfbd7b00ebbcf0391e883e2ebf384e4fab91869e0a877d35 ruby-3.2.1.tar.gz=f8bbff5e237b501f4042ddc70a19ac1ce74f72f147c90daf7f3007a940136abde37c12a0f7444f713ede09ba847c2cc2897a1742823832e3dc8cce80073164e1 ruby-3.2.2.tar.gz=bcc68f3f24c1c8987d9c80b57332e5791f25b935ba38daf5addf60dbfe3a05f9dcaf21909681b88e862c67c6ed103150f73259c6e35c564f13a00f432e3c1e46 ruby-3.2.3.tar.gz=75aecd9cf87f1fa66b24ecda8837a53162071b4f8801dcfd79119a24c6e81df3e3e2ba478e1cc48c60103dfaab12a00cfa2039a621f8651298eba8bd8d576360 ruby-3.2.4.tar.gz=b695b98dac7bb2c8755a106d949cb1b1b91551092fad263765171ddf8a4d86585259ffab5f7cc9bace70143d645dbe5932cfc61c6dba7817177de391d76bcd79 ruby-3.2.5.tar.gz=d86c0151fabf21b418b007465e3f5b3fd0b2de0a9652057fd465b1f7e91b01d00f83a737e972ea994a5d9231e8cb27e64e576852390fe6c2ad502f0d099fe5f4 ruby-3.2.6.tar.gz=26ae9439043cf40e5eddde6b92ae51c9e1fa4e89c8ec6da36732c59c14873b022c683fb3007950d372f35de9b62a4fabbbc3ef1f4ef58cd53058bd56e1552cbe ruby-3.2.7.tar.gz=174e70ac20a21ea77e2c5055a9123a6812109fd7b54c0f7b948312b8159eedbfb11c06120390c158430ca8543e36893da6c809883c82757082d22e08004c5055 ruby-3.2.8.tar.gz=342d9ce337936cdbaa5d63a4d393edf0594e431add8cec3b6f17b884075bfdc5aa7a843c03f4ee3bece01700dfa4707bba653715a628d9dcb230762dbd3e5ac8 ruby-3.3.0-preview1.tar.gz=0f891f140ddc6372aa7c4459f8784126e0c341db7b80e72c51e441c5153c43c2d7b965f7807c076862ac84b9b8b0c6a66bbf66fc341746016151397bb21c782a ruby-3.3.0-preview2.tar.gz=1c5a13e519e8487fd40d932b96d14fa729521925c288e7841ab5eada628e506ceca2605bae36eea1aa505d9253383d53cd933b7a4bff96e6de5b1130c7c558e6 ruby-3.3.0-preview3.tar.gz=94db07a6958c09809b2e5b597fa55a121074e8bacb3bf588c83cf0d35b07a8b070172035a49d1abf0d8ee364a9ace824f34e677f7327ffe1acdbab0938ac49c4 ruby-3.3.0.tar.gz=26074009b501fc793d71a74e419f34a6033c9353433919ca74ba2d24a3de432dbb11fd92c2bc285f0e4d951a6d6c74bf5b69a2ab36200c8c26e871746d6e0fc6 ruby-3.3.1.tar.gz=0c8ea922a79152ac7adbfb2541320565bce6a631692fd39d499a06f53ad6339c16fad8374d171351ed63f7bda3312b26d4f8c058c5b6df3d7548fde372c718f1 ruby-3.3.2.tar.gz=a15ba8d6c2830fcd1f2b36f671acf9028c303ec78608fd268da0585db8e95ddd971666e8029bcfa2584da2184a6534e1f2f2da07fa7ca4494e8d842eed206f00 ruby-3.3.3.tar.gz=0388a96127eb6e53b836f7954af51ff62b84cdb7abeab823cb1349993d805b151204e426b9ac04ca8333fbd5e01c386d58bc37d34c4e9286b219dcda7542a150 ruby-3.3.4.tar.gz=56a0b88954a4efd0236626e49cc90cdb15d9bfd42b27d7fc34efae61f500058e58cb32c73fdef5f1505a36602f4632d6148bf3bd1df539cb5581ae157c78c22b ruby-3.3.5.tar.gz=5c482059628ef9de5d8a6ad4751f8043f2fc2b159b768265be7f3ee0574ad51d9500ee4fc9146c5978fbd51313039c3de39e7b7a4dedc9bcd5d09a41a713f1a7 ruby-3.3.6.tar.gz=4ae22f5c2a1f7ed84aab7587ff04ce4d9933cffe4347deaef0ab88d22c9780f274c1664a4ee1dd8235bc3cc749be828ffa8db7cb5f5002339a59a599acf3c729 ruby-3.3.7.tar.gz=9b48be05d1210e9194c8a6d77dfc3227599bff2b55fc9bb2049b11547927deef530ece9a2a505600cdc492c8517b1bef7ab5f2520ebd79ffcf76f0a734fa763d ruby-3.3.8.tar.gz=c5005ba4019fbae19650a9a9ce139e13608345065da9e2277dbeac9d0ac9e3b07b666816afe7be690088080c8c9cf88a8c372971d429479dcebea80d6c2e3883 ruby-3.4.0-preview1.tar.gz=29c0e32179f7b823b6708f5328e495cd333fe8dd88f7df7d9051deab47add67b14d899bba565bba1a77e1b04c9693d9708541445c112925777bb6891cb7b2b62 ruby-3.4.0.tar.gz=bc70ecba27d1cdea00879f03487cad137a7d9ab2ad376cfb7a65780ad14da637fa3944eeeede2c04ab31eeafb970c64ccfeeb854c99c1093937ecc1165731562 ruby-3.4.1.tar.gz=93acc262e3b7cf86aeddebdad5b8938c187b9c44a73b0c252b6f873745964001459ae45ece7376745916e317c24895596a42b4544e836670fc6e90058e6f0de4 ruby-3.4.2.tar.gz=edc3aede0aadcaa62343f38ea6cab7adacedba810d883f1d9c3e6e24e28e24e0e27a7df2c8e517cc2aab940168fc4872ab8cad000598aab5940aa79072ac190b ruby-3.4.3.tar.gz=7019889939713c3e649003fed4d973dced36239fc354cfdee2d01dbdeb7e8512881a31b00efc3d5017f08cd492aed7914d15927bc8d076c0cae7534273e471e9 +ruby-3.4.4.tar.gz=ec52e338a9558e5fb0975be4249ff47a2d8c7926d8ae3af58f4e5a233f400f75da88ce8254bac7a8cd7a6b0b87fd4eb7315944c76be43719782bd0c16040197b ruby-3.5.0-preview1.tar.gz=d718973648705636eff5933a0919132fd1f6b9afea432e09cce1265c6e0125e11cc94dbff84cba1caefc03190c48d8af4a27337d2af031f3f1660ca3a3531211 rubygems-2.6.11.tgz=3b0dd38c0aaf313c59e299dcf54f7bfb6e6d84b8b739573ddaf599e584da45ed7b1465f6521131b32f237e31a4796d9ef455b8be685064b3fd77a0355dfff13e rubygems-2.6.12.tgz=ebb672488b50f5fc988eab66ab14ce8e887dcc635f71239a85e32fbf1e919ca70196eb4d3f2fee3486cace7064bab0b8b08339c754b723198e1b0b0a0984ab54 rubygems-2.6.13.tgz=c952b6061a9a0778db304c3aa5bea693e71ae2564abfb19f8b123eef66eb1e3877fc7c36f4f1527da97bb320870cbfd4574ac57ad88e850a44fadd67ebdac152 rubygems-2.6.14.tgz=7743845bc5265df3782f85a23896cbb250d8a2bbc9934a27f274b001afa7aa62f7f00f616296f74747ea612d2cb37dd7f533c931aa72550d84c64d2a73d60daf rubygems-2.7.0.tgz=0bd08fbabcc33687c98365ffe6794ca2a5e82160b0297479d4f19bd899d176b7f4efb95248898b26d873f9fc7d86c10cada6e40cdc48738b0bac261c3aad261f rubygems-2.7.1.tgz=fa4ea123760b03b8b8e8ececc55c9dc34249073fb267d310bd903aa7a613267e5d27990bbf28e32c9a746bf884af8a84a0dc202297272f9d477f7710c21bfb60 rubygems-2.7.2.tgz=0f48c6e46663780a571c7ee0e6e772f2e18a755031e7dd8ede7870f238c214b9e3e38153b1ae8f1f78a9aad63c1a079b86573b3a25c57a600d842bdf92b9c4d1 rubygems-2.7.3.tgz=2782331b31947a23f85b285a3d5e7b66e34fe5847bc84dca4f1e6bfe33ce187ab0cbc814229de8111aa19490b656ca78b7c821e4ea6b425449991c01371b7565 rubygems-2.7.4.tgz=90f72a46709ef847666a6a23eecf24521abd5c294b2da8a246bb4c7f85daf4af39a0634fc8093c7bb7ded2ac137ea27fac5ed94af3b70c49e78594285c7a40ce rubygems-2.7.5.tgz=86957f1c438070135df527a15102e40487fcee93a55251463095e4c8794a8616d16ed9bdead0e0ef83c44806bd5016ecd9e178bef608b66af2e68e2c9c49e941 rubygems-2.7.6.tgz=bc168afc40c974dbc7c37eb5678432ba2ed7469c3f007a159699467ff2cff5205c508237193ee8becaa6eb555b043969cc5f92b2aaa6bf7c958dd7c187e258a7 rubygems-2.7.7.tgz=f93b7eacf5ef8725c40d618daf9deabc7e9eed74b3b7f13ecd16f89205fe24958e782314c52f8a8fe3205b93e20b830b4fbf7ff8944ff1cf56feb7de2d773252 rubygems-2.7.8.tgz=3d1cf68377dfcf102028342258aaff5a7257d2d2b34a80508c85aa258d810add46e65a157f902c271b0b7b568c437372d17246e89cd88f8500e47c008d17f1a6 rubygems-2.7.9.tgz=5f699f47bc24d8ffd4f8f44a509a9df71fcd945ca2574dc9d5050bfe06a44830a368f45d204112d7a4f1877e1600a6fe4d1b6b68f9a55288664667b4220a7d72 rubygems-2.7.10.tgz=48a18c0f202f463c38cf5dafecfbc7cc39245e63c7a059ef2cefadda478483794a929ea6b7e0ef062dd4423230746f1f09d7bec06a97fe3ceccc3325397a3e71 rubygems-3.0.0.tgz=047f4d446aae414e4803517088ef47d5cc66319ff08a3795c6d69e83eee9f3e7c3b05419858f7e5b6a8ec224990ca01178a9259961ef2d7ab737bac352a0f18d rubygems-3.0.1.tgz=dc29ad51ec67b1dca82a23973ea92153482788964d0755bdcd3c650116915c461c6e5fb1c826be3ee04a497fec4ac2826904bd406f24611e77cd8c9eaf4d8729 rubygems-3.0.2.tgz=90b46c2cd4f8baee74eb488a40691cc00e754cefc42029d485163d6ad7782df78ba5cbeab08eec6a4f71febe0f6e635e12a9381393008c58eb5e16396df93fbe rubygems-3.0.3.tgz=1dd585243341901c7b4cc60a4902000c10ce57fe2cc9c28e27e274a2e6029f936cde1c99d7097c93c2c5b2c8bcee5d692c8fe5cc00c996a040e4954b674e330e rubygems-3.0.4.tgz=887c64226ec0b32d33f2ea331936683406d54dc74d19e658a23521e25ab50aa23534fe9eecaf696154247ad1df1d24c233d8900b9aabc79096eebd6afef3f775 rubygems-3.0.5.tgz=f5a97cf67d7d043afba7c1aed014f1b64ff6376ea74d3d6533496bc5ca9742e0ccce1a157e6f67d8fcbe59d8e34bbfbcf4ed8be97acf2970603de6381043cb78 rubygems-3.0.6.tgz=1ef1822a2b19790a36a6d242b7d4584222617baa27787ec58961a9cfeb2733f19f9085490ffc72ee375d3153c7114e050c42e68fc8039e727fe5961b09365ee5 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=5dfb040b746e462c297ebcdf84e0f07cd74b86852055dcf0a7cf1814112099bc674bcccd94b03726aee76b253c9345a45d046cbfea230647644f0fd6b1c1ec96 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=17983c442c54d19196be3626e25c64f5474139c0b973624832ba8730efb047bc747c02e59c82f38397bf012c63ab83f79a9c1b64311cab796f08fe96d7d12a1a truffleruby-1.0.0-rc3-linux-amd64.tar.gz=b0b57082d61317911f101da617333d81ee6bede6b6e18f9bed86544dc413339c830198d90cad7ac94c0c8fb690adcfc559dd9f530abb70507ff6a76eee552b61 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=18f9782de56269389320ddad779ec69c168909198d4572e2ea4c18bc8082a539569a76760a6a6da58722fe08d77d83904aaba14baf4075a2833cbd2efc45dff3 truffleruby-1.0.0-rc5-linux-amd64.tar.gz=134d9ba5db7b8a1960d3a88390cd6f7503a0e8565094fb127333d122cd773bfbf9dc976c659029007e6fb68e93486293bac2ee29ab21dae9cb0c06ba57dd2c72 truffleruby-1.0.0-rc5-macos-amd64.tar.gz=5804f1f27916176f5a270de8aac85bc48c38ba37c4e719b09f5777e5c42429271819378cfe096c3cc33d406cd0726f2e37658020f97a438fd53751019831569a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=2597b375f590755b851d3b8cbad3eeab4c965eb02d0c944044f57e39f6c3db1e2f513e2aa55db789e4a885c697f81ce5c8bdbe9a7e44ee30fc09d234e44fb512 truffleruby-1.0.0-rc6-macos-amd64.tar.gz=2eb177190de0408dfdaf30264132955d1db7783ddfb63880d97d5933f66c5662794c3bb6198edf230fbff348674203e61f7f5481e74ac875974467f2f128e939 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=ab3a3dc19f903e68e36b135729693fa025a7c1950139277255e48c972387ef8399beceb3252ac37cc70c0df92838f8a0ba8c45f53665ac4286ef23f9b240806a truffleruby-1.0.0-rc7-macos-amd64.tar.gz=b8423f50a5292e211db7ebd7e2b987fd5c9eaaf34eba86b0644d2716a7f068f2e56deb4357c516b87b437e64fd5ce8515bc181165cc1042c6763f27d71baa59d truffleruby-1.0.0-rc8-linux-amd64.tar.gz=bcd05d304ee9b4da97193575fb1ad78041a0c7710bb444af6aef12ab4261b1873f472175ec51a187a5e99da481d66b81a132fb691643b793e87d655f31d54657 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=2c758221793c38ca8af1831a5d9f3abd555c406569508ac3a86d3c1ea5baeeacf65abb6e904ed3b1e58f555f51bc85ab171135ff4c3d0e08cdae994a861cbda4 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=42e60b69957f77a8623e0dccb7d215e800c27c622364fa76b9c574e8b1d3a4056a058b61ed91eac2375ecf4e51e482a6e17550aa2894a44d1db70687958033da truffleruby-1.0.0-rc9-macos-amd64.tar.gz=18556ee8d2fdec6907fbc8fc33d8b32ea0c58d40ee3df084ffb233e2fcd3a514a553f97c31dcc25dda3f86b1b805ca5fe3c9bf8cb078b92325515f09db6b88ba truffleruby-1.0.0-rc10-linux-amd64.tar.gz=10a7cb1be6214347469d5797091f73c3d7824bfb32a47c13566573a383380b1df9b79b7901ce0fa3af1c97285c90afac21e2de7a66ed88d9495846743b3b25e2 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=53f0939d9d8c3470cb79316d865b765816032528d77a3cf497134f3aa667a6253ae037410801261a8e7d0628198ac5f6aea5ecf9b7313f06ccc1d5e9f94e74ea truffleruby-1.0.0-rc11-linux-amd64.tar.gz=f89bc9a3310634d39f68006307da0b0ddafae036089bdd663e8372777a9562d201a4e69b2e1a602cff5fba6c78a8d4861b6d1020679bd0c72c71b938a4f36a27 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=3f461c12fa9fa57a55cc390eb9887df88f404661a77bffb44f82b4c7e9021513a6df9f6d5f332a36ce0c28ae7e3d5afbbe15cc4b814bc7f86dac2e5ec280f947 truffleruby-1.0.0-rc12-linux-amd64.tar.gz=85f042c308ccdfbeb318cec37056d8d970cab51cb0779425b85b8f76b0a1dd9cdec3191ae2b6b9b6be6e95767db814496450ed20076addd9bd495742f9de3c8c truffleruby-1.0.0-rc12-macos-amd64.tar.gz=067a0f63bbaaed4c8d4120f758c8ecf8c52afd1d30ea9d41489e26289d57a574d2d4ae29e29655378510adfb3f4a07b04b403d6ee98ee6b3d3aa8bff9c8d718f truffleruby-1.0.0-rc13-linux-amd64.tar.gz=1eb6b80cb05133d253f20629a11ed9ec3f37da002d5668cdc6577b2a20524e0cdd4d739d3f1aa2e8c518e2f7ebfd519ec1c647293714a1133ad4d569375c0e69 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=e3cddb0d0ae48f7d5ee4dd094ddb5a13f6a7aff1521b1adf25710971664b235cf67144e3b81525fd710dc49b6f6f6ba06e10eee1df5dc08119e9494c6be86934 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=c982194675b66a0433bd5517fc6f1564db669f595f8c7ba4819bf37e0599474d49a0c606577a898c27fa5ba40ab793c62d8211e7ea398d6b3e2bcc31eb5d55f4 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c14e396396385644333fb4c4aa1fb4b934a3f4e46312146821e5dcdaa097cb5b1efbf397c1dd6117d909803fd27ba8d835904672e98d43dc565e907fed752e1b truffleruby-1.0.0-rc15-linux-amd64.tar.gz=f27a75f929a6e945e49ceaad12f484fdaa918469a2f639b572fc4737b78e1cde0881697057e13a58b2fab7ac64c3a71bc9951561c3a8728e3dec814ef5e95fee truffleruby-1.0.0-rc15-macos-amd64.tar.gz=7aa029c4999d4608c9bcc491771b0434267032dbe9dbf504728079f87ce93e6a90e0fa839295b88c00e5a025186ed0fcc42361428b7874c05e222edb108d6c02 truffleruby-1.0.0-rc16-linux-amd64.tar.gz=e8c508dede11d4f54cf0b15cf92b50caad93076a6065bd2d6784c5ca739f5923ea2b894c6b2b52131f62187c8b305cd11a960fb5a670789802d59b6b2999f0af truffleruby-1.0.0-rc16-macos-amd64.tar.gz=841eff077c38bf594b101edb15942f601ba0dada2122b21b016f53251aa2a635b8d0b63b49bdfb50259b2545d1f498bca95d5f771a15a28edb0dd07216c9b709 truffleruby-19.0.0-linux-amd64.tar.gz=8ec6c7829351e0dc2cce57305947cd540734fe5a0b95b9501d4179993727ab2c331e9fb639b9865c0fed596df3906adf3dcf2efb22c4cfdd23a3dc2137025fd4 truffleruby-19.0.0-macos-amd64.tar.gz=912e0c15d32e40c884b2caaaf9a86a71450d441c960ef98a63dfce80353619073b146dcfe03d9af4273b2811d0899eebe922cc84a51d6f5e6826cc436d793f78 truffleruby-19.0.2-linux-amd64.tar.gz=eec92bfbd776acd61709a428b90b1029c5ea83e5ea839304d23cae3a541dd4fab3b387691fa76643f55d5939c9cac0cbe70dc0b5786e5e0e5d20f3fcd9a21356 truffleruby-19.0.2-macos-amd64.tar.gz=ce647b76c9931feac55baa5acd2c87d8335c606bc5cd7e462bd92ba1b09f4bab5db927f021e3119abfd85c33377003d060f36cf64eb121954fce8878112f01b5 truffleruby-19.1.0-linux-amd64.tar.gz=db01e6dc09fc5f39ca466aa94f725023d49a8f52343f129bf8c32b7f5f76ccf2d573ee3344fce3d5aff9983bc9af618cc5ca6e1dbba93b3f604e4f33f8a69b3f truffleruby-19.1.0-macos-amd64.tar.gz=f002bc0b6efca11eb97c4aa6df33d2e0fcc1de3443efd39d912b028df9dd8954cb76ef3ca7fbe140f4e922d6ae4c1a6a20853490ef1ea0749293e2fcd4ffe8fc truffleruby-19.1.1-linux-amd64.tar.gz=ec031e8c216e31f034d97aaccd6441869221d6946e18f375b44a866550b8e8eb4b2fb923f9ce1a62853bdcd5b9201e0f5d2732ca6525d80171d5732ef522bd25 truffleruby-19.1.1-macos-amd64.tar.gz=1c15918af939a8fe1779b71d9e53d2ce09ca7353173a3b357905d9fe1981ff013cf0f90c6b47e1ca66dd168c2f2d742f28a5fb134cc0231d36146da99f91c3cc truffleruby-19.2.0-linux-amd64.tar.gz=1248bdde9cd3651d7042fe4cecff4ad35534868d543fe2e6f3a5bfc3bc9d10d57b4139fc070f0a03861436a1aabc9a8ebdf3356f39b77a4b8f6a1dcf492f70a4 truffleruby-19.2.0-macos-amd64.tar.gz=92c3154ed229a115cf392826494745aae06dd9228dd0996c2c44c550552f13f9c254367d068452fa4a84eef79c19601c79b87e10f3121fd7b83b803514a41cfd truffleruby-19.2.0.1-linux-amd64.tar.gz=53c78cd1f255f2b7031a70a42b65c0bf80c510b9254f5d7ba82b4787f55f5b09cfa9544c424a90f4619a74179fed07c168bd501e34772ef836a773e89c467cc5 truffleruby-19.2.0.1-macos-amd64.tar.gz=ac11523cd49fac50de1e441039e429fb8cd6c7051d537e5083b64fa68eaa19c9f0a966b269da906c367985f229af82a4811282dbfd0a76ef6565162e1081a659 truffleruby-19.2.1-linux-amd64.tar.gz=c5ffc1b592a74e836a4f6ec75b0e103150a4a40d3183ae853ead38c951a85378163111cf0bd2b81e44548c0a7aeaded3ae8a7ae558d5a02dc9e2cce992b79b58 truffleruby-19.2.1-macos-amd64.tar.gz=bb467b91f66eb7d1e6f1a54a7bc0a3d9503bcbd935e8a02da9ea0b749a51e354b1140d4a4dad6fc05312b560bb9ccdcce4f6583bccd19bb5afee19bf494102fe truffleruby-19.3.0-linux-amd64.tar.gz=0e94777a3feabbf0107ed40847e20dd4e3696ff2b7c3f6ceddf3a53ccd812bd003c84c62a750e8fac9d2490374bf792d69174b48c3ed36b593485d86729136c1 truffleruby-19.3.0-macos-amd64.tar.gz=95470c389e24c865ecdc3d299005cd98f8221a128f3cd75f899b6b7ae5d6dc07962443ce0ff38dfd014589d5aaf08b718dc870a72eb7ea6ced18ec2b2db63095 truffleruby-19.3.0.2-linux-amd64.tar.gz=dc5309b71980657f750b4dd4f8b3bc4e191bc305b638b1e562ff5b0ad7fbba40079ba674caf46226a46b5ca58c10f812354786696264742f351b129fb088a672 truffleruby-19.3.0.2-macos-amd64.tar.gz=ff1c37485ebeff3edcc7081ce09bebe5541012dedff6997662c7f8a064e0ab10bef9a5cdf834263a06ae04ca0391743948bcdea6e6c9d7e1cfef9f21523c2bdb truffleruby-19.3.1-linux-amd64.tar.gz=c724547a9eacfdd135ce05eac9dcfe74e58a5e77c97f88103f83b8513c15c975a0ecf623f623a425ec81fad1b64d3b5e135660d6943608ad08048cda00eace79 truffleruby-19.3.1-macos-amd64.tar.gz=d746b2ad410c15d145d36c676a070ae454ba8e5ec6c594d5ebcf54b1fc719f98e8b8f71b6fd504c3d38df286bd11c5114f73b5ba39be312b11d42d4ca1a17d02 truffleruby-20.0.0-linux-amd64.tar.gz=4efea5ded5fcc6886befba3a3720fe1e5b2e376d46738565e8871a1ce0201a33ed52e78b8af2fb389618bdea99466d126d8537dd0919b0c13f8ff1940cb3e52e truffleruby-20.0.0-macos-amd64.tar.gz=b36488330514b77c7115689042cf2482a0beb9f72a0b05fb4c7a6ecb0835a3da47c3b15c41abd6ffced023e65ecf7eabcfbcc6e41901dcddd0fb3dfed46564c6 truffleruby-20.1.0-linux-amd64.tar.gz=116d57404540b85c15b321793a6f985624a2044af544e659b3607e50159703af5d445e22bff28ae2182dfa752f7500d420e250f6deccc98a2f01e89adba8ac3a truffleruby-20.1.0-macos-amd64.tar.gz=9b1267101dfe78b85c79f7528eb4de96b16933e66d5771efa6272372dac0fb35b199bb9d42773d61f4fa7a15d6cbd18b5753c148f7c3e477c7c4b21633f12b88 truffleruby-20.2.0-linux-amd64.tar.gz=a37eaf8475364b74d948979ac13dc6e6423bf11949ad1d0f2925f78a4495e80de9767001ccdb777c8cfd7f545839fad4d842522620c3acad179404bc4ce6752c truffleruby-20.2.0-macos-amd64.tar.gz=964c1e02cc53e1646060334a9911771e679a8344d811a0f77d5cae3529dfefff259c45505ac84b7debb958514cd5d2276ffd435802085494e0229dd140ce8f00 truffleruby-20.3.0-linux-amd64.tar.gz=ec2d8ff6a5d45fd7091e26430c67cbbdc0f8ffa41e9ac574d48802766fcd144e1f446db807700247ad6d8046b7ed070b5da70ef667e576d6fea60cc64ea5484f truffleruby-20.3.0-macos-amd64.tar.gz=1878f94e05a3c40484bf944a72412b179aa5415a16a7ebc1610cb512a1e1c4a2ce0e98685257ad6e5c14745245c35bb5b28205fb687292c4f17193cbfb3bb606 truffleruby-21.0.0-linux-amd64.tar.gz=b7d1b76cc015d136dbd74515431f4447730850475f81b00885b71b95819134db2656d941736048db42d519f03e1f2df066226513b77208adbdbbeda1f49cab11 truffleruby-21.0.0-macos-amd64.tar.gz=7677b827a9c1758d5f941c512cb0fe8daaa19c3db77b485d7dfa43940151d6b9094c4d9271e18ef5014630142dffb93d168c7ac631a3b5eef6fc61b2f9eecf88 truffleruby-21.1.0-linux-amd64.tar.gz=010e9fb78cab12486641780392be0f284da08dfd955f3a0d1ef72adb52e1c9024b54dc880173645aea2af680b3670a6bb01409198b757239edda4cd9bf2b1e90 truffleruby-21.1.0-macos-amd64.tar.gz=96ef8481faef1bfa7f01bb4d396818ef6f0943d19c6a23dedb68f8346740b72bf06efc707bdd29158cf991cc7073c97f429a07b02c2a48050512b46369850058 truffleruby-21.2.0-linux-amd64.tar.gz=c20af04909a852cb676c90403d852fb367d56eac0f9cf8ba42caa4cad1013ba393cc4611e434614ad132b7b0ed61160aadd887001b08de0767cf58f5e149efe7 truffleruby-21.2.0-macos-amd64.tar.gz=0b8d9633fde53aad78f0baf52858cd5a5716f53ff21698baab17da4a625b4369b88dbd664193e3f0d1b40e64c88699ab4f04bbe40f54189a588c93678962a7be truffleruby-21.2.0.1-linux-amd64.tar.gz=15ceeee383114f974aed5f16c99131d56947e13cfe248b97e55d61263ccd51aa56fc3e0df215196ef7f80ccba9e7f19e7f261d7a91d54bde2d9992caba682d82 truffleruby-21.2.0.1-macos-amd64.tar.gz=8a8762d90c19db4f48433ce0e3f3339e290685d79c6ee9bb7d4359c741edfa6a7360ff65124433d964730ac25b2cc6d8b581191b0a51479f11c2a80031a6c1c8 truffleruby-21.3.0-linux-amd64.tar.gz=b0c07b1ea797de92447a81b350d460c125a2efaff3c290637c4bcf1c216b5abd11148cfb143ad397062a96f36beade8234d0785c42f58fceac0011f629a5220b truffleruby-21.3.0-macos-amd64.tar.gz=42e607fa52a534123989ad232691ede65aa1c615f39320d93aa8ab9c21924eea7bc0aa49aef1a540ec972e2b3dc775d22a99eca3e0c9bc450c525f9020fbb975 truffleruby-22.0.0.2-linux-amd64.tar.gz=2231a0cfd27238c34ea0bbad27ba387453e48f39032607cbb829b347ea6ac804df15eb3f84d50b09248782d6202284498e7bc9aaa2060f0ce81bb83a84d700ad truffleruby-22.0.0.2-macos-amd64.tar.gz=1d7ac44f0862ad23cf17a7bba73d23dfd4727aadd9a3aa9633361e9bcd19655d163e160eae9c8db8ec9892f8fbf82d7a38b1cd689475bf41609a828208098623 truffleruby-22.1.0-linux-amd64.tar.gz=c4c2f9bf4236118c8ea62c08bad89e1034ecdfa0c4815693961c4d2b1b30ca043fe958abfec9cf36a8638aa2e005e71fcc244ebffd9ce11eb68cf48bd98c29d3 truffleruby-22.1.0-macos-amd64.tar.gz=507004ade838e614955e23331845839be656aaeae7869ed3d989c10e6491775a12313ac9ef03e14945f20f5e76d46ce6f7bb860af68a627c48065399cea3c567 truffleruby-22.2.0-linux-amd64.tar.gz=37c09249ef387df3e0614f646abb444cb5b7b2751538ab0432e703abe92a81b82e0d15f89d5ad7cd58afe5f30d9a92dc8471d19f1c1ce10b50478ac74f247739 truffleruby-22.2.0-linux-aarch64.tar.gz=49a7cfb4c81980d9c7a1588ef9f76a9bfb759d4b1925ab11f230d99c15a62e162a08249d23cf5646e2d38ecc2005e27103f2e5d92b83b0a182a4e64319b70c0d truffleruby-22.2.0-macos-amd64.tar.gz=d4c206fb0a5e63c5b7f61f2e62de854e4d0817075ef9ded237d98cd821c286e88d7b150d140d9907a957209f39be96c7025560e3908c89aa337925d2fba690af truffleruby-22.2.0-macos-aarch64.tar.gz=a01c18803777a74717ad699b6ee51eb759d881fb436d24338b557c52d4a693079d7b55f108394ccad0dd69c974cb895f4a36854355e84fecb67e41bf9eb18514 truffleruby-22.3.0-linux-amd64.tar.gz=d53472ae892dadc81c6fe63a597ccfb67e133958431b11716db4d920c78fc86f7496e4b10322d041c900bed77d27e02850da20aa95b297d63a9de2e72cdf3c76 truffleruby-22.3.0-linux-aarch64.tar.gz=dab63d49db4722f0c174ce8b882413102520ff649182946ba332ef5ba0fc6b58913595539a20b59e460faab2fba36f762dc8eb66aa729d4a6bb90feb2a95f053 truffleruby-22.3.0-macos-amd64.tar.gz=15c91d25fd6fb1d9f3f2a0b36676da5c8a76d62be86cff463ebe6c7e6aed2d9b6de9062021ab1b9b29cfb7a92b5682c860939acd71d12dba7e4a6bf3964fef3d truffleruby-22.3.0-macos-aarch64.tar.gz=7c44d0dd07e4ecd84a92f6dd574dc185906121b8eb75f6fe097b9d4738aa30751664d70e9027e072eeaa1dffa05fe7bcfc06be0c2dc950142f60664baf5eac69 truffleruby-22.3.1-linux-amd64.tar.gz=f41d3bd22500b7291121368169f8558df4563c840a01b70ff7feea3593f0152d8d77d4437af362bad62f25b79bce1ce8ddaa1bd8172a2a7ef8b61cdb6e478c9e truffleruby-22.3.1-linux-aarch64.tar.gz=1ca5221f0dc5ae3e0bd9545be474e115b2e62737701df95c6ee6cdaae5d82815acbe6af961ff23afee64dc26e655c7786d4347e3694c140773f065534322ee59 truffleruby-22.3.1-macos-amd64.tar.gz=bae16cc04c6018703833121f4258c3f18fa5062309d0600458be3c51c838bc63976a026db0f28d23005df9b640ccad0a9cafc56610a5ca9c24951c66b62097d9 truffleruby-22.3.1-macos-aarch64.tar.gz=b56e230d8fbc95d19364e695aaf1e552238b02ace7056f636808a7d7510777cddfde572ace5238ea1e314351bdd1a053ab3912d0889f51f55c722797c83eaaee truffleruby-23.0.0-preview1-linux-amd64.tar.gz=d538412f12d5ce743c351acbaa483b8b85dd2cf84fe06b3e90ca21f3c2fc0465df9c1773b3515fe4296d599f45e9cbb935dc5a69fe45668321e5639d58608ef4 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=f10b5ac749b11f93c2469f2c8a713ad090cb653761ae0a3e1ba4c19b0c96bd61c5e8da74d8944f9487c2d327d268a188f2cb56028d2beaca2a7816e63123600b truffleruby-23.0.0-preview1-macos-amd64.tar.gz=cd9db49c4253bd66cad6f9ae111c83d3befd0102a7ccb72a2407d22dc576ba7f3a26a90cd479f26dee3565d2f893a2b7c8b549e2351336f35d2632e57966657c truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=28b77d9943cd1617e0445633a9fea8911cfa975f5c581192439cd0944d2a17c2b0558e3e4112588b5fc77b57c48d857ad68ac51fcb867250625ad85406d87acc truffleruby-23.0.0-linux-amd64.tar.gz=da702de2e8c994f2646a3de5b44824210dbd37129cd2f91c3bdd990a1b0d0b05dee4443ad0f6cf98fdb4e489c9f4cde64f3561baf486dc642d4981a1a1812925 truffleruby-23.0.0-linux-aarch64.tar.gz=808254a154adcfd1bbd6e22bcdafebb6169c6f8cfd1c55382d446bb66002384ee844dcd8b5f642703ef440f7566645d190081f45e04a7d8d59bf87571cb4430a truffleruby-23.0.0-macos-amd64.tar.gz=f775d57e63c606eef424a1115408ed8539ef47d6bea0125ad1de7ee4fd5971e96747cb7f5d22d91d2f004edbd6ed6b9b5bd014127dc1abe7821a3a987a72d9dc truffleruby-23.0.0-macos-aarch64.tar.gz=000069854458f81d97eefe14123fbb69937942825e77d35602d55fa279123808177a34f252aec9dcfa48b93feacbee81ae0f0e7043c2d8a9ace2a4bb61ab253f truffleruby-23.1.0-linux-amd64.tar.gz=1868799d989c51798cf07b5243457af7ae2436dd19805fd634c98b2f1885266b5c3ec81dde668c2e5a290e9028f6f9fd223d153489df6ffcc74d45240aa020ad truffleruby-23.1.0-linux-aarch64.tar.gz=2766621877996ad35fddb94f978feed531307e8abf601dcf863754c96782b8149c3ac512dfe6dd2bdef0fe0e8a968bdd77608c41020434aaef4e7250c09edd74 truffleruby-23.1.0-macos-amd64.tar.gz=06c5a1d6ad644fd81737f0a1fd24c1529f712abe2a4485ad597aca7c35ca2af898121bb5883552cf518e2afdcb4221c8ad013759b46a69e34249e7c5ebe2b170 truffleruby-23.1.0-macos-aarch64.tar.gz=496cacc5cf413a48b60184e097a962ab5d2236c539f07cc0a9a2d9ef57dfc911a26b125cc3ad9408f6170c6f93c7562f35729c8313be0301972be21c10097942 truffleruby-23.1.1-linux-amd64.tar.gz=dbca85e281bf2484371a0bbcc202ca700acc704304d966b9202cf3835e82f6eb502e43522355f4c9e5a743877d93f5609006fbba2c5e6343a89de130e5209f6a truffleruby-23.1.1-linux-aarch64.tar.gz=6a58842d79247d8a64c513d68db9d53ea5640c02f71a1bc45f103baaaca67bb224939ae5f21ef55daa9d9b9697404052d39a3c382768ca366ab7892b8bf1abbe truffleruby-23.1.1-macos-amd64.tar.gz=7cc6bc957b7ffa42e9fbfe2f6e3014bf1e7996f2754e9e74377078c2c7bc7ac8e10598f1e1452839fc5b9583c823a2a735731ca193a6af2814a02566cc4cd9e4 truffleruby-23.1.1-macos-aarch64.tar.gz=a85b8189ef8a280f6a27d4c1c93893f844266dbdc15b8c4988cdf581613a353508fae4872ac9380efcc47f36357e137861521712c00ce8548041762a8987a9b2 truffleruby-23.1.2-linux-amd64.tar.gz=6307fd71fb1431fb12346d1f13dee4b3afe53947e8a9c1f3e3aa0baae5f9fc9e1496ede0a7d86b169d912ffef9625af998b4e698dc57a2a649140150e3fae28a truffleruby-23.1.2-linux-aarch64.tar.gz=0f0c5e4aa4e9fbc9b9f91d2b3d3fbfe26e78c5bc5b369fc78dd54775a7582b8c084a64f02848058bec79387fd80b09a5a5594ecfb268635fe76e1f9d957c2e92 truffleruby-23.1.2-macos-amd64.tar.gz=648401a73b29c28862a1fa077c2e1bf8fff65015c8bc690ff883a00a3dfd99389ffdb71f39ad85a4f16c531470f4cc891ae51ec927a426b0fa05fa85c9c6a2f9 truffleruby-23.1.2-macos-aarch64.tar.gz=4ec88684c09aacfa1d8bfed9a17243579ededacecd869e98e12841710bae29ed6e5f080611e53fc217a853f730bb2a9cb3d47ef15443eb8a1ad76a120118c8a5 truffleruby-24.0.0-linux-amd64.tar.gz=3a59a4dc58ad03549d8e63db1485767757715fc9aec21b2b67b1440b13871a04541abeff9bc8201b3088e1865360b1667459e536d3cfb09687dbffca95deafeb truffleruby-24.0.0-linux-aarch64.tar.gz=50f3993b7362bb6e7da80f7327df3d079bb02f98b67012e2135005d77e61648e4f3268f767d8ca245ec5889ff934fbcccb94fd5ecbd55bb0cd9cca900fe10509 truffleruby-24.0.0-macos-amd64.tar.gz=9ec8bb340b15e29550448e123e3ab0f183edb9bbe7e052743cb2306cbd1956a5789c5a367c80c5e8d913dce2b804448dd6815e4d3421515166daf8db51d37c7d truffleruby-24.0.0-macos-aarch64.tar.gz=499f83bf65dcb6ecc92414a3550673e6a0baaddfe3ab13c0bd7aa1bdde1ae2a61d9d0ca8001c0d12688d9e09f98f9e2946a651220fe7d200bb0ec6f285394701 truffleruby-24.0.1-linux-amd64.tar.gz=62b4e8508eba8cdaac70e99ac9cb0b33a663b4195d79b2dad3d771ef538c6c41d1d91bb7bb07fbbafbcbbcaf17814ffaf6d6bdbafd474ba6a8ecdac30315a8c9 truffleruby-24.0.1-linux-aarch64.tar.gz=817d877848ea4bb55658ce34bbda52926be12426a8a5e1c4588bc0ec1896018b06dce176336b382f80a7c6d073d4331b20694a7797ee8fdf0177e973053bf929 truffleruby-24.0.1-macos-amd64.tar.gz=2ea65bea154aa38cce3f00f24fc9a4aab5e7478fafd070d0cc966878371c070d5a1776b7405e2c9e4cfa14e5c51219ed0fa988294eb4708690983b348886f439 truffleruby-24.0.1-macos-aarch64.tar.gz=bc1923e21768d34779c1bcd7850456a01ddc01acd1ccf20f4fb4a446fb847f8c51b1ff4a7c0cdc317ef8ce057ac24f18f25b778a02a6e2b185e0055d946ecaf2 truffleruby-24.0.2-linux-amd64.tar.gz=5d111beb862b618c4e6a7f8aea1d3d6476740513efdd59bf980a2b6d525a017f46fe02017b075962a4919a001b60bd9a070e69fedfa8a85533c0adbad2a8d86b truffleruby-24.0.2-linux-aarch64.tar.gz=8e3ba19df4e5509c4719bc3bb621f70ca6a0e683d48a296703649b88abd83a165e8a64ad2d7dc45394b6de0b214a95a395fa449f5393dd9e67deab9e149cf494 truffleruby-24.0.2-macos-amd64.tar.gz=06d3b5533c4e26aa1356e602c672efad99208aaee96110904216e16dcfb1d99a7535c3ef275f9a14635dd2f05110798b3c75d71199f6010f23c92c6990492cef truffleruby-24.0.2-macos-aarch64.tar.gz=ba36d3f1680112e6623b14a4bb902a5f65f11e9827f44462161b1c79ee344ca340566289aa1f841c1e213daef5608c159343cc203d07f41c2a55eaeb25db0987 truffleruby-24.1.0-linux-amd64.tar.gz=9a93fd61086fabcb6c4f3a0fcb16e81f42b0203a24a04209fe446eb5f88d78e2ac59ab54d42cc30ef5417199a88b452973eecdfafc57c7877e11edf0a3d42b13 truffleruby-24.1.0-linux-aarch64.tar.gz=ca23edf279ee9b4693630df9596c6e269bb544e06bfd02620447f51108d9e9b4dc8b3ecbcc7a8ba1280560c0eb4b59474e75acead81799e4c51365acb5676d24 truffleruby-24.1.0-macos-amd64.tar.gz=65b661b3bf497bbb090a2cb49607aa00c3e5bfe95eb19c7736d798715d55fe07ddb4e8d8c25c1ec4b7b304b37205c7de9d8ac2d56005c9fc43e4dc81ae699c9b truffleruby-24.1.0-macos-aarch64.tar.gz=ab665d995bd63839c0bf6ed1171875cce7974d49ed79953a05ecdcf13d815c0a5cd471f40839f3f51a1b3128b40a4ed34d9b89e4c3f343b38c78276aed667956 truffleruby-24.1.1-linux-amd64.tar.gz=78e4e8bd910e4b3b41e927f6158cf8cfc74da5187969727d5c5303416310c5b7f72fde239993ecd5ab51724785cd80b2bb9a422a0475320fca57ad40b26d2786 truffleruby-24.1.1-linux-aarch64.tar.gz=c4e3aa72433622f96216b053862beb65861ab20ab28cfc50f51452720173f0a836ee69335281c4c89c6289ffa6f42517b9487d1b6fe16926aecfd9180d6f8195 truffleruby-24.1.1-macos-amd64.tar.gz=099d1abaa8677ecfd298e974fbb37e21bff2ad45313090cecf9a2799b79b74223ca4f95fb873cb7148bb2754ea3f923cfb553dd1dbdf6f1c088a3793bd991871 truffleruby-24.1.1-macos-aarch64.tar.gz=8980a71fc423c454ceaa16b46ba085a0164bf22e3e2040e960623148f09fea4c467b304774afc2ea37d9e072905eab3ad65b3c4acdc7b01ba238e24829cc16d2 truffleruby-24.1.2-linux-amd64.tar.gz=93e4ebdfb9c6a89681d8913a0e175b46c53124c37b0c15c6e032bcbf423def9205a6b288977772e50ba68c8fd06308c9478f22dc7c0385b41fc9989f68a86083 truffleruby-24.1.2-linux-aarch64.tar.gz=63a212ab48704376c1f6e6792da231f6b4ed8ffe1f77eff56b0f58ae8030866da6fcc19cd7068ec158c6e11840b13f47d2d12ba65b6a7f06ba1de6cb1b582fc4 truffleruby-24.1.2-macos-amd64.tar.gz=6cb535ce7fface14bdef86ad322992931ff809fbe781c0715774f279842b5f65d5e8ff4885858cf7a3ba345071509127f473381655f50d000e60c90a88eb11a0 truffleruby-24.1.2-macos-aarch64.tar.gz=a146c8000468c977fc48d8069e938ad6d32fd257d23133c2125f5bb86598d00283c654fc553d5de31ff9a79224f34b3b064bb223ff7766f9f2e25fcf7e263947 truffleruby-24.2.0-linux-amd64.tar.gz=ef5268859169ce3c584a7865a39928005dfa264e15dd84031a9ce874deaa31af067b1ef53712011911e7816da18bb085c783a10a4b2e45d3820e1b82d4855f86 truffleruby-24.2.0-linux-aarch64.tar.gz=7c9b29eae0d6db96c8106f286cb376dadfc0e93ded75b7eb333f0919f50edaf7b0b1e2c8634ae9bcb671611cd1084b75b598a8fbc1c79600b59e98964d1fd7a8 truffleruby-24.2.0-macos-amd64.tar.gz=7d54e9b475a2ba18bc78466c75dadf12514090fae74716358a310a339722c5425fb462eb30bfc1e4264e3586717a9647d91f4e07c6250dfb8e3d2de9004f48f5 truffleruby-24.2.0-macos-aarch64.tar.gz=81df31324c5f51650d8d321e3119672c90bd19c6abf61ded977e978cee387a69ee0eeb1ed6dcec6ca371baefe3df64e09bf1fb5eb06c61725557d7bdc62d6a5b truffleruby-24.2.1-linux-amd64.tar.gz=dfb06933052bfcf62543154899abcf5b1da9da3ea5d1fb0280763829fa573d6337b8411661fc024f13ffd79bff48920cc2c18cf3389ca2e0cff790b113a2c660 truffleruby-24.2.1-linux-aarch64.tar.gz=5aaa9d880927c0132dc70bbca20f67945c81bed3dae04e089c0ddf9874e2970c91a9ea65e150a2908272032a17c07d071c1caaa98a041d09ab5b43e5bd278cf5 truffleruby-24.2.1-macos-amd64.tar.gz=b18955b9d5663301c3a896220dfa765f24dd436571aa897a0ea563fc6694cf2553cf973c6df0ccaf8ea590584be54d358d509bc988af207133ab08374fece0e6 truffleruby-24.2.1-macos-aarch64.tar.gz=e2cdcca47d0e3d99de130bcb95207ad7a72949f884708828be13ad4b1eeca2b2cf8f6a3c7653fa6f952f8fd7be0af1162559b985bd7ceedc168d389a84c92a9f
rvm/rvm
0740e02991a79130c1964dc91c5b3546312fa1b1
Use pkgconf instead of pkg-config on macOS/homebrew (#5564)
diff --git a/CHANGELOG.md b/CHANGELOG.md index 91a00b7..581d468 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,557 +1,558 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Use OpenSSL 3 for Ruby 3.2 and 3.3 [\#5480](https://github.com/rvm/rvm/pull/5480) * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) * Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) * Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) * Install `libncurses-dev` instead of `libncurses5-dev` on newer Debian and Ubuntu versions [\#5477](https://github.com/rvm/rvm/pull/5477) * Use `zlib-ng-compat` packages for Fedora 40+ [\#5479](https://github.com/rvm/rvm/pull/5479) * Detect core count on ARM-based machines [\#5498](https://github.com/rvm/rvm/pull/5498) * Fix requirement check for Ubuntu [\#5500](https://github.com/rvm/rvm/pull/5500) * Update location of homebrew install script on osx [\#5505](https://github.com/rvm/rvm/pull/5505) * Fix detection of Homebrew's write permissions when using Workbrew [\#5528](https://github.com/rvm/rvm/pull/5528) +* Use pkgconf instead of pkg-config on macOS/Homebrew [\#5564](https://github.com/rvm/rvm/pull/5564) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) * 3.3.3 [\#5474](https://github.com/rvm/rvm/pull/5474) * 3.3.4 [\#5488](https://github.com/rvm/rvm/pull/5488) * 3.2.5 [\#5490](https://github.com/rvm/rvm/pull/5490) * 3.3.5 [\#5499](https://github.com/rvm/rvm/pull/5499) * 3.2.6, 3.3.6 [\#5513](https://github.com/rvm/rvm/pull/5513) * 3.4.0, 3.4.1 [\#5533](https://github.com/rvm/rvm/pull/5533) * 3.3.7 [\#5540](https://github.com/rvm/rvm/pull/5540) * 3.2.7 [\#5544](https://github.com/rvm/rvm/pull/5544) * 3.4.2 [\#5549](https://github.com/rvm/rvm/pull/5549) * 3.1.6, 3.1.7, 3.2.8 [\#5558](https://github.com/rvm/rvm/pull/5558) * 3.3.8 [\#5560](https://github.com/rvm/rvm/pull/5560) * 3.4.3 [\#5562](https://github.com/rvm/rvm/pull/5562) * 3.5.0-preview1 [\#5566](https://github.com/rvm/rvm/pull/5566) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) * 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1, 24.0.2, 24.1.0, 24.1.1, 24.1.2, 24.2.0, 24.2.1 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.3.15.0 [\#5482](https://github.com/rvm/rvm/pull/5482) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) * 9.4.8.0 [\#5484](https://github.com/rvm/rvm/pull/5484) * 9.4.9.0 [\#5512](https://github.com/rvm/rvm/pull/5512) * 9.4.10.0 [\#5538](https://github.com/rvm/rvm/pull/5538) * 9.4.11.0 [\#5541](https://github.com/rvm/rvm/pull/5541) * 9.4.12.0 [\#5548](https://github.com/rvm/rvm/pull/5548) * 10.0.0.0 [\#5561](https://github.com/rvm/rvm/pull/5561) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) * 3.1.6, 3.2.5, 3.3.2, 3.3.3 and 3.3.4 [\#5491](https://github.com/rvm/rvm/pull/5491) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 24.04 (Noble Numbat) x64 binaries * 3.2.6 and 3.3.6 [\#5529](https://github.com/rvm/rvm/pull/5529) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) diff --git a/scripts/functions/requirements/osx_brew b/scripts/functions/requirements/osx_brew index a384777..dda8c09 100644 --- a/scripts/functions/requirements/osx_brew +++ b/scripts/functions/requirements/osx_brew @@ -1,567 +1,567 @@ #!/usr/bin/env bash requirements_find_osx_brew() { if __rvm_which brew >/dev/null 2>&1 then return 0 else \typeset __binary for __binary in ~/homebrew/bin/brew ~/.homebrew/bin/brew /usr/local/bin/brew /opt/homebrew/bin/brew do if [[ -f "${__binary}" && -s "${__binary}" && -x "${__binary}" ]] then PATH="$PATH:${__binary%/*}" return 0 fi done return 1 fi } requirements_osx_brew_version_list() { if __rvm_which $1 >/dev/null then $1 --version 2>/dev/null | __rvm_sed -n -e '1{s/^.* //; p;}' fi __rvm_ls -1 $( brew --cellar )/$1/ 2>/dev/null } requirements_osx_brew_lib_installed_prefix_check() { brew_lib_prefix="$( brew --prefix "$1" 2>/dev/null )" && [[ -n "${brew_lib_prefix}" && -d "${brew_lib_prefix}" ]] || return $? } requirements_osx_brew_lib_installed() { \typeset brew_lib_prefix # Test for older versions of Homebrew before adding the `--formula` flag. brew_version=$( brew --version | awk 'NR==1 { print $2 }' ) if __rvm_version_compare $brew_version -ge 2.5.7 then brew_ls_flags="--formula" fi brew list -1 $brew_ls_flags | __rvm_grep "^${1}$" >/dev/null && requirements_osx_brew_lib_installed_prefix_check "$1" || return $? } requirements_osx_brew_lib_available() { brew search "/^${1}$/" | __rvm_grep "^${1}$" >/dev/null || return $? } requirements_osx_brew_libs_error() { rvm_warn "There were package ${1} errors, make sure to read the log. Try \`brew tap --repair\` and make sure \`brew doctor\` looks reasonable. Check Homebrew requirements https://docs.brew.sh/Installation" } requirements_osx_brew_libs_install() { brew install "$@" --force || { \typeset ret=$? requirements_osx_brew_libs_error "installation" return $ret } } requirements_osx_brew_libs_remove() { brew remove "$@" || { \typeset ret=$? requirements_osx_brew_libs_error "removal" return $ret } } requirements_osx_brew_check_custom() { brew tap | __rvm_grep "$1" >/dev/null || __rvm_add_once packages_custom "$1" } requirements_osx_brew_install_custom() { \typeset __tap for __tap do brew tap "${__tap}" || return $? done } requirements_osx_brew_libs_outdated_filter() { \typeset IFS IFS="|" brew outdated --quiet | __rvm_grep -E "$*" } requirements_osx_brew_libs_try_upgrade() { (( rvm_autolibs_flag_number > 0 )) || return 0 \typeset -a outdated_libs __rvm_read_lines outdated_libs <( requirements_osx_brew_libs_outdated_filter "$@" ) if (( ${#outdated_libs[@]} )) then rvm_requiremnts_fail_or_run_action 2 \ "Homebrew libs '${outdated_libs[*]}' require update - skipping." \ brew upgrade "${outdated_libs[@]}" || return $? fi } requirements_osx_brew_libs_set_path() { \typeset brew_lib brew_lib_prefix for brew_lib do if requirements_osx_brew_lib_installed_prefix_check "${brew_lib}" then __rvm_add_to_path prepend "${brew_lib_prefix}/bin" fi done rvm_debug "PATH=$PATH" } requirements_osx_brew_libs_configure() { \typeset package brew_lib brew_lib_prefix package="$1" shift for brew_lib do if requirements_osx_brew_lib_installed_prefix_check "${brew_lib}" then __rvm_update_configure_opt_dir "${package}" "${brew_lib_prefix}" fi done } requirements_osx_brew_after() { (( ${#packages_installed[@]} == 0 )) || requirements_osx_brew_libs_try_upgrade "${packages_installed[@]}" || return $? requirements_osx_brew_libs_set_path "${brew_libs[@]}" || return $? requirements_osx_brew_libs_configure "$1" "${brew_libs_conf[@]}" || return $? case "$1" in (jruby*) true ;; (*) requirements_osx_brew_after_update_certs_openssl "$1" ;; esac unset brew_libs brew_libs_conf brew_openssl_package } requirements_osx_brew_after_update_certs_openssl() { \typeset brew_lib_prefix if requirements_osx_brew_lib_installed_prefix_check "$brew_openssl_package" && [[ -x "${brew_lib_prefix}/bin/openssl" ]] then requirements_osx_update_openssl_cert "${brew_lib_prefix}/bin/openssl" || return $? else rvm_requiremnts_fail_always 2 \ "Somehow it happened there is no executable 'openssl', run 'brew doctor' and make sure latest '$brew_openssl_package' is installed properly." || return 12 # passing by 127 could be read as missing rvm. fi } requirements_osx_brew_libs_default_check_gcc() { if requirements_detect_installed gcc gcc@8 gcc@7 gcc@6 gcc@5 [email protected] then case "${packages_installed[*]}" in (*gcc*) export CC="$(brew --prefix gcc )/bin/gcc-8" ;; (*gcc@8*) export CC="$(brew --prefix gcc@8 )/bin/gcc-8" ;; (*gcc@7*) export CC="$(brew --prefix gcc@7 )/bin/gcc-7" ;; (*gcc@6*) export CC="$(brew --prefix gcc@6 )/bin/gcc-6" ;; (*gcc@5*) export CC="$(brew --prefix gcc@5 )/bin/gcc-5" ;; (*[email protected]*) export CC="$(brew --prefix [email protected] )/bin/gcc-4.9" ;; (*) return 1 ;; esac else return $? fi } requirements_osx_brew_libs_default_add_gcc_v_auto() { # Install gcc from brew only for macOS earlier then Mojave (10.14) if __rvm_version_compare "${_system_version}" -lt 10.14 then if __rvm_version_compare "${_system_version}" -ge 10.10 then requirements_osx_brew_libs_default_add_gcc_v 6.0 else requirements_osx_brew_libs_default_add_gcc_v 4.9 fi fi } requirements_osx_brew_libs_default_add_gcc_v() { case "$1" in (4.9) requirements_osx_brew_libs_default_add_gcc "$2" gcc-4.9 [email protected] ;; (5.0) requirements_osx_brew_libs_default_add_gcc "$2" gcc-5.0 gcc@5 ;; (6.0) requirements_osx_brew_libs_default_add_gcc "$2" gcc-6.0 gcc@6 ;; (7.0) requirements_osx_brew_libs_default_add_gcc "$2" gcc-7.0 gcc@7 ;; (8.0) requirements_osx_brew_libs_default_add_gcc "$2" gcc-8.0 gcc@8 ;; (*) rvm_error "Do not know how to check/install gcc '$1'." return 1 ;; esac } requirements_osx_brew_libs_default_add_gcc() { if [[ -n "$1" ]] && __rvm_which "$1" >/dev/null then true else export CC="$2" if __rvm_which "$2" >/dev/null then true else if [[ -z "${3:-}" ]] then false # no package known and binary not found else if [[ -z "$(brew --prefix $3 2>/dev/null)" ]] then rvm_error "We don't know how to install <code>$3</code>" rvm_log "Try to run <code>brew install $3</code> and re-run the same rvm command afterwards." false else export CC="$(brew --prefix $3 2>/dev/null || brew --prefix)/bin/$2" brew_libs+=( "$3" ) fi fi fi fi } requirements_osx_brew_define_gcc() { # Old gcc46 but it will most likely not work on OSX 10.10+ if __rvm_version_compare "${_system_version}" -ge 10.10 then undesired_check gcc46 fi \typeset selected_compiler="$( __rvm_selected_compiler )" case "${selected_compiler:-}" in ("") case "$1" in (rbx-2*|rubinius-2*) brew_libs_conf+=( [email protected] ) ;; (rbx-3*|rubinius-3*|rbx*head|rubinius*head) requirements_check git openssl readline libyaml gdbm llvm@5 rvm_configure_flags+=( --llvm-config="$(brew --prefix llvm@5)/bin/llvm-config" ) ;; (truffleruby*) requirements_check libyaml ;; (*) # Install gcc from brew only for macOS earlier then Mojave (10.14) if __rvm_version_compare "${_system_version}" -lt 10.14 then __ruby_clang_ok "$1" || requirements_osx_brew_libs_default_check_gcc || requirements_osx_brew_libs_default_add_gcc_v_auto || return $? fi ;; esac ;; (*gcc-4.9|*gcc-5|*gcc-6|*gcc-7|*gcc-8|*gcc) requirements_osx_brew_libs_default_add_gcc_v ${selected_compiler##*-} "${selected_compiler}" || return $? # version # full_path ;; (*) rvm_warn "We don't know how to ensure that selected compiler '${selected_compiler}' exists." ;; esac } requirements_osx_brew_define_openssl() { # OpenSSL version depends on the version of Ruby being installed undesired_check openssl098 case "$1" in (ruby-2.3*|ruby-2.2*|ruby-2.1*|ruby-2.0*|ruby-1.9*|ruby-1.8*) brew_openssl_package="openssl" ;; (ruby-2*|ruby-3.0*) brew_openssl_package="[email protected]" # Needed for older openssl: https://bugs.ruby-lang.org/issues/18763 export PKG_CONFIG_PATH="$(brew --prefix [email protected])/lib/pkgconfig:$PKG_CONFIG_PATH" ;; (ree-1.8*) brew_openssl_package="openssl" ;; (rbx-1*|rbx-2*) brew_openssl_package="openssl" ;; (truffleruby*) brew_openssl_package="openssl" ;; (*) brew_openssl_package="openssl@3" export PKG_CONFIG_PATH="$(brew --prefix openssl@3)/lib/pkgconfig:$PKG_CONFIG_PATH" ;; esac brew_libs_conf+=( "$brew_openssl_package" ) } requirements_osx_brew_libs_default() { brew_libs=( - autoconf automake libtool pkg-config coreutils + autoconf automake libtool pkgconf coreutils ) brew_libs_conf=( libyaml libksba readline zlib ) requirements_osx_brew_define_gcc "$1" requirements_osx_brew_define_openssl "$1" requirements_check "${brew_libs[@]}" "${brew_libs_conf[@]}" || return $? } requirements_osx_brew_define() { case "$1" in (rvm) true ;; (jruby*) requirements_check make if is_head_or_disable_binary "$1" then __rvm_which git >/dev/null || requirements_check git case $( jruby_installation_method "$1" ) in mvn) requirements_check_custom_after mvn=maven ;; esac fi requiremnts_osx_java_fail || return $? ;; (ir*) __rvm_which mono >/dev/null 2>&1 || return $? ;; (opal) requirements_check node ;; (truffleruby*) requirements_osx_brew_libs_default "$1" ;; (ruby*head) __rvm_which git >/dev/null || requirements_check git requirements_osx_brew_libs_default "$1" requirements_version_minimal autoconf 2.67 ;; (*-head) __rvm_which git >/dev/null || requirements_check git requirements_osx_brew_libs_default "$1" ;; (*) requirements_osx_brew_libs_default "$1" ;; esac } __CLT_version_at_least() { \typeset __version="$( pkgutil --pkg-info com.apple.pkg.DeveloperToolsCLI 2>/dev/null | __rvm_awk '$1~/version:/{print $2}' )" [[ -n "${__version}" ]] || __version="$( pkgutil --pkg-info com.apple.pkg.CLTools_Executables 2>/dev/null | __rvm_awk '$1~/version:/{print $2}' )" [[ -n "${__version}" ]] ||return $? __rvm_version_compare "${__version}" -ge "$1" || return $? } requirements_osx_brew_update_system() { if __rvm_version_compare "${_system_version}" -ge 10.7 then __rvm_detect_xcode_version_at_least 4.6.2 || __CLT_version_at_least 4.6.0 || { \typeset ret=$? rvm_error " Xcode version older than 4.6.2 installed, download and install newer version from: http://connect.apple.com After installation open Xcode, go to Downloads and install Command Line Tools. " return $ret } fi [ -n "$RVM_SKIP_BREW_UPDATE" ] || brew update || { \typeset ret=$? rvm_error "Failed to update Homebrew, follow instructions at https://docs.brew.sh/Common-Issues and make sure \`brew update\` works before continuing." return $ret } } requirements_osx_brew_install_brew_setup() { if __rvm_version_compare "${_system_version}" -ge 10.5 then homebrew_repo="Homebrew/brew" homebrew_installer="https://raw.githubusercontent.com/Homebrew/install/master/install.sh" homebrew_name="Homebrew" else homebrew_repo="mistydemeo/tigerbrew" homebrew_installer="https://raw.githubusercontent.com/mistydemeo/tigerbrew/go/install" homebrew_name="Tigerbrew" fi if (( UID == 0 )) && [[ -z "${SUDO_USER:-}" ]] then rvm_error "Requested installation of ${homebrew_name} but the process is running as 'root', make sure to run with 'sudo' from normal user and try again." return 1 fi homebrew_home_default="/usr/local" printf "%b" "About to install ${homebrew_name} in the default location \`$homebrew_home_default\`.\n It is possible to select a custom location, however it is not recommended and some things might not work. You should do it only if you do not have write rights to \`$homebrew_home_default\`. Press ENTER to install ${homebrew_name} in the default location \`$homebrew_home_default\` or type a custom path (needs to be writable for the current user)\n: " read homebrew_home || return $? rvm_debug "homebrew_home=${homebrew_home:=$homebrew_home_default}" } requirements_osx_brew_install_brew_install() { if [[ "${homebrew_home}" == "${homebrew_home_default}" ]] then rvm_debug "Default homebrew installation from: $homebrew_installer" if [[ -n "${SUDO_USER:-}" ]] then su - ${SUDO_USER} -c "ruby -e \"$(curl -fsSL $homebrew_installer)\"" || return $? else ruby -e "$(curl -fsSL $homebrew_installer)" || return $? fi else rvm_debug "Simplified homebrew installation from: https://github.com/${homebrew_repo}/tarball/master" mkdir -p "${homebrew_home}" || return $? __rvm_curl https://github.com/${homebrew_repo}/tarball/master | tar xz --strip 1 -C "${homebrew_home}" __rvm_check_pipestatus ${PIPESTATUS[@]} ${pipestatus[@]} || return $? chmod +x "${homebrew_home}/bin/brew" # just in case if [[ -n "${SUDO_USER:-}" ]] then chown -R ${SUDO_USER} "${homebrew_home}" fi fi PATH="$PATH:${homebrew_home}/bin" } requirements_osx_brew_install_brew() { \typeset homebrew_home_default homebrew_home homebrew_repo homebrew_installer homebrew_name requirements_osx_brew_install_brew_setup || return $? requirements_osx_brew_install_brew_install || return $? } requirements_osx_brew_ensure_brew_available() { __rvm_which brew >/dev/null || { rvm_requiremnts_fail_or_run_action 2 \ "Requested installation with Homebrew libs, but Homebrew is not available." \ requirements_osx_brew_install_brew || return $? } __rvm_which brew >/dev/null || { \typeset __result=$? rvm_error "\ Something went wrong during Homebrew installation, can not find 'brew' command, please report a bug: https://github.com/rvm/rvm/issues" return $__result } } requirements_osx_brew_ensure_brew_can_install() { # only check for 3+ (packages install, enabled) (( rvm_autolibs_flag_number > 2 )) || return 0 \typeset __celar_path __celar_path="$(brew --cellar)" if [[ -x /opt/workbrew/bin/brew ]] then # Workbrew still installs with a non-writable Homebrew. return 0 elif [[ ! -w "${__celar_path%/*}/bin" ]] then rvm_error "ERROR: '${__celar_path%/*}/bin' is not writable - it is required for Homebrew, try 'brew doctor' to fix it!" return 1 elif [[ ! -w "${__celar_path}" && -e "${__celar_path}" ]] then rvm_error "ERROR: '${__celar_path}' is not writable - it is required for Homebrew, try 'brew doctor' to fix it!" return 1 else rvm_debug "brew seems to be writable" fi } requirements_osx_brew_before() { requirements_osx_brew_ensure_brew_available || return $? requirements_osx_brew_ensure_brew_can_install || return $? }
rvm/rvm
95748650204a2814964224ed95b9b39170a0f902
Add Ruby 3.5.0-preview1 (#5566)
diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b68e94..9bdb1dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,594 +1,595 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Use OpenSSL 3 for Ruby 3.2 and 3.3 [\#5480](https://github.com/rvm/rvm/pull/5480) * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) * Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) * Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) * Install `libncurses-dev` instead of `libncurses5-dev` on newer Debian and Ubuntu versions [\#5477](https://github.com/rvm/rvm/pull/5477) * Use `zlib-ng-compat` packages for Fedora 40+ [\#5479](https://github.com/rvm/rvm/pull/5479) * Detect core count on ARM-based machines [\#5498](https://github.com/rvm/rvm/pull/5498) * Fix requirement check for Ubuntu [\#5500](https://github.com/rvm/rvm/pull/5500) * Update location of homebrew install script on osx [\#5505](https://github.com/rvm/rvm/pull/5505) * Fix detection of Homebrew's write permissions when using Workbrew [\#5528](https://github.com/rvm/rvm/pull/5528) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) * 3.3.3 [\#5474](https://github.com/rvm/rvm/pull/5474) * 3.3.4 [\#5488](https://github.com/rvm/rvm/pull/5488) * 3.2.5 [\#5490](https://github.com/rvm/rvm/pull/5490) * 3.3.5 [\#5499](https://github.com/rvm/rvm/pull/5499) * 3.2.6, 3.3.6 [\#5513](https://github.com/rvm/rvm/pull/5513) * 3.4.0, 3.4.1 [\#5533](https://github.com/rvm/rvm/pull/5533) * 3.3.7 [\#5540](https://github.com/rvm/rvm/pull/5540) * 3.2.7 [\#5544](https://github.com/rvm/rvm/pull/5544) * 3.4.2 [\#5549](https://github.com/rvm/rvm/pull/5549) * 3.1.6, 3.1.7, 3.2.8 [\#5558](https://github.com/rvm/rvm/pull/5558) * 3.3.8 [\#5560](https://github.com/rvm/rvm/pull/5560) * 3.4.3 [\#5562](https://github.com/rvm/rvm/pull/5562) +* 3.5.0-preview1 [\#5566](https://github.com/rvm/rvm/pull/5566) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) * 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1, 24.0.2, 24.1.0, 24.1.1, 24.1.2, 24.2.0, 24.2.1 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.3.15.0 [\#5482](https://github.com/rvm/rvm/pull/5482) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) * 9.4.8.0 [\#5484](https://github.com/rvm/rvm/pull/5484) * 9.4.9.0 [\#5512](https://github.com/rvm/rvm/pull/5512) * 9.4.10.0 [\#5538](https://github.com/rvm/rvm/pull/5538) * 9.4.11.0 [\#5541](https://github.com/rvm/rvm/pull/5541) * 9.4.12.0 [\#5548](https://github.com/rvm/rvm/pull/5548) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) * 3.1.6, 3.2.5, 3.3.2, 3.3.3 and 3.3.4 [\#5491](https://github.com/rvm/rvm/pull/5491) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 24.04 (Noble Numbat) x64 binaries * 3.2.6 and 3.3.6 [\#5529](https://github.com/rvm/rvm/pull/5529) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) #### Upgraded Ruby interpreters: * Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159), 2.5.0-preview1 [\#4204](https://github.com/rvm/rvm/pull/4204), 2.2.9, 2.3.6, 2.4.3 and 2.5.0-rc1 [\#4261](https://github.com/rvm/rvm/pull/4261), 2.5.0 [\#4265](https://github.com/rvm/rvm/pull/4265), 2.6.0-preview1 [\#4317](https://github.com/rvm/rvm/pull/4317), 2.2.10, 2.3.7, 2.4.4, 2.5.1 [\#4340](https://github.com/rvm/rvm/pull/4340) and 2.6.0-preview2[\#4395](https://github.com/rvm/rvm/pull/4395) * Add support for Rubinius 3.85-3.100 * Add support for JRuby 9.1.14.0 [\#4224](https://github.com/rvm/rvm/pull/4224), 9.1.15.0 [\#4258](https://github.com/rvm/rvm/pull/4258), 9.1.16.0 [\#4316](https://github.com/rvm/rvm/pull/4316), 9.1.17.0 [\#4366](https://github.com/rvm/rvm/pull/4366), 9.2.0.0 [\#4390](https://github.com/rvm/rvm/pull/4390) * Add support for mruby 1.4.0 [\#4286](https://github.com/rvm/rvm/pull/4286) * Add support for MagLev 1.1* and 1.2Alpha-1.2Alpha4 [\#4289](https://github.com/rvm/rvm/pull/4289) * Add support for RubyGems 2.6.14 [\#4205](https://github.com/rvm/rvm/pull/4205), 2.7.0-2.7.4 [\#4276](https://github.com/rvm/rvm/issues/4276) and 2.7.5-6 #### Binaries: * Ubuntu 16.04 x64 binaries for Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4362](https://github.com/rvm/rvm/issues/4362), 2.2.9, 2.3.6 and 2.4.3 [\#4259](https://github.com/rvm/rvm/issues/4259), 2.2.8, 2.3.5 and 2.4.2 [\#4161](https://github.com/rvm/rvm/issues/4161), 2.5.0 [\#4272](https://github.com/rvm/rvm/pull/4272) * Ubuntu 17.04 for Ruby 2.1.\*, 2.2.\* [\#4233](https://github.com/rvm/rvm/pull/4233) ## [1.29.3](https://github.com/rvm/rvm/releases/tag/1.29.3) 10 September 2017 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.2...1.29.3) #### New features: * Add RVM commands missing in bash shell completion [\#4078](https://github.com/rvm/rvm/pull/4078) * Railsexpress patches for 2.3.4, 2.3-head [\#4084](https://github.com/rvm/rvm/pull/4084), 2.2.5 and 2.2.6 [\#4153](https://github.com/rvm/rvm/pull/4153) * Update `gem-wrappers` to 1.3.0: Show warnings when the target binary is missing or is not executable [gem-wrappers \#9](https://github.com/rvm/gem-wrappers/issues/9) * Detect Zorin OS as Ubuntu [\#4140](https://github.com/rvm/rvm/issues/4140) #### Bug fixes: * Infinite loop in `gemset_create` [\#4102](https://github.com/rvm/rvm/issues/4102) * Command not found `__rvm_remote_version` error [\#4085](https://github.com/rvm/rvm/pull/4085) * Fix path of version script in `environment` [\#4117](https://github.com/rvm/rvm/pull/4117) * Define `cd()`, `pushd()` and `popd()` properly when using zsh [\#4132](https://github.com/rvm/rvm/pull/4132) * Update gem-wrappers to 1.3.1: Avoid warnings for missing ruby binaries [\#4104](https://github.com/rvm/rvm/issues/4104) * Handles :engine=> and :engine_version=> in Gemfile * Makes $rvm_ruby_string is not installed searchable by adding a fixed keyword * Correctly quotes suggested install command * Fix path to version script in rvm-installer [\#4134](https://github.com/rvm/rvm/pull/4134) * Fix rvm autolibs status, fix [\#4123](https://github.com/rvm/rvm/issues/4123) * Ruby 2.3.x and older are not compatible with OpenSSL 1.1.x on Arch [\#4006](https://github.com/rvm/rvm/issues/4006) * Allow comments after ruby directive in Gemfile [\#4056](https://github.com/rvm/rvm/issues/4056) * Ruby 2.3/4 compilation fix for GCC 7 [\#4080](https://github.com/rvm/rvm/issues/4080) [\#4115](https://github.com/rvm/rvm/issues/4115) * Add warning for sudo users [\#4009](https://github.com/rvm/rvm/issues/4009) * Allows running RVM shell function in Bash with `set -o nounset` [\#4013](https://github.com/rvm/rvm/issues/4013) diff --git a/config/known b/config/known index 400de1d..f3b5b73 100644 --- a/config/known +++ b/config/known @@ -1,81 +1,82 @@ # MRI Rubies [ruby-]1.8.6[-p420] [ruby-]1.8.7[-head] # security released on head [ruby-]1.9.1[-p431] [ruby-]1.9.2[-p330] [ruby-]1.9.3[-p551] [ruby-]2.0.0[-p648] [ruby-]2.1[.10] [ruby-]2.2[.10] [ruby-]2.3[.8] [ruby-]2.4[.10] [ruby-]2.5[.9] [ruby-]2.6[.10] [ruby-]2.7[.8] [ruby-]3.0[.7] [ruby-]3.1[.7] [ruby-]3.2[.8] [ruby-]3.3[.8] [ruby-]3[.4.3] +[ruby-]3.5[.0-preview1] ruby-head # for forks use: rvm install ruby-head-<name> --url https://github.com/github/ruby.git --branch 2.2 # JRuby jruby-1.6[.8] jruby-1.7[.27] jruby-9.1[.17.0] jruby-9.2[.21.0] jruby-9.3[.15.0] jruby[-9.4.12.0] jruby-head # Rubinius rbx-1[.4.3] rbx-2.3[.0] rbx-2.4[.1] rbx-2[.5.8] rbx-3[.107] rbx-4[.20] rbx-5[.0] rbx-head # TruffleRuby truffleruby[-24.2.1] # Opal opal # Minimalistic ruby implementation - ISO 30170:2012 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1[.4.1] mruby-2.0.1 mruby-2[.1.1] mruby[-head] # Ruby Enterprise Edition ree-1.8.6 ree[-1.8.7][-2012.02] # Topaz topaz # MagLev maglev-1.0.0 maglev-1.1[RC1] maglev[-1.2Alpha4] maglev-head # Mac OS X Snow Leopard Or Newer macruby-0.10 macruby-0.11 macruby[-0.12] macruby-nightly macruby-head # IronRuby ironruby[-1.1.3] ironruby-head diff --git a/config/known_strings b/config/known_strings index 50c8bb3..742149c 100644 --- a/config/known_strings +++ b/config/known_strings @@ -25,563 +25,564 @@ jruby-1.1.5 jruby-1.1.6RC1 jruby-1.1.6 jruby-1.2.0RC1 jruby-1.2.0RC2 jruby-1.2.0 jruby-1.3.0RC1 jruby-1.3.0RC2 jruby-1.3.0 jruby-1.3.1 jruby-1.4.0RC1 jruby-1.4.0RC2 jruby-1.4.0RC3 jruby-1.4.0 jruby-1.4.1 jruby-1.5.0.RC1 jruby-1.5.0.RC2 jruby-1.5.0.RC3 jruby-1.5.0 jruby-1.5.1 jruby-1.5.2 jruby-1.5.3 jruby-1.5.4 jruby-1.5.5 jruby-1.5.6 jruby-1.6.0.RC1 jruby-1.6.0.RC2 jruby-1.6.0.RC3 jruby-1.6.0 jruby-1.6.1 jruby-1.6.2 jruby-1.6.3 jruby-1.6.4 jruby-1.6.5 jruby-1.6.5.1 jruby-1.6.7 jruby-1.6.7.2 jruby-1.6.8 jruby-1.7.0.preview1 jruby-1.7.0.preview2 jruby-1.7.0.RC1 jruby-1.7.0.RC2 jruby-1.7.0 jruby-1.7.1 jruby-1.7.2 jruby-1.7.3 jruby-1.7.4 jruby-1.7.5 jruby-1.7.6 jruby-1.7.7 jruby-1.7.8 jruby-1.7.9 jruby-1.7.10 jruby-1.7.11 jruby-1.7.12 jruby-1.7.13 jruby-1.7.14 jruby-1.7.15 jruby-1.7.16 jruby-1.7.16.1 jruby-1.7.16.2 jruby-1.7.17 jruby-1.7.18 jruby-1.7.19 jruby-1.7.20 jruby-1.7.20.1 jruby-1.7.21 jruby-1.7.22 jruby-1.7.23 jruby-1.7.24 jruby-1.7.25 jruby-1.7.26 jruby-1.7.27 jruby-9.0.0.0.pre1 jruby-9.0.0.0.pre2 jruby-9.0.0.0.rc1 jruby-9.0.0.0.rc2 jruby-9.0.0.0 jruby-9.0.1.0 jruby-9.0.2.0 jruby-9.0.3.0 jruby-9.0.4.0 jruby-9.0.5.0 jruby-9.1.0.0 jruby-9.1.1.0 jruby-9.1.2.0 jruby-9.1.3.0 jruby-9.1.4.0 jruby-9.1.5.0 jruby-9.1.6.0 jruby-9.1.7.0 jruby-9.1.8.0 jruby-9.1.9.0 jruby-9.1.10.0 jruby-9.1.11.0 jruby-9.1.12.0 jruby-9.1.13.0 jruby-9.1.14.0 jruby-9.1.15.0 jruby-9.1.16.0 jruby-9.1.17.0 jruby-9.2.0.0 jruby-9.2.1.0 jruby-9.2.2.0 jruby-9.2.3.0 jruby-9.2.4.0 jruby-9.2.4.1 jruby-9.2.5.0 jruby-9.2.6.0 jruby-9.2.7.0 jruby-9.2.8.0 jruby-9.2.9.0 jruby-9.2.10.0 jruby-9.2.11.0 jruby-9.2.11.1 jruby-9.2.12.0 jruby-9.2.13.0 jruby-9.2.14.0 jruby-9.2.15.0 jruby-9.2.16.0 jruby-9.2.17.0 jruby-9.2.18.0 jruby-9.2.19.0 jruby-9.2.20.0 jruby-9.2.20.1 jruby-9.2.21.0 jruby-9.3.0.0 jruby-9.3.1.0 jruby-9.3.2.0 jruby-9.3.3.0 jruby-9.3.4.0 jruby-9.3.6.0 jruby-9.3.7.0 jruby-9.3.8.0 jruby-9.3.9.0 jruby-9.3.10.0 jruby-9.3.11.0 jruby-9.3.13.0 jruby-9.3.14.0 jruby-9.3.15.0 jruby-9.4.0.0 jruby-9.4.1.0 jruby-9.4.2.0 jruby-9.4.3.0 jruby-9.4.4.0 jruby-9.4.5.0 jruby-9.4.6.0 jruby-9.4.7.0 jruby-9.4.8.0 jruby-9.4.9.0 jruby-9.4.10.0 jruby-9.4.11.0 jruby-9.4.12.0 macruby-0.12 maglev-1.0.0 maglev-1.1beta maglev-1.1beta2 maglev-1.1RC1 maglev-1.2Alpha maglev-1.2Alpha2 maglev-1.2Alpha3 maglev-1.2Alpha4 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1.4.0 mruby-1.4.1 mruby-2.0.0 mruby-2.0.1 mruby-2.1.0-rc mruby-2.1.0 mruby-2.1.1-rc mruby-2.1.1-rc2 mruby-2.1.1 rbx-1.0.0-20100514 rbx-1.0.1-20100603 rbx-1.1.0-20100923 rbx-1.1.1-20101116 rbx-1.2.0-20101221 rbx-1.2.1-20110215 rbx-1.2.2-20110222 rbx-1.2.3-20110315 rbx-1.2.4-20110705 rbx-1.3.2 rbx-1.3.3 rbx-1.4.1 rbx-1.4.3 rbx-2.0.0 rbx-2.1.0 rbx-2.1.1 rbx-2.2.0 rbx-2.2.2 rbx-2.2.3 rbx-2.2.4 rbx-2.2.5 rbx-2.2.6 rbx-2.2.7 rbx-2.2.8 rbx-2.2.9 rbx-2.2.10 rbx-2.3.0 rbx-2.4.0 rbx-2.4.1 rbx-2.5.0 rbx-2.5.1 rbx-2.5.2 rbx-2.5.3 rbx-2.5.4 rbx-2.5.5 rbx-2.5.6 rbx-2.5.7 rbx-2.5.8 rbx-3.70 rbx-3.71 rbx-3.72 rbx-3.73 rbx-3.74 rbx-3.75 rbx-3.76 rbx-3.77 rbx-3.78 rbx-3.79 rbx-3.80 rbx-3.81 rbx-3.82 rbx-3.83 rbx-3.84 rbx-3.85 rbx-3.86 rbx-3.87 rbx-3.88 rbx-3.89 rbx-3.90 rbx-3.91 rbx-3.92 rbx-3.93 rbx-3.94 rbx-3.95 rbx-3.96 rbx-3.97 rbx-3.98 rbx-3.99 rbx-3.100 rbx-3.101 rbx-3.102 rbx-3.103 rbx-3.104 rbx-3.105 rbx-3.106 rbx-3.107 rbx-4.0 rbx-4.1 rbx-4.2 rbx-4.3 rbx-4.4 rbx-4.5 rbx-4.6 rbx-4.7 rbx-4.8 rbx-4.9 rbx-4.10 rbx-4.11 rbx-4.12 rbx-4.13 rbx-4.14 rbx-4.15 rbx-4.16 rbx-4.17 rbx-4.18 rbx-4.19 rbx-4.20 rbx-5.0 ree-1.8.6-20080507 ree-1.8.6-20080621 ree-1.8.6-20080623 ree-1.8.6-20080624 ree-1.8.6-20080709 ree-1.8.6-20080810 ree-1.8.6-20081205 ree-1.8.6-20081215 ree-1.8.6-20090113 ree-1.8.6-20090201 ree-1.8.6-20090421 ree-1.8.6-20090520 ree-1.8.6-20090610 ree-1.8.6-20090928 ree-1.8.7-2009.10 ree-1.8.7-2010.01 ree-1.8.7-2010.02 ree-1.8.7-2011.01 ree-1.8.7-2011.02 ree-1.8.7-2011.03 ree-1.8.7-2011.12 ree-1.8.7-2012.02 ruby-1.8.5-p115 ruby-1.8.5-p231 ruby-1.8.6-p286 ruby-1.8.6-p287 ruby-1.8.6-p369 ruby-1.8.6-p383 ruby-1.8.6-p398 ruby-1.8.6-p399 ruby-1.8.6-p420 ruby-1.8.7-p160 ruby-1.8.7-p174 ruby-1.8.7-p248 ruby-1.8.7-p249 ruby-1.8.7-p299 ruby-1.8.7-p302 ruby-1.8.7-p330 ruby-1.8.7-p334 ruby-1.8.7-p352 ruby-1.8.7-p357 ruby-1.8.7-p358 ruby-1.8.7-p370 ruby-1.8.7-p371 ruby-1.8.7-p374 ruby-1.9.0 ruby-1.9.1-p129 ruby-1.9.1-p243 ruby-1.9.1-p376 ruby-1.9.1-p378 ruby-1.9.1-p429 ruby-1.9.1-p431 ruby-1.9.2-p0 ruby-1.9.2-p136 ruby-1.9.2-p180 ruby-1.9.2-p290 ruby-1.9.2-p318 ruby-1.9.2-p320 ruby-1.9.2-p330 ruby-1.9.3-preview1 ruby-1.9.3-rc1 ruby-1.9.3-p0 ruby-1.9.3-p125 ruby-1.9.3-p194 ruby-1.9.3-p286 ruby-1.9.3-p327 ruby-1.9.3-p362 ruby-1.9.3-p374 ruby-1.9.3-p385 ruby-1.9.3-p392 ruby-1.9.3-p429 ruby-1.9.3-p448 ruby-1.9.3-p484 ruby-1.9.3-p545 ruby-1.9.3-p547 ruby-1.9.3-p550 ruby-1.9.3-p551 ruby-2.0.0-preview1 ruby-2.0.0-preview2 ruby-2.0.0-rc1 ruby-2.0.0-rc2 ruby-2.0.0-p0 ruby-2.0.0-p195 ruby-2.0.0-p247 ruby-2.0.0-p353 ruby-2.0.0-p451 ruby-2.0.0-p481 ruby-2.0.0-p576 ruby-2.0.0-p594 ruby-2.0.0-p598 ruby-2.0.0-p643 ruby-2.0.0-p645 ruby-2.0.0-p647 ruby-2.0.0-p648 ruby-2.1.0-preview1 ruby-2.1.0-preview2 ruby-2.1.0-rc1 ruby-2.1.0 ruby-2.1.1 ruby-2.1.2 ruby-2.1.3 ruby-2.1.4 ruby-2.1.5 ruby-2.1.6 ruby-2.1.7 ruby-2.1.8 ruby-2.1.9 ruby-2.1.10 ruby-2.2.0-preview1 ruby-2.2.0-preview2 ruby-2.2.0-rc1 ruby-2.2.0 ruby-2.2.1 ruby-2.2.2 ruby-2.2.3 ruby-2.2.4 ruby-2.2.5 ruby-2.2.6 ruby-2.2.7 ruby-2.2.8 ruby-2.2.9 ruby-2.2.10 ruby-2.3.0-preview1 ruby-2.3.0-preview2 ruby-2.3.0 ruby-2.3.1 ruby-2.3.2 ruby-2.3.3 ruby-2.3.4 ruby-2.3.5 ruby-2.3.6 ruby-2.3.7 ruby-2.3.8 ruby-2.4.0-preview1 ruby-2.4.0-preview2 ruby-2.4.0-preview3 ruby-2.4.0-rc1 ruby-2.4.0 ruby-2.4.1 ruby-2.4.2 ruby-2.4.3 ruby-2.4.4 ruby-2.4.5 ruby-2.4.6 ruby-2.4.7 ruby-2.4.8 ruby-2.4.9 ruby-2.4.10 ruby-2.5.0-preview1 ruby-2.5.0-rc1 ruby-2.5.0 ruby-2.5.1 ruby-2.5.2 ruby-2.5.3 ruby-2.5.4 ruby-2.5.5 ruby-2.5.6 ruby-2.5.7 ruby-2.5.8 ruby-2.5.9 ruby-2.6.0-preview1 ruby-2.6.0-preview2 ruby-2.6.0-preview3 ruby-2.6.0-rc1 ruby-2.6.0-rc2 ruby-2.6.0 ruby-2.6.1 ruby-2.6.2 ruby-2.6.3 ruby-2.6.4 ruby-2.6.5 ruby-2.6.6 ruby-2.6.7 ruby-2.6.8 ruby-2.6.9 ruby-2.6.10 ruby-2.7.0-preview1 ruby-2.7.0-preview2 ruby-2.7.0-preview3 ruby-2.7.0-rc1 ruby-2.7.0-rc2 ruby-2.7.0 ruby-2.7.1 ruby-2.7.2 ruby-2.7.3 ruby-2.7.4 ruby-2.7.5 ruby-2.7.6 ruby-2.7.7 ruby-2.7.8 ruby-3.0.0-preview1 ruby-3.0.0-preview2 ruby-3.0.0-rc1 ruby-3.0.0 ruby-3.0.1 ruby-3.0.2 ruby-3.0.3 ruby-3.0.4 ruby-3.0.5 ruby-3.0.6 ruby-3.0.7 ruby-3.1.0-preview1 ruby-3.1.0 ruby-3.1.1 ruby-3.1.2 ruby-3.1.3 ruby-3.1.4 ruby-3.1.5 ruby-3.1.6 ruby-3.1.7 ruby-3.2.0-preview1 ruby-3.2.0-preview2 ruby-3.2.0-preview3 ruby-3.2.0-rc1 ruby-3.2.0 ruby-3.2.1 ruby-3.2.2 ruby-3.2.3 ruby-3.2.4 ruby-3.2.5 ruby-3.2.6 ruby-3.2.7 ruby-3.2.8 ruby-3.3.0-preview1 ruby-3.3.0-preview2 ruby-3.3.0-preview3 ruby-3.3.0 ruby-3.3.1 ruby-3.3.2 ruby-3.3.3 ruby-3.3.4 ruby-3.3.5 ruby-3.3.6 ruby-3.3.7 ruby-3.3.8 ruby-3.4.0-preview1 ruby-3.4.0 ruby-3.4.1 ruby-3.4.2 ruby-3.4.3 +ruby-3.5.0-preview1 truffleruby-1.0.0-rc2 truffleruby-1.0.0-rc3 truffleruby-1.0.0-rc5 truffleruby-1.0.0-rc6 truffleruby-1.0.0-rc7 truffleruby-1.0.0-rc8 truffleruby-1.0.0-rc9 truffleruby-1.0.0-rc10 truffleruby-1.0.0-rc11 truffleruby-1.0.0-rc12 truffleruby-1.0.0-rc13 truffleruby-1.0.0-rc14 truffleruby-1.0.0-rc15 truffleruby-1.0.0-rc16 truffleruby-19.0.0 truffleruby-19.0.2 truffleruby-19.1.0 truffleruby-19.1.1 truffleruby-19.2.0 truffleruby-19.2.0.1 truffleruby-19.2.1 truffleruby-19.3.0 truffleruby-19.3.0.2 truffleruby-19.3.1 truffleruby-20.0.0 truffleruby-20.1.0 truffleruby-20.2.0 truffleruby-20.3.0 truffleruby-21.0.0 truffleruby-21.1.0 truffleruby-21.2.0 truffleruby-21.2.0.1 truffleruby-21.3.0 truffleruby-22.0.0.2 truffleruby-22.1.0 truffleruby-22.2.0 truffleruby-22.3.0 truffleruby-22.3.1 truffleruby-23.0.0-preview1 truffleruby-23.0.0 truffleruby-23.1.0 truffleruby-23.1.1 truffleruby-23.1.2 truffleruby-24.0.0 truffleruby-24.0.1 truffleruby-24.0.2 truffleruby-24.1.0 truffleruby-24.1.1 truffleruby-24.1.2 truffleruby-24.2.0 truffleruby-24.2.1 diff --git a/config/md5 b/config/md5 index f7a0e56..9fec0d8 100644 --- a/config/md5 +++ b/config/md5 @@ -1300,779 +1300,780 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=0d9f69db1bd665c9e5c9592b483b31a1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=068f5c90b5b381cd58d8804ca2b3be64 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=6181192273efab4aabaa8628fc83c7be https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=fa690cb7132706fb25dfc625e949e96a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=c443f32cd4c91fb37ff79bd86906e1bc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=6fa3edab1bbacf7328074a7fba22be50 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=a950bc4af16446fce2f9266e95629bdb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=d9bce275c2f36dbde8a6c25f9fa10c2e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=6486c5ce9ec697039b0bb36d2bf18a0d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=79f0927984b8e6e7934b34bdb2a3e5e5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=214ac1e49a75291a68c63134bc246a8a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=94a39d1b226350362666f6305866b20b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=4db7d99d775a7f24bb55c6053d4eb864 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=c0db831a97b8427e0777adeaebf7a9d8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=830b4845fbfd45df75758e311a013ffc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=3fc39c824b2060a3a2766ca01037dd15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=0b395f3884c78c6938896ff253c5251b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=2be294a056a45a50262d1796906f8860 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=0270733b808489a91e41f73d9fe971e9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=33db4a687e4943faf6c2853179b67935 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=dea6663b2c113190e9b99a6dcedb3aa0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=835e563bfbe3c8311326660a51f3394c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=66e3c1e1140300c8236c13e3178cb8ab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=07b12bd2a7d8242c34d824882e654c22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=fe12c0e211f90076b51c7916c830971f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=65ab3105b0c6d5e8a2e9977a3ab7ed94 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=08547ad8e760e0776c74401ae5bbd8e5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=631b4ea065d18df96c6ccbc141904bb3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=03a67e234d886f3c698c1571e42cc7a6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=0ded0cb8ce18a846d71d7e04d24c2e78 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=5251aed0ba4d8349413d6bf4c261bea3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=f09694c4f23d7625f72606bce0efb710 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=340db3acb58829b51e4a7ac1c77246d4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1bd86cb46a9e6c40c285258879a3d59 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=d86b2a1e9721b9459e1283006e03fa92 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.2.6.tar.bz2=7d7e84912bb4d1f9915bb391fac54694 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.3.6.tar.bz2=3148fa25b5cd308156c567181ccf5ac3 ironruby-1.0.zip=7a92888837b3507355ed391dbfc0ab83 ironruby-1.1.3.zip=4f2af6253a459cc054d6c55956e514a9 jruby-bin-1.3.1.tar.gz=4a95db8fc93ed7219663fbede98b6117 jruby-bin-1.4.tar.gz=54dba9a88b2b3f99ac86a79828d0178b jruby-bin-1.4.0.tar.gz=f37322c18e9134e91e064aebb4baa4c7 jruby-bin-1.4.0.zip=3a9c8a5115a679da7d7a49a56d57d4c0 jruby-bin-1.4.1.tar.gz=a4aa8c43d1b9ffd9dbc6cb738d55a034 jruby-bin-1.5.0.tar.gz=ee2b4e326e8b87858e5dd0c8e94102e6 jruby-bin-1.5.1.tar.gz=74251383e08e8c339cacc35a7900d3af jruby-bin-1.5.2.tar.gz=d239deb9a108a6abbfbd6cb79cf8255b jruby-bin-1.5.3.tar.gz=ccb0b2dbc300d8dd4ad1bd4da48b8320 jruby-bin-1.5.5.tar.gz=8e00f7d40cbf221f733d6f7a15784e9a jruby-bin-1.5.6.tar.gz=94033a36517645b7a7ec781a3507c654 jruby-bin-1.6.0.tar.gz=f4d7e339dfc0fbaef5b878d1c0a66fbe jruby-bin-1.6.2.tar.gz=a46f978c24a208717023bb4b8995c678 jruby-bin-1.6.3.tar.gz=694b80e4eea784cdc1eb39fb1e3132c9 jruby-bin-1.6.4.tar.gz=0e96b6f4d1c6f12b5ac480cd7ab7da78 jruby-bin-1.6.5.tar.gz=54354082673bd115f945890dc6864413 jruby-bin-1.6.5.1.tar.gz=246a7aa2b7d7e6e9e8a0c2e282cbcfd0 jruby-bin-1.6.7.tar.gz=fd1b8d7389aa92da69ea6efb4782e40a jruby-bin-1.6.7.2.tar.gz=1e520f1b5130114464e5f1950cb24774 jruby-bin-1.6.8.tar.gz=a76ac5845640e4a1ebdfa74421efc935 jruby-bin-1.7.0.preview1.tar.gz=7b9e5e1cd0d818d0199086d948f948b4 jruby-bin-1.7.0.preview2.tar.gz=e8f1623759590aadbf49e4cc53f1cb61 jruby-bin-1.7.0.RC1.tar.gz=bdddcee3d126cddd9a85b5a066a7e25e jruby-bin-1.7.0.RC2.tar.gz=ffe2dd61711f4574fed344af151e5de5 jruby-bin-1.7.0.tar.gz=21861e0ecdbf48cda713c8ade82fdddb jruby-bin-1.7.1.tar.gz=86e659863541d8b987cb7bfbe3b4cfb0 jruby-bin-1.7.2.tar.gz=6ec9293b6dffd1e8ee57e9b7c6d18cbe jruby-bin-1.7.3.tar.gz=f0adf8ccee6f6777f7ab8e5e1d7a1f47 jruby-bin-1.7.4.tar.gz=c6a56eae78db28dddba911ccd0848c32 jruby-bin-1.7.5.tar.gz=c2a28c43c8095127d4a4aee0cf9b1439 jruby-bin-1.7.6.tar.gz=5d10011516a3d3bde10209b60cfcc0ef jruby-bin-1.7.7.tar.gz=9d6df2188fa57f12bf6fde4e4b2e3f09 jruby-bin-1.7.8.tar.gz=1e68f39d6dba7b6d9db81e24bb6b7d0a jruby-bin-1.7.9.tar.gz=b2e44f1f44837c07068ee453a89f4b55 jruby-bin-1.7.10.tar.gz=c84fe9245a73f9cd29f56343b7d2e39a jruby-bin-1.7.11.tar.gz=d6e6ab72426fa7fdc9ae55950980d877 jruby-bin-1.7.12.tar.gz=2073aa6dfc7c701ef7c3d3143d181582 jruby-bin-1.7.14.tar.gz=bc33284f27a3508a70d2ade100a2f6bd jruby-bin-1.7.15.tar.gz=92e63cffcb86842511aeeed95bdf96ed jruby-bin-1.7.16.tar.gz=92cb058d1a896257b5ac1c26dc433506 jruby-bin-1.7.16.1.tar.gz=eec2f0e03560bacf02a09c0096a99cad jruby-bin-1.7.16.2.tar.gz=cd31909b67239c5c6a795521fca5c239 jruby-bin-1.7.17.tar.gz=8b78ba1acdb718431f71c38287c07967 jruby-bin-1.7.18.tar.gz=aa7286140be0f6f60534ebffededc708 jruby-bin-1.7.19.tar.gz=bc38596757d8000d6ca4c4c3f8eacea6 jruby-bin-1.7.20.tar.gz=0c2adc160cb85c888b269e8ac4f886fc jruby-bin-1.7.21.tar.gz=bc91594072032023d146f330764d3274 jruby-bin-1.7.22.tar.gz=1da904bf41d362d0d0b366d9e781168f jruby-bin-1.7.23.tar.gz=41e3f45c28c94a275f9eeb22721da35d jruby-bin-1.7.25.tar.gz=fc43ead73f657f5261428923974fd605 jruby-bin-1.7.26.tar.gz=4ca60264a9560f37fdba8108543e72c2 jruby-bin-1.7.27.tar.gz=b98b0a2c52e885a868a2b60092e1cd3d jruby-bin-9.0.0.0.pre1.tar.gz=d5c8b30648348aa883f893d464d46bf1 jruby-bin-9.0.0.0.pre2.tar.gz=86994a9d7ed2cf318c75392623a3e6da jruby-bin-9.0.0.0.tar.gz=fe9036ea69bf23dc3b69cfc94adb5404 jruby-bin-9.0.1.0.tar.gz=a82bc640e0080b1d9a21d1477c8400e3 jruby-bin-9.0.3.0.tar.gz=828dd6c6dd18e5b186ccfd65753077bd jruby-bin-9.0.4.0.tar.gz=645bf4a1dcde3f19dc0fff75c8b4b685 jruby-bin-9.0.5.0.tar.gz=1d2dc649cbacbe26418ef3ba421018b1 jruby-bin-9.1.0.0.tar.gz=fe26e6308d006d35eb613cdd47d1dc99 jruby-bin-9.1.1.0.tar.gz=8356334270df07a214590d00a986837b jruby-bin-9.1.2.0.tar.gz=749bb917dde9666e365e12bbe776a5c2 jruby-bin-9.1.3.0.tar.gz=91c246cd623702032e88283565da5480 jruby-bin-9.1.4.0.tar.gz=5b80b78c09bf0cd4dcbcb9e1fe3e8b73 jruby-bin-9.1.5.0.tar.gz=e9b2cc44757db4cfbe7da79601d0169a jruby-bin-9.1.6.0.tar.gz=4092a89b01b55d1fb5498113f97ab0ca jruby-bin-9.1.7.0.tar.gz=b120c3eaeef7ff2aed3a57701e414e78 jruby-bin-9.1.8.0.tar.gz=0fdee002c56ec91dff1efffce205265c jruby-bin-9.1.9.0.tar.gz=170efc34297d7ac2a56bb1163e96b363 jruby-bin-9.1.10.0.tar.gz=b75e0d1a200e8f790d8bbc84f91e3002 jruby-bin-9.1.11.0.tar.gz=0502a14141da25a460ce197720bab4c3 jruby-bin-9.1.12.0.tar.gz=74bd7ae08c159fc62cb6f64845a868cc jruby-bin-9.1.13.0.tar.gz=6c642c8a2653a585779f453d8c843fd7 jruby-bin-9.1.14.0.tar.gz=a7e0ecd529690025d327c45744f60fa4 jruby-bin-9.1.15.0.tar.gz=01c29690324d7eb414fba66e4c009c9e jruby-bin-9.1.16.0.tar.gz=e64c3aa1310c272194fd1750b0b79fac jruby-bin-9.1.17.0.tar.gz=f28d1fcbb60e550f3abd839102ad0069 jruby-bin-9.2.0.0.tar.gz=bd476da4bed39ffcfff7116f448a5365 jruby-bin-9.2.1.0.tar.gz=4b78b0a40ca541556f5ee75a815e0be0 jruby-bin-9.2.2.0.tar.gz=be678559801be029fe233c33396e34d2 jruby-bin-9.2.3.0.tar.gz=79328ab1ed37d612da35271183e46bbd jruby-bin-9.2.4.0.tar.gz=f538f2be459f0f0e517a53446e78a354 jruby-bin-9.2.4.1.tar.gz=d373bbc2bd6caabfcc9914c4067e9d24 jruby-bin-9.2.5.0.tar.gz=14582fd6eee19610f0a7433ce5dd5ce4 jruby-bin-9.2.6.0.tar.gz=dba182ac9943b726b609ca61747c1835 jruby-bin-9.2.7.0.tar.gz=c0111b2cafa920df76284044e1aeedc7 jruby-bin-9.2.8.0.tar.gz=7d652b586a18f1c665289fd7e6edf4f5 jruby-bin-9.2.9.0.tar.gz=74b3451f79c13c2fc66c6dee69d46699 jruby-bin-9.2.10.0.tar.gz=e6ce97eae6e35b622c1b572f9297705b jruby-bin-9.2.11.0.tar.gz=22b003adfb03b253721cc85db248698f jruby-bin-9.2.11.1.tar.gz=687586132f7b649b1bdd7b823577c9d8 jruby-bin-9.2.12.0.tar.gz=cc7599837fbd0839cce7293577a34f2c jruby-bin-9.2.13.0.tar.gz=99df4eb89f88c7582bfe7c313daec7b4 jruby-bin-9.2.14.0.tar.gz=421c5b8146701177a738a0a691190018 jruby-bin-9.2.15.0.tar.gz=ba593f1de2c4e592a8ca9b9e903af457 jruby-bin-9.2.16.0.tar.gz=d8d954ee0ab6f4868c3fc63339660af9 jruby-bin-9.2.17.0.tar.gz=382fb3d9d2982efd5396f1a42e3fa6a1 jruby-bin-9.2.18.0.tar.gz=002ac95859a2176cb0a58d81d6e0fb14 jruby-bin-9.2.19.0.tar.gz=0961867a77838853f32ee72dbde7c00e jruby-bin-9.2.20.0.tar.gz=840876dd0ca0098452dd2667fe9dd7f4 jruby-bin-9.2.20.1.tar.gz=5856ed030f0d9e75d2384cf42f62a4de jruby-bin-9.2.21.0.tar.gz=9957c1d2bd9265144fe55f9f7093272a jruby-bin-9.3.0.0.tar.gz=501a3c975b3c9478b72d4b0cd37170b9 jruby-bin-9.3.1.0.tar.gz=201d3e483bf847f5c59f4b1f3bf594d5 jruby-bin-9.3.2.0.tar.gz=259c276f68a01495dda24407394a382d jruby-bin-9.3.3.0.tar.gz=cd49b81753048cee9c8ffdd2ce1cb3e2 jruby-bin-9.3.4.0.tar.gz=7292dd9a56155aa015ec08c03855b3fc jruby-bin-9.3.6.0.tar.gz=bc5a7b02be69fdf3f5584e8880fc7dcc jruby-bin-9.3.7.0.tar.gz=49b17b5cd7cf8bfb09d8f64147d992ef jruby-bin-9.3.8.0.tar.gz=6ea209b699a06944d0653d8048d8bfec jruby-bin-9.3.9.0.tar.gz=9a0f0a931346bc6ea34196a5c88002ec jruby-bin-9.3.10.0.tar.gz=83c9d776dfc8cf33bfa60f7e78077160 jruby-bin-9.3.11.0.tar.gz=6ccc04e658c49db19fc0c452db0f2931 jruby-bin-9.3.13.0.tar.gz=3f20268b494da900504e921507248183 jruby-bin-9.3.14.0.tar.gz=87a96fd3af448ec8fd5ca45c6469ecc9 jruby-bin-9.3.15.0.tar.gz=385fabe180b68fb8cd3743b315109e5f jruby-bin-9.4.0.0.tar.gz=d0136daa4910f6e6b21858260eb00fe2 jruby-bin-9.4.1.0.tar.gz=abe2669672ac973f1b41a4d3860eb7ae jruby-bin-9.4.2.0.tar.gz=486e50f3c74e7400e71631819fde91da jruby-bin-9.4.3.0.tar.gz=526006fefb3e5ffc5095ab5599cc38c6 jruby-bin-9.4.4.0.tar.gz=287b5c3a9b63ff93e49ae9dc0347263b jruby-bin-9.4.5.0.tar.gz=09c6fceb38d6c086af2e4d5f21f9fe65 jruby-bin-9.4.6.0.tar.gz=5e2fe4ed897d938332ee0d85d2aa60bc jruby-bin-9.4.7.0.tar.gz=a0633ca837efff62edca84ceae1f5515 jruby-bin-9.4.8.0.tar.gz=9f520a3a416b598b4e53916e7180b623 jruby-bin-9.4.9.0.tar.gz=b7a789e9ff1b87d0e8c7bda7fae31c16 jruby-bin-9.4.10.0.tar.gz=36d6d8d745e793580ec4b12caa257501 jruby-bin-9.4.11.0.tar.gz=46e632baba1068e17345c7d24fec4241 jruby-bin-9.4.12.0.tar.gz=c7a26b4bd2fde1064b1cc6bf67f2f645 libiconv-1.13.1.tar.gz=7ab33ebd26687c744a37264a330bbe9a MacRuby%200.5.zip=675454a8c7bc19d606d90a726e08427c MacRuby%200.6.zip=a80afd3700c88cf95c539fc63b272faf MacRuby%200.7.1.zip=e8245dcd03c0757dfae7e6fee913947a MacRuby%200.7.zip=0bb60588c9ec9b1517665743bb05132f MacRuby%200.8.zip=735ac0a70f539e00b5de6fbec09c2c5c MacRuby%200.9.zip=fa01345e8fbfee620bbac64743a45f69 MacRuby%200.10.zip=1662d13d2f73cfc26258598f6988dcbc MacRuby%200.11.zip=b0cc23d60484a07012bcad549cef6054 MacRuby%200.12.zip=e1c5fa1b007a1cdc38c527a47302bf5e MagLev-1.0.0.tar.gz=e02cb8ee04438451eb78df14f91a68a9 MagLev-1.1beta.tar.gz=d542c7af290ce3b588b57629906b19e9 MagLev-1.1beta2.tar.gz=0ef88d5d145611aef324cb51be0aaafd MagLev-1.1RC1.tar.gz=41f4a0994daf1e5271cbd0ebe57816f4 MagLev-1.2Alpha.tar.gz=5c7dd3acef9dbddc0829bb1daa087abb MagLev-1.2Alpha2.tar.gz=cbbeae109854a6bf107a747a93fd478b MagLev-1.2Alpha3.tar.gz=b7470518f2b697eb1a5a39eff9b6d749 MagLev-1.2Alpha4.tar.gz=d54f04a611ce838b9d7009627065b7ca mruby-1.0.0.tar.gz=d9aec6a20fc1add65ee07ff6cf0e1ef2 mruby-1.1.0.tar.gz=60d75ea704c9285f3c80b3ad1d2b68de mruby-1.2.0.tar.gz=b5a3b7962d9db8cb8fb8105aa914d16c mruby-1.3.0.tar.gz=9714dd2804064d0043e099b7211d72b9 mruby-1.4.0.tar.gz=25efc35511070454074b36863c4d5b5e mruby-1.4.1.tar.gz=b40bf09af3f4c6e2bc443b9ac803a3ad mruby-2.0.0.tar.gz=b86c6a1dd86cb4ebe51e3fe38964a830 mruby-2.0.1.tar.gz=15b426a8a94a610c45414578786d05e3 mruby-2.1.0-rc.tar.gz=58a85fcb102d72900a25190da670e01d mruby-2.1.0.tar.gz=c01a4bbf62e6f5765c70b8813e0ce7da mruby-2.1.1-rc.tar.gz=809edd80e680855e7c4cf3c569972f28 mruby-2.1.1-rc2.tar.gz=24879fa5eb587f9415f03f8f3701842e mruby-2.1.1.tar.gz=c0ee4a112695046b9e4f177e31096d6c ncurses.tar.gz=cce05daf61a64501ef6cd8da1f727ec6 openssl-0.9.8k.tar.gz=e555c6d58d276aec7fdc53363e338ab3 openssl-0.9.8n.tar.gz=076d8efc3ed93646bd01f04e23c07066 openssl-1.0.1c.tar.gz=ae412727c8c15b67880aef7bd2999b2e openssl-1.0.1i.tar.gz=c8dc151a671b9b92ff3e4c118b174972 pkg-config-0.23.tar.gz=d922a88782b64441d06547632fd85744 readline-5.2.tar.gz=e39331f32ad14009b9ff49cc10c5e751 readline-6.0.tar.gz=b7f65a48add447693be6e86f04a63019 readline-6.2.tar.gz=67948acb2ca081f23359d0256e9a271c release-2.0.0-rc1.zip=b05b5e3c2712a294e4b09ebf450c1bfe rubinius-1.0.0-20100514.tar.gz=b05f4e791d3712c5a50b3d210dac6eb0 rubinius-1.0.1-20100603.tar.gz=eb185703c7ae0c0210e8dcb7f783ee8e rubinius-1.1.0-20100923.tar.gz=e2ae16238b201de09975abe19da09ea9 rubinius-1.1.1-20101116.tar.gz=b39f618eeba37c3aff215da8bca55fd7 rubinius-1.2.0-20101221.tar.gz=4284c2660f1f648942de35d4fc871f70 rubinius-1.2.1-20110215.tar.gz=e4a5127480062fddddc7ce2860b3b813 rubinius-1.2.2-20110222.tar.gz=59124378fb7ee040e9ee4e4736d89fc0 rubinius-1.2.3-20110315.tar.gz=9782dab18c2dd440af6b76e8eb5bc0f0 rubinius-1.2.4-20110705.tar.gz=403c777d19b3553e9cb36701fe002c5e rubinius-1.3.2.tar.bz2=64801ad8dd4e5e4fcb74ff313fec0a69 rubinius-1.3.3.tar.bz2=79f1f860ed8242257bd7f3e88c81a197 rubinius-1.4.1.tar.bz2=76b840405d4b9303261c27cf15002386 rubinius-2.0.0.tar.bz2=62e379e044c822b81e7b20a27daf133e rubinius-2.1.0.tar.bz2=908053f38fd840c75a93aab7487c20a5 rubinius-2.1.1.tar.bz2=6b4df0caec5ea88373e113f97a3b4c72 rubinius-2.2.0.tar.bz2=f1fbc6f3baf1da5ad86b3858f30f3349 rubinius-2.2.2.tar.bz2=ac70d629ea43525d91e81f4ccf135299 rubinius-2.2.3.tar.bz2=d9978cf1a4e8f0310db63e49834f9837 rubinius-2.2.4.tar.bz2=c10699da85a8eb5861a37b29077213bd rubinius-2.2.5.tar.bz2=5996dc8529b2ffe5921c5e7020bee20e rubinius-2.2.6.tar.bz2=85339bb6dd525eee719edf0551868f56 rubinius-2.2.7.tar.bz2=de2e6f4c3bd9a90bcb89f2ea27ddee9e rubinius-2.2.8.tar.bz2=c4db1ffb8dbdf864240cabe8b7758b49 rubinius-2.2.9.tar.bz2=0bf87ba617fa989e47d20942410028af rubinius-2.2.10.tar.bz2=8680da7eb921e6f595a1d716915ca7e0 rubinius-2.3.0.tar.bz2=e003a30af6689c8198116b3405d09d8e rubinius-2.4.0.tar.bz2=62391a51f49820daa51463066c3ce007 rubinius-2.4.1.tar.bz2=7758721b6e848387c3943ddb9ebd9479 rubinius-2.5.0.tar.bz2=178baa1ad172df0801765ea93bc36d87 rubinius-2.5.1.tar.bz2=77e1b87dc357691ad44b561a5f45c188 rubinius-2.5.2.tar.bz2=e5973d6e0a16f0390dc2a7478db83ff5 rubinius-2.5.3.tar.bz2=b19709eb3fa9e05b3fa6a357b33e3b5b rubinius-2.5.4.tar.bz2=64587916e5d445ed9bc630017a04498e rubinius-2.5.5.tar.bz2=ef671bbab50cbe2f70f953c491311261 rubinius-2.5.6.tar.bz2=597e4b049f49966c646faf699856c1b9 rubinius-2.5.7.tar.bz2=9a7f404019bce9fc34a7af7feb7cbb74 rubinius-2.5.8.tar.bz2=a24520892cada1f660e719a25abf63e3 ruby-1.8.5-p115.tar.bz2=03955e3c367b9beb3efe144c9f00d689 ruby-1.8.5-p115.tar.gz=20ca6cc87eb077296806412feaac0356 ruby-1.8.5-p231.tar.bz2=327f5aa6573787432222e96195cffd1e ruby-1.8.5-p231.tar.gz=e900cf225d55414bffe878f00a85807c ruby-1.8.6-p286.tar.bz2=e6b6bf8f34370e433936adb7a7065e63 ruby-1.8.6-p286.tar.gz=797ea136fe43e4286c9362ee4516674e ruby-1.8.6-p287.tar.bz2=80b5f3db12531d36e6c81fac6d05dda9 ruby-1.8.6-p287.tar.gz=6ff3420094711266c3201a0c7c2faa38 ruby-1.8.6-p369.tar.bz2=c3c1f3dd0dfbd2e17a04e59c2f12cfc8 ruby-1.8.6-p369.tar.gz=8c140ae28b4c3947b92dfad69109d90b ruby-1.8.6-p383.tar.bz2=a48703cd982b9f0e3002700a50b0e88e ruby-1.8.6-p383.tar.gz=4f49544d4a4d0d34e9d86c41e853db2e ruby-1.8.6-p398.tar.bz2=fbd43dc44ee26be4d37e6bebbed6f8bd ruby-1.8.6-p398.tar.gz=736db5f56c2d9b0136e563d049249fa8 ruby-1.8.6-p399.tar.bz2=f77c307cb72fb8808b0e85af5d05cefc ruby-1.8.6-p399.tar.gz=c3d16cdd3c1ee8f3b7d1c399d4884e33 ruby-1.8.6-p420.tar.bz2=1c7a978e9ffd4f56dc2ad74bbd2c34f3 ruby-1.8.6-p420.tar.gz=ca1eee44f842e93b5098bc5a2bb9a40b ruby-1.8.7-p160.tar.bz2=f8ddb886b8a81cf005f53e9a9541091d ruby-1.8.7-p160.tar.gz=945398f97e2de6dd8ab6df68d10bb1a1 ruby-1.8.7-p174.tar.bz2=88c45aaf627b4404e5e4273cb03ba2ee ruby-1.8.7-p174.tar.gz=18dcdfef761a745ac7da45b61776afa5 ruby-1.8.7-p248.tar.bz2=37e19d46b7d4b845f57d3389084b94a6 ruby-1.8.7-p248.tar.gz=60a65374689ac8b90be54ca9c61c48e3 ruby-1.8.7-p249.tar.bz2=37200cc956a16996bbfd25bb4068f242 ruby-1.8.7-p249.tar.gz=d7db7763cffad279952eb7e9bbfc221c ruby-1.8.7-p299.tar.bz2=244439a87d75ab24170a9c2b451ce351 ruby-1.8.7-p299.tar.gz=43533980ee0ea57381040d4135cf9677 ruby-1.8.7-p302.tar.bz2=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p302.tar.gz=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p330.tar.bz2=2689719fb42c8cf0aa336f8c8933f413 ruby-1.8.7-p330.tar.gz=50a49edb787211598d08e756e733e42e ruby-1.8.7-p334.tar.bz2=2f14f604bf981bb938ab5fc8b09eb1a6 ruby-1.8.7-p334.tar.gz=aacb6ee5dfe2367682bba56af7f415b8 ruby-1.8.7-p352.tar.bz2=0c61ea41d1b1183b219b9afe97f18f52 ruby-1.8.7-p352.tar.gz=0c33f663a10a540ea65677bb755e57a7 ruby-1.8.7-p357.tar.bz2=3abd9e2a29f756a0d30c7bfca578cdeb ruby-1.8.7-p357.tar.gz=b2b8248ff5097cfd629f5b9768d1df82 ruby-1.8.7-p358.tar.bz2=de35f00997f4ccee3e22dff0f2d01b8a ruby-1.8.7-p370.tar.bz2=1e4c3194537dd8ff92e756993e55a29d ruby-1.8.7-p371.tar.bz2=c27526b298659a186bdb5107fcec2341 ruby-1.8.7-p371.tar.gz=653f07bb45f03d0bf3910491288764df ruby-1.8.7-p374.tar.bz2=83c92e2b57ea08f31187060098b2200b ruby-1.8.7-p374.tar.gz=b72a0bc5b824398537762e5272bbb8dc ruby-1.9.0.tar.bz2=17eb66ac3721340d21db352d8f5dec76 ruby-1.9.1-p129.tar.bz2=6fa62b20f72da471195830dec4eb2013 ruby-1.9.1-p129.tar.gz=c71f413514ee6341c627be2957023a5c ruby-1.9.1-p243.tar.bz2=66d4f8403d13623051091347764881a0 ruby-1.9.1-p243.tar.gz=515bfd965814e718c0943abf3dde5494 ruby-1.9.1-p376.tar.bz2=e019ae9c643c5efe91be49e29781fb94 ruby-1.9.1-p376.tar.gz=ebb20550a11e7f1a2fbd6fdec2a3e0a3 ruby-1.9.1-p378.tar.bz2=5922459622a23612eb9b68a3586cb5f8 ruby-1.9.1-p378.tar.gz=9fc5941bda150ac0a33b299e1e53654c ruby-1.9.1-p429.tar.bz2=09df32ae51b6337f7a2e3b1909b26213 ruby-1.9.1-p429.tar.gz=0f6d7630f26042e00bc59875755cf879 ruby-1.9.1-p431.tar.bz2=03179138ae95dbfae872ef49e9cc6da7 ruby-1.9.1-p431.tar.gz=23f28cffc007ed5ac72c8e9bec6837ce ruby-1.9.2-p0.tar.bz2=d8a02cadf57d2571cd4250e248ea7e4b ruby-1.9.2-p0.tar.gz=755aba44607c580fddc25e7c89260460 ruby-1.9.2-p136.tar.bz2=52958d35d1b437f5d9d225690de94c13 ruby-1.9.2-p136.tar.gz=6e17b200b907244478582b7d06cd512e ruby-1.9.2-p180.tar.bz2=68510eeb7511c403b91fe5476f250538 ruby-1.9.2-p180.tar.gz=0d6953820c9918820dd916e79f4bfde8 ruby-1.9.2-p290.tar.bz2=096758c3e853b839dc980b183227b182 ruby-1.9.2-p290.tar.gz=604da71839a6ae02b5b5b5e1b792d5eb ruby-1.9.2-p318.tar.bz2=be431c6cbfa27e3836a06c6315717747 ruby-1.9.2-p318.tar.gz=cc7bf1025128e1985882ae243f348802 ruby-1.9.2-p320.tar.bz2=b226dfe95d92750ee7163e899b33af00 ruby-1.9.2-p320.tar.gz=5ef5d9c07af207710bd9c2ad1cef4b42 ruby-1.9.2-p330.tar.bz2=8ba4aaf707023e76f80fc8f455c99858 ruby-1.9.2-p330.tar.gz=4b9330730491f96b402adc4a561e859a ruby-1.9.3-p0.tar.bz2=65401fb3194cdccd6c1175ab29b8fdb8 ruby-1.9.3-p0.tar.gz=8e2fef56185cfbaf29d0c8329fc77c05 ruby-1.9.3-p125.tar.bz2=702529a7f8417ed79f628b77d8061aa5 ruby-1.9.3-p125.tar.gz=e3ea86b9d3fc2d3ec867f66969ae3b92 ruby-1.9.3-p194.tar.bz2=2278eff4cfed3cbc0653bc73085caa34 ruby-1.9.3-p194.tar.gz=bc0c715c69da4d1d8bd57069c19f6c0e ruby-1.9.3-p286.tar.bz2=e76848a86606a4fd5dcf14fc4b4e755e ruby-1.9.3-p327.tar.bz2=7d602aba93f31ceef32800999855fbca ruby-1.9.3-p327.tar.gz=96118e856b502b5d7b3a4398e6c6e98c ruby-1.9.3-p362.tar.bz2=13c26ea368d88a560f07cc8c5eb4fa05 ruby-1.9.3-p374.tar.bz2=944e73eba9ee9e1f2647ff32ec0b14b2 ruby-1.9.3-p385.tar.bz2=5ec9aff670f4912b0f6f0e11e855ef6c ruby-1.9.3-p392.tar.bz2=a810d64e2255179d2f334eb61fb8519c ruby-1.9.3-p392.tar.gz=f689a7b61379f83cbbed3c7077d83859 ruby-1.9.3-p429.tar.bz2=c2b2de5ef15ea9b1aaa3152f9112af1b ruby-1.9.3-p429.tar.gz=993c72f7f805a9eb453f90b0b7fe0d2b ruby-1.9.3-p448.tar.bz2=aa710d386e5903f78f0231868255e6af ruby-1.9.3-p448.tar.gz=a893cff26bcf351b8975ebf2a63b1023 ruby-1.9.3-p484.tar.bz2=03f5b08804927ceabe5122cb90f5d0a9 ruby-1.9.3-p484.tar.gz=8ac0dee72fe12d75c8b2d0ef5d0c2968 ruby-1.9.3-p545.tar.bz2=4743c1dc48491070bae8fc8b423bc1a7 ruby-1.9.3-p545.tar.gz=8e8f6e4d7d0bb54e0edf8d9c4120f40c ruby-1.9.3-p547.tar.bz2=5363d399be7f827c77bf8ae5d1a69b38 ruby-1.9.3-p547.tar.gz=7531f9b1b35b16f3eb3d7bea786babfd ruby-1.9.3-p550.tar.bz2=c2169c8b14ccefd036081aba5ffa96da ruby-1.9.3-p551.tar.bz2=0d8b272b05c3449dc848bb7570f65bfe ruby-1.9.3-preview1.tar.bz2=7d93dc773c5824f05c6e6630d8c4bf9b ruby-1.9.3-preview1.tar.gz=0f0220be4cc7c51a82c1bd8f6a0969f3 ruby-1.9.3-rc1.tar.bz2=26f0dc51ad981e12c58b48380112fa4d ruby-1.9.3-rc1.tar.gz=46a2a481536ca0ca0b80ad2b091df68e ruby-2.0.0-p0.tar.bz2=895c1c581f8d28e8b3bb02472b2ccf6a ruby-2.0.0-p195.tar.bz2=2f54faea6ee1ca500632ec3c0cb59cb6 ruby-2.0.0-p247.tar.bz2=60913f3eec0c4071f44df42600be2604 ruby-2.0.0-p353.tar.bz2=20eb8f067d20f6b76b7e16cce2a85a55 ruby-2.0.0-p451.tar.bz2=908e4d1dbfe7362b15892f16af05adf8 ruby-2.0.0-p481.tar.bz2=ea406a8d415a1a5d8365596d4288f3da ruby-2.0.0-p576.tar.bz2=eccd42d43620544a085c5e3834572f37 ruby-2.0.0-p594.tar.bz2=58469c0daf5f3a892a70cc674ea59c7f ruby-2.0.0-p598.tar.bz2=a3f3908103a7d209d1d1cf4712e3953c ruby-2.0.0-p643.tar.bz2=1390888cac6cd175e6f164eff378cdde ruby-2.0.0-p645.tar.bz2=d576240c97cfcc3ed9bdc457eb1e8280 ruby-2.0.0-p647.tar.bz2=27a3ea1a8b8bca1a6de43a7d08e88b69 ruby-2.0.0-p648.tar.bz2=3544031334f4665aa2eb1414babc9345 ruby-2.0.0-preview1.tar.bz2=47a0f662f0e258aa1c5e429c310861b3 ruby-2.0.0-preview2.tar.bz2=a645a783c3302cc094a9963a5e700a4d ruby-2.0.0-rc1.tar.bz2=24cebdda11e01ff4889ac983cd7dc02c ruby-2.0.0-rc2.tar.bz2=e92420131bd7994513e0bf09a3e2a19b ruby-2.1.0-preview1.tar.bz2=d32d1ea23988399afadbd21c5a7a37fc ruby-2.1.0-preview2.tar.bz2=9d566a9b2d2e7e35ad6125e2a14ce672 ruby-2.1.0-rc1.tar.bz2=cae095b90349b5b0f7026060cc3dd2c5 ruby-2.1.0.tar.bz2=1546eeb763ac7754365664be763a1e8f ruby-2.1.1.tar.bz2=53edc33b2f590ecdd9f6a344b9d92d0d ruby-2.1.1.tar.gz=e57fdbb8ed56e70c43f39c79da1654b2 ruby-2.1.2.tar.bz2=ed9b8565bdeccb401d628ec8d54a0774 ruby-2.1.2.tar.gz=a5b5c83565f8bd954ee522bd287d2ca1 ruby-2.1.3.tar.bz2=02b7da3bb06037c777ca52e1194efccb ruby-2.1.4.tar.bz2=f4136e781d261e3cc20748005e1740b7 ruby-2.1.5.tar.bz2=a7c3e5fec47eff23091b566e9e1dac1b ruby-2.1.6.tar.bz2=e1a8e6c6bfbb09bb7f8d6be8f508e4a1 ruby-2.1.7.tar.bz2=3a878e98311d543e5de3533b82ef4a5a ruby-2.1.8.tar.bz2=b17130b5f02a61640ae3b629af931610 ruby-2.1.9.tar.bz2=62bd1cbfcbc22e4d137462bce992f6d1 ruby-2.1.10.tar.bz2=5155c624807ff2418a9e9f15202954d0 ruby-2.2.0-preview1.tar.bz2=767b132eec3e70b14afe5884a7a767b1 ruby-2.2.0-preview2.tar.bz2=d7abace25a8ffe861cb2807bef1c58a6 ruby-2.2.0-rc1.tar.bz2=7144732d30dd4547c0a59862b3345d54 ruby-2.2.0.tar.bz2=d03cd4690fec1fff81d096d1c1255fde ruby-2.2.1.tar.bz2=06973777736d8e6bdad8dcaa469a9da3 ruby-2.2.2.tar.bz2=af6eb4fa7247f1f7b2e19c8e6f3e3145 ruby-2.2.3.tar.bz2=f49a734729a71774d4a94a9a603114b2 ruby-2.2.4.tar.bz2=c3d65f6d2ebe90dda81a37885ea244f5 ruby-2.2.5.tar.bz2=0c7edd1ff3650c3b74da2efaf641bf34 ruby-2.2.6.tar.bz2=3d13cf447142b8a11cd9beb7bc63fee0 ruby-2.2.7.tar.bz2=ca7224d80c08b015bc3b8c226d0914c3 ruby-2.2.8.tar.bz2=054d2e2904d5175662293e29c3bdb927 ruby-2.2.9.tar.bz2=575adf8ede6b1ca7236a5341e73536b0 ruby-2.2.10.tar.bz2=bef1909a4c885157870ef69548cdad3a ruby-2.3.0-preview1.tar.bz2=776000d74ec6dd34bf355ff6921c8311 ruby-2.3.0-preview2.tar.bz2=3ad442ccb337e77e4acaa4113f25b76a ruby-2.3.0.tar.bz2=f0d9f9bbdc87372ca98988a571875819 ruby-2.3.1.tar.bz2=c194281f63d7fcd816747fe78474be5e ruby-2.3.2.tar.bz2=9d00f3772f1c8fa5eecdfea089e3032f ruby-2.3.3.tar.bz2=04b9c461a2bc1eec0535ad1947cad4fb ruby-2.3.4.tar.bz2=99961e97566aee6d63635e2da4cf73ac ruby-2.3.5.tar.bz2=e1efc3d5a948ca1f552005efe5925513 ruby-2.3.6.tar.bz2=b2443b11ee80319a119f7ec0c9b8d79a ruby-2.3.7.tar.bz2=5eb580d5cd13ffb5aacfb96580c0043d ruby-2.3.8.tar.bz2=78045332e298dfd859ceef9fe946950f ruby-2.4.0-preview1.tar.bz2=64b8983b5f53d053906e394f734aa296 ruby-2.4.0-preview2.tar.bz2=1074e8dea5baa89af7f7c2d1d2b9ebaa ruby-2.4.0-preview3.tar.bz2=9f767e6bc61830735ea7dc9cd5a63653 ruby-2.4.0-rc1.tar.bz2=0f8b665acf4e883334adc121a42a206f ruby-2.4.0.tar.bz2=98f29161860fe1b6c65396717847a358 ruby-2.4.1.tar.bz2=07b2ae5d2f46321c95b37066c8415900 ruby-2.4.2.tar.bz2=5ff3ad6ec816bcce8806a55090936ab6 ruby-2.4.3.tar.bz2=ac8215ba561cc7c79b4f61daee11b706 ruby-2.4.4.tar.bz2=d994274eaa95b82aa5d31ec2188253c6 ruby-2.4.5.tar.bz2=45d70a8bb9397d818795ffe992163d27 ruby-2.4.6.tar.bz2=4abd13c50c1fc273a0a81a0ae74ed39f ruby-2.4.7.tar.bz2=1ce166ced489908993d78e8bb68325e0 ruby-2.4.8.tar.bz2=396d35f1a2d1deaf303f59cb5245d4ae ruby-2.4.9.tar.bz2=0b3447370651df55a2014a170c0cb1d5 ruby-2.4.10.tar.bz2=b10a7d2fcaf218c98edbaf57efc36e58 ruby-2.5.0-preview1.tar.bz2=889454189f41e271ae5ba15382911b6a ruby-2.5.0-rc1.tar.bz2=f5acdeacf56aced3c00ae6a8fa816bbc ruby-2.5.0.tar.bz2=63a6cd49546783d62de25a0ffc4aecc3 ruby-2.5.1.tar.bz2=5aaaf2fb4893214fa316516f3ac43519 ruby-2.5.2.tar.bz2=e90ab127e2ac3ee1d8840835e8ba1f13 ruby-2.5.3.tar.bz2=49aea0bf56d25351ccaf938c642400df ruby-2.5.4.tar.bz2=0c923215470f1debe593fe21e66fd37b ruby-2.5.5.tar.bz2=8f41b5cb683d48b5cb6cdfe03d135d6b ruby-2.5.6.tar.bz2=f2a74416ab3016434896194120796f04 ruby-2.5.7.tar.bz2=65597b69aa54bdca8745502c10349f96 ruby-2.5.8.tar.bz2=9ec96e7a590ef801ede294b6184c9c0f ruby-2.5.9.tar.bz2=9e905a545a729af1f1620ddfc2976fe5 ruby-2.6.0-preview1.tar.bz2=1ce507e27fa02aeb36100dabcf1da94f ruby-2.6.0-preview2.tar.bz2=e45011116334d21857b9e1712a01e6b3 ruby-2.6.0-preview3.tar.bz2=b326ceee3d3756f892515009e148f4b2 ruby-2.6.0-rc1.tar.bz2=40457a72e36cbecd0c51d9f895347302 ruby-2.6.0-rc2.tar.bz2=9665e6d886a9da2d4076fa75836798f1 ruby-2.6.0.tar.bz2=d3372daec93f83e7a91c669821053014 ruby-2.6.1.tar.bz2=73d19ac478db1a178be5ae2f2fb8c9ec ruby-2.6.2.tar.bz2=658fcc0da15578c2420ded807b11cce1 ruby-2.6.3.tar.bz2=52e609b756735115814b9c8463f185e2 ruby-2.6.4.tar.bz2=d9b35753c65f54c745ab6b0094511839 ruby-2.6.5.tar.bz2=d1b89c88effb71d75cd7ef77c35e1985 ruby-2.6.6.tar.bz2=abc030870bfbe18ae9c356abebd95cb6 ruby-2.6.7.tar.bz2=46f24740181f91247c72f19d52334379 ruby-2.6.8.tar.bz2=c53761123d17e929cfe248f50429bcab ruby-2.6.9.tar.bz2=ddc24495adaf215c8ee40630b4a55041 ruby-2.6.10.tar.bz2=6ad76db639ab308e3b6c19408729a0cf ruby-2.7.0-preview1.tar.bz2=82fab0496947acd847a6b2eb758acfc6 ruby-2.7.0-preview2.tar.bz2=966a544ab59114591898403c23d91397 ruby-2.7.0-preview3.tar.bz2=2fa6c213774744b287e7e0212b43f626 ruby-2.7.0-rc1.tar.bz2=48a8837cb352f5b95e97a1ae0d62a9d0 ruby-2.7.0-rc2.tar.bz2=cca58fdb8c5e8be8273842d54199c42d ruby-2.7.0.tar.bz2=89347748b7414f5bc7aeb8f4a87ebef4 ruby-2.7.1.tar.bz2=4bb2b2b2f0c6953859e30af140cf249a ruby-2.7.2.tar.bz2=a8acc9c24708fe29dfc287823ecaae65 ruby-2.7.3.tar.bz2=604acb258b1d8228f55799e846cfe6d3 ruby-2.7.4.tar.bz2=52705d799ed851dd3bfd5634265cde46 ruby-2.7.5.tar.bz2=d97d4377eee18b0e790510c3afed648c ruby-2.7.6.tar.bz2=1b6efacb9f129d0253d8a9faa9c21f99 ruby-2.7.7.tar.bz2=63c55e75150251d3ba092b662138e4af ruby-2.7.8.tar.bz2=f44dedf51fdb7441a7dba592d6a4a14d ruby-3.0.0-preview1.tar.gz=991df063b86a8f8412ca07f548579f39 ruby-3.0.0-preview2.tar.gz=ce14b24e923f2e269fea6441791a7248 ruby-3.0.0-rc1.tar.gz=848a8628c8abde270b66e2474049a4a3 ruby-3.0.0.tar.gz=d6af36269a1b0bc278236d371543ad97 ruby-3.0.1.tar.gz=8d1c460a9a9d48a353de3eb0f338bbfd ruby-3.0.2.tar.gz=b973af486291a1e17ad50d88472bfa86 ruby-3.0.3.tar.gz=9ecae293da9547c1438a970f04f64655 ruby-3.0.4.tar.gz=ec9de9a15acc4f205b08816d94267415 ruby-3.0.5.tar.gz=cdff2395625dc1d632fc5400c8fec103 ruby-3.0.6.tar.gz=6b5a7b14505697e6fc2b40b345679f40 ruby-3.0.7.tar.gz=147a3467facc704b5d479e809c131603 ruby-3.1.0-preview1.tar.gz=d131b9bca700ee87ea276f8233ea4c0b ruby-3.1.0.tar.gz=1ca89d713f2c18a20104befed51b3b9a ruby-3.1.1.tar.gz=702778a0ef8b7a01ef7530a541002e19 ruby-3.1.2.tar.gz=9daf064899cccc32fd564117c7a7e0dd ruby-3.1.3.tar.gz=cce38a2b2c589d59f440f67c7d8cc697 ruby-3.1.4.tar.gz=3e601ae6db76a487219a1084e5cb4c9c ruby-3.1.5.tar.gz=ce1e92ddb1230fa2d4f4367882542555 ruby-3.1.6.tar.gz=880923d0ce02717023683b522dbe92a5 ruby-3.1.7.tar.gz=20b73ea8e850d7e12c226b3772b1d0ed ruby-3.2.0-preview1.tar.gz=a83c91d53e130fe232e4c27ecc8738da ruby-3.2.0-preview2.tar.gz=56e7801b37612b82285c9a09cfeb28ce ruby-3.2.0-preview3.tar.gz=0ed16faae50403b4e2ba2e85ec2314a1 ruby-3.2.0-rc1.tar.gz=4657d7013702adce21ca21dfe71ea4a0 ruby-3.2.0.tar.gz=76ca7e7d71898ab1e85155d69403754e ruby-3.2.1.tar.gz=055101c924538467c63fcbf42abddc75 ruby-3.2.2.tar.gz=eb6f18605e1e1be5dfb5b45f31bf6a93 ruby-3.2.3.tar.gz=e0ba90554f7ea41c587ffa7fcfd064ca ruby-3.2.4.tar.gz=c48283a23c72d7aae19b7f510b89444a ruby-3.2.5.tar.gz=3bd6f2b26918c8637abf56c2f208833e ruby-3.2.6.tar.gz=fa9bd65bc429a43a3e6dda8ff0b97022 ruby-3.2.7.tar.gz=c72e290d57080f828156b5c24fe8e4ad ruby-3.2.8.tar.gz=aa16ae868ae1cb8810581ea604e4e0fa ruby-3.3.0-preview1.tar.gz=0833f555b1b8d5423953600fb4146639 ruby-3.3.0-preview2.tar.gz=4f82f4c9e512ec0a53baa1be8d35ebf7 ruby-3.3.0-preview3.tar.gz=a32ede198a9da50d4afc4421a4a993ad ruby-3.3.0.tar.gz=f57422a0f995cd5a93c726f6c42c310a ruby-3.3.1.tar.gz=368e331a35145ace4948390ed76cf1df ruby-3.3.2.tar.gz=9a7efebc6a0e4810c716ec6d401dc372 ruby-3.3.3.tar.gz=beb9773cc4d9d8da29463ab175e4db28 ruby-3.3.4.tar.gz=f2e16c1a56e07e185214e85c62657941 ruby-3.3.5.tar.gz=ccad73b02d942d1e6b4c27873d4c08e4 ruby-3.3.6.tar.gz=51bcf91da64e5889e2e59c7adc7189c5 ruby-3.3.7.tar.gz=5fa3e653657d868e2c8377d2f3adb335 ruby-3.3.8.tar.gz=874dd01d11ddb2886df05340c6388ba9 ruby-3.4.0-preview1.tar.gz=93b9b1040a2dd7be7514a7870aa7da03 ruby-3.4.0.tar.gz=2acf769caa47f692fea932ab81e75639 ruby-3.4.1.tar.gz=43e587b9a6de2a51dd1fa2613615542b ruby-3.4.2.tar.gz=120907785ecc0a84521e924cbda66af9 ruby-3.4.3.tar.gz=3fe26229fe20342d251503b83fdf0b02 +ruby-3.5.0-preview1.tar.gz=1e69ce0116e8cb15e9affa261a89def3 ruby-enterprise-1.8.6-20080507.tar.gz=17e3c52e73e42809f57ad0000a6cb4ab ruby-enterprise-1.8.6-20080621.tar.gz=626fc3811eee2dc92ac27ea63d37a8b2 ruby-enterprise-1.8.6-20080623.tar.gz=0bf8a3a93c6b37bb1260cc09b05e81fd ruby-enterprise-1.8.6-20080624.tar.gz=de58b97128aa65209f291c66eab7c4a7 ruby-enterprise-1.8.6-20080709.tar.gz=f0ded08cec64959fa388ec6a237b9c47 ruby-enterprise-1.8.6-20080810.tar.gz=bfdcf06f437af825cd9f2d321f9d1896 ruby-enterprise-1.8.6-20081205.tar.gz=50206bec9be2e08a862e5ec2e70fa693 ruby-enterprise-1.8.6-20081215.tar.gz=aab57b7d5061c1980bec5dbe311ec9b2 ruby-enterprise-1.8.6-20090113.tar.gz=e8d796a5bae0ec1029a88ba95c5d901d ruby-enterprise-1.8.6-20090201.tar.gz=a965e6789b553efaed72191825b13713 ruby-enterprise-1.8.6-20090421.tar.gz=c777b361aadccda7988be16ede7ab15f ruby-enterprise-1.8.6-20090520.tar.gz=156572a8296bd0440970a6bb95018a13 ruby-enterprise-1.8.6-20090610.tar.gz=0bf66ee626918464a6eccdd83c99d63a ruby-enterprise-1.8.7-2009.10.tar.gz=3727eef7b6b1b2f31db7d091328d966e ruby-enterprise-1.8.7-2010.01.tar.gz=587aaea02c86ddbb87394a340a25e554 ruby-enterprise-1.8.7-2010.02.tar.gz=4df7b09c01adfd711b0ab76837611542 ruby-enterprise-1.8.7-2011.01.tar.gz=4640634347cd8e5469cb718853e2112e ruby-enterprise-1.8.7-2011.02.tar.gz=8c5faa11c1ddaed3f44b7294711980cc ruby-enterprise-1.8.7-2011.03.tar.gz=038604ce25349e54363c5df9cd535ec8 ruby-enterprise-1.8.7-2011.12.tar.gz=1e5f3059d52a67ab5d91d472b756de08 ruby-enterprise-1.8.7-2012.02.tar.gz=8d086d2fe68a4c57ba76228e97fb3116 ruby-enterprise-1.8.7-20090928.tar.gz=ae00018ce89d95419dfde370fcd485ac rubygems-0.4.0.tgz=86a64616548a793e1a5f825f0dd385b9 rubygems-0.5.0.tgz=80d151edd94a06bcd2452a7e272b4d96 rubygems-0.6.0.tgz=5df803f5a04654833690dd32283de741 rubygems-0.6.1.tgz=c4a0faa9f876ad805ae80d1396a29d97 rubygems-0.7.0.tgz=ede9b55343219e8b3491793aa12c46f3 rubygems-0.8.0.tgz=9ef6e3c34dcb54e295c8e57321ddc079 rubygems-0.8.1.tgz=6276d268b420c0d61796cdbf6d28dae4 rubygems-0.8.3.tgz=6e6da80f61d6e77d0ad9e531767f6fd5 rubygems-0.8.4.tgz=a2ad2d03dae8a98002c2a7cd6c3ed352 rubygems-0.8.5.tgz=b917c084e1e6e99d8e102af8dd687ddb rubygems-0.8.6.tgz=9de98d2f62e3f91521b0207a4dcdeb5b rubygems-0.8.7.tgz=7fc04b9f9acc0c18cbbe6222be8d0bd3 rubygems-0.8.8.tgz=a8535e9c35a4c215d6ef9268d4bc69ed rubygems-0.8.10.tgz=d26592e280c0fb24c51f2837c3f48e67 rubygems-0.8.11.tgz=aa363b428c4c1fc2e076a4ff77b957d7 rubygems-0.9.0.tgz=5d496e1f415b8b4033ab867f01d1161f rubygems-0.9.1.tgz=a62314cdb174ccc88a27b8924fa79e4a rubygems-0.9.2.tgz=cc525053dd465ab6e33af382166fa808 rubygems-0.9.3.tgz=600940a22ecd79e28e0fd37ad1f1d871 rubygems-0.9.4.tgz=b5680acaa019c80ea44fe87cc2e227da rubygems-0.9.5.tgz=91f7036a724e34cc66dd8d09348733d9 rubygems-1.0.0.tgz=b0b74eac0cbfc5a13f895ab6f803edc1 rubygems-1.0.1.tgz=0d5851084955c327ee1dc9cbd631aa5f rubygems-1.1.0.tgz=85f994904c5b4045f0a859b29d0be717 rubygems-1.1.1.tgz=1a77c5b6b293a3ccd5261dc120641ccc rubygems-1.2.0.tgz=b77a4234360735174d1692e6fc598402 rubygems-1.3.0.tgz=63d3dfc038710eaf532b6a133225115a rubygems-1.3.1.tgz=a04ee6f6897077c5b75f5fd1e134c5a9 rubygems-1.3.2.tgz=6204d0a4c526a1d8fdbce746647b179a rubygems-1.3.3.tgz=0e9697db44d812712350baf28016b4a7 rubygems-1.3.4.tgz=b17b398503253bf36a101c58f02a226f rubygems-1.3.5.tgz=6e317335898e73beab15623cdd5f8cff rubygems-1.3.6.tgz=789ca8e9ad1d4d3fe5f0534fcc038a0d rubygems-1.3.7.tgz=e85cfadd025ff6ab689375adbf344bbe rubygems-1.4.1.tgz=e915dbf79e22249d10c0fcf503a5adda rubygems-1.4.2.tgz=b5badb7c5adda38d9866fa21ae46bbcc rubygems-1.5.0.tgz=49bef7186bf3c0ca6ee7adf4b585bccc rubygems-1.5.1.tgz=47577a5e33c9c6f1e3a56aff7f51d0ff rubygems-1.5.2.tgz=3951f94c09c16c774c8bcebc94fa5374 rubygems-1.5.3.tgz=38bbbdc17aef923fb41f054cf8421116 rubygems-1.6.0.tgz=abd27b5a9002100ff74ddb398a1c9689 rubygems-1.6.1.tgz=a77c64896aaa10d64aaf34f5c1488173 rubygems-1.6.2.tgz=0c95a9869914ba1a45bf71d3b8048420 rubygems-1.8.6.tgz=8e95d0c5b377a003f3d54a49461e81d9 rubygems-1.8.9.tgz=fc399445d693c29778779e5828ee5e90 rubygems-1.8.10.tgz=5b08ee31740c9b0bd36f6c04d537e7d4 rubygems-1.8.23.1.tgz=5259ce3eb7988950fa3aff9051a5de91 rubygems-1.8.23.2.tgz=fb377c7fd387df14a33e529153adc316 rubygems-1.8.23.tgz=178b0ebae78dbb46963c51ad29bb6bd9 rubygems-1.8.24.tgz=3a555b9d579f6a1a1e110628f5110c6b rubygems-1.8.25.tgz=1376a258d43c53750a8df30e67853e10 rubygems-1.8.26.tgz=0ea47f1efd010f4c82b8a51a934f48dc rubygems-1.8.27.tgz=6686ad26735c21d0d6e58b6192c7da5d rubygems-1.8.28.tgz=2df78039f391fb1f71c02c2fc5671c94 rubygems-1.8.29.tgz=a57fec0af33e2e2e1dbb3a68f6cc7269 rubygems-2.0.0.tgz=89ce467eb2d55657e9965a46559acbcf rubygems-2.0.1.tgz=2652ab6f001a873b8933e2ca09505974 rubygems-2.0.2.tgz=3471f140a70bcd32a7495b545cfce790 rubygems-2.0.3.tgz=854691f145cea98b4100e5b0831b73ed rubygems-2.0.4.tgz=3ec32dbe783bab37a87f50758f8efe13 rubygems-2.0.5.tgz=641d82672937d40d664dbc18f49cdcec rubygems-2.0.6.tgz=0633f50db16112bf6c3cf9bfb9ceb9bd rubygems-2.0.7.tgz=9046700f1222712fedfb836fafa08c50 rubygems-2.0.8.tgz=5432214a740c0d13482e43a5328a6518 rubygems-2.0.9.tgz=bc55898247297ffa190223276b1b1bd7 rubygems-2.0.10.tgz=5457ba403cd9a5f4f5fb2ef4a2a1c03e rubygems-2.0.11.tgz=0f28e3fde3348c0f23ceecba73a6cbef rubygems-2.0.12.tgz=99c416517e2de1146d2c6fbb4c4c1441 rubygems-2.0.13.tgz=3970e66a670ddb6d1aade9c7b18033d4 rubygems-2.0.14.tgz=4a7aa0b144e465230ab5d7b59dfd7e8f rubygems-2.1.0.tgz=9a9d242baef5e58fbfe79ec5206cd316 rubygems-2.1.1.tgz=b34d6f4028b69a84123a6b7cb0ac8028 rubygems-2.1.2.tgz=b5c5c4430be60f911014216d41886ef3 rubygems-2.1.3.tgz=ac7bbdfecd49f9304756aa5ebeb51400 rubygems-2.1.4.tgz=aa502b1ea90fbdd14ca9b32634795c2b rubygems-2.1.5.tgz=60564b762d4e186815997653b1c876ab rubygems-2.1.6.tgz=e11237a8f87dbd8c085770551d64a8f8 rubygems-2.1.7.tgz=b721ed7d5fd57ed05f77eb21a3a592ee rubygems-2.1.8.tgz=cc4c84c0482840389a457740e8083ed9 rubygems-2.1.9.tgz=2636bf26c0a9ec889c7bd938887bd9a3 rubygems-2.1.10.tgz=6fa671d7d6605de73d16f529cf7bffb8 rubygems-2.1.11.tgz=b561b7aaa70d387e230688066e46e448 rubygems-2.2.0.rc.1.tgz=f7d80b612339169569f2675155c202f1 rubygems-2.2.0.tgz=3c16e50673adb99d1ce76d5231f764bd rubygems-2.4.8.tgz=dc77b51449dffe5b31776bff826bf559 rubygems-2.6.10.tgz=ab5a0028d2a0653691b29d7463bd0892 rubygems-2.6.11.tgz=8d514b836fcf3ae2c20b4fe8d5cdc3c5 rubygems-2.6.12.tgz=7c454ef88b716c1a123f62b26bb9612b rubygems-2.6.13.tgz=e6f19b51614055d826e431549a12a80b rubygems-2.6.14.tgz=e0a6914ce03b91dfc6d448ebf292f145 rubygems-2.7.0.tgz=771c40015538c0f225c5249e4bc7d441 rubygems-2.7.1.tgz=65646f28f3c36ccaa7f991c17e15b8a9 rubygems-2.7.2.tgz=312a238ed98a61d2b3d165b790b6062b rubygems-2.7.3.tgz=fb3a1927a1842b75677a24f48dd63ddc rubygems-2.7.4.tgz=e9bbf5a4cc9a74293884b91f49603ea0 rubygems-2.7.5.tgz=516a4f219976003feb4b4f797cbc66b0 rubygems-2.7.6.tgz=366cea352c2b1243db726013c3d76fc4 rubygems-2.7.7.tgz=b6721f6ce4af08f68c6f513bbddfe484 rubygems-2.7.8.tgz=a3ed89a34e1ae8f9da0c620a8aa35f12 rubygems-2.7.9.tgz=173272ed55405caf7f858b6981fff526 rubygems-2.7.10.tgz=464754059d8ca01c1121a1233d866e8c rubygems-3.0.0.tgz=3908105894e531f7ad3aceb8b41dcbcd rubygems-3.0.1.tgz=1e8af9b87a67f15841ad2be7d5725a5f rubygems-3.0.2.tgz=d8db1b516ae1e35b8f6f56cb526f879a rubygems-3.0.3.tgz=b7a7dd5f85485334a6cb61b7dac20cff rubygems-3.0.4.tgz=7d0c49077a2d19f48d88567cfa3cf17a rubygems-3.0.5.tgz=4664467d621d719688e4778d147c306a rubygems-3.0.6.tgz=60d84e843b131fb87c8fd67e8fac6470 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=3e9afdf72f153e2f66259fc2b6fca594 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=c30459287aec83548cfcb17340fa73d5 truffleruby-1.0.0-rc3-linux-amd64.tar.gz=138f6814451ce634b0fae3aca5579248 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=94ed54ecb65bea2166a2159431b0362b truffleruby-1.0.0-rc5-linux-amd64.tar.gz=9e5428611e22b093d05afebbe0ccbc2b truffleruby-1.0.0-rc5-macos-amd64.tar.gz=b32a254fed71434c3431fb2effb35c5a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=7f394a8c7fe356b7bd36683c57f74ebd truffleruby-1.0.0-rc6-macos-amd64.tar.gz=f033329d03f1f846d25728c2af9d7524 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=184e98f2d6939f63db4b915943ff60c6 truffleruby-1.0.0-rc7-macos-amd64.tar.gz=d19213b33011f7a55e0f32d25e19184f truffleruby-1.0.0-rc8-linux-amd64.tar.gz=a394167c0331c6d8c1123e1f992e5411 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=dc1bf0fcfdd5837ae0ca56d6d6e5f7b0 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=f6ec25bd532bf0551d35327d1aa4caf9 truffleruby-1.0.0-rc9-macos-amd64.tar.gz=c80a345f9071521cf1961ab75ebc7dd1 truffleruby-1.0.0-rc10-linux-amd64.tar.gz=3a889726efcdf33feb7ef3df13fd5f39 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=bba618b4483b79eebf9f0e7af4078502 truffleruby-1.0.0-rc11-linux-amd64.tar.gz=a25e179ca0be96a1bc737a600729c195 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=bb8d8f5525e1ba86bb039e56291c6c7c truffleruby-1.0.0-rc12-linux-amd64.tar.gz=872774837057489250527bf863192115 truffleruby-1.0.0-rc12-macos-amd64.tar.gz=bb4a64e6c4882fd0c5e412bf9c57720b truffleruby-1.0.0-rc13-linux-amd64.tar.gz=0f36eed2eb36846785fdd4eae24adfa0 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=1bd3087a0f2df4c006b87c9488ada6d4 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=9eddd1aa98c9649e7c01bb10bf28c471 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c93643f1d00b370411310ee7a1dd5330 truffleruby-1.0.0-rc15-linux-amd64.tar.gz=bc7339a6218ea991f2c72ce8759cb6e3 truffleruby-1.0.0-rc15-macos-amd64.tar.gz=1671d08dd2f5026d58b326fd55c9b7de truffleruby-1.0.0-rc16-linux-amd64.tar.gz=5564d17f19b8ee0edb96ab5b1bfbda98 truffleruby-1.0.0-rc16-macos-amd64.tar.gz=61583b529b6a1337398b0966db952d24 truffleruby-19.0.0-linux-amd64.tar.gz=006220c7bde7d0b5c72481133624a83f truffleruby-19.0.0-macos-amd64.tar.gz=9ef7f5a311465d35e54ac6e00ec3d169 truffleruby-19.0.2-linux-amd64.tar.gz=2f7fe574e0695fb6001f4f5282aa2f79 truffleruby-19.0.2-macos-amd64.tar.gz=aa20f76b3eac1f4976a507364201d1ad truffleruby-19.1.0-linux-amd64.tar.gz=71368f8371069017d911528f052b0a55 truffleruby-19.1.0-macos-amd64.tar.gz=7f086adbc89fdfaed35273394ac3ac66 truffleruby-19.1.1-linux-amd64.tar.gz=c1ad4d17bb40e214b124222f3a7c6db6 truffleruby-19.1.1-macos-amd64.tar.gz=f4e76b0612319b4a82480cbd1fc90210 truffleruby-19.2.0-linux-amd64.tar.gz=458ed5fec1a849ef5b00e19b0e25d5e9 truffleruby-19.2.0-macos-amd64.tar.gz=dc324575ad20e3054980835c24ea7161 truffleruby-19.2.0.1-linux-amd64.tar.gz=ad7444145550d89931199159163077c1 truffleruby-19.2.0.1-macos-amd64.tar.gz=b5bcfb0aaded1e2d1763089ab6c9a14d truffleruby-19.2.1-linux-amd64.tar.gz=fc4879d2b0cc22c152a8bf893a72c346 truffleruby-19.2.1-macos-amd64.tar.gz=71448ff3f8f1da086f222751d3f853bc truffleruby-19.3.0-linux-amd64.tar.gz=dd44ac30b5a1ef3a7d61172cda9b30b6 truffleruby-19.3.0-macos-amd64.tar.gz=41daa52f0f308abb77a2b91c1b7e0f3d truffleruby-19.3.0.2-linux-amd64.tar.gz=2db2cb5c29523c9bdb6f59dfa0bd74ce truffleruby-19.3.0.2-macos-amd64.tar.gz=edf1603643938686dce57139aadf7d3c truffleruby-19.3.1-linux-amd64.tar.gz=a14c028351f7a3965bcb56e9b22364de truffleruby-19.3.1-macos-amd64.tar.gz=a8707d0af3eda694ec07a5387d3443fb truffleruby-20.0.0-linux-amd64.tar.gz=b30110ecbc50c4fce402fdf44c45dad5 truffleruby-20.0.0-macos-amd64.tar.gz=0671e5909cefb9a2c12c473fc0110821 truffleruby-20.1.0-linux-amd64.tar.gz=4592b5fc3636d82fc998ab6fe0a43584 truffleruby-20.1.0-macos-amd64.tar.gz=3c0be43db86817c7037d3ff5053d322d truffleruby-20.2.0-linux-amd64.tar.gz=e9859decb24829f9a189d88b3c2e9b79 truffleruby-20.2.0-macos-amd64.tar.gz=49e7ccf8f9e60d6c59b3b07b854466cf truffleruby-20.3.0-linux-amd64.tar.gz=93a20845f7d9d39100761424dfc0a734 truffleruby-20.3.0-macos-amd64.tar.gz=b178b7a94fac58400450417612fe3441 truffleruby-21.0.0-linux-amd64.tar.gz=c03304a505c8699e697acecf5030d95f truffleruby-21.0.0-macos-amd64.tar.gz=019796be37a58ef8e186a625f2ff5d07 truffleruby-21.1.0-linux-amd64.tar.gz=065bfcc48f6925410e0da21e16428b64 truffleruby-21.1.0-macos-amd64.tar.gz=325f6854c10d8a3a114c80da582c469f truffleruby-21.2.0-linux-amd64.tar.gz=0aec44721a040845347f18c1f72ceb75 truffleruby-21.2.0-macos-amd64.tar.gz=76d27715b20902df5779f7a0c00852b1 truffleruby-21.2.0.1-linux-amd64.tar.gz=f68e9b8a9f9cae5efc5ac45a7d9e760d truffleruby-21.2.0.1-macos-amd64.tar.gz=b021e50fc94cab590b49d27f2ea821b0 truffleruby-21.3.0-linux-amd64.tar.gz=359aca79cba4e08f9955d9c6543c2189 truffleruby-21.3.0-macos-amd64.tar.gz=d9e2e2c6fcd3ac16f0c37b0ccffb4f41 truffleruby-22.0.0.2-linux-amd64.tar.gz=324327026e9b2963a8e5fb4ee3f4e216 truffleruby-22.0.0.2-macos-amd64.tar.gz=7029d0e291d498a264d9b413729a3e17 truffleruby-22.1.0-linux-amd64.tar.gz=9329cf507ba8ac529e93156cacc1425d truffleruby-22.1.0-macos-amd64.tar.gz=353242978b46cafc34b05e2c81206096 truffleruby-22.2.0-linux-amd64.tar.gz=5d676377056ae94fe847be721c20405b truffleruby-22.2.0-linux-aarch64.tar.gz=b774f4b7d330842521f1e6e56cb41db5 truffleruby-22.2.0-macos-amd64.tar.gz=e45fdd9a05aec6220a76fb707b0a5ae8 truffleruby-22.2.0-macos-aarch64.tar.gz=ebcbfe056d90d06de4bd0a9d699bad8f truffleruby-22.3.0-linux-amd64.tar.gz=ada8bc5dc52aca8317eaeab04d91e877 truffleruby-22.3.0-linux-aarch64.tar.gz=11493301d5519aa73e8f0e140cefb581 truffleruby-22.3.0-macos-amd64.tar.gz=9e27c677637b69b0460fb0a4569a5cca truffleruby-22.3.0-macos-aarch64.tar.gz=eaa1c9020b521226f8bb48b8c7e5c596 truffleruby-22.3.1-linux-amd64.tar.gz=243d926f038fd2220c03dfbe40ef58c3 truffleruby-22.3.1-linux-aarch64.tar.gz=01487fe680863381489bf2a0a2ac162b truffleruby-22.3.1-macos-amd64.tar.gz=b3d5a777d94856e51034d81076e8ef72 truffleruby-22.3.1-macos-aarch64.tar.gz=320ce75730a5b9f16f111eb7ef5e4e09 truffleruby-23.0.0-preview1-linux-amd64.tar.gz=76c1cb23ee63ba4de93a0c23784bfca9 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=eec3fc74565f08e9468982692f7f9010 truffleruby-23.0.0-preview1-macos-amd64.tar.gz=50e38f3cd548dfe78f397f76ed577bf1 truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=b769bcf9b843d9b2980def1e2139284f truffleruby-23.0.0-linux-amd64.tar.gz=6e1a491406c5dbf42de10fcb3ed7dc1c truffleruby-23.0.0-linux-aarch64.tar.gz=5c3663f64bee707173b2684355a9a42e truffleruby-23.0.0-macos-amd64.tar.gz=515a9a8a0f39ba9399e869cd418ebff5 truffleruby-23.0.0-macos-aarch64.tar.gz=57e5fa52270e692b82c445107fe6b6a6 truffleruby-23.1.0-linux-amd64.tar.gz=f7511c19045e57e72f9b5415bc17c8e8 truffleruby-23.1.0-linux-aarch64.tar.gz=e8a20dd919a2ff77b7cc5457e853d15d truffleruby-23.1.0-macos-amd64.tar.gz=d3b6a3cbc0a230ebae6f3a462a32ddd3 truffleruby-23.1.0-macos-aarch64.tar.gz=ee74fc5d192c2fb8afd0458d2d429c02 truffleruby-23.1.1-linux-amd64.tar.gz=d7e1c040da170aaa36b5f5a1d106d237 truffleruby-23.1.1-linux-aarch64.tar.gz=cf508ba3787be20c03bac690f3bdbac5 truffleruby-23.1.1-macos-amd64.tar.gz=a662a8672871524808500dddef3808c1 truffleruby-23.1.1-macos-aarch64.tar.gz=de543312024993a533e3caa63b396127 truffleruby-23.1.2-linux-amd64.tar.gz=e3e5b01b291d7fea61be2be842c7e8dc truffleruby-23.1.2-linux-aarch64.tar.gz=8fe26f643fa81eec6de3bde7024c858a truffleruby-23.1.2-macos-amd64.tar.gz=83bc41bf699fa847df7e60412bee2823 truffleruby-23.1.2-macos-aarch64.tar.gz=7dbd2e182cfec0cf2d2e37784721903f truffleruby-24.0.0-linux-amd64.tar.gz=202f05706d28faca75d5e3cd0f9bef78 truffleruby-24.0.0-linux-aarch64.tar.gz=4faaf4edde4f6a516246b7c2f4ee80b3 truffleruby-24.0.0-macos-amd64.tar.gz=d07f27e0e29398c6de836b0049105c12 truffleruby-24.0.0-macos-aarch64.tar.gz=10cf176718968893468caba617c02141 truffleruby-24.0.1-linux-amd64.tar.gz=2914bfb81b136cd1fb5736c0a40068e3 truffleruby-24.0.1-linux-aarch64.tar.gz=429e6ada9a95ea23ebb95d01f90eb0f4 truffleruby-24.0.1-macos-amd64.tar.gz=e3aa5ab128f5d169d93f2d6df98c4e77 truffleruby-24.0.1-macos-aarch64.tar.gz=6f81a1afe1b89a40f00c9bd4216ec45d truffleruby-24.0.2-linux-amd64.tar.gz=1a826ea6323a25becce5940d8e6c4642 truffleruby-24.0.2-linux-aarch64.tar.gz=45429f35653bd8cbc328eafe81d15e8a truffleruby-24.0.2-macos-amd64.tar.gz=f68aeb26783d048ae5f78e1c13739747 truffleruby-24.0.2-macos-aarch64.tar.gz=df05f94696b4f4584a259001a3d4d1d0 truffleruby-24.1.0-linux-amd64.tar.gz=14aa05250088f17491072e500c22c039 truffleruby-24.1.0-linux-aarch64.tar.gz=3e26495f8aa7b810ec5794a69e93483a truffleruby-24.1.0-macos-amd64.tar.gz=53b6251cdd359176f9e52fe05f05e949 truffleruby-24.1.0-macos-aarch64.tar.gz=28d61b8a1a307cbdf988313c8a1f77f1 truffleruby-24.1.1-linux-amd64.tar.gz=9ef530c2ac5f597100e69e4b374182c3 truffleruby-24.1.1-linux-aarch64.tar.gz=efcc6f5c51be84d2ec99e6cebccc586a truffleruby-24.1.1-macos-amd64.tar.gz=11e2f0f62c55fcc8330cd66393abb1fc truffleruby-24.1.1-macos-aarch64.tar.gz=eaba15df3e46cd3976bedaf6f086aae2 truffleruby-24.1.2-linux-amd64.tar.gz=ada406523c5cf80f7655a9314902e2b5 truffleruby-24.1.2-linux-aarch64.tar.gz=5a5dc457002a8a65b21264efd0387d5b truffleruby-24.1.2-macos-amd64.tar.gz=cb6142250e4b0b2b164ffa7ce47d5f29 truffleruby-24.1.2-macos-aarch64.tar.gz=f73e0af905cabe695b0fe6c73df699a1 truffleruby-24.2.0-linux-amd64.tar.gz=326d5bc6b5232c88e00837d30884ba52 truffleruby-24.2.0-linux-aarch64.tar.gz=391fa212eaff207df31860a291fee28e truffleruby-24.2.0-macos-amd64.tar.gz=0e21c5233ac4a20c4221900c79602496 truffleruby-24.2.0-macos-aarch64.tar.gz=9573cceaf4e1d6444cff0fda3695228a truffleruby-24.2.1-linux-amd64.tar.gz=c476f9d53f1b5bab9748b1468aca211a truffleruby-24.2.1-linux-aarch64.tar.gz=7965413b6261e499b13e5bb3aa26fa4f truffleruby-24.2.1-macos-amd64.tar.gz=d02cf59ffc11bb92423ca28ceec5863c truffleruby-24.2.1-macos-aarch64.tar.gz=b2134063922abdd3993ce4d2756c60ea yaml-0.1.4.tar.gz=36c852831d02cf90508c29852361d01b zlib-1.2.3.tar.gz=debc62758716a169df9f62e6ab2bc634 zlib-1.2.5.tar.gz=c735eab2d659a96e5a594c9e8541ad63 diff --git a/config/sha512 b/config/sha512 index 5b5ad48..24fcad3 100644 --- a/config/sha512 +++ b/config/sha512 @@ -1111,668 +1111,669 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.1.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.2.tar.bz2=fafffbcd24eb3c55c89704e6e8ea48ad6be286bbb4e38f56c3b3d61f9bf4f6bec28882da2ff60f17f79516476ae50cc4cb8c6a8cf4a0f31b910d6153727caed2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.3.tar.bz2=4daaf8bba3a04d46e04720ff2af1469e1caa68168f5c27d1d3e0cab922055b1f9c0b26ee64c3cb46c17b6a9651ee7a11bad19e9414102455e96454f1a7929408 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.4.tar.bz2=988c13e900168b901a3a3deb4bb96e19b15205cf4c2793b56854b58924fff652946a083be6615b2053fb5285df0fd218d1f9f91562798f0386f0758973765dcd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.5.tar.bz2=c7396627e45d8df68b18c2491fa756085aeb4ec28c1cc707617cd903fcd47d4fdd3cd6ed225dccc14497afb14200b9bea5ba38f1e8dc621c4aea8b8f0f1ccc7d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.6.tar.bz2=389aa514d93d165fe299856a5348b1667f295aaeb49094bb5ff49e9c6861bac603e698c36bf81777797d05a1d3c405e37c1a00a4dbb85f262bf02c1b0e16ff04 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.7.tar.bz2=5a38bc1dd227658347114b935ad66e27fab67b8da9529a7f9083d6aac5743c40aea8c33ca95d4f10ed1d56f29bcc2c0747a3e88b87425a5786245792d8851301 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.8.tar.bz2=44e36e4918ab4c354cacdd20be30acf12f060aab808172184251186758f750ce688eef72f39ea110ab6429fbaaa5a792b1915a5c2d845b6e22a3cc4bc851c6b9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.9.tar.bz2=358f12ae2d4e177a080bbcde8b275691418884eae9a42c98161170c7b0f6029ffebf7ffad27961bfc8a50a393796934a2dd2c7f0ad2a35992c35dbd6c8c6349f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.10.tar.bz2=e7e98be6cf658eaab81486360f4d5d22f86805582feee4aa11a8e2fe6b461db69b850c7ea98840af0811910be7f534317ab5887bc48f47a9591b65fa7262feea https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.0.tar.bz2=307ee69b3051fcec2942fce075232a62f6adf6486239a89fab7bd63a9bf068e36371e67a5e42f86ed60e31b8219ff431c2d4bcf519b2c10393504942d2d90a9d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.1.tar.bz2=a0a30a805be9c43cfe52793d103e9f0dc6076d02b0c5af36d650564aa43958164a278958f7a7e1132ee5d3357cdcfaa8d59a4cc0bab027e288d935a44958b743 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.2.tar.bz2=d3218d01a18f5dbcdb65f216469a463215784170d32110f06372fda6325bc17e2c2aec1601a5bf3319ad753b123de056e6bee8aacdd7c64c4859570d40571ec6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.3.tar.bz2=4fb3bc10aa46a85cc37fb041d351b2a8f74d70c3de32fbceefebcd6e757cd8dffdfc86cd14fa6ae7d5273f875e1d4e13e6446b6dd1882c8fb015d1d34ab5ed2a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.4.tar.bz2=a008439e903b1e97eb5a66a88cf72c2e7438b12b78750411ba0ffa496c68beb8cacc2037763be1c8c8841fe9a248d4be0d0976420db0520b4b8456aed5480f3d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.5.tar.bz2=14573495aadfabb81b985aa485c0090a816f459a0db8e790a7d1bd948897cf650fef4e8aad7d2ab8232d2ebf56bf08363730dbbfbc2318625dcab04d3904b3dc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.6.tar.bz2=e915bc10ecd1129d7ed55a12fdefdd6b6fccc281cb3cc0790e5970978f17652068ccd7fdc160608cadc8556abb73a2c187d041899adfcfcb4a311285415145ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.7.tar.bz2=d80b934273b84d7ccc4e17fa07c9e0a0f95cb4a38224bd60ff73772ef7ecb3d1974e686bb10aa319642709e49789c0886f98f4fc1ccc5312a19ca19f03674e7e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.8.tar.bz2=9bf0cc35deab5f53900bc8e8264dc1b57f91a3477f241848df48109f4b5c97f3140470f523fa768a7543c61cdb7a93427866d871d09ebf8060a5cb75ac6d3790 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.9.tar.bz2=0cdefbcc88c5b9d34c08c8871c548772bd473dbaf54738f9855afddae8da5eecda607b36c546077efd0165114da385cd1f296433afe411f57a524fbff0a69291 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.10.tar.bz2=3aed1b12ca46e34fce66ac23bdd97ef815918275d91ca4723f9a6f2a2b93cb2b66f845747951593eaaf078bd0d982e06efa7641fc3e11d141b7605b086f93393 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.0.tar.bz2=ac6a699d5d08b33e7580a24c9357c0c8e8378208fc7385f5582f088a879f61e48a4654d72f03263a1dcf33fb0838b01c8c21fd39c5e2549d683466e0441381d5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.1.tar.bz2=77cb7698c66ccede33f558f6ab9ebe4be3b775a567d1d4dc12fd85d7b0f28d7bd446b18ef48ba1c879dadd76b50540b57f283e9f226e904e620afc3ba6585bae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.2.tar.bz2=9592c8e2fd9266f5d1cc780706f558e15d775cece995f5b6e933c54be7b7f2be2839b28ef1898b2072c5cdce36b830e72f967062ece4393765f8dbc88c6dff88 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.3.tar.bz2=8243575f30eb38409003b0450ddece621a589e29a4ffe219410820bc2afb97b7daec4c81d59d95dcfc83138414a2df707c925f0eb56907d565dac4bbd5a929d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.4.tar.bz2=ae16edab6e55d1b2506c4cb30d836639035a7fc153511125b578d6da8a8b40cd87650855fc6b4cf777c1fa0428c593325af88d9ad25d53acfbde0051a730eaa5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.5.tar.bz2=10f4aff595d12bdb425eb3268c868e0efb92059e6aed8683fefa5abedc1ef21d23a45e17802edd8e5e0924ba1c3277b653c0559ef4ad4c9dd2be2fee17226f8d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.6.tar.bz2=bc352df203155008da7a1099f7f7d26eb9f80e0d2e41c8adec5eb47f976529c6126bccc207563de87ccc2867d1e4c43797efbf295c9a7a4afce002ee19116074 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.7.tar.bz2=d71dc217011d154ef7b33780366bff07e4232ae77321ad6d16f19090f924ed3867c31f2af4aca4ffbc6a536b0320b676716ffb43e34b0323e81eafab13f17fa1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.8.tar.bz2=aae74010426e2a1288280f3611ba6aac842ff573f9b122fda9a4f1c514e09cb3d22281e6957b4acfcc753c94113852e083a9a80d0cae6b33682b83669c475eab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.0.tar.bz2=4a083c168d9facf3346b67dde02d9705109feef6fcd4e3c7c59c2bcb35c83597305e09ee143915fd993799a888d6d9ffffadb386bd57e9477312566dd6164deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.1.tar.bz2=58b30b00156691de2acc5d21d3255029fc3f9f2536e668298ab160d300fa0bf3eb0705aa524c9123ff09d770807cda0154bae012632b7e87120d7538f844560f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.2.tar.bz2=4c3c586765fd5afb55383d16eb9d0e7ffa5b1ff988a2b1d847e3f972a211b2401f035ff6c02d71de558cc161655438727079aafcc8ab80c97e07e16cd7fb1304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.3.tar.bz2=e66a4ca4b95496964ff4d77e36caf0894d913c1116f901c9b589da5a0e388302b64a79ad6acfe7eb1ca5917825bc0f866b482f074f1d5fed96d91e238f7ef454 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.4.tar.bz2=f95eee611be949327224b89942f4344e7d8e075b958ce3418b5874e9b23981113e4fd58254629fa9f6c2fdaf5840d44785ecf5f04433987f8fc4415df5c3e367 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.5.tar.bz2=447b28420be5b19f6b1381d232920e3c20bc894c2e0d1d2e394cc44e7859d02d177ec3ee09ce96e922f55b7fe2651918805f00fb783af3780e5f25c21f330195 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.6.tar.bz2=5f60bde5843fdc0b05bb852a2f1b30ce085dbcf7acaf105d5af951398b845c766113ff3740d44585ce3814b4953c004230eb4dc2ce8746b6236ea4b7a1d1cb10 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.7.tar.bz2=929a03725dba7de8d7eee3fe8987b858b9b9d6d377beee710af5c3e84b02501996444aa7b2c1db458aefc3e765da17cd17ac30fb0b4d77ab1e54239e72fa2a63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.8.tar.bz2=227849b5809072b3aee211125c2aad3e2e4984e9d9b4415dd8c01dbff70eb9c3758c3cf54f2b97fe282f7a42f205a2becf7b86e1e6ebb4a4d048ca32659603e1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.9.tar.bz2=c15a46ba1e89cc41523a21eec90d4e3af5b9739d27c2f2b51047f2c1db832e2773cbc04871a176f71e7124eb3f7b53262e40a1baab87262f8811a8d69d8e5358 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.10.tar.bz2=b83334e272e78995b699de28bff67accfc151cc7fb193d5c5746fcf06087643564b3a0b538cb64f50706642a620dba2cc54191357321852db42cc8c5648270df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.0.tar.bz2=82038a66827fbdaf60f404103b3956ead4e03c999893f0095109e7d853919992cab615f85cd96ba9158402b2de5a68fcbdb8b32e9d07c6f754e0591f72851b40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.1.tar.bz2=31e9f176ba61480b33b7761d2a19119a200ad61c8f85145f736eb196de50babaf278d023b274274c6a31f2173c5d022bb93e0f8d46a88223659d8ebcf6f5e278 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.2.tar.bz2=75d25fa6dc81ce8a62d02adc2e163e7c222c5946116c4880cec19460e2309457ee1a11a8eac94243ee8437514bfbba9ebee939218b6ccc7e5c1f15b673d432e7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.3.tar.bz2=84c93c85aa3733f2ac82e695c19e714ad4afd096edd6abda8a4915311d1f604453fc3fdc290c6ae1f9055d305ef400f8f8f152c5e15eb230baf7cfd5e192b7fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.4.tar.bz2=131b874ac376f42f3427dcbeb0adb0edd18ece834514ff5cc15f3b3e29b8f14697050051224d7ba2b509d428f780c653a4d7101149b8ded41ae373aab871e90a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.5.tar.bz2=f55d2ff7f2eae4d30fbc14226c928d1caff21db1f2cd559d3caeb0c07a7a3f034fa369d95f783e6f38cecb493d99aa1928def9d8574698e3edea3d33515749f4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.6.tar.bz2=06b12b2a1e85248311cf55620499806078b3b67110fb45dad9cb11cbaf1e230ce8a0da23c7de0a5abfccdeada8eb799f038b1a09980ee9572ec415e24fcf8c76 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.7.tar.bz2=49128b7845954f1f04502a484f17d5c0c6ecf8990047f5a383b2752ea9e09839e5994b210c2f60307d44ffa8b440472116fa1231ea899caf639e1b8a72f7f97c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.8.tar.bz2=24290aab4e0d48719659f8c1153d2b08020f17ae845e9ac6d6b6d3203e4a5b19061e907a214e8d4390277584ff4b46dd4a0113c6b201fa37e8a95c42fab5aea5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.9.tar.bz2=c2771d6b12f4240200926b2c40ec1bd3058c9ef213e2c6032e44799fa34b75b00f2564a0f7c0d9f972870d34c7742174310bfe3b15e2742a17ba2fa05e5a27cd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.0.tar.bz2=1be48c38da41f462c23d516f465ed34e2fe90c6fd53ee06f1efc9107077d9937413bee589d5d3384aee5c09da7087fa84864a50089bd1cf3c385ba3399e9b0a2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.1.tar.bz2=b7e1204e0e501312828ca0e30b77434b2d8d94581627196f0195ba93fb10a11046d44942393bd8a261585c564bc721313152a9087aa56b57b433ed14cc7922be https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.2.tar.bz2=e91a187a9e726ed26ddfaf09cc49473c8379545e2265934fcd1a1fa78ba99f9a119fe2c3c8247eab583389c3af7ec40a0e71da19f6ecc17ffc086759cebaaa15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.3.tar.bz2=77d9be5bbcd115131ec7c842a4449729d1515bf2106a6a235472dc96b58a56873c2d0fe6a3b824dd15ad00194b30e72a75813d8b4e10ee11cc793973130e2401 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.4.tar.bz2=a2e5409a1a88557bef747ca9b1ea65ac90e430500a8f9370023b4314cb5d1e0679a1b03761980ab2e933ac3521188e2151e521408e33cb4dde5f0bf802d81a41 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.5.tar.bz2=ed6288a4d81a740d722b43925db8f22f794cc704bf834a1f9c844e2072baceb8938547abb8f4fb1a50f92c34a8616904fc2679a44bf4adec4e78ce00e8456b45 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.6.tar.bz2=08cda5ff00b9297b46d1fb620301066b21240951924337b8b87d27526e55024e61121e51d9b35feea2ac5eed4027658b39ff487195140e7abe9158181c3349af https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.7.tar.bz2=3cc5695814c4ca49b6a0d7790093e85f5a359c5411618a12e60f4bda75c3635b94736762983e287cd04ce3ee3155d824bd9bb202aa929f85387a741d1685dd06 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.8.tar.bz2=91e371298a6dc1083c8b6265cc8d3d388d17a21d59e0103bba7e68640f80bdd12b98547584b1cd0feb7f8dad6ad530ef5660a154075960e1a76061d534609296 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.9.tar.bz2=7e3d0f7f42d644cf4eecfd88801afe088260d5fc8f490895378d5e4ede76b2bd67959b9803db59f7b19287801df43eba920885aa1bcd29f60d225745d67093c0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.10.tar.bz2=64683129da9a476d268ffde06bd7aa1c67b3c7c97b539d856833ffb127f458a55176d8b4a101e60b18ee923485097f3bd98e8216c3092c3d0527f6111cf7a051 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.0.tar.bz2=cada908be34428bc2f302bad6ebd778a2c7a8e979476e00e45c9444b65d7f48f397b838549d56ceb91f0e5593ffd663e9facc4ea5f5c6a4aecda85a5a1136496 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.1.tar.bz2=06cb5f2f0c0941802119dbdf34995446d6d69ee59eed9a5e9d7f9e7f0e14de440a9e77eee330357fa305e81ee39a6868651c740ebc91bb9a2085a74b33685f4c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.2.tar.bz2=23654c65e6e62354857f86098852af0ba50a15643df5e7f6fc8b710e35a3872f6eb7dc1bf9266375361f696d8ded0bcdb9ee9acdc8d0c975955d299292da7e21 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.3.tar.bz2=ac02a93a62c55a2a10dc260cd52749bd8f4bcf1a2d43dad3cfd2e5c0bf7800c51a5b00779526d84f759f6d50ce673c7f3e526392c4ab68322649f4fe980f2ac3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.4.tar.bz2=88651ffa2f1623ca3b93b60a591e828ea0dcfc73daf1eead2629531beef291331f8ed1a4a33d682828ca60bacfdd7fea77bcd67f1a0bdbfa9d1e4f173da53208 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.5.tar.bz2=001486271268cd1d2252f46b32001b25d493bbbc8ce981ecb608eaf8d2c2e6d6361f6d9bf052b9b2d7694e228bc302a1082689f2038564439705fbecc00de1ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.6.tar.bz2=a48c974f341cd10143eacf46a9d0eef45cfca3ed91ebc9f7fcbba73d408408eebc60c55e15dab391bc4a9ada6777e2be3ec4b9e849927c5782f4443a813a6ea9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.7.tar.bz2=b9e99d1df4a772441edf7fa4e05dd5aaa62efcc5a8c89fee68aa80c4bf1d17ad0e5ecae5682a10d2eb0ff78ee79c583f0cec46f5ac11ae874126082b9f8d76e4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.0-preview1.tar.bz2=8fe71fdb37955b031769359dadc5062b6c15e0618fd8961c932212a6a2610829aba8b1dbdcf4bdcc2e133665e043b29088f714874e3ef3a41d688b7beba78928 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.0.tar.bz2=c51f55af33e09ed425715dae0dd59dfa253e909bbd44b4bf3dc34452656438c23a754f6b2ccf0a3e878463519043361dc7ad8a757c87a3ae0e747599547dc7cc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.1.tar.bz2=fd09a4d721388c2b9f2fd09b68175dbd620e11df02ff7cea4e438d3205494a9883c25def06d6c1ae4207e7f82bc48fdd122fe12630bb9af9da451ce6be19d86a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.2.tar.bz2=2ade19f26f6e2eaf65a8ac3e9ca21cc8fe04252df58f9b14c6d0f92aba3c0eff27b1c68b1b05041496c367051e020dca7b0c64bf44fb07b4fbdee9e68b78fdf7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.3.tar.bz2=11d81f71ec3d293916bd6a00d28dfbcc93e721d12c6137fd58febb79e7399f8fd1ab5a66915863311db9539009dac06612a4b2daf0408fc1f1e84db8f8f4fdb8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.4.tar.bz2=bff3db8c69e85d503bb0686644f2d60b97c599e0cacbdb7cd4b18d630c50d04ed0dd90ea97be01c3b3220589abefc1e4dbef39246860e3c70993f0f2de738053 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.5.tar.bz2=32f69f0e33f7f7d41f4c0e5c5a1cd859a4c6032b0978c317ec3d333da42047b7f8f8dee9c4d72afe890b47b9f17901139142cfbbf228018d8ab5d02f7a01f0a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.0.tar.bz2=f7fb515855de32badd6e5ebbb03980312144b69dd8b696fb56320981e4f0964065cd13853a34dd321fca1ab160510dee8fc3b6c99f2a5e007e6974d70a564db5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.1.tar.bz2=de183d962dd4a8c95bea54f8740cc34931c2d856783fe7506f0252c5c71bb7125db00c9c7eaf8e80f8fa1c97208ba4b2a4d6c1a76e38d2b6251a92166749fb37 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.2.tar.bz2=7589f0292f72a2217e5024b51791f9a719ff0862bf39480f1460b5106f1c11172c72ccc1fe2a00b166d80610d76fcbefe64b7c9df0ed3a72c58964c2402982c0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.3.tar.bz2=d79cbc4812ebe9b308a145e96f6e7f64c2692b04370ecba0bcbaae5427afcc7e57ee83b4537914b6b90494fd45a11bbf2b27999a7a74c7fd569687a93c43961f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.2.0.tar.bz2=2d11ad1c89c1ce9873dcdc87c41cf38105b00e265277a173d721fce4bd350af73caf01fa4a5797e926f1a0cb180f1c6e969149d1d524c4df797939cdbbe9657f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.2.1.tar.bz2=cbfe8a92e732675ca1f7d51c04775dfdedec1b9f21b3b7f0760ef61b7c375cc4b0758a17302242087b55faac7c3f1217fab0f6a2e713a05dac082cd6a5d5df3c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.0.tar.bz2=172189c66b3c721e7413f0088f50e4eb8dd80d87779c3a4e74231f7036eeaacb8e373b7f5ff017f8aa274c1e1c872066f2f93485a2a369a7e9b442d157840bf2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.1.tar.bz2=829fcc1a3d878ee28e89a58a2f6d4221cec115d241a007b048953672d57548002c3a105ea4e65e344137091baaf5d5c54232a54c116afe03d0f3d61c07547c2c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.2.tar.bz2=ec2e7bd32e2d574773486e1c1d733611465765cf14895fa6b017b6ed6301ef40cd062496a3926788851e7ff3bdd62b488d03385aeacc66bed53aed18a6dec225 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.3.tar.bz2=79f822725d4e3bb7daf416e736d87f3b01c21d011423a2b3c65d9019a47ad4df256fd4a1f171961267ab8f20387019fec8f3f4ebfb6664f682bdf36914f6a329 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.4.tar.bz2=aba571bed773554b18863e6b942f2bca743729834657689a016938a34b7e4352e68d9fffc440b2fd4fcdd1bed4d1ba5dde689da535088d7ff8ae7dc364ac3b2a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.5.tar.bz2=0e46655028859f5abb64d71a5585db638d00edb9d20a487739d307bc1dfa2fca4ad196e04044dceab0e279286379e73110590c772a06786214c4eb23557324f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.6.tar.bz2=177e9f0a193f9dc45f8653306cf6a87bffba16780220fedbd8be67a3608a8f8d370011f3993590d58805a8ea4833d95196385fede4b513d908fd4263a82f113b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.7.tar.bz2=88bfad0d6258372d4e9739613a07352e954db3deb43c0e2d2a176f9cf55bc5e2df73e4cb04bda75e2dbb210799649f020a7284cd2acb5fb92d2b115a933a4f03 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.8.tar.bz2=3710f83ed7f3f30c9b5d3dd515c168534d01811cd33f20d3a54e654dfb5140afc8198f46dd823ac45072a83d844ad866af1e2b8265f54f9997356be88fa254a6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.9.tar.bz2=078ce0d7433e63d947fe4cb0cd5a14e6f5fca00b7309d7288359ed90989dbf618bd8c1f5f31b607f3ad6b0cf540d715dec2c38cfbf71cd170e572321598bde7e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.10.tar.bz2=f97f877f7afa604dfa7e8f1b399a4c034e79b616c95bd4e48927d88d1e8adf8e203901fa178f93c6af4511d26a38e2d8cced7225c2e75457bb02dc27b8feedad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.0.tar.bz2=ad619ccf77132166151e4982996e93135fb91d97701ef9aea12b6bd05e18e585dc4d5fc34883b3369ebba15474741db238fb90192eb273dd5428864429525d9b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.1.tar.bz2=9094c9bbda4c3d830382e89e4e1c24fe43cebd9d733b6878a43a34d679092bdb6c7b23cb3cc08d4efc6e15449c68862799713006703f95e2862bad1c0b0bb94a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.2.tar.bz2=54c8fc2f2a99f834292b83ef8e68e2b120f20fc4ff74856c13137065b95262f62188ed5c6ffea8fc4b0c1034d9f8a1b497878d6a581391d422994911f5fcb35d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.3.tar.bz2=b26daf1825cbc9cbe51e1abea84f3aae542beec7c26628201325026b4d4bdeeb46f8053a1c105973242ef532e66bd4eda5199dc1aa4faba1a6393f9cc126d856 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.4.tar.bz2=e5718fb13f2fe7f6b34fbc2b1a6db95576fcf9cbed481fea59fd4dd28d064104a912a1000533810221141ec09e9fd8d1e59850ae5a26ae441bb6d8878f42c418 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.5.tar.bz2=71ae2c5bac04a97694310daf76e896a1a02c245274e9c96ca96740f78a0e245302564bce757f1688d3e83b7c0c88989f702814c434101f8df786c1276a4f5a2d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.6.tar.bz2=1693ebd7cd3a452f51ce2ef32144aa36f6fa8121ec68cd0fff715db8981214ea9fc729099e4495e1e8bc346409551d4b93c6c3803fe187fc0c25360b80caab72 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.7.tar.bz2=53b05c51b970a239fab953dcf3bb433f59465fa0b4dfe58066132a1bf6247cbe4adcafe41b219ba453ea392f88a521349df14d58a91a855c53c9b9ba4cc16c4c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.8.tar.bz2=b9b0d99e590a48ceedbd1d6318c29b8fecc12b02ce5a6f1555593eb1b3e284c766f2f8800ee3070fb7a041593e4a3806d53590be760381268ef0f9588e127b08 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.0.tar.bz2=90491968190f4809fefb4068fcc37fb7e2ef179454f57c90bf2af308541f1ec175a72ded53202c1e86dbb63cb6b47678656f753574bf6ba525e982f3278a7602 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.1.tar.bz2=7f9ce1b6872352a6feb539948d26dbdfefb3d4225ba582ef8730be8fd85d5c350bd6f21346d43cfe26a8501c4ad145d733d94da5dbf25b15e7610ca037ad4227 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.2.tar.bz2=8544797f46d54cc4098227809561023bb7bd01eb2330724a94921c5a79ac64b44bd56069d7a77a3e6d2d3dbc504ec25157daf7fdf921c3acb3b4289ce1bbfb5c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.3.tar.bz2=fe086aad84ac7fe8009ea2bc16f0ccb7c60a5fc9034690af38fce1a05582a6226dc3d7b80d08d1952d03a9abcebd7b361f5fa2d506d71e1f5aae9b5f31ac22af https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.4.tar.bz2=ce06ce97ea1554972b00781332f126e767a3ab98f5023d3dc83195bb36b954b1b497961c74bf31340827d9a5de2e0bb34240accbadad550b2e692d26cb097d4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.5.tar.bz2=6fa248065a48cebd1e9950ae07f3e653b3e29e369fdd914908be0b215257fa2766b0182e392fb869af51cd498e258435f6d9b45a03452356dc08da0e96877ae4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.6.tar.bz2=ce912342033f395ba6298051b081c89832f656d61ecf2064e9568692552a938599c816d2cd1fd1f9bee721611f890b8329985c69f4d5b2bdbfa6635b48afe3b1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.0.tar.bz2=cbfc7a1cddff0385187a7bf2eb9dc71a8d14912cbbe4e9529b79414e49e681302ac9009b7c8e6fcf92a9f19a0ca5053a6ed25edfdb510e3e4e247474d471c58c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.1.tar.bz2=29b99b3e04325ceca89b64c7846aeadb412215270f6f7c390fb1e275ebe19b2faef811778c0615b2d4720ddd942a2cc209c72e623f559e6c04e78849cc1c1b1e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.2.tar.bz2=f67ab3ac13ae90622fb3664a869b0c584b97df0500384a28bda9c5c36cf2a27ac1f66afafea08bb29bbfbfc1e0ddc444427993ff4163987f5510c4158a90a96d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-3.0.0-preview1.tar.bz2=aaeeafee545dd1ba1c4df5b7e46e82f7e89e0dcf4fb10677b7e177e66f86e6825e85fa5ae3e74062363883768b3485495a3378f97693d45f675a6e547e989cba https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.0.tar.bz2=3e78b2a73167c3680aebb1ed015c583d4f6c58804d3b272253bee2cef37fd2d1cb3852fd2b408f4af1abca17725d923a1f28d40d2a33896e5cc21c4c6711d7ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.1.tar.bz2=14e7962e180b9ae16607347ba5360b9ec086eb8055b88d2f60b1c9284fafd93fea905aceb441f07d594a34b53647520f9dec38e4e9f6ad3e5a6850750d981a27 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.2.tar.bz2=5b7d88d4405cd45a6a720295cb0b7d3152dd757aac996c8d1a576c6ab2a45cf9ed0b0ac006423791cb038a14153048e96308ecc8ba1e761d4b7671dd6f880d15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.3.tar.bz2=320734a124e26de068457237b5f973278286d7e529e92405c1b856b6e57441b5e76c59d0f519fe43fbdd2c8c48c9dd37dc5094831c0e6a81d804e88888ab6237 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.4.tar.bz2=ca34ccbfc24adc4b2c6c5c0e3b27bd2754c2c5be61e9dfa7b919b4902174e351f45128d887c179c37ccd5163a7f51c213fae96be4d0c356e2d7f96acdd4f164b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.5.tar.bz2=fabb151c29ad7ef7432efd4d51ea1e20180006601617ba896f8b1379555f4088d398e96f7bddd7c9815b266acf5ea94527ef4acfad2446950da6fabc3770f788 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.6.tar.bz2=2728c38987d41169b7110fce2b507b5d3e971d5b043b60c9a3b8d6d385ec2a40d24e464f6cf081844282d6b9fadd4abce670e79f02e4606bdd5aeacd1b57f773 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.7.tar.bz2=f98f4dacd9d8c6c9515ddc2597da8b868c66897577cc5a76819db742f3649881ef5a7f85a880f1e359772b1ab08750dda6fa74ee826938e06b93a9848699b929 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.8.tar.bz2=47fb4b41e60b1e536b3a54e18e9ee92aefee7eef92d49716b46884b2a3d73a02e88e4815df64baedebff80e9e17ac7b0af6e65b406a2c53a4f90421dbc948415 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.9.tar.bz2=c81ad5e16aa18beb7c34eeee68ffa96da243f99ff69cf00932ad5ebe427c1f80e3f7fee31b15ec0d96c1be5c2007dfa6e96c38114f61e958c6b7ecc40270db4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.10.tar.bz2=856210b3eb2bf338c5da2668e830b95d48feb82c1c4407371b18c772df12878703a9eec948a2778acd098bcc8eb402ba6d57b2b935766847f3e652c3dadaf6f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.0.tar.bz2=6ea5e6338319e5d6861d420b10f93b5e6634a9925380c61acfbb258b6609ada76bf2a6b474b53a30b0a81f0dd81cfdd1e610b68698df73f69091f479ad39bc63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.1.tar.bz2=8e8e4ef137b9394ee34b760dbeaf4d23953bec083e5775a423ef6c16b75faf8bdfe99df975ab6b6d762509536b017f3510a9a5e9ab63060208edd4d2d96371eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.2.tar.bz2=756c9ecbe3c9801a0a364143478903318c524f7aba026239a1fb42d7390f74110805543a9ac2a9f8bbbeaee48bc867fd15d400d8bd46576bf4fd417d6136a3b2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.3.tar.bz2=594ff95e33d0f7af7be448a781ac68f895f8344ebb1c9a03898813baa5963024aa84b11baa405fa584070e4195fbfda9b908f1fe171f75f19e5e1d7879bdaaf9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.4.tar.bz2=a9703c6edcfa2ddb87bb73c070d963fc4d59599919865be9b1d93989906698c6f3b9c4fd7f2d597e5d710276555de0b5865676b92aa3aba1f1f41be4052bedc1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.5.tar.bz2=dbd91cccc0a00a1ca7e901d56f9840e62e4f139ff4dbae530169f41897d06523c7e8977138ffc6212e1b60589f3091a4e2f6b6714c0fad22fa65e442b248f61e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.6.tar.bz2=ec967415b5bec95154cd9ff8338a602a6d005fa647afb1e1cff54a0fd4e9c0697b9e952c2dfd8e4b30068a697f5391b9cd165d5d33f3b146fe35f2a8fdf9823c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.7.tar.bz2=b8786ef31db7d950b1309646f81e6a99d56b76223bb8d2d20ae045f09917332a869b14cee1bf235675c7d8eebc6942b5ebd6cf0cbd290ea75d9f9be1475352f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.8.tar.bz2=4d949a715a04cd45f6817b1b26093f7bbf03ca630aaa015972e7d0ca72bae094add18664e1489ebf8ade27c160d2fbcebdb105701d719461af13c4d5fcf2cd22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.9.tar.bz2=ec6cd8bd90ee99aa6470d9d524d89531f96f992efab8a9d6a709a3959ef4c314828276e67b84ed97d415cb3e0c837458d13732dc940c93d4d069d9b881d7f92c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.10.tar.bz2=1f60cae30581e3467c7ec07391de5045f238b61a49661ef0cf76d72ef78d220b7ae70b86b1e72625cf37085b6507fb1dfccfbe5554195f0c6eefaa996e199c16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.0.tar.bz2=343f5dd6703b6b58d61fabefc8a50ce5d02d98c32c8b4e52b8deacc9824369a9f0dc8faff69e90ca7585a194a4d742791765b16c3f5e2417b0f54e0e6f6220b4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.1.tar.bz2=aaf7f9e30b3998b8586764f61d09e434c32aba7479aa79fb6afa71ab11c067384ef3a4b9215a1a3639da807f4f642b9efc62b37b55e989b7ed7d75cedc7cab40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.2.tar.bz2=b834ef95d52abc1f0c224193391bded9b4d2089c694378dd5aa45f8b2b1ea41b1c300445f766841cbb8cdb1114491ffe0095f518e1600746f5f583dd0cff9c1f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.3.tar.bz2=9df5ba9423e0a8af9d825e59f8c69889c70af0f6d67f96708a02d7d61260c83474e2f7b2f240af399911bdfc56850255b4f34554f7013d0417a13bb782403aa4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.4.tar.bz2=1d4b55a6a34249e82880fbacfc1d97a093600005deb982c6b42ccb14bbd7bf1db14e0f6d73bc25f1addd72378850f7edcd63738f2b3cbab569e34e89d563188d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.5.tar.bz2=29a76dbb28d5b63ee0ce64cc2e7d022118350a550d3693b8e38d559bbc4f42fdb6b63af4bcc4ebfffc5c0fbabbf2e18db7228e655de3bb416e344a61737870c7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.6.tar.bz2=122322fb462f8fdcb065e6f9d9968027c320ba9be9ad6fba9011760a7296cec1892a0780d7436903cb7763f5d18cce11860c5c7fce82890eaa139a94d5e89428 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.7.tar.bz2=0c17f52a74b73041c588ed76f73862d179d7b9abf9de61279dc74ba7b7f170179e0db5672a403dcc209b6dec9a865a88a382f5df01f5e6ba4cfe0f66232b4a15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.8.tar.bz2=1a30bbda34fee311762a2f05ac7fbcfb4f373f8840f86b9762b0c07f1cd397e3eb3be83210221384333b625a243c7161ef4f368602a613760391265309e4f304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.0.tar.bz2=edf31b2dd02208c96be25c2f4f7d35e2b122e5d327133545e16038836b848b90f81079be4df47c5493bf4ead1d464fa72a8d0d405bb2509ab0db6335c58ff793 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.1.tar.bz2=91cc7a9cf493c7361f3d507cdbb8e258b7dd710100cca8053b77569c07c04fbc2f72fdceb9fd9a3a5d01f4c423a206da97730c356d017157bc2454041e1f1fd4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.2.tar.bz2=8ea603a27560ddde5fc639b86381a303f886ce80384d8edd0e7bc806f10649760d75a76dd5f2ee445371254e727544ec12df49d7fc8876890b73237f4eecea1c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.3.tar.bz2=c42f24668695be5c291836ae6f39b4366e0357c9bb63cf8be2ad36cefe0c6d19cb921a43159d49d4d062dccc15902ec1698a1a6842d13ccaec45c6cb628da4b7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.4.tar.bz2=3ac89131407faefde80bf2e1bed4baa51c371ab4bffc18c8dcf2624f4d1068c9f933eb66486a2bc7c6c67f674c5bd06747bddfe1f1f9dcd939458a08e1bc6108 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.5.tar.bz2=8ca9a9387b8cb434828fa36e5886bc8a28d70fa46d3e20df60389880477fa2ee54fe63c0c14611a2cb0168ef1149d205640c6003e6a507400ad5fc34fa641bd2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.6.tar.bz2=52795cd7d112ff437adf603f58130ce539209628d2224a685d060d67a07325717981fc6f91736d4abfe014ccc8057bb40a097fcf85f5046aabde0019d08bef16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.7.tar.bz2=bc179a31c746ac6e632ce08f57a8f403d4e463ad72285c0ce008d7fa39b88a22be3a43014c9eb019f6a39d022f9448ef151a8d03e89a4d2e767c4f77684e3750 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.8.tar.bz2=d693e3a800c2200c74b24c207425f41cef206a0b3f20625d18b1590e9891f409d6643ee0e7ab8fdb6e1e85de6fea52c6a307bf8f65324ee0f9ac33306ed1e876 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.9.tar.bz2=4b6cab99f6b7be7705efa5eb6f321b5eeb1d1c6e96d4113bf96b57378aaa4950b39f40ad555f630f17d216d235972f028617ea43c28b1970772ffd16be3d9a67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.10.tar.bz2=40bd90d231fcedbe34ec9963eb59645fdd1036b03056b9b8fa3b56900deb86d94e2a256f90e6aed297288d6797857a3ef9fc27bc6ed05c017b5c8e8ddc465df1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.0.tar.bz2=c1df39ae526da7ebf87510017d7694e6f78c59871baac4e9c5f2d13c22cbecc30925e2783ad93f741110b7c3802e9f25a6c3ff85160b33a4080b0f1fb02f7740 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.1.tar.bz2=930f6f7f654fa14076c84365fbc771d5b09679588c4c478d8f6944770c53fdd37213bdad159fd231efbc079b85ab7ab648b0a97fafd666c38d0e280046c6e2ef https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.2.tar.bz2=cb62ca82d57dfc0e21e532d4b523f49c559c4ed5f3d73adbd9d650bbf23c694d382f3cc25eed6a8630f23e4780db127b4b8b6ecf6fc24b0f6febc820dbc6af3e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.3.tar.bz2=708209a89a18cd99c02392307d2bc63e46bd38c72c8ab0e982b28285f8e006d4ed77e04da3900c880eff01c3350033cd00ffc3be1d3a12c4ee5b263282f0dd05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.4.tar.bz2=c94f5b3129ff41da1b07da1cf742592e9822febf6bcfd0e9eb7145c00b732fc66625056bddc72fe9b631742c70d0e731cc6a9a16a089c7b559ae963b072578eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.5.tar.bz2=b4d20f79eebc5496768fc6adb0735c6a23cffbb39ceaf9c2da42851ff7842dd2318c07877d89564176d206e22b8824d2a3c637b5ef02c5caed0b2b5276581032 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.6.tar.bz2=a09ab93c3d6936d30065236ff2abbd0295988a9359f5a76425cecab47af0ca5b6829530d1708e9ddc9e78d1fbb7c0359b9c7e90227870537d099ccc89c73844b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.7.tar.bz2=f6086c879f8737eaf6eef4461d23270e9e43811186a22f35ed69a8303eb933136e7a690bce2d9e18bcff730725292075e09db0f2384d0e26018b7f2a0df70b32 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.8.tar.bz2=62c631026560ee310a849483f1b48690075477942ce86e0564e92f5ca7834553c435a35a1d6d8dd957c3a7be24c63c32104518995eb3a96e61066a04887bb0d6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.9.tar.bz2=0f10741772d2498167c1eb2aa263292f99748518a4ec03dc19440eb5befa075fa69e68b08a09af6eb2e02e462ff20ab10e4121cfeea7bdc938c04762d81fbc4a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.0.tar.bz2=908132a47bd996f8c76bed54078e71abb154294f97dcba779b4cf0d3b82e31c4635dff89e97d5f6b4f1d797d854c6d020afdf9dc77b10c0e522755fa194a17c3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.1.tar.bz2=39c867ac0af48410c0bc6b01f1ecac00616a59cc07f3f5a3e7cfe8f786b70c7cacab65550dfee777d11b8b7a3ac173bb22c602df370eef6a04b40f8e539025ae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.2.tar.bz2=2f04566f6d778121281bc6ba23ec57ad408049e649b351585bc9a3184848c71873910e159f7fd3909c7372378152f5ed264070aefd45933b97980e80f6df4deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.3.tar.bz2=940375b11c525e3f0bf00e19013eeb886bf85b8d8b66d86d53740170b0ae16b14faa491dbcbec29238f875f84204cb0d52ade17c180d71e129cef5254f338f0c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.4.tar.bz2=1c9d41d7ab7bd69d7e3baa3c4149b1938cc147beb2a63923dadf2fd959732c8cc824e2add0946bcd62f44b0e1d509b80b4796a5929841cda8d28f3a8207b17df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar.bz2=f47443a53e3008cb7b7b7afcbbf1adf44887769e42b3defafceacc1e50e349c9000b98010f853c6b7cafdb54b85b640732a56a8e11ad8e58fedb5fa4724f68d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=fc1c9a08c48ad91edb4afcac5244f386d63940fa906dadaabe02a1eb025375443c8174a6ad1acd50f4583d6c57a88feae86e697ec15c8a25bb49f280b1357783 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=aa611f7c350374d2c5c8652a694022e038cb5a65fde795c43e927067f155d0ccb368b281b1575e679b84cd7ba6042216dc28149e138256faf62dd3060ec0a6a7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=ab04071b90ddb81b68f064fbc9f2bf726729220e4359113556d9b71f3549483f122b796b3b1e4dc8404e6f44a4bdd02e9db2c8066974acf190448c4d5a97dc6b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c769fd3814bf31728b83f2bcdaf0928e6423150609f3db903631f9db68ce0a0f9c87bfce5f93983cd962662148a66cc55f5f42bffc1a1b5a237e6938726629ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=c231f8ecd46760db49796519645bcb5cc9fa1c0582abbc419a2ca81805c81fe8912dc32dcc2c5192ca9ef0d502da8f61ce1ce7ecc87b29edad3a144a8a0c200e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=b41557c83084c8e5bb263aa944499932ce7d84457e4e307f1cffecf62aa44f8543a06299e38fee17ba64f8952048612f9289e24c35acfe2ba02b913c15dc1405 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=001d10af5833a03b42d9a254bde844731d3a796d98ce2efea90fc68e4638c7cc3be31a34fa163d4c5ac18c60e685e5cf2ccf88fac46ae6bc587a48ea35cfb09b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=0a8681afc19372ccd9409bb017967f86c2e6642e083ca47ec904cccc34242040f710392d916a69a327ae6a0bb287d97bc05bbe116a1d93478ae282b32e5fcfab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=e505ff2f00334870d07f4ec9348648b7f3b91dbbad1fddb2f60f7a38572a66a7bf081fc7b386f800d86113aac1ce3cb739c86cf0d6da2bab916a4432ad557c54 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=aee6000ac886cdd4e4044a7b43ab20d54d1e99f6b893af69d0d7e7a202f4ae861f939898580c60996b0bb7c6481eecad69a20acc83c75cc594dfbfde3a22c476 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=86f4e6948eaf2586e018570f09232b94f907766590eb75f00992531ef74676070ac5a2308e121ecc1c23388ece4dbe1ee8a4b2a7ab99ca00a28d6583d6df3d0a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=1bf867b0af84eae4e7996047727fbc7ef459afd3b2ca5885f658a74d62910d00eecddbf0c11b23265c625c26b420421ca5add40079438edca8eacd8b5c0149a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=92a3b217079f9d960cc4fbb5908f7fc7ef71cc3ec8e5e404341e2b8875534c0542167d03b61577776e0b0f049f9ba2e3235842be381b4d484845768adaa6e3f7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=608f0f9eafd72226fd1b39f6c92d0f1c6d3aa7ede096cc390fc4f8bee4326b0937767bc6de84fff536dea48cbf9bdb8ef5598670235e013ccd630b06c5b8fb05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=40cccacc66cc4b7891b01c35375ca913efe008157ae540308b649e14f5753f34f1827861c6e16b500c49ac95e1aa22e1c01444faca5dce71f981452a9e0f1b67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=5a33d600e55f7b8755725d7e2f2102cd76720d524d7b378d85fc21ea8d853166dd97e2e615ab18f9e44122e3404b439dd123f8e23d6ade5328982fe72db2af0b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=37e3a4011b3603807c6e0fd48818b256caf272b3720ee654f38c0ae202cffa21600f9cc751b5335b57905ce67db185b37f548ac9c84d6acfc567f0ef4866635f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=6648c1b6bd962e30e89eacdb6130b1788ccdf6ed05ea13eac32eefc222438a298de8121937262851cf5c4cdcc1a804d5d8bf19667819db6599bfcf79e57b0e17 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=ac690170a6801fd741efb88e67961c0c3d717029b3bd9c6e243074799641c940416fc9cde7b4ba2c56e79551d6cb7fe5f7977649404da0d20d1819d7d3ce0bd3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=e6edfed2dd9d6649c47b1dc1b102f933f76a148e6dd8441add2316073dd255cac851e972366e4821fcd665e55b375fac757d189b7552baaa0b49e82349c71b77 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=69c4895076690037199f2a9b98e622f6b5e3c23ea02de79bcade6193da2b1b88ed0c28006059f4ecc502298442275e7e7324232de04a2f0ce430665057410a05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=175777563303c6d6a04393938ffa7e36e0bc6db33f7d2cf1d42ec852b41ea26dd7d50569eee4cb00497e6bceae95592365ea6718a35451e5c929d8a085aa9649 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=b668f0cd853615fec38253b264115ef0fedd21a7879a663ba844f4c3fa8b87e5ccd8adffbaa12ffa3aa16b108a2a439cecf827e7d8e19ec8041d46e758abc391 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=2039b1fcf55cca35ed3c8446eea45819368016ec1a05a5fd4c6a761b54f5cd56cb3301d5d2674af1ff75bda41eba41b7156e71ac48b88ca7a6474f0e944efd89 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=b4bb324a53c316da488c5f60803933eade9ad5c59a6d58e76787d2dd89dc2d2f18016d2ac4ab0853a40976b4beab70864a9c2d23de194bcd63ad089b2159fa7a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=3a9b5868d707d6a4580a44ab7504cb46a2713f78918142b185f0d62c5b7e0dfebc1ff551b2a52e9726befb70abbde867d2802345a01fd3e4568b9f58ac83c168 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=39007e736b28ca599ea244bf4e54b52e86597c950c0ebd8f1696a02c8eef575a734d089b52c7013d00c02aeb261dd7e2facb45f24b34c75c4bbf14cb8bdc3ae2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=0fc4e39f7382c29fa2119119a78040c611fc8298bd4765025599d3018775cb2bb28f51d38efd4306e9f04eeea20e7c2365f2fbba1233e0494a8258c3c184278a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=5dfbcefa70f5b81887d34e776713bb9c6f7bcecbda8f1c9561daa3e235c725417ab0a930f594303723f226d36306e6a73f228abfa3533280659ab387708182da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=00936db899bca33dfa8d0e6ffd4bd6b0453ad5823a450e50e3a055ea696dcf94b317357732e26208a6f34224c33a8b4a6130e5613262d62381179a52cc8f3a1d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=15b816d190fd58382a2f6f6e087f358b54003f186462abf59dbef545af9044a2b9c65576119185adc6bfd9ebcdb49f03a2a268eed4fb0f0d37aa35fa18adc1fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=3a481c35668be459688a66e4e480e11b4e58c13aecc3751da9de8a3e3282bb4a152128528a804742aa0b4380eb537b666a2b29fd79be0d6968c4ff1fa428eb7b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=c604871b39f396c539c52dd4849d1d42f37530003601f60162860efc777c85e7e1a1ee88a77cfc9ca8ca20f0448a5dde4f39cbdae67470d8d2d283d6fbbf0239 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=12042b5c30179da275fcb6155142ff2787e86cf577caef44b7c4d8175ac671cd461814e9a19f4c9b1e78bbdf041fdd06bd463aa972e194caa91e80778a56bce0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=2bf1c13616b2e255b8c269bcb2f979a45009c079ffdcb10a13e238e5d13b0978e8a974bdc1e7bf8519e15264ed5f577cc8f85a5861b3ea3a4589eb78138a3f2f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=2e7876c8c8a1f4e3cd1913023c564d9e74972ce427e85765bbe9ddf237285d7b96017c1ed17868eb912509881e05aaf96e4a6b353a69989e61c733b346511715 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=06de4f6f2761bc58d94659f826c7c86be50192b7dfdb5c8b6710b384a50299ad161309e2a8c333fa5249d0e7112f74dd0c0b0faa2950a6e74bdba68833f68702 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=597374487d196abdfb389c79d7d09b81026fe3e8043f8811497646eaf47bfa432cfb96e2af9be1a35ad2d05f2f5c800afa3f9e5adb0ea2b2d31812d219232a00 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=ba56050ce3fdbb9117c6c9e767f818ce3d467030713b7693ebb039f6888bd5d7e5f7b1986ed117414037e56e550707c3625a88bfd5d00d7319d0c7ad642fc811 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=395facf2f7a15eecc94e554a60d87c269ba70c5063b24b7bc504f579c0d12a7d858eb0b98c502016ff8bf02aaf11ef765e2291b542759fc96affa186206ffe4f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=d1d527b2e95e3a16f521214c5352bcb379b946e8be1a943da872aff0ab4b8edd93a507d693abd7a8ef1cd5ea1ee6e6bf1f838683f5a447a6cb7992de61f744ad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=e47a50392c4f3ee13a565103e0c5f9474ba0a8f5ff60fc9fe7d290b7f5f9a9ddec962fcbb103a8d3b9c7765a28ba59237975f90aa3637a06a128802ede28b3da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=77fdbe62d1694732a7307c29b4f45d0dcab7e8a729f04f45b216345336c5820715bf3f8f7cab52175c4ca1a431d867c7feef7d802dec61c2cffa4abfa8746e90 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=24da0cfc93ac536c505dfaf2dbddc7b312a3cc5c72a9f47e28b3bba760a53b584422b73da8546ca01cc44d3906a31eed7f27a3dfc0bb574f01f9c08f7c589d20 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=aee8267c4855e95a55b7ab858ca6359d635049743b8e38d34ad1430522a0cd746cd572e77884f7e10af14a731ccd8ebb9cad6ea035b0fca4ae534913a38f43f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=ba3e66bd3dde28e7193b90c44194cf7732d294e592321c482deb3b31ddd9655630f5b04aa89a43eb9d1bc222da10884e9da332bc9da78e9e1b655300db52a444 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1df8a2ad9256985b4ffb3da5b545af4160ccebdd8265711d1b642cd2285a004a42cc2ea51ce3ee78854e599f5196c66448b8e0b043846ef6e6bf992828aefb6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=cc460b3d17d460abec27d77f734e1c1e7a649769c3374f02d32a4ad00f989ff3150dab926a203b209c92475100667dd524774fc37633d71f98737ea2d8868968 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.2.6.tar.bz2=335cddbfcf26c82cf9bf9c7ec6637c1c3e30e1b10d00553f5dcc60822d40b560e412d404fa65faefbd1c9022a2d7f0e4d93c25d054681d109c7cdb5968989005 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.3.6.tar.bz2=5531048adec175ad23e3bb050ba6295352cfe17ce27203c356145008434107831186a09c00ff158f4ce9109776f381661f3047e828a177906a52143096249dbc jruby-bin-1.7.0.tar.gz=1e466a3f8d52b553c9def09827fda4b8433576b0262c40ee505602754521a00defd821d5ead5052be52baf281c6cb080fd03a8b15c628a0ee67b4e417633e5e2 jruby-bin-1.7.1.tar.gz=ef28381ca30664cf450f9d3df9927530db771d30e86ebcf535af38e1a7e26724ae2bcfe8487cd2eb349bf609a733a25528aae14beab4d13d298b5604ac7353cc jruby-bin-1.7.2.tar.gz=8155c81eea6743951db7383bd9f6b1750614927c9c0b25a6574f6d64898bb3ada2f626c6e0df6c5486561a03cc7d472fc12fe804ce66a3972d2fe02e3f407100 jruby-bin-1.7.3.tar.gz=1d19be25bf4a7dbb0edad71008704377893d3967aa4204a0d59d6883aa04462ef6798c64d0c0fdd3f5129c16ccb42e8507f3fef38ed56054bf6e689de745935a jruby-bin-1.7.4.tar.gz=d7c0ee0316c50ae5413757e956c18ca68e9d99a25cf85be978da0787c13b8978d4ff2712a3effa564cfdf07144be4a56a0cb8acc794a01f43264fe8baeb125e5 jruby-bin-1.7.5.tar.gz=a4984591a3809330b93f4ce79fd1b9c24360f89d88a03bbc76351be623893c4bfc6441375bbea452ba4f24ca8b9357e03ac938fd6c065b3e2348c0f896b22a1b jruby-bin-1.7.6.tar.gz=98600a2d46bfce14111c7eebc62716352a4b685043afdd696b8fe51c6b205eb9569fc2860423a653b842b173198c76c59767156aa48e0d23482dff3358d884f3 jruby-bin-1.7.7.tar.gz=71da2e72c65899216fa15ec568b51aa7004e2ed7dff99ca376b332d3692c83a674c688dc21ee04d177a3961a2bb3973714509d88cc14d0ba9f79c864c6258a06 jruby-bin-1.7.8.tar.gz=42d54243653ec260abdafecce1143161be63fcc38a80f71ab70fcece4bf91545a2b12ed2319f9fd6f6b41916c398a9a8e89e7f0389f59da56f2739665e74522d jruby-bin-1.7.9.tar.gz=f519f53b1d9f57cfe28982ad70b892dc6fc20fe6601d98d65a1dca9f617a0eb8fff74d0fd82ddb858fe105d05ca7c7bbf3a987677ae0363caa2981bea358c096 jruby-bin-1.7.10.tar.gz=160b701f2f500dfab64beb635e5c4dc57760dd422d0fffe8d3cf8d84ee6ea17a877ef77a0087b4888ea9db64ce7750de01a73a51530aa6666a2efdcdccdb89e0 jruby-bin-1.7.11.tar.gz=a53b0fa327b98344cb4a8aad1ba537ddacb709a0e173b1e32656de8a610cb9896e9a4554d54d0d01d2361f8ff1539a0e2ee01308f670df2004225231b704065c jruby-bin-1.7.12.tar.gz=bf2be8a37b53d38c75712a6331f96b999fa6b0e87f453fac7b9d11eeb1b66098ea0778172f1a6a84345e1881f05d63012e28d4068a0bd31122bf2473bbdae5bf jruby-bin-1.7.14.tar.gz=f14e658da7f2abd469edcfd657dbc2505d6a2c04ba1e5f65f2164256f54625da154b338bd3d286ea6a18da61d04d90a61ad6b012bd9461182753483efcd0f603 jruby-bin-1.7.16.tar.gz=47ca714c3211c95c84e9c80ae4fbc894bfd7ee03e1bcc494cb48d839f8538db4aaca7029a4913b8d323e7227450e4e41bb943dc670f43df8a654eb127012033f jruby-bin-1.7.16.1.tar.gz=9bacdf6e212d08e46ac2c49183c8611873f6ecebfcb0e928b5110bdebfeb8751ac087cf8aba09afb9a8ccb58e59f3c3e06a241c1db445835d7a875b0c3deb4b5 jruby-bin-1.7.16.2.tar.gz=349283bb5344a62f282021ce39648a0c8d0b41ecf8f800ab5099b5ce161ff771e688f205a918324cef6ba0ded6b3694b8dd83f46f56be584202b8fee496b37e7 jruby-bin-1.7.17.tar.gz=a3b171df08e789f91c260c5a57ec842a5d62cc8d6b462b772905ec5284e394ed7b78f5b327ca1ff20f5deba8371a86cb03fade75b5f34f233df47bc3f08d469e jruby-bin-1.7.18.tar.gz=b259da2967e246a387687117eb13e8986b57de6ca8e570d6f8f8f07b8097db6e01cea8b0ec3a860b091fde14de535260dc6dbfc638f9e9b49d348f726e969642 jruby-bin-1.7.19.tar.gz=da91efcd51cfc833666f8b7cf949d3b5c41cd8da99ae1559c88a7358fb48df1245c66702c7cf23e7ca012cbefae98787c200352976d4e8aa3e9120057a89dc8c jruby-bin-1.7.20.tar.gz=77131afe46e72c406ab4250e43cd1f98e59a8351c494044ac89f97a7c9a81492f8a8194541055fcf1fc59569e99a577fd6a36a9f6a3952a99f399d4970e80e69 jruby-bin-1.7.21.tar.gz=111883df12a60d06e9924d33057ba72094fcffd44f7e3954d6c6d2190f8e6442804e739cc525a9e75159251a8dc1cc487570792b1b4f5773f4d0082f0eb360d0 jruby-bin-1.7.22.tar.gz=6ed6cbe7b81a8aee60906fdf965bc217b3db794698e2cb37559f36ac119a0cd2a1ae1a7a766535ab491d647e8b4e6b2f63e62011714b757f8691455831ef365c jruby-bin-1.7.23.tar.gz=6f4b97c4e08274f96195deb176e3126e8d047c981cb655cded9665624033fb905d60d5586704a3f91b2ca06d7e78918d9d31131c93e4c90c75a38182e309ac9c jruby-bin-1.7.25.tar.gz=a89ab8d539bff346ad56d345b6a205f74890b9aafe82a2c82e7c19cfc30b77fefde1003e8bd7ed15f141151bc0fd21946203219691383a64f2234fa586e1905b jruby-bin-1.7.26.tar.gz=feee03a50900e459d9ed7d2096056bef126c4551c02c335c4132e2307411f3fc4fd435e8fe44411184773c80f0630a7812b3d798b7e9be2818e1b5a712bc6995 jruby-bin-1.7.27.tar.gz=656f4313fbfe5db8d2d4fc2087a012c91efef848394c48aeaa0041e9a19b87ab74686702955413d2c51d6b4b11c758ba0555b30fdc42e86d66094411324139b6 jruby-bin-9.0.0.0.pre1.tar.gz=988c6a058336ab9ac8b27c7501ceccf3940837f9b9d3ed32a466b891bda1bc13f76199f5bc3baaa1240dd0dfdaee40775f721294d667f3b8b5bb9ac8206e2e83 jruby-bin-9.0.0.0.pre2.tar.gz=f207f9477a12d7ffacd92b1bb5154ba8101dda8f7b2eeadd4fa83eadec9a75727bc1831733d27fde63ba63322ec491201dd23cc6e2c2b5a4b8381a8fbe49e8f2 jruby-bin-9.0.0.0.tar.gz=33308a983533c129cffbf521bdb8c1996a10a6159a4a436248e645bda682c5a5395ac1aa767e971ae679c935f3b61573cb22d5b8c64af026752db3411a6356e1 jruby-bin-9.0.1.0.tar.gz=277dca63f3faad01c98a793f06bb4d558a970a10a66a38482e8372b25f4cf4fea85f1d5624fce7fb5b4310c42ea8aa360f24f6b9b6ef4bb0ebcb036736009ccd jruby-bin-9.0.3.0.tar.gz=d82f83e20ef17a0675843e306ec5e90993e5952cf5a53957a91e369d2c90d92306aa515b1e135c04b45844a81a0f4ae34289b966821ae5f46ea51fe012627352 jruby-bin-9.0.4.0.tar.gz=b9cd4f4a00da8152740b468914046633d5341b10aa26b0ac56835d5896531030c8afbc4c965b30c36923555ed5b145de8ada69e05ca38b01d43621914a331335 jruby-bin-9.0.5.0.tar.gz=7c61cf010fbae571cd6ba334aefcfd917f6de8224d014026297b840d0b890523e94b2fea20f154c82c25c4f9d5992b9481fb569646a7023e5ddb42db1baf5f34 jruby-bin-9.1.0.0.tar.gz=1ffdd352823436086ebfd37c03401a1f3a9cb8a8c5f75476af1f704c4764396a20f49ddb7fb7f0911e1608f7c88a332944330b8849d13e6badb170efb736dbe2 jruby-bin-9.1.1.0.tar.gz=475acda79ab8c54467ae70094aa86842959200127c1e92709f0a731014c469d3e52e4c48770b64ab1bf31e1b710ac4570b421077c85c08071c1356bee55a2900 jruby-bin-9.1.2.0.tar.gz=cc6b1e1a2907c128dd04edf9da11933a54bbed5e861ab6f0208505bca5aa2aa9d9acdd04bfde65824346fbb435584081fc8ec2e2e9a3aeea1bef8047915e0c61 jruby-bin-9.1.3.0.tar.gz=88339f4cc05f7f0ded21f100755156ade33f19873f49c0c64110916da8c0b059df541a77bb36e54fda9cebf042591450d2d6312ffaa879df926870806985e774 jruby-bin-9.1.4.0.tar.gz=ebe0e9d67cb91721d589461e93e26338e3e3a1f0f98de53f25906684140b49d989ca6d3704cd3f6cbf650f30aed9a3989f117bb4732c83ed870364ce4c31fa36 jruby-bin-9.1.5.0.tar.gz=f2a11e6fc88d37fc1b640ea8c9feda4607bea6da5e6520f61ff85e8d6a51543612ae267b45c033214f8fd0e2283153da02001cbc9fd90be4761b7544e1413b9f jruby-bin-9.1.6.0.tar.gz=ca59d199a0fe791efc57f05801ae26c6cf6402bdc0f1a795250b1a2dda39b233ed24c8cb005016e79727f4bcdceb1bad726a60c16935e76fc87e5d1a078fb5bd jruby-bin-9.1.7.0.tar.gz=f2569d4858a33280e90d984aac53662c25ef057ef9903bace6a2214aa2e6a537c9bc8fc76b08f846b3093cc4a12c70c98d725576a4ac771e640b95cfe3697c7d jruby-bin-9.1.8.0.tar.gz=dba3b41b65ff27dbaa203a5cfc78ac7cb9d952c52b452bc774f593383e4ef9389c0bc37549b798f48b63497ce7007b1ac2d2fa252d9a7c3e52146b4ae192ee49 jruby-bin-9.1.9.0.tar.gz=f8f6419be34aeb7b7577e946a62a094f5921d7319b51876c5e07322d99249b3a9f29fea4ee5c2b8184dfccbd5da8f8262fa97f5e93874887f3355dabfccfa0df jruby-bin-9.1.10.0.tar.gz=857783bb45fc5d62148bd687b43af9ce776099dfea75ec4b5d947a46ed270568bceba2a630a3277746a3a9c1fd3111caa9a4cd13493ea8824c1ee190e6d2abf1 jruby-bin-9.1.11.0.tar.gz=718ed3f5a39cd9f9b45c4e11ba44cd32e035f8d9f26fe59230dbaecb71adfb2513ee1bb86ff72e075b02f20151f3f30e53bfa30b6c4b011a93a138d4f479fbf7 jruby-bin-9.1.12.0.tar.gz=8a9f88d517d8002be570aa95aebb0063eb62a47efee191155f9fa4f045854910f78431514f857c438167ec42f4241faf74d4a8d236ae36feae58732312e4bbed jruby-bin-9.1.13.0.tar.gz=ef88f613ada2665d4f63b2e2f15594739de8ba501406e76de417821f44847b0e258524687b0ae0cf5b737520aa4dd9bb59d80a4b89a81408cda638f28bebbead jruby-bin-9.1.14.0.tar.gz=d15ae0c60421951b830524acd21a0f2a56f480e983b148a2722cd36afed8e99a41f518eb8a679bfa2cf87f08637e81c24ea88be40c0a5390e081322f1fc6f8da jruby-bin-9.1.15.0.tar.gz=74a411f42149510180706b2c70610caeea357f6fc3d2a12ff0227586862e6a9dedf09e752596d6c486af7a310a07241f311a1dfc73ead229d7225c09d4508605 jruby-bin-9.1.16.0.tar.gz=94e88dbeb2545250ba5bef50bbe0baa6f3851e9817f67f879ffaab50048bb0d41cd7a0e87ac9ef547e37c2b82cf1d7aae6b8caa43d03c6a9931b8ce0ad4b2afe jruby-bin-9.1.17.0.tar.gz=4c06b9674e20f48d3815b4084bb38e6994670eac804fbc56d717cde7abdb74d57e0ac17b7fa0b500318de405c187c3eaa01441c22621139dfdbeef62a5467a63 jruby-bin-9.2.0.0.tar.gz=79f5e8674089d2f6b260e033e3ceb4571f54cb5cedbca74ba76b52dd7cb30085a8c6c2676e9be57a8ecd9e962fbcb3682a8de38e1cdde2dc6e05bd179556edc3 jruby-bin-9.2.1.0.tar.gz=185e67da4964c9cf1d9142446efa77605e77894444bdc96bbd10fee22637f197aea9fbb0f60d3a42540e5f383d5b06fcf095d572f432544a40c2145deec81926 jruby-bin-9.2.2.0.tar.gz=85e16e38748b6ec5f237eabc8a17eb225c484c20f7ab6728f2a0f650061bc50c8a9601c04b0128e73c410ffe84dacd2b8bb37167aae5595728aa25e88c4c9b92 jruby-bin-9.2.3.0.tar.gz=97ee210157c451567946b38d33380051f82e7e8cb5f7649fffe050542ff6cd627e2c42f4c46739d1f0995c87e7338865b18844741285bf3f72364aa3c841c54c jruby-bin-9.2.4.0.tar.gz=9fe1506e862a17e261cf726e1bb70a9f612a6d7beda919a01405899660d1f4b79ee690ddf9aeed1d2b2f3cbd698be8df4f98d3815352772cc680e9646d721761 jruby-bin-9.2.4.1.tar.gz=2c41e7884cc54819da17ea9b2b773d05d3240d53a2ecb57ba430ab61308066eeb1bfbe6627e6c261f5f27ab5df7f5972656366a04a191a81b0379f620b74512d jruby-bin-9.2.5.0.tar.gz=d548eba8de420c80062021f5b6e6b203f8b7b36e3f11409919eeab87a028a18f9346f27d2cd8b1f33419adcc83fc804a36dbc3cee169ef1d93383b8f5835ba2c jruby-bin-9.2.6.0.tar.gz=20c7897da0d2b585616ea5848998fe8770517e24e16955797db2e5bff4622c348082628d304240a71a97e9551ef7aa63271cfb728eb5fb7e7d19bb48aff20d4c jruby-bin-9.2.7.0.tar.gz=8e71e27fdb149cb7470fb736e7ce858719d13ce6ff8a1e9ab1c1dc71fcc068fb601946bb28ed2feee3670b5e6ebfa8a655a6618d1badfc3763897912c41b1c82 jruby-bin-9.2.8.0.tar.gz=7f71fb5bc8c6c31b31b4c0430ae091871b21aa345777662f264c728c60212365dadb63a7a4b2fff31adbbf8a2e7cfa678d47486e28840f57b86cd45fe9354013 jruby-bin-9.2.9.0.tar.gz=7df33150858ddff586b3bd86120d4bdd80546c7f8e62245f61facbaa5527400a1aebbb33e4a1a8af52066487e3d29760eb96c7ecb9875eb9bc954ccbcb37a4d2 jruby-bin-9.2.10.0.tar.gz=f4ca024602ddab37154f5547132accb26e7c0ac2e913ebe1b5c7806727eb148249e76031ed4623ab53814beb8fb3f472e386f44d57adb5d2b3b00fb2773c8a63 jruby-bin-9.2.11.0.tar.gz=f736a9e139694c84d0a5ea42f36b972adc82c9be13e0b80bd61045c026e4fe31ccdd4be3dd3e94781c846f356e026465e41716fd2744ded2ab0ca39cd33bb46b jruby-bin-9.2.11.1.tar.gz=2f758fabf5910ea01e9c04c7600d9c666f2df3db8622f3eeb3534578075ce65013c42fe9ea6f95d4499945f795e6d566eed2b1545e149af823eb1d29167a1223 jruby-bin-9.2.12.0.tar.gz=1dbc5bb3814a6590f5e8ecf4889152684b5625fe81794a2c4064d598614a85129256002dcd239e294f209b98e3abaf9bfe70467fff48ef66b1531162dc6c3be6 jruby-bin-9.2.13.0.tar.gz=2cba016ad6a376252083122d51335610209d860c41de1902f5cd49ffc2f6b49c350b68df8fc4113c221255af4db7ec07980267b9888369811faf66db369e757c jruby-bin-9.2.14.0.tar.gz=ee3d17e875dd197f92744c7cba62320bfd3f166bbb2ca117f2910780a7c571779c0940e024351e9d4685ee9781dd207e773ace57a4a8a7011869c8b6209513c5 jruby-bin-9.2.15.0.tar.gz=678abfa7654b53b049e4103ae3647775d970c5a7192539378957c1731a3037c852e03f00a496c022c1c438d159a93be6e6f04d7563c811aeb7d261ced643d9e5 jruby-bin-9.2.16.0.tar.gz=f77e314d578a980071bddc25c65659d62e0644927ebc4e7d7d4523935b6c893e611d47ae7478a26ce7acff38b1525eac11b4a329188cdf76aeb07fab667d99d4 jruby-bin-9.2.17.0.tar.gz=e90ac1890a54a892b13adbbeab3cc5242889ff2a4b6cae535c0a3172072bda6ab01b960705ba608d6d7ebe9de5984d8384dbbb6399ab3b2e53a9e347e7849e1b jruby-bin-9.2.18.0.tar.gz=c5816ee0f7b0f559dac70ffc5277f85ae9c41ad176e43d277f820c2727387baba93998b915cadf9708fa78b5cdf3911a9c39c2ebb61a77a38dcff359f7d88a73 jruby-bin-9.2.19.0.tar.gz=3740674035e27cf7961b3570ad65536c30faab1c9a71a42a696b173379e79647411d57e0d1d06b5f9c9a970eb02a595a559191af08a083773dc4601dcfd07491 jruby-bin-9.2.20.0.tar.gz=1961f52f41e7eb9f50b0f382c8166ad988a6b3c0311c342658edb34486b073ed45c1ca5731aa319196db02cec208a4dfc86aa6b436959b80243bfa4f62629735 jruby-bin-9.2.20.1.tar.gz=598e28cbad682fbb30a9a9a9f708e6e1f4b7903300de2477e88a646c42ae594df5b768ff5379ed447f1a7168e93dbe35cc2d5db7087cb2228233a05bc4687908 jruby-bin-9.2.21.0.tar.gz=8f6cfc43ce3ebbd69781da71c5a70746ada090162bf6cb709dca41a6d968e6072ae62f657cb0bd471c648ff294044bfec3079828bdc410bd64758f76a93c3214 jruby-bin-9.3.0.0.tar.gz=06331ce32ee88aaad5e5bc0668d164ec3263f8ef3ed34bb32981b76ca33f8c817e3632550775706481094159f4feb43916ad1f9ec0f0775ad756b16cb7bd9417 jruby-bin-9.3.1.0.tar.gz=bfcbe6dc5ba736fc944af15eb387b545f6c5b987a7db88045913a02a1d30726c5d1255c4dd609aa7c2d2823ddf9d8360223b0575c93302aeef4c54eb37af9abe jruby-bin-9.3.2.0.tar.gz=b1777bfdf1964d7e527bb3dfc47b4b9e8c589cdb301c38ee8ee988bd0c392ca978ee3c1c24e4b5a65bdecff67d1bd96e2d8645e58ff7e891e3622097ea29e925 jruby-bin-9.3.3.0.tar.gz=648e70de0bda710e2dc70fd03c3dc6b798dd4c7b92584c54306c426f59ebe1168a595c4cf94328f6b44674f5507bee354efdb1cd73060b73b0171a3605051c9c jruby-bin-9.3.4.0.tar.gz=6b09decf412a76578179cefaabf01cc8740f70ab5324954e6aa43b1d8b81c37db7a99b1f94d6ced2b459f1c44c3086892b9a2c06b3ea838baf75a8fd5e0447c8 jruby-bin-9.3.6.0.tar.gz=f730522eff27462192808773cbd071cdaefae11f20bc808a8f22515a33960a730f3c87ec727ddfd9dc9b6b35acffeb50c31d75a4794a3f8daa75e1963ebd246b jruby-bin-9.3.7.0.tar.gz=265051c68d3b9dcce708b75f8267303ae84008859c88d7fe4f282395366c3f52fcf1bb161210555c0fd0a2427ff5a728ea9e337feea3d9b69559cadb2f300aed jruby-bin-9.3.8.0.tar.gz=12e795b7e1f14141bde68f52a29b0aa9f1db20515240dce83cffec351cefd25959579e01059d42dc8c8e4280493a70819d9beb1e0523e9bc10a72af16d9abd60 jruby-bin-9.3.9.0.tar.gz=f0b31d98f39a2bd4436764db0b0139433d6868bce7c30c5d6e3552616ba879c93478c499f3e4c884fd3728502916aed5c9ca1be150ae3e80ff47b36710c3f6df jruby-bin-9.3.10.0.tar.gz=aa36fd4c5de7b17f5fdcca1d1314d309e7b4470d46822c45baefbc0ad5180e5530a7054502b97b414352af485e7936659390690dc6198512ba6733d8f8d503ed jruby-bin-9.3.11.0.tar.gz=d9fd90bc64028dcc45687d2be51414b1561add20d20d1392525f4434cc684d505427f5e56827afffbbb0ce2c9cd7c1ef846b0bffa737679afb95d4c160232da5 jruby-bin-9.3.13.0.tar.gz=eb24641fb7a6b9d2039ec953388053e7333b306056f9a5bf745331b04cfc05dc4211a9b7780ce88bcee9184b8cbb219b574574d308bc2720547c116f4d4721dc jruby-bin-9.3.14.0.tar.gz=d9b02fc35133f71140cc7d891061f8190b61b3d1065f00092a2aa9a4beaf7d67297dfb0529691bd24d29607d698f39c62af9018e8307c1e6624c3104a61bb74c jruby-bin-9.3.15.0.tar.gz=e41521ebf453d6b6a9de937556fcaa972c60268285d0af4a41bfb95aad790eb47dd507e182958ca6f4889a0e03eedee0fa4bbc58e3d0407a2b6ba64a8b87a21a jruby-bin-9.4.0.0.tar.gz=fb72f8e087ea08653fa4e4225fa26694c3ff97c41f3deb8731cdb6571c6c9b21e0d8f69e2096f82ee81e2b5c283f912e2a5228c15873dbbd56de96a2ba35d59b jruby-bin-9.4.1.0.tar.gz=46003ef6192718a6372b79ebc89bee37957686224a08fe2f9a6be3c9e479784409d0269f0885c4d1f1351585c5d2cd31fd2ad45014e425bcaf2d44d66b98d299 jruby-bin-9.4.2.0.tar.gz=77e484ab73ece93e7d7283f876f0d541607c6080eee696b702b485be9794cf7e6d464f250a6d75387ee69aef3ba40ccf4f6d9fcfe324c5bc7a14376177ea2bb8 jruby-bin-9.4.3.0.tar.gz=2361f4bb2989f5951b0d3e9d49bf31e6805ce39bdc987ad3c6934daa98ab7c8e69763d40d7412ccef8adbbc198e52f4b83d00998ee12ac43fbfc6b5d88930c15 jruby-bin-9.4.4.0.tar.gz=e89dff0cc5b4a948daa95196d4bd4fee0c6901bb4aa023ae35b3679d9739967c2a74e8a4388b1835465dd39f1332a1f321b450b40c54ad2b81802645b4a31ca4 jruby-bin-9.4.5.0.tar.gz=06db948e5fa6f8559abd3b6891c7b4867b9f54b7bddf0e36d6f20cc1bfb394cdba8ea920213e545c927d1cb865e083cb1089c8e925bc608e0f8784a79b5d330f jruby-bin-9.4.6.0.tar.gz=ebdc671622baf3c42a988d6ebe24af6bfefa1f717f050f602a1b35909a3220316329aad080ee2cd9cd330da9428f8d736502573efa64bd70f093ccc123ab32b0 jruby-bin-9.4.7.0.tar.gz=4fc8b12deba7b8a53a523a41a31c248895adc9bd54a62664a27107e7205369af39c0eaa508a9a70611c3bb845524d8c5f39451c09b8b9cd87059ae15139703b9 jruby-bin-9.4.8.0.tar.gz=0d65fdfd63e2049ab3b8ccbcb4caaaab20aea5a63276aeb20ed4092191a8814f144425dd0d926aeed757ad6b4daa308a98fafe1bbd1647f3db44368066f61868 jruby-bin-9.4.9.0.tar.gz=1321e2ef5fdce909008ed764051d1bf9be0a4b8cb4a2515fa888c7c0ea48f0f4a2ab7b5c881633dba3d03449c6340255d9411a58836ed059f62d801d48565d1a jruby-bin-9.4.10.0.tar.gz=3396cdda4334552f2ca21c9123e709d72544e11b448d3091ec1a6e6f7beda2cde86ba4c15a4c0648135df34b558d254a96cb970f0a18d098126b7c5c2a2af019 jruby-bin-9.4.11.0.tar.gz=21ee47b4f6d1b6295f7f25cd74e559e6dbc8d98738d31f87c27ea657a740382e8c0e8156eafc8d270946311ebe22a7ce60d5c0499fb52cac7f9b120ed4495834 jruby-bin-9.4.12.0.tar.gz=01f74e4dad2d4357c0dd5dfa937400a3d3d3ebdc0485444359658f3e4b58c8af180ff66ce75b269afc75548cb832c4f75e891f506fb5e4004f9b12286991a8df MagLev-1.0.0.tar.gz=8da29f16e08f657b0d2f147b64f2202ac027db26f85da8dec29f926898f178ac8d11260fd6c0a539a9b9b15eb92d8c7ced86a8cab1861ae7f8a33b6fa468e5cb MagLev-1.1beta.tar.gz=7122af70530e76b9a4cee93244d6872b49616e78086bc8a5db0f32d2b846560b352c4831addbbecc72e0e3158bd52f26c2da14f5d83a515ead30efe7c538b62e MagLev-1.1beta2.tar.gz=43b4b831791074f6e8c12f6fbe6ccec2bd0446dae029d3e6717cde1e7adca8462a2d7dc49c14112cb568b5b3adc8cd051767044b41d57ae51f38aca035ff8597 MagLev-1.1RC1.tar.gz=942c1cf43f1a911230aa43bbac1cea2e2e61b5e19af755e29a6a71139d66d304efcc519072dcc3487a2da7462847530564aff4a2159d675e3270cc938a297dd9 MagLev-1.2Alpha.tar.gz=2672e3e5425df2d2ecc49f85df5845fdb083f74a7b242cac75e33d0c1837079ced8ec8b273807326d08e7bf6f95cb4f1d8351f37af8bb38c4150e6292fc553dc MagLev-1.2Alpha2.tar.gz=4492ed58b6c2b852502a2195836f1db5a80f0619467e4d7b44981a993a5e9a9ea5c9fecf1198de1891583e334bbc3c3a86648ce8afea1137ae9c73a4d76b0f4a MagLev-1.2Alpha3.tar.gz=6290895b22efb986ffd7305b7d651f20a051ab6869d51310bf891fa3eed48526a8617b69f72793e8ac0b57f99bc5de75f34235ef94de967bbdcd51857efc2af6 MagLev-1.2Alpha4.tar.gz=a621e9c615ffec503910540db770754f29bab1646d8e67650d5b82413bd551adfb0bbbb8155407ccb6f80933bfe8ae1bf9b688eb0defbc88710308bde1325683 mruby-1.0.0.tar.gz=4a0f2927da3401df23d5c19ba566995f76775def3badbb14f16510a271e7b40a833fc61841f89d8adc6d57b5b12cb453708961c16a22133c092fab8ecfcd1e3c mruby-1.1.0.tar.gz=afa99a973e9c1b72a5a418d709c4aca08dc7449c427cedef5f12db4ccefb15e11a4fd1c23ceb7e31e49d4d2e602c0b1f9dcf2e0f6cf8ea3466f0b9bee23b53df mruby-1.2.0.tar.gz=bd5de32ba52b6642358752755329fa45a954082122a8983012930056c286ac328fb52fbdd11f34ff7c80af2c0e9a6348abcd5214602aca1150f2e7ae25cad1f2 mruby-1.3.0.tar.gz=13a57306706d2d60693151919ae15bb3621e6e7ed3b5e9c6d3b1c8d44e52b898c1ad394b39946d730ff82a19f5e3b7c2a374f9dcc3b6c6f990581e504f1cb9cb mruby-1.4.0.tar.gz=d2dd6e17c7f8e890ef5b6887538cccdea08a2376ba8f9a478d7d5c4377fd4c31a4af6323b1fc73952ef80e5a4778ca22eac3d724ce7d50b76770f7e614df7da0 mruby-1.4.1.tar.gz=2cbf155ba7819211b6410ea606c4d0db3adf4f47a4018ac45285ab3e32b94f280aa0af0936ead7233411957cfca62979d14bbaaf0d8f40521cba5c12272f2af4 mruby-2.0.0.tar.gz=8379f76b7a06d280e2a2552eec2975ffa3fe85b99028f6f7c009cd908f95faf3cd36a9975f502a5779559baf3c45a4297da0b6bcc038d213a0fdee851f9d01ea mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.1.0-rc.tar.gz=f310b385cbf80c6b6ab67e2a41b931411149639c0bf778799e3358d6a9a59f508f42e3faf72fef9e8ef91088d6184c445af7933a47e4e2b2fe114362d579bac0 mruby-2.1.0.tar.gz=da28b5a078e121c75edf62fc68fad6d5810212bd53a3424d4f585ffe5bbd09f652393ffea0f4b3ddd802e5fe178554dc67040c39c9d5069bdfad4ef22ead7e8d mruby-2.1.1-rc.tar.gz=97c9cc2c79a5dbf2f634ea08532f0f512f8af6ffb99ab4eefd83fc336ca9d97b943e76643971047b4508aaddb5e40176d6cc8fa39a17022455aa15d774eb5b98 mruby-2.1.1-rc2.tar.gz=13aa32a35bd5d8f02a9bfd08d17818dbae78ce46c8b0224a029f9f191cb64ac330eddf3871f4396b9221b987a91e4cd6f8933f59814ac0018155ec8454abff18 mruby-2.1.1.tar.gz=66f9b4bebb5a7b19f5cb1be2bd8b9bc65e4dbb5d4350d238ad5f947c9195fd431f2069f7334036ea63a750e9257e59ae1aef16ac99c7e1f4e17724cd1cbe2e50 rubinius-1.3.3.tar.bz2=8b91baf429dac60663d0e4da3152a60ec6e007f5d6c17ffa430876ec88eb87ade44efae90f2e32e238fd74f1b3d54e27492315f08e7bb073220b402e1e2d3163 rubinius-1.4.1.tar.bz2=928d12aa01a1d0f6c80175d67d3b1f8b9840f69f045c8148786612316421223f4cea71e3c373ee18a3f686b1457557ae547645afe758a99d21c4818dff47b9d1 rubinius-2.0.0.tar.bz2=5c81a6b8cf7b59e08c3b9353b0eb37ce985aaf391f5064df65ffb10f6d12b668287e4d4e61e2c6b560d9234c10f0b64bba74259f2c06f1dac488928544d4131d rubinius-2.1.1.tar.bz2=154cfa93ed59835814b8b974f6d738b049942fcc2b75095d21c87647d002c879fd55aa3d1ec95414b5b66eb9926c25a5c6e3e19a7c0da7dec6edbf434acb9c68 rubinius-2.2.10.tar.bz2=c2168e676059c197123916dd948b83e39bb96e99786bdcaef2e690936b761fedb13740b9f19883f991f1b475f3249ea1696213e8448c41ae15dfc14b3d4e1fda rubinius-2.3.0.tar.bz2=d0f3dd5e3b891bff2eb79b7810c6041e15fbbf0606c379f89575cefd829ac7a394b0c12ed3c5a4d452730797bc0a2c6c82646a19a078b56dcac7acad015a4559 rubinius-2.4.1.tar.bz2=7bcea320006b8cd3d122c407d89c325973a74c32456ba0b649657ac848f4682f2eb7455c13e3007709c22932bc2e1b65e2dd43fda0d3c9f993ddf8a74d1e2cb1 rubinius-2.5.0.tar.bz2=ac94d5bc11524e715fc24c1de33f4d358c2cd65e92fbb64c850dc8151d2a712d268227733c99fcffe298c3bdd6ce080c5e9553e4e8f3238868323498a9d10cae rubinius-2.5.1.tar.bz2=9315f76126d0aa754ee63b190385c24cb084f36293a99aa30fc482fd880d5393aabce361e09ff5514bc2540dfede8e179b7e9212b2dd59bd14ca2aa69d209a83 rubinius-2.5.2.tar.bz2=b48bd8d54a450441a50904b07c75c8d31b59822830a74c952720d6f8d2d86e6a27a84775e975ff2bf55bf3346f34e69d742f308933a9d8476e5e78109cb525f6 rubinius-2.5.3.tar.bz2=b923446d325dc3ce5ad28af9ee527607fae3259b85e85aeff97c1bebbb4520daf70616957b1c0ded900ed19e59025826dee66977c19cd2a2d4e9a0296811eb20 rubinius-2.5.4.tar.bz2=75b7ddbe218e4c92210dbf5a06eb8b3c3aa028d16146982a4e813e3af10a90d33f3e239f4508469c6aba17f02cb8bd10e96a204839975e06519869cacd456c92 rubinius-2.5.5.tar.bz2=a862146ddbbdcd4439eb64e78bfe6d09ae4cca540d19869618426d3f451544658713fe8eb7d46493785eb0cc721077e624293cc44d68eea3ef584967b43a18d7 rubinius-2.5.6.tar.bz2=9a0bdb5d77f80f163925ce409d00be3cee34871baae8bcfdb34c3c7545b92fd14102fecb970e42b3012588d299e504b724025f397a5a00e181ab75f1448e426a rubinius-2.5.7.tar.bz2=8048110b3ba4e5ff8c3f35282896067e1b1b46dccaf9ef4f6c9b6098782f27591ff59ccae0234fd7e881e3aaf17a0b420286b1b52ecd2cb672249655795a6982 rubinius-2.5.8.tar.bz2=23fca2f9747d2b0e544af890c3baacfb7b3a009cc59cbe653762ccdd827a6c915dcc57902d317fa1f7a81f8c12682f6c3a93195331b6de0f705b118e2e8c13f1 ruby-1.9.3-p550.tar.bz2=38767e98df25484f7292437f3cb0f798b3a43e9a7414a5401677e96ad1cc367cb3fa23ac3abe568d5bf2b2ca553713469a8770d41b79bc63daf3fa59cb4e15c6 ruby-1.9.3-p551.tar.bz2=5ea40f8c40cf116030ffdedbe436c1fdbf9a50b7bb44bc890845c9c2a885c34da711bc1a9e9694788c2f4710f7e6e0adc4410aec1ab18a25a27168f25ac3d68c ruby-2.0.0-p576.tar.bz2=e089cca4867cd9c715f4f37e40a1db9af6ba0c74b47e79568121bb980476f8877a87ccb848b973381edb4667c0c73165f5e1761f60db839e67f6326302dbd864 ruby-2.0.0-p594.tar.bz2=8301a51c73fb63a8cfeb14af47d0c18b5bc3c45e3d62fc2ed56a673a1cd6b0015c41f275e70eb14a9e40036b1530977199321e05285e107a6adf58514bef1b3d ruby-2.0.0-p598.tar.bz2=10026a04e01a8ad14ea9c99bbdf4f7d04029b73ee0c01bbf6c2eb2817332d49adacf127b646693b67b5dd7010eaf3b696b23b6335cc0f7ee5a6b56dbba0f6f82 ruby-2.0.0-p643.tar.bz2=453117152e6facdcd5bedaa9c3b1e349382bc5bc1dd3d650ec58b398cb9d2519a2822d05da10bcc5dbbb4f513fc5fef310caa3529d176fa2d453befb28e4d83a ruby-2.0.0-p645.tar.bz2=e9ca186b1cf0877cdbecd43dcab2c5161a53103e926609d5e1b769a4980eab4571bfd0951788b4fc92dfd9d10175b0f5f36ea2c7289e575a9db9b62c02f93185 ruby-2.0.0-p647.tar.bz2=3416af771ebb0b27ceacf23d309bd2a1ede832c2edf48a5ca46f0b0b84b2ab94fb6362a0c7fe4f77b21253539db8161ae26d23a78d1ba729bf03812454d93d04 ruby-2.0.0-p648.tar.bz2=609acf6d6352c9746e21cd7f0e7d29f5eb522e6fff2d5fad0431d63c568cc084ed5b7141f84cd33512d8213200d2d1a22e8d7df71469a980a3a92886133fea38 ruby-2.1.3.tar.bz2=9b48adb161e5e4550a71f61252c8edf59944affb82250babcb64240749af4b672e4a54ccd0feac5b36ea447a358b350b5080125ef2d4acf6e9e8b1ab82612f48 ruby-2.1.4.tar.bz2=68db1567751166c5e7d24b6e5015124b8a15568c50556e1f429486395352fa56c4a195a74820ab135697924149d014b445b345a1b9755678aaf824fba79c606b ruby-2.1.5.tar.bz2=d4b1e3c2b6a0dc79846cce056043c48a2a2a97599c76e9a07af21a77fd10e04c8a34f3a60b6975181bff17b2c452af874fa073ad029549f3203e59095ab70196 ruby-2.1.6.tar.bz2=75d58120b5f387bcadbf6d19e85624f78c74f81b9018baef39207214673f7ebc0700ab31145acd88b4071c896ba8e1302a29c90955bcf5f8c863634125022aa6 ruby-2.1.7.tar.bz2=f610d2dd6a93f0a5e84e04ddedf847bbcea5dd3289b3164cdf60be64f67a80dfd5f9836ea5d169970cd0ce24a7e05ea6190699706567cb0d5cf450de6a70e445 ruby-2.1.8.tar.bz2=7129c012bca7f0e7cfa51c73ba0898697f7a9f31abd5ae57d38be5b6b646fd80ab33be9b262cd3e2486c66f65aaf4ec6e881ae6e5a82ec9df62f00fa072510fc ruby-2.1.9.tar.bz2=a86422132e4c64007a84a91696f4557bdcbc8716fbfe1962f1eef3754ee7f994f4de0b5b7e7231c25057515767040d5c4af33339750b6db15744662e9bd24f38 ruby-2.1.10.tar.bz2=4b7213695416876e4de3cbce912f61ac89db052c74f0daa8424477991cfc49b07300e960177ff576b634a97ee8afef3c5aded5d5806329dbd01d0ce7b42b9b63 ruby-2.2.0-preview1.tar.bz2=2f1190f5d8cd1fa9962d1ff416dae97759d032a96801d77bc6b10136eba59dde1a554ff8c0c2d9ce0d3c1361d4dd12ad573b1266fd53b90ab238d8ce39e6b862 ruby-2.2.0-preview2.tar.bz2=c654d4c047f9463a5fb81eaea0fa5ab7bf316962bc7fb0fb356861e6336ce8ce2162c7779d8b27f72d7bc0e9604b5e5af2910abcb0b0a1f197b3138eaddfd4a5 ruby-2.2.0-rc1.tar.bz2=181201168360bee37dceeef3481a69e8a333a5d329680031fd9d371d30ac64460bbdf4db07546133024f541774e51301f1630cfd988c5e5bf2464834f3abe6bf ruby-2.2.0.tar.bz2=04edc53e8cd1732c3ca61ebeb1d6133614beb10f77f9abb80d8d36352fe8aa205112068e460bf600b2c7e81e0ddcc3b311e7e027c320366f1bd992b3e378a6ad ruby-2.2.1.tar.bz2=af6a8e75a66b953ff33ecbca5111bcf1c6560b6b48b370b700820fcbe91363146c5ac8abd670a14e693b44343ae598bab472ed2902834304c03ffcd9550886d1 ruby-2.2.2.tar.bz2=d6693251296e9c6e8452786ce6b0447c8730aff7f92d0a92733444dbf298a1e7504b7bd29bb6ee4f2155ef94ccb63148311c3ed7ac3403b60120a3ab5c70a162 ruby-2.2.3.tar.bz2=795f1b66a6d4f0baef897068899c3a1a4370ce1268618e6a7d6d4720234444259f371d1ba2e174b2f7580265e9f18eda3f295fbb087447aa6e8fb7a0f07526ce ruby-2.2.4.tar.bz2=d27ca2f19c214ce87f906b57edd41f2f8af35b2871c191470facded9cfda15ba46e5c3bc7d5540225a38da6bd65050fcc8aaa4ffbadbb6bf7dc891c1821da0df ruby-2.2.5.tar.bz2=d3224814361c297bc36646c2e40f63c461ccf5a77fea5a3acdcb2c7ad1705bb229ac6abbd7ad1ae61cbe0fefd7a008c6102568d11366ad3107179302cd3e734e ruby-2.2.6.tar.bz2=7a93f72d236521ac28c8a0bc0c73cf805797a8813d22e02f42c5fc05dd39f6e422817272e0db6a24c245f6f97ad4b2b412a9a47ac50156ab186df596918a5f34 ruby-2.2.7.tar.bz2=83756cd1c91516962b83961e0de59d858618f7ed3e9795f930aab4f199d47a95ed8f867d8aa9b51d508be26d9babf2140117c88241168bac41e6ef702cfadf20 ruby-2.2.8.tar.bz2=aa1c65f76a51a57d9059a38a13a823112b53850a9e7d6f72c3f3e38d381412014521049f7065c1b00877501b3b554235135d0f308045c2a9da133c766f5b9e46 ruby-2.2.9.tar.bz2=2a8c8770fda20a22b79c9115b6f468f8e7ea1092c84a5089af7a3122163e5ad298b493e6637e4d93ba02d899d8a619c94064dda8ac98cf3b93f64f45d5401085 ruby-2.2.10.tar.bz2=f8ec96c2a5f4ecf22052ee0b1029989ded52d7bf5d41be24fef67e732e76f72119302240bca08f0547510a9cd29e941a32e263cad9c8a2bf80023d6bc97b2373 ruby-2.3.0-preview1.tar.bz2=ae6d46c87f59e1fd3703b76dfc45bfcf208625f95ab9f4559f0b9f7050e8681f1a6e419f5fa06b704c83e56879c3a9ff1337dba443bcfca76fadb49c97d97a93 ruby-2.3.0-preview2.tar.bz2=e397f321d4338edba8d005d871408775f03d975da90c8abcfdb457a1bc7e6c87efe58c53b2c3bc122e9f58f619767b271bcc8d5d9663ed4b4288c60556e8d288 ruby-2.3.0.tar.bz2=77b707359e754c3616699d21697752741497c719dc3d6fdfb55ed639e76d52560d293ae54cbe5c63be78dc73fbe60f1b8615d704d017bdfe1994aa9747d26a6c ruby-2.3.1.tar.bz2=a8659b96a3a481a3dbdbb6997eb18ff1f8cd926a9707a90d071e937315c21d372c89252f0d44732ae5007d2678fda8c8fbceafa4e4b4ff500d236fb796284d8d ruby-2.3.2.tar.bz2=78699bae5b0a2382a58f9d51f7d891341f00ad3a90d9ca06b68b1b245cf5acebc3a82133e39bf6a412ac999a5c0f778a0dab177c2569ffbee085ffff6f6ec38e ruby-2.3.3.tar.bz2=88f7782effd35bfe0b4c33140b5eb147d09b63fbb35b9c42d2200c010f387e2b70984ead1eca86569e8ec31f08b35289d440c0ca76b662dadb760f848e863d91 ruby-2.3.4.tar.bz2=ad1f16142615498232d0de85149585be1d2c5de2bc40ec160d272a09e098ef6f317d8b25026001735261fd1c5bc0d1f8513a8474e89f0d86eed5b2fe7338d64e ruby-2.3.5.tar.bz2=3ecc7c0ac10672166e1a58cfcd5ae45dfc637c22cec549a30975575cbe59ec39945d806e47661f45071962ef9404566007a982aedccb7d4241b4459cb88507df ruby-2.3.6.tar.bz2=bc3c7a115745a38e44bd91eb5637b1e412011c471d9749db7960185ef75737b944dd0e524f22432809649952ca7d93f46d458990e9cd2b0db5ca8abf4bc8ea99 ruby-2.3.7.tar.bz2=e72754f7703f0706c4b0bccd053035536053451fe069a55427984cc0bc5692b86bd51c243c5f62f78527c66b08300d2e4aa19b73e6ded13d6020aa2450e66a7d rubu-2.3.8.tar.bz2=6d79e0d25757fd37188a8db3e630a52539bce7927fcb779a2ce9a97b9e5f330753035c16843552f1a1fb6c9a1e5c0f916b3cc8b5c0bfe81e20f35f8442e40ae8 ruby-2.4.0-preview1.tar.bz2=c9873e8686eb54dbde61d6e23cd5197beebccd6cb31fd12c82763ebe1fde17095d7514d9d93c2c82b238032c98691df5479dc2d666a8a590e0fc54450ec29cb5 ruby-2.4.0-preview2.tar.bz2=0c9a59a2f57a99c4ee8539a30f41da1de7547566203f89d856e1be9dbb44365754e6c470145dc9336eb324e0feb2f53d9fef18a1564968ac21f9ee528905949f ruby-2.4.0-preview3.tar.bz2=6602c65a7b1e3bc680acc48217108f4335e84fdd74a9cf06f2e2f9ad00a2fccacf9fa035a912bc9d5cc3f0c7a5e21475971dfac37b0364311ef3645f25c7ddf9 ruby-2.4.0-rc1.tar.bz2=b43902ac7794487197df55a45256819d2e7540b77f1ed4eb68def3e0473ee98860a400862075bafadbde74f242e1dfe36a18cd6fe05ac42aae1ea6dddc9978ce ruby-2.4.0.tar.bz2=bef7bb53f63fb74073d071cc125fb67b273ed0779ef43c2d2969089b9ca21fff1bd012281c5b748f7a3c24dd26e71730d7248c05a01cb23ab2089eb4d02115fe ruby-2.4.1.tar.bz2=1c80d4c30ecb51758a193b26b76802a06d214de7f15570f1e85b5fae4cec81bda7237f086b81f6f2b5767f2e93d347ad1fa3f49d7b5c2e084d5f57c419503f74 ruby-2.4.2.tar.bz2=1a5302d2558089a6b91b815fff9b75a29e690f10861de5fdd48211f3f45025a70dad7495f216e6af9c62d72e69ed316f1a52fada704bdc7e6d8c094d141ea77c ruby-2.4.3.tar.bz2=fb4339e30c04d03b1422b6c32ede45902e072cd26325b36f3fc05c341d42eea6431d88718242dcc9ce24d9cad26f3d26772f2e806bd7d93f40be50268c318409 ruby-2.4.4.tar.bz2=ae632852a5f413561d8134e9ef3bb82adb37317696dd293ef92cb76709ecd45718f14116ecce35b12f1c2dd53ccae8dabc7a924a270072b697512d11f4922347 ruby-2.4.5.tar.bz2=7034fcaeaee41f14bc0ecce0d3d93bd1abe95310e1a0b95fac66eaba867adfb2bf7ba4d0d70d67a15ce8df16052dee405c38cdb18987602e64a2f701d37d3df0 ruby-2.4.6.tar.bz2=292802984e5cff6d526d817bde08216fe801d255c4cede0646e450f22d4a3a81ae612ec5d193dcc2a888e3e98b2531af845b6b863a2952bcf3fb863f95368bcf ruby-2.4.7.tar.bz2=2665bca5f55d4b37f100eec0e2e632d41158139b85fcb8d5806c6dc1699e64194f17b9fe757b5afd6aa2c6e7ccabba8710a9aa8182a2d697add11f2b76cf6958 ruby-2.4.8.tar.bz2=2d7e0f5ad766e2a12a1b53ff838e6bfe86244ffb7202196769c25e9df6f71f3ccdd8605e7ef35c53e54310bc82caf6b368ad5111dd0a3ad70a3aae1a7be93f08 ruby-2.4.9.tar.bz2=d485444dcd025a261a16bd740dae63c0aa23e4138a095584e7a83aec47af34415c7d9cbc1313e92da2ec416b11bfddf20bb1a7b60c80f12906d11ef27409b3e8 ruby-2.4.10.tar.bz2=4d730d2d7cb96b002167ee358258f2620862a5a6d8627cfa5b49bd43c6e59c50c0f437b959d4689b231d57706ec7d5910d9b144f4ca1c1ed56bc879ed92e8a59 ruby-2.5.0-preview1.tar.bz2=2d39ef64aaf7a52014905f4ad59b53e83b71433e50a9227f9f50cbb7a2c9a5db9cd69fa7dbe01234819f7edd2216b3d915f21676f07d12bb5f0f3276358bce7f ruby-2.5.0-rc1.tar.bz2=bf0eb114097f9e505ff846f25e7556a2fb393573b4e8b773f94cf5b47998e221f3962a291db15a3cdbdf4ced5a523812937f80d95f4ee3f7b13c4e37f178d7a7 ruby-2.5.0.tar.bz2=8f6fdf6708e7470f55bc009db2567cd8d4e633ad0678d83a015441ecf5b5d88bd7da8fb8533a42157ff83b74d00b6dc617d39bbb17fc2c6c12287a1d8eaa0f2c ruby-2.5.1.tar.bz2=82e799ecf7257a9f5fe8691c50a478b0f91bd4bdca50341c839634b0da5cd76c5556965cb9437264b66438434c94210c949fe9dab88cbc5b3b7fa34b5382659b ruby-2.5.2.tar.bz2=9f9388a162a3ae9c14ec8999fa3b12ff5397de14f55996cc8761d21c757113db37ace4d326b9606de7ad3a5875aa94fec900dd9b81b2fb0dff558c39422f4aa1 ruby-2.5.3.tar.bz2=6fe89fe9d406bb454457442f908774577369ab2501da4fd15725ccbab77675b88faad739a6c8ad1c7b6690b439a27de5e08035b7546406cdeca65c7b295e2c77 ruby-2.5.4.tar.bz2=3c4f54f38ee50914a44d07e4fd299e53dddd045f2d38da2140586b8a9c45d1172fec2ad5b0411c228a9b31f5e161214820903a65b98caf3b0dfeeaabf2cab6ad ruby-2.5.5.tar.bz2=1b56aa79569b818446440b9f2d13122bf7c2976ab9b2865f5fb62d247d7768dd4ac5b5e463709ffec0f757bff7088afd293c2a8c5349c3780763b6444bb354a8 ruby-2.5.6.tar.bz2=e4511d42d19a7bb39ea79f66bb4eca54b63c2a9d27addc035d6d670c1e59ee48a0c6e9c6bc7d082d1f1114b0668831dce3b7422034517f3c4a06ced0e47a7914 ruby-2.5.7.tar.bz2=7d6a7d41b4f3789f46be5f996099f3eb8321aa4778b2a8ff44142654e769ba4ba2df127dd0f267547e4c8cd6ff46364f18e79838df54fcd7e3fb714294ee0099 ruby-2.5.8.tar.bz2=037a5a0510d50b4da85f081d934b07bd6e1c9b5a1ab9b069b3d6eb131ee811351cf02b61988dda7d7aa248aec91612a58d00929d342f0b19ddd7302712caec58 ruby-2.5.9.tar.bz2=12f58e14cfa6337065b0e82941e39b167813920eb54cbdb4ac4a680dd0cb75d2684d341059e7b4d0da1292bfc4e53041443bd14891a66f50991858b440a835c8 ruby-2.6.0-preview1.tar.bz2=d9cb270529a97670d54f43a0236fab072714e715c39277dab70b7a1843ec818e6700e47e1384c7256f9e0ae41ab2c0b768a0de38a5ecf4f4fff5da6ef5ad4944 ruby-2.6.0-preview2.tar.bz2=3872227e9b1c97c206d19bf1e6ce15a38ee15a26c431b4436605dea67affcf16372358984df76b35e7abaa902c15c16f533ac7af47e3031dea9451bbe459b693 ruby-2.6.0-preview3.tar.bz2=d1693625723796e8902f3e4c4fae444f2912af9173489f7cf18c99db2a217afc971b082fce7089e39f8edd54d762d2b4e72843c8306ed29b05ccb15ac03dbb5b ruby-2.6.0-rc1.tar.bz2=cbd6281b2aab6fbce3f699c1ab57e5423304dca7a547a0b3cd4e8e980326dc7b85b2ca2bfaf3f3a648d40f4222fdf1740d81d422790ee7ae1ba1ed33eb11e3e8 ruby-2.6.0-rc2.tar.bz2=9bfbe83fd3699b71bae2350801d8c967eb128e79b62a9d36fc0f011b83c53cab28a280939f4cc9f0a28f9bf02dce8eea30866ca4d06480dc44289400abf580ba ruby-2.6.0.tar.bz2=ca3daf9acf11d3db2900af21b66231bd1f025427a9d2212b35f6137ca03f77f57171ddfdb99022c8c8bcd730ff92a7a4af54e8a2a770a67d8e16c5807aa391f1 ruby-2.6.1.tar.bz2=fc41429491935b89532733b95476ab9f8a4efc310aad8f4c2bd3b68fba08fd7b6e9ac84c6c88ca892022d1ba76435295f3299ea466f9b5453c07d41cb539af59 ruby-2.6.2.tar.bz2=cad678d2ced4085e99009e4fef83c067dd0e6ead27a8695bc212c0e5112a7fa09ceb27f82638faf91932ef8bdd090f844e0a878ffdf6845a891da4b858588aa0 ruby-2.6.3.tar.bz2=c63c3f527bef88922345f4abb4b9ad467117b63f2132e41722ea6b4234cec3446626c3338e673065a06d2894feee92472807c284cbe613a442c8fda234ea7f88 ruby-2.6.4.tar.bz2=a9fa2f51fb5f86cd8dcaa0925fe6f13d4f19f110b5d4c5fd251f199d16aaf920db39ad3bb50460eb94ab8d471ab2ac8bb54daea4a3bb080eaf45250aac3437fe ruby-2.6.5.tar.bz2=28e0b04ac8ca85203eb8939137b5e5de4850c933faf7f62fc69648fe1886faaabf6cdf48382f9d9585c1720876d10b41dafd33efaeb23341c309917fbd8a6e21 ruby-2.6.6.tar.bz2=001851cf55c4529287ca7cc132afc8c7af4293cdef71feb1922da4901ece255ec453d7697b102a9a90aef2a048fe3d09017ea9378ab4a4df998c21ec3890cdbb ruby-2.6.7.tar.bz2=311ec56d23d0de7a163f66c1ef4e5369b822f8409f8e1f3a25785c803f01c68dd13aa8ddcfb3a0fe6a97bf321950f8d6cd75b2babcb04158e791601914666f7a ruby-2.6.8.tar.bz2=51806d48187dfcce269ff904943dd008df800216ad4797f95481bdeecc2fbac40016bc02eabfff32414839ebb2087511d25eebfd6acead1a1d3813be6c10edf7 ruby-2.6.9.tar.bz2=ff067ebc059094c0a9a0debf54a37aad2c85f7ed47be59299041c9c03a7701529f5063ff32a1b8c56d48ee8585015acba63602ed0176b2797d263d43d67aa241 ruby-2.6.10.tar.bz2=275a0f329641e6c3d3d3c33ffabf585195187eb3baa4fb1dfd35999fa0a80bd5925943fa2711827ac00dffb6c9a1deeadabaf2e9ee401d56926fc167db5ae4a4 ruby-2.7.0-preview1.tar.bz2=a36b241fc1eccba121bb7c2cc5675b11609e0153e25a3a8961b67270c05414b1aa669ce5d4a5ebe4c6b2328ea2b8f8635fbba046b70de103320b3fdcb3d51248 ruby-2.7.0-preview2.tar.bz2=7066ececebbbba4b2933ba1a4f70cdef373169910802259a3e52b4fc144ba298f3cffda4be5fe8a7be8ef769ed43076fa046a9ac2c13bb733475b9852112c6f0 ruby-2.7.0-preview3.tar.bz2=5d8e99e3fd984c7d05c0bc483e1504e81ccdb920cbb2d78cad3c314e197b30316b692fd0199f836acac41246e3a713cb81dc6dd64c27cba56f807df4c193db1a ruby-2.7.0-rc1.tar.bz2=b5f96227775f8bdf19f944a555d0a83d7e84b37bd31fe4b8ac008a3272b1a28a4d94abbb1b5570ee32ec0690ba9d476b837a020a5194bee14bebf6f0e768bc79 ruby-2.7.0-rc2.tar.bz2=9010f72bb3f33b6cd3f515531e6e05198f295bb2a8a788e3a46cdfd776a9f6176b6ba8612f07f0236a11359302d2b77fdecca1dc6be33581edbb028069397a0a ruby-2.7.0.tar.bz2=8b8dd0ceba65bdde53b7c59e6a84bc6bf634c676bfeb2ff0b3604c362c663b465397f31ff6c936441b3daabb78fb7a619be5569480c95f113dd0453488761ce7 ruby-2.7.1.tar.bz2=4af568f5210379239531dbc54d35739f6ff7ab1d7ffcafc54fed2afeb2b30450d2df386504edf96a494465b3f5fd90cb030974668aa7a1fde5a6b042ea9ca858 ruby-2.7.2.tar.bz2=f07592cce4de3532c0fa1c84d53a134527d28ba95e310cd3487ac321c49ee680faeace285de544ee6db432a90aa7538a1d49ff10c72b235968ca362ef9be621d ruby-2.7.3.tar.bz2=e9236138be3e61380140f2e0d42f8fb82ad8f5219d454de2f6c2ec546bb208acc8b0f2020f23e6446660d2b3b9ae873cdd8298471f166a5f1efba8e80b05e746 ruby-2.7.4.tar.bz2=f144c32c9cb0006dfcfa7d297f83f88b881f68c94f0130346c74dfd8758583a68d22accfd0fc9f31db304ab5ff0bc135bfb2868145c0dec1ee6cec5ac6c3725d ruby-2.7.5.tar.bz2=0aa2ac44bc22859a39c43d08b7c7f457df05c2dc36b2574fd70ca399143ef1000dc5e496212db9eb055bc4258523d47d26db3c57a1a5a5d63cf1b3de9f81645a ruby-2.7.6.tar.bz2=4f7f3624afc43da25ebf0f01d5a2f92f72f94bab7423587cfd3920e089b479bf559b159adf2891b996f7e6a98c008a4f73a4a2170e2f8619417660ac1ab24bdc ruby-2.7.7.tar.bz2=24cc772ac1b56d3bb423f1b33716f221bf534f3717a506bf8235a698f8a454db7d79d94ae9a84067153c2f737b3f8f6085f34e36cc04be0d75ae2fdd57718870 ruby-2.7.8.tar.bz2=3a9db8d9e79318f869417f2ebf3365907febc0d1428116eabf3253c51d8420f255782b32fa30a54802b9f5f4187fad80dab0611cc80436feec84db87b0456ec6 ruby-3.0.0-preview1.tar.gz=b94892951f842a1538f4b99022606ac2c0b5031f1ede7eef3833a8caa9ed63e9b22868509173bfefb406f263c65211db75597b152b61f49e5ba2a875fce63a27 ruby-3.0.0-preview2.tar.gz=6fa4191425ae71e41894b60bd9c31d483a562ee8216886360ce18238ab48115b95be0367708612c45f634e7584fba8940a524ba0113ce0f36ce4df78a112d0b7 ruby-3.0.0-rc1.tar.gz=798926db82d27366b39be97556ac5cb322986b96df913c398449bd3ece533e484a3047fe35e7a6241dfbd0f7da803438f5b04b805b33f95c73e3e41d0bb51183 ruby-3.0.0.tar.gz=e62f4f63dc12cff424e8a09adc06477e1fa1ee2a9b2b6e28ca22fd52a211e8b8891c0045d47935014a83f2df2d6fc7c8a4fd87f01e63c585afc5ef753e1dd1c1 ruby-3.0.1.tar.gz=cb81db2c9b698cf8159b2ca6507f4c7f171e4eb387f5730c4b658ed632b7900a169808e6fbec0ee80598d937030ad5d9c56b63a2a339373ec5d9e1c06b7661d0 ruby-3.0.2.tar.gz=e1fba6f5429b5fca9c3f52a32535615fcf95fafa415efc71c46db4cce159f249112c01574c305026be5c50140335696042e47a74194caea045acbfaa4da738cd ruby-3.0.3.tar.gz=39dab51a0d784a38302372b99f96205817d466245202586d22123745761e9cb39db128ec2b984ebc3919b9faf2adf828d19c97d3fb1e56d44be0a81dc5d11b87 ruby-3.0.4.tar.gz=0dfded6826063c1b39bf625a6e13b46c109cb160c8648b78f0965f70e7c7a1a65f1c117fc8f2cf8bdb34d7cbf79fecf1f45d169d2323406d66ab27b18bde1d22 ruby-3.0.5.tar.gz=ea45fcd2ca53b87f18fd8696d00a1e340d2495443216aaf87d3f643cb5bd8bb614a1faacd82d07e7f2b72172397c728316a82d7c34a7b4566191268ea517ccf7 ruby-3.0.6.tar.gz=d596bfd374ae777717379b409afe8ee1655ade0c0539ada7a10af4780b818efe25a28aa50a2a7226741d1776d744e10ad916641f9d12fb31c7444b0a01d0e0cc ruby-3.0.7.tar.gz=66e5116ddd027ab1b27d466104a5b440889318b4f2f74b5fdf3099812bf5f7ef77be62fe1df37e0dc7cd5b2f5efe7fee5b9096910ce815ca4126577cb2abfaa7 ruby-3.1.0-preview1.tar.gz=63f528f20905827d03649ed9804e4a4e5c15078f9c6c8efcfb306baa7baafa17a406eb09a2c08b42e151e14af33b1aadbd9fb1cc84f9353d070b54bbf1ff950d ruby-3.1.0.tar.gz=76009d325e961e601d9a287e36490cbc1f3b5dbf4878fa6eab2c4daa5ff2fed78cbc7525cd87b09828f97cbe2beb30f528928bcc5647af745d03dffe7c5baaa9 ruby-3.1.1.tar.gz=a60d69d35d6d4ad8926b324a6092f962510183d9759b096ba4ce9db2e254e0f436030c2a62741352efe72aec5ca2329b45edd85cca8ad3254a9c57e3d8f66319 ruby-3.1.2.tar.gz=9155d1150398eaea7c9954af61ecf8dfdb885cfcf63a67bbcf6c92e282cd3ccac0ff9234d039286a9623297b65197441438c37f707e31d270ce2fe11e8f38a44 ruby-3.1.3.tar.gz=550cfda2ae492312009a58316e18fd77ea92852718b37443bcd76aac84ba6694fb841fe19bf23bee099f96f5aeed9d03e77c8c02fb194e414eca5f707adbbf90 ruby-3.1.4.tar.gz=41cf1561dd7eb249bb2c2f5ea958884880648cc1d11da9315f14158a2d0ff94b2c5c7d75291a67e57e1813d2ec7b618e5372a9f18ee93be6ed306f47b0d3199a ruby-3.1.5.tar.gz=23661cb1b61013d912b7433f8707bbcd723391694d91f413747c71428e74f8c7385c1304de7d08b70c9fa3bd649e4eb5e9acb472d89dc2ad5678cc54855a24ae ruby-3.1.6.tar.gz=624555ab3681bd6663bca7cf3529a969b9f0f16928559cfb713c57f763506c8740410c9b460d946922994859189ef2b9956167bd31423cf2e3acbf5a30086fe1 ruby-3.1.7.tar.gz=a8432aaeaee4f48027ab30b7870bc61350840761b9d72b0b399d8fdfa96acb3c8f1ebe63663bcd8d835dd89b21128a07ef8f0c0c47eb41b942c169954ccb7edd ruby-3.2.0-preview1.tar.gz=d24e77161996c2085f613a86d1ed5ef5c5bf0e18eb459f6a93a0014a5d2ce41079283b4283d24cb96448a0986c8c6c52a04584abd4e73911ea59cefeb786836e ruby-3.2.0-preview2.tar.gz=5e9ddcb1a43cff449b0062cc716bfb80a9ebbb14a1b063f34005e2998c2c5033badb44e882232db9b2fceda9376f6615986e983511fda2575d60894752b605cc ruby-3.2.0-preview3.tar.gz=860634d95e4b9c48f18d38146dfbdc3c389666d45454248a4ccdfc3a5d3cd0c71c73533aabf359558117de9add1472af228d8eaec989c9336b1a3a6f03f1ae88 ruby-3.2.0-rc1.tar.gz=798157d785ebae94cb128d3c134fa35e0e90c654972e531cb6562823042f3fb68a270226f7b1cf0c42572ef2b1488a1a3e44f88389ad2a6f9ca4b280a2a8e759 ruby-3.2.0.tar.gz=94203051d20475b95a66660016721a0457d7ea57656a9f16cdd4264d8aa6c4cd8ea2fab659082611bfbd7b00ebbcf0391e883e2ebf384e4fab91869e0a877d35 ruby-3.2.1.tar.gz=f8bbff5e237b501f4042ddc70a19ac1ce74f72f147c90daf7f3007a940136abde37c12a0f7444f713ede09ba847c2cc2897a1742823832e3dc8cce80073164e1 ruby-3.2.2.tar.gz=bcc68f3f24c1c8987d9c80b57332e5791f25b935ba38daf5addf60dbfe3a05f9dcaf21909681b88e862c67c6ed103150f73259c6e35c564f13a00f432e3c1e46 ruby-3.2.3.tar.gz=75aecd9cf87f1fa66b24ecda8837a53162071b4f8801dcfd79119a24c6e81df3e3e2ba478e1cc48c60103dfaab12a00cfa2039a621f8651298eba8bd8d576360 ruby-3.2.4.tar.gz=b695b98dac7bb2c8755a106d949cb1b1b91551092fad263765171ddf8a4d86585259ffab5f7cc9bace70143d645dbe5932cfc61c6dba7817177de391d76bcd79 ruby-3.2.5.tar.gz=d86c0151fabf21b418b007465e3f5b3fd0b2de0a9652057fd465b1f7e91b01d00f83a737e972ea994a5d9231e8cb27e64e576852390fe6c2ad502f0d099fe5f4 ruby-3.2.6.tar.gz=26ae9439043cf40e5eddde6b92ae51c9e1fa4e89c8ec6da36732c59c14873b022c683fb3007950d372f35de9b62a4fabbbc3ef1f4ef58cd53058bd56e1552cbe ruby-3.2.7.tar.gz=174e70ac20a21ea77e2c5055a9123a6812109fd7b54c0f7b948312b8159eedbfb11c06120390c158430ca8543e36893da6c809883c82757082d22e08004c5055 ruby-3.2.8.tar.gz=342d9ce337936cdbaa5d63a4d393edf0594e431add8cec3b6f17b884075bfdc5aa7a843c03f4ee3bece01700dfa4707bba653715a628d9dcb230762dbd3e5ac8 ruby-3.3.0-preview1.tar.gz=0f891f140ddc6372aa7c4459f8784126e0c341db7b80e72c51e441c5153c43c2d7b965f7807c076862ac84b9b8b0c6a66bbf66fc341746016151397bb21c782a ruby-3.3.0-preview2.tar.gz=1c5a13e519e8487fd40d932b96d14fa729521925c288e7841ab5eada628e506ceca2605bae36eea1aa505d9253383d53cd933b7a4bff96e6de5b1130c7c558e6 ruby-3.3.0-preview3.tar.gz=94db07a6958c09809b2e5b597fa55a121074e8bacb3bf588c83cf0d35b07a8b070172035a49d1abf0d8ee364a9ace824f34e677f7327ffe1acdbab0938ac49c4 ruby-3.3.0.tar.gz=26074009b501fc793d71a74e419f34a6033c9353433919ca74ba2d24a3de432dbb11fd92c2bc285f0e4d951a6d6c74bf5b69a2ab36200c8c26e871746d6e0fc6 ruby-3.3.1.tar.gz=0c8ea922a79152ac7adbfb2541320565bce6a631692fd39d499a06f53ad6339c16fad8374d171351ed63f7bda3312b26d4f8c058c5b6df3d7548fde372c718f1 ruby-3.3.2.tar.gz=a15ba8d6c2830fcd1f2b36f671acf9028c303ec78608fd268da0585db8e95ddd971666e8029bcfa2584da2184a6534e1f2f2da07fa7ca4494e8d842eed206f00 ruby-3.3.3.tar.gz=0388a96127eb6e53b836f7954af51ff62b84cdb7abeab823cb1349993d805b151204e426b9ac04ca8333fbd5e01c386d58bc37d34c4e9286b219dcda7542a150 ruby-3.3.4.tar.gz=56a0b88954a4efd0236626e49cc90cdb15d9bfd42b27d7fc34efae61f500058e58cb32c73fdef5f1505a36602f4632d6148bf3bd1df539cb5581ae157c78c22b ruby-3.3.5.tar.gz=5c482059628ef9de5d8a6ad4751f8043f2fc2b159b768265be7f3ee0574ad51d9500ee4fc9146c5978fbd51313039c3de39e7b7a4dedc9bcd5d09a41a713f1a7 ruby-3.3.6.tar.gz=4ae22f5c2a1f7ed84aab7587ff04ce4d9933cffe4347deaef0ab88d22c9780f274c1664a4ee1dd8235bc3cc749be828ffa8db7cb5f5002339a59a599acf3c729 ruby-3.3.7.tar.gz=9b48be05d1210e9194c8a6d77dfc3227599bff2b55fc9bb2049b11547927deef530ece9a2a505600cdc492c8517b1bef7ab5f2520ebd79ffcf76f0a734fa763d ruby-3.3.8.tar.gz=c5005ba4019fbae19650a9a9ce139e13608345065da9e2277dbeac9d0ac9e3b07b666816afe7be690088080c8c9cf88a8c372971d429479dcebea80d6c2e3883 ruby-3.4.0-preview1.tar.gz=29c0e32179f7b823b6708f5328e495cd333fe8dd88f7df7d9051deab47add67b14d899bba565bba1a77e1b04c9693d9708541445c112925777bb6891cb7b2b62 ruby-3.4.0.tar.gz=bc70ecba27d1cdea00879f03487cad137a7d9ab2ad376cfb7a65780ad14da637fa3944eeeede2c04ab31eeafb970c64ccfeeb854c99c1093937ecc1165731562 ruby-3.4.1.tar.gz=93acc262e3b7cf86aeddebdad5b8938c187b9c44a73b0c252b6f873745964001459ae45ece7376745916e317c24895596a42b4544e836670fc6e90058e6f0de4 ruby-3.4.2.tar.gz=edc3aede0aadcaa62343f38ea6cab7adacedba810d883f1d9c3e6e24e28e24e0e27a7df2c8e517cc2aab940168fc4872ab8cad000598aab5940aa79072ac190b ruby-3.4.3.tar.gz=7019889939713c3e649003fed4d973dced36239fc354cfdee2d01dbdeb7e8512881a31b00efc3d5017f08cd492aed7914d15927bc8d076c0cae7534273e471e9 +ruby-3.5.0-preview1.tar.gz=d718973648705636eff5933a0919132fd1f6b9afea432e09cce1265c6e0125e11cc94dbff84cba1caefc03190c48d8af4a27337d2af031f3f1660ca3a3531211 rubygems-2.6.11.tgz=3b0dd38c0aaf313c59e299dcf54f7bfb6e6d84b8b739573ddaf599e584da45ed7b1465f6521131b32f237e31a4796d9ef455b8be685064b3fd77a0355dfff13e rubygems-2.6.12.tgz=ebb672488b50f5fc988eab66ab14ce8e887dcc635f71239a85e32fbf1e919ca70196eb4d3f2fee3486cace7064bab0b8b08339c754b723198e1b0b0a0984ab54 rubygems-2.6.13.tgz=c952b6061a9a0778db304c3aa5bea693e71ae2564abfb19f8b123eef66eb1e3877fc7c36f4f1527da97bb320870cbfd4574ac57ad88e850a44fadd67ebdac152 rubygems-2.6.14.tgz=7743845bc5265df3782f85a23896cbb250d8a2bbc9934a27f274b001afa7aa62f7f00f616296f74747ea612d2cb37dd7f533c931aa72550d84c64d2a73d60daf rubygems-2.7.0.tgz=0bd08fbabcc33687c98365ffe6794ca2a5e82160b0297479d4f19bd899d176b7f4efb95248898b26d873f9fc7d86c10cada6e40cdc48738b0bac261c3aad261f rubygems-2.7.1.tgz=fa4ea123760b03b8b8e8ececc55c9dc34249073fb267d310bd903aa7a613267e5d27990bbf28e32c9a746bf884af8a84a0dc202297272f9d477f7710c21bfb60 rubygems-2.7.2.tgz=0f48c6e46663780a571c7ee0e6e772f2e18a755031e7dd8ede7870f238c214b9e3e38153b1ae8f1f78a9aad63c1a079b86573b3a25c57a600d842bdf92b9c4d1 rubygems-2.7.3.tgz=2782331b31947a23f85b285a3d5e7b66e34fe5847bc84dca4f1e6bfe33ce187ab0cbc814229de8111aa19490b656ca78b7c821e4ea6b425449991c01371b7565 rubygems-2.7.4.tgz=90f72a46709ef847666a6a23eecf24521abd5c294b2da8a246bb4c7f85daf4af39a0634fc8093c7bb7ded2ac137ea27fac5ed94af3b70c49e78594285c7a40ce rubygems-2.7.5.tgz=86957f1c438070135df527a15102e40487fcee93a55251463095e4c8794a8616d16ed9bdead0e0ef83c44806bd5016ecd9e178bef608b66af2e68e2c9c49e941 rubygems-2.7.6.tgz=bc168afc40c974dbc7c37eb5678432ba2ed7469c3f007a159699467ff2cff5205c508237193ee8becaa6eb555b043969cc5f92b2aaa6bf7c958dd7c187e258a7 rubygems-2.7.7.tgz=f93b7eacf5ef8725c40d618daf9deabc7e9eed74b3b7f13ecd16f89205fe24958e782314c52f8a8fe3205b93e20b830b4fbf7ff8944ff1cf56feb7de2d773252 rubygems-2.7.8.tgz=3d1cf68377dfcf102028342258aaff5a7257d2d2b34a80508c85aa258d810add46e65a157f902c271b0b7b568c437372d17246e89cd88f8500e47c008d17f1a6 rubygems-2.7.9.tgz=5f699f47bc24d8ffd4f8f44a509a9df71fcd945ca2574dc9d5050bfe06a44830a368f45d204112d7a4f1877e1600a6fe4d1b6b68f9a55288664667b4220a7d72 rubygems-2.7.10.tgz=48a18c0f202f463c38cf5dafecfbc7cc39245e63c7a059ef2cefadda478483794a929ea6b7e0ef062dd4423230746f1f09d7bec06a97fe3ceccc3325397a3e71 rubygems-3.0.0.tgz=047f4d446aae414e4803517088ef47d5cc66319ff08a3795c6d69e83eee9f3e7c3b05419858f7e5b6a8ec224990ca01178a9259961ef2d7ab737bac352a0f18d rubygems-3.0.1.tgz=dc29ad51ec67b1dca82a23973ea92153482788964d0755bdcd3c650116915c461c6e5fb1c826be3ee04a497fec4ac2826904bd406f24611e77cd8c9eaf4d8729 rubygems-3.0.2.tgz=90b46c2cd4f8baee74eb488a40691cc00e754cefc42029d485163d6ad7782df78ba5cbeab08eec6a4f71febe0f6e635e12a9381393008c58eb5e16396df93fbe rubygems-3.0.3.tgz=1dd585243341901c7b4cc60a4902000c10ce57fe2cc9c28e27e274a2e6029f936cde1c99d7097c93c2c5b2c8bcee5d692c8fe5cc00c996a040e4954b674e330e rubygems-3.0.4.tgz=887c64226ec0b32d33f2ea331936683406d54dc74d19e658a23521e25ab50aa23534fe9eecaf696154247ad1df1d24c233d8900b9aabc79096eebd6afef3f775 rubygems-3.0.5.tgz=f5a97cf67d7d043afba7c1aed014f1b64ff6376ea74d3d6533496bc5ca9742e0ccce1a157e6f67d8fcbe59d8e34bbfbcf4ed8be97acf2970603de6381043cb78 rubygems-3.0.6.tgz=1ef1822a2b19790a36a6d242b7d4584222617baa27787ec58961a9cfeb2733f19f9085490ffc72ee375d3153c7114e050c42e68fc8039e727fe5961b09365ee5 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=5dfb040b746e462c297ebcdf84e0f07cd74b86852055dcf0a7cf1814112099bc674bcccd94b03726aee76b253c9345a45d046cbfea230647644f0fd6b1c1ec96 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=17983c442c54d19196be3626e25c64f5474139c0b973624832ba8730efb047bc747c02e59c82f38397bf012c63ab83f79a9c1b64311cab796f08fe96d7d12a1a truffleruby-1.0.0-rc3-linux-amd64.tar.gz=b0b57082d61317911f101da617333d81ee6bede6b6e18f9bed86544dc413339c830198d90cad7ac94c0c8fb690adcfc559dd9f530abb70507ff6a76eee552b61 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=18f9782de56269389320ddad779ec69c168909198d4572e2ea4c18bc8082a539569a76760a6a6da58722fe08d77d83904aaba14baf4075a2833cbd2efc45dff3 truffleruby-1.0.0-rc5-linux-amd64.tar.gz=134d9ba5db7b8a1960d3a88390cd6f7503a0e8565094fb127333d122cd773bfbf9dc976c659029007e6fb68e93486293bac2ee29ab21dae9cb0c06ba57dd2c72 truffleruby-1.0.0-rc5-macos-amd64.tar.gz=5804f1f27916176f5a270de8aac85bc48c38ba37c4e719b09f5777e5c42429271819378cfe096c3cc33d406cd0726f2e37658020f97a438fd53751019831569a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=2597b375f590755b851d3b8cbad3eeab4c965eb02d0c944044f57e39f6c3db1e2f513e2aa55db789e4a885c697f81ce5c8bdbe9a7e44ee30fc09d234e44fb512 truffleruby-1.0.0-rc6-macos-amd64.tar.gz=2eb177190de0408dfdaf30264132955d1db7783ddfb63880d97d5933f66c5662794c3bb6198edf230fbff348674203e61f7f5481e74ac875974467f2f128e939 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=ab3a3dc19f903e68e36b135729693fa025a7c1950139277255e48c972387ef8399beceb3252ac37cc70c0df92838f8a0ba8c45f53665ac4286ef23f9b240806a truffleruby-1.0.0-rc7-macos-amd64.tar.gz=b8423f50a5292e211db7ebd7e2b987fd5c9eaaf34eba86b0644d2716a7f068f2e56deb4357c516b87b437e64fd5ce8515bc181165cc1042c6763f27d71baa59d truffleruby-1.0.0-rc8-linux-amd64.tar.gz=bcd05d304ee9b4da97193575fb1ad78041a0c7710bb444af6aef12ab4261b1873f472175ec51a187a5e99da481d66b81a132fb691643b793e87d655f31d54657 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=2c758221793c38ca8af1831a5d9f3abd555c406569508ac3a86d3c1ea5baeeacf65abb6e904ed3b1e58f555f51bc85ab171135ff4c3d0e08cdae994a861cbda4 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=42e60b69957f77a8623e0dccb7d215e800c27c622364fa76b9c574e8b1d3a4056a058b61ed91eac2375ecf4e51e482a6e17550aa2894a44d1db70687958033da truffleruby-1.0.0-rc9-macos-amd64.tar.gz=18556ee8d2fdec6907fbc8fc33d8b32ea0c58d40ee3df084ffb233e2fcd3a514a553f97c31dcc25dda3f86b1b805ca5fe3c9bf8cb078b92325515f09db6b88ba truffleruby-1.0.0-rc10-linux-amd64.tar.gz=10a7cb1be6214347469d5797091f73c3d7824bfb32a47c13566573a383380b1df9b79b7901ce0fa3af1c97285c90afac21e2de7a66ed88d9495846743b3b25e2 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=53f0939d9d8c3470cb79316d865b765816032528d77a3cf497134f3aa667a6253ae037410801261a8e7d0628198ac5f6aea5ecf9b7313f06ccc1d5e9f94e74ea truffleruby-1.0.0-rc11-linux-amd64.tar.gz=f89bc9a3310634d39f68006307da0b0ddafae036089bdd663e8372777a9562d201a4e69b2e1a602cff5fba6c78a8d4861b6d1020679bd0c72c71b938a4f36a27 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=3f461c12fa9fa57a55cc390eb9887df88f404661a77bffb44f82b4c7e9021513a6df9f6d5f332a36ce0c28ae7e3d5afbbe15cc4b814bc7f86dac2e5ec280f947 truffleruby-1.0.0-rc12-linux-amd64.tar.gz=85f042c308ccdfbeb318cec37056d8d970cab51cb0779425b85b8f76b0a1dd9cdec3191ae2b6b9b6be6e95767db814496450ed20076addd9bd495742f9de3c8c truffleruby-1.0.0-rc12-macos-amd64.tar.gz=067a0f63bbaaed4c8d4120f758c8ecf8c52afd1d30ea9d41489e26289d57a574d2d4ae29e29655378510adfb3f4a07b04b403d6ee98ee6b3d3aa8bff9c8d718f truffleruby-1.0.0-rc13-linux-amd64.tar.gz=1eb6b80cb05133d253f20629a11ed9ec3f37da002d5668cdc6577b2a20524e0cdd4d739d3f1aa2e8c518e2f7ebfd519ec1c647293714a1133ad4d569375c0e69 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=e3cddb0d0ae48f7d5ee4dd094ddb5a13f6a7aff1521b1adf25710971664b235cf67144e3b81525fd710dc49b6f6f6ba06e10eee1df5dc08119e9494c6be86934 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=c982194675b66a0433bd5517fc6f1564db669f595f8c7ba4819bf37e0599474d49a0c606577a898c27fa5ba40ab793c62d8211e7ea398d6b3e2bcc31eb5d55f4 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c14e396396385644333fb4c4aa1fb4b934a3f4e46312146821e5dcdaa097cb5b1efbf397c1dd6117d909803fd27ba8d835904672e98d43dc565e907fed752e1b truffleruby-1.0.0-rc15-linux-amd64.tar.gz=f27a75f929a6e945e49ceaad12f484fdaa918469a2f639b572fc4737b78e1cde0881697057e13a58b2fab7ac64c3a71bc9951561c3a8728e3dec814ef5e95fee truffleruby-1.0.0-rc15-macos-amd64.tar.gz=7aa029c4999d4608c9bcc491771b0434267032dbe9dbf504728079f87ce93e6a90e0fa839295b88c00e5a025186ed0fcc42361428b7874c05e222edb108d6c02 truffleruby-1.0.0-rc16-linux-amd64.tar.gz=e8c508dede11d4f54cf0b15cf92b50caad93076a6065bd2d6784c5ca739f5923ea2b894c6b2b52131f62187c8b305cd11a960fb5a670789802d59b6b2999f0af truffleruby-1.0.0-rc16-macos-amd64.tar.gz=841eff077c38bf594b101edb15942f601ba0dada2122b21b016f53251aa2a635b8d0b63b49bdfb50259b2545d1f498bca95d5f771a15a28edb0dd07216c9b709 truffleruby-19.0.0-linux-amd64.tar.gz=8ec6c7829351e0dc2cce57305947cd540734fe5a0b95b9501d4179993727ab2c331e9fb639b9865c0fed596df3906adf3dcf2efb22c4cfdd23a3dc2137025fd4 truffleruby-19.0.0-macos-amd64.tar.gz=912e0c15d32e40c884b2caaaf9a86a71450d441c960ef98a63dfce80353619073b146dcfe03d9af4273b2811d0899eebe922cc84a51d6f5e6826cc436d793f78 truffleruby-19.0.2-linux-amd64.tar.gz=eec92bfbd776acd61709a428b90b1029c5ea83e5ea839304d23cae3a541dd4fab3b387691fa76643f55d5939c9cac0cbe70dc0b5786e5e0e5d20f3fcd9a21356 truffleruby-19.0.2-macos-amd64.tar.gz=ce647b76c9931feac55baa5acd2c87d8335c606bc5cd7e462bd92ba1b09f4bab5db927f021e3119abfd85c33377003d060f36cf64eb121954fce8878112f01b5 truffleruby-19.1.0-linux-amd64.tar.gz=db01e6dc09fc5f39ca466aa94f725023d49a8f52343f129bf8c32b7f5f76ccf2d573ee3344fce3d5aff9983bc9af618cc5ca6e1dbba93b3f604e4f33f8a69b3f truffleruby-19.1.0-macos-amd64.tar.gz=f002bc0b6efca11eb97c4aa6df33d2e0fcc1de3443efd39d912b028df9dd8954cb76ef3ca7fbe140f4e922d6ae4c1a6a20853490ef1ea0749293e2fcd4ffe8fc truffleruby-19.1.1-linux-amd64.tar.gz=ec031e8c216e31f034d97aaccd6441869221d6946e18f375b44a866550b8e8eb4b2fb923f9ce1a62853bdcd5b9201e0f5d2732ca6525d80171d5732ef522bd25 truffleruby-19.1.1-macos-amd64.tar.gz=1c15918af939a8fe1779b71d9e53d2ce09ca7353173a3b357905d9fe1981ff013cf0f90c6b47e1ca66dd168c2f2d742f28a5fb134cc0231d36146da99f91c3cc truffleruby-19.2.0-linux-amd64.tar.gz=1248bdde9cd3651d7042fe4cecff4ad35534868d543fe2e6f3a5bfc3bc9d10d57b4139fc070f0a03861436a1aabc9a8ebdf3356f39b77a4b8f6a1dcf492f70a4 truffleruby-19.2.0-macos-amd64.tar.gz=92c3154ed229a115cf392826494745aae06dd9228dd0996c2c44c550552f13f9c254367d068452fa4a84eef79c19601c79b87e10f3121fd7b83b803514a41cfd truffleruby-19.2.0.1-linux-amd64.tar.gz=53c78cd1f255f2b7031a70a42b65c0bf80c510b9254f5d7ba82b4787f55f5b09cfa9544c424a90f4619a74179fed07c168bd501e34772ef836a773e89c467cc5 truffleruby-19.2.0.1-macos-amd64.tar.gz=ac11523cd49fac50de1e441039e429fb8cd6c7051d537e5083b64fa68eaa19c9f0a966b269da906c367985f229af82a4811282dbfd0a76ef6565162e1081a659 truffleruby-19.2.1-linux-amd64.tar.gz=c5ffc1b592a74e836a4f6ec75b0e103150a4a40d3183ae853ead38c951a85378163111cf0bd2b81e44548c0a7aeaded3ae8a7ae558d5a02dc9e2cce992b79b58 truffleruby-19.2.1-macos-amd64.tar.gz=bb467b91f66eb7d1e6f1a54a7bc0a3d9503bcbd935e8a02da9ea0b749a51e354b1140d4a4dad6fc05312b560bb9ccdcce4f6583bccd19bb5afee19bf494102fe truffleruby-19.3.0-linux-amd64.tar.gz=0e94777a3feabbf0107ed40847e20dd4e3696ff2b7c3f6ceddf3a53ccd812bd003c84c62a750e8fac9d2490374bf792d69174b48c3ed36b593485d86729136c1 truffleruby-19.3.0-macos-amd64.tar.gz=95470c389e24c865ecdc3d299005cd98f8221a128f3cd75f899b6b7ae5d6dc07962443ce0ff38dfd014589d5aaf08b718dc870a72eb7ea6ced18ec2b2db63095 truffleruby-19.3.0.2-linux-amd64.tar.gz=dc5309b71980657f750b4dd4f8b3bc4e191bc305b638b1e562ff5b0ad7fbba40079ba674caf46226a46b5ca58c10f812354786696264742f351b129fb088a672 truffleruby-19.3.0.2-macos-amd64.tar.gz=ff1c37485ebeff3edcc7081ce09bebe5541012dedff6997662c7f8a064e0ab10bef9a5cdf834263a06ae04ca0391743948bcdea6e6c9d7e1cfef9f21523c2bdb truffleruby-19.3.1-linux-amd64.tar.gz=c724547a9eacfdd135ce05eac9dcfe74e58a5e77c97f88103f83b8513c15c975a0ecf623f623a425ec81fad1b64d3b5e135660d6943608ad08048cda00eace79 truffleruby-19.3.1-macos-amd64.tar.gz=d746b2ad410c15d145d36c676a070ae454ba8e5ec6c594d5ebcf54b1fc719f98e8b8f71b6fd504c3d38df286bd11c5114f73b5ba39be312b11d42d4ca1a17d02 truffleruby-20.0.0-linux-amd64.tar.gz=4efea5ded5fcc6886befba3a3720fe1e5b2e376d46738565e8871a1ce0201a33ed52e78b8af2fb389618bdea99466d126d8537dd0919b0c13f8ff1940cb3e52e truffleruby-20.0.0-macos-amd64.tar.gz=b36488330514b77c7115689042cf2482a0beb9f72a0b05fb4c7a6ecb0835a3da47c3b15c41abd6ffced023e65ecf7eabcfbcc6e41901dcddd0fb3dfed46564c6 truffleruby-20.1.0-linux-amd64.tar.gz=116d57404540b85c15b321793a6f985624a2044af544e659b3607e50159703af5d445e22bff28ae2182dfa752f7500d420e250f6deccc98a2f01e89adba8ac3a truffleruby-20.1.0-macos-amd64.tar.gz=9b1267101dfe78b85c79f7528eb4de96b16933e66d5771efa6272372dac0fb35b199bb9d42773d61f4fa7a15d6cbd18b5753c148f7c3e477c7c4b21633f12b88 truffleruby-20.2.0-linux-amd64.tar.gz=a37eaf8475364b74d948979ac13dc6e6423bf11949ad1d0f2925f78a4495e80de9767001ccdb777c8cfd7f545839fad4d842522620c3acad179404bc4ce6752c truffleruby-20.2.0-macos-amd64.tar.gz=964c1e02cc53e1646060334a9911771e679a8344d811a0f77d5cae3529dfefff259c45505ac84b7debb958514cd5d2276ffd435802085494e0229dd140ce8f00 truffleruby-20.3.0-linux-amd64.tar.gz=ec2d8ff6a5d45fd7091e26430c67cbbdc0f8ffa41e9ac574d48802766fcd144e1f446db807700247ad6d8046b7ed070b5da70ef667e576d6fea60cc64ea5484f truffleruby-20.3.0-macos-amd64.tar.gz=1878f94e05a3c40484bf944a72412b179aa5415a16a7ebc1610cb512a1e1c4a2ce0e98685257ad6e5c14745245c35bb5b28205fb687292c4f17193cbfb3bb606 truffleruby-21.0.0-linux-amd64.tar.gz=b7d1b76cc015d136dbd74515431f4447730850475f81b00885b71b95819134db2656d941736048db42d519f03e1f2df066226513b77208adbdbbeda1f49cab11 truffleruby-21.0.0-macos-amd64.tar.gz=7677b827a9c1758d5f941c512cb0fe8daaa19c3db77b485d7dfa43940151d6b9094c4d9271e18ef5014630142dffb93d168c7ac631a3b5eef6fc61b2f9eecf88 truffleruby-21.1.0-linux-amd64.tar.gz=010e9fb78cab12486641780392be0f284da08dfd955f3a0d1ef72adb52e1c9024b54dc880173645aea2af680b3670a6bb01409198b757239edda4cd9bf2b1e90 truffleruby-21.1.0-macos-amd64.tar.gz=96ef8481faef1bfa7f01bb4d396818ef6f0943d19c6a23dedb68f8346740b72bf06efc707bdd29158cf991cc7073c97f429a07b02c2a48050512b46369850058 truffleruby-21.2.0-linux-amd64.tar.gz=c20af04909a852cb676c90403d852fb367d56eac0f9cf8ba42caa4cad1013ba393cc4611e434614ad132b7b0ed61160aadd887001b08de0767cf58f5e149efe7 truffleruby-21.2.0-macos-amd64.tar.gz=0b8d9633fde53aad78f0baf52858cd5a5716f53ff21698baab17da4a625b4369b88dbd664193e3f0d1b40e64c88699ab4f04bbe40f54189a588c93678962a7be truffleruby-21.2.0.1-linux-amd64.tar.gz=15ceeee383114f974aed5f16c99131d56947e13cfe248b97e55d61263ccd51aa56fc3e0df215196ef7f80ccba9e7f19e7f261d7a91d54bde2d9992caba682d82 truffleruby-21.2.0.1-macos-amd64.tar.gz=8a8762d90c19db4f48433ce0e3f3339e290685d79c6ee9bb7d4359c741edfa6a7360ff65124433d964730ac25b2cc6d8b581191b0a51479f11c2a80031a6c1c8 truffleruby-21.3.0-linux-amd64.tar.gz=b0c07b1ea797de92447a81b350d460c125a2efaff3c290637c4bcf1c216b5abd11148cfb143ad397062a96f36beade8234d0785c42f58fceac0011f629a5220b truffleruby-21.3.0-macos-amd64.tar.gz=42e607fa52a534123989ad232691ede65aa1c615f39320d93aa8ab9c21924eea7bc0aa49aef1a540ec972e2b3dc775d22a99eca3e0c9bc450c525f9020fbb975 truffleruby-22.0.0.2-linux-amd64.tar.gz=2231a0cfd27238c34ea0bbad27ba387453e48f39032607cbb829b347ea6ac804df15eb3f84d50b09248782d6202284498e7bc9aaa2060f0ce81bb83a84d700ad truffleruby-22.0.0.2-macos-amd64.tar.gz=1d7ac44f0862ad23cf17a7bba73d23dfd4727aadd9a3aa9633361e9bcd19655d163e160eae9c8db8ec9892f8fbf82d7a38b1cd689475bf41609a828208098623 truffleruby-22.1.0-linux-amd64.tar.gz=c4c2f9bf4236118c8ea62c08bad89e1034ecdfa0c4815693961c4d2b1b30ca043fe958abfec9cf36a8638aa2e005e71fcc244ebffd9ce11eb68cf48bd98c29d3 truffleruby-22.1.0-macos-amd64.tar.gz=507004ade838e614955e23331845839be656aaeae7869ed3d989c10e6491775a12313ac9ef03e14945f20f5e76d46ce6f7bb860af68a627c48065399cea3c567 truffleruby-22.2.0-linux-amd64.tar.gz=37c09249ef387df3e0614f646abb444cb5b7b2751538ab0432e703abe92a81b82e0d15f89d5ad7cd58afe5f30d9a92dc8471d19f1c1ce10b50478ac74f247739 truffleruby-22.2.0-linux-aarch64.tar.gz=49a7cfb4c81980d9c7a1588ef9f76a9bfb759d4b1925ab11f230d99c15a62e162a08249d23cf5646e2d38ecc2005e27103f2e5d92b83b0a182a4e64319b70c0d truffleruby-22.2.0-macos-amd64.tar.gz=d4c206fb0a5e63c5b7f61f2e62de854e4d0817075ef9ded237d98cd821c286e88d7b150d140d9907a957209f39be96c7025560e3908c89aa337925d2fba690af truffleruby-22.2.0-macos-aarch64.tar.gz=a01c18803777a74717ad699b6ee51eb759d881fb436d24338b557c52d4a693079d7b55f108394ccad0dd69c974cb895f4a36854355e84fecb67e41bf9eb18514 truffleruby-22.3.0-linux-amd64.tar.gz=d53472ae892dadc81c6fe63a597ccfb67e133958431b11716db4d920c78fc86f7496e4b10322d041c900bed77d27e02850da20aa95b297d63a9de2e72cdf3c76 truffleruby-22.3.0-linux-aarch64.tar.gz=dab63d49db4722f0c174ce8b882413102520ff649182946ba332ef5ba0fc6b58913595539a20b59e460faab2fba36f762dc8eb66aa729d4a6bb90feb2a95f053 truffleruby-22.3.0-macos-amd64.tar.gz=15c91d25fd6fb1d9f3f2a0b36676da5c8a76d62be86cff463ebe6c7e6aed2d9b6de9062021ab1b9b29cfb7a92b5682c860939acd71d12dba7e4a6bf3964fef3d truffleruby-22.3.0-macos-aarch64.tar.gz=7c44d0dd07e4ecd84a92f6dd574dc185906121b8eb75f6fe097b9d4738aa30751664d70e9027e072eeaa1dffa05fe7bcfc06be0c2dc950142f60664baf5eac69 truffleruby-22.3.1-linux-amd64.tar.gz=f41d3bd22500b7291121368169f8558df4563c840a01b70ff7feea3593f0152d8d77d4437af362bad62f25b79bce1ce8ddaa1bd8172a2a7ef8b61cdb6e478c9e truffleruby-22.3.1-linux-aarch64.tar.gz=1ca5221f0dc5ae3e0bd9545be474e115b2e62737701df95c6ee6cdaae5d82815acbe6af961ff23afee64dc26e655c7786d4347e3694c140773f065534322ee59 truffleruby-22.3.1-macos-amd64.tar.gz=bae16cc04c6018703833121f4258c3f18fa5062309d0600458be3c51c838bc63976a026db0f28d23005df9b640ccad0a9cafc56610a5ca9c24951c66b62097d9 truffleruby-22.3.1-macos-aarch64.tar.gz=b56e230d8fbc95d19364e695aaf1e552238b02ace7056f636808a7d7510777cddfde572ace5238ea1e314351bdd1a053ab3912d0889f51f55c722797c83eaaee truffleruby-23.0.0-preview1-linux-amd64.tar.gz=d538412f12d5ce743c351acbaa483b8b85dd2cf84fe06b3e90ca21f3c2fc0465df9c1773b3515fe4296d599f45e9cbb935dc5a69fe45668321e5639d58608ef4 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=f10b5ac749b11f93c2469f2c8a713ad090cb653761ae0a3e1ba4c19b0c96bd61c5e8da74d8944f9487c2d327d268a188f2cb56028d2beaca2a7816e63123600b truffleruby-23.0.0-preview1-macos-amd64.tar.gz=cd9db49c4253bd66cad6f9ae111c83d3befd0102a7ccb72a2407d22dc576ba7f3a26a90cd479f26dee3565d2f893a2b7c8b549e2351336f35d2632e57966657c truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=28b77d9943cd1617e0445633a9fea8911cfa975f5c581192439cd0944d2a17c2b0558e3e4112588b5fc77b57c48d857ad68ac51fcb867250625ad85406d87acc truffleruby-23.0.0-linux-amd64.tar.gz=da702de2e8c994f2646a3de5b44824210dbd37129cd2f91c3bdd990a1b0d0b05dee4443ad0f6cf98fdb4e489c9f4cde64f3561baf486dc642d4981a1a1812925 truffleruby-23.0.0-linux-aarch64.tar.gz=808254a154adcfd1bbd6e22bcdafebb6169c6f8cfd1c55382d446bb66002384ee844dcd8b5f642703ef440f7566645d190081f45e04a7d8d59bf87571cb4430a truffleruby-23.0.0-macos-amd64.tar.gz=f775d57e63c606eef424a1115408ed8539ef47d6bea0125ad1de7ee4fd5971e96747cb7f5d22d91d2f004edbd6ed6b9b5bd014127dc1abe7821a3a987a72d9dc truffleruby-23.0.0-macos-aarch64.tar.gz=000069854458f81d97eefe14123fbb69937942825e77d35602d55fa279123808177a34f252aec9dcfa48b93feacbee81ae0f0e7043c2d8a9ace2a4bb61ab253f truffleruby-23.1.0-linux-amd64.tar.gz=1868799d989c51798cf07b5243457af7ae2436dd19805fd634c98b2f1885266b5c3ec81dde668c2e5a290e9028f6f9fd223d153489df6ffcc74d45240aa020ad truffleruby-23.1.0-linux-aarch64.tar.gz=2766621877996ad35fddb94f978feed531307e8abf601dcf863754c96782b8149c3ac512dfe6dd2bdef0fe0e8a968bdd77608c41020434aaef4e7250c09edd74 truffleruby-23.1.0-macos-amd64.tar.gz=06c5a1d6ad644fd81737f0a1fd24c1529f712abe2a4485ad597aca7c35ca2af898121bb5883552cf518e2afdcb4221c8ad013759b46a69e34249e7c5ebe2b170 truffleruby-23.1.0-macos-aarch64.tar.gz=496cacc5cf413a48b60184e097a962ab5d2236c539f07cc0a9a2d9ef57dfc911a26b125cc3ad9408f6170c6f93c7562f35729c8313be0301972be21c10097942 truffleruby-23.1.1-linux-amd64.tar.gz=dbca85e281bf2484371a0bbcc202ca700acc704304d966b9202cf3835e82f6eb502e43522355f4c9e5a743877d93f5609006fbba2c5e6343a89de130e5209f6a truffleruby-23.1.1-linux-aarch64.tar.gz=6a58842d79247d8a64c513d68db9d53ea5640c02f71a1bc45f103baaaca67bb224939ae5f21ef55daa9d9b9697404052d39a3c382768ca366ab7892b8bf1abbe truffleruby-23.1.1-macos-amd64.tar.gz=7cc6bc957b7ffa42e9fbfe2f6e3014bf1e7996f2754e9e74377078c2c7bc7ac8e10598f1e1452839fc5b9583c823a2a735731ca193a6af2814a02566cc4cd9e4 truffleruby-23.1.1-macos-aarch64.tar.gz=a85b8189ef8a280f6a27d4c1c93893f844266dbdc15b8c4988cdf581613a353508fae4872ac9380efcc47f36357e137861521712c00ce8548041762a8987a9b2 truffleruby-23.1.2-linux-amd64.tar.gz=6307fd71fb1431fb12346d1f13dee4b3afe53947e8a9c1f3e3aa0baae5f9fc9e1496ede0a7d86b169d912ffef9625af998b4e698dc57a2a649140150e3fae28a truffleruby-23.1.2-linux-aarch64.tar.gz=0f0c5e4aa4e9fbc9b9f91d2b3d3fbfe26e78c5bc5b369fc78dd54775a7582b8c084a64f02848058bec79387fd80b09a5a5594ecfb268635fe76e1f9d957c2e92 truffleruby-23.1.2-macos-amd64.tar.gz=648401a73b29c28862a1fa077c2e1bf8fff65015c8bc690ff883a00a3dfd99389ffdb71f39ad85a4f16c531470f4cc891ae51ec927a426b0fa05fa85c9c6a2f9 truffleruby-23.1.2-macos-aarch64.tar.gz=4ec88684c09aacfa1d8bfed9a17243579ededacecd869e98e12841710bae29ed6e5f080611e53fc217a853f730bb2a9cb3d47ef15443eb8a1ad76a120118c8a5 truffleruby-24.0.0-linux-amd64.tar.gz=3a59a4dc58ad03549d8e63db1485767757715fc9aec21b2b67b1440b13871a04541abeff9bc8201b3088e1865360b1667459e536d3cfb09687dbffca95deafeb truffleruby-24.0.0-linux-aarch64.tar.gz=50f3993b7362bb6e7da80f7327df3d079bb02f98b67012e2135005d77e61648e4f3268f767d8ca245ec5889ff934fbcccb94fd5ecbd55bb0cd9cca900fe10509 truffleruby-24.0.0-macos-amd64.tar.gz=9ec8bb340b15e29550448e123e3ab0f183edb9bbe7e052743cb2306cbd1956a5789c5a367c80c5e8d913dce2b804448dd6815e4d3421515166daf8db51d37c7d truffleruby-24.0.0-macos-aarch64.tar.gz=499f83bf65dcb6ecc92414a3550673e6a0baaddfe3ab13c0bd7aa1bdde1ae2a61d9d0ca8001c0d12688d9e09f98f9e2946a651220fe7d200bb0ec6f285394701 truffleruby-24.0.1-linux-amd64.tar.gz=62b4e8508eba8cdaac70e99ac9cb0b33a663b4195d79b2dad3d771ef538c6c41d1d91bb7bb07fbbafbcbbcaf17814ffaf6d6bdbafd474ba6a8ecdac30315a8c9 truffleruby-24.0.1-linux-aarch64.tar.gz=817d877848ea4bb55658ce34bbda52926be12426a8a5e1c4588bc0ec1896018b06dce176336b382f80a7c6d073d4331b20694a7797ee8fdf0177e973053bf929 truffleruby-24.0.1-macos-amd64.tar.gz=2ea65bea154aa38cce3f00f24fc9a4aab5e7478fafd070d0cc966878371c070d5a1776b7405e2c9e4cfa14e5c51219ed0fa988294eb4708690983b348886f439 truffleruby-24.0.1-macos-aarch64.tar.gz=bc1923e21768d34779c1bcd7850456a01ddc01acd1ccf20f4fb4a446fb847f8c51b1ff4a7c0cdc317ef8ce057ac24f18f25b778a02a6e2b185e0055d946ecaf2 truffleruby-24.0.2-linux-amd64.tar.gz=5d111beb862b618c4e6a7f8aea1d3d6476740513efdd59bf980a2b6d525a017f46fe02017b075962a4919a001b60bd9a070e69fedfa8a85533c0adbad2a8d86b truffleruby-24.0.2-linux-aarch64.tar.gz=8e3ba19df4e5509c4719bc3bb621f70ca6a0e683d48a296703649b88abd83a165e8a64ad2d7dc45394b6de0b214a95a395fa449f5393dd9e67deab9e149cf494 truffleruby-24.0.2-macos-amd64.tar.gz=06d3b5533c4e26aa1356e602c672efad99208aaee96110904216e16dcfb1d99a7535c3ef275f9a14635dd2f05110798b3c75d71199f6010f23c92c6990492cef truffleruby-24.0.2-macos-aarch64.tar.gz=ba36d3f1680112e6623b14a4bb902a5f65f11e9827f44462161b1c79ee344ca340566289aa1f841c1e213daef5608c159343cc203d07f41c2a55eaeb25db0987 truffleruby-24.1.0-linux-amd64.tar.gz=9a93fd61086fabcb6c4f3a0fcb16e81f42b0203a24a04209fe446eb5f88d78e2ac59ab54d42cc30ef5417199a88b452973eecdfafc57c7877e11edf0a3d42b13 truffleruby-24.1.0-linux-aarch64.tar.gz=ca23edf279ee9b4693630df9596c6e269bb544e06bfd02620447f51108d9e9b4dc8b3ecbcc7a8ba1280560c0eb4b59474e75acead81799e4c51365acb5676d24 truffleruby-24.1.0-macos-amd64.tar.gz=65b661b3bf497bbb090a2cb49607aa00c3e5bfe95eb19c7736d798715d55fe07ddb4e8d8c25c1ec4b7b304b37205c7de9d8ac2d56005c9fc43e4dc81ae699c9b truffleruby-24.1.0-macos-aarch64.tar.gz=ab665d995bd63839c0bf6ed1171875cce7974d49ed79953a05ecdcf13d815c0a5cd471f40839f3f51a1b3128b40a4ed34d9b89e4c3f343b38c78276aed667956 truffleruby-24.1.1-linux-amd64.tar.gz=78e4e8bd910e4b3b41e927f6158cf8cfc74da5187969727d5c5303416310c5b7f72fde239993ecd5ab51724785cd80b2bb9a422a0475320fca57ad40b26d2786 truffleruby-24.1.1-linux-aarch64.tar.gz=c4e3aa72433622f96216b053862beb65861ab20ab28cfc50f51452720173f0a836ee69335281c4c89c6289ffa6f42517b9487d1b6fe16926aecfd9180d6f8195 truffleruby-24.1.1-macos-amd64.tar.gz=099d1abaa8677ecfd298e974fbb37e21bff2ad45313090cecf9a2799b79b74223ca4f95fb873cb7148bb2754ea3f923cfb553dd1dbdf6f1c088a3793bd991871 truffleruby-24.1.1-macos-aarch64.tar.gz=8980a71fc423c454ceaa16b46ba085a0164bf22e3e2040e960623148f09fea4c467b304774afc2ea37d9e072905eab3ad65b3c4acdc7b01ba238e24829cc16d2 truffleruby-24.1.2-linux-amd64.tar.gz=93e4ebdfb9c6a89681d8913a0e175b46c53124c37b0c15c6e032bcbf423def9205a6b288977772e50ba68c8fd06308c9478f22dc7c0385b41fc9989f68a86083 truffleruby-24.1.2-linux-aarch64.tar.gz=63a212ab48704376c1f6e6792da231f6b4ed8ffe1f77eff56b0f58ae8030866da6fcc19cd7068ec158c6e11840b13f47d2d12ba65b6a7f06ba1de6cb1b582fc4 truffleruby-24.1.2-macos-amd64.tar.gz=6cb535ce7fface14bdef86ad322992931ff809fbe781c0715774f279842b5f65d5e8ff4885858cf7a3ba345071509127f473381655f50d000e60c90a88eb11a0 truffleruby-24.1.2-macos-aarch64.tar.gz=a146c8000468c977fc48d8069e938ad6d32fd257d23133c2125f5bb86598d00283c654fc553d5de31ff9a79224f34b3b064bb223ff7766f9f2e25fcf7e263947 truffleruby-24.2.0-linux-amd64.tar.gz=ef5268859169ce3c584a7865a39928005dfa264e15dd84031a9ce874deaa31af067b1ef53712011911e7816da18bb085c783a10a4b2e45d3820e1b82d4855f86 truffleruby-24.2.0-linux-aarch64.tar.gz=7c9b29eae0d6db96c8106f286cb376dadfc0e93ded75b7eb333f0919f50edaf7b0b1e2c8634ae9bcb671611cd1084b75b598a8fbc1c79600b59e98964d1fd7a8 truffleruby-24.2.0-macos-amd64.tar.gz=7d54e9b475a2ba18bc78466c75dadf12514090fae74716358a310a339722c5425fb462eb30bfc1e4264e3586717a9647d91f4e07c6250dfb8e3d2de9004f48f5 truffleruby-24.2.0-macos-aarch64.tar.gz=81df31324c5f51650d8d321e3119672c90bd19c6abf61ded977e978cee387a69ee0eeb1ed6dcec6ca371baefe3df64e09bf1fb5eb06c61725557d7bdc62d6a5b truffleruby-24.2.1-linux-amd64.tar.gz=dfb06933052bfcf62543154899abcf5b1da9da3ea5d1fb0280763829fa573d6337b8411661fc024f13ffd79bff48920cc2c18cf3389ca2e0cff790b113a2c660 truffleruby-24.2.1-linux-aarch64.tar.gz=5aaa9d880927c0132dc70bbca20f67945c81bed3dae04e089c0ddf9874e2970c91a9ea65e150a2908272032a17c07d071c1caaa98a041d09ab5b43e5bd278cf5 truffleruby-24.2.1-macos-amd64.tar.gz=b18955b9d5663301c3a896220dfa765f24dd436571aa897a0ea563fc6694cf2553cf973c6df0ccaf8ea590584be54d358d509bc988af207133ab08374fece0e6 truffleruby-24.2.1-macos-aarch64.tar.gz=e2cdcca47d0e3d99de130bcb95207ad7a72949f884708828be13ad4b1eeca2b2cf8f6a3c7653fa6f952f8fd7be0af1162559b985bd7ceedc168d389a84c92a9f
rvm/rvm
8c214a0beae284387a9c047fcc2109cd70441aab
Add TruffleRuby 24.2.1 (#5565)
diff --git a/CHANGELOG.md b/CHANGELOG.md index a84975c..8b68e94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,603 +1,603 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Use OpenSSL 3 for Ruby 3.2 and 3.3 [\#5480](https://github.com/rvm/rvm/pull/5480) * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) * Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) * Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) * Install `libncurses-dev` instead of `libncurses5-dev` on newer Debian and Ubuntu versions [\#5477](https://github.com/rvm/rvm/pull/5477) * Use `zlib-ng-compat` packages for Fedora 40+ [\#5479](https://github.com/rvm/rvm/pull/5479) * Detect core count on ARM-based machines [\#5498](https://github.com/rvm/rvm/pull/5498) * Fix requirement check for Ubuntu [\#5500](https://github.com/rvm/rvm/pull/5500) * Update location of homebrew install script on osx [\#5505](https://github.com/rvm/rvm/pull/5505) * Fix detection of Homebrew's write permissions when using Workbrew [\#5528](https://github.com/rvm/rvm/pull/5528) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) * 3.3.3 [\#5474](https://github.com/rvm/rvm/pull/5474) * 3.3.4 [\#5488](https://github.com/rvm/rvm/pull/5488) * 3.2.5 [\#5490](https://github.com/rvm/rvm/pull/5490) * 3.3.5 [\#5499](https://github.com/rvm/rvm/pull/5499) * 3.2.6, 3.3.6 [\#5513](https://github.com/rvm/rvm/pull/5513) * 3.4.0, 3.4.1 [\#5533](https://github.com/rvm/rvm/pull/5533) * 3.3.7 [\#5540](https://github.com/rvm/rvm/pull/5540) * 3.2.7 [\#5544](https://github.com/rvm/rvm/pull/5544) * 3.4.2 [\#5549](https://github.com/rvm/rvm/pull/5549) * 3.1.6, 3.1.7, 3.2.8 [\#5558](https://github.com/rvm/rvm/pull/5558) * 3.3.8 [\#5560](https://github.com/rvm/rvm/pull/5560) * 3.4.3 [\#5562](https://github.com/rvm/rvm/pull/5562) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) -* 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1, 24.0.2, 24.1.0, 24.1.1, 24.1.2, 24.2.0 +* 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1, 24.0.2, 24.1.0, 24.1.1, 24.1.2, 24.2.0, 24.2.1 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.3.15.0 [\#5482](https://github.com/rvm/rvm/pull/5482) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) * 9.4.8.0 [\#5484](https://github.com/rvm/rvm/pull/5484) * 9.4.9.0 [\#5512](https://github.com/rvm/rvm/pull/5512) * 9.4.10.0 [\#5538](https://github.com/rvm/rvm/pull/5538) * 9.4.11.0 [\#5541](https://github.com/rvm/rvm/pull/5541) * 9.4.12.0 [\#5548](https://github.com/rvm/rvm/pull/5548) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) * 3.1.6, 3.2.5, 3.3.2, 3.3.3 and 3.3.4 [\#5491](https://github.com/rvm/rvm/pull/5491) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 24.04 (Noble Numbat) x64 binaries * 3.2.6 and 3.3.6 [\#5529](https://github.com/rvm/rvm/pull/5529) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) #### Upgraded Ruby interpreters: * Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159), 2.5.0-preview1 [\#4204](https://github.com/rvm/rvm/pull/4204), 2.2.9, 2.3.6, 2.4.3 and 2.5.0-rc1 [\#4261](https://github.com/rvm/rvm/pull/4261), 2.5.0 [\#4265](https://github.com/rvm/rvm/pull/4265), 2.6.0-preview1 [\#4317](https://github.com/rvm/rvm/pull/4317), 2.2.10, 2.3.7, 2.4.4, 2.5.1 [\#4340](https://github.com/rvm/rvm/pull/4340) and 2.6.0-preview2[\#4395](https://github.com/rvm/rvm/pull/4395) * Add support for Rubinius 3.85-3.100 * Add support for JRuby 9.1.14.0 [\#4224](https://github.com/rvm/rvm/pull/4224), 9.1.15.0 [\#4258](https://github.com/rvm/rvm/pull/4258), 9.1.16.0 [\#4316](https://github.com/rvm/rvm/pull/4316), 9.1.17.0 [\#4366](https://github.com/rvm/rvm/pull/4366), 9.2.0.0 [\#4390](https://github.com/rvm/rvm/pull/4390) * Add support for mruby 1.4.0 [\#4286](https://github.com/rvm/rvm/pull/4286) * Add support for MagLev 1.1* and 1.2Alpha-1.2Alpha4 [\#4289](https://github.com/rvm/rvm/pull/4289) * Add support for RubyGems 2.6.14 [\#4205](https://github.com/rvm/rvm/pull/4205), 2.7.0-2.7.4 [\#4276](https://github.com/rvm/rvm/issues/4276) and 2.7.5-6 #### Binaries: * Ubuntu 16.04 x64 binaries for Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4362](https://github.com/rvm/rvm/issues/4362), 2.2.9, 2.3.6 and 2.4.3 [\#4259](https://github.com/rvm/rvm/issues/4259), 2.2.8, 2.3.5 and 2.4.2 [\#4161](https://github.com/rvm/rvm/issues/4161), 2.5.0 [\#4272](https://github.com/rvm/rvm/pull/4272) * Ubuntu 17.04 for Ruby 2.1.\*, 2.2.\* [\#4233](https://github.com/rvm/rvm/pull/4233) ## [1.29.3](https://github.com/rvm/rvm/releases/tag/1.29.3) 10 September 2017 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.2...1.29.3) #### New features: * Add RVM commands missing in bash shell completion [\#4078](https://github.com/rvm/rvm/pull/4078) * Railsexpress patches for 2.3.4, 2.3-head [\#4084](https://github.com/rvm/rvm/pull/4084), 2.2.5 and 2.2.6 [\#4153](https://github.com/rvm/rvm/pull/4153) * Update `gem-wrappers` to 1.3.0: Show warnings when the target binary is missing or is not executable [gem-wrappers \#9](https://github.com/rvm/gem-wrappers/issues/9) * Detect Zorin OS as Ubuntu [\#4140](https://github.com/rvm/rvm/issues/4140) #### Bug fixes: * Infinite loop in `gemset_create` [\#4102](https://github.com/rvm/rvm/issues/4102) * Command not found `__rvm_remote_version` error [\#4085](https://github.com/rvm/rvm/pull/4085) * Fix path of version script in `environment` [\#4117](https://github.com/rvm/rvm/pull/4117) * Define `cd()`, `pushd()` and `popd()` properly when using zsh [\#4132](https://github.com/rvm/rvm/pull/4132) * Update gem-wrappers to 1.3.1: Avoid warnings for missing ruby binaries [\#4104](https://github.com/rvm/rvm/issues/4104) * Handles :engine=> and :engine_version=> in Gemfile * Makes $rvm_ruby_string is not installed searchable by adding a fixed keyword * Correctly quotes suggested install command * Fix path to version script in rvm-installer [\#4134](https://github.com/rvm/rvm/pull/4134) * Fix rvm autolibs status, fix [\#4123](https://github.com/rvm/rvm/issues/4123) * Ruby 2.3.x and older are not compatible with OpenSSL 1.1.x on Arch [\#4006](https://github.com/rvm/rvm/issues/4006) * Allow comments after ruby directive in Gemfile [\#4056](https://github.com/rvm/rvm/issues/4056) * Ruby 2.3/4 compilation fix for GCC 7 [\#4080](https://github.com/rvm/rvm/issues/4080) [\#4115](https://github.com/rvm/rvm/issues/4115) * Add warning for sudo users [\#4009](https://github.com/rvm/rvm/issues/4009) * Allows running RVM shell function in Bash with `set -o nounset` [\#4013](https://github.com/rvm/rvm/issues/4013) * Ensure `rvm_hooks_path` is set [\#3902](https://github.com/rvm/rvm/issues/3902) * Allow building static ruby with `--disbale-shared` [\#4091](https://github.com/rvm/rvm/issues/4091) * Restore detection of `gpg` command for veryfication of signatures [\#4059](https://github.com/rvm/rvm/issues/4059) * Update `gem-wrappers` to 1.3.2: Avoid nested chdir warnings [gem-wrappers \#11](https://github.com/rvm/gem-wrappers/pull/11) * Fix RVM folder cleanup during installation [\#4333](https://github.com/rvm/rvm/issues/4333) * Fix found project file reject reasons for bash -e [\#4314](https://github.com/rvm/rvm/pull/4314) #### Upgraded Ruby interpreters: * Add support for Rubinius 3.82, 3.83, 3.84 diff --git a/config/db b/config/db index e75db65..74569e0 100644 --- a/config/db +++ b/config/db @@ -1,154 +1,154 @@ # General default_ruby=ruby interpreter=ruby niceness=0 # # RVM # rvm_remote_server_path1=maven2/org/jruby/jruby-dist rvm_remote_server_url1=https://repo1.maven.org rvm_remote_server_url2=https://rubies.travis-ci.org rvm_remote_server_url=https://rvm-io.global.ssl.fastly.net/binaries # # RubyGems # gem_gem-empty_version=>=1.1.2 gem_gem-wrappers_version=>=1.4.0 gem_rdoc_version=>=4.1.1 gem_rvm_version=>=1.11.3.9 rubygems_repo_url=https://github.com/rubygems/rubygems.git rubygems_url=https://rubygems.org/rubygems rubygems_url_fallback_1=https://github.com/rubygems/rubygems/archive/v\1.tar.gz rubygems_url_fallback_1_pattern=https://rubygems.org/rubygems/rubygems-([[:digit:]\.]+).tgz rubygems_version=latest-3.0 # # Packages # autoconf_url=https://ftp.gnu.org/gnu/autoconf curl_url=https://github.com/bagder/curl/archive gettext_url=https://ftp.gnu.org/pub/gnu/gettext glib_url=http://ftp.gnome.org/pub/gnome/sources/glib/2.23 libiconv_url=https://ftp.gnu.org/pub/gnu/libiconv libxml2_url=ftp://xmlsoft.org/libxml2 libxslt_url=ftp://xmlsoft.org/libxslt llvm_url=https://llvm.org/svn/llvm-project/llvm/trunk mono_url=http://ftp.novell.com/pub/mono/sources/mono ncurses_url=https://ftp.gnu.org/pub/gnu/ncurses openssl_url=https://www.openssl.org/source/old/1.0.1 openssl_version=1.0.1i pkg-config_url=http://pkgconfig.freedesktop.org/releases readline_url=https://ftp.gnu.org/gnu/readline yaml_url=http://pyyaml.org/download/libyaml yaml_version=0.1.6 zlib_url=https://prdownloads.sourceforge.net/libpng # # CentOS / Fedora EPEL # epel5_i386_rpm=https://dl.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm epel5_key=https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-5 epel5_x86_64_rpm=https://dl.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm epel6_i386_rpm=https://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm epel6_key=https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-6 epel6_x86_64_rpm=https://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm epel7_key=https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-7 epel7_x86_64_rpm=https://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-8.noarch.rpm # # MRI Ruby # CentOS_5_ruby_1.8.7_patch_level=p374 CentOS_5_ruby_1.8.7_patch_level_warn=Warning, Centos 5 can not build head version of ruby, falling back to latest patchlevel, your ruby will be less secure because of this. CentOS_5_ruby_1.9.2_patch_level=p320 CentOS_5_ruby_1.9.2_patch_level_warn=Warning, Centos 5 can not build head version of ruby, falling back to latest patchlevel, your ruby will be less secure because of this. ruby_1.8.4_rubygems_version=1.3.5 ruby_1.8.5_patch_level=p231 ruby_1.8.5_rubygems_version=1.3.5 ruby_1.8.6_patch_level=p420 ruby_1.8.6_rubygems_version=1.3.7 ruby_1.8.7_patch_level=head ruby_1.8.7_rubygems_version=latest-2.0 ruby_1.9.1_patch_level=p431 ruby_1.9.1_rubygems_version=latest-1.8 ruby_1.9.2_patch_level=p330 ruby_1.9.3_patch_level=p551 ruby_2.0.0_patch_level=p648 ruby_head_rubygems_version=ignore ruby_repo_url=https://github.com/ruby/ruby.git ruby_unmaintained_date=2017-04-01 ruby_unmaintained_version=2.1.0 ruby_url=https://cache.ruby-lang.org/pub/ruby ruby_url_fallback_1=https://ftp.ruby-lang.org/pub/ruby ruby_version=3.4.1 # # REE # ree_1.8.6_patch_level=20090610 ree_1.8.6_repo_url=https://github.com/FooBarWidget/rubyenterpriseedition.git ree_1.8.6_rubygems_version=1.3.7 ree_1.8.6_url=http://rubyforge.org/frs/download.php/58677 ree_1.8.7_2010.02_url=https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/rubyenterpriseedition/ruby-enterprise-1.8.7-2012.02.tar.gz ree_1.8.7_patch_level=2012.02 ree_1.8.7_repo_url=https://github.com/FooBarWidget/rubyenterpriseedition187-330 ree_1.8.7_rubygems_version=latest-2.0 ree_1.8.7_url=https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/rubyenterpriseedition ree_configure_flags=--dont-install-useful-gems ree_version=1.8.7 # # Rubinius # rbx_1.0.0_patch_level=20100514 rbx_1.0.1_patch_level=20100603 rbx_1.1.0_patch_level=20100923 rbx_1.1.1_patch_level=20101116 rbx_1.2.0_patch_level=20101221 rbx_1.2.1_patch_level=20110215 rbx_1.2.2_patch_level=20110222 rbx_1.2.3_patch_level=20110315 rbx_1.2.4_patch_level=20110705 rbx_repo_url=https://github.com/rubinius/rubinius.git rbx_url=https://s3.amazonaws.com/asset.rubini.us rbx_url_2.0_and_newer=https://rubinius-releases-rubinius-com.s3.amazonaws.com rbx_version=4.1 # # MRuby # mruby_repo_url=https://github.com/mruby/mruby.git mruby_url=https://github.com/mruby/mruby/archive mruby_version=2.0.1 # # JRuby # jruby_repo_url=https://github.com/jruby/jruby.git jruby_url=https://repo1.maven.org/maven2/org/jruby/jruby-dist jruby_version=9.4.12.0 maven_version=3.5.0 # # TruffleRuby # truffleruby_url=https://github.com/oracle/truffleruby/releases/download -truffleruby_version=24.2.0 +truffleruby_version=24.2.1 # # MacRuby # macruby_0.10_url=http://macruby.macosforge.org/files macruby_nightly_url=http://macruby.jp/files/nightlies macruby_repo_url=https://github.com/MacRuby/MacRuby.git macruby_url=https://github.com/downloads/MacRuby/MacRuby macruby_version=0.12 # # Maglev # maglev_repo_url=https://github.com/MagLev/maglev.git maglev_url=http://seaside.gemtalksystems.com/maglev maglev_version=1.2Alpha4 # # IronRuby # ironruby_1.1.3_url=https://download-codeplex.sec.s-msft.com/Download/Release?ProjectName=ironruby&DownloadId=217153&FileTime=129445296766130000&Build=19727 ironruby_repo_url=https://github.com/ironruby/ironruby.git ironruby_version=1.1.3 # # Topaz # topaz_repo_url=https://github.com/topazproject/topaz.git topaz_url=https://d3sgc2zfsedosj.cloudfront.net topaz_version=head diff --git a/config/known b/config/known index ed4aaee..400de1d 100644 --- a/config/known +++ b/config/known @@ -1,81 +1,81 @@ # MRI Rubies [ruby-]1.8.6[-p420] [ruby-]1.8.7[-head] # security released on head [ruby-]1.9.1[-p431] [ruby-]1.9.2[-p330] [ruby-]1.9.3[-p551] [ruby-]2.0.0[-p648] [ruby-]2.1[.10] [ruby-]2.2[.10] [ruby-]2.3[.8] [ruby-]2.4[.10] [ruby-]2.5[.9] [ruby-]2.6[.10] [ruby-]2.7[.8] [ruby-]3.0[.7] [ruby-]3.1[.7] [ruby-]3.2[.8] [ruby-]3.3[.8] [ruby-]3[.4.3] ruby-head # for forks use: rvm install ruby-head-<name> --url https://github.com/github/ruby.git --branch 2.2 # JRuby jruby-1.6[.8] jruby-1.7[.27] jruby-9.1[.17.0] jruby-9.2[.21.0] jruby-9.3[.15.0] jruby[-9.4.12.0] jruby-head # Rubinius rbx-1[.4.3] rbx-2.3[.0] rbx-2.4[.1] rbx-2[.5.8] rbx-3[.107] rbx-4[.20] rbx-5[.0] rbx-head # TruffleRuby -truffleruby[-24.2.0] +truffleruby[-24.2.1] # Opal opal # Minimalistic ruby implementation - ISO 30170:2012 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1[.4.1] mruby-2.0.1 mruby-2[.1.1] mruby[-head] # Ruby Enterprise Edition ree-1.8.6 ree[-1.8.7][-2012.02] # Topaz topaz # MagLev maglev-1.0.0 maglev-1.1[RC1] maglev[-1.2Alpha4] maglev-head # Mac OS X Snow Leopard Or Newer macruby-0.10 macruby-0.11 macruby[-0.12] macruby-nightly macruby-head # IronRuby ironruby[-1.1.3] ironruby-head diff --git a/config/known_strings b/config/known_strings index b9ac4c8..50c8bb3 100644 --- a/config/known_strings +++ b/config/known_strings @@ -75,512 +75,513 @@ jruby-1.7.8 jruby-1.7.9 jruby-1.7.10 jruby-1.7.11 jruby-1.7.12 jruby-1.7.13 jruby-1.7.14 jruby-1.7.15 jruby-1.7.16 jruby-1.7.16.1 jruby-1.7.16.2 jruby-1.7.17 jruby-1.7.18 jruby-1.7.19 jruby-1.7.20 jruby-1.7.20.1 jruby-1.7.21 jruby-1.7.22 jruby-1.7.23 jruby-1.7.24 jruby-1.7.25 jruby-1.7.26 jruby-1.7.27 jruby-9.0.0.0.pre1 jruby-9.0.0.0.pre2 jruby-9.0.0.0.rc1 jruby-9.0.0.0.rc2 jruby-9.0.0.0 jruby-9.0.1.0 jruby-9.0.2.0 jruby-9.0.3.0 jruby-9.0.4.0 jruby-9.0.5.0 jruby-9.1.0.0 jruby-9.1.1.0 jruby-9.1.2.0 jruby-9.1.3.0 jruby-9.1.4.0 jruby-9.1.5.0 jruby-9.1.6.0 jruby-9.1.7.0 jruby-9.1.8.0 jruby-9.1.9.0 jruby-9.1.10.0 jruby-9.1.11.0 jruby-9.1.12.0 jruby-9.1.13.0 jruby-9.1.14.0 jruby-9.1.15.0 jruby-9.1.16.0 jruby-9.1.17.0 jruby-9.2.0.0 jruby-9.2.1.0 jruby-9.2.2.0 jruby-9.2.3.0 jruby-9.2.4.0 jruby-9.2.4.1 jruby-9.2.5.0 jruby-9.2.6.0 jruby-9.2.7.0 jruby-9.2.8.0 jruby-9.2.9.0 jruby-9.2.10.0 jruby-9.2.11.0 jruby-9.2.11.1 jruby-9.2.12.0 jruby-9.2.13.0 jruby-9.2.14.0 jruby-9.2.15.0 jruby-9.2.16.0 jruby-9.2.17.0 jruby-9.2.18.0 jruby-9.2.19.0 jruby-9.2.20.0 jruby-9.2.20.1 jruby-9.2.21.0 jruby-9.3.0.0 jruby-9.3.1.0 jruby-9.3.2.0 jruby-9.3.3.0 jruby-9.3.4.0 jruby-9.3.6.0 jruby-9.3.7.0 jruby-9.3.8.0 jruby-9.3.9.0 jruby-9.3.10.0 jruby-9.3.11.0 jruby-9.3.13.0 jruby-9.3.14.0 jruby-9.3.15.0 jruby-9.4.0.0 jruby-9.4.1.0 jruby-9.4.2.0 jruby-9.4.3.0 jruby-9.4.4.0 jruby-9.4.5.0 jruby-9.4.6.0 jruby-9.4.7.0 jruby-9.4.8.0 jruby-9.4.9.0 jruby-9.4.10.0 jruby-9.4.11.0 jruby-9.4.12.0 macruby-0.12 maglev-1.0.0 maglev-1.1beta maglev-1.1beta2 maglev-1.1RC1 maglev-1.2Alpha maglev-1.2Alpha2 maglev-1.2Alpha3 maglev-1.2Alpha4 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1.4.0 mruby-1.4.1 mruby-2.0.0 mruby-2.0.1 mruby-2.1.0-rc mruby-2.1.0 mruby-2.1.1-rc mruby-2.1.1-rc2 mruby-2.1.1 rbx-1.0.0-20100514 rbx-1.0.1-20100603 rbx-1.1.0-20100923 rbx-1.1.1-20101116 rbx-1.2.0-20101221 rbx-1.2.1-20110215 rbx-1.2.2-20110222 rbx-1.2.3-20110315 rbx-1.2.4-20110705 rbx-1.3.2 rbx-1.3.3 rbx-1.4.1 rbx-1.4.3 rbx-2.0.0 rbx-2.1.0 rbx-2.1.1 rbx-2.2.0 rbx-2.2.2 rbx-2.2.3 rbx-2.2.4 rbx-2.2.5 rbx-2.2.6 rbx-2.2.7 rbx-2.2.8 rbx-2.2.9 rbx-2.2.10 rbx-2.3.0 rbx-2.4.0 rbx-2.4.1 rbx-2.5.0 rbx-2.5.1 rbx-2.5.2 rbx-2.5.3 rbx-2.5.4 rbx-2.5.5 rbx-2.5.6 rbx-2.5.7 rbx-2.5.8 rbx-3.70 rbx-3.71 rbx-3.72 rbx-3.73 rbx-3.74 rbx-3.75 rbx-3.76 rbx-3.77 rbx-3.78 rbx-3.79 rbx-3.80 rbx-3.81 rbx-3.82 rbx-3.83 rbx-3.84 rbx-3.85 rbx-3.86 rbx-3.87 rbx-3.88 rbx-3.89 rbx-3.90 rbx-3.91 rbx-3.92 rbx-3.93 rbx-3.94 rbx-3.95 rbx-3.96 rbx-3.97 rbx-3.98 rbx-3.99 rbx-3.100 rbx-3.101 rbx-3.102 rbx-3.103 rbx-3.104 rbx-3.105 rbx-3.106 rbx-3.107 rbx-4.0 rbx-4.1 rbx-4.2 rbx-4.3 rbx-4.4 rbx-4.5 rbx-4.6 rbx-4.7 rbx-4.8 rbx-4.9 rbx-4.10 rbx-4.11 rbx-4.12 rbx-4.13 rbx-4.14 rbx-4.15 rbx-4.16 rbx-4.17 rbx-4.18 rbx-4.19 rbx-4.20 rbx-5.0 ree-1.8.6-20080507 ree-1.8.6-20080621 ree-1.8.6-20080623 ree-1.8.6-20080624 ree-1.8.6-20080709 ree-1.8.6-20080810 ree-1.8.6-20081205 ree-1.8.6-20081215 ree-1.8.6-20090113 ree-1.8.6-20090201 ree-1.8.6-20090421 ree-1.8.6-20090520 ree-1.8.6-20090610 ree-1.8.6-20090928 ree-1.8.7-2009.10 ree-1.8.7-2010.01 ree-1.8.7-2010.02 ree-1.8.7-2011.01 ree-1.8.7-2011.02 ree-1.8.7-2011.03 ree-1.8.7-2011.12 ree-1.8.7-2012.02 ruby-1.8.5-p115 ruby-1.8.5-p231 ruby-1.8.6-p286 ruby-1.8.6-p287 ruby-1.8.6-p369 ruby-1.8.6-p383 ruby-1.8.6-p398 ruby-1.8.6-p399 ruby-1.8.6-p420 ruby-1.8.7-p160 ruby-1.8.7-p174 ruby-1.8.7-p248 ruby-1.8.7-p249 ruby-1.8.7-p299 ruby-1.8.7-p302 ruby-1.8.7-p330 ruby-1.8.7-p334 ruby-1.8.7-p352 ruby-1.8.7-p357 ruby-1.8.7-p358 ruby-1.8.7-p370 ruby-1.8.7-p371 ruby-1.8.7-p374 ruby-1.9.0 ruby-1.9.1-p129 ruby-1.9.1-p243 ruby-1.9.1-p376 ruby-1.9.1-p378 ruby-1.9.1-p429 ruby-1.9.1-p431 ruby-1.9.2-p0 ruby-1.9.2-p136 ruby-1.9.2-p180 ruby-1.9.2-p290 ruby-1.9.2-p318 ruby-1.9.2-p320 ruby-1.9.2-p330 ruby-1.9.3-preview1 ruby-1.9.3-rc1 ruby-1.9.3-p0 ruby-1.9.3-p125 ruby-1.9.3-p194 ruby-1.9.3-p286 ruby-1.9.3-p327 ruby-1.9.3-p362 ruby-1.9.3-p374 ruby-1.9.3-p385 ruby-1.9.3-p392 ruby-1.9.3-p429 ruby-1.9.3-p448 ruby-1.9.3-p484 ruby-1.9.3-p545 ruby-1.9.3-p547 ruby-1.9.3-p550 ruby-1.9.3-p551 ruby-2.0.0-preview1 ruby-2.0.0-preview2 ruby-2.0.0-rc1 ruby-2.0.0-rc2 ruby-2.0.0-p0 ruby-2.0.0-p195 ruby-2.0.0-p247 ruby-2.0.0-p353 ruby-2.0.0-p451 ruby-2.0.0-p481 ruby-2.0.0-p576 ruby-2.0.0-p594 ruby-2.0.0-p598 ruby-2.0.0-p643 ruby-2.0.0-p645 ruby-2.0.0-p647 ruby-2.0.0-p648 ruby-2.1.0-preview1 ruby-2.1.0-preview2 ruby-2.1.0-rc1 ruby-2.1.0 ruby-2.1.1 ruby-2.1.2 ruby-2.1.3 ruby-2.1.4 ruby-2.1.5 ruby-2.1.6 ruby-2.1.7 ruby-2.1.8 ruby-2.1.9 ruby-2.1.10 ruby-2.2.0-preview1 ruby-2.2.0-preview2 ruby-2.2.0-rc1 ruby-2.2.0 ruby-2.2.1 ruby-2.2.2 ruby-2.2.3 ruby-2.2.4 ruby-2.2.5 ruby-2.2.6 ruby-2.2.7 ruby-2.2.8 ruby-2.2.9 ruby-2.2.10 ruby-2.3.0-preview1 ruby-2.3.0-preview2 ruby-2.3.0 ruby-2.3.1 ruby-2.3.2 ruby-2.3.3 ruby-2.3.4 ruby-2.3.5 ruby-2.3.6 ruby-2.3.7 ruby-2.3.8 ruby-2.4.0-preview1 ruby-2.4.0-preview2 ruby-2.4.0-preview3 ruby-2.4.0-rc1 ruby-2.4.0 ruby-2.4.1 ruby-2.4.2 ruby-2.4.3 ruby-2.4.4 ruby-2.4.5 ruby-2.4.6 ruby-2.4.7 ruby-2.4.8 ruby-2.4.9 ruby-2.4.10 ruby-2.5.0-preview1 ruby-2.5.0-rc1 ruby-2.5.0 ruby-2.5.1 ruby-2.5.2 ruby-2.5.3 ruby-2.5.4 ruby-2.5.5 ruby-2.5.6 ruby-2.5.7 ruby-2.5.8 ruby-2.5.9 ruby-2.6.0-preview1 ruby-2.6.0-preview2 ruby-2.6.0-preview3 ruby-2.6.0-rc1 ruby-2.6.0-rc2 ruby-2.6.0 ruby-2.6.1 ruby-2.6.2 ruby-2.6.3 ruby-2.6.4 ruby-2.6.5 ruby-2.6.6 ruby-2.6.7 ruby-2.6.8 ruby-2.6.9 ruby-2.6.10 ruby-2.7.0-preview1 ruby-2.7.0-preview2 ruby-2.7.0-preview3 ruby-2.7.0-rc1 ruby-2.7.0-rc2 ruby-2.7.0 ruby-2.7.1 ruby-2.7.2 ruby-2.7.3 ruby-2.7.4 ruby-2.7.5 ruby-2.7.6 ruby-2.7.7 ruby-2.7.8 ruby-3.0.0-preview1 ruby-3.0.0-preview2 ruby-3.0.0-rc1 ruby-3.0.0 ruby-3.0.1 ruby-3.0.2 ruby-3.0.3 ruby-3.0.4 ruby-3.0.5 ruby-3.0.6 ruby-3.0.7 ruby-3.1.0-preview1 ruby-3.1.0 ruby-3.1.1 ruby-3.1.2 ruby-3.1.3 ruby-3.1.4 ruby-3.1.5 ruby-3.1.6 ruby-3.1.7 ruby-3.2.0-preview1 ruby-3.2.0-preview2 ruby-3.2.0-preview3 ruby-3.2.0-rc1 ruby-3.2.0 ruby-3.2.1 ruby-3.2.2 ruby-3.2.3 ruby-3.2.4 ruby-3.2.5 ruby-3.2.6 ruby-3.2.7 ruby-3.2.8 ruby-3.3.0-preview1 ruby-3.3.0-preview2 ruby-3.3.0-preview3 ruby-3.3.0 ruby-3.3.1 ruby-3.3.2 ruby-3.3.3 ruby-3.3.4 ruby-3.3.5 ruby-3.3.6 ruby-3.3.7 ruby-3.3.8 ruby-3.4.0-preview1 ruby-3.4.0 ruby-3.4.1 ruby-3.4.2 ruby-3.4.3 truffleruby-1.0.0-rc2 truffleruby-1.0.0-rc3 truffleruby-1.0.0-rc5 truffleruby-1.0.0-rc6 truffleruby-1.0.0-rc7 truffleruby-1.0.0-rc8 truffleruby-1.0.0-rc9 truffleruby-1.0.0-rc10 truffleruby-1.0.0-rc11 truffleruby-1.0.0-rc12 truffleruby-1.0.0-rc13 truffleruby-1.0.0-rc14 truffleruby-1.0.0-rc15 truffleruby-1.0.0-rc16 truffleruby-19.0.0 truffleruby-19.0.2 truffleruby-19.1.0 truffleruby-19.1.1 truffleruby-19.2.0 truffleruby-19.2.0.1 truffleruby-19.2.1 truffleruby-19.3.0 truffleruby-19.3.0.2 truffleruby-19.3.1 truffleruby-20.0.0 truffleruby-20.1.0 truffleruby-20.2.0 truffleruby-20.3.0 truffleruby-21.0.0 truffleruby-21.1.0 truffleruby-21.2.0 truffleruby-21.2.0.1 truffleruby-21.3.0 truffleruby-22.0.0.2 truffleruby-22.1.0 truffleruby-22.2.0 truffleruby-22.3.0 truffleruby-22.3.1 truffleruby-23.0.0-preview1 truffleruby-23.0.0 truffleruby-23.1.0 truffleruby-23.1.1 truffleruby-23.1.2 truffleruby-24.0.0 truffleruby-24.0.1 truffleruby-24.0.2 truffleruby-24.1.0 truffleruby-24.1.1 truffleruby-24.1.2 truffleruby-24.2.0 +truffleruby-24.2.1 diff --git a/config/md5 b/config/md5 index e3e2311..f7a0e56 100644 --- a/config/md5 +++ b/config/md5 @@ -1560,515 +1560,519 @@ ruby-1.8.6-p398.tar.gz=736db5f56c2d9b0136e563d049249fa8 ruby-1.8.6-p399.tar.bz2=f77c307cb72fb8808b0e85af5d05cefc ruby-1.8.6-p399.tar.gz=c3d16cdd3c1ee8f3b7d1c399d4884e33 ruby-1.8.6-p420.tar.bz2=1c7a978e9ffd4f56dc2ad74bbd2c34f3 ruby-1.8.6-p420.tar.gz=ca1eee44f842e93b5098bc5a2bb9a40b ruby-1.8.7-p160.tar.bz2=f8ddb886b8a81cf005f53e9a9541091d ruby-1.8.7-p160.tar.gz=945398f97e2de6dd8ab6df68d10bb1a1 ruby-1.8.7-p174.tar.bz2=88c45aaf627b4404e5e4273cb03ba2ee ruby-1.8.7-p174.tar.gz=18dcdfef761a745ac7da45b61776afa5 ruby-1.8.7-p248.tar.bz2=37e19d46b7d4b845f57d3389084b94a6 ruby-1.8.7-p248.tar.gz=60a65374689ac8b90be54ca9c61c48e3 ruby-1.8.7-p249.tar.bz2=37200cc956a16996bbfd25bb4068f242 ruby-1.8.7-p249.tar.gz=d7db7763cffad279952eb7e9bbfc221c ruby-1.8.7-p299.tar.bz2=244439a87d75ab24170a9c2b451ce351 ruby-1.8.7-p299.tar.gz=43533980ee0ea57381040d4135cf9677 ruby-1.8.7-p302.tar.bz2=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p302.tar.gz=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p330.tar.bz2=2689719fb42c8cf0aa336f8c8933f413 ruby-1.8.7-p330.tar.gz=50a49edb787211598d08e756e733e42e ruby-1.8.7-p334.tar.bz2=2f14f604bf981bb938ab5fc8b09eb1a6 ruby-1.8.7-p334.tar.gz=aacb6ee5dfe2367682bba56af7f415b8 ruby-1.8.7-p352.tar.bz2=0c61ea41d1b1183b219b9afe97f18f52 ruby-1.8.7-p352.tar.gz=0c33f663a10a540ea65677bb755e57a7 ruby-1.8.7-p357.tar.bz2=3abd9e2a29f756a0d30c7bfca578cdeb ruby-1.8.7-p357.tar.gz=b2b8248ff5097cfd629f5b9768d1df82 ruby-1.8.7-p358.tar.bz2=de35f00997f4ccee3e22dff0f2d01b8a ruby-1.8.7-p370.tar.bz2=1e4c3194537dd8ff92e756993e55a29d ruby-1.8.7-p371.tar.bz2=c27526b298659a186bdb5107fcec2341 ruby-1.8.7-p371.tar.gz=653f07bb45f03d0bf3910491288764df ruby-1.8.7-p374.tar.bz2=83c92e2b57ea08f31187060098b2200b ruby-1.8.7-p374.tar.gz=b72a0bc5b824398537762e5272bbb8dc ruby-1.9.0.tar.bz2=17eb66ac3721340d21db352d8f5dec76 ruby-1.9.1-p129.tar.bz2=6fa62b20f72da471195830dec4eb2013 ruby-1.9.1-p129.tar.gz=c71f413514ee6341c627be2957023a5c ruby-1.9.1-p243.tar.bz2=66d4f8403d13623051091347764881a0 ruby-1.9.1-p243.tar.gz=515bfd965814e718c0943abf3dde5494 ruby-1.9.1-p376.tar.bz2=e019ae9c643c5efe91be49e29781fb94 ruby-1.9.1-p376.tar.gz=ebb20550a11e7f1a2fbd6fdec2a3e0a3 ruby-1.9.1-p378.tar.bz2=5922459622a23612eb9b68a3586cb5f8 ruby-1.9.1-p378.tar.gz=9fc5941bda150ac0a33b299e1e53654c ruby-1.9.1-p429.tar.bz2=09df32ae51b6337f7a2e3b1909b26213 ruby-1.9.1-p429.tar.gz=0f6d7630f26042e00bc59875755cf879 ruby-1.9.1-p431.tar.bz2=03179138ae95dbfae872ef49e9cc6da7 ruby-1.9.1-p431.tar.gz=23f28cffc007ed5ac72c8e9bec6837ce ruby-1.9.2-p0.tar.bz2=d8a02cadf57d2571cd4250e248ea7e4b ruby-1.9.2-p0.tar.gz=755aba44607c580fddc25e7c89260460 ruby-1.9.2-p136.tar.bz2=52958d35d1b437f5d9d225690de94c13 ruby-1.9.2-p136.tar.gz=6e17b200b907244478582b7d06cd512e ruby-1.9.2-p180.tar.bz2=68510eeb7511c403b91fe5476f250538 ruby-1.9.2-p180.tar.gz=0d6953820c9918820dd916e79f4bfde8 ruby-1.9.2-p290.tar.bz2=096758c3e853b839dc980b183227b182 ruby-1.9.2-p290.tar.gz=604da71839a6ae02b5b5b5e1b792d5eb ruby-1.9.2-p318.tar.bz2=be431c6cbfa27e3836a06c6315717747 ruby-1.9.2-p318.tar.gz=cc7bf1025128e1985882ae243f348802 ruby-1.9.2-p320.tar.bz2=b226dfe95d92750ee7163e899b33af00 ruby-1.9.2-p320.tar.gz=5ef5d9c07af207710bd9c2ad1cef4b42 ruby-1.9.2-p330.tar.bz2=8ba4aaf707023e76f80fc8f455c99858 ruby-1.9.2-p330.tar.gz=4b9330730491f96b402adc4a561e859a ruby-1.9.3-p0.tar.bz2=65401fb3194cdccd6c1175ab29b8fdb8 ruby-1.9.3-p0.tar.gz=8e2fef56185cfbaf29d0c8329fc77c05 ruby-1.9.3-p125.tar.bz2=702529a7f8417ed79f628b77d8061aa5 ruby-1.9.3-p125.tar.gz=e3ea86b9d3fc2d3ec867f66969ae3b92 ruby-1.9.3-p194.tar.bz2=2278eff4cfed3cbc0653bc73085caa34 ruby-1.9.3-p194.tar.gz=bc0c715c69da4d1d8bd57069c19f6c0e ruby-1.9.3-p286.tar.bz2=e76848a86606a4fd5dcf14fc4b4e755e ruby-1.9.3-p327.tar.bz2=7d602aba93f31ceef32800999855fbca ruby-1.9.3-p327.tar.gz=96118e856b502b5d7b3a4398e6c6e98c ruby-1.9.3-p362.tar.bz2=13c26ea368d88a560f07cc8c5eb4fa05 ruby-1.9.3-p374.tar.bz2=944e73eba9ee9e1f2647ff32ec0b14b2 ruby-1.9.3-p385.tar.bz2=5ec9aff670f4912b0f6f0e11e855ef6c ruby-1.9.3-p392.tar.bz2=a810d64e2255179d2f334eb61fb8519c ruby-1.9.3-p392.tar.gz=f689a7b61379f83cbbed3c7077d83859 ruby-1.9.3-p429.tar.bz2=c2b2de5ef15ea9b1aaa3152f9112af1b ruby-1.9.3-p429.tar.gz=993c72f7f805a9eb453f90b0b7fe0d2b ruby-1.9.3-p448.tar.bz2=aa710d386e5903f78f0231868255e6af ruby-1.9.3-p448.tar.gz=a893cff26bcf351b8975ebf2a63b1023 ruby-1.9.3-p484.tar.bz2=03f5b08804927ceabe5122cb90f5d0a9 ruby-1.9.3-p484.tar.gz=8ac0dee72fe12d75c8b2d0ef5d0c2968 ruby-1.9.3-p545.tar.bz2=4743c1dc48491070bae8fc8b423bc1a7 ruby-1.9.3-p545.tar.gz=8e8f6e4d7d0bb54e0edf8d9c4120f40c ruby-1.9.3-p547.tar.bz2=5363d399be7f827c77bf8ae5d1a69b38 ruby-1.9.3-p547.tar.gz=7531f9b1b35b16f3eb3d7bea786babfd ruby-1.9.3-p550.tar.bz2=c2169c8b14ccefd036081aba5ffa96da ruby-1.9.3-p551.tar.bz2=0d8b272b05c3449dc848bb7570f65bfe ruby-1.9.3-preview1.tar.bz2=7d93dc773c5824f05c6e6630d8c4bf9b ruby-1.9.3-preview1.tar.gz=0f0220be4cc7c51a82c1bd8f6a0969f3 ruby-1.9.3-rc1.tar.bz2=26f0dc51ad981e12c58b48380112fa4d ruby-1.9.3-rc1.tar.gz=46a2a481536ca0ca0b80ad2b091df68e ruby-2.0.0-p0.tar.bz2=895c1c581f8d28e8b3bb02472b2ccf6a ruby-2.0.0-p195.tar.bz2=2f54faea6ee1ca500632ec3c0cb59cb6 ruby-2.0.0-p247.tar.bz2=60913f3eec0c4071f44df42600be2604 ruby-2.0.0-p353.tar.bz2=20eb8f067d20f6b76b7e16cce2a85a55 ruby-2.0.0-p451.tar.bz2=908e4d1dbfe7362b15892f16af05adf8 ruby-2.0.0-p481.tar.bz2=ea406a8d415a1a5d8365596d4288f3da ruby-2.0.0-p576.tar.bz2=eccd42d43620544a085c5e3834572f37 ruby-2.0.0-p594.tar.bz2=58469c0daf5f3a892a70cc674ea59c7f ruby-2.0.0-p598.tar.bz2=a3f3908103a7d209d1d1cf4712e3953c ruby-2.0.0-p643.tar.bz2=1390888cac6cd175e6f164eff378cdde ruby-2.0.0-p645.tar.bz2=d576240c97cfcc3ed9bdc457eb1e8280 ruby-2.0.0-p647.tar.bz2=27a3ea1a8b8bca1a6de43a7d08e88b69 ruby-2.0.0-p648.tar.bz2=3544031334f4665aa2eb1414babc9345 ruby-2.0.0-preview1.tar.bz2=47a0f662f0e258aa1c5e429c310861b3 ruby-2.0.0-preview2.tar.bz2=a645a783c3302cc094a9963a5e700a4d ruby-2.0.0-rc1.tar.bz2=24cebdda11e01ff4889ac983cd7dc02c ruby-2.0.0-rc2.tar.bz2=e92420131bd7994513e0bf09a3e2a19b ruby-2.1.0-preview1.tar.bz2=d32d1ea23988399afadbd21c5a7a37fc ruby-2.1.0-preview2.tar.bz2=9d566a9b2d2e7e35ad6125e2a14ce672 ruby-2.1.0-rc1.tar.bz2=cae095b90349b5b0f7026060cc3dd2c5 ruby-2.1.0.tar.bz2=1546eeb763ac7754365664be763a1e8f ruby-2.1.1.tar.bz2=53edc33b2f590ecdd9f6a344b9d92d0d ruby-2.1.1.tar.gz=e57fdbb8ed56e70c43f39c79da1654b2 ruby-2.1.2.tar.bz2=ed9b8565bdeccb401d628ec8d54a0774 ruby-2.1.2.tar.gz=a5b5c83565f8bd954ee522bd287d2ca1 ruby-2.1.3.tar.bz2=02b7da3bb06037c777ca52e1194efccb ruby-2.1.4.tar.bz2=f4136e781d261e3cc20748005e1740b7 ruby-2.1.5.tar.bz2=a7c3e5fec47eff23091b566e9e1dac1b ruby-2.1.6.tar.bz2=e1a8e6c6bfbb09bb7f8d6be8f508e4a1 ruby-2.1.7.tar.bz2=3a878e98311d543e5de3533b82ef4a5a ruby-2.1.8.tar.bz2=b17130b5f02a61640ae3b629af931610 ruby-2.1.9.tar.bz2=62bd1cbfcbc22e4d137462bce992f6d1 ruby-2.1.10.tar.bz2=5155c624807ff2418a9e9f15202954d0 ruby-2.2.0-preview1.tar.bz2=767b132eec3e70b14afe5884a7a767b1 ruby-2.2.0-preview2.tar.bz2=d7abace25a8ffe861cb2807bef1c58a6 ruby-2.2.0-rc1.tar.bz2=7144732d30dd4547c0a59862b3345d54 ruby-2.2.0.tar.bz2=d03cd4690fec1fff81d096d1c1255fde ruby-2.2.1.tar.bz2=06973777736d8e6bdad8dcaa469a9da3 ruby-2.2.2.tar.bz2=af6eb4fa7247f1f7b2e19c8e6f3e3145 ruby-2.2.3.tar.bz2=f49a734729a71774d4a94a9a603114b2 ruby-2.2.4.tar.bz2=c3d65f6d2ebe90dda81a37885ea244f5 ruby-2.2.5.tar.bz2=0c7edd1ff3650c3b74da2efaf641bf34 ruby-2.2.6.tar.bz2=3d13cf447142b8a11cd9beb7bc63fee0 ruby-2.2.7.tar.bz2=ca7224d80c08b015bc3b8c226d0914c3 ruby-2.2.8.tar.bz2=054d2e2904d5175662293e29c3bdb927 ruby-2.2.9.tar.bz2=575adf8ede6b1ca7236a5341e73536b0 ruby-2.2.10.tar.bz2=bef1909a4c885157870ef69548cdad3a ruby-2.3.0-preview1.tar.bz2=776000d74ec6dd34bf355ff6921c8311 ruby-2.3.0-preview2.tar.bz2=3ad442ccb337e77e4acaa4113f25b76a ruby-2.3.0.tar.bz2=f0d9f9bbdc87372ca98988a571875819 ruby-2.3.1.tar.bz2=c194281f63d7fcd816747fe78474be5e ruby-2.3.2.tar.bz2=9d00f3772f1c8fa5eecdfea089e3032f ruby-2.3.3.tar.bz2=04b9c461a2bc1eec0535ad1947cad4fb ruby-2.3.4.tar.bz2=99961e97566aee6d63635e2da4cf73ac ruby-2.3.5.tar.bz2=e1efc3d5a948ca1f552005efe5925513 ruby-2.3.6.tar.bz2=b2443b11ee80319a119f7ec0c9b8d79a ruby-2.3.7.tar.bz2=5eb580d5cd13ffb5aacfb96580c0043d ruby-2.3.8.tar.bz2=78045332e298dfd859ceef9fe946950f ruby-2.4.0-preview1.tar.bz2=64b8983b5f53d053906e394f734aa296 ruby-2.4.0-preview2.tar.bz2=1074e8dea5baa89af7f7c2d1d2b9ebaa ruby-2.4.0-preview3.tar.bz2=9f767e6bc61830735ea7dc9cd5a63653 ruby-2.4.0-rc1.tar.bz2=0f8b665acf4e883334adc121a42a206f ruby-2.4.0.tar.bz2=98f29161860fe1b6c65396717847a358 ruby-2.4.1.tar.bz2=07b2ae5d2f46321c95b37066c8415900 ruby-2.4.2.tar.bz2=5ff3ad6ec816bcce8806a55090936ab6 ruby-2.4.3.tar.bz2=ac8215ba561cc7c79b4f61daee11b706 ruby-2.4.4.tar.bz2=d994274eaa95b82aa5d31ec2188253c6 ruby-2.4.5.tar.bz2=45d70a8bb9397d818795ffe992163d27 ruby-2.4.6.tar.bz2=4abd13c50c1fc273a0a81a0ae74ed39f ruby-2.4.7.tar.bz2=1ce166ced489908993d78e8bb68325e0 ruby-2.4.8.tar.bz2=396d35f1a2d1deaf303f59cb5245d4ae ruby-2.4.9.tar.bz2=0b3447370651df55a2014a170c0cb1d5 ruby-2.4.10.tar.bz2=b10a7d2fcaf218c98edbaf57efc36e58 ruby-2.5.0-preview1.tar.bz2=889454189f41e271ae5ba15382911b6a ruby-2.5.0-rc1.tar.bz2=f5acdeacf56aced3c00ae6a8fa816bbc ruby-2.5.0.tar.bz2=63a6cd49546783d62de25a0ffc4aecc3 ruby-2.5.1.tar.bz2=5aaaf2fb4893214fa316516f3ac43519 ruby-2.5.2.tar.bz2=e90ab127e2ac3ee1d8840835e8ba1f13 ruby-2.5.3.tar.bz2=49aea0bf56d25351ccaf938c642400df ruby-2.5.4.tar.bz2=0c923215470f1debe593fe21e66fd37b ruby-2.5.5.tar.bz2=8f41b5cb683d48b5cb6cdfe03d135d6b ruby-2.5.6.tar.bz2=f2a74416ab3016434896194120796f04 ruby-2.5.7.tar.bz2=65597b69aa54bdca8745502c10349f96 ruby-2.5.8.tar.bz2=9ec96e7a590ef801ede294b6184c9c0f ruby-2.5.9.tar.bz2=9e905a545a729af1f1620ddfc2976fe5 ruby-2.6.0-preview1.tar.bz2=1ce507e27fa02aeb36100dabcf1da94f ruby-2.6.0-preview2.tar.bz2=e45011116334d21857b9e1712a01e6b3 ruby-2.6.0-preview3.tar.bz2=b326ceee3d3756f892515009e148f4b2 ruby-2.6.0-rc1.tar.bz2=40457a72e36cbecd0c51d9f895347302 ruby-2.6.0-rc2.tar.bz2=9665e6d886a9da2d4076fa75836798f1 ruby-2.6.0.tar.bz2=d3372daec93f83e7a91c669821053014 ruby-2.6.1.tar.bz2=73d19ac478db1a178be5ae2f2fb8c9ec ruby-2.6.2.tar.bz2=658fcc0da15578c2420ded807b11cce1 ruby-2.6.3.tar.bz2=52e609b756735115814b9c8463f185e2 ruby-2.6.4.tar.bz2=d9b35753c65f54c745ab6b0094511839 ruby-2.6.5.tar.bz2=d1b89c88effb71d75cd7ef77c35e1985 ruby-2.6.6.tar.bz2=abc030870bfbe18ae9c356abebd95cb6 ruby-2.6.7.tar.bz2=46f24740181f91247c72f19d52334379 ruby-2.6.8.tar.bz2=c53761123d17e929cfe248f50429bcab ruby-2.6.9.tar.bz2=ddc24495adaf215c8ee40630b4a55041 ruby-2.6.10.tar.bz2=6ad76db639ab308e3b6c19408729a0cf ruby-2.7.0-preview1.tar.bz2=82fab0496947acd847a6b2eb758acfc6 ruby-2.7.0-preview2.tar.bz2=966a544ab59114591898403c23d91397 ruby-2.7.0-preview3.tar.bz2=2fa6c213774744b287e7e0212b43f626 ruby-2.7.0-rc1.tar.bz2=48a8837cb352f5b95e97a1ae0d62a9d0 ruby-2.7.0-rc2.tar.bz2=cca58fdb8c5e8be8273842d54199c42d ruby-2.7.0.tar.bz2=89347748b7414f5bc7aeb8f4a87ebef4 ruby-2.7.1.tar.bz2=4bb2b2b2f0c6953859e30af140cf249a ruby-2.7.2.tar.bz2=a8acc9c24708fe29dfc287823ecaae65 ruby-2.7.3.tar.bz2=604acb258b1d8228f55799e846cfe6d3 ruby-2.7.4.tar.bz2=52705d799ed851dd3bfd5634265cde46 ruby-2.7.5.tar.bz2=d97d4377eee18b0e790510c3afed648c ruby-2.7.6.tar.bz2=1b6efacb9f129d0253d8a9faa9c21f99 ruby-2.7.7.tar.bz2=63c55e75150251d3ba092b662138e4af ruby-2.7.8.tar.bz2=f44dedf51fdb7441a7dba592d6a4a14d ruby-3.0.0-preview1.tar.gz=991df063b86a8f8412ca07f548579f39 ruby-3.0.0-preview2.tar.gz=ce14b24e923f2e269fea6441791a7248 ruby-3.0.0-rc1.tar.gz=848a8628c8abde270b66e2474049a4a3 ruby-3.0.0.tar.gz=d6af36269a1b0bc278236d371543ad97 ruby-3.0.1.tar.gz=8d1c460a9a9d48a353de3eb0f338bbfd ruby-3.0.2.tar.gz=b973af486291a1e17ad50d88472bfa86 ruby-3.0.3.tar.gz=9ecae293da9547c1438a970f04f64655 ruby-3.0.4.tar.gz=ec9de9a15acc4f205b08816d94267415 ruby-3.0.5.tar.gz=cdff2395625dc1d632fc5400c8fec103 ruby-3.0.6.tar.gz=6b5a7b14505697e6fc2b40b345679f40 ruby-3.0.7.tar.gz=147a3467facc704b5d479e809c131603 ruby-3.1.0-preview1.tar.gz=d131b9bca700ee87ea276f8233ea4c0b ruby-3.1.0.tar.gz=1ca89d713f2c18a20104befed51b3b9a ruby-3.1.1.tar.gz=702778a0ef8b7a01ef7530a541002e19 ruby-3.1.2.tar.gz=9daf064899cccc32fd564117c7a7e0dd ruby-3.1.3.tar.gz=cce38a2b2c589d59f440f67c7d8cc697 ruby-3.1.4.tar.gz=3e601ae6db76a487219a1084e5cb4c9c ruby-3.1.5.tar.gz=ce1e92ddb1230fa2d4f4367882542555 ruby-3.1.6.tar.gz=880923d0ce02717023683b522dbe92a5 ruby-3.1.7.tar.gz=20b73ea8e850d7e12c226b3772b1d0ed ruby-3.2.0-preview1.tar.gz=a83c91d53e130fe232e4c27ecc8738da ruby-3.2.0-preview2.tar.gz=56e7801b37612b82285c9a09cfeb28ce ruby-3.2.0-preview3.tar.gz=0ed16faae50403b4e2ba2e85ec2314a1 ruby-3.2.0-rc1.tar.gz=4657d7013702adce21ca21dfe71ea4a0 ruby-3.2.0.tar.gz=76ca7e7d71898ab1e85155d69403754e ruby-3.2.1.tar.gz=055101c924538467c63fcbf42abddc75 ruby-3.2.2.tar.gz=eb6f18605e1e1be5dfb5b45f31bf6a93 ruby-3.2.3.tar.gz=e0ba90554f7ea41c587ffa7fcfd064ca ruby-3.2.4.tar.gz=c48283a23c72d7aae19b7f510b89444a ruby-3.2.5.tar.gz=3bd6f2b26918c8637abf56c2f208833e ruby-3.2.6.tar.gz=fa9bd65bc429a43a3e6dda8ff0b97022 ruby-3.2.7.tar.gz=c72e290d57080f828156b5c24fe8e4ad ruby-3.2.8.tar.gz=aa16ae868ae1cb8810581ea604e4e0fa ruby-3.3.0-preview1.tar.gz=0833f555b1b8d5423953600fb4146639 ruby-3.3.0-preview2.tar.gz=4f82f4c9e512ec0a53baa1be8d35ebf7 ruby-3.3.0-preview3.tar.gz=a32ede198a9da50d4afc4421a4a993ad ruby-3.3.0.tar.gz=f57422a0f995cd5a93c726f6c42c310a ruby-3.3.1.tar.gz=368e331a35145ace4948390ed76cf1df ruby-3.3.2.tar.gz=9a7efebc6a0e4810c716ec6d401dc372 ruby-3.3.3.tar.gz=beb9773cc4d9d8da29463ab175e4db28 ruby-3.3.4.tar.gz=f2e16c1a56e07e185214e85c62657941 ruby-3.3.5.tar.gz=ccad73b02d942d1e6b4c27873d4c08e4 ruby-3.3.6.tar.gz=51bcf91da64e5889e2e59c7adc7189c5 ruby-3.3.7.tar.gz=5fa3e653657d868e2c8377d2f3adb335 ruby-3.3.8.tar.gz=874dd01d11ddb2886df05340c6388ba9 ruby-3.4.0-preview1.tar.gz=93b9b1040a2dd7be7514a7870aa7da03 ruby-3.4.0.tar.gz=2acf769caa47f692fea932ab81e75639 ruby-3.4.1.tar.gz=43e587b9a6de2a51dd1fa2613615542b ruby-3.4.2.tar.gz=120907785ecc0a84521e924cbda66af9 ruby-3.4.3.tar.gz=3fe26229fe20342d251503b83fdf0b02 ruby-enterprise-1.8.6-20080507.tar.gz=17e3c52e73e42809f57ad0000a6cb4ab ruby-enterprise-1.8.6-20080621.tar.gz=626fc3811eee2dc92ac27ea63d37a8b2 ruby-enterprise-1.8.6-20080623.tar.gz=0bf8a3a93c6b37bb1260cc09b05e81fd ruby-enterprise-1.8.6-20080624.tar.gz=de58b97128aa65209f291c66eab7c4a7 ruby-enterprise-1.8.6-20080709.tar.gz=f0ded08cec64959fa388ec6a237b9c47 ruby-enterprise-1.8.6-20080810.tar.gz=bfdcf06f437af825cd9f2d321f9d1896 ruby-enterprise-1.8.6-20081205.tar.gz=50206bec9be2e08a862e5ec2e70fa693 ruby-enterprise-1.8.6-20081215.tar.gz=aab57b7d5061c1980bec5dbe311ec9b2 ruby-enterprise-1.8.6-20090113.tar.gz=e8d796a5bae0ec1029a88ba95c5d901d ruby-enterprise-1.8.6-20090201.tar.gz=a965e6789b553efaed72191825b13713 ruby-enterprise-1.8.6-20090421.tar.gz=c777b361aadccda7988be16ede7ab15f ruby-enterprise-1.8.6-20090520.tar.gz=156572a8296bd0440970a6bb95018a13 ruby-enterprise-1.8.6-20090610.tar.gz=0bf66ee626918464a6eccdd83c99d63a ruby-enterprise-1.8.7-2009.10.tar.gz=3727eef7b6b1b2f31db7d091328d966e ruby-enterprise-1.8.7-2010.01.tar.gz=587aaea02c86ddbb87394a340a25e554 ruby-enterprise-1.8.7-2010.02.tar.gz=4df7b09c01adfd711b0ab76837611542 ruby-enterprise-1.8.7-2011.01.tar.gz=4640634347cd8e5469cb718853e2112e ruby-enterprise-1.8.7-2011.02.tar.gz=8c5faa11c1ddaed3f44b7294711980cc ruby-enterprise-1.8.7-2011.03.tar.gz=038604ce25349e54363c5df9cd535ec8 ruby-enterprise-1.8.7-2011.12.tar.gz=1e5f3059d52a67ab5d91d472b756de08 ruby-enterprise-1.8.7-2012.02.tar.gz=8d086d2fe68a4c57ba76228e97fb3116 ruby-enterprise-1.8.7-20090928.tar.gz=ae00018ce89d95419dfde370fcd485ac rubygems-0.4.0.tgz=86a64616548a793e1a5f825f0dd385b9 rubygems-0.5.0.tgz=80d151edd94a06bcd2452a7e272b4d96 rubygems-0.6.0.tgz=5df803f5a04654833690dd32283de741 rubygems-0.6.1.tgz=c4a0faa9f876ad805ae80d1396a29d97 rubygems-0.7.0.tgz=ede9b55343219e8b3491793aa12c46f3 rubygems-0.8.0.tgz=9ef6e3c34dcb54e295c8e57321ddc079 rubygems-0.8.1.tgz=6276d268b420c0d61796cdbf6d28dae4 rubygems-0.8.3.tgz=6e6da80f61d6e77d0ad9e531767f6fd5 rubygems-0.8.4.tgz=a2ad2d03dae8a98002c2a7cd6c3ed352 rubygems-0.8.5.tgz=b917c084e1e6e99d8e102af8dd687ddb rubygems-0.8.6.tgz=9de98d2f62e3f91521b0207a4dcdeb5b rubygems-0.8.7.tgz=7fc04b9f9acc0c18cbbe6222be8d0bd3 rubygems-0.8.8.tgz=a8535e9c35a4c215d6ef9268d4bc69ed rubygems-0.8.10.tgz=d26592e280c0fb24c51f2837c3f48e67 rubygems-0.8.11.tgz=aa363b428c4c1fc2e076a4ff77b957d7 rubygems-0.9.0.tgz=5d496e1f415b8b4033ab867f01d1161f rubygems-0.9.1.tgz=a62314cdb174ccc88a27b8924fa79e4a rubygems-0.9.2.tgz=cc525053dd465ab6e33af382166fa808 rubygems-0.9.3.tgz=600940a22ecd79e28e0fd37ad1f1d871 rubygems-0.9.4.tgz=b5680acaa019c80ea44fe87cc2e227da rubygems-0.9.5.tgz=91f7036a724e34cc66dd8d09348733d9 rubygems-1.0.0.tgz=b0b74eac0cbfc5a13f895ab6f803edc1 rubygems-1.0.1.tgz=0d5851084955c327ee1dc9cbd631aa5f rubygems-1.1.0.tgz=85f994904c5b4045f0a859b29d0be717 rubygems-1.1.1.tgz=1a77c5b6b293a3ccd5261dc120641ccc rubygems-1.2.0.tgz=b77a4234360735174d1692e6fc598402 rubygems-1.3.0.tgz=63d3dfc038710eaf532b6a133225115a rubygems-1.3.1.tgz=a04ee6f6897077c5b75f5fd1e134c5a9 rubygems-1.3.2.tgz=6204d0a4c526a1d8fdbce746647b179a rubygems-1.3.3.tgz=0e9697db44d812712350baf28016b4a7 rubygems-1.3.4.tgz=b17b398503253bf36a101c58f02a226f rubygems-1.3.5.tgz=6e317335898e73beab15623cdd5f8cff rubygems-1.3.6.tgz=789ca8e9ad1d4d3fe5f0534fcc038a0d rubygems-1.3.7.tgz=e85cfadd025ff6ab689375adbf344bbe rubygems-1.4.1.tgz=e915dbf79e22249d10c0fcf503a5adda rubygems-1.4.2.tgz=b5badb7c5adda38d9866fa21ae46bbcc rubygems-1.5.0.tgz=49bef7186bf3c0ca6ee7adf4b585bccc rubygems-1.5.1.tgz=47577a5e33c9c6f1e3a56aff7f51d0ff rubygems-1.5.2.tgz=3951f94c09c16c774c8bcebc94fa5374 rubygems-1.5.3.tgz=38bbbdc17aef923fb41f054cf8421116 rubygems-1.6.0.tgz=abd27b5a9002100ff74ddb398a1c9689 rubygems-1.6.1.tgz=a77c64896aaa10d64aaf34f5c1488173 rubygems-1.6.2.tgz=0c95a9869914ba1a45bf71d3b8048420 rubygems-1.8.6.tgz=8e95d0c5b377a003f3d54a49461e81d9 rubygems-1.8.9.tgz=fc399445d693c29778779e5828ee5e90 rubygems-1.8.10.tgz=5b08ee31740c9b0bd36f6c04d537e7d4 rubygems-1.8.23.1.tgz=5259ce3eb7988950fa3aff9051a5de91 rubygems-1.8.23.2.tgz=fb377c7fd387df14a33e529153adc316 rubygems-1.8.23.tgz=178b0ebae78dbb46963c51ad29bb6bd9 rubygems-1.8.24.tgz=3a555b9d579f6a1a1e110628f5110c6b rubygems-1.8.25.tgz=1376a258d43c53750a8df30e67853e10 rubygems-1.8.26.tgz=0ea47f1efd010f4c82b8a51a934f48dc rubygems-1.8.27.tgz=6686ad26735c21d0d6e58b6192c7da5d rubygems-1.8.28.tgz=2df78039f391fb1f71c02c2fc5671c94 rubygems-1.8.29.tgz=a57fec0af33e2e2e1dbb3a68f6cc7269 rubygems-2.0.0.tgz=89ce467eb2d55657e9965a46559acbcf rubygems-2.0.1.tgz=2652ab6f001a873b8933e2ca09505974 rubygems-2.0.2.tgz=3471f140a70bcd32a7495b545cfce790 rubygems-2.0.3.tgz=854691f145cea98b4100e5b0831b73ed rubygems-2.0.4.tgz=3ec32dbe783bab37a87f50758f8efe13 rubygems-2.0.5.tgz=641d82672937d40d664dbc18f49cdcec rubygems-2.0.6.tgz=0633f50db16112bf6c3cf9bfb9ceb9bd rubygems-2.0.7.tgz=9046700f1222712fedfb836fafa08c50 rubygems-2.0.8.tgz=5432214a740c0d13482e43a5328a6518 rubygems-2.0.9.tgz=bc55898247297ffa190223276b1b1bd7 rubygems-2.0.10.tgz=5457ba403cd9a5f4f5fb2ef4a2a1c03e rubygems-2.0.11.tgz=0f28e3fde3348c0f23ceecba73a6cbef rubygems-2.0.12.tgz=99c416517e2de1146d2c6fbb4c4c1441 rubygems-2.0.13.tgz=3970e66a670ddb6d1aade9c7b18033d4 rubygems-2.0.14.tgz=4a7aa0b144e465230ab5d7b59dfd7e8f rubygems-2.1.0.tgz=9a9d242baef5e58fbfe79ec5206cd316 rubygems-2.1.1.tgz=b34d6f4028b69a84123a6b7cb0ac8028 rubygems-2.1.2.tgz=b5c5c4430be60f911014216d41886ef3 rubygems-2.1.3.tgz=ac7bbdfecd49f9304756aa5ebeb51400 rubygems-2.1.4.tgz=aa502b1ea90fbdd14ca9b32634795c2b rubygems-2.1.5.tgz=60564b762d4e186815997653b1c876ab rubygems-2.1.6.tgz=e11237a8f87dbd8c085770551d64a8f8 rubygems-2.1.7.tgz=b721ed7d5fd57ed05f77eb21a3a592ee rubygems-2.1.8.tgz=cc4c84c0482840389a457740e8083ed9 rubygems-2.1.9.tgz=2636bf26c0a9ec889c7bd938887bd9a3 rubygems-2.1.10.tgz=6fa671d7d6605de73d16f529cf7bffb8 rubygems-2.1.11.tgz=b561b7aaa70d387e230688066e46e448 rubygems-2.2.0.rc.1.tgz=f7d80b612339169569f2675155c202f1 rubygems-2.2.0.tgz=3c16e50673adb99d1ce76d5231f764bd rubygems-2.4.8.tgz=dc77b51449dffe5b31776bff826bf559 rubygems-2.6.10.tgz=ab5a0028d2a0653691b29d7463bd0892 rubygems-2.6.11.tgz=8d514b836fcf3ae2c20b4fe8d5cdc3c5 rubygems-2.6.12.tgz=7c454ef88b716c1a123f62b26bb9612b rubygems-2.6.13.tgz=e6f19b51614055d826e431549a12a80b rubygems-2.6.14.tgz=e0a6914ce03b91dfc6d448ebf292f145 rubygems-2.7.0.tgz=771c40015538c0f225c5249e4bc7d441 rubygems-2.7.1.tgz=65646f28f3c36ccaa7f991c17e15b8a9 rubygems-2.7.2.tgz=312a238ed98a61d2b3d165b790b6062b rubygems-2.7.3.tgz=fb3a1927a1842b75677a24f48dd63ddc rubygems-2.7.4.tgz=e9bbf5a4cc9a74293884b91f49603ea0 rubygems-2.7.5.tgz=516a4f219976003feb4b4f797cbc66b0 rubygems-2.7.6.tgz=366cea352c2b1243db726013c3d76fc4 rubygems-2.7.7.tgz=b6721f6ce4af08f68c6f513bbddfe484 rubygems-2.7.8.tgz=a3ed89a34e1ae8f9da0c620a8aa35f12 rubygems-2.7.9.tgz=173272ed55405caf7f858b6981fff526 rubygems-2.7.10.tgz=464754059d8ca01c1121a1233d866e8c rubygems-3.0.0.tgz=3908105894e531f7ad3aceb8b41dcbcd rubygems-3.0.1.tgz=1e8af9b87a67f15841ad2be7d5725a5f rubygems-3.0.2.tgz=d8db1b516ae1e35b8f6f56cb526f879a rubygems-3.0.3.tgz=b7a7dd5f85485334a6cb61b7dac20cff rubygems-3.0.4.tgz=7d0c49077a2d19f48d88567cfa3cf17a rubygems-3.0.5.tgz=4664467d621d719688e4778d147c306a rubygems-3.0.6.tgz=60d84e843b131fb87c8fd67e8fac6470 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=3e9afdf72f153e2f66259fc2b6fca594 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=c30459287aec83548cfcb17340fa73d5 truffleruby-1.0.0-rc3-linux-amd64.tar.gz=138f6814451ce634b0fae3aca5579248 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=94ed54ecb65bea2166a2159431b0362b truffleruby-1.0.0-rc5-linux-amd64.tar.gz=9e5428611e22b093d05afebbe0ccbc2b truffleruby-1.0.0-rc5-macos-amd64.tar.gz=b32a254fed71434c3431fb2effb35c5a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=7f394a8c7fe356b7bd36683c57f74ebd truffleruby-1.0.0-rc6-macos-amd64.tar.gz=f033329d03f1f846d25728c2af9d7524 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=184e98f2d6939f63db4b915943ff60c6 truffleruby-1.0.0-rc7-macos-amd64.tar.gz=d19213b33011f7a55e0f32d25e19184f truffleruby-1.0.0-rc8-linux-amd64.tar.gz=a394167c0331c6d8c1123e1f992e5411 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=dc1bf0fcfdd5837ae0ca56d6d6e5f7b0 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=f6ec25bd532bf0551d35327d1aa4caf9 truffleruby-1.0.0-rc9-macos-amd64.tar.gz=c80a345f9071521cf1961ab75ebc7dd1 truffleruby-1.0.0-rc10-linux-amd64.tar.gz=3a889726efcdf33feb7ef3df13fd5f39 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=bba618b4483b79eebf9f0e7af4078502 truffleruby-1.0.0-rc11-linux-amd64.tar.gz=a25e179ca0be96a1bc737a600729c195 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=bb8d8f5525e1ba86bb039e56291c6c7c truffleruby-1.0.0-rc12-linux-amd64.tar.gz=872774837057489250527bf863192115 truffleruby-1.0.0-rc12-macos-amd64.tar.gz=bb4a64e6c4882fd0c5e412bf9c57720b truffleruby-1.0.0-rc13-linux-amd64.tar.gz=0f36eed2eb36846785fdd4eae24adfa0 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=1bd3087a0f2df4c006b87c9488ada6d4 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=9eddd1aa98c9649e7c01bb10bf28c471 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c93643f1d00b370411310ee7a1dd5330 truffleruby-1.0.0-rc15-linux-amd64.tar.gz=bc7339a6218ea991f2c72ce8759cb6e3 truffleruby-1.0.0-rc15-macos-amd64.tar.gz=1671d08dd2f5026d58b326fd55c9b7de truffleruby-1.0.0-rc16-linux-amd64.tar.gz=5564d17f19b8ee0edb96ab5b1bfbda98 truffleruby-1.0.0-rc16-macos-amd64.tar.gz=61583b529b6a1337398b0966db952d24 truffleruby-19.0.0-linux-amd64.tar.gz=006220c7bde7d0b5c72481133624a83f truffleruby-19.0.0-macos-amd64.tar.gz=9ef7f5a311465d35e54ac6e00ec3d169 truffleruby-19.0.2-linux-amd64.tar.gz=2f7fe574e0695fb6001f4f5282aa2f79 truffleruby-19.0.2-macos-amd64.tar.gz=aa20f76b3eac1f4976a507364201d1ad truffleruby-19.1.0-linux-amd64.tar.gz=71368f8371069017d911528f052b0a55 truffleruby-19.1.0-macos-amd64.tar.gz=7f086adbc89fdfaed35273394ac3ac66 truffleruby-19.1.1-linux-amd64.tar.gz=c1ad4d17bb40e214b124222f3a7c6db6 truffleruby-19.1.1-macos-amd64.tar.gz=f4e76b0612319b4a82480cbd1fc90210 truffleruby-19.2.0-linux-amd64.tar.gz=458ed5fec1a849ef5b00e19b0e25d5e9 truffleruby-19.2.0-macos-amd64.tar.gz=dc324575ad20e3054980835c24ea7161 truffleruby-19.2.0.1-linux-amd64.tar.gz=ad7444145550d89931199159163077c1 truffleruby-19.2.0.1-macos-amd64.tar.gz=b5bcfb0aaded1e2d1763089ab6c9a14d truffleruby-19.2.1-linux-amd64.tar.gz=fc4879d2b0cc22c152a8bf893a72c346 truffleruby-19.2.1-macos-amd64.tar.gz=71448ff3f8f1da086f222751d3f853bc truffleruby-19.3.0-linux-amd64.tar.gz=dd44ac30b5a1ef3a7d61172cda9b30b6 truffleruby-19.3.0-macos-amd64.tar.gz=41daa52f0f308abb77a2b91c1b7e0f3d truffleruby-19.3.0.2-linux-amd64.tar.gz=2db2cb5c29523c9bdb6f59dfa0bd74ce truffleruby-19.3.0.2-macos-amd64.tar.gz=edf1603643938686dce57139aadf7d3c truffleruby-19.3.1-linux-amd64.tar.gz=a14c028351f7a3965bcb56e9b22364de truffleruby-19.3.1-macos-amd64.tar.gz=a8707d0af3eda694ec07a5387d3443fb truffleruby-20.0.0-linux-amd64.tar.gz=b30110ecbc50c4fce402fdf44c45dad5 truffleruby-20.0.0-macos-amd64.tar.gz=0671e5909cefb9a2c12c473fc0110821 truffleruby-20.1.0-linux-amd64.tar.gz=4592b5fc3636d82fc998ab6fe0a43584 truffleruby-20.1.0-macos-amd64.tar.gz=3c0be43db86817c7037d3ff5053d322d truffleruby-20.2.0-linux-amd64.tar.gz=e9859decb24829f9a189d88b3c2e9b79 truffleruby-20.2.0-macos-amd64.tar.gz=49e7ccf8f9e60d6c59b3b07b854466cf truffleruby-20.3.0-linux-amd64.tar.gz=93a20845f7d9d39100761424dfc0a734 truffleruby-20.3.0-macos-amd64.tar.gz=b178b7a94fac58400450417612fe3441 truffleruby-21.0.0-linux-amd64.tar.gz=c03304a505c8699e697acecf5030d95f truffleruby-21.0.0-macos-amd64.tar.gz=019796be37a58ef8e186a625f2ff5d07 truffleruby-21.1.0-linux-amd64.tar.gz=065bfcc48f6925410e0da21e16428b64 truffleruby-21.1.0-macos-amd64.tar.gz=325f6854c10d8a3a114c80da582c469f truffleruby-21.2.0-linux-amd64.tar.gz=0aec44721a040845347f18c1f72ceb75 truffleruby-21.2.0-macos-amd64.tar.gz=76d27715b20902df5779f7a0c00852b1 truffleruby-21.2.0.1-linux-amd64.tar.gz=f68e9b8a9f9cae5efc5ac45a7d9e760d truffleruby-21.2.0.1-macos-amd64.tar.gz=b021e50fc94cab590b49d27f2ea821b0 truffleruby-21.3.0-linux-amd64.tar.gz=359aca79cba4e08f9955d9c6543c2189 truffleruby-21.3.0-macos-amd64.tar.gz=d9e2e2c6fcd3ac16f0c37b0ccffb4f41 truffleruby-22.0.0.2-linux-amd64.tar.gz=324327026e9b2963a8e5fb4ee3f4e216 truffleruby-22.0.0.2-macos-amd64.tar.gz=7029d0e291d498a264d9b413729a3e17 truffleruby-22.1.0-linux-amd64.tar.gz=9329cf507ba8ac529e93156cacc1425d truffleruby-22.1.0-macos-amd64.tar.gz=353242978b46cafc34b05e2c81206096 truffleruby-22.2.0-linux-amd64.tar.gz=5d676377056ae94fe847be721c20405b truffleruby-22.2.0-linux-aarch64.tar.gz=b774f4b7d330842521f1e6e56cb41db5 truffleruby-22.2.0-macos-amd64.tar.gz=e45fdd9a05aec6220a76fb707b0a5ae8 truffleruby-22.2.0-macos-aarch64.tar.gz=ebcbfe056d90d06de4bd0a9d699bad8f truffleruby-22.3.0-linux-amd64.tar.gz=ada8bc5dc52aca8317eaeab04d91e877 truffleruby-22.3.0-linux-aarch64.tar.gz=11493301d5519aa73e8f0e140cefb581 truffleruby-22.3.0-macos-amd64.tar.gz=9e27c677637b69b0460fb0a4569a5cca truffleruby-22.3.0-macos-aarch64.tar.gz=eaa1c9020b521226f8bb48b8c7e5c596 truffleruby-22.3.1-linux-amd64.tar.gz=243d926f038fd2220c03dfbe40ef58c3 truffleruby-22.3.1-linux-aarch64.tar.gz=01487fe680863381489bf2a0a2ac162b truffleruby-22.3.1-macos-amd64.tar.gz=b3d5a777d94856e51034d81076e8ef72 truffleruby-22.3.1-macos-aarch64.tar.gz=320ce75730a5b9f16f111eb7ef5e4e09 truffleruby-23.0.0-preview1-linux-amd64.tar.gz=76c1cb23ee63ba4de93a0c23784bfca9 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=eec3fc74565f08e9468982692f7f9010 truffleruby-23.0.0-preview1-macos-amd64.tar.gz=50e38f3cd548dfe78f397f76ed577bf1 truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=b769bcf9b843d9b2980def1e2139284f truffleruby-23.0.0-linux-amd64.tar.gz=6e1a491406c5dbf42de10fcb3ed7dc1c truffleruby-23.0.0-linux-aarch64.tar.gz=5c3663f64bee707173b2684355a9a42e truffleruby-23.0.0-macos-amd64.tar.gz=515a9a8a0f39ba9399e869cd418ebff5 truffleruby-23.0.0-macos-aarch64.tar.gz=57e5fa52270e692b82c445107fe6b6a6 truffleruby-23.1.0-linux-amd64.tar.gz=f7511c19045e57e72f9b5415bc17c8e8 truffleruby-23.1.0-linux-aarch64.tar.gz=e8a20dd919a2ff77b7cc5457e853d15d truffleruby-23.1.0-macos-amd64.tar.gz=d3b6a3cbc0a230ebae6f3a462a32ddd3 truffleruby-23.1.0-macos-aarch64.tar.gz=ee74fc5d192c2fb8afd0458d2d429c02 truffleruby-23.1.1-linux-amd64.tar.gz=d7e1c040da170aaa36b5f5a1d106d237 truffleruby-23.1.1-linux-aarch64.tar.gz=cf508ba3787be20c03bac690f3bdbac5 truffleruby-23.1.1-macos-amd64.tar.gz=a662a8672871524808500dddef3808c1 truffleruby-23.1.1-macos-aarch64.tar.gz=de543312024993a533e3caa63b396127 truffleruby-23.1.2-linux-amd64.tar.gz=e3e5b01b291d7fea61be2be842c7e8dc truffleruby-23.1.2-linux-aarch64.tar.gz=8fe26f643fa81eec6de3bde7024c858a truffleruby-23.1.2-macos-amd64.tar.gz=83bc41bf699fa847df7e60412bee2823 truffleruby-23.1.2-macos-aarch64.tar.gz=7dbd2e182cfec0cf2d2e37784721903f truffleruby-24.0.0-linux-amd64.tar.gz=202f05706d28faca75d5e3cd0f9bef78 truffleruby-24.0.0-linux-aarch64.tar.gz=4faaf4edde4f6a516246b7c2f4ee80b3 truffleruby-24.0.0-macos-amd64.tar.gz=d07f27e0e29398c6de836b0049105c12 truffleruby-24.0.0-macos-aarch64.tar.gz=10cf176718968893468caba617c02141 truffleruby-24.0.1-linux-amd64.tar.gz=2914bfb81b136cd1fb5736c0a40068e3 truffleruby-24.0.1-linux-aarch64.tar.gz=429e6ada9a95ea23ebb95d01f90eb0f4 truffleruby-24.0.1-macos-amd64.tar.gz=e3aa5ab128f5d169d93f2d6df98c4e77 truffleruby-24.0.1-macos-aarch64.tar.gz=6f81a1afe1b89a40f00c9bd4216ec45d truffleruby-24.0.2-linux-amd64.tar.gz=1a826ea6323a25becce5940d8e6c4642 truffleruby-24.0.2-linux-aarch64.tar.gz=45429f35653bd8cbc328eafe81d15e8a truffleruby-24.0.2-macos-amd64.tar.gz=f68aeb26783d048ae5f78e1c13739747 truffleruby-24.0.2-macos-aarch64.tar.gz=df05f94696b4f4584a259001a3d4d1d0 truffleruby-24.1.0-linux-amd64.tar.gz=14aa05250088f17491072e500c22c039 truffleruby-24.1.0-linux-aarch64.tar.gz=3e26495f8aa7b810ec5794a69e93483a truffleruby-24.1.0-macos-amd64.tar.gz=53b6251cdd359176f9e52fe05f05e949 truffleruby-24.1.0-macos-aarch64.tar.gz=28d61b8a1a307cbdf988313c8a1f77f1 truffleruby-24.1.1-linux-amd64.tar.gz=9ef530c2ac5f597100e69e4b374182c3 truffleruby-24.1.1-linux-aarch64.tar.gz=efcc6f5c51be84d2ec99e6cebccc586a truffleruby-24.1.1-macos-amd64.tar.gz=11e2f0f62c55fcc8330cd66393abb1fc truffleruby-24.1.1-macos-aarch64.tar.gz=eaba15df3e46cd3976bedaf6f086aae2 truffleruby-24.1.2-linux-amd64.tar.gz=ada406523c5cf80f7655a9314902e2b5 truffleruby-24.1.2-linux-aarch64.tar.gz=5a5dc457002a8a65b21264efd0387d5b truffleruby-24.1.2-macos-amd64.tar.gz=cb6142250e4b0b2b164ffa7ce47d5f29 truffleruby-24.1.2-macos-aarch64.tar.gz=f73e0af905cabe695b0fe6c73df699a1 truffleruby-24.2.0-linux-amd64.tar.gz=326d5bc6b5232c88e00837d30884ba52 truffleruby-24.2.0-linux-aarch64.tar.gz=391fa212eaff207df31860a291fee28e truffleruby-24.2.0-macos-amd64.tar.gz=0e21c5233ac4a20c4221900c79602496 truffleruby-24.2.0-macos-aarch64.tar.gz=9573cceaf4e1d6444cff0fda3695228a +truffleruby-24.2.1-linux-amd64.tar.gz=c476f9d53f1b5bab9748b1468aca211a +truffleruby-24.2.1-linux-aarch64.tar.gz=7965413b6261e499b13e5bb3aa26fa4f +truffleruby-24.2.1-macos-amd64.tar.gz=d02cf59ffc11bb92423ca28ceec5863c +truffleruby-24.2.1-macos-aarch64.tar.gz=b2134063922abdd3993ce4d2756c60ea yaml-0.1.4.tar.gz=36c852831d02cf90508c29852361d01b zlib-1.2.3.tar.gz=debc62758716a169df9f62e6ab2bc634 zlib-1.2.5.tar.gz=c735eab2d659a96e5a594c9e8541ad63 diff --git a/config/sha512 b/config/sha512 index 6c92360..5b5ad48 100644 --- a/config/sha512 +++ b/config/sha512 @@ -1263,512 +1263,516 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.7.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.8.tar.bz2=d693e3a800c2200c74b24c207425f41cef206a0b3f20625d18b1590e9891f409d6643ee0e7ab8fdb6e1e85de6fea52c6a307bf8f65324ee0f9ac33306ed1e876 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.9.tar.bz2=4b6cab99f6b7be7705efa5eb6f321b5eeb1d1c6e96d4113bf96b57378aaa4950b39f40ad555f630f17d216d235972f028617ea43c28b1970772ffd16be3d9a67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.10.tar.bz2=40bd90d231fcedbe34ec9963eb59645fdd1036b03056b9b8fa3b56900deb86d94e2a256f90e6aed297288d6797857a3ef9fc27bc6ed05c017b5c8e8ddc465df1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.0.tar.bz2=c1df39ae526da7ebf87510017d7694e6f78c59871baac4e9c5f2d13c22cbecc30925e2783ad93f741110b7c3802e9f25a6c3ff85160b33a4080b0f1fb02f7740 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.1.tar.bz2=930f6f7f654fa14076c84365fbc771d5b09679588c4c478d8f6944770c53fdd37213bdad159fd231efbc079b85ab7ab648b0a97fafd666c38d0e280046c6e2ef https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.2.tar.bz2=cb62ca82d57dfc0e21e532d4b523f49c559c4ed5f3d73adbd9d650bbf23c694d382f3cc25eed6a8630f23e4780db127b4b8b6ecf6fc24b0f6febc820dbc6af3e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.3.tar.bz2=708209a89a18cd99c02392307d2bc63e46bd38c72c8ab0e982b28285f8e006d4ed77e04da3900c880eff01c3350033cd00ffc3be1d3a12c4ee5b263282f0dd05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.4.tar.bz2=c94f5b3129ff41da1b07da1cf742592e9822febf6bcfd0e9eb7145c00b732fc66625056bddc72fe9b631742c70d0e731cc6a9a16a089c7b559ae963b072578eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.5.tar.bz2=b4d20f79eebc5496768fc6adb0735c6a23cffbb39ceaf9c2da42851ff7842dd2318c07877d89564176d206e22b8824d2a3c637b5ef02c5caed0b2b5276581032 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.6.tar.bz2=a09ab93c3d6936d30065236ff2abbd0295988a9359f5a76425cecab47af0ca5b6829530d1708e9ddc9e78d1fbb7c0359b9c7e90227870537d099ccc89c73844b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.7.tar.bz2=f6086c879f8737eaf6eef4461d23270e9e43811186a22f35ed69a8303eb933136e7a690bce2d9e18bcff730725292075e09db0f2384d0e26018b7f2a0df70b32 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.8.tar.bz2=62c631026560ee310a849483f1b48690075477942ce86e0564e92f5ca7834553c435a35a1d6d8dd957c3a7be24c63c32104518995eb3a96e61066a04887bb0d6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.9.tar.bz2=0f10741772d2498167c1eb2aa263292f99748518a4ec03dc19440eb5befa075fa69e68b08a09af6eb2e02e462ff20ab10e4121cfeea7bdc938c04762d81fbc4a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.0.tar.bz2=908132a47bd996f8c76bed54078e71abb154294f97dcba779b4cf0d3b82e31c4635dff89e97d5f6b4f1d797d854c6d020afdf9dc77b10c0e522755fa194a17c3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.1.tar.bz2=39c867ac0af48410c0bc6b01f1ecac00616a59cc07f3f5a3e7cfe8f786b70c7cacab65550dfee777d11b8b7a3ac173bb22c602df370eef6a04b40f8e539025ae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.2.tar.bz2=2f04566f6d778121281bc6ba23ec57ad408049e649b351585bc9a3184848c71873910e159f7fd3909c7372378152f5ed264070aefd45933b97980e80f6df4deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.3.tar.bz2=940375b11c525e3f0bf00e19013eeb886bf85b8d8b66d86d53740170b0ae16b14faa491dbcbec29238f875f84204cb0d52ade17c180d71e129cef5254f338f0c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.4.tar.bz2=1c9d41d7ab7bd69d7e3baa3c4149b1938cc147beb2a63923dadf2fd959732c8cc824e2add0946bcd62f44b0e1d509b80b4796a5929841cda8d28f3a8207b17df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar.bz2=f47443a53e3008cb7b7b7afcbbf1adf44887769e42b3defafceacc1e50e349c9000b98010f853c6b7cafdb54b85b640732a56a8e11ad8e58fedb5fa4724f68d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=fc1c9a08c48ad91edb4afcac5244f386d63940fa906dadaabe02a1eb025375443c8174a6ad1acd50f4583d6c57a88feae86e697ec15c8a25bb49f280b1357783 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=aa611f7c350374d2c5c8652a694022e038cb5a65fde795c43e927067f155d0ccb368b281b1575e679b84cd7ba6042216dc28149e138256faf62dd3060ec0a6a7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=ab04071b90ddb81b68f064fbc9f2bf726729220e4359113556d9b71f3549483f122b796b3b1e4dc8404e6f44a4bdd02e9db2c8066974acf190448c4d5a97dc6b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c769fd3814bf31728b83f2bcdaf0928e6423150609f3db903631f9db68ce0a0f9c87bfce5f93983cd962662148a66cc55f5f42bffc1a1b5a237e6938726629ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=c231f8ecd46760db49796519645bcb5cc9fa1c0582abbc419a2ca81805c81fe8912dc32dcc2c5192ca9ef0d502da8f61ce1ce7ecc87b29edad3a144a8a0c200e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=b41557c83084c8e5bb263aa944499932ce7d84457e4e307f1cffecf62aa44f8543a06299e38fee17ba64f8952048612f9289e24c35acfe2ba02b913c15dc1405 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=001d10af5833a03b42d9a254bde844731d3a796d98ce2efea90fc68e4638c7cc3be31a34fa163d4c5ac18c60e685e5cf2ccf88fac46ae6bc587a48ea35cfb09b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=0a8681afc19372ccd9409bb017967f86c2e6642e083ca47ec904cccc34242040f710392d916a69a327ae6a0bb287d97bc05bbe116a1d93478ae282b32e5fcfab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=e505ff2f00334870d07f4ec9348648b7f3b91dbbad1fddb2f60f7a38572a66a7bf081fc7b386f800d86113aac1ce3cb739c86cf0d6da2bab916a4432ad557c54 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=aee6000ac886cdd4e4044a7b43ab20d54d1e99f6b893af69d0d7e7a202f4ae861f939898580c60996b0bb7c6481eecad69a20acc83c75cc594dfbfde3a22c476 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=86f4e6948eaf2586e018570f09232b94f907766590eb75f00992531ef74676070ac5a2308e121ecc1c23388ece4dbe1ee8a4b2a7ab99ca00a28d6583d6df3d0a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=1bf867b0af84eae4e7996047727fbc7ef459afd3b2ca5885f658a74d62910d00eecddbf0c11b23265c625c26b420421ca5add40079438edca8eacd8b5c0149a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=92a3b217079f9d960cc4fbb5908f7fc7ef71cc3ec8e5e404341e2b8875534c0542167d03b61577776e0b0f049f9ba2e3235842be381b4d484845768adaa6e3f7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=608f0f9eafd72226fd1b39f6c92d0f1c6d3aa7ede096cc390fc4f8bee4326b0937767bc6de84fff536dea48cbf9bdb8ef5598670235e013ccd630b06c5b8fb05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=40cccacc66cc4b7891b01c35375ca913efe008157ae540308b649e14f5753f34f1827861c6e16b500c49ac95e1aa22e1c01444faca5dce71f981452a9e0f1b67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=5a33d600e55f7b8755725d7e2f2102cd76720d524d7b378d85fc21ea8d853166dd97e2e615ab18f9e44122e3404b439dd123f8e23d6ade5328982fe72db2af0b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=37e3a4011b3603807c6e0fd48818b256caf272b3720ee654f38c0ae202cffa21600f9cc751b5335b57905ce67db185b37f548ac9c84d6acfc567f0ef4866635f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=6648c1b6bd962e30e89eacdb6130b1788ccdf6ed05ea13eac32eefc222438a298de8121937262851cf5c4cdcc1a804d5d8bf19667819db6599bfcf79e57b0e17 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=ac690170a6801fd741efb88e67961c0c3d717029b3bd9c6e243074799641c940416fc9cde7b4ba2c56e79551d6cb7fe5f7977649404da0d20d1819d7d3ce0bd3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=e6edfed2dd9d6649c47b1dc1b102f933f76a148e6dd8441add2316073dd255cac851e972366e4821fcd665e55b375fac757d189b7552baaa0b49e82349c71b77 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=69c4895076690037199f2a9b98e622f6b5e3c23ea02de79bcade6193da2b1b88ed0c28006059f4ecc502298442275e7e7324232de04a2f0ce430665057410a05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=175777563303c6d6a04393938ffa7e36e0bc6db33f7d2cf1d42ec852b41ea26dd7d50569eee4cb00497e6bceae95592365ea6718a35451e5c929d8a085aa9649 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=b668f0cd853615fec38253b264115ef0fedd21a7879a663ba844f4c3fa8b87e5ccd8adffbaa12ffa3aa16b108a2a439cecf827e7d8e19ec8041d46e758abc391 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=2039b1fcf55cca35ed3c8446eea45819368016ec1a05a5fd4c6a761b54f5cd56cb3301d5d2674af1ff75bda41eba41b7156e71ac48b88ca7a6474f0e944efd89 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=b4bb324a53c316da488c5f60803933eade9ad5c59a6d58e76787d2dd89dc2d2f18016d2ac4ab0853a40976b4beab70864a9c2d23de194bcd63ad089b2159fa7a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=3a9b5868d707d6a4580a44ab7504cb46a2713f78918142b185f0d62c5b7e0dfebc1ff551b2a52e9726befb70abbde867d2802345a01fd3e4568b9f58ac83c168 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=39007e736b28ca599ea244bf4e54b52e86597c950c0ebd8f1696a02c8eef575a734d089b52c7013d00c02aeb261dd7e2facb45f24b34c75c4bbf14cb8bdc3ae2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=0fc4e39f7382c29fa2119119a78040c611fc8298bd4765025599d3018775cb2bb28f51d38efd4306e9f04eeea20e7c2365f2fbba1233e0494a8258c3c184278a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=5dfbcefa70f5b81887d34e776713bb9c6f7bcecbda8f1c9561daa3e235c725417ab0a930f594303723f226d36306e6a73f228abfa3533280659ab387708182da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=00936db899bca33dfa8d0e6ffd4bd6b0453ad5823a450e50e3a055ea696dcf94b317357732e26208a6f34224c33a8b4a6130e5613262d62381179a52cc8f3a1d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=15b816d190fd58382a2f6f6e087f358b54003f186462abf59dbef545af9044a2b9c65576119185adc6bfd9ebcdb49f03a2a268eed4fb0f0d37aa35fa18adc1fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=3a481c35668be459688a66e4e480e11b4e58c13aecc3751da9de8a3e3282bb4a152128528a804742aa0b4380eb537b666a2b29fd79be0d6968c4ff1fa428eb7b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=c604871b39f396c539c52dd4849d1d42f37530003601f60162860efc777c85e7e1a1ee88a77cfc9ca8ca20f0448a5dde4f39cbdae67470d8d2d283d6fbbf0239 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=12042b5c30179da275fcb6155142ff2787e86cf577caef44b7c4d8175ac671cd461814e9a19f4c9b1e78bbdf041fdd06bd463aa972e194caa91e80778a56bce0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=2bf1c13616b2e255b8c269bcb2f979a45009c079ffdcb10a13e238e5d13b0978e8a974bdc1e7bf8519e15264ed5f577cc8f85a5861b3ea3a4589eb78138a3f2f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=2e7876c8c8a1f4e3cd1913023c564d9e74972ce427e85765bbe9ddf237285d7b96017c1ed17868eb912509881e05aaf96e4a6b353a69989e61c733b346511715 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=06de4f6f2761bc58d94659f826c7c86be50192b7dfdb5c8b6710b384a50299ad161309e2a8c333fa5249d0e7112f74dd0c0b0faa2950a6e74bdba68833f68702 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=597374487d196abdfb389c79d7d09b81026fe3e8043f8811497646eaf47bfa432cfb96e2af9be1a35ad2d05f2f5c800afa3f9e5adb0ea2b2d31812d219232a00 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=ba56050ce3fdbb9117c6c9e767f818ce3d467030713b7693ebb039f6888bd5d7e5f7b1986ed117414037e56e550707c3625a88bfd5d00d7319d0c7ad642fc811 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=395facf2f7a15eecc94e554a60d87c269ba70c5063b24b7bc504f579c0d12a7d858eb0b98c502016ff8bf02aaf11ef765e2291b542759fc96affa186206ffe4f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=d1d527b2e95e3a16f521214c5352bcb379b946e8be1a943da872aff0ab4b8edd93a507d693abd7a8ef1cd5ea1ee6e6bf1f838683f5a447a6cb7992de61f744ad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=e47a50392c4f3ee13a565103e0c5f9474ba0a8f5ff60fc9fe7d290b7f5f9a9ddec962fcbb103a8d3b9c7765a28ba59237975f90aa3637a06a128802ede28b3da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=77fdbe62d1694732a7307c29b4f45d0dcab7e8a729f04f45b216345336c5820715bf3f8f7cab52175c4ca1a431d867c7feef7d802dec61c2cffa4abfa8746e90 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=24da0cfc93ac536c505dfaf2dbddc7b312a3cc5c72a9f47e28b3bba760a53b584422b73da8546ca01cc44d3906a31eed7f27a3dfc0bb574f01f9c08f7c589d20 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=aee8267c4855e95a55b7ab858ca6359d635049743b8e38d34ad1430522a0cd746cd572e77884f7e10af14a731ccd8ebb9cad6ea035b0fca4ae534913a38f43f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=ba3e66bd3dde28e7193b90c44194cf7732d294e592321c482deb3b31ddd9655630f5b04aa89a43eb9d1bc222da10884e9da332bc9da78e9e1b655300db52a444 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1df8a2ad9256985b4ffb3da5b545af4160ccebdd8265711d1b642cd2285a004a42cc2ea51ce3ee78854e599f5196c66448b8e0b043846ef6e6bf992828aefb6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=cc460b3d17d460abec27d77f734e1c1e7a649769c3374f02d32a4ad00f989ff3150dab926a203b209c92475100667dd524774fc37633d71f98737ea2d8868968 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.2.6.tar.bz2=335cddbfcf26c82cf9bf9c7ec6637c1c3e30e1b10d00553f5dcc60822d40b560e412d404fa65faefbd1c9022a2d7f0e4d93c25d054681d109c7cdb5968989005 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.3.6.tar.bz2=5531048adec175ad23e3bb050ba6295352cfe17ce27203c356145008434107831186a09c00ff158f4ce9109776f381661f3047e828a177906a52143096249dbc jruby-bin-1.7.0.tar.gz=1e466a3f8d52b553c9def09827fda4b8433576b0262c40ee505602754521a00defd821d5ead5052be52baf281c6cb080fd03a8b15c628a0ee67b4e417633e5e2 jruby-bin-1.7.1.tar.gz=ef28381ca30664cf450f9d3df9927530db771d30e86ebcf535af38e1a7e26724ae2bcfe8487cd2eb349bf609a733a25528aae14beab4d13d298b5604ac7353cc jruby-bin-1.7.2.tar.gz=8155c81eea6743951db7383bd9f6b1750614927c9c0b25a6574f6d64898bb3ada2f626c6e0df6c5486561a03cc7d472fc12fe804ce66a3972d2fe02e3f407100 jruby-bin-1.7.3.tar.gz=1d19be25bf4a7dbb0edad71008704377893d3967aa4204a0d59d6883aa04462ef6798c64d0c0fdd3f5129c16ccb42e8507f3fef38ed56054bf6e689de745935a jruby-bin-1.7.4.tar.gz=d7c0ee0316c50ae5413757e956c18ca68e9d99a25cf85be978da0787c13b8978d4ff2712a3effa564cfdf07144be4a56a0cb8acc794a01f43264fe8baeb125e5 jruby-bin-1.7.5.tar.gz=a4984591a3809330b93f4ce79fd1b9c24360f89d88a03bbc76351be623893c4bfc6441375bbea452ba4f24ca8b9357e03ac938fd6c065b3e2348c0f896b22a1b jruby-bin-1.7.6.tar.gz=98600a2d46bfce14111c7eebc62716352a4b685043afdd696b8fe51c6b205eb9569fc2860423a653b842b173198c76c59767156aa48e0d23482dff3358d884f3 jruby-bin-1.7.7.tar.gz=71da2e72c65899216fa15ec568b51aa7004e2ed7dff99ca376b332d3692c83a674c688dc21ee04d177a3961a2bb3973714509d88cc14d0ba9f79c864c6258a06 jruby-bin-1.7.8.tar.gz=42d54243653ec260abdafecce1143161be63fcc38a80f71ab70fcece4bf91545a2b12ed2319f9fd6f6b41916c398a9a8e89e7f0389f59da56f2739665e74522d jruby-bin-1.7.9.tar.gz=f519f53b1d9f57cfe28982ad70b892dc6fc20fe6601d98d65a1dca9f617a0eb8fff74d0fd82ddb858fe105d05ca7c7bbf3a987677ae0363caa2981bea358c096 jruby-bin-1.7.10.tar.gz=160b701f2f500dfab64beb635e5c4dc57760dd422d0fffe8d3cf8d84ee6ea17a877ef77a0087b4888ea9db64ce7750de01a73a51530aa6666a2efdcdccdb89e0 jruby-bin-1.7.11.tar.gz=a53b0fa327b98344cb4a8aad1ba537ddacb709a0e173b1e32656de8a610cb9896e9a4554d54d0d01d2361f8ff1539a0e2ee01308f670df2004225231b704065c jruby-bin-1.7.12.tar.gz=bf2be8a37b53d38c75712a6331f96b999fa6b0e87f453fac7b9d11eeb1b66098ea0778172f1a6a84345e1881f05d63012e28d4068a0bd31122bf2473bbdae5bf jruby-bin-1.7.14.tar.gz=f14e658da7f2abd469edcfd657dbc2505d6a2c04ba1e5f65f2164256f54625da154b338bd3d286ea6a18da61d04d90a61ad6b012bd9461182753483efcd0f603 jruby-bin-1.7.16.tar.gz=47ca714c3211c95c84e9c80ae4fbc894bfd7ee03e1bcc494cb48d839f8538db4aaca7029a4913b8d323e7227450e4e41bb943dc670f43df8a654eb127012033f jruby-bin-1.7.16.1.tar.gz=9bacdf6e212d08e46ac2c49183c8611873f6ecebfcb0e928b5110bdebfeb8751ac087cf8aba09afb9a8ccb58e59f3c3e06a241c1db445835d7a875b0c3deb4b5 jruby-bin-1.7.16.2.tar.gz=349283bb5344a62f282021ce39648a0c8d0b41ecf8f800ab5099b5ce161ff771e688f205a918324cef6ba0ded6b3694b8dd83f46f56be584202b8fee496b37e7 jruby-bin-1.7.17.tar.gz=a3b171df08e789f91c260c5a57ec842a5d62cc8d6b462b772905ec5284e394ed7b78f5b327ca1ff20f5deba8371a86cb03fade75b5f34f233df47bc3f08d469e jruby-bin-1.7.18.tar.gz=b259da2967e246a387687117eb13e8986b57de6ca8e570d6f8f8f07b8097db6e01cea8b0ec3a860b091fde14de535260dc6dbfc638f9e9b49d348f726e969642 jruby-bin-1.7.19.tar.gz=da91efcd51cfc833666f8b7cf949d3b5c41cd8da99ae1559c88a7358fb48df1245c66702c7cf23e7ca012cbefae98787c200352976d4e8aa3e9120057a89dc8c jruby-bin-1.7.20.tar.gz=77131afe46e72c406ab4250e43cd1f98e59a8351c494044ac89f97a7c9a81492f8a8194541055fcf1fc59569e99a577fd6a36a9f6a3952a99f399d4970e80e69 jruby-bin-1.7.21.tar.gz=111883df12a60d06e9924d33057ba72094fcffd44f7e3954d6c6d2190f8e6442804e739cc525a9e75159251a8dc1cc487570792b1b4f5773f4d0082f0eb360d0 jruby-bin-1.7.22.tar.gz=6ed6cbe7b81a8aee60906fdf965bc217b3db794698e2cb37559f36ac119a0cd2a1ae1a7a766535ab491d647e8b4e6b2f63e62011714b757f8691455831ef365c jruby-bin-1.7.23.tar.gz=6f4b97c4e08274f96195deb176e3126e8d047c981cb655cded9665624033fb905d60d5586704a3f91b2ca06d7e78918d9d31131c93e4c90c75a38182e309ac9c jruby-bin-1.7.25.tar.gz=a89ab8d539bff346ad56d345b6a205f74890b9aafe82a2c82e7c19cfc30b77fefde1003e8bd7ed15f141151bc0fd21946203219691383a64f2234fa586e1905b jruby-bin-1.7.26.tar.gz=feee03a50900e459d9ed7d2096056bef126c4551c02c335c4132e2307411f3fc4fd435e8fe44411184773c80f0630a7812b3d798b7e9be2818e1b5a712bc6995 jruby-bin-1.7.27.tar.gz=656f4313fbfe5db8d2d4fc2087a012c91efef848394c48aeaa0041e9a19b87ab74686702955413d2c51d6b4b11c758ba0555b30fdc42e86d66094411324139b6 jruby-bin-9.0.0.0.pre1.tar.gz=988c6a058336ab9ac8b27c7501ceccf3940837f9b9d3ed32a466b891bda1bc13f76199f5bc3baaa1240dd0dfdaee40775f721294d667f3b8b5bb9ac8206e2e83 jruby-bin-9.0.0.0.pre2.tar.gz=f207f9477a12d7ffacd92b1bb5154ba8101dda8f7b2eeadd4fa83eadec9a75727bc1831733d27fde63ba63322ec491201dd23cc6e2c2b5a4b8381a8fbe49e8f2 jruby-bin-9.0.0.0.tar.gz=33308a983533c129cffbf521bdb8c1996a10a6159a4a436248e645bda682c5a5395ac1aa767e971ae679c935f3b61573cb22d5b8c64af026752db3411a6356e1 jruby-bin-9.0.1.0.tar.gz=277dca63f3faad01c98a793f06bb4d558a970a10a66a38482e8372b25f4cf4fea85f1d5624fce7fb5b4310c42ea8aa360f24f6b9b6ef4bb0ebcb036736009ccd jruby-bin-9.0.3.0.tar.gz=d82f83e20ef17a0675843e306ec5e90993e5952cf5a53957a91e369d2c90d92306aa515b1e135c04b45844a81a0f4ae34289b966821ae5f46ea51fe012627352 jruby-bin-9.0.4.0.tar.gz=b9cd4f4a00da8152740b468914046633d5341b10aa26b0ac56835d5896531030c8afbc4c965b30c36923555ed5b145de8ada69e05ca38b01d43621914a331335 jruby-bin-9.0.5.0.tar.gz=7c61cf010fbae571cd6ba334aefcfd917f6de8224d014026297b840d0b890523e94b2fea20f154c82c25c4f9d5992b9481fb569646a7023e5ddb42db1baf5f34 jruby-bin-9.1.0.0.tar.gz=1ffdd352823436086ebfd37c03401a1f3a9cb8a8c5f75476af1f704c4764396a20f49ddb7fb7f0911e1608f7c88a332944330b8849d13e6badb170efb736dbe2 jruby-bin-9.1.1.0.tar.gz=475acda79ab8c54467ae70094aa86842959200127c1e92709f0a731014c469d3e52e4c48770b64ab1bf31e1b710ac4570b421077c85c08071c1356bee55a2900 jruby-bin-9.1.2.0.tar.gz=cc6b1e1a2907c128dd04edf9da11933a54bbed5e861ab6f0208505bca5aa2aa9d9acdd04bfde65824346fbb435584081fc8ec2e2e9a3aeea1bef8047915e0c61 jruby-bin-9.1.3.0.tar.gz=88339f4cc05f7f0ded21f100755156ade33f19873f49c0c64110916da8c0b059df541a77bb36e54fda9cebf042591450d2d6312ffaa879df926870806985e774 jruby-bin-9.1.4.0.tar.gz=ebe0e9d67cb91721d589461e93e26338e3e3a1f0f98de53f25906684140b49d989ca6d3704cd3f6cbf650f30aed9a3989f117bb4732c83ed870364ce4c31fa36 jruby-bin-9.1.5.0.tar.gz=f2a11e6fc88d37fc1b640ea8c9feda4607bea6da5e6520f61ff85e8d6a51543612ae267b45c033214f8fd0e2283153da02001cbc9fd90be4761b7544e1413b9f jruby-bin-9.1.6.0.tar.gz=ca59d199a0fe791efc57f05801ae26c6cf6402bdc0f1a795250b1a2dda39b233ed24c8cb005016e79727f4bcdceb1bad726a60c16935e76fc87e5d1a078fb5bd jruby-bin-9.1.7.0.tar.gz=f2569d4858a33280e90d984aac53662c25ef057ef9903bace6a2214aa2e6a537c9bc8fc76b08f846b3093cc4a12c70c98d725576a4ac771e640b95cfe3697c7d jruby-bin-9.1.8.0.tar.gz=dba3b41b65ff27dbaa203a5cfc78ac7cb9d952c52b452bc774f593383e4ef9389c0bc37549b798f48b63497ce7007b1ac2d2fa252d9a7c3e52146b4ae192ee49 jruby-bin-9.1.9.0.tar.gz=f8f6419be34aeb7b7577e946a62a094f5921d7319b51876c5e07322d99249b3a9f29fea4ee5c2b8184dfccbd5da8f8262fa97f5e93874887f3355dabfccfa0df jruby-bin-9.1.10.0.tar.gz=857783bb45fc5d62148bd687b43af9ce776099dfea75ec4b5d947a46ed270568bceba2a630a3277746a3a9c1fd3111caa9a4cd13493ea8824c1ee190e6d2abf1 jruby-bin-9.1.11.0.tar.gz=718ed3f5a39cd9f9b45c4e11ba44cd32e035f8d9f26fe59230dbaecb71adfb2513ee1bb86ff72e075b02f20151f3f30e53bfa30b6c4b011a93a138d4f479fbf7 jruby-bin-9.1.12.0.tar.gz=8a9f88d517d8002be570aa95aebb0063eb62a47efee191155f9fa4f045854910f78431514f857c438167ec42f4241faf74d4a8d236ae36feae58732312e4bbed jruby-bin-9.1.13.0.tar.gz=ef88f613ada2665d4f63b2e2f15594739de8ba501406e76de417821f44847b0e258524687b0ae0cf5b737520aa4dd9bb59d80a4b89a81408cda638f28bebbead jruby-bin-9.1.14.0.tar.gz=d15ae0c60421951b830524acd21a0f2a56f480e983b148a2722cd36afed8e99a41f518eb8a679bfa2cf87f08637e81c24ea88be40c0a5390e081322f1fc6f8da jruby-bin-9.1.15.0.tar.gz=74a411f42149510180706b2c70610caeea357f6fc3d2a12ff0227586862e6a9dedf09e752596d6c486af7a310a07241f311a1dfc73ead229d7225c09d4508605 jruby-bin-9.1.16.0.tar.gz=94e88dbeb2545250ba5bef50bbe0baa6f3851e9817f67f879ffaab50048bb0d41cd7a0e87ac9ef547e37c2b82cf1d7aae6b8caa43d03c6a9931b8ce0ad4b2afe jruby-bin-9.1.17.0.tar.gz=4c06b9674e20f48d3815b4084bb38e6994670eac804fbc56d717cde7abdb74d57e0ac17b7fa0b500318de405c187c3eaa01441c22621139dfdbeef62a5467a63 jruby-bin-9.2.0.0.tar.gz=79f5e8674089d2f6b260e033e3ceb4571f54cb5cedbca74ba76b52dd7cb30085a8c6c2676e9be57a8ecd9e962fbcb3682a8de38e1cdde2dc6e05bd179556edc3 jruby-bin-9.2.1.0.tar.gz=185e67da4964c9cf1d9142446efa77605e77894444bdc96bbd10fee22637f197aea9fbb0f60d3a42540e5f383d5b06fcf095d572f432544a40c2145deec81926 jruby-bin-9.2.2.0.tar.gz=85e16e38748b6ec5f237eabc8a17eb225c484c20f7ab6728f2a0f650061bc50c8a9601c04b0128e73c410ffe84dacd2b8bb37167aae5595728aa25e88c4c9b92 jruby-bin-9.2.3.0.tar.gz=97ee210157c451567946b38d33380051f82e7e8cb5f7649fffe050542ff6cd627e2c42f4c46739d1f0995c87e7338865b18844741285bf3f72364aa3c841c54c jruby-bin-9.2.4.0.tar.gz=9fe1506e862a17e261cf726e1bb70a9f612a6d7beda919a01405899660d1f4b79ee690ddf9aeed1d2b2f3cbd698be8df4f98d3815352772cc680e9646d721761 jruby-bin-9.2.4.1.tar.gz=2c41e7884cc54819da17ea9b2b773d05d3240d53a2ecb57ba430ab61308066eeb1bfbe6627e6c261f5f27ab5df7f5972656366a04a191a81b0379f620b74512d jruby-bin-9.2.5.0.tar.gz=d548eba8de420c80062021f5b6e6b203f8b7b36e3f11409919eeab87a028a18f9346f27d2cd8b1f33419adcc83fc804a36dbc3cee169ef1d93383b8f5835ba2c jruby-bin-9.2.6.0.tar.gz=20c7897da0d2b585616ea5848998fe8770517e24e16955797db2e5bff4622c348082628d304240a71a97e9551ef7aa63271cfb728eb5fb7e7d19bb48aff20d4c jruby-bin-9.2.7.0.tar.gz=8e71e27fdb149cb7470fb736e7ce858719d13ce6ff8a1e9ab1c1dc71fcc068fb601946bb28ed2feee3670b5e6ebfa8a655a6618d1badfc3763897912c41b1c82 jruby-bin-9.2.8.0.tar.gz=7f71fb5bc8c6c31b31b4c0430ae091871b21aa345777662f264c728c60212365dadb63a7a4b2fff31adbbf8a2e7cfa678d47486e28840f57b86cd45fe9354013 jruby-bin-9.2.9.0.tar.gz=7df33150858ddff586b3bd86120d4bdd80546c7f8e62245f61facbaa5527400a1aebbb33e4a1a8af52066487e3d29760eb96c7ecb9875eb9bc954ccbcb37a4d2 jruby-bin-9.2.10.0.tar.gz=f4ca024602ddab37154f5547132accb26e7c0ac2e913ebe1b5c7806727eb148249e76031ed4623ab53814beb8fb3f472e386f44d57adb5d2b3b00fb2773c8a63 jruby-bin-9.2.11.0.tar.gz=f736a9e139694c84d0a5ea42f36b972adc82c9be13e0b80bd61045c026e4fe31ccdd4be3dd3e94781c846f356e026465e41716fd2744ded2ab0ca39cd33bb46b jruby-bin-9.2.11.1.tar.gz=2f758fabf5910ea01e9c04c7600d9c666f2df3db8622f3eeb3534578075ce65013c42fe9ea6f95d4499945f795e6d566eed2b1545e149af823eb1d29167a1223 jruby-bin-9.2.12.0.tar.gz=1dbc5bb3814a6590f5e8ecf4889152684b5625fe81794a2c4064d598614a85129256002dcd239e294f209b98e3abaf9bfe70467fff48ef66b1531162dc6c3be6 jruby-bin-9.2.13.0.tar.gz=2cba016ad6a376252083122d51335610209d860c41de1902f5cd49ffc2f6b49c350b68df8fc4113c221255af4db7ec07980267b9888369811faf66db369e757c jruby-bin-9.2.14.0.tar.gz=ee3d17e875dd197f92744c7cba62320bfd3f166bbb2ca117f2910780a7c571779c0940e024351e9d4685ee9781dd207e773ace57a4a8a7011869c8b6209513c5 jruby-bin-9.2.15.0.tar.gz=678abfa7654b53b049e4103ae3647775d970c5a7192539378957c1731a3037c852e03f00a496c022c1c438d159a93be6e6f04d7563c811aeb7d261ced643d9e5 jruby-bin-9.2.16.0.tar.gz=f77e314d578a980071bddc25c65659d62e0644927ebc4e7d7d4523935b6c893e611d47ae7478a26ce7acff38b1525eac11b4a329188cdf76aeb07fab667d99d4 jruby-bin-9.2.17.0.tar.gz=e90ac1890a54a892b13adbbeab3cc5242889ff2a4b6cae535c0a3172072bda6ab01b960705ba608d6d7ebe9de5984d8384dbbb6399ab3b2e53a9e347e7849e1b jruby-bin-9.2.18.0.tar.gz=c5816ee0f7b0f559dac70ffc5277f85ae9c41ad176e43d277f820c2727387baba93998b915cadf9708fa78b5cdf3911a9c39c2ebb61a77a38dcff359f7d88a73 jruby-bin-9.2.19.0.tar.gz=3740674035e27cf7961b3570ad65536c30faab1c9a71a42a696b173379e79647411d57e0d1d06b5f9c9a970eb02a595a559191af08a083773dc4601dcfd07491 jruby-bin-9.2.20.0.tar.gz=1961f52f41e7eb9f50b0f382c8166ad988a6b3c0311c342658edb34486b073ed45c1ca5731aa319196db02cec208a4dfc86aa6b436959b80243bfa4f62629735 jruby-bin-9.2.20.1.tar.gz=598e28cbad682fbb30a9a9a9f708e6e1f4b7903300de2477e88a646c42ae594df5b768ff5379ed447f1a7168e93dbe35cc2d5db7087cb2228233a05bc4687908 jruby-bin-9.2.21.0.tar.gz=8f6cfc43ce3ebbd69781da71c5a70746ada090162bf6cb709dca41a6d968e6072ae62f657cb0bd471c648ff294044bfec3079828bdc410bd64758f76a93c3214 jruby-bin-9.3.0.0.tar.gz=06331ce32ee88aaad5e5bc0668d164ec3263f8ef3ed34bb32981b76ca33f8c817e3632550775706481094159f4feb43916ad1f9ec0f0775ad756b16cb7bd9417 jruby-bin-9.3.1.0.tar.gz=bfcbe6dc5ba736fc944af15eb387b545f6c5b987a7db88045913a02a1d30726c5d1255c4dd609aa7c2d2823ddf9d8360223b0575c93302aeef4c54eb37af9abe jruby-bin-9.3.2.0.tar.gz=b1777bfdf1964d7e527bb3dfc47b4b9e8c589cdb301c38ee8ee988bd0c392ca978ee3c1c24e4b5a65bdecff67d1bd96e2d8645e58ff7e891e3622097ea29e925 jruby-bin-9.3.3.0.tar.gz=648e70de0bda710e2dc70fd03c3dc6b798dd4c7b92584c54306c426f59ebe1168a595c4cf94328f6b44674f5507bee354efdb1cd73060b73b0171a3605051c9c jruby-bin-9.3.4.0.tar.gz=6b09decf412a76578179cefaabf01cc8740f70ab5324954e6aa43b1d8b81c37db7a99b1f94d6ced2b459f1c44c3086892b9a2c06b3ea838baf75a8fd5e0447c8 jruby-bin-9.3.6.0.tar.gz=f730522eff27462192808773cbd071cdaefae11f20bc808a8f22515a33960a730f3c87ec727ddfd9dc9b6b35acffeb50c31d75a4794a3f8daa75e1963ebd246b jruby-bin-9.3.7.0.tar.gz=265051c68d3b9dcce708b75f8267303ae84008859c88d7fe4f282395366c3f52fcf1bb161210555c0fd0a2427ff5a728ea9e337feea3d9b69559cadb2f300aed jruby-bin-9.3.8.0.tar.gz=12e795b7e1f14141bde68f52a29b0aa9f1db20515240dce83cffec351cefd25959579e01059d42dc8c8e4280493a70819d9beb1e0523e9bc10a72af16d9abd60 jruby-bin-9.3.9.0.tar.gz=f0b31d98f39a2bd4436764db0b0139433d6868bce7c30c5d6e3552616ba879c93478c499f3e4c884fd3728502916aed5c9ca1be150ae3e80ff47b36710c3f6df jruby-bin-9.3.10.0.tar.gz=aa36fd4c5de7b17f5fdcca1d1314d309e7b4470d46822c45baefbc0ad5180e5530a7054502b97b414352af485e7936659390690dc6198512ba6733d8f8d503ed jruby-bin-9.3.11.0.tar.gz=d9fd90bc64028dcc45687d2be51414b1561add20d20d1392525f4434cc684d505427f5e56827afffbbb0ce2c9cd7c1ef846b0bffa737679afb95d4c160232da5 jruby-bin-9.3.13.0.tar.gz=eb24641fb7a6b9d2039ec953388053e7333b306056f9a5bf745331b04cfc05dc4211a9b7780ce88bcee9184b8cbb219b574574d308bc2720547c116f4d4721dc jruby-bin-9.3.14.0.tar.gz=d9b02fc35133f71140cc7d891061f8190b61b3d1065f00092a2aa9a4beaf7d67297dfb0529691bd24d29607d698f39c62af9018e8307c1e6624c3104a61bb74c jruby-bin-9.3.15.0.tar.gz=e41521ebf453d6b6a9de937556fcaa972c60268285d0af4a41bfb95aad790eb47dd507e182958ca6f4889a0e03eedee0fa4bbc58e3d0407a2b6ba64a8b87a21a jruby-bin-9.4.0.0.tar.gz=fb72f8e087ea08653fa4e4225fa26694c3ff97c41f3deb8731cdb6571c6c9b21e0d8f69e2096f82ee81e2b5c283f912e2a5228c15873dbbd56de96a2ba35d59b jruby-bin-9.4.1.0.tar.gz=46003ef6192718a6372b79ebc89bee37957686224a08fe2f9a6be3c9e479784409d0269f0885c4d1f1351585c5d2cd31fd2ad45014e425bcaf2d44d66b98d299 jruby-bin-9.4.2.0.tar.gz=77e484ab73ece93e7d7283f876f0d541607c6080eee696b702b485be9794cf7e6d464f250a6d75387ee69aef3ba40ccf4f6d9fcfe324c5bc7a14376177ea2bb8 jruby-bin-9.4.3.0.tar.gz=2361f4bb2989f5951b0d3e9d49bf31e6805ce39bdc987ad3c6934daa98ab7c8e69763d40d7412ccef8adbbc198e52f4b83d00998ee12ac43fbfc6b5d88930c15 jruby-bin-9.4.4.0.tar.gz=e89dff0cc5b4a948daa95196d4bd4fee0c6901bb4aa023ae35b3679d9739967c2a74e8a4388b1835465dd39f1332a1f321b450b40c54ad2b81802645b4a31ca4 jruby-bin-9.4.5.0.tar.gz=06db948e5fa6f8559abd3b6891c7b4867b9f54b7bddf0e36d6f20cc1bfb394cdba8ea920213e545c927d1cb865e083cb1089c8e925bc608e0f8784a79b5d330f jruby-bin-9.4.6.0.tar.gz=ebdc671622baf3c42a988d6ebe24af6bfefa1f717f050f602a1b35909a3220316329aad080ee2cd9cd330da9428f8d736502573efa64bd70f093ccc123ab32b0 jruby-bin-9.4.7.0.tar.gz=4fc8b12deba7b8a53a523a41a31c248895adc9bd54a62664a27107e7205369af39c0eaa508a9a70611c3bb845524d8c5f39451c09b8b9cd87059ae15139703b9 jruby-bin-9.4.8.0.tar.gz=0d65fdfd63e2049ab3b8ccbcb4caaaab20aea5a63276aeb20ed4092191a8814f144425dd0d926aeed757ad6b4daa308a98fafe1bbd1647f3db44368066f61868 jruby-bin-9.4.9.0.tar.gz=1321e2ef5fdce909008ed764051d1bf9be0a4b8cb4a2515fa888c7c0ea48f0f4a2ab7b5c881633dba3d03449c6340255d9411a58836ed059f62d801d48565d1a jruby-bin-9.4.10.0.tar.gz=3396cdda4334552f2ca21c9123e709d72544e11b448d3091ec1a6e6f7beda2cde86ba4c15a4c0648135df34b558d254a96cb970f0a18d098126b7c5c2a2af019 jruby-bin-9.4.11.0.tar.gz=21ee47b4f6d1b6295f7f25cd74e559e6dbc8d98738d31f87c27ea657a740382e8c0e8156eafc8d270946311ebe22a7ce60d5c0499fb52cac7f9b120ed4495834 jruby-bin-9.4.12.0.tar.gz=01f74e4dad2d4357c0dd5dfa937400a3d3d3ebdc0485444359658f3e4b58c8af180ff66ce75b269afc75548cb832c4f75e891f506fb5e4004f9b12286991a8df MagLev-1.0.0.tar.gz=8da29f16e08f657b0d2f147b64f2202ac027db26f85da8dec29f926898f178ac8d11260fd6c0a539a9b9b15eb92d8c7ced86a8cab1861ae7f8a33b6fa468e5cb MagLev-1.1beta.tar.gz=7122af70530e76b9a4cee93244d6872b49616e78086bc8a5db0f32d2b846560b352c4831addbbecc72e0e3158bd52f26c2da14f5d83a515ead30efe7c538b62e MagLev-1.1beta2.tar.gz=43b4b831791074f6e8c12f6fbe6ccec2bd0446dae029d3e6717cde1e7adca8462a2d7dc49c14112cb568b5b3adc8cd051767044b41d57ae51f38aca035ff8597 MagLev-1.1RC1.tar.gz=942c1cf43f1a911230aa43bbac1cea2e2e61b5e19af755e29a6a71139d66d304efcc519072dcc3487a2da7462847530564aff4a2159d675e3270cc938a297dd9 MagLev-1.2Alpha.tar.gz=2672e3e5425df2d2ecc49f85df5845fdb083f74a7b242cac75e33d0c1837079ced8ec8b273807326d08e7bf6f95cb4f1d8351f37af8bb38c4150e6292fc553dc MagLev-1.2Alpha2.tar.gz=4492ed58b6c2b852502a2195836f1db5a80f0619467e4d7b44981a993a5e9a9ea5c9fecf1198de1891583e334bbc3c3a86648ce8afea1137ae9c73a4d76b0f4a MagLev-1.2Alpha3.tar.gz=6290895b22efb986ffd7305b7d651f20a051ab6869d51310bf891fa3eed48526a8617b69f72793e8ac0b57f99bc5de75f34235ef94de967bbdcd51857efc2af6 MagLev-1.2Alpha4.tar.gz=a621e9c615ffec503910540db770754f29bab1646d8e67650d5b82413bd551adfb0bbbb8155407ccb6f80933bfe8ae1bf9b688eb0defbc88710308bde1325683 mruby-1.0.0.tar.gz=4a0f2927da3401df23d5c19ba566995f76775def3badbb14f16510a271e7b40a833fc61841f89d8adc6d57b5b12cb453708961c16a22133c092fab8ecfcd1e3c mruby-1.1.0.tar.gz=afa99a973e9c1b72a5a418d709c4aca08dc7449c427cedef5f12db4ccefb15e11a4fd1c23ceb7e31e49d4d2e602c0b1f9dcf2e0f6cf8ea3466f0b9bee23b53df mruby-1.2.0.tar.gz=bd5de32ba52b6642358752755329fa45a954082122a8983012930056c286ac328fb52fbdd11f34ff7c80af2c0e9a6348abcd5214602aca1150f2e7ae25cad1f2 mruby-1.3.0.tar.gz=13a57306706d2d60693151919ae15bb3621e6e7ed3b5e9c6d3b1c8d44e52b898c1ad394b39946d730ff82a19f5e3b7c2a374f9dcc3b6c6f990581e504f1cb9cb mruby-1.4.0.tar.gz=d2dd6e17c7f8e890ef5b6887538cccdea08a2376ba8f9a478d7d5c4377fd4c31a4af6323b1fc73952ef80e5a4778ca22eac3d724ce7d50b76770f7e614df7da0 mruby-1.4.1.tar.gz=2cbf155ba7819211b6410ea606c4d0db3adf4f47a4018ac45285ab3e32b94f280aa0af0936ead7233411957cfca62979d14bbaaf0d8f40521cba5c12272f2af4 mruby-2.0.0.tar.gz=8379f76b7a06d280e2a2552eec2975ffa3fe85b99028f6f7c009cd908f95faf3cd36a9975f502a5779559baf3c45a4297da0b6bcc038d213a0fdee851f9d01ea mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.1.0-rc.tar.gz=f310b385cbf80c6b6ab67e2a41b931411149639c0bf778799e3358d6a9a59f508f42e3faf72fef9e8ef91088d6184c445af7933a47e4e2b2fe114362d579bac0 mruby-2.1.0.tar.gz=da28b5a078e121c75edf62fc68fad6d5810212bd53a3424d4f585ffe5bbd09f652393ffea0f4b3ddd802e5fe178554dc67040c39c9d5069bdfad4ef22ead7e8d mruby-2.1.1-rc.tar.gz=97c9cc2c79a5dbf2f634ea08532f0f512f8af6ffb99ab4eefd83fc336ca9d97b943e76643971047b4508aaddb5e40176d6cc8fa39a17022455aa15d774eb5b98 mruby-2.1.1-rc2.tar.gz=13aa32a35bd5d8f02a9bfd08d17818dbae78ce46c8b0224a029f9f191cb64ac330eddf3871f4396b9221b987a91e4cd6f8933f59814ac0018155ec8454abff18 mruby-2.1.1.tar.gz=66f9b4bebb5a7b19f5cb1be2bd8b9bc65e4dbb5d4350d238ad5f947c9195fd431f2069f7334036ea63a750e9257e59ae1aef16ac99c7e1f4e17724cd1cbe2e50 rubinius-1.3.3.tar.bz2=8b91baf429dac60663d0e4da3152a60ec6e007f5d6c17ffa430876ec88eb87ade44efae90f2e32e238fd74f1b3d54e27492315f08e7bb073220b402e1e2d3163 rubinius-1.4.1.tar.bz2=928d12aa01a1d0f6c80175d67d3b1f8b9840f69f045c8148786612316421223f4cea71e3c373ee18a3f686b1457557ae547645afe758a99d21c4818dff47b9d1 rubinius-2.0.0.tar.bz2=5c81a6b8cf7b59e08c3b9353b0eb37ce985aaf391f5064df65ffb10f6d12b668287e4d4e61e2c6b560d9234c10f0b64bba74259f2c06f1dac488928544d4131d rubinius-2.1.1.tar.bz2=154cfa93ed59835814b8b974f6d738b049942fcc2b75095d21c87647d002c879fd55aa3d1ec95414b5b66eb9926c25a5c6e3e19a7c0da7dec6edbf434acb9c68 rubinius-2.2.10.tar.bz2=c2168e676059c197123916dd948b83e39bb96e99786bdcaef2e690936b761fedb13740b9f19883f991f1b475f3249ea1696213e8448c41ae15dfc14b3d4e1fda rubinius-2.3.0.tar.bz2=d0f3dd5e3b891bff2eb79b7810c6041e15fbbf0606c379f89575cefd829ac7a394b0c12ed3c5a4d452730797bc0a2c6c82646a19a078b56dcac7acad015a4559 rubinius-2.4.1.tar.bz2=7bcea320006b8cd3d122c407d89c325973a74c32456ba0b649657ac848f4682f2eb7455c13e3007709c22932bc2e1b65e2dd43fda0d3c9f993ddf8a74d1e2cb1 rubinius-2.5.0.tar.bz2=ac94d5bc11524e715fc24c1de33f4d358c2cd65e92fbb64c850dc8151d2a712d268227733c99fcffe298c3bdd6ce080c5e9553e4e8f3238868323498a9d10cae rubinius-2.5.1.tar.bz2=9315f76126d0aa754ee63b190385c24cb084f36293a99aa30fc482fd880d5393aabce361e09ff5514bc2540dfede8e179b7e9212b2dd59bd14ca2aa69d209a83 rubinius-2.5.2.tar.bz2=b48bd8d54a450441a50904b07c75c8d31b59822830a74c952720d6f8d2d86e6a27a84775e975ff2bf55bf3346f34e69d742f308933a9d8476e5e78109cb525f6 rubinius-2.5.3.tar.bz2=b923446d325dc3ce5ad28af9ee527607fae3259b85e85aeff97c1bebbb4520daf70616957b1c0ded900ed19e59025826dee66977c19cd2a2d4e9a0296811eb20 rubinius-2.5.4.tar.bz2=75b7ddbe218e4c92210dbf5a06eb8b3c3aa028d16146982a4e813e3af10a90d33f3e239f4508469c6aba17f02cb8bd10e96a204839975e06519869cacd456c92 rubinius-2.5.5.tar.bz2=a862146ddbbdcd4439eb64e78bfe6d09ae4cca540d19869618426d3f451544658713fe8eb7d46493785eb0cc721077e624293cc44d68eea3ef584967b43a18d7 rubinius-2.5.6.tar.bz2=9a0bdb5d77f80f163925ce409d00be3cee34871baae8bcfdb34c3c7545b92fd14102fecb970e42b3012588d299e504b724025f397a5a00e181ab75f1448e426a rubinius-2.5.7.tar.bz2=8048110b3ba4e5ff8c3f35282896067e1b1b46dccaf9ef4f6c9b6098782f27591ff59ccae0234fd7e881e3aaf17a0b420286b1b52ecd2cb672249655795a6982 rubinius-2.5.8.tar.bz2=23fca2f9747d2b0e544af890c3baacfb7b3a009cc59cbe653762ccdd827a6c915dcc57902d317fa1f7a81f8c12682f6c3a93195331b6de0f705b118e2e8c13f1 ruby-1.9.3-p550.tar.bz2=38767e98df25484f7292437f3cb0f798b3a43e9a7414a5401677e96ad1cc367cb3fa23ac3abe568d5bf2b2ca553713469a8770d41b79bc63daf3fa59cb4e15c6 ruby-1.9.3-p551.tar.bz2=5ea40f8c40cf116030ffdedbe436c1fdbf9a50b7bb44bc890845c9c2a885c34da711bc1a9e9694788c2f4710f7e6e0adc4410aec1ab18a25a27168f25ac3d68c ruby-2.0.0-p576.tar.bz2=e089cca4867cd9c715f4f37e40a1db9af6ba0c74b47e79568121bb980476f8877a87ccb848b973381edb4667c0c73165f5e1761f60db839e67f6326302dbd864 ruby-2.0.0-p594.tar.bz2=8301a51c73fb63a8cfeb14af47d0c18b5bc3c45e3d62fc2ed56a673a1cd6b0015c41f275e70eb14a9e40036b1530977199321e05285e107a6adf58514bef1b3d ruby-2.0.0-p598.tar.bz2=10026a04e01a8ad14ea9c99bbdf4f7d04029b73ee0c01bbf6c2eb2817332d49adacf127b646693b67b5dd7010eaf3b696b23b6335cc0f7ee5a6b56dbba0f6f82 ruby-2.0.0-p643.tar.bz2=453117152e6facdcd5bedaa9c3b1e349382bc5bc1dd3d650ec58b398cb9d2519a2822d05da10bcc5dbbb4f513fc5fef310caa3529d176fa2d453befb28e4d83a ruby-2.0.0-p645.tar.bz2=e9ca186b1cf0877cdbecd43dcab2c5161a53103e926609d5e1b769a4980eab4571bfd0951788b4fc92dfd9d10175b0f5f36ea2c7289e575a9db9b62c02f93185 ruby-2.0.0-p647.tar.bz2=3416af771ebb0b27ceacf23d309bd2a1ede832c2edf48a5ca46f0b0b84b2ab94fb6362a0c7fe4f77b21253539db8161ae26d23a78d1ba729bf03812454d93d04 ruby-2.0.0-p648.tar.bz2=609acf6d6352c9746e21cd7f0e7d29f5eb522e6fff2d5fad0431d63c568cc084ed5b7141f84cd33512d8213200d2d1a22e8d7df71469a980a3a92886133fea38 ruby-2.1.3.tar.bz2=9b48adb161e5e4550a71f61252c8edf59944affb82250babcb64240749af4b672e4a54ccd0feac5b36ea447a358b350b5080125ef2d4acf6e9e8b1ab82612f48 ruby-2.1.4.tar.bz2=68db1567751166c5e7d24b6e5015124b8a15568c50556e1f429486395352fa56c4a195a74820ab135697924149d014b445b345a1b9755678aaf824fba79c606b ruby-2.1.5.tar.bz2=d4b1e3c2b6a0dc79846cce056043c48a2a2a97599c76e9a07af21a77fd10e04c8a34f3a60b6975181bff17b2c452af874fa073ad029549f3203e59095ab70196 ruby-2.1.6.tar.bz2=75d58120b5f387bcadbf6d19e85624f78c74f81b9018baef39207214673f7ebc0700ab31145acd88b4071c896ba8e1302a29c90955bcf5f8c863634125022aa6 ruby-2.1.7.tar.bz2=f610d2dd6a93f0a5e84e04ddedf847bbcea5dd3289b3164cdf60be64f67a80dfd5f9836ea5d169970cd0ce24a7e05ea6190699706567cb0d5cf450de6a70e445 ruby-2.1.8.tar.bz2=7129c012bca7f0e7cfa51c73ba0898697f7a9f31abd5ae57d38be5b6b646fd80ab33be9b262cd3e2486c66f65aaf4ec6e881ae6e5a82ec9df62f00fa072510fc ruby-2.1.9.tar.bz2=a86422132e4c64007a84a91696f4557bdcbc8716fbfe1962f1eef3754ee7f994f4de0b5b7e7231c25057515767040d5c4af33339750b6db15744662e9bd24f38 ruby-2.1.10.tar.bz2=4b7213695416876e4de3cbce912f61ac89db052c74f0daa8424477991cfc49b07300e960177ff576b634a97ee8afef3c5aded5d5806329dbd01d0ce7b42b9b63 ruby-2.2.0-preview1.tar.bz2=2f1190f5d8cd1fa9962d1ff416dae97759d032a96801d77bc6b10136eba59dde1a554ff8c0c2d9ce0d3c1361d4dd12ad573b1266fd53b90ab238d8ce39e6b862 ruby-2.2.0-preview2.tar.bz2=c654d4c047f9463a5fb81eaea0fa5ab7bf316962bc7fb0fb356861e6336ce8ce2162c7779d8b27f72d7bc0e9604b5e5af2910abcb0b0a1f197b3138eaddfd4a5 ruby-2.2.0-rc1.tar.bz2=181201168360bee37dceeef3481a69e8a333a5d329680031fd9d371d30ac64460bbdf4db07546133024f541774e51301f1630cfd988c5e5bf2464834f3abe6bf ruby-2.2.0.tar.bz2=04edc53e8cd1732c3ca61ebeb1d6133614beb10f77f9abb80d8d36352fe8aa205112068e460bf600b2c7e81e0ddcc3b311e7e027c320366f1bd992b3e378a6ad ruby-2.2.1.tar.bz2=af6a8e75a66b953ff33ecbca5111bcf1c6560b6b48b370b700820fcbe91363146c5ac8abd670a14e693b44343ae598bab472ed2902834304c03ffcd9550886d1 ruby-2.2.2.tar.bz2=d6693251296e9c6e8452786ce6b0447c8730aff7f92d0a92733444dbf298a1e7504b7bd29bb6ee4f2155ef94ccb63148311c3ed7ac3403b60120a3ab5c70a162 ruby-2.2.3.tar.bz2=795f1b66a6d4f0baef897068899c3a1a4370ce1268618e6a7d6d4720234444259f371d1ba2e174b2f7580265e9f18eda3f295fbb087447aa6e8fb7a0f07526ce ruby-2.2.4.tar.bz2=d27ca2f19c214ce87f906b57edd41f2f8af35b2871c191470facded9cfda15ba46e5c3bc7d5540225a38da6bd65050fcc8aaa4ffbadbb6bf7dc891c1821da0df ruby-2.2.5.tar.bz2=d3224814361c297bc36646c2e40f63c461ccf5a77fea5a3acdcb2c7ad1705bb229ac6abbd7ad1ae61cbe0fefd7a008c6102568d11366ad3107179302cd3e734e ruby-2.2.6.tar.bz2=7a93f72d236521ac28c8a0bc0c73cf805797a8813d22e02f42c5fc05dd39f6e422817272e0db6a24c245f6f97ad4b2b412a9a47ac50156ab186df596918a5f34 ruby-2.2.7.tar.bz2=83756cd1c91516962b83961e0de59d858618f7ed3e9795f930aab4f199d47a95ed8f867d8aa9b51d508be26d9babf2140117c88241168bac41e6ef702cfadf20 ruby-2.2.8.tar.bz2=aa1c65f76a51a57d9059a38a13a823112b53850a9e7d6f72c3f3e38d381412014521049f7065c1b00877501b3b554235135d0f308045c2a9da133c766f5b9e46 ruby-2.2.9.tar.bz2=2a8c8770fda20a22b79c9115b6f468f8e7ea1092c84a5089af7a3122163e5ad298b493e6637e4d93ba02d899d8a619c94064dda8ac98cf3b93f64f45d5401085 ruby-2.2.10.tar.bz2=f8ec96c2a5f4ecf22052ee0b1029989ded52d7bf5d41be24fef67e732e76f72119302240bca08f0547510a9cd29e941a32e263cad9c8a2bf80023d6bc97b2373 ruby-2.3.0-preview1.tar.bz2=ae6d46c87f59e1fd3703b76dfc45bfcf208625f95ab9f4559f0b9f7050e8681f1a6e419f5fa06b704c83e56879c3a9ff1337dba443bcfca76fadb49c97d97a93 ruby-2.3.0-preview2.tar.bz2=e397f321d4338edba8d005d871408775f03d975da90c8abcfdb457a1bc7e6c87efe58c53b2c3bc122e9f58f619767b271bcc8d5d9663ed4b4288c60556e8d288 ruby-2.3.0.tar.bz2=77b707359e754c3616699d21697752741497c719dc3d6fdfb55ed639e76d52560d293ae54cbe5c63be78dc73fbe60f1b8615d704d017bdfe1994aa9747d26a6c ruby-2.3.1.tar.bz2=a8659b96a3a481a3dbdbb6997eb18ff1f8cd926a9707a90d071e937315c21d372c89252f0d44732ae5007d2678fda8c8fbceafa4e4b4ff500d236fb796284d8d ruby-2.3.2.tar.bz2=78699bae5b0a2382a58f9d51f7d891341f00ad3a90d9ca06b68b1b245cf5acebc3a82133e39bf6a412ac999a5c0f778a0dab177c2569ffbee085ffff6f6ec38e ruby-2.3.3.tar.bz2=88f7782effd35bfe0b4c33140b5eb147d09b63fbb35b9c42d2200c010f387e2b70984ead1eca86569e8ec31f08b35289d440c0ca76b662dadb760f848e863d91 ruby-2.3.4.tar.bz2=ad1f16142615498232d0de85149585be1d2c5de2bc40ec160d272a09e098ef6f317d8b25026001735261fd1c5bc0d1f8513a8474e89f0d86eed5b2fe7338d64e ruby-2.3.5.tar.bz2=3ecc7c0ac10672166e1a58cfcd5ae45dfc637c22cec549a30975575cbe59ec39945d806e47661f45071962ef9404566007a982aedccb7d4241b4459cb88507df ruby-2.3.6.tar.bz2=bc3c7a115745a38e44bd91eb5637b1e412011c471d9749db7960185ef75737b944dd0e524f22432809649952ca7d93f46d458990e9cd2b0db5ca8abf4bc8ea99 ruby-2.3.7.tar.bz2=e72754f7703f0706c4b0bccd053035536053451fe069a55427984cc0bc5692b86bd51c243c5f62f78527c66b08300d2e4aa19b73e6ded13d6020aa2450e66a7d rubu-2.3.8.tar.bz2=6d79e0d25757fd37188a8db3e630a52539bce7927fcb779a2ce9a97b9e5f330753035c16843552f1a1fb6c9a1e5c0f916b3cc8b5c0bfe81e20f35f8442e40ae8 ruby-2.4.0-preview1.tar.bz2=c9873e8686eb54dbde61d6e23cd5197beebccd6cb31fd12c82763ebe1fde17095d7514d9d93c2c82b238032c98691df5479dc2d666a8a590e0fc54450ec29cb5 ruby-2.4.0-preview2.tar.bz2=0c9a59a2f57a99c4ee8539a30f41da1de7547566203f89d856e1be9dbb44365754e6c470145dc9336eb324e0feb2f53d9fef18a1564968ac21f9ee528905949f ruby-2.4.0-preview3.tar.bz2=6602c65a7b1e3bc680acc48217108f4335e84fdd74a9cf06f2e2f9ad00a2fccacf9fa035a912bc9d5cc3f0c7a5e21475971dfac37b0364311ef3645f25c7ddf9 ruby-2.4.0-rc1.tar.bz2=b43902ac7794487197df55a45256819d2e7540b77f1ed4eb68def3e0473ee98860a400862075bafadbde74f242e1dfe36a18cd6fe05ac42aae1ea6dddc9978ce ruby-2.4.0.tar.bz2=bef7bb53f63fb74073d071cc125fb67b273ed0779ef43c2d2969089b9ca21fff1bd012281c5b748f7a3c24dd26e71730d7248c05a01cb23ab2089eb4d02115fe ruby-2.4.1.tar.bz2=1c80d4c30ecb51758a193b26b76802a06d214de7f15570f1e85b5fae4cec81bda7237f086b81f6f2b5767f2e93d347ad1fa3f49d7b5c2e084d5f57c419503f74 ruby-2.4.2.tar.bz2=1a5302d2558089a6b91b815fff9b75a29e690f10861de5fdd48211f3f45025a70dad7495f216e6af9c62d72e69ed316f1a52fada704bdc7e6d8c094d141ea77c ruby-2.4.3.tar.bz2=fb4339e30c04d03b1422b6c32ede45902e072cd26325b36f3fc05c341d42eea6431d88718242dcc9ce24d9cad26f3d26772f2e806bd7d93f40be50268c318409 ruby-2.4.4.tar.bz2=ae632852a5f413561d8134e9ef3bb82adb37317696dd293ef92cb76709ecd45718f14116ecce35b12f1c2dd53ccae8dabc7a924a270072b697512d11f4922347 ruby-2.4.5.tar.bz2=7034fcaeaee41f14bc0ecce0d3d93bd1abe95310e1a0b95fac66eaba867adfb2bf7ba4d0d70d67a15ce8df16052dee405c38cdb18987602e64a2f701d37d3df0 ruby-2.4.6.tar.bz2=292802984e5cff6d526d817bde08216fe801d255c4cede0646e450f22d4a3a81ae612ec5d193dcc2a888e3e98b2531af845b6b863a2952bcf3fb863f95368bcf ruby-2.4.7.tar.bz2=2665bca5f55d4b37f100eec0e2e632d41158139b85fcb8d5806c6dc1699e64194f17b9fe757b5afd6aa2c6e7ccabba8710a9aa8182a2d697add11f2b76cf6958 ruby-2.4.8.tar.bz2=2d7e0f5ad766e2a12a1b53ff838e6bfe86244ffb7202196769c25e9df6f71f3ccdd8605e7ef35c53e54310bc82caf6b368ad5111dd0a3ad70a3aae1a7be93f08 ruby-2.4.9.tar.bz2=d485444dcd025a261a16bd740dae63c0aa23e4138a095584e7a83aec47af34415c7d9cbc1313e92da2ec416b11bfddf20bb1a7b60c80f12906d11ef27409b3e8 ruby-2.4.10.tar.bz2=4d730d2d7cb96b002167ee358258f2620862a5a6d8627cfa5b49bd43c6e59c50c0f437b959d4689b231d57706ec7d5910d9b144f4ca1c1ed56bc879ed92e8a59 ruby-2.5.0-preview1.tar.bz2=2d39ef64aaf7a52014905f4ad59b53e83b71433e50a9227f9f50cbb7a2c9a5db9cd69fa7dbe01234819f7edd2216b3d915f21676f07d12bb5f0f3276358bce7f ruby-2.5.0-rc1.tar.bz2=bf0eb114097f9e505ff846f25e7556a2fb393573b4e8b773f94cf5b47998e221f3962a291db15a3cdbdf4ced5a523812937f80d95f4ee3f7b13c4e37f178d7a7 ruby-2.5.0.tar.bz2=8f6fdf6708e7470f55bc009db2567cd8d4e633ad0678d83a015441ecf5b5d88bd7da8fb8533a42157ff83b74d00b6dc617d39bbb17fc2c6c12287a1d8eaa0f2c ruby-2.5.1.tar.bz2=82e799ecf7257a9f5fe8691c50a478b0f91bd4bdca50341c839634b0da5cd76c5556965cb9437264b66438434c94210c949fe9dab88cbc5b3b7fa34b5382659b ruby-2.5.2.tar.bz2=9f9388a162a3ae9c14ec8999fa3b12ff5397de14f55996cc8761d21c757113db37ace4d326b9606de7ad3a5875aa94fec900dd9b81b2fb0dff558c39422f4aa1 ruby-2.5.3.tar.bz2=6fe89fe9d406bb454457442f908774577369ab2501da4fd15725ccbab77675b88faad739a6c8ad1c7b6690b439a27de5e08035b7546406cdeca65c7b295e2c77 ruby-2.5.4.tar.bz2=3c4f54f38ee50914a44d07e4fd299e53dddd045f2d38da2140586b8a9c45d1172fec2ad5b0411c228a9b31f5e161214820903a65b98caf3b0dfeeaabf2cab6ad ruby-2.5.5.tar.bz2=1b56aa79569b818446440b9f2d13122bf7c2976ab9b2865f5fb62d247d7768dd4ac5b5e463709ffec0f757bff7088afd293c2a8c5349c3780763b6444bb354a8 ruby-2.5.6.tar.bz2=e4511d42d19a7bb39ea79f66bb4eca54b63c2a9d27addc035d6d670c1e59ee48a0c6e9c6bc7d082d1f1114b0668831dce3b7422034517f3c4a06ced0e47a7914 ruby-2.5.7.tar.bz2=7d6a7d41b4f3789f46be5f996099f3eb8321aa4778b2a8ff44142654e769ba4ba2df127dd0f267547e4c8cd6ff46364f18e79838df54fcd7e3fb714294ee0099 ruby-2.5.8.tar.bz2=037a5a0510d50b4da85f081d934b07bd6e1c9b5a1ab9b069b3d6eb131ee811351cf02b61988dda7d7aa248aec91612a58d00929d342f0b19ddd7302712caec58 ruby-2.5.9.tar.bz2=12f58e14cfa6337065b0e82941e39b167813920eb54cbdb4ac4a680dd0cb75d2684d341059e7b4d0da1292bfc4e53041443bd14891a66f50991858b440a835c8 ruby-2.6.0-preview1.tar.bz2=d9cb270529a97670d54f43a0236fab072714e715c39277dab70b7a1843ec818e6700e47e1384c7256f9e0ae41ab2c0b768a0de38a5ecf4f4fff5da6ef5ad4944 ruby-2.6.0-preview2.tar.bz2=3872227e9b1c97c206d19bf1e6ce15a38ee15a26c431b4436605dea67affcf16372358984df76b35e7abaa902c15c16f533ac7af47e3031dea9451bbe459b693 ruby-2.6.0-preview3.tar.bz2=d1693625723796e8902f3e4c4fae444f2912af9173489f7cf18c99db2a217afc971b082fce7089e39f8edd54d762d2b4e72843c8306ed29b05ccb15ac03dbb5b ruby-2.6.0-rc1.tar.bz2=cbd6281b2aab6fbce3f699c1ab57e5423304dca7a547a0b3cd4e8e980326dc7b85b2ca2bfaf3f3a648d40f4222fdf1740d81d422790ee7ae1ba1ed33eb11e3e8 ruby-2.6.0-rc2.tar.bz2=9bfbe83fd3699b71bae2350801d8c967eb128e79b62a9d36fc0f011b83c53cab28a280939f4cc9f0a28f9bf02dce8eea30866ca4d06480dc44289400abf580ba ruby-2.6.0.tar.bz2=ca3daf9acf11d3db2900af21b66231bd1f025427a9d2212b35f6137ca03f77f57171ddfdb99022c8c8bcd730ff92a7a4af54e8a2a770a67d8e16c5807aa391f1 ruby-2.6.1.tar.bz2=fc41429491935b89532733b95476ab9f8a4efc310aad8f4c2bd3b68fba08fd7b6e9ac84c6c88ca892022d1ba76435295f3299ea466f9b5453c07d41cb539af59 ruby-2.6.2.tar.bz2=cad678d2ced4085e99009e4fef83c067dd0e6ead27a8695bc212c0e5112a7fa09ceb27f82638faf91932ef8bdd090f844e0a878ffdf6845a891da4b858588aa0 ruby-2.6.3.tar.bz2=c63c3f527bef88922345f4abb4b9ad467117b63f2132e41722ea6b4234cec3446626c3338e673065a06d2894feee92472807c284cbe613a442c8fda234ea7f88 ruby-2.6.4.tar.bz2=a9fa2f51fb5f86cd8dcaa0925fe6f13d4f19f110b5d4c5fd251f199d16aaf920db39ad3bb50460eb94ab8d471ab2ac8bb54daea4a3bb080eaf45250aac3437fe ruby-2.6.5.tar.bz2=28e0b04ac8ca85203eb8939137b5e5de4850c933faf7f62fc69648fe1886faaabf6cdf48382f9d9585c1720876d10b41dafd33efaeb23341c309917fbd8a6e21 ruby-2.6.6.tar.bz2=001851cf55c4529287ca7cc132afc8c7af4293cdef71feb1922da4901ece255ec453d7697b102a9a90aef2a048fe3d09017ea9378ab4a4df998c21ec3890cdbb ruby-2.6.7.tar.bz2=311ec56d23d0de7a163f66c1ef4e5369b822f8409f8e1f3a25785c803f01c68dd13aa8ddcfb3a0fe6a97bf321950f8d6cd75b2babcb04158e791601914666f7a ruby-2.6.8.tar.bz2=51806d48187dfcce269ff904943dd008df800216ad4797f95481bdeecc2fbac40016bc02eabfff32414839ebb2087511d25eebfd6acead1a1d3813be6c10edf7 ruby-2.6.9.tar.bz2=ff067ebc059094c0a9a0debf54a37aad2c85f7ed47be59299041c9c03a7701529f5063ff32a1b8c56d48ee8585015acba63602ed0176b2797d263d43d67aa241 ruby-2.6.10.tar.bz2=275a0f329641e6c3d3d3c33ffabf585195187eb3baa4fb1dfd35999fa0a80bd5925943fa2711827ac00dffb6c9a1deeadabaf2e9ee401d56926fc167db5ae4a4 ruby-2.7.0-preview1.tar.bz2=a36b241fc1eccba121bb7c2cc5675b11609e0153e25a3a8961b67270c05414b1aa669ce5d4a5ebe4c6b2328ea2b8f8635fbba046b70de103320b3fdcb3d51248 ruby-2.7.0-preview2.tar.bz2=7066ececebbbba4b2933ba1a4f70cdef373169910802259a3e52b4fc144ba298f3cffda4be5fe8a7be8ef769ed43076fa046a9ac2c13bb733475b9852112c6f0 ruby-2.7.0-preview3.tar.bz2=5d8e99e3fd984c7d05c0bc483e1504e81ccdb920cbb2d78cad3c314e197b30316b692fd0199f836acac41246e3a713cb81dc6dd64c27cba56f807df4c193db1a ruby-2.7.0-rc1.tar.bz2=b5f96227775f8bdf19f944a555d0a83d7e84b37bd31fe4b8ac008a3272b1a28a4d94abbb1b5570ee32ec0690ba9d476b837a020a5194bee14bebf6f0e768bc79 ruby-2.7.0-rc2.tar.bz2=9010f72bb3f33b6cd3f515531e6e05198f295bb2a8a788e3a46cdfd776a9f6176b6ba8612f07f0236a11359302d2b77fdecca1dc6be33581edbb028069397a0a ruby-2.7.0.tar.bz2=8b8dd0ceba65bdde53b7c59e6a84bc6bf634c676bfeb2ff0b3604c362c663b465397f31ff6c936441b3daabb78fb7a619be5569480c95f113dd0453488761ce7 ruby-2.7.1.tar.bz2=4af568f5210379239531dbc54d35739f6ff7ab1d7ffcafc54fed2afeb2b30450d2df386504edf96a494465b3f5fd90cb030974668aa7a1fde5a6b042ea9ca858 ruby-2.7.2.tar.bz2=f07592cce4de3532c0fa1c84d53a134527d28ba95e310cd3487ac321c49ee680faeace285de544ee6db432a90aa7538a1d49ff10c72b235968ca362ef9be621d ruby-2.7.3.tar.bz2=e9236138be3e61380140f2e0d42f8fb82ad8f5219d454de2f6c2ec546bb208acc8b0f2020f23e6446660d2b3b9ae873cdd8298471f166a5f1efba8e80b05e746 ruby-2.7.4.tar.bz2=f144c32c9cb0006dfcfa7d297f83f88b881f68c94f0130346c74dfd8758583a68d22accfd0fc9f31db304ab5ff0bc135bfb2868145c0dec1ee6cec5ac6c3725d ruby-2.7.5.tar.bz2=0aa2ac44bc22859a39c43d08b7c7f457df05c2dc36b2574fd70ca399143ef1000dc5e496212db9eb055bc4258523d47d26db3c57a1a5a5d63cf1b3de9f81645a ruby-2.7.6.tar.bz2=4f7f3624afc43da25ebf0f01d5a2f92f72f94bab7423587cfd3920e089b479bf559b159adf2891b996f7e6a98c008a4f73a4a2170e2f8619417660ac1ab24bdc ruby-2.7.7.tar.bz2=24cc772ac1b56d3bb423f1b33716f221bf534f3717a506bf8235a698f8a454db7d79d94ae9a84067153c2f737b3f8f6085f34e36cc04be0d75ae2fdd57718870 ruby-2.7.8.tar.bz2=3a9db8d9e79318f869417f2ebf3365907febc0d1428116eabf3253c51d8420f255782b32fa30a54802b9f5f4187fad80dab0611cc80436feec84db87b0456ec6 ruby-3.0.0-preview1.tar.gz=b94892951f842a1538f4b99022606ac2c0b5031f1ede7eef3833a8caa9ed63e9b22868509173bfefb406f263c65211db75597b152b61f49e5ba2a875fce63a27 ruby-3.0.0-preview2.tar.gz=6fa4191425ae71e41894b60bd9c31d483a562ee8216886360ce18238ab48115b95be0367708612c45f634e7584fba8940a524ba0113ce0f36ce4df78a112d0b7 ruby-3.0.0-rc1.tar.gz=798926db82d27366b39be97556ac5cb322986b96df913c398449bd3ece533e484a3047fe35e7a6241dfbd0f7da803438f5b04b805b33f95c73e3e41d0bb51183 ruby-3.0.0.tar.gz=e62f4f63dc12cff424e8a09adc06477e1fa1ee2a9b2b6e28ca22fd52a211e8b8891c0045d47935014a83f2df2d6fc7c8a4fd87f01e63c585afc5ef753e1dd1c1 ruby-3.0.1.tar.gz=cb81db2c9b698cf8159b2ca6507f4c7f171e4eb387f5730c4b658ed632b7900a169808e6fbec0ee80598d937030ad5d9c56b63a2a339373ec5d9e1c06b7661d0 ruby-3.0.2.tar.gz=e1fba6f5429b5fca9c3f52a32535615fcf95fafa415efc71c46db4cce159f249112c01574c305026be5c50140335696042e47a74194caea045acbfaa4da738cd ruby-3.0.3.tar.gz=39dab51a0d784a38302372b99f96205817d466245202586d22123745761e9cb39db128ec2b984ebc3919b9faf2adf828d19c97d3fb1e56d44be0a81dc5d11b87 ruby-3.0.4.tar.gz=0dfded6826063c1b39bf625a6e13b46c109cb160c8648b78f0965f70e7c7a1a65f1c117fc8f2cf8bdb34d7cbf79fecf1f45d169d2323406d66ab27b18bde1d22 ruby-3.0.5.tar.gz=ea45fcd2ca53b87f18fd8696d00a1e340d2495443216aaf87d3f643cb5bd8bb614a1faacd82d07e7f2b72172397c728316a82d7c34a7b4566191268ea517ccf7 ruby-3.0.6.tar.gz=d596bfd374ae777717379b409afe8ee1655ade0c0539ada7a10af4780b818efe25a28aa50a2a7226741d1776d744e10ad916641f9d12fb31c7444b0a01d0e0cc ruby-3.0.7.tar.gz=66e5116ddd027ab1b27d466104a5b440889318b4f2f74b5fdf3099812bf5f7ef77be62fe1df37e0dc7cd5b2f5efe7fee5b9096910ce815ca4126577cb2abfaa7 ruby-3.1.0-preview1.tar.gz=63f528f20905827d03649ed9804e4a4e5c15078f9c6c8efcfb306baa7baafa17a406eb09a2c08b42e151e14af33b1aadbd9fb1cc84f9353d070b54bbf1ff950d ruby-3.1.0.tar.gz=76009d325e961e601d9a287e36490cbc1f3b5dbf4878fa6eab2c4daa5ff2fed78cbc7525cd87b09828f97cbe2beb30f528928bcc5647af745d03dffe7c5baaa9 ruby-3.1.1.tar.gz=a60d69d35d6d4ad8926b324a6092f962510183d9759b096ba4ce9db2e254e0f436030c2a62741352efe72aec5ca2329b45edd85cca8ad3254a9c57e3d8f66319 ruby-3.1.2.tar.gz=9155d1150398eaea7c9954af61ecf8dfdb885cfcf63a67bbcf6c92e282cd3ccac0ff9234d039286a9623297b65197441438c37f707e31d270ce2fe11e8f38a44 ruby-3.1.3.tar.gz=550cfda2ae492312009a58316e18fd77ea92852718b37443bcd76aac84ba6694fb841fe19bf23bee099f96f5aeed9d03e77c8c02fb194e414eca5f707adbbf90 ruby-3.1.4.tar.gz=41cf1561dd7eb249bb2c2f5ea958884880648cc1d11da9315f14158a2d0ff94b2c5c7d75291a67e57e1813d2ec7b618e5372a9f18ee93be6ed306f47b0d3199a ruby-3.1.5.tar.gz=23661cb1b61013d912b7433f8707bbcd723391694d91f413747c71428e74f8c7385c1304de7d08b70c9fa3bd649e4eb5e9acb472d89dc2ad5678cc54855a24ae ruby-3.1.6.tar.gz=624555ab3681bd6663bca7cf3529a969b9f0f16928559cfb713c57f763506c8740410c9b460d946922994859189ef2b9956167bd31423cf2e3acbf5a30086fe1 ruby-3.1.7.tar.gz=a8432aaeaee4f48027ab30b7870bc61350840761b9d72b0b399d8fdfa96acb3c8f1ebe63663bcd8d835dd89b21128a07ef8f0c0c47eb41b942c169954ccb7edd ruby-3.2.0-preview1.tar.gz=d24e77161996c2085f613a86d1ed5ef5c5bf0e18eb459f6a93a0014a5d2ce41079283b4283d24cb96448a0986c8c6c52a04584abd4e73911ea59cefeb786836e ruby-3.2.0-preview2.tar.gz=5e9ddcb1a43cff449b0062cc716bfb80a9ebbb14a1b063f34005e2998c2c5033badb44e882232db9b2fceda9376f6615986e983511fda2575d60894752b605cc ruby-3.2.0-preview3.tar.gz=860634d95e4b9c48f18d38146dfbdc3c389666d45454248a4ccdfc3a5d3cd0c71c73533aabf359558117de9add1472af228d8eaec989c9336b1a3a6f03f1ae88 ruby-3.2.0-rc1.tar.gz=798157d785ebae94cb128d3c134fa35e0e90c654972e531cb6562823042f3fb68a270226f7b1cf0c42572ef2b1488a1a3e44f88389ad2a6f9ca4b280a2a8e759 ruby-3.2.0.tar.gz=94203051d20475b95a66660016721a0457d7ea57656a9f16cdd4264d8aa6c4cd8ea2fab659082611bfbd7b00ebbcf0391e883e2ebf384e4fab91869e0a877d35 ruby-3.2.1.tar.gz=f8bbff5e237b501f4042ddc70a19ac1ce74f72f147c90daf7f3007a940136abde37c12a0f7444f713ede09ba847c2cc2897a1742823832e3dc8cce80073164e1 ruby-3.2.2.tar.gz=bcc68f3f24c1c8987d9c80b57332e5791f25b935ba38daf5addf60dbfe3a05f9dcaf21909681b88e862c67c6ed103150f73259c6e35c564f13a00f432e3c1e46 ruby-3.2.3.tar.gz=75aecd9cf87f1fa66b24ecda8837a53162071b4f8801dcfd79119a24c6e81df3e3e2ba478e1cc48c60103dfaab12a00cfa2039a621f8651298eba8bd8d576360 ruby-3.2.4.tar.gz=b695b98dac7bb2c8755a106d949cb1b1b91551092fad263765171ddf8a4d86585259ffab5f7cc9bace70143d645dbe5932cfc61c6dba7817177de391d76bcd79 ruby-3.2.5.tar.gz=d86c0151fabf21b418b007465e3f5b3fd0b2de0a9652057fd465b1f7e91b01d00f83a737e972ea994a5d9231e8cb27e64e576852390fe6c2ad502f0d099fe5f4 ruby-3.2.6.tar.gz=26ae9439043cf40e5eddde6b92ae51c9e1fa4e89c8ec6da36732c59c14873b022c683fb3007950d372f35de9b62a4fabbbc3ef1f4ef58cd53058bd56e1552cbe ruby-3.2.7.tar.gz=174e70ac20a21ea77e2c5055a9123a6812109fd7b54c0f7b948312b8159eedbfb11c06120390c158430ca8543e36893da6c809883c82757082d22e08004c5055 ruby-3.2.8.tar.gz=342d9ce337936cdbaa5d63a4d393edf0594e431add8cec3b6f17b884075bfdc5aa7a843c03f4ee3bece01700dfa4707bba653715a628d9dcb230762dbd3e5ac8 ruby-3.3.0-preview1.tar.gz=0f891f140ddc6372aa7c4459f8784126e0c341db7b80e72c51e441c5153c43c2d7b965f7807c076862ac84b9b8b0c6a66bbf66fc341746016151397bb21c782a ruby-3.3.0-preview2.tar.gz=1c5a13e519e8487fd40d932b96d14fa729521925c288e7841ab5eada628e506ceca2605bae36eea1aa505d9253383d53cd933b7a4bff96e6de5b1130c7c558e6 ruby-3.3.0-preview3.tar.gz=94db07a6958c09809b2e5b597fa55a121074e8bacb3bf588c83cf0d35b07a8b070172035a49d1abf0d8ee364a9ace824f34e677f7327ffe1acdbab0938ac49c4 ruby-3.3.0.tar.gz=26074009b501fc793d71a74e419f34a6033c9353433919ca74ba2d24a3de432dbb11fd92c2bc285f0e4d951a6d6c74bf5b69a2ab36200c8c26e871746d6e0fc6 ruby-3.3.1.tar.gz=0c8ea922a79152ac7adbfb2541320565bce6a631692fd39d499a06f53ad6339c16fad8374d171351ed63f7bda3312b26d4f8c058c5b6df3d7548fde372c718f1 ruby-3.3.2.tar.gz=a15ba8d6c2830fcd1f2b36f671acf9028c303ec78608fd268da0585db8e95ddd971666e8029bcfa2584da2184a6534e1f2f2da07fa7ca4494e8d842eed206f00 ruby-3.3.3.tar.gz=0388a96127eb6e53b836f7954af51ff62b84cdb7abeab823cb1349993d805b151204e426b9ac04ca8333fbd5e01c386d58bc37d34c4e9286b219dcda7542a150 ruby-3.3.4.tar.gz=56a0b88954a4efd0236626e49cc90cdb15d9bfd42b27d7fc34efae61f500058e58cb32c73fdef5f1505a36602f4632d6148bf3bd1df539cb5581ae157c78c22b ruby-3.3.5.tar.gz=5c482059628ef9de5d8a6ad4751f8043f2fc2b159b768265be7f3ee0574ad51d9500ee4fc9146c5978fbd51313039c3de39e7b7a4dedc9bcd5d09a41a713f1a7 ruby-3.3.6.tar.gz=4ae22f5c2a1f7ed84aab7587ff04ce4d9933cffe4347deaef0ab88d22c9780f274c1664a4ee1dd8235bc3cc749be828ffa8db7cb5f5002339a59a599acf3c729 ruby-3.3.7.tar.gz=9b48be05d1210e9194c8a6d77dfc3227599bff2b55fc9bb2049b11547927deef530ece9a2a505600cdc492c8517b1bef7ab5f2520ebd79ffcf76f0a734fa763d ruby-3.3.8.tar.gz=c5005ba4019fbae19650a9a9ce139e13608345065da9e2277dbeac9d0ac9e3b07b666816afe7be690088080c8c9cf88a8c372971d429479dcebea80d6c2e3883 ruby-3.4.0-preview1.tar.gz=29c0e32179f7b823b6708f5328e495cd333fe8dd88f7df7d9051deab47add67b14d899bba565bba1a77e1b04c9693d9708541445c112925777bb6891cb7b2b62 ruby-3.4.0.tar.gz=bc70ecba27d1cdea00879f03487cad137a7d9ab2ad376cfb7a65780ad14da637fa3944eeeede2c04ab31eeafb970c64ccfeeb854c99c1093937ecc1165731562 ruby-3.4.1.tar.gz=93acc262e3b7cf86aeddebdad5b8938c187b9c44a73b0c252b6f873745964001459ae45ece7376745916e317c24895596a42b4544e836670fc6e90058e6f0de4 ruby-3.4.2.tar.gz=edc3aede0aadcaa62343f38ea6cab7adacedba810d883f1d9c3e6e24e28e24e0e27a7df2c8e517cc2aab940168fc4872ab8cad000598aab5940aa79072ac190b ruby-3.4.3.tar.gz=7019889939713c3e649003fed4d973dced36239fc354cfdee2d01dbdeb7e8512881a31b00efc3d5017f08cd492aed7914d15927bc8d076c0cae7534273e471e9 rubygems-2.6.11.tgz=3b0dd38c0aaf313c59e299dcf54f7bfb6e6d84b8b739573ddaf599e584da45ed7b1465f6521131b32f237e31a4796d9ef455b8be685064b3fd77a0355dfff13e rubygems-2.6.12.tgz=ebb672488b50f5fc988eab66ab14ce8e887dcc635f71239a85e32fbf1e919ca70196eb4d3f2fee3486cace7064bab0b8b08339c754b723198e1b0b0a0984ab54 rubygems-2.6.13.tgz=c952b6061a9a0778db304c3aa5bea693e71ae2564abfb19f8b123eef66eb1e3877fc7c36f4f1527da97bb320870cbfd4574ac57ad88e850a44fadd67ebdac152 rubygems-2.6.14.tgz=7743845bc5265df3782f85a23896cbb250d8a2bbc9934a27f274b001afa7aa62f7f00f616296f74747ea612d2cb37dd7f533c931aa72550d84c64d2a73d60daf rubygems-2.7.0.tgz=0bd08fbabcc33687c98365ffe6794ca2a5e82160b0297479d4f19bd899d176b7f4efb95248898b26d873f9fc7d86c10cada6e40cdc48738b0bac261c3aad261f rubygems-2.7.1.tgz=fa4ea123760b03b8b8e8ececc55c9dc34249073fb267d310bd903aa7a613267e5d27990bbf28e32c9a746bf884af8a84a0dc202297272f9d477f7710c21bfb60 rubygems-2.7.2.tgz=0f48c6e46663780a571c7ee0e6e772f2e18a755031e7dd8ede7870f238c214b9e3e38153b1ae8f1f78a9aad63c1a079b86573b3a25c57a600d842bdf92b9c4d1 rubygems-2.7.3.tgz=2782331b31947a23f85b285a3d5e7b66e34fe5847bc84dca4f1e6bfe33ce187ab0cbc814229de8111aa19490b656ca78b7c821e4ea6b425449991c01371b7565 rubygems-2.7.4.tgz=90f72a46709ef847666a6a23eecf24521abd5c294b2da8a246bb4c7f85daf4af39a0634fc8093c7bb7ded2ac137ea27fac5ed94af3b70c49e78594285c7a40ce rubygems-2.7.5.tgz=86957f1c438070135df527a15102e40487fcee93a55251463095e4c8794a8616d16ed9bdead0e0ef83c44806bd5016ecd9e178bef608b66af2e68e2c9c49e941 rubygems-2.7.6.tgz=bc168afc40c974dbc7c37eb5678432ba2ed7469c3f007a159699467ff2cff5205c508237193ee8becaa6eb555b043969cc5f92b2aaa6bf7c958dd7c187e258a7 rubygems-2.7.7.tgz=f93b7eacf5ef8725c40d618daf9deabc7e9eed74b3b7f13ecd16f89205fe24958e782314c52f8a8fe3205b93e20b830b4fbf7ff8944ff1cf56feb7de2d773252 rubygems-2.7.8.tgz=3d1cf68377dfcf102028342258aaff5a7257d2d2b34a80508c85aa258d810add46e65a157f902c271b0b7b568c437372d17246e89cd88f8500e47c008d17f1a6 rubygems-2.7.9.tgz=5f699f47bc24d8ffd4f8f44a509a9df71fcd945ca2574dc9d5050bfe06a44830a368f45d204112d7a4f1877e1600a6fe4d1b6b68f9a55288664667b4220a7d72 rubygems-2.7.10.tgz=48a18c0f202f463c38cf5dafecfbc7cc39245e63c7a059ef2cefadda478483794a929ea6b7e0ef062dd4423230746f1f09d7bec06a97fe3ceccc3325397a3e71 rubygems-3.0.0.tgz=047f4d446aae414e4803517088ef47d5cc66319ff08a3795c6d69e83eee9f3e7c3b05419858f7e5b6a8ec224990ca01178a9259961ef2d7ab737bac352a0f18d rubygems-3.0.1.tgz=dc29ad51ec67b1dca82a23973ea92153482788964d0755bdcd3c650116915c461c6e5fb1c826be3ee04a497fec4ac2826904bd406f24611e77cd8c9eaf4d8729 rubygems-3.0.2.tgz=90b46c2cd4f8baee74eb488a40691cc00e754cefc42029d485163d6ad7782df78ba5cbeab08eec6a4f71febe0f6e635e12a9381393008c58eb5e16396df93fbe rubygems-3.0.3.tgz=1dd585243341901c7b4cc60a4902000c10ce57fe2cc9c28e27e274a2e6029f936cde1c99d7097c93c2c5b2c8bcee5d692c8fe5cc00c996a040e4954b674e330e rubygems-3.0.4.tgz=887c64226ec0b32d33f2ea331936683406d54dc74d19e658a23521e25ab50aa23534fe9eecaf696154247ad1df1d24c233d8900b9aabc79096eebd6afef3f775 rubygems-3.0.5.tgz=f5a97cf67d7d043afba7c1aed014f1b64ff6376ea74d3d6533496bc5ca9742e0ccce1a157e6f67d8fcbe59d8e34bbfbcf4ed8be97acf2970603de6381043cb78 rubygems-3.0.6.tgz=1ef1822a2b19790a36a6d242b7d4584222617baa27787ec58961a9cfeb2733f19f9085490ffc72ee375d3153c7114e050c42e68fc8039e727fe5961b09365ee5 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=5dfb040b746e462c297ebcdf84e0f07cd74b86852055dcf0a7cf1814112099bc674bcccd94b03726aee76b253c9345a45d046cbfea230647644f0fd6b1c1ec96 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=17983c442c54d19196be3626e25c64f5474139c0b973624832ba8730efb047bc747c02e59c82f38397bf012c63ab83f79a9c1b64311cab796f08fe96d7d12a1a truffleruby-1.0.0-rc3-linux-amd64.tar.gz=b0b57082d61317911f101da617333d81ee6bede6b6e18f9bed86544dc413339c830198d90cad7ac94c0c8fb690adcfc559dd9f530abb70507ff6a76eee552b61 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=18f9782de56269389320ddad779ec69c168909198d4572e2ea4c18bc8082a539569a76760a6a6da58722fe08d77d83904aaba14baf4075a2833cbd2efc45dff3 truffleruby-1.0.0-rc5-linux-amd64.tar.gz=134d9ba5db7b8a1960d3a88390cd6f7503a0e8565094fb127333d122cd773bfbf9dc976c659029007e6fb68e93486293bac2ee29ab21dae9cb0c06ba57dd2c72 truffleruby-1.0.0-rc5-macos-amd64.tar.gz=5804f1f27916176f5a270de8aac85bc48c38ba37c4e719b09f5777e5c42429271819378cfe096c3cc33d406cd0726f2e37658020f97a438fd53751019831569a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=2597b375f590755b851d3b8cbad3eeab4c965eb02d0c944044f57e39f6c3db1e2f513e2aa55db789e4a885c697f81ce5c8bdbe9a7e44ee30fc09d234e44fb512 truffleruby-1.0.0-rc6-macos-amd64.tar.gz=2eb177190de0408dfdaf30264132955d1db7783ddfb63880d97d5933f66c5662794c3bb6198edf230fbff348674203e61f7f5481e74ac875974467f2f128e939 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=ab3a3dc19f903e68e36b135729693fa025a7c1950139277255e48c972387ef8399beceb3252ac37cc70c0df92838f8a0ba8c45f53665ac4286ef23f9b240806a truffleruby-1.0.0-rc7-macos-amd64.tar.gz=b8423f50a5292e211db7ebd7e2b987fd5c9eaaf34eba86b0644d2716a7f068f2e56deb4357c516b87b437e64fd5ce8515bc181165cc1042c6763f27d71baa59d truffleruby-1.0.0-rc8-linux-amd64.tar.gz=bcd05d304ee9b4da97193575fb1ad78041a0c7710bb444af6aef12ab4261b1873f472175ec51a187a5e99da481d66b81a132fb691643b793e87d655f31d54657 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=2c758221793c38ca8af1831a5d9f3abd555c406569508ac3a86d3c1ea5baeeacf65abb6e904ed3b1e58f555f51bc85ab171135ff4c3d0e08cdae994a861cbda4 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=42e60b69957f77a8623e0dccb7d215e800c27c622364fa76b9c574e8b1d3a4056a058b61ed91eac2375ecf4e51e482a6e17550aa2894a44d1db70687958033da truffleruby-1.0.0-rc9-macos-amd64.tar.gz=18556ee8d2fdec6907fbc8fc33d8b32ea0c58d40ee3df084ffb233e2fcd3a514a553f97c31dcc25dda3f86b1b805ca5fe3c9bf8cb078b92325515f09db6b88ba truffleruby-1.0.0-rc10-linux-amd64.tar.gz=10a7cb1be6214347469d5797091f73c3d7824bfb32a47c13566573a383380b1df9b79b7901ce0fa3af1c97285c90afac21e2de7a66ed88d9495846743b3b25e2 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=53f0939d9d8c3470cb79316d865b765816032528d77a3cf497134f3aa667a6253ae037410801261a8e7d0628198ac5f6aea5ecf9b7313f06ccc1d5e9f94e74ea truffleruby-1.0.0-rc11-linux-amd64.tar.gz=f89bc9a3310634d39f68006307da0b0ddafae036089bdd663e8372777a9562d201a4e69b2e1a602cff5fba6c78a8d4861b6d1020679bd0c72c71b938a4f36a27 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=3f461c12fa9fa57a55cc390eb9887df88f404661a77bffb44f82b4c7e9021513a6df9f6d5f332a36ce0c28ae7e3d5afbbe15cc4b814bc7f86dac2e5ec280f947 truffleruby-1.0.0-rc12-linux-amd64.tar.gz=85f042c308ccdfbeb318cec37056d8d970cab51cb0779425b85b8f76b0a1dd9cdec3191ae2b6b9b6be6e95767db814496450ed20076addd9bd495742f9de3c8c truffleruby-1.0.0-rc12-macos-amd64.tar.gz=067a0f63bbaaed4c8d4120f758c8ecf8c52afd1d30ea9d41489e26289d57a574d2d4ae29e29655378510adfb3f4a07b04b403d6ee98ee6b3d3aa8bff9c8d718f truffleruby-1.0.0-rc13-linux-amd64.tar.gz=1eb6b80cb05133d253f20629a11ed9ec3f37da002d5668cdc6577b2a20524e0cdd4d739d3f1aa2e8c518e2f7ebfd519ec1c647293714a1133ad4d569375c0e69 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=e3cddb0d0ae48f7d5ee4dd094ddb5a13f6a7aff1521b1adf25710971664b235cf67144e3b81525fd710dc49b6f6f6ba06e10eee1df5dc08119e9494c6be86934 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=c982194675b66a0433bd5517fc6f1564db669f595f8c7ba4819bf37e0599474d49a0c606577a898c27fa5ba40ab793c62d8211e7ea398d6b3e2bcc31eb5d55f4 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c14e396396385644333fb4c4aa1fb4b934a3f4e46312146821e5dcdaa097cb5b1efbf397c1dd6117d909803fd27ba8d835904672e98d43dc565e907fed752e1b truffleruby-1.0.0-rc15-linux-amd64.tar.gz=f27a75f929a6e945e49ceaad12f484fdaa918469a2f639b572fc4737b78e1cde0881697057e13a58b2fab7ac64c3a71bc9951561c3a8728e3dec814ef5e95fee truffleruby-1.0.0-rc15-macos-amd64.tar.gz=7aa029c4999d4608c9bcc491771b0434267032dbe9dbf504728079f87ce93e6a90e0fa839295b88c00e5a025186ed0fcc42361428b7874c05e222edb108d6c02 truffleruby-1.0.0-rc16-linux-amd64.tar.gz=e8c508dede11d4f54cf0b15cf92b50caad93076a6065bd2d6784c5ca739f5923ea2b894c6b2b52131f62187c8b305cd11a960fb5a670789802d59b6b2999f0af truffleruby-1.0.0-rc16-macos-amd64.tar.gz=841eff077c38bf594b101edb15942f601ba0dada2122b21b016f53251aa2a635b8d0b63b49bdfb50259b2545d1f498bca95d5f771a15a28edb0dd07216c9b709 truffleruby-19.0.0-linux-amd64.tar.gz=8ec6c7829351e0dc2cce57305947cd540734fe5a0b95b9501d4179993727ab2c331e9fb639b9865c0fed596df3906adf3dcf2efb22c4cfdd23a3dc2137025fd4 truffleruby-19.0.0-macos-amd64.tar.gz=912e0c15d32e40c884b2caaaf9a86a71450d441c960ef98a63dfce80353619073b146dcfe03d9af4273b2811d0899eebe922cc84a51d6f5e6826cc436d793f78 truffleruby-19.0.2-linux-amd64.tar.gz=eec92bfbd776acd61709a428b90b1029c5ea83e5ea839304d23cae3a541dd4fab3b387691fa76643f55d5939c9cac0cbe70dc0b5786e5e0e5d20f3fcd9a21356 truffleruby-19.0.2-macos-amd64.tar.gz=ce647b76c9931feac55baa5acd2c87d8335c606bc5cd7e462bd92ba1b09f4bab5db927f021e3119abfd85c33377003d060f36cf64eb121954fce8878112f01b5 truffleruby-19.1.0-linux-amd64.tar.gz=db01e6dc09fc5f39ca466aa94f725023d49a8f52343f129bf8c32b7f5f76ccf2d573ee3344fce3d5aff9983bc9af618cc5ca6e1dbba93b3f604e4f33f8a69b3f truffleruby-19.1.0-macos-amd64.tar.gz=f002bc0b6efca11eb97c4aa6df33d2e0fcc1de3443efd39d912b028df9dd8954cb76ef3ca7fbe140f4e922d6ae4c1a6a20853490ef1ea0749293e2fcd4ffe8fc truffleruby-19.1.1-linux-amd64.tar.gz=ec031e8c216e31f034d97aaccd6441869221d6946e18f375b44a866550b8e8eb4b2fb923f9ce1a62853bdcd5b9201e0f5d2732ca6525d80171d5732ef522bd25 truffleruby-19.1.1-macos-amd64.tar.gz=1c15918af939a8fe1779b71d9e53d2ce09ca7353173a3b357905d9fe1981ff013cf0f90c6b47e1ca66dd168c2f2d742f28a5fb134cc0231d36146da99f91c3cc truffleruby-19.2.0-linux-amd64.tar.gz=1248bdde9cd3651d7042fe4cecff4ad35534868d543fe2e6f3a5bfc3bc9d10d57b4139fc070f0a03861436a1aabc9a8ebdf3356f39b77a4b8f6a1dcf492f70a4 truffleruby-19.2.0-macos-amd64.tar.gz=92c3154ed229a115cf392826494745aae06dd9228dd0996c2c44c550552f13f9c254367d068452fa4a84eef79c19601c79b87e10f3121fd7b83b803514a41cfd truffleruby-19.2.0.1-linux-amd64.tar.gz=53c78cd1f255f2b7031a70a42b65c0bf80c510b9254f5d7ba82b4787f55f5b09cfa9544c424a90f4619a74179fed07c168bd501e34772ef836a773e89c467cc5 truffleruby-19.2.0.1-macos-amd64.tar.gz=ac11523cd49fac50de1e441039e429fb8cd6c7051d537e5083b64fa68eaa19c9f0a966b269da906c367985f229af82a4811282dbfd0a76ef6565162e1081a659 truffleruby-19.2.1-linux-amd64.tar.gz=c5ffc1b592a74e836a4f6ec75b0e103150a4a40d3183ae853ead38c951a85378163111cf0bd2b81e44548c0a7aeaded3ae8a7ae558d5a02dc9e2cce992b79b58 truffleruby-19.2.1-macos-amd64.tar.gz=bb467b91f66eb7d1e6f1a54a7bc0a3d9503bcbd935e8a02da9ea0b749a51e354b1140d4a4dad6fc05312b560bb9ccdcce4f6583bccd19bb5afee19bf494102fe truffleruby-19.3.0-linux-amd64.tar.gz=0e94777a3feabbf0107ed40847e20dd4e3696ff2b7c3f6ceddf3a53ccd812bd003c84c62a750e8fac9d2490374bf792d69174b48c3ed36b593485d86729136c1 truffleruby-19.3.0-macos-amd64.tar.gz=95470c389e24c865ecdc3d299005cd98f8221a128f3cd75f899b6b7ae5d6dc07962443ce0ff38dfd014589d5aaf08b718dc870a72eb7ea6ced18ec2b2db63095 truffleruby-19.3.0.2-linux-amd64.tar.gz=dc5309b71980657f750b4dd4f8b3bc4e191bc305b638b1e562ff5b0ad7fbba40079ba674caf46226a46b5ca58c10f812354786696264742f351b129fb088a672 truffleruby-19.3.0.2-macos-amd64.tar.gz=ff1c37485ebeff3edcc7081ce09bebe5541012dedff6997662c7f8a064e0ab10bef9a5cdf834263a06ae04ca0391743948bcdea6e6c9d7e1cfef9f21523c2bdb truffleruby-19.3.1-linux-amd64.tar.gz=c724547a9eacfdd135ce05eac9dcfe74e58a5e77c97f88103f83b8513c15c975a0ecf623f623a425ec81fad1b64d3b5e135660d6943608ad08048cda00eace79 truffleruby-19.3.1-macos-amd64.tar.gz=d746b2ad410c15d145d36c676a070ae454ba8e5ec6c594d5ebcf54b1fc719f98e8b8f71b6fd504c3d38df286bd11c5114f73b5ba39be312b11d42d4ca1a17d02 truffleruby-20.0.0-linux-amd64.tar.gz=4efea5ded5fcc6886befba3a3720fe1e5b2e376d46738565e8871a1ce0201a33ed52e78b8af2fb389618bdea99466d126d8537dd0919b0c13f8ff1940cb3e52e truffleruby-20.0.0-macos-amd64.tar.gz=b36488330514b77c7115689042cf2482a0beb9f72a0b05fb4c7a6ecb0835a3da47c3b15c41abd6ffced023e65ecf7eabcfbcc6e41901dcddd0fb3dfed46564c6 truffleruby-20.1.0-linux-amd64.tar.gz=116d57404540b85c15b321793a6f985624a2044af544e659b3607e50159703af5d445e22bff28ae2182dfa752f7500d420e250f6deccc98a2f01e89adba8ac3a truffleruby-20.1.0-macos-amd64.tar.gz=9b1267101dfe78b85c79f7528eb4de96b16933e66d5771efa6272372dac0fb35b199bb9d42773d61f4fa7a15d6cbd18b5753c148f7c3e477c7c4b21633f12b88 truffleruby-20.2.0-linux-amd64.tar.gz=a37eaf8475364b74d948979ac13dc6e6423bf11949ad1d0f2925f78a4495e80de9767001ccdb777c8cfd7f545839fad4d842522620c3acad179404bc4ce6752c truffleruby-20.2.0-macos-amd64.tar.gz=964c1e02cc53e1646060334a9911771e679a8344d811a0f77d5cae3529dfefff259c45505ac84b7debb958514cd5d2276ffd435802085494e0229dd140ce8f00 truffleruby-20.3.0-linux-amd64.tar.gz=ec2d8ff6a5d45fd7091e26430c67cbbdc0f8ffa41e9ac574d48802766fcd144e1f446db807700247ad6d8046b7ed070b5da70ef667e576d6fea60cc64ea5484f truffleruby-20.3.0-macos-amd64.tar.gz=1878f94e05a3c40484bf944a72412b179aa5415a16a7ebc1610cb512a1e1c4a2ce0e98685257ad6e5c14745245c35bb5b28205fb687292c4f17193cbfb3bb606 truffleruby-21.0.0-linux-amd64.tar.gz=b7d1b76cc015d136dbd74515431f4447730850475f81b00885b71b95819134db2656d941736048db42d519f03e1f2df066226513b77208adbdbbeda1f49cab11 truffleruby-21.0.0-macos-amd64.tar.gz=7677b827a9c1758d5f941c512cb0fe8daaa19c3db77b485d7dfa43940151d6b9094c4d9271e18ef5014630142dffb93d168c7ac631a3b5eef6fc61b2f9eecf88 truffleruby-21.1.0-linux-amd64.tar.gz=010e9fb78cab12486641780392be0f284da08dfd955f3a0d1ef72adb52e1c9024b54dc880173645aea2af680b3670a6bb01409198b757239edda4cd9bf2b1e90 truffleruby-21.1.0-macos-amd64.tar.gz=96ef8481faef1bfa7f01bb4d396818ef6f0943d19c6a23dedb68f8346740b72bf06efc707bdd29158cf991cc7073c97f429a07b02c2a48050512b46369850058 truffleruby-21.2.0-linux-amd64.tar.gz=c20af04909a852cb676c90403d852fb367d56eac0f9cf8ba42caa4cad1013ba393cc4611e434614ad132b7b0ed61160aadd887001b08de0767cf58f5e149efe7 truffleruby-21.2.0-macos-amd64.tar.gz=0b8d9633fde53aad78f0baf52858cd5a5716f53ff21698baab17da4a625b4369b88dbd664193e3f0d1b40e64c88699ab4f04bbe40f54189a588c93678962a7be truffleruby-21.2.0.1-linux-amd64.tar.gz=15ceeee383114f974aed5f16c99131d56947e13cfe248b97e55d61263ccd51aa56fc3e0df215196ef7f80ccba9e7f19e7f261d7a91d54bde2d9992caba682d82 truffleruby-21.2.0.1-macos-amd64.tar.gz=8a8762d90c19db4f48433ce0e3f3339e290685d79c6ee9bb7d4359c741edfa6a7360ff65124433d964730ac25b2cc6d8b581191b0a51479f11c2a80031a6c1c8 truffleruby-21.3.0-linux-amd64.tar.gz=b0c07b1ea797de92447a81b350d460c125a2efaff3c290637c4bcf1c216b5abd11148cfb143ad397062a96f36beade8234d0785c42f58fceac0011f629a5220b truffleruby-21.3.0-macos-amd64.tar.gz=42e607fa52a534123989ad232691ede65aa1c615f39320d93aa8ab9c21924eea7bc0aa49aef1a540ec972e2b3dc775d22a99eca3e0c9bc450c525f9020fbb975 truffleruby-22.0.0.2-linux-amd64.tar.gz=2231a0cfd27238c34ea0bbad27ba387453e48f39032607cbb829b347ea6ac804df15eb3f84d50b09248782d6202284498e7bc9aaa2060f0ce81bb83a84d700ad truffleruby-22.0.0.2-macos-amd64.tar.gz=1d7ac44f0862ad23cf17a7bba73d23dfd4727aadd9a3aa9633361e9bcd19655d163e160eae9c8db8ec9892f8fbf82d7a38b1cd689475bf41609a828208098623 truffleruby-22.1.0-linux-amd64.tar.gz=c4c2f9bf4236118c8ea62c08bad89e1034ecdfa0c4815693961c4d2b1b30ca043fe958abfec9cf36a8638aa2e005e71fcc244ebffd9ce11eb68cf48bd98c29d3 truffleruby-22.1.0-macos-amd64.tar.gz=507004ade838e614955e23331845839be656aaeae7869ed3d989c10e6491775a12313ac9ef03e14945f20f5e76d46ce6f7bb860af68a627c48065399cea3c567 truffleruby-22.2.0-linux-amd64.tar.gz=37c09249ef387df3e0614f646abb444cb5b7b2751538ab0432e703abe92a81b82e0d15f89d5ad7cd58afe5f30d9a92dc8471d19f1c1ce10b50478ac74f247739 truffleruby-22.2.0-linux-aarch64.tar.gz=49a7cfb4c81980d9c7a1588ef9f76a9bfb759d4b1925ab11f230d99c15a62e162a08249d23cf5646e2d38ecc2005e27103f2e5d92b83b0a182a4e64319b70c0d truffleruby-22.2.0-macos-amd64.tar.gz=d4c206fb0a5e63c5b7f61f2e62de854e4d0817075ef9ded237d98cd821c286e88d7b150d140d9907a957209f39be96c7025560e3908c89aa337925d2fba690af truffleruby-22.2.0-macos-aarch64.tar.gz=a01c18803777a74717ad699b6ee51eb759d881fb436d24338b557c52d4a693079d7b55f108394ccad0dd69c974cb895f4a36854355e84fecb67e41bf9eb18514 truffleruby-22.3.0-linux-amd64.tar.gz=d53472ae892dadc81c6fe63a597ccfb67e133958431b11716db4d920c78fc86f7496e4b10322d041c900bed77d27e02850da20aa95b297d63a9de2e72cdf3c76 truffleruby-22.3.0-linux-aarch64.tar.gz=dab63d49db4722f0c174ce8b882413102520ff649182946ba332ef5ba0fc6b58913595539a20b59e460faab2fba36f762dc8eb66aa729d4a6bb90feb2a95f053 truffleruby-22.3.0-macos-amd64.tar.gz=15c91d25fd6fb1d9f3f2a0b36676da5c8a76d62be86cff463ebe6c7e6aed2d9b6de9062021ab1b9b29cfb7a92b5682c860939acd71d12dba7e4a6bf3964fef3d truffleruby-22.3.0-macos-aarch64.tar.gz=7c44d0dd07e4ecd84a92f6dd574dc185906121b8eb75f6fe097b9d4738aa30751664d70e9027e072eeaa1dffa05fe7bcfc06be0c2dc950142f60664baf5eac69 truffleruby-22.3.1-linux-amd64.tar.gz=f41d3bd22500b7291121368169f8558df4563c840a01b70ff7feea3593f0152d8d77d4437af362bad62f25b79bce1ce8ddaa1bd8172a2a7ef8b61cdb6e478c9e truffleruby-22.3.1-linux-aarch64.tar.gz=1ca5221f0dc5ae3e0bd9545be474e115b2e62737701df95c6ee6cdaae5d82815acbe6af961ff23afee64dc26e655c7786d4347e3694c140773f065534322ee59 truffleruby-22.3.1-macos-amd64.tar.gz=bae16cc04c6018703833121f4258c3f18fa5062309d0600458be3c51c838bc63976a026db0f28d23005df9b640ccad0a9cafc56610a5ca9c24951c66b62097d9 truffleruby-22.3.1-macos-aarch64.tar.gz=b56e230d8fbc95d19364e695aaf1e552238b02ace7056f636808a7d7510777cddfde572ace5238ea1e314351bdd1a053ab3912d0889f51f55c722797c83eaaee truffleruby-23.0.0-preview1-linux-amd64.tar.gz=d538412f12d5ce743c351acbaa483b8b85dd2cf84fe06b3e90ca21f3c2fc0465df9c1773b3515fe4296d599f45e9cbb935dc5a69fe45668321e5639d58608ef4 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=f10b5ac749b11f93c2469f2c8a713ad090cb653761ae0a3e1ba4c19b0c96bd61c5e8da74d8944f9487c2d327d268a188f2cb56028d2beaca2a7816e63123600b truffleruby-23.0.0-preview1-macos-amd64.tar.gz=cd9db49c4253bd66cad6f9ae111c83d3befd0102a7ccb72a2407d22dc576ba7f3a26a90cd479f26dee3565d2f893a2b7c8b549e2351336f35d2632e57966657c truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=28b77d9943cd1617e0445633a9fea8911cfa975f5c581192439cd0944d2a17c2b0558e3e4112588b5fc77b57c48d857ad68ac51fcb867250625ad85406d87acc truffleruby-23.0.0-linux-amd64.tar.gz=da702de2e8c994f2646a3de5b44824210dbd37129cd2f91c3bdd990a1b0d0b05dee4443ad0f6cf98fdb4e489c9f4cde64f3561baf486dc642d4981a1a1812925 truffleruby-23.0.0-linux-aarch64.tar.gz=808254a154adcfd1bbd6e22bcdafebb6169c6f8cfd1c55382d446bb66002384ee844dcd8b5f642703ef440f7566645d190081f45e04a7d8d59bf87571cb4430a truffleruby-23.0.0-macos-amd64.tar.gz=f775d57e63c606eef424a1115408ed8539ef47d6bea0125ad1de7ee4fd5971e96747cb7f5d22d91d2f004edbd6ed6b9b5bd014127dc1abe7821a3a987a72d9dc truffleruby-23.0.0-macos-aarch64.tar.gz=000069854458f81d97eefe14123fbb69937942825e77d35602d55fa279123808177a34f252aec9dcfa48b93feacbee81ae0f0e7043c2d8a9ace2a4bb61ab253f truffleruby-23.1.0-linux-amd64.tar.gz=1868799d989c51798cf07b5243457af7ae2436dd19805fd634c98b2f1885266b5c3ec81dde668c2e5a290e9028f6f9fd223d153489df6ffcc74d45240aa020ad truffleruby-23.1.0-linux-aarch64.tar.gz=2766621877996ad35fddb94f978feed531307e8abf601dcf863754c96782b8149c3ac512dfe6dd2bdef0fe0e8a968bdd77608c41020434aaef4e7250c09edd74 truffleruby-23.1.0-macos-amd64.tar.gz=06c5a1d6ad644fd81737f0a1fd24c1529f712abe2a4485ad597aca7c35ca2af898121bb5883552cf518e2afdcb4221c8ad013759b46a69e34249e7c5ebe2b170 truffleruby-23.1.0-macos-aarch64.tar.gz=496cacc5cf413a48b60184e097a962ab5d2236c539f07cc0a9a2d9ef57dfc911a26b125cc3ad9408f6170c6f93c7562f35729c8313be0301972be21c10097942 truffleruby-23.1.1-linux-amd64.tar.gz=dbca85e281bf2484371a0bbcc202ca700acc704304d966b9202cf3835e82f6eb502e43522355f4c9e5a743877d93f5609006fbba2c5e6343a89de130e5209f6a truffleruby-23.1.1-linux-aarch64.tar.gz=6a58842d79247d8a64c513d68db9d53ea5640c02f71a1bc45f103baaaca67bb224939ae5f21ef55daa9d9b9697404052d39a3c382768ca366ab7892b8bf1abbe truffleruby-23.1.1-macos-amd64.tar.gz=7cc6bc957b7ffa42e9fbfe2f6e3014bf1e7996f2754e9e74377078c2c7bc7ac8e10598f1e1452839fc5b9583c823a2a735731ca193a6af2814a02566cc4cd9e4 truffleruby-23.1.1-macos-aarch64.tar.gz=a85b8189ef8a280f6a27d4c1c93893f844266dbdc15b8c4988cdf581613a353508fae4872ac9380efcc47f36357e137861521712c00ce8548041762a8987a9b2 truffleruby-23.1.2-linux-amd64.tar.gz=6307fd71fb1431fb12346d1f13dee4b3afe53947e8a9c1f3e3aa0baae5f9fc9e1496ede0a7d86b169d912ffef9625af998b4e698dc57a2a649140150e3fae28a truffleruby-23.1.2-linux-aarch64.tar.gz=0f0c5e4aa4e9fbc9b9f91d2b3d3fbfe26e78c5bc5b369fc78dd54775a7582b8c084a64f02848058bec79387fd80b09a5a5594ecfb268635fe76e1f9d957c2e92 truffleruby-23.1.2-macos-amd64.tar.gz=648401a73b29c28862a1fa077c2e1bf8fff65015c8bc690ff883a00a3dfd99389ffdb71f39ad85a4f16c531470f4cc891ae51ec927a426b0fa05fa85c9c6a2f9 truffleruby-23.1.2-macos-aarch64.tar.gz=4ec88684c09aacfa1d8bfed9a17243579ededacecd869e98e12841710bae29ed6e5f080611e53fc217a853f730bb2a9cb3d47ef15443eb8a1ad76a120118c8a5 truffleruby-24.0.0-linux-amd64.tar.gz=3a59a4dc58ad03549d8e63db1485767757715fc9aec21b2b67b1440b13871a04541abeff9bc8201b3088e1865360b1667459e536d3cfb09687dbffca95deafeb truffleruby-24.0.0-linux-aarch64.tar.gz=50f3993b7362bb6e7da80f7327df3d079bb02f98b67012e2135005d77e61648e4f3268f767d8ca245ec5889ff934fbcccb94fd5ecbd55bb0cd9cca900fe10509 truffleruby-24.0.0-macos-amd64.tar.gz=9ec8bb340b15e29550448e123e3ab0f183edb9bbe7e052743cb2306cbd1956a5789c5a367c80c5e8d913dce2b804448dd6815e4d3421515166daf8db51d37c7d truffleruby-24.0.0-macos-aarch64.tar.gz=499f83bf65dcb6ecc92414a3550673e6a0baaddfe3ab13c0bd7aa1bdde1ae2a61d9d0ca8001c0d12688d9e09f98f9e2946a651220fe7d200bb0ec6f285394701 truffleruby-24.0.1-linux-amd64.tar.gz=62b4e8508eba8cdaac70e99ac9cb0b33a663b4195d79b2dad3d771ef538c6c41d1d91bb7bb07fbbafbcbbcaf17814ffaf6d6bdbafd474ba6a8ecdac30315a8c9 truffleruby-24.0.1-linux-aarch64.tar.gz=817d877848ea4bb55658ce34bbda52926be12426a8a5e1c4588bc0ec1896018b06dce176336b382f80a7c6d073d4331b20694a7797ee8fdf0177e973053bf929 truffleruby-24.0.1-macos-amd64.tar.gz=2ea65bea154aa38cce3f00f24fc9a4aab5e7478fafd070d0cc966878371c070d5a1776b7405e2c9e4cfa14e5c51219ed0fa988294eb4708690983b348886f439 truffleruby-24.0.1-macos-aarch64.tar.gz=bc1923e21768d34779c1bcd7850456a01ddc01acd1ccf20f4fb4a446fb847f8c51b1ff4a7c0cdc317ef8ce057ac24f18f25b778a02a6e2b185e0055d946ecaf2 truffleruby-24.0.2-linux-amd64.tar.gz=5d111beb862b618c4e6a7f8aea1d3d6476740513efdd59bf980a2b6d525a017f46fe02017b075962a4919a001b60bd9a070e69fedfa8a85533c0adbad2a8d86b truffleruby-24.0.2-linux-aarch64.tar.gz=8e3ba19df4e5509c4719bc3bb621f70ca6a0e683d48a296703649b88abd83a165e8a64ad2d7dc45394b6de0b214a95a395fa449f5393dd9e67deab9e149cf494 truffleruby-24.0.2-macos-amd64.tar.gz=06d3b5533c4e26aa1356e602c672efad99208aaee96110904216e16dcfb1d99a7535c3ef275f9a14635dd2f05110798b3c75d71199f6010f23c92c6990492cef truffleruby-24.0.2-macos-aarch64.tar.gz=ba36d3f1680112e6623b14a4bb902a5f65f11e9827f44462161b1c79ee344ca340566289aa1f841c1e213daef5608c159343cc203d07f41c2a55eaeb25db0987 truffleruby-24.1.0-linux-amd64.tar.gz=9a93fd61086fabcb6c4f3a0fcb16e81f42b0203a24a04209fe446eb5f88d78e2ac59ab54d42cc30ef5417199a88b452973eecdfafc57c7877e11edf0a3d42b13 truffleruby-24.1.0-linux-aarch64.tar.gz=ca23edf279ee9b4693630df9596c6e269bb544e06bfd02620447f51108d9e9b4dc8b3ecbcc7a8ba1280560c0eb4b59474e75acead81799e4c51365acb5676d24 truffleruby-24.1.0-macos-amd64.tar.gz=65b661b3bf497bbb090a2cb49607aa00c3e5bfe95eb19c7736d798715d55fe07ddb4e8d8c25c1ec4b7b304b37205c7de9d8ac2d56005c9fc43e4dc81ae699c9b truffleruby-24.1.0-macos-aarch64.tar.gz=ab665d995bd63839c0bf6ed1171875cce7974d49ed79953a05ecdcf13d815c0a5cd471f40839f3f51a1b3128b40a4ed34d9b89e4c3f343b38c78276aed667956 truffleruby-24.1.1-linux-amd64.tar.gz=78e4e8bd910e4b3b41e927f6158cf8cfc74da5187969727d5c5303416310c5b7f72fde239993ecd5ab51724785cd80b2bb9a422a0475320fca57ad40b26d2786 truffleruby-24.1.1-linux-aarch64.tar.gz=c4e3aa72433622f96216b053862beb65861ab20ab28cfc50f51452720173f0a836ee69335281c4c89c6289ffa6f42517b9487d1b6fe16926aecfd9180d6f8195 truffleruby-24.1.1-macos-amd64.tar.gz=099d1abaa8677ecfd298e974fbb37e21bff2ad45313090cecf9a2799b79b74223ca4f95fb873cb7148bb2754ea3f923cfb553dd1dbdf6f1c088a3793bd991871 truffleruby-24.1.1-macos-aarch64.tar.gz=8980a71fc423c454ceaa16b46ba085a0164bf22e3e2040e960623148f09fea4c467b304774afc2ea37d9e072905eab3ad65b3c4acdc7b01ba238e24829cc16d2 truffleruby-24.1.2-linux-amd64.tar.gz=93e4ebdfb9c6a89681d8913a0e175b46c53124c37b0c15c6e032bcbf423def9205a6b288977772e50ba68c8fd06308c9478f22dc7c0385b41fc9989f68a86083 truffleruby-24.1.2-linux-aarch64.tar.gz=63a212ab48704376c1f6e6792da231f6b4ed8ffe1f77eff56b0f58ae8030866da6fcc19cd7068ec158c6e11840b13f47d2d12ba65b6a7f06ba1de6cb1b582fc4 truffleruby-24.1.2-macos-amd64.tar.gz=6cb535ce7fface14bdef86ad322992931ff809fbe781c0715774f279842b5f65d5e8ff4885858cf7a3ba345071509127f473381655f50d000e60c90a88eb11a0 truffleruby-24.1.2-macos-aarch64.tar.gz=a146c8000468c977fc48d8069e938ad6d32fd257d23133c2125f5bb86598d00283c654fc553d5de31ff9a79224f34b3b064bb223ff7766f9f2e25fcf7e263947 truffleruby-24.2.0-linux-amd64.tar.gz=ef5268859169ce3c584a7865a39928005dfa264e15dd84031a9ce874deaa31af067b1ef53712011911e7816da18bb085c783a10a4b2e45d3820e1b82d4855f86 truffleruby-24.2.0-linux-aarch64.tar.gz=7c9b29eae0d6db96c8106f286cb376dadfc0e93ded75b7eb333f0919f50edaf7b0b1e2c8634ae9bcb671611cd1084b75b598a8fbc1c79600b59e98964d1fd7a8 truffleruby-24.2.0-macos-amd64.tar.gz=7d54e9b475a2ba18bc78466c75dadf12514090fae74716358a310a339722c5425fb462eb30bfc1e4264e3586717a9647d91f4e07c6250dfb8e3d2de9004f48f5 truffleruby-24.2.0-macos-aarch64.tar.gz=81df31324c5f51650d8d321e3119672c90bd19c6abf61ded977e978cee387a69ee0eeb1ed6dcec6ca371baefe3df64e09bf1fb5eb06c61725557d7bdc62d6a5b +truffleruby-24.2.1-linux-amd64.tar.gz=dfb06933052bfcf62543154899abcf5b1da9da3ea5d1fb0280763829fa573d6337b8411661fc024f13ffd79bff48920cc2c18cf3389ca2e0cff790b113a2c660 +truffleruby-24.2.1-linux-aarch64.tar.gz=5aaa9d880927c0132dc70bbca20f67945c81bed3dae04e089c0ddf9874e2970c91a9ea65e150a2908272032a17c07d071c1caaa98a041d09ab5b43e5bd278cf5 +truffleruby-24.2.1-macos-amd64.tar.gz=b18955b9d5663301c3a896220dfa765f24dd436571aa897a0ea563fc6694cf2553cf973c6df0ccaf8ea590584be54d358d509bc988af207133ab08374fece0e6 +truffleruby-24.2.1-macos-aarch64.tar.gz=e2cdcca47d0e3d99de130bcb95207ad7a72949f884708828be13ad4b1eeca2b2cf8f6a3c7653fa6f952f8fd7be0af1162559b985bd7ceedc168d389a84c92a9f diff --git a/scripts/functions/selector_interpreters b/scripts/functions/selector_interpreters index 2eb8128..3f1fdf9 100644 --- a/scripts/functions/selector_interpreters +++ b/scripts/functions/selector_interpreters @@ -1,519 +1,520 @@ #!/usr/bin/env bash __rvm_select_rbx_nightly() { (( ${rvm_nightly_flag:=0} == 1 )) || return 0 \typeset org_rvm_ruby_patch_level _rvm_ruby_name if [[ "$rvm_ruby_version" == head ]] then rvm_ruby_version="" fi rvm_debug "searching for binary rbx ${rvm_ruby_version:-}${rvm_ruby_version:+-}${rvm_ruby_patch_level}*${rvm_ruby_name:+-}${rvm_ruby_name:-}" org_rvm_ruby_patch_level="$rvm_ruby_patch_level" _rvm_ruby_name="${rvm_ruby_name:-${detected_rvm_ruby_name:-}}" rvm_ruby_patch_level="$( __list_remote_all | __rvm_grep ${rvm_ruby_version:-}${rvm_ruby_version:+-}${org_rvm_ruby_patch_level}.*${_rvm_ruby_name:+-}${_rvm_ruby_name:-} | __rvm_tail -n 1 )" [[ -n "${rvm_ruby_patch_level:-}" ]] || { rvm_error "Could not find rbx binary '${rvm_ruby_version:-}${rvm_ruby_version:+-}${org_rvm_ruby_patch_level}*${rvm_ruby_name:+-}${rvm_ruby_name:-}' binary release." return 1 } rvm_ruby_patch_level="${rvm_ruby_patch_level##*/}" rvm_ruby_patch_level="${rvm_ruby_patch_level%.tar.*}" if [[ -z "${rvm_ruby_version:-}" ]] then rvm_ruby_patch_level="${rvm_ruby_patch_level#rubinius-}" rvm_ruby_version="${rvm_ruby_patch_level%%-*}" fi if [[ -z "${rvm_ruby_name:-}" ]] then rvm_ruby_name="${rvm_ruby_patch_level##*-}" fi rvm_ruby_patch_level="${rvm_ruby_patch_level##*${org_rvm_ruby_patch_level}}" rvm_ruby_patch_level="${rvm_ruby_patch_level%%-*}" rvm_ruby_patch_level="${org_rvm_ruby_patch_level}${rvm_ruby_patch_level}" rvm_ruby_string="rubinius-${rvm_ruby_version}-${rvm_ruby_patch_level}-${rvm_ruby_name}" rvm_debug "detected rbx ${rvm_ruby_string}" rvm_verify_downloads_flag=1 true # for OSX } __rvm_select_rbx_compatibility_branch() { case "${rvm_ruby_version}" in (2.0pre) rvm_ruby_repo_branch="master" ;; (2.0.testing) rvm_ruby_repo_branch="${rvm_ruby_version}" ;; esac if [[ ${rvm_19_flag:-0} == 1 ]] then rvm_ruby_repo_branch="1.9.3" rvm_head_flag=1 elif [[ ${rvm_18_flag:-0} == 1 ]] then rvm_ruby_repo_branch="1.8.7" rvm_head_flag=1 fi true # for OSX } __rvm_select_interpreter_rbx() { __rvm_select_rbx_nightly || return $? rvm_ruby_interpreter="rbx" __rvm_select_rbx_compatibility_branch if (( ${rvm_head_flag:=1} == 0 )) && [[ -z "${rvm_ruby_repo_branch:-}" ]] && [[ "${rvm_ruby_version}" != "head" ]] then if __rvm_version_compare "${rvm_ruby_version}" -ge "2.0.0" then rbx_url="$( __rvm_db "rbx_url_2.0_and_newer" )" rvm_archive_extension="tar.bz2" rvm_ruby_package_file="rubinius-${rvm_ruby_version}" rvm_ruby_url="${rbx_url}/${rvm_ruby_package_file}.${rvm_archive_extension}" else rbx_url=${rbx_url:-$(__rvm_db "rbx_url")} rvm_archive_extension="tar.gz" rvm_ruby_package_file="rubinius-${rvm_ruby_version}" rvm_ruby_url="${rbx_url}/$rvm_ruby_package_file.${rvm_archive_extension}" fi else rvm_ruby_repo_url=${rvm_rbx_repo_url:-$(__rvm_db "rbx_repo_url")} rvm_head_flag=1 rvm_ruby_patch_level="" rvm_ruby_tag="${rvm_ruby_version:+v}${rvm_ruby_version:-}" rvm_ruby_version="head" rvm_disable_binary_flag=1 fi if [[ -n "${rvm_rbx_opt:-}" ]] then export RBXOPT="${RBXOPT:=${rvm_rbx_opt}}" fi true # for OSX } __rvm_select_interpreter_rubinius() { __rvm_select_interpreter_rbx || return $? } __rvm_select_macruby_nightly_selected() { \typeset __string_version __string_version="${rvm_ruby_version//./-}" __string_version="${__string_version#nightly_}" rvm_ruby_package_name="${rvm_ruby_interpreter}_nightly-${__string_version}" rvm_ruby_package_file="$rvm_ruby_package_name.pkg" } __rvm_select_macruby_nightly_detect() { \typeset __string_version rvm_ruby_version="$( __rvm_curl -s "$rvm_ruby_url" | __rvm_grep -oE "<a href=\"macruby_nightly-[^<]+\.pkg</a>" | __rvm_awk -F"[<>]" '{print $3}' | __rvm_version_sort | __rvm_tail -n 1 )" [[ -n "${rvm_ruby_version}" ]] || { rvm_error "Could not find MacRuby nightly binary." return 1 } rvm_ruby_package_file="${rvm_ruby_version}" rvm_ruby_package_name="${rvm_ruby_package_file%.pkg}" __string_version="${rvm_ruby_package_name#macruby_nightly-}" __string_version="${__string_version//-/.}" rvm_ruby_version="nightly_${__string_version}" rvm_ruby_string="macruby-${rvm_ruby_version}${rvm_ruby_name:+-}${rvm_ruby_name:-}" true # for OSX } __rvm_select_macruby_nightly() { __rvm_db "macruby_nightly_url" "rvm_ruby_url" case "${rvm_ruby_version:-}" in (nightly_*) __rvm_select_macruby_nightly_selected ;; (*) __rvm_select_macruby_nightly_detect ;; esac rvm_ruby_url+="/${rvm_ruby_package_file}" rvm_verify_downloads_flag=1 rvm_debug "selected macruby $rvm_ruby_string => $rvm_ruby_url" true # for OSX } __rvm_select_interpreter_macruby() { if [[ "Darwin" == "${_system_type}" ]] then rvm_ruby_package_name="${rvm_ruby_interpreter}-${rvm_ruby_version}" if (( ${rvm_head_flag:=0} == 1 )) then rvm_ruby_version="" rvm_ruby_tag="" rvm_ruby_revision="head" __rvm_db "macruby_repo_url" "rvm_ruby_repo_url" rvm_ruby_url="$rvm_ruby_repo_url" rvm_disable_binary_flag=1 elif [[ "${rvm_ruby_version:-}" == *"nightly"* ]] then __rvm_select_macruby_nightly elif [[ -n "${rvm_ruby_version:-}" ]] then __rvm_db "macruby_${rvm_ruby_version}_url" "rvm_ruby_url" [[ -n "${rvm_ruby_url:-}" ]] || __rvm_db "macruby_url" "rvm_ruby_url" rvm_ruby_package_name="MacRuby%20${rvm_ruby_version}.zip" rvm_ruby_package_file="$rvm_ruby_package_name" rvm_ruby_url="$rvm_ruby_url/$rvm_ruby_package_name" else __rvm_db "macruby_version" "rvm_ruby_version" __rvm_db "macruby_url" "rvm_ruby_url" rvm_ruby_package_name="MacRuby%20${rvm_ruby_version}.zip" rvm_ruby_package_file="$rvm_ruby_package_name" rvm_ruby_url="$rvm_ruby_url/$rvm_ruby_package_name" fi rvm_ruby_patch_level="" else rvm_error "MacRuby can only be installed on a Darwin OS." fi true # for OSX } __rvm_select_interpreter_jruby() { rvm_ruby_patch_level="" rvm_ruby_repo_url="${rvm_ruby_repo_url:-$(__rvm_db "jruby_repo_url")}" rvm_ruby_url="${rvm_ruby_repo_url:-$(__rvm_db "jruby_repo_url")}" if (( ${rvm_head_flag:=0} == 1 )) then (( ${rvm_remote_flag:-0} == 1 )) || rvm_disable_binary_flag=1 rvm_ruby_version="head" else if (( ${rvm_18_flag:-0} || ${rvm_19_flag:-0} || ${rvm_20_flag:-0} || ${#rvm_patch_names[@]} )) then rvm_disable_binary_flag=1 fi rvm_ruby_version="${rvm_ruby_version:-"$(__rvm_db "jruby_version")"}" rvm_ruby_tag="${rvm_ruby_tag:-${rvm_ruby_version}}" fi alias jruby_ng="jruby --ng" alias jruby_ng_server="jruby --ng-server" true # for OSX } __rvm_truffleruby_set_version() { if (( ${rvm_head_flag:=0} == 1 )) then rvm_ruby_version="head" truffleruby_version="head" else rvm_ruby_version="${rvm_ruby_version:-$(__rvm_db "truffleruby_version")}" truffleruby_version="${rvm_ruby_version}${rvm_ruby_patch_level:+-}${rvm_ruby_patch_level:-}" fi true # for OSX } __rvm_truffleruby_set_rvm_ruby_url() { case "${_system_type}" in Linux) platform="linux" ;; Darwin) platform="macos" ;; *) rvm_error "TruffleRuby does not support ${_system_type} currently." ;; esac case "${_system_arch}" in x86_64) arch=amd64 ;; aarch64) arch=aarch64 ;; arm64) arch=aarch64 ;; *) rvm_error "TruffleRuby does not support ${_system_arch} currently." ;; esac rvm_ruby_package_name="truffleruby-${truffleruby_version}" if (( ${rvm_head_flag:=0} == 1 )); then case "${platform}-${arch}" in - linux-amd64) platform="ubuntu-20.04" ;; + linux-amd64) platform="ubuntu-24.04" ;; + linux-aarch64) platform="ubuntu-24.04-arm64" ;; macos-amd64) platform="macos-latest" ;; macos-aarch64) platform="macos-13-arm64" ;; *) fail "Unsupported platform ${platform}-${arch} for truffleruby-head" ;; esac rvm_ruby_package_file="${rvm_ruby_package_name}-${platform}" rvm_ruby_url="${rvm_ruby_repo_url:-https://github.com/ruby/truffleruby-dev-builder/releases/latest/download/${rvm_ruby_package_file}.tar.gz}" elif [ "$truffleruby_version" = "23.0.0" ]; then rvm_ruby_package_file="${rvm_ruby_package_name}-${platform}-${arch}" truffleruby_artifact_id="" case "${platform}-${arch}" in linux-amd64) truffleruby_artifact_id="FD4AB182EA4CEDFDE0531518000AF13E" ;; linux-aarch64) truffleruby_artifact_id="FD40BA2367C226B6E0531518000AE71A" ;; macos-amd64) truffleruby_artifact_id="FD4AB182EA51EDFDE0531518000AF13E" ;; macos-aarch64) truffleruby_artifact_id="FD40BBF6750C366CE0531518000ABEAF" ;; *) fail "Unsupported platform ${platform}-${arch}" ;; esac rvm_ruby_url="${rvm_ruby_repo_url:-https://gds.oracle.com/api/20220101/artifacts/$truffleruby_artifact_id/content}" elif [ "${truffleruby_version%%.*}" -ge "23" ]; then # 23.1+ rvm_ruby_package_file="${rvm_ruby_package_name}-${platform}-${arch}" rvm_ruby_url="${rvm_ruby_repo_url:-$(__rvm_db "truffleruby_url")/graal-${truffleruby_version}/${rvm_ruby_package_file}.tar.gz}" else rvm_ruby_package_file="${rvm_ruby_package_name}-${platform}-${arch}" rvm_ruby_url="${rvm_ruby_repo_url:-$(__rvm_db "truffleruby_url")/vm-${truffleruby_version}/${rvm_ruby_package_file}.tar.gz}" fi true # for OSX } __rvm_select_interpreter_truffleruby() { __rvm_truffleruby_set_version __rvm_truffleruby_set_rvm_ruby_url true # for OSX } __rvm_select_interpreter_maglev() { rvm_ruby_patch_level="" maglev_url="$(__rvm_db "maglev_url")" system="${_system_type}" if [[ "$MACHTYPE" == x86_64-apple-darwin* ]] then arch="i386" # x86_64-apple-darwin supports both i386 and x86_64 maglev implements only i386 else arch="${_system_arch}" fi if (( ${rvm_head_flag:=0} == 1 )) || [[ "$rvm_ruby_version" == "head" ]] then rvm_head_flag=1 rvm_ruby_version="head" rvm_ruby_repo_url="${rvm_ruby_repo_url:-$(__rvm_db "maglev_repo_url")}" rvm_ruby_url="${rvm_ruby_repo_url:-$(__rvm_db "maglev_repo_url")}" rvm_gemstone_version=$( __rvm_curl -s https://raw.githubusercontent.com/MagLev/maglev/master/version.txt | __rvm_grep "^GEMSTONE" | cut -f2 -d- ) rvm_gemstone_package_file="GemStone-${rvm_gemstone_version}.${system}-${arch}" rvm_disable_binary_flag=1 else rvm_ruby_package_file="MagLev-${rvm_ruby_version}" # removed from 1.0: .${system}-${arch} rvm_ruby_version="${rvm_ruby_version:-"$(__rvm_db "maglev_version")"}" rvm_ruby_package_name="${rvm_ruby_interpreter}-${rvm_ruby_version}" rvm_ruby_url="${rvm_ruby_url:-"$maglev_url/${rvm_ruby_package_file}.${rvm_archive_extension}"}" rvm_gemstone_version=$( __rvm_curl -s https://raw.githubusercontent.com/MagLev/maglev/MagLev-${rvm_ruby_version}/version.txt | __rvm_grep "^GEMSTONE" | cut -f2 -d- ) rvm_gemstone_package_file="GemStone-${rvm_gemstone_version}.${system}-${arch}" fi export MAGLEV_HOME="$rvm_ruby_home" export GEMSTONE_GLOBAL_DIR=$MAGLEV_HOME rvm_gemstone_url="$maglev_url/${rvm_gemstone_package_file}.${rvm_archive_extension}" true # for OSX } __rvm_select_interpreter_ironruby() { rvm_ruby_patch_level="" if (( ${rvm_head_flag:=0} == 1 )) then rvm_ruby_version="head" rvm_ruby_package_name="${rvm_ruby_string}" rvm_ruby_repo_url="${rvm_ruby_repo_url:-$(__rvm_db "ironruby_repo_url")}" rvm_ruby_url="${rvm_ruby_repo_url:-$(__rvm_db "ironruby_repo_url")}" rvm_disable_binary_flag=1 else rvm_archive_extension="zip" rvm_ruby_version=${rvm_ruby_version:-"$(__rvm_db "ironruby_version")"} rvm_ruby_package_name="${rvm_ruby_interpreter}-${rvm_ruby_version}" rvm_ruby_package_file="${rvm_ruby_interpreter}-${rvm_ruby_version}.${rvm_archive_extension}" rvm_ruby_url="$(__rvm_db "ironruby_${rvm_ruby_version}_url")" fi export rvm_ruby_version rvm_ruby_string rvm_ruby_package_name rvm_ruby_repo_url rvm_ruby_url rvm_archive_extension true # for OSX } __rvm_select_interpreter_ree() { rvm_ruby_interpreter=ree rvm_ruby_version=${rvm_ruby_version:-"$(__rvm_db "ree_version")"} case "$rvm_ruby_version" in 1.8.*) true ;; # all good! *) rvm_error "Unknown Ruby Enterprise Edition version: $rvm_ruby_version" ;; esac if [[ -n "${rvm_ruby_patch_level:-0}" ]] then rvm_ruby_patch_level="${rvm_ruby_patch_level#p}" fi rvm_ruby_package_file="ruby-enterprise-$rvm_ruby_version-$rvm_ruby_patch_level" rvm_ruby_url="$(__rvm_db "${rvm_ruby_interpreter}_${rvm_ruby_version}_${rvm_ruby_patch_level}_url")" rvm_ruby_url="${rvm_ruby_url:-$(__rvm_db "${rvm_ruby_interpreter}_${rvm_ruby_version}_url")}" rvm_ruby_url="${rvm_ruby_url}/$rvm_ruby_package_file.tar.gz" true # for OSX } __rvm_select_interpreter_common() { rvm_ruby_interpreter="${1}" rvm_ruby_version="head" rvm_ruby_patch_level="" export rvm_head_flag=1 rvm_ruby_repo_url="${rvm_ruby_repo_url:-$(__rvm_db "${1}_repo_url")}" rvm_ruby_url=$rvm_ruby_repo_url rvm_ruby_configure="" rvm_ruby_make="" rvm_ruby_make_install="" } __rvm_select_interpreter_opal() { __rvm_select_interpreter_common "opal" } __rvm_select_interpreter_topaz() { __rvm_select_interpreter_common "topaz" } __rvm_select_interpreter_mruby() { rvm_ruby_interpreter="mruby" rvm_ruby_patch_level="" rvm_ruby_repo_url="${rvm_ruby_repo_url:-$(__rvm_db "mruby_repo_url")}" rvm_ruby_url=$rvm_ruby_repo_url rvm_ruby_configure="" rvm_ruby_make="" rvm_ruby_make_install="" export rvm_skip_autoreconf_flag=1 if [[ -z "${rvm_ruby_version:-}" ]] then rvm_head_flag=1 else rvm_head_flag=0 rvm_archive_extension="tar.gz" rvm_ruby_package_file="${rvm_ruby_version}" fi } __rvm_select_interpreter_ruby() { if [[ "${rvm_ruby_patch_level:-}" == "p0" ]] && __rvm_version_compare "${rvm_ruby_version}" -ge 2.1.0 && [[ ! -d "$rvm_rubies_path/$rvm_ruby_string" ]] then rvm_ruby_patch_level="" rvm_ruby_string="${rvm_ruby_string%-p0}" fi rvm_ruby_package_name="${rvm_ruby_interpreter}-${rvm_ruby_version}${rvm_ruby_patch_level:+-}${rvm_ruby_patch_level:-}" rvm_ruby_package_file="${rvm_ruby_package_name}" if [[ -z "${rvm_ruby_version:-""}" ]] && (( ${rvm_head_flag:=0} == 0 )) then rvm_error "Ruby version was not specified!" else rvm_ruby_repo_url="${rvm_ruby_repo_url:-"$(__rvm_db "ruby_repo_url")"}" if (( ${rvm_head_flag:=0} == 0 )) then if __rvm_version_compare "${rvm_ruby_version}" -ge "3.0.0" then rvm_archive_extension="tar.gz" elif __rvm_version_compare "${rvm_ruby_version}" -lt "1.8.5" then rvm_archive_extension="tar.gz" else rvm_archive_extension="tar.bz2" fi else rvm_disable_binary_flag=1 fi fi true # for OSX } __rvm_select_interpreter_ext() { if [[ -z "${rvm_ruby_name:-${detected_rvm_ruby_name:-}}" ]] then rvm_error "External ruby name was not specified!" return 1 fi } __rvm_select_interpreter_current() { ruby_binary="$(builtin command -v ruby)" if (( $? == 0)) && __rvm_string_match "$ruby_binary" "*rvm*" then rvm_ruby_string="$(dirname "$ruby_binary" | __rvm_xargs dirname | __rvm_xargs basename)" else rvm_ruby_interpreter="system" fi } __rvm_select_interpreter_default() { true # do nothing } __rvm_select_interpreter_system() { true # do nothing } __rvm_select_interpreter_user() { true # do nothing } __rvm_select_interpreter_missing() { return 2 }
rvm/rvm
1aa2df573b9d92a45e17979c3be309342f78cce6
Add Ruby 3.4.3 (#5562)
diff --git a/CHANGELOG.md b/CHANGELOG.md index 21c4b24..a84975c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,593 +1,594 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Use OpenSSL 3 for Ruby 3.2 and 3.3 [\#5480](https://github.com/rvm/rvm/pull/5480) * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) * Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) * Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) * Install `libncurses-dev` instead of `libncurses5-dev` on newer Debian and Ubuntu versions [\#5477](https://github.com/rvm/rvm/pull/5477) * Use `zlib-ng-compat` packages for Fedora 40+ [\#5479](https://github.com/rvm/rvm/pull/5479) * Detect core count on ARM-based machines [\#5498](https://github.com/rvm/rvm/pull/5498) * Fix requirement check for Ubuntu [\#5500](https://github.com/rvm/rvm/pull/5500) * Update location of homebrew install script on osx [\#5505](https://github.com/rvm/rvm/pull/5505) * Fix detection of Homebrew's write permissions when using Workbrew [\#5528](https://github.com/rvm/rvm/pull/5528) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) * 3.3.3 [\#5474](https://github.com/rvm/rvm/pull/5474) * 3.3.4 [\#5488](https://github.com/rvm/rvm/pull/5488) * 3.2.5 [\#5490](https://github.com/rvm/rvm/pull/5490) * 3.3.5 [\#5499](https://github.com/rvm/rvm/pull/5499) * 3.2.6, 3.3.6 [\#5513](https://github.com/rvm/rvm/pull/5513) * 3.4.0, 3.4.1 [\#5533](https://github.com/rvm/rvm/pull/5533) * 3.3.7 [\#5540](https://github.com/rvm/rvm/pull/5540) * 3.2.7 [\#5544](https://github.com/rvm/rvm/pull/5544) * 3.4.2 [\#5549](https://github.com/rvm/rvm/pull/5549) * 3.1.6, 3.1.7, 3.2.8 [\#5558](https://github.com/rvm/rvm/pull/5558) * 3.3.8 [\#5560](https://github.com/rvm/rvm/pull/5560) +* 3.4.3 [\#5562](https://github.com/rvm/rvm/pull/5562) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) * 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1, 24.0.2, 24.1.0, 24.1.1, 24.1.2, 24.2.0 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.3.15.0 [\#5482](https://github.com/rvm/rvm/pull/5482) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) * 9.4.8.0 [\#5484](https://github.com/rvm/rvm/pull/5484) * 9.4.9.0 [\#5512](https://github.com/rvm/rvm/pull/5512) * 9.4.10.0 [\#5538](https://github.com/rvm/rvm/pull/5538) * 9.4.11.0 [\#5541](https://github.com/rvm/rvm/pull/5541) * 9.4.12.0 [\#5548](https://github.com/rvm/rvm/pull/5548) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) * 3.1.6, 3.2.5, 3.3.2, 3.3.3 and 3.3.4 [\#5491](https://github.com/rvm/rvm/pull/5491) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 24.04 (Noble Numbat) x64 binaries * 3.2.6 and 3.3.6 [\#5529](https://github.com/rvm/rvm/pull/5529) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) #### Upgraded Ruby interpreters: * Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159), 2.5.0-preview1 [\#4204](https://github.com/rvm/rvm/pull/4204), 2.2.9, 2.3.6, 2.4.3 and 2.5.0-rc1 [\#4261](https://github.com/rvm/rvm/pull/4261), 2.5.0 [\#4265](https://github.com/rvm/rvm/pull/4265), 2.6.0-preview1 [\#4317](https://github.com/rvm/rvm/pull/4317), 2.2.10, 2.3.7, 2.4.4, 2.5.1 [\#4340](https://github.com/rvm/rvm/pull/4340) and 2.6.0-preview2[\#4395](https://github.com/rvm/rvm/pull/4395) * Add support for Rubinius 3.85-3.100 * Add support for JRuby 9.1.14.0 [\#4224](https://github.com/rvm/rvm/pull/4224), 9.1.15.0 [\#4258](https://github.com/rvm/rvm/pull/4258), 9.1.16.0 [\#4316](https://github.com/rvm/rvm/pull/4316), 9.1.17.0 [\#4366](https://github.com/rvm/rvm/pull/4366), 9.2.0.0 [\#4390](https://github.com/rvm/rvm/pull/4390) * Add support for mruby 1.4.0 [\#4286](https://github.com/rvm/rvm/pull/4286) * Add support for MagLev 1.1* and 1.2Alpha-1.2Alpha4 [\#4289](https://github.com/rvm/rvm/pull/4289) * Add support for RubyGems 2.6.14 [\#4205](https://github.com/rvm/rvm/pull/4205), 2.7.0-2.7.4 [\#4276](https://github.com/rvm/rvm/issues/4276) and 2.7.5-6 #### Binaries: * Ubuntu 16.04 x64 binaries for Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4362](https://github.com/rvm/rvm/issues/4362), 2.2.9, 2.3.6 and 2.4.3 [\#4259](https://github.com/rvm/rvm/issues/4259), 2.2.8, 2.3.5 and 2.4.2 [\#4161](https://github.com/rvm/rvm/issues/4161), 2.5.0 [\#4272](https://github.com/rvm/rvm/pull/4272) * Ubuntu 17.04 for Ruby 2.1.\*, 2.2.\* [\#4233](https://github.com/rvm/rvm/pull/4233) ## [1.29.3](https://github.com/rvm/rvm/releases/tag/1.29.3) 10 September 2017 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.2...1.29.3) #### New features: * Add RVM commands missing in bash shell completion [\#4078](https://github.com/rvm/rvm/pull/4078) * Railsexpress patches for 2.3.4, 2.3-head [\#4084](https://github.com/rvm/rvm/pull/4084), 2.2.5 and 2.2.6 [\#4153](https://github.com/rvm/rvm/pull/4153) * Update `gem-wrappers` to 1.3.0: Show warnings when the target binary is missing or is not executable [gem-wrappers \#9](https://github.com/rvm/gem-wrappers/issues/9) * Detect Zorin OS as Ubuntu [\#4140](https://github.com/rvm/rvm/issues/4140) #### Bug fixes: * Infinite loop in `gemset_create` [\#4102](https://github.com/rvm/rvm/issues/4102) * Command not found `__rvm_remote_version` error [\#4085](https://github.com/rvm/rvm/pull/4085) * Fix path of version script in `environment` [\#4117](https://github.com/rvm/rvm/pull/4117) * Define `cd()`, `pushd()` and `popd()` properly when using zsh [\#4132](https://github.com/rvm/rvm/pull/4132) * Update gem-wrappers to 1.3.1: Avoid warnings for missing ruby binaries [\#4104](https://github.com/rvm/rvm/issues/4104) * Handles :engine=> and :engine_version=> in Gemfile * Makes $rvm_ruby_string is not installed searchable by adding a fixed keyword * Correctly quotes suggested install command * Fix path to version script in rvm-installer [\#4134](https://github.com/rvm/rvm/pull/4134) * Fix rvm autolibs status, fix [\#4123](https://github.com/rvm/rvm/issues/4123) * Ruby 2.3.x and older are not compatible with OpenSSL 1.1.x on Arch [\#4006](https://github.com/rvm/rvm/issues/4006) * Allow comments after ruby directive in Gemfile [\#4056](https://github.com/rvm/rvm/issues/4056) * Ruby 2.3/4 compilation fix for GCC 7 [\#4080](https://github.com/rvm/rvm/issues/4080) [\#4115](https://github.com/rvm/rvm/issues/4115) * Add warning for sudo users [\#4009](https://github.com/rvm/rvm/issues/4009) * Allows running RVM shell function in Bash with `set -o nounset` [\#4013](https://github.com/rvm/rvm/issues/4013) diff --git a/config/known b/config/known index 1cb25ef..ed4aaee 100644 --- a/config/known +++ b/config/known @@ -1,81 +1,81 @@ # MRI Rubies [ruby-]1.8.6[-p420] [ruby-]1.8.7[-head] # security released on head [ruby-]1.9.1[-p431] [ruby-]1.9.2[-p330] [ruby-]1.9.3[-p551] [ruby-]2.0.0[-p648] [ruby-]2.1[.10] [ruby-]2.2[.10] [ruby-]2.3[.8] [ruby-]2.4[.10] [ruby-]2.5[.9] [ruby-]2.6[.10] [ruby-]2.7[.8] [ruby-]3.0[.7] [ruby-]3.1[.7] [ruby-]3.2[.8] [ruby-]3.3[.8] -[ruby-]3[.4.2] +[ruby-]3[.4.3] ruby-head # for forks use: rvm install ruby-head-<name> --url https://github.com/github/ruby.git --branch 2.2 # JRuby jruby-1.6[.8] jruby-1.7[.27] jruby-9.1[.17.0] jruby-9.2[.21.0] jruby-9.3[.15.0] jruby[-9.4.12.0] jruby-head # Rubinius rbx-1[.4.3] rbx-2.3[.0] rbx-2.4[.1] rbx-2[.5.8] rbx-3[.107] rbx-4[.20] rbx-5[.0] rbx-head # TruffleRuby truffleruby[-24.2.0] # Opal opal # Minimalistic ruby implementation - ISO 30170:2012 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1[.4.1] mruby-2.0.1 mruby-2[.1.1] mruby[-head] # Ruby Enterprise Edition ree-1.8.6 ree[-1.8.7][-2012.02] # Topaz topaz # MagLev maglev-1.0.0 maglev-1.1[RC1] maglev[-1.2Alpha4] maglev-head # Mac OS X Snow Leopard Or Newer macruby-0.10 macruby-0.11 macruby[-0.12] macruby-nightly macruby-head # IronRuby ironruby[-1.1.3] ironruby-head diff --git a/config/known_strings b/config/known_strings index 4a7edd1..b9ac4c8 100644 --- a/config/known_strings +++ b/config/known_strings @@ -24,562 +24,563 @@ jruby-1.1.4 jruby-1.1.5 jruby-1.1.6RC1 jruby-1.1.6 jruby-1.2.0RC1 jruby-1.2.0RC2 jruby-1.2.0 jruby-1.3.0RC1 jruby-1.3.0RC2 jruby-1.3.0 jruby-1.3.1 jruby-1.4.0RC1 jruby-1.4.0RC2 jruby-1.4.0RC3 jruby-1.4.0 jruby-1.4.1 jruby-1.5.0.RC1 jruby-1.5.0.RC2 jruby-1.5.0.RC3 jruby-1.5.0 jruby-1.5.1 jruby-1.5.2 jruby-1.5.3 jruby-1.5.4 jruby-1.5.5 jruby-1.5.6 jruby-1.6.0.RC1 jruby-1.6.0.RC2 jruby-1.6.0.RC3 jruby-1.6.0 jruby-1.6.1 jruby-1.6.2 jruby-1.6.3 jruby-1.6.4 jruby-1.6.5 jruby-1.6.5.1 jruby-1.6.7 jruby-1.6.7.2 jruby-1.6.8 jruby-1.7.0.preview1 jruby-1.7.0.preview2 jruby-1.7.0.RC1 jruby-1.7.0.RC2 jruby-1.7.0 jruby-1.7.1 jruby-1.7.2 jruby-1.7.3 jruby-1.7.4 jruby-1.7.5 jruby-1.7.6 jruby-1.7.7 jruby-1.7.8 jruby-1.7.9 jruby-1.7.10 jruby-1.7.11 jruby-1.7.12 jruby-1.7.13 jruby-1.7.14 jruby-1.7.15 jruby-1.7.16 jruby-1.7.16.1 jruby-1.7.16.2 jruby-1.7.17 jruby-1.7.18 jruby-1.7.19 jruby-1.7.20 jruby-1.7.20.1 jruby-1.7.21 jruby-1.7.22 jruby-1.7.23 jruby-1.7.24 jruby-1.7.25 jruby-1.7.26 jruby-1.7.27 jruby-9.0.0.0.pre1 jruby-9.0.0.0.pre2 jruby-9.0.0.0.rc1 jruby-9.0.0.0.rc2 jruby-9.0.0.0 jruby-9.0.1.0 jruby-9.0.2.0 jruby-9.0.3.0 jruby-9.0.4.0 jruby-9.0.5.0 jruby-9.1.0.0 jruby-9.1.1.0 jruby-9.1.2.0 jruby-9.1.3.0 jruby-9.1.4.0 jruby-9.1.5.0 jruby-9.1.6.0 jruby-9.1.7.0 jruby-9.1.8.0 jruby-9.1.9.0 jruby-9.1.10.0 jruby-9.1.11.0 jruby-9.1.12.0 jruby-9.1.13.0 jruby-9.1.14.0 jruby-9.1.15.0 jruby-9.1.16.0 jruby-9.1.17.0 jruby-9.2.0.0 jruby-9.2.1.0 jruby-9.2.2.0 jruby-9.2.3.0 jruby-9.2.4.0 jruby-9.2.4.1 jruby-9.2.5.0 jruby-9.2.6.0 jruby-9.2.7.0 jruby-9.2.8.0 jruby-9.2.9.0 jruby-9.2.10.0 jruby-9.2.11.0 jruby-9.2.11.1 jruby-9.2.12.0 jruby-9.2.13.0 jruby-9.2.14.0 jruby-9.2.15.0 jruby-9.2.16.0 jruby-9.2.17.0 jruby-9.2.18.0 jruby-9.2.19.0 jruby-9.2.20.0 jruby-9.2.20.1 jruby-9.2.21.0 jruby-9.3.0.0 jruby-9.3.1.0 jruby-9.3.2.0 jruby-9.3.3.0 jruby-9.3.4.0 jruby-9.3.6.0 jruby-9.3.7.0 jruby-9.3.8.0 jruby-9.3.9.0 jruby-9.3.10.0 jruby-9.3.11.0 jruby-9.3.13.0 jruby-9.3.14.0 jruby-9.3.15.0 jruby-9.4.0.0 jruby-9.4.1.0 jruby-9.4.2.0 jruby-9.4.3.0 jruby-9.4.4.0 jruby-9.4.5.0 jruby-9.4.6.0 jruby-9.4.7.0 jruby-9.4.8.0 jruby-9.4.9.0 jruby-9.4.10.0 jruby-9.4.11.0 jruby-9.4.12.0 macruby-0.12 maglev-1.0.0 maglev-1.1beta maglev-1.1beta2 maglev-1.1RC1 maglev-1.2Alpha maglev-1.2Alpha2 maglev-1.2Alpha3 maglev-1.2Alpha4 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1.4.0 mruby-1.4.1 mruby-2.0.0 mruby-2.0.1 mruby-2.1.0-rc mruby-2.1.0 mruby-2.1.1-rc mruby-2.1.1-rc2 mruby-2.1.1 rbx-1.0.0-20100514 rbx-1.0.1-20100603 rbx-1.1.0-20100923 rbx-1.1.1-20101116 rbx-1.2.0-20101221 rbx-1.2.1-20110215 rbx-1.2.2-20110222 rbx-1.2.3-20110315 rbx-1.2.4-20110705 rbx-1.3.2 rbx-1.3.3 rbx-1.4.1 rbx-1.4.3 rbx-2.0.0 rbx-2.1.0 rbx-2.1.1 rbx-2.2.0 rbx-2.2.2 rbx-2.2.3 rbx-2.2.4 rbx-2.2.5 rbx-2.2.6 rbx-2.2.7 rbx-2.2.8 rbx-2.2.9 rbx-2.2.10 rbx-2.3.0 rbx-2.4.0 rbx-2.4.1 rbx-2.5.0 rbx-2.5.1 rbx-2.5.2 rbx-2.5.3 rbx-2.5.4 rbx-2.5.5 rbx-2.5.6 rbx-2.5.7 rbx-2.5.8 rbx-3.70 rbx-3.71 rbx-3.72 rbx-3.73 rbx-3.74 rbx-3.75 rbx-3.76 rbx-3.77 rbx-3.78 rbx-3.79 rbx-3.80 rbx-3.81 rbx-3.82 rbx-3.83 rbx-3.84 rbx-3.85 rbx-3.86 rbx-3.87 rbx-3.88 rbx-3.89 rbx-3.90 rbx-3.91 rbx-3.92 rbx-3.93 rbx-3.94 rbx-3.95 rbx-3.96 rbx-3.97 rbx-3.98 rbx-3.99 rbx-3.100 rbx-3.101 rbx-3.102 rbx-3.103 rbx-3.104 rbx-3.105 rbx-3.106 rbx-3.107 rbx-4.0 rbx-4.1 rbx-4.2 rbx-4.3 rbx-4.4 rbx-4.5 rbx-4.6 rbx-4.7 rbx-4.8 rbx-4.9 rbx-4.10 rbx-4.11 rbx-4.12 rbx-4.13 rbx-4.14 rbx-4.15 rbx-4.16 rbx-4.17 rbx-4.18 rbx-4.19 rbx-4.20 rbx-5.0 ree-1.8.6-20080507 ree-1.8.6-20080621 ree-1.8.6-20080623 ree-1.8.6-20080624 ree-1.8.6-20080709 ree-1.8.6-20080810 ree-1.8.6-20081205 ree-1.8.6-20081215 ree-1.8.6-20090113 ree-1.8.6-20090201 ree-1.8.6-20090421 ree-1.8.6-20090520 ree-1.8.6-20090610 ree-1.8.6-20090928 ree-1.8.7-2009.10 ree-1.8.7-2010.01 ree-1.8.7-2010.02 ree-1.8.7-2011.01 ree-1.8.7-2011.02 ree-1.8.7-2011.03 ree-1.8.7-2011.12 ree-1.8.7-2012.02 ruby-1.8.5-p115 ruby-1.8.5-p231 ruby-1.8.6-p286 ruby-1.8.6-p287 ruby-1.8.6-p369 ruby-1.8.6-p383 ruby-1.8.6-p398 ruby-1.8.6-p399 ruby-1.8.6-p420 ruby-1.8.7-p160 ruby-1.8.7-p174 ruby-1.8.7-p248 ruby-1.8.7-p249 ruby-1.8.7-p299 ruby-1.8.7-p302 ruby-1.8.7-p330 ruby-1.8.7-p334 ruby-1.8.7-p352 ruby-1.8.7-p357 ruby-1.8.7-p358 ruby-1.8.7-p370 ruby-1.8.7-p371 ruby-1.8.7-p374 ruby-1.9.0 ruby-1.9.1-p129 ruby-1.9.1-p243 ruby-1.9.1-p376 ruby-1.9.1-p378 ruby-1.9.1-p429 ruby-1.9.1-p431 ruby-1.9.2-p0 ruby-1.9.2-p136 ruby-1.9.2-p180 ruby-1.9.2-p290 ruby-1.9.2-p318 ruby-1.9.2-p320 ruby-1.9.2-p330 ruby-1.9.3-preview1 ruby-1.9.3-rc1 ruby-1.9.3-p0 ruby-1.9.3-p125 ruby-1.9.3-p194 ruby-1.9.3-p286 ruby-1.9.3-p327 ruby-1.9.3-p362 ruby-1.9.3-p374 ruby-1.9.3-p385 ruby-1.9.3-p392 ruby-1.9.3-p429 ruby-1.9.3-p448 ruby-1.9.3-p484 ruby-1.9.3-p545 ruby-1.9.3-p547 ruby-1.9.3-p550 ruby-1.9.3-p551 ruby-2.0.0-preview1 ruby-2.0.0-preview2 ruby-2.0.0-rc1 ruby-2.0.0-rc2 ruby-2.0.0-p0 ruby-2.0.0-p195 ruby-2.0.0-p247 ruby-2.0.0-p353 ruby-2.0.0-p451 ruby-2.0.0-p481 ruby-2.0.0-p576 ruby-2.0.0-p594 ruby-2.0.0-p598 ruby-2.0.0-p643 ruby-2.0.0-p645 ruby-2.0.0-p647 ruby-2.0.0-p648 ruby-2.1.0-preview1 ruby-2.1.0-preview2 ruby-2.1.0-rc1 ruby-2.1.0 ruby-2.1.1 ruby-2.1.2 ruby-2.1.3 ruby-2.1.4 ruby-2.1.5 ruby-2.1.6 ruby-2.1.7 ruby-2.1.8 ruby-2.1.9 ruby-2.1.10 ruby-2.2.0-preview1 ruby-2.2.0-preview2 ruby-2.2.0-rc1 ruby-2.2.0 ruby-2.2.1 ruby-2.2.2 ruby-2.2.3 ruby-2.2.4 ruby-2.2.5 ruby-2.2.6 ruby-2.2.7 ruby-2.2.8 ruby-2.2.9 ruby-2.2.10 ruby-2.3.0-preview1 ruby-2.3.0-preview2 ruby-2.3.0 ruby-2.3.1 ruby-2.3.2 ruby-2.3.3 ruby-2.3.4 ruby-2.3.5 ruby-2.3.6 ruby-2.3.7 ruby-2.3.8 ruby-2.4.0-preview1 ruby-2.4.0-preview2 ruby-2.4.0-preview3 ruby-2.4.0-rc1 ruby-2.4.0 ruby-2.4.1 ruby-2.4.2 ruby-2.4.3 ruby-2.4.4 ruby-2.4.5 ruby-2.4.6 ruby-2.4.7 ruby-2.4.8 ruby-2.4.9 ruby-2.4.10 ruby-2.5.0-preview1 ruby-2.5.0-rc1 ruby-2.5.0 ruby-2.5.1 ruby-2.5.2 ruby-2.5.3 ruby-2.5.4 ruby-2.5.5 ruby-2.5.6 ruby-2.5.7 ruby-2.5.8 ruby-2.5.9 ruby-2.6.0-preview1 ruby-2.6.0-preview2 ruby-2.6.0-preview3 ruby-2.6.0-rc1 ruby-2.6.0-rc2 ruby-2.6.0 ruby-2.6.1 ruby-2.6.2 ruby-2.6.3 ruby-2.6.4 ruby-2.6.5 ruby-2.6.6 ruby-2.6.7 ruby-2.6.8 ruby-2.6.9 ruby-2.6.10 ruby-2.7.0-preview1 ruby-2.7.0-preview2 ruby-2.7.0-preview3 ruby-2.7.0-rc1 ruby-2.7.0-rc2 ruby-2.7.0 ruby-2.7.1 ruby-2.7.2 ruby-2.7.3 ruby-2.7.4 ruby-2.7.5 ruby-2.7.6 ruby-2.7.7 ruby-2.7.8 ruby-3.0.0-preview1 ruby-3.0.0-preview2 ruby-3.0.0-rc1 ruby-3.0.0 ruby-3.0.1 ruby-3.0.2 ruby-3.0.3 ruby-3.0.4 ruby-3.0.5 ruby-3.0.6 ruby-3.0.7 ruby-3.1.0-preview1 ruby-3.1.0 ruby-3.1.1 ruby-3.1.2 ruby-3.1.3 ruby-3.1.4 ruby-3.1.5 ruby-3.1.6 ruby-3.1.7 ruby-3.2.0-preview1 ruby-3.2.0-preview2 ruby-3.2.0-preview3 ruby-3.2.0-rc1 ruby-3.2.0 ruby-3.2.1 ruby-3.2.2 ruby-3.2.3 ruby-3.2.4 ruby-3.2.5 ruby-3.2.6 ruby-3.2.7 ruby-3.2.8 ruby-3.3.0-preview1 ruby-3.3.0-preview2 ruby-3.3.0-preview3 ruby-3.3.0 ruby-3.3.1 ruby-3.3.2 ruby-3.3.3 ruby-3.3.4 ruby-3.3.5 ruby-3.3.6 ruby-3.3.7 ruby-3.3.8 ruby-3.4.0-preview1 ruby-3.4.0 ruby-3.4.1 ruby-3.4.2 +ruby-3.4.3 truffleruby-1.0.0-rc2 truffleruby-1.0.0-rc3 truffleruby-1.0.0-rc5 truffleruby-1.0.0-rc6 truffleruby-1.0.0-rc7 truffleruby-1.0.0-rc8 truffleruby-1.0.0-rc9 truffleruby-1.0.0-rc10 truffleruby-1.0.0-rc11 truffleruby-1.0.0-rc12 truffleruby-1.0.0-rc13 truffleruby-1.0.0-rc14 truffleruby-1.0.0-rc15 truffleruby-1.0.0-rc16 truffleruby-19.0.0 truffleruby-19.0.2 truffleruby-19.1.0 truffleruby-19.1.1 truffleruby-19.2.0 truffleruby-19.2.0.1 truffleruby-19.2.1 truffleruby-19.3.0 truffleruby-19.3.0.2 truffleruby-19.3.1 truffleruby-20.0.0 truffleruby-20.1.0 truffleruby-20.2.0 truffleruby-20.3.0 truffleruby-21.0.0 truffleruby-21.1.0 truffleruby-21.2.0 truffleruby-21.2.0.1 truffleruby-21.3.0 truffleruby-22.0.0.2 truffleruby-22.1.0 truffleruby-22.2.0 truffleruby-22.3.0 truffleruby-22.3.1 truffleruby-23.0.0-preview1 truffleruby-23.0.0 truffleruby-23.1.0 truffleruby-23.1.1 truffleruby-23.1.2 truffleruby-24.0.0 truffleruby-24.0.1 truffleruby-24.0.2 truffleruby-24.1.0 truffleruby-24.1.1 truffleruby-24.1.2 truffleruby-24.2.0 diff --git a/config/md5 b/config/md5 index 2d396c2..e3e2311 100644 --- a/config/md5 +++ b/config/md5 @@ -1299,775 +1299,776 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=ea7767cbfacd744813ccaedd1b4e0013 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=0d9f69db1bd665c9e5c9592b483b31a1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=068f5c90b5b381cd58d8804ca2b3be64 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=6181192273efab4aabaa8628fc83c7be https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=fa690cb7132706fb25dfc625e949e96a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=c443f32cd4c91fb37ff79bd86906e1bc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=6fa3edab1bbacf7328074a7fba22be50 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=a950bc4af16446fce2f9266e95629bdb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=d9bce275c2f36dbde8a6c25f9fa10c2e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=6486c5ce9ec697039b0bb36d2bf18a0d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=79f0927984b8e6e7934b34bdb2a3e5e5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=214ac1e49a75291a68c63134bc246a8a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=94a39d1b226350362666f6305866b20b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=4db7d99d775a7f24bb55c6053d4eb864 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=c0db831a97b8427e0777adeaebf7a9d8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=830b4845fbfd45df75758e311a013ffc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=3fc39c824b2060a3a2766ca01037dd15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=0b395f3884c78c6938896ff253c5251b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=2be294a056a45a50262d1796906f8860 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=0270733b808489a91e41f73d9fe971e9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=33db4a687e4943faf6c2853179b67935 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=dea6663b2c113190e9b99a6dcedb3aa0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=835e563bfbe3c8311326660a51f3394c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=66e3c1e1140300c8236c13e3178cb8ab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=07b12bd2a7d8242c34d824882e654c22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=fe12c0e211f90076b51c7916c830971f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=65ab3105b0c6d5e8a2e9977a3ab7ed94 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=08547ad8e760e0776c74401ae5bbd8e5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=631b4ea065d18df96c6ccbc141904bb3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=03a67e234d886f3c698c1571e42cc7a6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=0ded0cb8ce18a846d71d7e04d24c2e78 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=5251aed0ba4d8349413d6bf4c261bea3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=f09694c4f23d7625f72606bce0efb710 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=340db3acb58829b51e4a7ac1c77246d4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1bd86cb46a9e6c40c285258879a3d59 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=d86b2a1e9721b9459e1283006e03fa92 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.2.6.tar.bz2=7d7e84912bb4d1f9915bb391fac54694 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.3.6.tar.bz2=3148fa25b5cd308156c567181ccf5ac3 ironruby-1.0.zip=7a92888837b3507355ed391dbfc0ab83 ironruby-1.1.3.zip=4f2af6253a459cc054d6c55956e514a9 jruby-bin-1.3.1.tar.gz=4a95db8fc93ed7219663fbede98b6117 jruby-bin-1.4.tar.gz=54dba9a88b2b3f99ac86a79828d0178b jruby-bin-1.4.0.tar.gz=f37322c18e9134e91e064aebb4baa4c7 jruby-bin-1.4.0.zip=3a9c8a5115a679da7d7a49a56d57d4c0 jruby-bin-1.4.1.tar.gz=a4aa8c43d1b9ffd9dbc6cb738d55a034 jruby-bin-1.5.0.tar.gz=ee2b4e326e8b87858e5dd0c8e94102e6 jruby-bin-1.5.1.tar.gz=74251383e08e8c339cacc35a7900d3af jruby-bin-1.5.2.tar.gz=d239deb9a108a6abbfbd6cb79cf8255b jruby-bin-1.5.3.tar.gz=ccb0b2dbc300d8dd4ad1bd4da48b8320 jruby-bin-1.5.5.tar.gz=8e00f7d40cbf221f733d6f7a15784e9a jruby-bin-1.5.6.tar.gz=94033a36517645b7a7ec781a3507c654 jruby-bin-1.6.0.tar.gz=f4d7e339dfc0fbaef5b878d1c0a66fbe jruby-bin-1.6.2.tar.gz=a46f978c24a208717023bb4b8995c678 jruby-bin-1.6.3.tar.gz=694b80e4eea784cdc1eb39fb1e3132c9 jruby-bin-1.6.4.tar.gz=0e96b6f4d1c6f12b5ac480cd7ab7da78 jruby-bin-1.6.5.tar.gz=54354082673bd115f945890dc6864413 jruby-bin-1.6.5.1.tar.gz=246a7aa2b7d7e6e9e8a0c2e282cbcfd0 jruby-bin-1.6.7.tar.gz=fd1b8d7389aa92da69ea6efb4782e40a jruby-bin-1.6.7.2.tar.gz=1e520f1b5130114464e5f1950cb24774 jruby-bin-1.6.8.tar.gz=a76ac5845640e4a1ebdfa74421efc935 jruby-bin-1.7.0.preview1.tar.gz=7b9e5e1cd0d818d0199086d948f948b4 jruby-bin-1.7.0.preview2.tar.gz=e8f1623759590aadbf49e4cc53f1cb61 jruby-bin-1.7.0.RC1.tar.gz=bdddcee3d126cddd9a85b5a066a7e25e jruby-bin-1.7.0.RC2.tar.gz=ffe2dd61711f4574fed344af151e5de5 jruby-bin-1.7.0.tar.gz=21861e0ecdbf48cda713c8ade82fdddb jruby-bin-1.7.1.tar.gz=86e659863541d8b987cb7bfbe3b4cfb0 jruby-bin-1.7.2.tar.gz=6ec9293b6dffd1e8ee57e9b7c6d18cbe jruby-bin-1.7.3.tar.gz=f0adf8ccee6f6777f7ab8e5e1d7a1f47 jruby-bin-1.7.4.tar.gz=c6a56eae78db28dddba911ccd0848c32 jruby-bin-1.7.5.tar.gz=c2a28c43c8095127d4a4aee0cf9b1439 jruby-bin-1.7.6.tar.gz=5d10011516a3d3bde10209b60cfcc0ef jruby-bin-1.7.7.tar.gz=9d6df2188fa57f12bf6fde4e4b2e3f09 jruby-bin-1.7.8.tar.gz=1e68f39d6dba7b6d9db81e24bb6b7d0a jruby-bin-1.7.9.tar.gz=b2e44f1f44837c07068ee453a89f4b55 jruby-bin-1.7.10.tar.gz=c84fe9245a73f9cd29f56343b7d2e39a jruby-bin-1.7.11.tar.gz=d6e6ab72426fa7fdc9ae55950980d877 jruby-bin-1.7.12.tar.gz=2073aa6dfc7c701ef7c3d3143d181582 jruby-bin-1.7.14.tar.gz=bc33284f27a3508a70d2ade100a2f6bd jruby-bin-1.7.15.tar.gz=92e63cffcb86842511aeeed95bdf96ed jruby-bin-1.7.16.tar.gz=92cb058d1a896257b5ac1c26dc433506 jruby-bin-1.7.16.1.tar.gz=eec2f0e03560bacf02a09c0096a99cad jruby-bin-1.7.16.2.tar.gz=cd31909b67239c5c6a795521fca5c239 jruby-bin-1.7.17.tar.gz=8b78ba1acdb718431f71c38287c07967 jruby-bin-1.7.18.tar.gz=aa7286140be0f6f60534ebffededc708 jruby-bin-1.7.19.tar.gz=bc38596757d8000d6ca4c4c3f8eacea6 jruby-bin-1.7.20.tar.gz=0c2adc160cb85c888b269e8ac4f886fc jruby-bin-1.7.21.tar.gz=bc91594072032023d146f330764d3274 jruby-bin-1.7.22.tar.gz=1da904bf41d362d0d0b366d9e781168f jruby-bin-1.7.23.tar.gz=41e3f45c28c94a275f9eeb22721da35d jruby-bin-1.7.25.tar.gz=fc43ead73f657f5261428923974fd605 jruby-bin-1.7.26.tar.gz=4ca60264a9560f37fdba8108543e72c2 jruby-bin-1.7.27.tar.gz=b98b0a2c52e885a868a2b60092e1cd3d jruby-bin-9.0.0.0.pre1.tar.gz=d5c8b30648348aa883f893d464d46bf1 jruby-bin-9.0.0.0.pre2.tar.gz=86994a9d7ed2cf318c75392623a3e6da jruby-bin-9.0.0.0.tar.gz=fe9036ea69bf23dc3b69cfc94adb5404 jruby-bin-9.0.1.0.tar.gz=a82bc640e0080b1d9a21d1477c8400e3 jruby-bin-9.0.3.0.tar.gz=828dd6c6dd18e5b186ccfd65753077bd jruby-bin-9.0.4.0.tar.gz=645bf4a1dcde3f19dc0fff75c8b4b685 jruby-bin-9.0.5.0.tar.gz=1d2dc649cbacbe26418ef3ba421018b1 jruby-bin-9.1.0.0.tar.gz=fe26e6308d006d35eb613cdd47d1dc99 jruby-bin-9.1.1.0.tar.gz=8356334270df07a214590d00a986837b jruby-bin-9.1.2.0.tar.gz=749bb917dde9666e365e12bbe776a5c2 jruby-bin-9.1.3.0.tar.gz=91c246cd623702032e88283565da5480 jruby-bin-9.1.4.0.tar.gz=5b80b78c09bf0cd4dcbcb9e1fe3e8b73 jruby-bin-9.1.5.0.tar.gz=e9b2cc44757db4cfbe7da79601d0169a jruby-bin-9.1.6.0.tar.gz=4092a89b01b55d1fb5498113f97ab0ca jruby-bin-9.1.7.0.tar.gz=b120c3eaeef7ff2aed3a57701e414e78 jruby-bin-9.1.8.0.tar.gz=0fdee002c56ec91dff1efffce205265c jruby-bin-9.1.9.0.tar.gz=170efc34297d7ac2a56bb1163e96b363 jruby-bin-9.1.10.0.tar.gz=b75e0d1a200e8f790d8bbc84f91e3002 jruby-bin-9.1.11.0.tar.gz=0502a14141da25a460ce197720bab4c3 jruby-bin-9.1.12.0.tar.gz=74bd7ae08c159fc62cb6f64845a868cc jruby-bin-9.1.13.0.tar.gz=6c642c8a2653a585779f453d8c843fd7 jruby-bin-9.1.14.0.tar.gz=a7e0ecd529690025d327c45744f60fa4 jruby-bin-9.1.15.0.tar.gz=01c29690324d7eb414fba66e4c009c9e jruby-bin-9.1.16.0.tar.gz=e64c3aa1310c272194fd1750b0b79fac jruby-bin-9.1.17.0.tar.gz=f28d1fcbb60e550f3abd839102ad0069 jruby-bin-9.2.0.0.tar.gz=bd476da4bed39ffcfff7116f448a5365 jruby-bin-9.2.1.0.tar.gz=4b78b0a40ca541556f5ee75a815e0be0 jruby-bin-9.2.2.0.tar.gz=be678559801be029fe233c33396e34d2 jruby-bin-9.2.3.0.tar.gz=79328ab1ed37d612da35271183e46bbd jruby-bin-9.2.4.0.tar.gz=f538f2be459f0f0e517a53446e78a354 jruby-bin-9.2.4.1.tar.gz=d373bbc2bd6caabfcc9914c4067e9d24 jruby-bin-9.2.5.0.tar.gz=14582fd6eee19610f0a7433ce5dd5ce4 jruby-bin-9.2.6.0.tar.gz=dba182ac9943b726b609ca61747c1835 jruby-bin-9.2.7.0.tar.gz=c0111b2cafa920df76284044e1aeedc7 jruby-bin-9.2.8.0.tar.gz=7d652b586a18f1c665289fd7e6edf4f5 jruby-bin-9.2.9.0.tar.gz=74b3451f79c13c2fc66c6dee69d46699 jruby-bin-9.2.10.0.tar.gz=e6ce97eae6e35b622c1b572f9297705b jruby-bin-9.2.11.0.tar.gz=22b003adfb03b253721cc85db248698f jruby-bin-9.2.11.1.tar.gz=687586132f7b649b1bdd7b823577c9d8 jruby-bin-9.2.12.0.tar.gz=cc7599837fbd0839cce7293577a34f2c jruby-bin-9.2.13.0.tar.gz=99df4eb89f88c7582bfe7c313daec7b4 jruby-bin-9.2.14.0.tar.gz=421c5b8146701177a738a0a691190018 jruby-bin-9.2.15.0.tar.gz=ba593f1de2c4e592a8ca9b9e903af457 jruby-bin-9.2.16.0.tar.gz=d8d954ee0ab6f4868c3fc63339660af9 jruby-bin-9.2.17.0.tar.gz=382fb3d9d2982efd5396f1a42e3fa6a1 jruby-bin-9.2.18.0.tar.gz=002ac95859a2176cb0a58d81d6e0fb14 jruby-bin-9.2.19.0.tar.gz=0961867a77838853f32ee72dbde7c00e jruby-bin-9.2.20.0.tar.gz=840876dd0ca0098452dd2667fe9dd7f4 jruby-bin-9.2.20.1.tar.gz=5856ed030f0d9e75d2384cf42f62a4de jruby-bin-9.2.21.0.tar.gz=9957c1d2bd9265144fe55f9f7093272a jruby-bin-9.3.0.0.tar.gz=501a3c975b3c9478b72d4b0cd37170b9 jruby-bin-9.3.1.0.tar.gz=201d3e483bf847f5c59f4b1f3bf594d5 jruby-bin-9.3.2.0.tar.gz=259c276f68a01495dda24407394a382d jruby-bin-9.3.3.0.tar.gz=cd49b81753048cee9c8ffdd2ce1cb3e2 jruby-bin-9.3.4.0.tar.gz=7292dd9a56155aa015ec08c03855b3fc jruby-bin-9.3.6.0.tar.gz=bc5a7b02be69fdf3f5584e8880fc7dcc jruby-bin-9.3.7.0.tar.gz=49b17b5cd7cf8bfb09d8f64147d992ef jruby-bin-9.3.8.0.tar.gz=6ea209b699a06944d0653d8048d8bfec jruby-bin-9.3.9.0.tar.gz=9a0f0a931346bc6ea34196a5c88002ec jruby-bin-9.3.10.0.tar.gz=83c9d776dfc8cf33bfa60f7e78077160 jruby-bin-9.3.11.0.tar.gz=6ccc04e658c49db19fc0c452db0f2931 jruby-bin-9.3.13.0.tar.gz=3f20268b494da900504e921507248183 jruby-bin-9.3.14.0.tar.gz=87a96fd3af448ec8fd5ca45c6469ecc9 jruby-bin-9.3.15.0.tar.gz=385fabe180b68fb8cd3743b315109e5f jruby-bin-9.4.0.0.tar.gz=d0136daa4910f6e6b21858260eb00fe2 jruby-bin-9.4.1.0.tar.gz=abe2669672ac973f1b41a4d3860eb7ae jruby-bin-9.4.2.0.tar.gz=486e50f3c74e7400e71631819fde91da jruby-bin-9.4.3.0.tar.gz=526006fefb3e5ffc5095ab5599cc38c6 jruby-bin-9.4.4.0.tar.gz=287b5c3a9b63ff93e49ae9dc0347263b jruby-bin-9.4.5.0.tar.gz=09c6fceb38d6c086af2e4d5f21f9fe65 jruby-bin-9.4.6.0.tar.gz=5e2fe4ed897d938332ee0d85d2aa60bc jruby-bin-9.4.7.0.tar.gz=a0633ca837efff62edca84ceae1f5515 jruby-bin-9.4.8.0.tar.gz=9f520a3a416b598b4e53916e7180b623 jruby-bin-9.4.9.0.tar.gz=b7a789e9ff1b87d0e8c7bda7fae31c16 jruby-bin-9.4.10.0.tar.gz=36d6d8d745e793580ec4b12caa257501 jruby-bin-9.4.11.0.tar.gz=46e632baba1068e17345c7d24fec4241 jruby-bin-9.4.12.0.tar.gz=c7a26b4bd2fde1064b1cc6bf67f2f645 libiconv-1.13.1.tar.gz=7ab33ebd26687c744a37264a330bbe9a MacRuby%200.5.zip=675454a8c7bc19d606d90a726e08427c MacRuby%200.6.zip=a80afd3700c88cf95c539fc63b272faf MacRuby%200.7.1.zip=e8245dcd03c0757dfae7e6fee913947a MacRuby%200.7.zip=0bb60588c9ec9b1517665743bb05132f MacRuby%200.8.zip=735ac0a70f539e00b5de6fbec09c2c5c MacRuby%200.9.zip=fa01345e8fbfee620bbac64743a45f69 MacRuby%200.10.zip=1662d13d2f73cfc26258598f6988dcbc MacRuby%200.11.zip=b0cc23d60484a07012bcad549cef6054 MacRuby%200.12.zip=e1c5fa1b007a1cdc38c527a47302bf5e MagLev-1.0.0.tar.gz=e02cb8ee04438451eb78df14f91a68a9 MagLev-1.1beta.tar.gz=d542c7af290ce3b588b57629906b19e9 MagLev-1.1beta2.tar.gz=0ef88d5d145611aef324cb51be0aaafd MagLev-1.1RC1.tar.gz=41f4a0994daf1e5271cbd0ebe57816f4 MagLev-1.2Alpha.tar.gz=5c7dd3acef9dbddc0829bb1daa087abb MagLev-1.2Alpha2.tar.gz=cbbeae109854a6bf107a747a93fd478b MagLev-1.2Alpha3.tar.gz=b7470518f2b697eb1a5a39eff9b6d749 MagLev-1.2Alpha4.tar.gz=d54f04a611ce838b9d7009627065b7ca mruby-1.0.0.tar.gz=d9aec6a20fc1add65ee07ff6cf0e1ef2 mruby-1.1.0.tar.gz=60d75ea704c9285f3c80b3ad1d2b68de mruby-1.2.0.tar.gz=b5a3b7962d9db8cb8fb8105aa914d16c mruby-1.3.0.tar.gz=9714dd2804064d0043e099b7211d72b9 mruby-1.4.0.tar.gz=25efc35511070454074b36863c4d5b5e mruby-1.4.1.tar.gz=b40bf09af3f4c6e2bc443b9ac803a3ad mruby-2.0.0.tar.gz=b86c6a1dd86cb4ebe51e3fe38964a830 mruby-2.0.1.tar.gz=15b426a8a94a610c45414578786d05e3 mruby-2.1.0-rc.tar.gz=58a85fcb102d72900a25190da670e01d mruby-2.1.0.tar.gz=c01a4bbf62e6f5765c70b8813e0ce7da mruby-2.1.1-rc.tar.gz=809edd80e680855e7c4cf3c569972f28 mruby-2.1.1-rc2.tar.gz=24879fa5eb587f9415f03f8f3701842e mruby-2.1.1.tar.gz=c0ee4a112695046b9e4f177e31096d6c ncurses.tar.gz=cce05daf61a64501ef6cd8da1f727ec6 openssl-0.9.8k.tar.gz=e555c6d58d276aec7fdc53363e338ab3 openssl-0.9.8n.tar.gz=076d8efc3ed93646bd01f04e23c07066 openssl-1.0.1c.tar.gz=ae412727c8c15b67880aef7bd2999b2e openssl-1.0.1i.tar.gz=c8dc151a671b9b92ff3e4c118b174972 pkg-config-0.23.tar.gz=d922a88782b64441d06547632fd85744 readline-5.2.tar.gz=e39331f32ad14009b9ff49cc10c5e751 readline-6.0.tar.gz=b7f65a48add447693be6e86f04a63019 readline-6.2.tar.gz=67948acb2ca081f23359d0256e9a271c release-2.0.0-rc1.zip=b05b5e3c2712a294e4b09ebf450c1bfe rubinius-1.0.0-20100514.tar.gz=b05f4e791d3712c5a50b3d210dac6eb0 rubinius-1.0.1-20100603.tar.gz=eb185703c7ae0c0210e8dcb7f783ee8e rubinius-1.1.0-20100923.tar.gz=e2ae16238b201de09975abe19da09ea9 rubinius-1.1.1-20101116.tar.gz=b39f618eeba37c3aff215da8bca55fd7 rubinius-1.2.0-20101221.tar.gz=4284c2660f1f648942de35d4fc871f70 rubinius-1.2.1-20110215.tar.gz=e4a5127480062fddddc7ce2860b3b813 rubinius-1.2.2-20110222.tar.gz=59124378fb7ee040e9ee4e4736d89fc0 rubinius-1.2.3-20110315.tar.gz=9782dab18c2dd440af6b76e8eb5bc0f0 rubinius-1.2.4-20110705.tar.gz=403c777d19b3553e9cb36701fe002c5e rubinius-1.3.2.tar.bz2=64801ad8dd4e5e4fcb74ff313fec0a69 rubinius-1.3.3.tar.bz2=79f1f860ed8242257bd7f3e88c81a197 rubinius-1.4.1.tar.bz2=76b840405d4b9303261c27cf15002386 rubinius-2.0.0.tar.bz2=62e379e044c822b81e7b20a27daf133e rubinius-2.1.0.tar.bz2=908053f38fd840c75a93aab7487c20a5 rubinius-2.1.1.tar.bz2=6b4df0caec5ea88373e113f97a3b4c72 rubinius-2.2.0.tar.bz2=f1fbc6f3baf1da5ad86b3858f30f3349 rubinius-2.2.2.tar.bz2=ac70d629ea43525d91e81f4ccf135299 rubinius-2.2.3.tar.bz2=d9978cf1a4e8f0310db63e49834f9837 rubinius-2.2.4.tar.bz2=c10699da85a8eb5861a37b29077213bd rubinius-2.2.5.tar.bz2=5996dc8529b2ffe5921c5e7020bee20e rubinius-2.2.6.tar.bz2=85339bb6dd525eee719edf0551868f56 rubinius-2.2.7.tar.bz2=de2e6f4c3bd9a90bcb89f2ea27ddee9e rubinius-2.2.8.tar.bz2=c4db1ffb8dbdf864240cabe8b7758b49 rubinius-2.2.9.tar.bz2=0bf87ba617fa989e47d20942410028af rubinius-2.2.10.tar.bz2=8680da7eb921e6f595a1d716915ca7e0 rubinius-2.3.0.tar.bz2=e003a30af6689c8198116b3405d09d8e rubinius-2.4.0.tar.bz2=62391a51f49820daa51463066c3ce007 rubinius-2.4.1.tar.bz2=7758721b6e848387c3943ddb9ebd9479 rubinius-2.5.0.tar.bz2=178baa1ad172df0801765ea93bc36d87 rubinius-2.5.1.tar.bz2=77e1b87dc357691ad44b561a5f45c188 rubinius-2.5.2.tar.bz2=e5973d6e0a16f0390dc2a7478db83ff5 rubinius-2.5.3.tar.bz2=b19709eb3fa9e05b3fa6a357b33e3b5b rubinius-2.5.4.tar.bz2=64587916e5d445ed9bc630017a04498e rubinius-2.5.5.tar.bz2=ef671bbab50cbe2f70f953c491311261 rubinius-2.5.6.tar.bz2=597e4b049f49966c646faf699856c1b9 rubinius-2.5.7.tar.bz2=9a7f404019bce9fc34a7af7feb7cbb74 rubinius-2.5.8.tar.bz2=a24520892cada1f660e719a25abf63e3 ruby-1.8.5-p115.tar.bz2=03955e3c367b9beb3efe144c9f00d689 ruby-1.8.5-p115.tar.gz=20ca6cc87eb077296806412feaac0356 ruby-1.8.5-p231.tar.bz2=327f5aa6573787432222e96195cffd1e ruby-1.8.5-p231.tar.gz=e900cf225d55414bffe878f00a85807c ruby-1.8.6-p286.tar.bz2=e6b6bf8f34370e433936adb7a7065e63 ruby-1.8.6-p286.tar.gz=797ea136fe43e4286c9362ee4516674e ruby-1.8.6-p287.tar.bz2=80b5f3db12531d36e6c81fac6d05dda9 ruby-1.8.6-p287.tar.gz=6ff3420094711266c3201a0c7c2faa38 ruby-1.8.6-p369.tar.bz2=c3c1f3dd0dfbd2e17a04e59c2f12cfc8 ruby-1.8.6-p369.tar.gz=8c140ae28b4c3947b92dfad69109d90b ruby-1.8.6-p383.tar.bz2=a48703cd982b9f0e3002700a50b0e88e ruby-1.8.6-p383.tar.gz=4f49544d4a4d0d34e9d86c41e853db2e ruby-1.8.6-p398.tar.bz2=fbd43dc44ee26be4d37e6bebbed6f8bd ruby-1.8.6-p398.tar.gz=736db5f56c2d9b0136e563d049249fa8 ruby-1.8.6-p399.tar.bz2=f77c307cb72fb8808b0e85af5d05cefc ruby-1.8.6-p399.tar.gz=c3d16cdd3c1ee8f3b7d1c399d4884e33 ruby-1.8.6-p420.tar.bz2=1c7a978e9ffd4f56dc2ad74bbd2c34f3 ruby-1.8.6-p420.tar.gz=ca1eee44f842e93b5098bc5a2bb9a40b ruby-1.8.7-p160.tar.bz2=f8ddb886b8a81cf005f53e9a9541091d ruby-1.8.7-p160.tar.gz=945398f97e2de6dd8ab6df68d10bb1a1 ruby-1.8.7-p174.tar.bz2=88c45aaf627b4404e5e4273cb03ba2ee ruby-1.8.7-p174.tar.gz=18dcdfef761a745ac7da45b61776afa5 ruby-1.8.7-p248.tar.bz2=37e19d46b7d4b845f57d3389084b94a6 ruby-1.8.7-p248.tar.gz=60a65374689ac8b90be54ca9c61c48e3 ruby-1.8.7-p249.tar.bz2=37200cc956a16996bbfd25bb4068f242 ruby-1.8.7-p249.tar.gz=d7db7763cffad279952eb7e9bbfc221c ruby-1.8.7-p299.tar.bz2=244439a87d75ab24170a9c2b451ce351 ruby-1.8.7-p299.tar.gz=43533980ee0ea57381040d4135cf9677 ruby-1.8.7-p302.tar.bz2=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p302.tar.gz=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p330.tar.bz2=2689719fb42c8cf0aa336f8c8933f413 ruby-1.8.7-p330.tar.gz=50a49edb787211598d08e756e733e42e ruby-1.8.7-p334.tar.bz2=2f14f604bf981bb938ab5fc8b09eb1a6 ruby-1.8.7-p334.tar.gz=aacb6ee5dfe2367682bba56af7f415b8 ruby-1.8.7-p352.tar.bz2=0c61ea41d1b1183b219b9afe97f18f52 ruby-1.8.7-p352.tar.gz=0c33f663a10a540ea65677bb755e57a7 ruby-1.8.7-p357.tar.bz2=3abd9e2a29f756a0d30c7bfca578cdeb ruby-1.8.7-p357.tar.gz=b2b8248ff5097cfd629f5b9768d1df82 ruby-1.8.7-p358.tar.bz2=de35f00997f4ccee3e22dff0f2d01b8a ruby-1.8.7-p370.tar.bz2=1e4c3194537dd8ff92e756993e55a29d ruby-1.8.7-p371.tar.bz2=c27526b298659a186bdb5107fcec2341 ruby-1.8.7-p371.tar.gz=653f07bb45f03d0bf3910491288764df ruby-1.8.7-p374.tar.bz2=83c92e2b57ea08f31187060098b2200b ruby-1.8.7-p374.tar.gz=b72a0bc5b824398537762e5272bbb8dc ruby-1.9.0.tar.bz2=17eb66ac3721340d21db352d8f5dec76 ruby-1.9.1-p129.tar.bz2=6fa62b20f72da471195830dec4eb2013 ruby-1.9.1-p129.tar.gz=c71f413514ee6341c627be2957023a5c ruby-1.9.1-p243.tar.bz2=66d4f8403d13623051091347764881a0 ruby-1.9.1-p243.tar.gz=515bfd965814e718c0943abf3dde5494 ruby-1.9.1-p376.tar.bz2=e019ae9c643c5efe91be49e29781fb94 ruby-1.9.1-p376.tar.gz=ebb20550a11e7f1a2fbd6fdec2a3e0a3 ruby-1.9.1-p378.tar.bz2=5922459622a23612eb9b68a3586cb5f8 ruby-1.9.1-p378.tar.gz=9fc5941bda150ac0a33b299e1e53654c ruby-1.9.1-p429.tar.bz2=09df32ae51b6337f7a2e3b1909b26213 ruby-1.9.1-p429.tar.gz=0f6d7630f26042e00bc59875755cf879 ruby-1.9.1-p431.tar.bz2=03179138ae95dbfae872ef49e9cc6da7 ruby-1.9.1-p431.tar.gz=23f28cffc007ed5ac72c8e9bec6837ce ruby-1.9.2-p0.tar.bz2=d8a02cadf57d2571cd4250e248ea7e4b ruby-1.9.2-p0.tar.gz=755aba44607c580fddc25e7c89260460 ruby-1.9.2-p136.tar.bz2=52958d35d1b437f5d9d225690de94c13 ruby-1.9.2-p136.tar.gz=6e17b200b907244478582b7d06cd512e ruby-1.9.2-p180.tar.bz2=68510eeb7511c403b91fe5476f250538 ruby-1.9.2-p180.tar.gz=0d6953820c9918820dd916e79f4bfde8 ruby-1.9.2-p290.tar.bz2=096758c3e853b839dc980b183227b182 ruby-1.9.2-p290.tar.gz=604da71839a6ae02b5b5b5e1b792d5eb ruby-1.9.2-p318.tar.bz2=be431c6cbfa27e3836a06c6315717747 ruby-1.9.2-p318.tar.gz=cc7bf1025128e1985882ae243f348802 ruby-1.9.2-p320.tar.bz2=b226dfe95d92750ee7163e899b33af00 ruby-1.9.2-p320.tar.gz=5ef5d9c07af207710bd9c2ad1cef4b42 ruby-1.9.2-p330.tar.bz2=8ba4aaf707023e76f80fc8f455c99858 ruby-1.9.2-p330.tar.gz=4b9330730491f96b402adc4a561e859a ruby-1.9.3-p0.tar.bz2=65401fb3194cdccd6c1175ab29b8fdb8 ruby-1.9.3-p0.tar.gz=8e2fef56185cfbaf29d0c8329fc77c05 ruby-1.9.3-p125.tar.bz2=702529a7f8417ed79f628b77d8061aa5 ruby-1.9.3-p125.tar.gz=e3ea86b9d3fc2d3ec867f66969ae3b92 ruby-1.9.3-p194.tar.bz2=2278eff4cfed3cbc0653bc73085caa34 ruby-1.9.3-p194.tar.gz=bc0c715c69da4d1d8bd57069c19f6c0e ruby-1.9.3-p286.tar.bz2=e76848a86606a4fd5dcf14fc4b4e755e ruby-1.9.3-p327.tar.bz2=7d602aba93f31ceef32800999855fbca ruby-1.9.3-p327.tar.gz=96118e856b502b5d7b3a4398e6c6e98c ruby-1.9.3-p362.tar.bz2=13c26ea368d88a560f07cc8c5eb4fa05 ruby-1.9.3-p374.tar.bz2=944e73eba9ee9e1f2647ff32ec0b14b2 ruby-1.9.3-p385.tar.bz2=5ec9aff670f4912b0f6f0e11e855ef6c ruby-1.9.3-p392.tar.bz2=a810d64e2255179d2f334eb61fb8519c ruby-1.9.3-p392.tar.gz=f689a7b61379f83cbbed3c7077d83859 ruby-1.9.3-p429.tar.bz2=c2b2de5ef15ea9b1aaa3152f9112af1b ruby-1.9.3-p429.tar.gz=993c72f7f805a9eb453f90b0b7fe0d2b ruby-1.9.3-p448.tar.bz2=aa710d386e5903f78f0231868255e6af ruby-1.9.3-p448.tar.gz=a893cff26bcf351b8975ebf2a63b1023 ruby-1.9.3-p484.tar.bz2=03f5b08804927ceabe5122cb90f5d0a9 ruby-1.9.3-p484.tar.gz=8ac0dee72fe12d75c8b2d0ef5d0c2968 ruby-1.9.3-p545.tar.bz2=4743c1dc48491070bae8fc8b423bc1a7 ruby-1.9.3-p545.tar.gz=8e8f6e4d7d0bb54e0edf8d9c4120f40c ruby-1.9.3-p547.tar.bz2=5363d399be7f827c77bf8ae5d1a69b38 ruby-1.9.3-p547.tar.gz=7531f9b1b35b16f3eb3d7bea786babfd ruby-1.9.3-p550.tar.bz2=c2169c8b14ccefd036081aba5ffa96da ruby-1.9.3-p551.tar.bz2=0d8b272b05c3449dc848bb7570f65bfe ruby-1.9.3-preview1.tar.bz2=7d93dc773c5824f05c6e6630d8c4bf9b ruby-1.9.3-preview1.tar.gz=0f0220be4cc7c51a82c1bd8f6a0969f3 ruby-1.9.3-rc1.tar.bz2=26f0dc51ad981e12c58b48380112fa4d ruby-1.9.3-rc1.tar.gz=46a2a481536ca0ca0b80ad2b091df68e ruby-2.0.0-p0.tar.bz2=895c1c581f8d28e8b3bb02472b2ccf6a ruby-2.0.0-p195.tar.bz2=2f54faea6ee1ca500632ec3c0cb59cb6 ruby-2.0.0-p247.tar.bz2=60913f3eec0c4071f44df42600be2604 ruby-2.0.0-p353.tar.bz2=20eb8f067d20f6b76b7e16cce2a85a55 ruby-2.0.0-p451.tar.bz2=908e4d1dbfe7362b15892f16af05adf8 ruby-2.0.0-p481.tar.bz2=ea406a8d415a1a5d8365596d4288f3da ruby-2.0.0-p576.tar.bz2=eccd42d43620544a085c5e3834572f37 ruby-2.0.0-p594.tar.bz2=58469c0daf5f3a892a70cc674ea59c7f ruby-2.0.0-p598.tar.bz2=a3f3908103a7d209d1d1cf4712e3953c ruby-2.0.0-p643.tar.bz2=1390888cac6cd175e6f164eff378cdde ruby-2.0.0-p645.tar.bz2=d576240c97cfcc3ed9bdc457eb1e8280 ruby-2.0.0-p647.tar.bz2=27a3ea1a8b8bca1a6de43a7d08e88b69 ruby-2.0.0-p648.tar.bz2=3544031334f4665aa2eb1414babc9345 ruby-2.0.0-preview1.tar.bz2=47a0f662f0e258aa1c5e429c310861b3 ruby-2.0.0-preview2.tar.bz2=a645a783c3302cc094a9963a5e700a4d ruby-2.0.0-rc1.tar.bz2=24cebdda11e01ff4889ac983cd7dc02c ruby-2.0.0-rc2.tar.bz2=e92420131bd7994513e0bf09a3e2a19b ruby-2.1.0-preview1.tar.bz2=d32d1ea23988399afadbd21c5a7a37fc ruby-2.1.0-preview2.tar.bz2=9d566a9b2d2e7e35ad6125e2a14ce672 ruby-2.1.0-rc1.tar.bz2=cae095b90349b5b0f7026060cc3dd2c5 ruby-2.1.0.tar.bz2=1546eeb763ac7754365664be763a1e8f ruby-2.1.1.tar.bz2=53edc33b2f590ecdd9f6a344b9d92d0d ruby-2.1.1.tar.gz=e57fdbb8ed56e70c43f39c79da1654b2 ruby-2.1.2.tar.bz2=ed9b8565bdeccb401d628ec8d54a0774 ruby-2.1.2.tar.gz=a5b5c83565f8bd954ee522bd287d2ca1 ruby-2.1.3.tar.bz2=02b7da3bb06037c777ca52e1194efccb ruby-2.1.4.tar.bz2=f4136e781d261e3cc20748005e1740b7 ruby-2.1.5.tar.bz2=a7c3e5fec47eff23091b566e9e1dac1b ruby-2.1.6.tar.bz2=e1a8e6c6bfbb09bb7f8d6be8f508e4a1 ruby-2.1.7.tar.bz2=3a878e98311d543e5de3533b82ef4a5a ruby-2.1.8.tar.bz2=b17130b5f02a61640ae3b629af931610 ruby-2.1.9.tar.bz2=62bd1cbfcbc22e4d137462bce992f6d1 ruby-2.1.10.tar.bz2=5155c624807ff2418a9e9f15202954d0 ruby-2.2.0-preview1.tar.bz2=767b132eec3e70b14afe5884a7a767b1 ruby-2.2.0-preview2.tar.bz2=d7abace25a8ffe861cb2807bef1c58a6 ruby-2.2.0-rc1.tar.bz2=7144732d30dd4547c0a59862b3345d54 ruby-2.2.0.tar.bz2=d03cd4690fec1fff81d096d1c1255fde ruby-2.2.1.tar.bz2=06973777736d8e6bdad8dcaa469a9da3 ruby-2.2.2.tar.bz2=af6eb4fa7247f1f7b2e19c8e6f3e3145 ruby-2.2.3.tar.bz2=f49a734729a71774d4a94a9a603114b2 ruby-2.2.4.tar.bz2=c3d65f6d2ebe90dda81a37885ea244f5 ruby-2.2.5.tar.bz2=0c7edd1ff3650c3b74da2efaf641bf34 ruby-2.2.6.tar.bz2=3d13cf447142b8a11cd9beb7bc63fee0 ruby-2.2.7.tar.bz2=ca7224d80c08b015bc3b8c226d0914c3 ruby-2.2.8.tar.bz2=054d2e2904d5175662293e29c3bdb927 ruby-2.2.9.tar.bz2=575adf8ede6b1ca7236a5341e73536b0 ruby-2.2.10.tar.bz2=bef1909a4c885157870ef69548cdad3a ruby-2.3.0-preview1.tar.bz2=776000d74ec6dd34bf355ff6921c8311 ruby-2.3.0-preview2.tar.bz2=3ad442ccb337e77e4acaa4113f25b76a ruby-2.3.0.tar.bz2=f0d9f9bbdc87372ca98988a571875819 ruby-2.3.1.tar.bz2=c194281f63d7fcd816747fe78474be5e ruby-2.3.2.tar.bz2=9d00f3772f1c8fa5eecdfea089e3032f ruby-2.3.3.tar.bz2=04b9c461a2bc1eec0535ad1947cad4fb ruby-2.3.4.tar.bz2=99961e97566aee6d63635e2da4cf73ac ruby-2.3.5.tar.bz2=e1efc3d5a948ca1f552005efe5925513 ruby-2.3.6.tar.bz2=b2443b11ee80319a119f7ec0c9b8d79a ruby-2.3.7.tar.bz2=5eb580d5cd13ffb5aacfb96580c0043d ruby-2.3.8.tar.bz2=78045332e298dfd859ceef9fe946950f ruby-2.4.0-preview1.tar.bz2=64b8983b5f53d053906e394f734aa296 ruby-2.4.0-preview2.tar.bz2=1074e8dea5baa89af7f7c2d1d2b9ebaa ruby-2.4.0-preview3.tar.bz2=9f767e6bc61830735ea7dc9cd5a63653 ruby-2.4.0-rc1.tar.bz2=0f8b665acf4e883334adc121a42a206f ruby-2.4.0.tar.bz2=98f29161860fe1b6c65396717847a358 ruby-2.4.1.tar.bz2=07b2ae5d2f46321c95b37066c8415900 ruby-2.4.2.tar.bz2=5ff3ad6ec816bcce8806a55090936ab6 ruby-2.4.3.tar.bz2=ac8215ba561cc7c79b4f61daee11b706 ruby-2.4.4.tar.bz2=d994274eaa95b82aa5d31ec2188253c6 ruby-2.4.5.tar.bz2=45d70a8bb9397d818795ffe992163d27 ruby-2.4.6.tar.bz2=4abd13c50c1fc273a0a81a0ae74ed39f ruby-2.4.7.tar.bz2=1ce166ced489908993d78e8bb68325e0 ruby-2.4.8.tar.bz2=396d35f1a2d1deaf303f59cb5245d4ae ruby-2.4.9.tar.bz2=0b3447370651df55a2014a170c0cb1d5 ruby-2.4.10.tar.bz2=b10a7d2fcaf218c98edbaf57efc36e58 ruby-2.5.0-preview1.tar.bz2=889454189f41e271ae5ba15382911b6a ruby-2.5.0-rc1.tar.bz2=f5acdeacf56aced3c00ae6a8fa816bbc ruby-2.5.0.tar.bz2=63a6cd49546783d62de25a0ffc4aecc3 ruby-2.5.1.tar.bz2=5aaaf2fb4893214fa316516f3ac43519 ruby-2.5.2.tar.bz2=e90ab127e2ac3ee1d8840835e8ba1f13 ruby-2.5.3.tar.bz2=49aea0bf56d25351ccaf938c642400df ruby-2.5.4.tar.bz2=0c923215470f1debe593fe21e66fd37b ruby-2.5.5.tar.bz2=8f41b5cb683d48b5cb6cdfe03d135d6b ruby-2.5.6.tar.bz2=f2a74416ab3016434896194120796f04 ruby-2.5.7.tar.bz2=65597b69aa54bdca8745502c10349f96 ruby-2.5.8.tar.bz2=9ec96e7a590ef801ede294b6184c9c0f ruby-2.5.9.tar.bz2=9e905a545a729af1f1620ddfc2976fe5 ruby-2.6.0-preview1.tar.bz2=1ce507e27fa02aeb36100dabcf1da94f ruby-2.6.0-preview2.tar.bz2=e45011116334d21857b9e1712a01e6b3 ruby-2.6.0-preview3.tar.bz2=b326ceee3d3756f892515009e148f4b2 ruby-2.6.0-rc1.tar.bz2=40457a72e36cbecd0c51d9f895347302 ruby-2.6.0-rc2.tar.bz2=9665e6d886a9da2d4076fa75836798f1 ruby-2.6.0.tar.bz2=d3372daec93f83e7a91c669821053014 ruby-2.6.1.tar.bz2=73d19ac478db1a178be5ae2f2fb8c9ec ruby-2.6.2.tar.bz2=658fcc0da15578c2420ded807b11cce1 ruby-2.6.3.tar.bz2=52e609b756735115814b9c8463f185e2 ruby-2.6.4.tar.bz2=d9b35753c65f54c745ab6b0094511839 ruby-2.6.5.tar.bz2=d1b89c88effb71d75cd7ef77c35e1985 ruby-2.6.6.tar.bz2=abc030870bfbe18ae9c356abebd95cb6 ruby-2.6.7.tar.bz2=46f24740181f91247c72f19d52334379 ruby-2.6.8.tar.bz2=c53761123d17e929cfe248f50429bcab ruby-2.6.9.tar.bz2=ddc24495adaf215c8ee40630b4a55041 ruby-2.6.10.tar.bz2=6ad76db639ab308e3b6c19408729a0cf ruby-2.7.0-preview1.tar.bz2=82fab0496947acd847a6b2eb758acfc6 ruby-2.7.0-preview2.tar.bz2=966a544ab59114591898403c23d91397 ruby-2.7.0-preview3.tar.bz2=2fa6c213774744b287e7e0212b43f626 ruby-2.7.0-rc1.tar.bz2=48a8837cb352f5b95e97a1ae0d62a9d0 ruby-2.7.0-rc2.tar.bz2=cca58fdb8c5e8be8273842d54199c42d ruby-2.7.0.tar.bz2=89347748b7414f5bc7aeb8f4a87ebef4 ruby-2.7.1.tar.bz2=4bb2b2b2f0c6953859e30af140cf249a ruby-2.7.2.tar.bz2=a8acc9c24708fe29dfc287823ecaae65 ruby-2.7.3.tar.bz2=604acb258b1d8228f55799e846cfe6d3 ruby-2.7.4.tar.bz2=52705d799ed851dd3bfd5634265cde46 ruby-2.7.5.tar.bz2=d97d4377eee18b0e790510c3afed648c ruby-2.7.6.tar.bz2=1b6efacb9f129d0253d8a9faa9c21f99 ruby-2.7.7.tar.bz2=63c55e75150251d3ba092b662138e4af ruby-2.7.8.tar.bz2=f44dedf51fdb7441a7dba592d6a4a14d ruby-3.0.0-preview1.tar.gz=991df063b86a8f8412ca07f548579f39 ruby-3.0.0-preview2.tar.gz=ce14b24e923f2e269fea6441791a7248 ruby-3.0.0-rc1.tar.gz=848a8628c8abde270b66e2474049a4a3 ruby-3.0.0.tar.gz=d6af36269a1b0bc278236d371543ad97 ruby-3.0.1.tar.gz=8d1c460a9a9d48a353de3eb0f338bbfd ruby-3.0.2.tar.gz=b973af486291a1e17ad50d88472bfa86 ruby-3.0.3.tar.gz=9ecae293da9547c1438a970f04f64655 ruby-3.0.4.tar.gz=ec9de9a15acc4f205b08816d94267415 ruby-3.0.5.tar.gz=cdff2395625dc1d632fc5400c8fec103 ruby-3.0.6.tar.gz=6b5a7b14505697e6fc2b40b345679f40 ruby-3.0.7.tar.gz=147a3467facc704b5d479e809c131603 ruby-3.1.0-preview1.tar.gz=d131b9bca700ee87ea276f8233ea4c0b ruby-3.1.0.tar.gz=1ca89d713f2c18a20104befed51b3b9a ruby-3.1.1.tar.gz=702778a0ef8b7a01ef7530a541002e19 ruby-3.1.2.tar.gz=9daf064899cccc32fd564117c7a7e0dd ruby-3.1.3.tar.gz=cce38a2b2c589d59f440f67c7d8cc697 ruby-3.1.4.tar.gz=3e601ae6db76a487219a1084e5cb4c9c ruby-3.1.5.tar.gz=ce1e92ddb1230fa2d4f4367882542555 ruby-3.1.6.tar.gz=880923d0ce02717023683b522dbe92a5 ruby-3.1.7.tar.gz=20b73ea8e850d7e12c226b3772b1d0ed ruby-3.2.0-preview1.tar.gz=a83c91d53e130fe232e4c27ecc8738da ruby-3.2.0-preview2.tar.gz=56e7801b37612b82285c9a09cfeb28ce ruby-3.2.0-preview3.tar.gz=0ed16faae50403b4e2ba2e85ec2314a1 ruby-3.2.0-rc1.tar.gz=4657d7013702adce21ca21dfe71ea4a0 ruby-3.2.0.tar.gz=76ca7e7d71898ab1e85155d69403754e ruby-3.2.1.tar.gz=055101c924538467c63fcbf42abddc75 ruby-3.2.2.tar.gz=eb6f18605e1e1be5dfb5b45f31bf6a93 ruby-3.2.3.tar.gz=e0ba90554f7ea41c587ffa7fcfd064ca ruby-3.2.4.tar.gz=c48283a23c72d7aae19b7f510b89444a ruby-3.2.5.tar.gz=3bd6f2b26918c8637abf56c2f208833e ruby-3.2.6.tar.gz=fa9bd65bc429a43a3e6dda8ff0b97022 ruby-3.2.7.tar.gz=c72e290d57080f828156b5c24fe8e4ad ruby-3.2.8.tar.gz=aa16ae868ae1cb8810581ea604e4e0fa ruby-3.3.0-preview1.tar.gz=0833f555b1b8d5423953600fb4146639 ruby-3.3.0-preview2.tar.gz=4f82f4c9e512ec0a53baa1be8d35ebf7 ruby-3.3.0-preview3.tar.gz=a32ede198a9da50d4afc4421a4a993ad ruby-3.3.0.tar.gz=f57422a0f995cd5a93c726f6c42c310a ruby-3.3.1.tar.gz=368e331a35145ace4948390ed76cf1df ruby-3.3.2.tar.gz=9a7efebc6a0e4810c716ec6d401dc372 ruby-3.3.3.tar.gz=beb9773cc4d9d8da29463ab175e4db28 ruby-3.3.4.tar.gz=f2e16c1a56e07e185214e85c62657941 ruby-3.3.5.tar.gz=ccad73b02d942d1e6b4c27873d4c08e4 ruby-3.3.6.tar.gz=51bcf91da64e5889e2e59c7adc7189c5 ruby-3.3.7.tar.gz=5fa3e653657d868e2c8377d2f3adb335 ruby-3.3.8.tar.gz=874dd01d11ddb2886df05340c6388ba9 ruby-3.4.0-preview1.tar.gz=93b9b1040a2dd7be7514a7870aa7da03 ruby-3.4.0.tar.gz=2acf769caa47f692fea932ab81e75639 ruby-3.4.1.tar.gz=43e587b9a6de2a51dd1fa2613615542b ruby-3.4.2.tar.gz=120907785ecc0a84521e924cbda66af9 +ruby-3.4.3.tar.gz=3fe26229fe20342d251503b83fdf0b02 ruby-enterprise-1.8.6-20080507.tar.gz=17e3c52e73e42809f57ad0000a6cb4ab ruby-enterprise-1.8.6-20080621.tar.gz=626fc3811eee2dc92ac27ea63d37a8b2 ruby-enterprise-1.8.6-20080623.tar.gz=0bf8a3a93c6b37bb1260cc09b05e81fd ruby-enterprise-1.8.6-20080624.tar.gz=de58b97128aa65209f291c66eab7c4a7 ruby-enterprise-1.8.6-20080709.tar.gz=f0ded08cec64959fa388ec6a237b9c47 ruby-enterprise-1.8.6-20080810.tar.gz=bfdcf06f437af825cd9f2d321f9d1896 ruby-enterprise-1.8.6-20081205.tar.gz=50206bec9be2e08a862e5ec2e70fa693 ruby-enterprise-1.8.6-20081215.tar.gz=aab57b7d5061c1980bec5dbe311ec9b2 ruby-enterprise-1.8.6-20090113.tar.gz=e8d796a5bae0ec1029a88ba95c5d901d ruby-enterprise-1.8.6-20090201.tar.gz=a965e6789b553efaed72191825b13713 ruby-enterprise-1.8.6-20090421.tar.gz=c777b361aadccda7988be16ede7ab15f ruby-enterprise-1.8.6-20090520.tar.gz=156572a8296bd0440970a6bb95018a13 ruby-enterprise-1.8.6-20090610.tar.gz=0bf66ee626918464a6eccdd83c99d63a ruby-enterprise-1.8.7-2009.10.tar.gz=3727eef7b6b1b2f31db7d091328d966e ruby-enterprise-1.8.7-2010.01.tar.gz=587aaea02c86ddbb87394a340a25e554 ruby-enterprise-1.8.7-2010.02.tar.gz=4df7b09c01adfd711b0ab76837611542 ruby-enterprise-1.8.7-2011.01.tar.gz=4640634347cd8e5469cb718853e2112e ruby-enterprise-1.8.7-2011.02.tar.gz=8c5faa11c1ddaed3f44b7294711980cc ruby-enterprise-1.8.7-2011.03.tar.gz=038604ce25349e54363c5df9cd535ec8 ruby-enterprise-1.8.7-2011.12.tar.gz=1e5f3059d52a67ab5d91d472b756de08 ruby-enterprise-1.8.7-2012.02.tar.gz=8d086d2fe68a4c57ba76228e97fb3116 ruby-enterprise-1.8.7-20090928.tar.gz=ae00018ce89d95419dfde370fcd485ac rubygems-0.4.0.tgz=86a64616548a793e1a5f825f0dd385b9 rubygems-0.5.0.tgz=80d151edd94a06bcd2452a7e272b4d96 rubygems-0.6.0.tgz=5df803f5a04654833690dd32283de741 rubygems-0.6.1.tgz=c4a0faa9f876ad805ae80d1396a29d97 rubygems-0.7.0.tgz=ede9b55343219e8b3491793aa12c46f3 rubygems-0.8.0.tgz=9ef6e3c34dcb54e295c8e57321ddc079 rubygems-0.8.1.tgz=6276d268b420c0d61796cdbf6d28dae4 rubygems-0.8.3.tgz=6e6da80f61d6e77d0ad9e531767f6fd5 rubygems-0.8.4.tgz=a2ad2d03dae8a98002c2a7cd6c3ed352 rubygems-0.8.5.tgz=b917c084e1e6e99d8e102af8dd687ddb rubygems-0.8.6.tgz=9de98d2f62e3f91521b0207a4dcdeb5b rubygems-0.8.7.tgz=7fc04b9f9acc0c18cbbe6222be8d0bd3 rubygems-0.8.8.tgz=a8535e9c35a4c215d6ef9268d4bc69ed rubygems-0.8.10.tgz=d26592e280c0fb24c51f2837c3f48e67 rubygems-0.8.11.tgz=aa363b428c4c1fc2e076a4ff77b957d7 rubygems-0.9.0.tgz=5d496e1f415b8b4033ab867f01d1161f rubygems-0.9.1.tgz=a62314cdb174ccc88a27b8924fa79e4a rubygems-0.9.2.tgz=cc525053dd465ab6e33af382166fa808 rubygems-0.9.3.tgz=600940a22ecd79e28e0fd37ad1f1d871 rubygems-0.9.4.tgz=b5680acaa019c80ea44fe87cc2e227da rubygems-0.9.5.tgz=91f7036a724e34cc66dd8d09348733d9 rubygems-1.0.0.tgz=b0b74eac0cbfc5a13f895ab6f803edc1 rubygems-1.0.1.tgz=0d5851084955c327ee1dc9cbd631aa5f rubygems-1.1.0.tgz=85f994904c5b4045f0a859b29d0be717 rubygems-1.1.1.tgz=1a77c5b6b293a3ccd5261dc120641ccc rubygems-1.2.0.tgz=b77a4234360735174d1692e6fc598402 rubygems-1.3.0.tgz=63d3dfc038710eaf532b6a133225115a rubygems-1.3.1.tgz=a04ee6f6897077c5b75f5fd1e134c5a9 rubygems-1.3.2.tgz=6204d0a4c526a1d8fdbce746647b179a rubygems-1.3.3.tgz=0e9697db44d812712350baf28016b4a7 rubygems-1.3.4.tgz=b17b398503253bf36a101c58f02a226f rubygems-1.3.5.tgz=6e317335898e73beab15623cdd5f8cff rubygems-1.3.6.tgz=789ca8e9ad1d4d3fe5f0534fcc038a0d rubygems-1.3.7.tgz=e85cfadd025ff6ab689375adbf344bbe rubygems-1.4.1.tgz=e915dbf79e22249d10c0fcf503a5adda rubygems-1.4.2.tgz=b5badb7c5adda38d9866fa21ae46bbcc rubygems-1.5.0.tgz=49bef7186bf3c0ca6ee7adf4b585bccc rubygems-1.5.1.tgz=47577a5e33c9c6f1e3a56aff7f51d0ff rubygems-1.5.2.tgz=3951f94c09c16c774c8bcebc94fa5374 rubygems-1.5.3.tgz=38bbbdc17aef923fb41f054cf8421116 rubygems-1.6.0.tgz=abd27b5a9002100ff74ddb398a1c9689 rubygems-1.6.1.tgz=a77c64896aaa10d64aaf34f5c1488173 rubygems-1.6.2.tgz=0c95a9869914ba1a45bf71d3b8048420 rubygems-1.8.6.tgz=8e95d0c5b377a003f3d54a49461e81d9 rubygems-1.8.9.tgz=fc399445d693c29778779e5828ee5e90 rubygems-1.8.10.tgz=5b08ee31740c9b0bd36f6c04d537e7d4 rubygems-1.8.23.1.tgz=5259ce3eb7988950fa3aff9051a5de91 rubygems-1.8.23.2.tgz=fb377c7fd387df14a33e529153adc316 rubygems-1.8.23.tgz=178b0ebae78dbb46963c51ad29bb6bd9 rubygems-1.8.24.tgz=3a555b9d579f6a1a1e110628f5110c6b rubygems-1.8.25.tgz=1376a258d43c53750a8df30e67853e10 rubygems-1.8.26.tgz=0ea47f1efd010f4c82b8a51a934f48dc rubygems-1.8.27.tgz=6686ad26735c21d0d6e58b6192c7da5d rubygems-1.8.28.tgz=2df78039f391fb1f71c02c2fc5671c94 rubygems-1.8.29.tgz=a57fec0af33e2e2e1dbb3a68f6cc7269 rubygems-2.0.0.tgz=89ce467eb2d55657e9965a46559acbcf rubygems-2.0.1.tgz=2652ab6f001a873b8933e2ca09505974 rubygems-2.0.2.tgz=3471f140a70bcd32a7495b545cfce790 rubygems-2.0.3.tgz=854691f145cea98b4100e5b0831b73ed rubygems-2.0.4.tgz=3ec32dbe783bab37a87f50758f8efe13 rubygems-2.0.5.tgz=641d82672937d40d664dbc18f49cdcec rubygems-2.0.6.tgz=0633f50db16112bf6c3cf9bfb9ceb9bd rubygems-2.0.7.tgz=9046700f1222712fedfb836fafa08c50 rubygems-2.0.8.tgz=5432214a740c0d13482e43a5328a6518 rubygems-2.0.9.tgz=bc55898247297ffa190223276b1b1bd7 rubygems-2.0.10.tgz=5457ba403cd9a5f4f5fb2ef4a2a1c03e rubygems-2.0.11.tgz=0f28e3fde3348c0f23ceecba73a6cbef rubygems-2.0.12.tgz=99c416517e2de1146d2c6fbb4c4c1441 rubygems-2.0.13.tgz=3970e66a670ddb6d1aade9c7b18033d4 rubygems-2.0.14.tgz=4a7aa0b144e465230ab5d7b59dfd7e8f rubygems-2.1.0.tgz=9a9d242baef5e58fbfe79ec5206cd316 rubygems-2.1.1.tgz=b34d6f4028b69a84123a6b7cb0ac8028 rubygems-2.1.2.tgz=b5c5c4430be60f911014216d41886ef3 rubygems-2.1.3.tgz=ac7bbdfecd49f9304756aa5ebeb51400 rubygems-2.1.4.tgz=aa502b1ea90fbdd14ca9b32634795c2b rubygems-2.1.5.tgz=60564b762d4e186815997653b1c876ab rubygems-2.1.6.tgz=e11237a8f87dbd8c085770551d64a8f8 rubygems-2.1.7.tgz=b721ed7d5fd57ed05f77eb21a3a592ee rubygems-2.1.8.tgz=cc4c84c0482840389a457740e8083ed9 rubygems-2.1.9.tgz=2636bf26c0a9ec889c7bd938887bd9a3 rubygems-2.1.10.tgz=6fa671d7d6605de73d16f529cf7bffb8 rubygems-2.1.11.tgz=b561b7aaa70d387e230688066e46e448 rubygems-2.2.0.rc.1.tgz=f7d80b612339169569f2675155c202f1 rubygems-2.2.0.tgz=3c16e50673adb99d1ce76d5231f764bd rubygems-2.4.8.tgz=dc77b51449dffe5b31776bff826bf559 rubygems-2.6.10.tgz=ab5a0028d2a0653691b29d7463bd0892 rubygems-2.6.11.tgz=8d514b836fcf3ae2c20b4fe8d5cdc3c5 rubygems-2.6.12.tgz=7c454ef88b716c1a123f62b26bb9612b rubygems-2.6.13.tgz=e6f19b51614055d826e431549a12a80b rubygems-2.6.14.tgz=e0a6914ce03b91dfc6d448ebf292f145 rubygems-2.7.0.tgz=771c40015538c0f225c5249e4bc7d441 rubygems-2.7.1.tgz=65646f28f3c36ccaa7f991c17e15b8a9 rubygems-2.7.2.tgz=312a238ed98a61d2b3d165b790b6062b rubygems-2.7.3.tgz=fb3a1927a1842b75677a24f48dd63ddc rubygems-2.7.4.tgz=e9bbf5a4cc9a74293884b91f49603ea0 rubygems-2.7.5.tgz=516a4f219976003feb4b4f797cbc66b0 rubygems-2.7.6.tgz=366cea352c2b1243db726013c3d76fc4 rubygems-2.7.7.tgz=b6721f6ce4af08f68c6f513bbddfe484 rubygems-2.7.8.tgz=a3ed89a34e1ae8f9da0c620a8aa35f12 rubygems-2.7.9.tgz=173272ed55405caf7f858b6981fff526 rubygems-2.7.10.tgz=464754059d8ca01c1121a1233d866e8c rubygems-3.0.0.tgz=3908105894e531f7ad3aceb8b41dcbcd rubygems-3.0.1.tgz=1e8af9b87a67f15841ad2be7d5725a5f rubygems-3.0.2.tgz=d8db1b516ae1e35b8f6f56cb526f879a rubygems-3.0.3.tgz=b7a7dd5f85485334a6cb61b7dac20cff rubygems-3.0.4.tgz=7d0c49077a2d19f48d88567cfa3cf17a rubygems-3.0.5.tgz=4664467d621d719688e4778d147c306a rubygems-3.0.6.tgz=60d84e843b131fb87c8fd67e8fac6470 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=3e9afdf72f153e2f66259fc2b6fca594 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=c30459287aec83548cfcb17340fa73d5 truffleruby-1.0.0-rc3-linux-amd64.tar.gz=138f6814451ce634b0fae3aca5579248 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=94ed54ecb65bea2166a2159431b0362b truffleruby-1.0.0-rc5-linux-amd64.tar.gz=9e5428611e22b093d05afebbe0ccbc2b truffleruby-1.0.0-rc5-macos-amd64.tar.gz=b32a254fed71434c3431fb2effb35c5a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=7f394a8c7fe356b7bd36683c57f74ebd truffleruby-1.0.0-rc6-macos-amd64.tar.gz=f033329d03f1f846d25728c2af9d7524 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=184e98f2d6939f63db4b915943ff60c6 truffleruby-1.0.0-rc7-macos-amd64.tar.gz=d19213b33011f7a55e0f32d25e19184f truffleruby-1.0.0-rc8-linux-amd64.tar.gz=a394167c0331c6d8c1123e1f992e5411 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=dc1bf0fcfdd5837ae0ca56d6d6e5f7b0 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=f6ec25bd532bf0551d35327d1aa4caf9 truffleruby-1.0.0-rc9-macos-amd64.tar.gz=c80a345f9071521cf1961ab75ebc7dd1 truffleruby-1.0.0-rc10-linux-amd64.tar.gz=3a889726efcdf33feb7ef3df13fd5f39 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=bba618b4483b79eebf9f0e7af4078502 truffleruby-1.0.0-rc11-linux-amd64.tar.gz=a25e179ca0be96a1bc737a600729c195 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=bb8d8f5525e1ba86bb039e56291c6c7c truffleruby-1.0.0-rc12-linux-amd64.tar.gz=872774837057489250527bf863192115 truffleruby-1.0.0-rc12-macos-amd64.tar.gz=bb4a64e6c4882fd0c5e412bf9c57720b truffleruby-1.0.0-rc13-linux-amd64.tar.gz=0f36eed2eb36846785fdd4eae24adfa0 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=1bd3087a0f2df4c006b87c9488ada6d4 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=9eddd1aa98c9649e7c01bb10bf28c471 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c93643f1d00b370411310ee7a1dd5330 truffleruby-1.0.0-rc15-linux-amd64.tar.gz=bc7339a6218ea991f2c72ce8759cb6e3 truffleruby-1.0.0-rc15-macos-amd64.tar.gz=1671d08dd2f5026d58b326fd55c9b7de truffleruby-1.0.0-rc16-linux-amd64.tar.gz=5564d17f19b8ee0edb96ab5b1bfbda98 truffleruby-1.0.0-rc16-macos-amd64.tar.gz=61583b529b6a1337398b0966db952d24 truffleruby-19.0.0-linux-amd64.tar.gz=006220c7bde7d0b5c72481133624a83f truffleruby-19.0.0-macos-amd64.tar.gz=9ef7f5a311465d35e54ac6e00ec3d169 truffleruby-19.0.2-linux-amd64.tar.gz=2f7fe574e0695fb6001f4f5282aa2f79 truffleruby-19.0.2-macos-amd64.tar.gz=aa20f76b3eac1f4976a507364201d1ad truffleruby-19.1.0-linux-amd64.tar.gz=71368f8371069017d911528f052b0a55 truffleruby-19.1.0-macos-amd64.tar.gz=7f086adbc89fdfaed35273394ac3ac66 truffleruby-19.1.1-linux-amd64.tar.gz=c1ad4d17bb40e214b124222f3a7c6db6 truffleruby-19.1.1-macos-amd64.tar.gz=f4e76b0612319b4a82480cbd1fc90210 truffleruby-19.2.0-linux-amd64.tar.gz=458ed5fec1a849ef5b00e19b0e25d5e9 truffleruby-19.2.0-macos-amd64.tar.gz=dc324575ad20e3054980835c24ea7161 truffleruby-19.2.0.1-linux-amd64.tar.gz=ad7444145550d89931199159163077c1 truffleruby-19.2.0.1-macos-amd64.tar.gz=b5bcfb0aaded1e2d1763089ab6c9a14d truffleruby-19.2.1-linux-amd64.tar.gz=fc4879d2b0cc22c152a8bf893a72c346 truffleruby-19.2.1-macos-amd64.tar.gz=71448ff3f8f1da086f222751d3f853bc truffleruby-19.3.0-linux-amd64.tar.gz=dd44ac30b5a1ef3a7d61172cda9b30b6 truffleruby-19.3.0-macos-amd64.tar.gz=41daa52f0f308abb77a2b91c1b7e0f3d truffleruby-19.3.0.2-linux-amd64.tar.gz=2db2cb5c29523c9bdb6f59dfa0bd74ce truffleruby-19.3.0.2-macos-amd64.tar.gz=edf1603643938686dce57139aadf7d3c truffleruby-19.3.1-linux-amd64.tar.gz=a14c028351f7a3965bcb56e9b22364de truffleruby-19.3.1-macos-amd64.tar.gz=a8707d0af3eda694ec07a5387d3443fb truffleruby-20.0.0-linux-amd64.tar.gz=b30110ecbc50c4fce402fdf44c45dad5 truffleruby-20.0.0-macos-amd64.tar.gz=0671e5909cefb9a2c12c473fc0110821 truffleruby-20.1.0-linux-amd64.tar.gz=4592b5fc3636d82fc998ab6fe0a43584 truffleruby-20.1.0-macos-amd64.tar.gz=3c0be43db86817c7037d3ff5053d322d truffleruby-20.2.0-linux-amd64.tar.gz=e9859decb24829f9a189d88b3c2e9b79 truffleruby-20.2.0-macos-amd64.tar.gz=49e7ccf8f9e60d6c59b3b07b854466cf truffleruby-20.3.0-linux-amd64.tar.gz=93a20845f7d9d39100761424dfc0a734 truffleruby-20.3.0-macos-amd64.tar.gz=b178b7a94fac58400450417612fe3441 truffleruby-21.0.0-linux-amd64.tar.gz=c03304a505c8699e697acecf5030d95f truffleruby-21.0.0-macos-amd64.tar.gz=019796be37a58ef8e186a625f2ff5d07 truffleruby-21.1.0-linux-amd64.tar.gz=065bfcc48f6925410e0da21e16428b64 truffleruby-21.1.0-macos-amd64.tar.gz=325f6854c10d8a3a114c80da582c469f truffleruby-21.2.0-linux-amd64.tar.gz=0aec44721a040845347f18c1f72ceb75 truffleruby-21.2.0-macos-amd64.tar.gz=76d27715b20902df5779f7a0c00852b1 truffleruby-21.2.0.1-linux-amd64.tar.gz=f68e9b8a9f9cae5efc5ac45a7d9e760d truffleruby-21.2.0.1-macos-amd64.tar.gz=b021e50fc94cab590b49d27f2ea821b0 truffleruby-21.3.0-linux-amd64.tar.gz=359aca79cba4e08f9955d9c6543c2189 truffleruby-21.3.0-macos-amd64.tar.gz=d9e2e2c6fcd3ac16f0c37b0ccffb4f41 truffleruby-22.0.0.2-linux-amd64.tar.gz=324327026e9b2963a8e5fb4ee3f4e216 truffleruby-22.0.0.2-macos-amd64.tar.gz=7029d0e291d498a264d9b413729a3e17 truffleruby-22.1.0-linux-amd64.tar.gz=9329cf507ba8ac529e93156cacc1425d truffleruby-22.1.0-macos-amd64.tar.gz=353242978b46cafc34b05e2c81206096 truffleruby-22.2.0-linux-amd64.tar.gz=5d676377056ae94fe847be721c20405b truffleruby-22.2.0-linux-aarch64.tar.gz=b774f4b7d330842521f1e6e56cb41db5 truffleruby-22.2.0-macos-amd64.tar.gz=e45fdd9a05aec6220a76fb707b0a5ae8 truffleruby-22.2.0-macos-aarch64.tar.gz=ebcbfe056d90d06de4bd0a9d699bad8f truffleruby-22.3.0-linux-amd64.tar.gz=ada8bc5dc52aca8317eaeab04d91e877 truffleruby-22.3.0-linux-aarch64.tar.gz=11493301d5519aa73e8f0e140cefb581 truffleruby-22.3.0-macos-amd64.tar.gz=9e27c677637b69b0460fb0a4569a5cca truffleruby-22.3.0-macos-aarch64.tar.gz=eaa1c9020b521226f8bb48b8c7e5c596 truffleruby-22.3.1-linux-amd64.tar.gz=243d926f038fd2220c03dfbe40ef58c3 truffleruby-22.3.1-linux-aarch64.tar.gz=01487fe680863381489bf2a0a2ac162b truffleruby-22.3.1-macos-amd64.tar.gz=b3d5a777d94856e51034d81076e8ef72 truffleruby-22.3.1-macos-aarch64.tar.gz=320ce75730a5b9f16f111eb7ef5e4e09 truffleruby-23.0.0-preview1-linux-amd64.tar.gz=76c1cb23ee63ba4de93a0c23784bfca9 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=eec3fc74565f08e9468982692f7f9010 truffleruby-23.0.0-preview1-macos-amd64.tar.gz=50e38f3cd548dfe78f397f76ed577bf1 truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=b769bcf9b843d9b2980def1e2139284f truffleruby-23.0.0-linux-amd64.tar.gz=6e1a491406c5dbf42de10fcb3ed7dc1c truffleruby-23.0.0-linux-aarch64.tar.gz=5c3663f64bee707173b2684355a9a42e truffleruby-23.0.0-macos-amd64.tar.gz=515a9a8a0f39ba9399e869cd418ebff5 truffleruby-23.0.0-macos-aarch64.tar.gz=57e5fa52270e692b82c445107fe6b6a6 truffleruby-23.1.0-linux-amd64.tar.gz=f7511c19045e57e72f9b5415bc17c8e8 truffleruby-23.1.0-linux-aarch64.tar.gz=e8a20dd919a2ff77b7cc5457e853d15d truffleruby-23.1.0-macos-amd64.tar.gz=d3b6a3cbc0a230ebae6f3a462a32ddd3 truffleruby-23.1.0-macos-aarch64.tar.gz=ee74fc5d192c2fb8afd0458d2d429c02 truffleruby-23.1.1-linux-amd64.tar.gz=d7e1c040da170aaa36b5f5a1d106d237 truffleruby-23.1.1-linux-aarch64.tar.gz=cf508ba3787be20c03bac690f3bdbac5 truffleruby-23.1.1-macos-amd64.tar.gz=a662a8672871524808500dddef3808c1 truffleruby-23.1.1-macos-aarch64.tar.gz=de543312024993a533e3caa63b396127 truffleruby-23.1.2-linux-amd64.tar.gz=e3e5b01b291d7fea61be2be842c7e8dc truffleruby-23.1.2-linux-aarch64.tar.gz=8fe26f643fa81eec6de3bde7024c858a truffleruby-23.1.2-macos-amd64.tar.gz=83bc41bf699fa847df7e60412bee2823 truffleruby-23.1.2-macos-aarch64.tar.gz=7dbd2e182cfec0cf2d2e37784721903f truffleruby-24.0.0-linux-amd64.tar.gz=202f05706d28faca75d5e3cd0f9bef78 truffleruby-24.0.0-linux-aarch64.tar.gz=4faaf4edde4f6a516246b7c2f4ee80b3 truffleruby-24.0.0-macos-amd64.tar.gz=d07f27e0e29398c6de836b0049105c12 truffleruby-24.0.0-macos-aarch64.tar.gz=10cf176718968893468caba617c02141 truffleruby-24.0.1-linux-amd64.tar.gz=2914bfb81b136cd1fb5736c0a40068e3 truffleruby-24.0.1-linux-aarch64.tar.gz=429e6ada9a95ea23ebb95d01f90eb0f4 truffleruby-24.0.1-macos-amd64.tar.gz=e3aa5ab128f5d169d93f2d6df98c4e77 truffleruby-24.0.1-macos-aarch64.tar.gz=6f81a1afe1b89a40f00c9bd4216ec45d truffleruby-24.0.2-linux-amd64.tar.gz=1a826ea6323a25becce5940d8e6c4642 truffleruby-24.0.2-linux-aarch64.tar.gz=45429f35653bd8cbc328eafe81d15e8a truffleruby-24.0.2-macos-amd64.tar.gz=f68aeb26783d048ae5f78e1c13739747 truffleruby-24.0.2-macos-aarch64.tar.gz=df05f94696b4f4584a259001a3d4d1d0 truffleruby-24.1.0-linux-amd64.tar.gz=14aa05250088f17491072e500c22c039 truffleruby-24.1.0-linux-aarch64.tar.gz=3e26495f8aa7b810ec5794a69e93483a truffleruby-24.1.0-macos-amd64.tar.gz=53b6251cdd359176f9e52fe05f05e949 truffleruby-24.1.0-macos-aarch64.tar.gz=28d61b8a1a307cbdf988313c8a1f77f1 truffleruby-24.1.1-linux-amd64.tar.gz=9ef530c2ac5f597100e69e4b374182c3 truffleruby-24.1.1-linux-aarch64.tar.gz=efcc6f5c51be84d2ec99e6cebccc586a truffleruby-24.1.1-macos-amd64.tar.gz=11e2f0f62c55fcc8330cd66393abb1fc truffleruby-24.1.1-macos-aarch64.tar.gz=eaba15df3e46cd3976bedaf6f086aae2 truffleruby-24.1.2-linux-amd64.tar.gz=ada406523c5cf80f7655a9314902e2b5 truffleruby-24.1.2-linux-aarch64.tar.gz=5a5dc457002a8a65b21264efd0387d5b truffleruby-24.1.2-macos-amd64.tar.gz=cb6142250e4b0b2b164ffa7ce47d5f29 truffleruby-24.1.2-macos-aarch64.tar.gz=f73e0af905cabe695b0fe6c73df699a1 truffleruby-24.2.0-linux-amd64.tar.gz=326d5bc6b5232c88e00837d30884ba52 truffleruby-24.2.0-linux-aarch64.tar.gz=391fa212eaff207df31860a291fee28e truffleruby-24.2.0-macos-amd64.tar.gz=0e21c5233ac4a20c4221900c79602496 truffleruby-24.2.0-macos-aarch64.tar.gz=9573cceaf4e1d6444cff0fda3695228a yaml-0.1.4.tar.gz=36c852831d02cf90508c29852361d01b zlib-1.2.3.tar.gz=debc62758716a169df9f62e6ab2bc634 zlib-1.2.5.tar.gz=c735eab2d659a96e5a594c9e8541ad63 diff --git a/config/sha512 b/config/sha512 index 6431798..6c92360 100644 --- a/config/sha512 +++ b/config/sha512 @@ -1110,664 +1110,665 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.0.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.1.tar.bz2=b74cc64103a31b9b9545474fe202ab9f9b15569681262438056865e4dcad08419c44bb696c7dc8a18f72b3bd8e5e98201d0c3608ea652c907372c3c95cb7e16f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.2.tar.bz2=fafffbcd24eb3c55c89704e6e8ea48ad6be286bbb4e38f56c3b3d61f9bf4f6bec28882da2ff60f17f79516476ae50cc4cb8c6a8cf4a0f31b910d6153727caed2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.3.tar.bz2=4daaf8bba3a04d46e04720ff2af1469e1caa68168f5c27d1d3e0cab922055b1f9c0b26ee64c3cb46c17b6a9651ee7a11bad19e9414102455e96454f1a7929408 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.4.tar.bz2=988c13e900168b901a3a3deb4bb96e19b15205cf4c2793b56854b58924fff652946a083be6615b2053fb5285df0fd218d1f9f91562798f0386f0758973765dcd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.5.tar.bz2=c7396627e45d8df68b18c2491fa756085aeb4ec28c1cc707617cd903fcd47d4fdd3cd6ed225dccc14497afb14200b9bea5ba38f1e8dc621c4aea8b8f0f1ccc7d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.6.tar.bz2=389aa514d93d165fe299856a5348b1667f295aaeb49094bb5ff49e9c6861bac603e698c36bf81777797d05a1d3c405e37c1a00a4dbb85f262bf02c1b0e16ff04 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.7.tar.bz2=5a38bc1dd227658347114b935ad66e27fab67b8da9529a7f9083d6aac5743c40aea8c33ca95d4f10ed1d56f29bcc2c0747a3e88b87425a5786245792d8851301 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.8.tar.bz2=44e36e4918ab4c354cacdd20be30acf12f060aab808172184251186758f750ce688eef72f39ea110ab6429fbaaa5a792b1915a5c2d845b6e22a3cc4bc851c6b9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.9.tar.bz2=358f12ae2d4e177a080bbcde8b275691418884eae9a42c98161170c7b0f6029ffebf7ffad27961bfc8a50a393796934a2dd2c7f0ad2a35992c35dbd6c8c6349f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.10.tar.bz2=e7e98be6cf658eaab81486360f4d5d22f86805582feee4aa11a8e2fe6b461db69b850c7ea98840af0811910be7f534317ab5887bc48f47a9591b65fa7262feea https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.0.tar.bz2=307ee69b3051fcec2942fce075232a62f6adf6486239a89fab7bd63a9bf068e36371e67a5e42f86ed60e31b8219ff431c2d4bcf519b2c10393504942d2d90a9d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.1.tar.bz2=a0a30a805be9c43cfe52793d103e9f0dc6076d02b0c5af36d650564aa43958164a278958f7a7e1132ee5d3357cdcfaa8d59a4cc0bab027e288d935a44958b743 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.2.tar.bz2=d3218d01a18f5dbcdb65f216469a463215784170d32110f06372fda6325bc17e2c2aec1601a5bf3319ad753b123de056e6bee8aacdd7c64c4859570d40571ec6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.3.tar.bz2=4fb3bc10aa46a85cc37fb041d351b2a8f74d70c3de32fbceefebcd6e757cd8dffdfc86cd14fa6ae7d5273f875e1d4e13e6446b6dd1882c8fb015d1d34ab5ed2a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.4.tar.bz2=a008439e903b1e97eb5a66a88cf72c2e7438b12b78750411ba0ffa496c68beb8cacc2037763be1c8c8841fe9a248d4be0d0976420db0520b4b8456aed5480f3d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.5.tar.bz2=14573495aadfabb81b985aa485c0090a816f459a0db8e790a7d1bd948897cf650fef4e8aad7d2ab8232d2ebf56bf08363730dbbfbc2318625dcab04d3904b3dc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.6.tar.bz2=e915bc10ecd1129d7ed55a12fdefdd6b6fccc281cb3cc0790e5970978f17652068ccd7fdc160608cadc8556abb73a2c187d041899adfcfcb4a311285415145ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.7.tar.bz2=d80b934273b84d7ccc4e17fa07c9e0a0f95cb4a38224bd60ff73772ef7ecb3d1974e686bb10aa319642709e49789c0886f98f4fc1ccc5312a19ca19f03674e7e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.8.tar.bz2=9bf0cc35deab5f53900bc8e8264dc1b57f91a3477f241848df48109f4b5c97f3140470f523fa768a7543c61cdb7a93427866d871d09ebf8060a5cb75ac6d3790 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.9.tar.bz2=0cdefbcc88c5b9d34c08c8871c548772bd473dbaf54738f9855afddae8da5eecda607b36c546077efd0165114da385cd1f296433afe411f57a524fbff0a69291 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.10.tar.bz2=3aed1b12ca46e34fce66ac23bdd97ef815918275d91ca4723f9a6f2a2b93cb2b66f845747951593eaaf078bd0d982e06efa7641fc3e11d141b7605b086f93393 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.0.tar.bz2=ac6a699d5d08b33e7580a24c9357c0c8e8378208fc7385f5582f088a879f61e48a4654d72f03263a1dcf33fb0838b01c8c21fd39c5e2549d683466e0441381d5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.1.tar.bz2=77cb7698c66ccede33f558f6ab9ebe4be3b775a567d1d4dc12fd85d7b0f28d7bd446b18ef48ba1c879dadd76b50540b57f283e9f226e904e620afc3ba6585bae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.2.tar.bz2=9592c8e2fd9266f5d1cc780706f558e15d775cece995f5b6e933c54be7b7f2be2839b28ef1898b2072c5cdce36b830e72f967062ece4393765f8dbc88c6dff88 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.3.tar.bz2=8243575f30eb38409003b0450ddece621a589e29a4ffe219410820bc2afb97b7daec4c81d59d95dcfc83138414a2df707c925f0eb56907d565dac4bbd5a929d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.4.tar.bz2=ae16edab6e55d1b2506c4cb30d836639035a7fc153511125b578d6da8a8b40cd87650855fc6b4cf777c1fa0428c593325af88d9ad25d53acfbde0051a730eaa5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.5.tar.bz2=10f4aff595d12bdb425eb3268c868e0efb92059e6aed8683fefa5abedc1ef21d23a45e17802edd8e5e0924ba1c3277b653c0559ef4ad4c9dd2be2fee17226f8d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.6.tar.bz2=bc352df203155008da7a1099f7f7d26eb9f80e0d2e41c8adec5eb47f976529c6126bccc207563de87ccc2867d1e4c43797efbf295c9a7a4afce002ee19116074 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.7.tar.bz2=d71dc217011d154ef7b33780366bff07e4232ae77321ad6d16f19090f924ed3867c31f2af4aca4ffbc6a536b0320b676716ffb43e34b0323e81eafab13f17fa1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.8.tar.bz2=aae74010426e2a1288280f3611ba6aac842ff573f9b122fda9a4f1c514e09cb3d22281e6957b4acfcc753c94113852e083a9a80d0cae6b33682b83669c475eab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.0.tar.bz2=4a083c168d9facf3346b67dde02d9705109feef6fcd4e3c7c59c2bcb35c83597305e09ee143915fd993799a888d6d9ffffadb386bd57e9477312566dd6164deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.1.tar.bz2=58b30b00156691de2acc5d21d3255029fc3f9f2536e668298ab160d300fa0bf3eb0705aa524c9123ff09d770807cda0154bae012632b7e87120d7538f844560f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.2.tar.bz2=4c3c586765fd5afb55383d16eb9d0e7ffa5b1ff988a2b1d847e3f972a211b2401f035ff6c02d71de558cc161655438727079aafcc8ab80c97e07e16cd7fb1304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.3.tar.bz2=e66a4ca4b95496964ff4d77e36caf0894d913c1116f901c9b589da5a0e388302b64a79ad6acfe7eb1ca5917825bc0f866b482f074f1d5fed96d91e238f7ef454 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.4.tar.bz2=f95eee611be949327224b89942f4344e7d8e075b958ce3418b5874e9b23981113e4fd58254629fa9f6c2fdaf5840d44785ecf5f04433987f8fc4415df5c3e367 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.5.tar.bz2=447b28420be5b19f6b1381d232920e3c20bc894c2e0d1d2e394cc44e7859d02d177ec3ee09ce96e922f55b7fe2651918805f00fb783af3780e5f25c21f330195 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.6.tar.bz2=5f60bde5843fdc0b05bb852a2f1b30ce085dbcf7acaf105d5af951398b845c766113ff3740d44585ce3814b4953c004230eb4dc2ce8746b6236ea4b7a1d1cb10 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.7.tar.bz2=929a03725dba7de8d7eee3fe8987b858b9b9d6d377beee710af5c3e84b02501996444aa7b2c1db458aefc3e765da17cd17ac30fb0b4d77ab1e54239e72fa2a63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.8.tar.bz2=227849b5809072b3aee211125c2aad3e2e4984e9d9b4415dd8c01dbff70eb9c3758c3cf54f2b97fe282f7a42f205a2becf7b86e1e6ebb4a4d048ca32659603e1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.9.tar.bz2=c15a46ba1e89cc41523a21eec90d4e3af5b9739d27c2f2b51047f2c1db832e2773cbc04871a176f71e7124eb3f7b53262e40a1baab87262f8811a8d69d8e5358 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.10.tar.bz2=b83334e272e78995b699de28bff67accfc151cc7fb193d5c5746fcf06087643564b3a0b538cb64f50706642a620dba2cc54191357321852db42cc8c5648270df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.0.tar.bz2=82038a66827fbdaf60f404103b3956ead4e03c999893f0095109e7d853919992cab615f85cd96ba9158402b2de5a68fcbdb8b32e9d07c6f754e0591f72851b40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.1.tar.bz2=31e9f176ba61480b33b7761d2a19119a200ad61c8f85145f736eb196de50babaf278d023b274274c6a31f2173c5d022bb93e0f8d46a88223659d8ebcf6f5e278 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.2.tar.bz2=75d25fa6dc81ce8a62d02adc2e163e7c222c5946116c4880cec19460e2309457ee1a11a8eac94243ee8437514bfbba9ebee939218b6ccc7e5c1f15b673d432e7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.3.tar.bz2=84c93c85aa3733f2ac82e695c19e714ad4afd096edd6abda8a4915311d1f604453fc3fdc290c6ae1f9055d305ef400f8f8f152c5e15eb230baf7cfd5e192b7fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.4.tar.bz2=131b874ac376f42f3427dcbeb0adb0edd18ece834514ff5cc15f3b3e29b8f14697050051224d7ba2b509d428f780c653a4d7101149b8ded41ae373aab871e90a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.5.tar.bz2=f55d2ff7f2eae4d30fbc14226c928d1caff21db1f2cd559d3caeb0c07a7a3f034fa369d95f783e6f38cecb493d99aa1928def9d8574698e3edea3d33515749f4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.6.tar.bz2=06b12b2a1e85248311cf55620499806078b3b67110fb45dad9cb11cbaf1e230ce8a0da23c7de0a5abfccdeada8eb799f038b1a09980ee9572ec415e24fcf8c76 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.7.tar.bz2=49128b7845954f1f04502a484f17d5c0c6ecf8990047f5a383b2752ea9e09839e5994b210c2f60307d44ffa8b440472116fa1231ea899caf639e1b8a72f7f97c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.8.tar.bz2=24290aab4e0d48719659f8c1153d2b08020f17ae845e9ac6d6b6d3203e4a5b19061e907a214e8d4390277584ff4b46dd4a0113c6b201fa37e8a95c42fab5aea5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.9.tar.bz2=c2771d6b12f4240200926b2c40ec1bd3058c9ef213e2c6032e44799fa34b75b00f2564a0f7c0d9f972870d34c7742174310bfe3b15e2742a17ba2fa05e5a27cd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.0.tar.bz2=1be48c38da41f462c23d516f465ed34e2fe90c6fd53ee06f1efc9107077d9937413bee589d5d3384aee5c09da7087fa84864a50089bd1cf3c385ba3399e9b0a2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.1.tar.bz2=b7e1204e0e501312828ca0e30b77434b2d8d94581627196f0195ba93fb10a11046d44942393bd8a261585c564bc721313152a9087aa56b57b433ed14cc7922be https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.2.tar.bz2=e91a187a9e726ed26ddfaf09cc49473c8379545e2265934fcd1a1fa78ba99f9a119fe2c3c8247eab583389c3af7ec40a0e71da19f6ecc17ffc086759cebaaa15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.3.tar.bz2=77d9be5bbcd115131ec7c842a4449729d1515bf2106a6a235472dc96b58a56873c2d0fe6a3b824dd15ad00194b30e72a75813d8b4e10ee11cc793973130e2401 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.4.tar.bz2=a2e5409a1a88557bef747ca9b1ea65ac90e430500a8f9370023b4314cb5d1e0679a1b03761980ab2e933ac3521188e2151e521408e33cb4dde5f0bf802d81a41 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.5.tar.bz2=ed6288a4d81a740d722b43925db8f22f794cc704bf834a1f9c844e2072baceb8938547abb8f4fb1a50f92c34a8616904fc2679a44bf4adec4e78ce00e8456b45 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.6.tar.bz2=08cda5ff00b9297b46d1fb620301066b21240951924337b8b87d27526e55024e61121e51d9b35feea2ac5eed4027658b39ff487195140e7abe9158181c3349af https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.7.tar.bz2=3cc5695814c4ca49b6a0d7790093e85f5a359c5411618a12e60f4bda75c3635b94736762983e287cd04ce3ee3155d824bd9bb202aa929f85387a741d1685dd06 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.8.tar.bz2=91e371298a6dc1083c8b6265cc8d3d388d17a21d59e0103bba7e68640f80bdd12b98547584b1cd0feb7f8dad6ad530ef5660a154075960e1a76061d534609296 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.9.tar.bz2=7e3d0f7f42d644cf4eecfd88801afe088260d5fc8f490895378d5e4ede76b2bd67959b9803db59f7b19287801df43eba920885aa1bcd29f60d225745d67093c0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.10.tar.bz2=64683129da9a476d268ffde06bd7aa1c67b3c7c97b539d856833ffb127f458a55176d8b4a101e60b18ee923485097f3bd98e8216c3092c3d0527f6111cf7a051 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.0.tar.bz2=cada908be34428bc2f302bad6ebd778a2c7a8e979476e00e45c9444b65d7f48f397b838549d56ceb91f0e5593ffd663e9facc4ea5f5c6a4aecda85a5a1136496 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.1.tar.bz2=06cb5f2f0c0941802119dbdf34995446d6d69ee59eed9a5e9d7f9e7f0e14de440a9e77eee330357fa305e81ee39a6868651c740ebc91bb9a2085a74b33685f4c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.2.tar.bz2=23654c65e6e62354857f86098852af0ba50a15643df5e7f6fc8b710e35a3872f6eb7dc1bf9266375361f696d8ded0bcdb9ee9acdc8d0c975955d299292da7e21 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.3.tar.bz2=ac02a93a62c55a2a10dc260cd52749bd8f4bcf1a2d43dad3cfd2e5c0bf7800c51a5b00779526d84f759f6d50ce673c7f3e526392c4ab68322649f4fe980f2ac3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.4.tar.bz2=88651ffa2f1623ca3b93b60a591e828ea0dcfc73daf1eead2629531beef291331f8ed1a4a33d682828ca60bacfdd7fea77bcd67f1a0bdbfa9d1e4f173da53208 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.5.tar.bz2=001486271268cd1d2252f46b32001b25d493bbbc8ce981ecb608eaf8d2c2e6d6361f6d9bf052b9b2d7694e228bc302a1082689f2038564439705fbecc00de1ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.6.tar.bz2=a48c974f341cd10143eacf46a9d0eef45cfca3ed91ebc9f7fcbba73d408408eebc60c55e15dab391bc4a9ada6777e2be3ec4b9e849927c5782f4443a813a6ea9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.7.tar.bz2=b9e99d1df4a772441edf7fa4e05dd5aaa62efcc5a8c89fee68aa80c4bf1d17ad0e5ecae5682a10d2eb0ff78ee79c583f0cec46f5ac11ae874126082b9f8d76e4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.0-preview1.tar.bz2=8fe71fdb37955b031769359dadc5062b6c15e0618fd8961c932212a6a2610829aba8b1dbdcf4bdcc2e133665e043b29088f714874e3ef3a41d688b7beba78928 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.0.tar.bz2=c51f55af33e09ed425715dae0dd59dfa253e909bbd44b4bf3dc34452656438c23a754f6b2ccf0a3e878463519043361dc7ad8a757c87a3ae0e747599547dc7cc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.1.tar.bz2=fd09a4d721388c2b9f2fd09b68175dbd620e11df02ff7cea4e438d3205494a9883c25def06d6c1ae4207e7f82bc48fdd122fe12630bb9af9da451ce6be19d86a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.2.tar.bz2=2ade19f26f6e2eaf65a8ac3e9ca21cc8fe04252df58f9b14c6d0f92aba3c0eff27b1c68b1b05041496c367051e020dca7b0c64bf44fb07b4fbdee9e68b78fdf7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.3.tar.bz2=11d81f71ec3d293916bd6a00d28dfbcc93e721d12c6137fd58febb79e7399f8fd1ab5a66915863311db9539009dac06612a4b2daf0408fc1f1e84db8f8f4fdb8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.4.tar.bz2=bff3db8c69e85d503bb0686644f2d60b97c599e0cacbdb7cd4b18d630c50d04ed0dd90ea97be01c3b3220589abefc1e4dbef39246860e3c70993f0f2de738053 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.5.tar.bz2=32f69f0e33f7f7d41f4c0e5c5a1cd859a4c6032b0978c317ec3d333da42047b7f8f8dee9c4d72afe890b47b9f17901139142cfbbf228018d8ab5d02f7a01f0a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.0.tar.bz2=f7fb515855de32badd6e5ebbb03980312144b69dd8b696fb56320981e4f0964065cd13853a34dd321fca1ab160510dee8fc3b6c99f2a5e007e6974d70a564db5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.1.tar.bz2=de183d962dd4a8c95bea54f8740cc34931c2d856783fe7506f0252c5c71bb7125db00c9c7eaf8e80f8fa1c97208ba4b2a4d6c1a76e38d2b6251a92166749fb37 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.2.tar.bz2=7589f0292f72a2217e5024b51791f9a719ff0862bf39480f1460b5106f1c11172c72ccc1fe2a00b166d80610d76fcbefe64b7c9df0ed3a72c58964c2402982c0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.3.tar.bz2=d79cbc4812ebe9b308a145e96f6e7f64c2692b04370ecba0bcbaae5427afcc7e57ee83b4537914b6b90494fd45a11bbf2b27999a7a74c7fd569687a93c43961f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.2.0.tar.bz2=2d11ad1c89c1ce9873dcdc87c41cf38105b00e265277a173d721fce4bd350af73caf01fa4a5797e926f1a0cb180f1c6e969149d1d524c4df797939cdbbe9657f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.2.1.tar.bz2=cbfe8a92e732675ca1f7d51c04775dfdedec1b9f21b3b7f0760ef61b7c375cc4b0758a17302242087b55faac7c3f1217fab0f6a2e713a05dac082cd6a5d5df3c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.0.tar.bz2=172189c66b3c721e7413f0088f50e4eb8dd80d87779c3a4e74231f7036eeaacb8e373b7f5ff017f8aa274c1e1c872066f2f93485a2a369a7e9b442d157840bf2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.1.tar.bz2=829fcc1a3d878ee28e89a58a2f6d4221cec115d241a007b048953672d57548002c3a105ea4e65e344137091baaf5d5c54232a54c116afe03d0f3d61c07547c2c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.2.tar.bz2=ec2e7bd32e2d574773486e1c1d733611465765cf14895fa6b017b6ed6301ef40cd062496a3926788851e7ff3bdd62b488d03385aeacc66bed53aed18a6dec225 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.3.tar.bz2=79f822725d4e3bb7daf416e736d87f3b01c21d011423a2b3c65d9019a47ad4df256fd4a1f171961267ab8f20387019fec8f3f4ebfb6664f682bdf36914f6a329 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.4.tar.bz2=aba571bed773554b18863e6b942f2bca743729834657689a016938a34b7e4352e68d9fffc440b2fd4fcdd1bed4d1ba5dde689da535088d7ff8ae7dc364ac3b2a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.5.tar.bz2=0e46655028859f5abb64d71a5585db638d00edb9d20a487739d307bc1dfa2fca4ad196e04044dceab0e279286379e73110590c772a06786214c4eb23557324f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.6.tar.bz2=177e9f0a193f9dc45f8653306cf6a87bffba16780220fedbd8be67a3608a8f8d370011f3993590d58805a8ea4833d95196385fede4b513d908fd4263a82f113b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.7.tar.bz2=88bfad0d6258372d4e9739613a07352e954db3deb43c0e2d2a176f9cf55bc5e2df73e4cb04bda75e2dbb210799649f020a7284cd2acb5fb92d2b115a933a4f03 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.8.tar.bz2=3710f83ed7f3f30c9b5d3dd515c168534d01811cd33f20d3a54e654dfb5140afc8198f46dd823ac45072a83d844ad866af1e2b8265f54f9997356be88fa254a6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.9.tar.bz2=078ce0d7433e63d947fe4cb0cd5a14e6f5fca00b7309d7288359ed90989dbf618bd8c1f5f31b607f3ad6b0cf540d715dec2c38cfbf71cd170e572321598bde7e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.10.tar.bz2=f97f877f7afa604dfa7e8f1b399a4c034e79b616c95bd4e48927d88d1e8adf8e203901fa178f93c6af4511d26a38e2d8cced7225c2e75457bb02dc27b8feedad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.0.tar.bz2=ad619ccf77132166151e4982996e93135fb91d97701ef9aea12b6bd05e18e585dc4d5fc34883b3369ebba15474741db238fb90192eb273dd5428864429525d9b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.1.tar.bz2=9094c9bbda4c3d830382e89e4e1c24fe43cebd9d733b6878a43a34d679092bdb6c7b23cb3cc08d4efc6e15449c68862799713006703f95e2862bad1c0b0bb94a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.2.tar.bz2=54c8fc2f2a99f834292b83ef8e68e2b120f20fc4ff74856c13137065b95262f62188ed5c6ffea8fc4b0c1034d9f8a1b497878d6a581391d422994911f5fcb35d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.3.tar.bz2=b26daf1825cbc9cbe51e1abea84f3aae542beec7c26628201325026b4d4bdeeb46f8053a1c105973242ef532e66bd4eda5199dc1aa4faba1a6393f9cc126d856 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.4.tar.bz2=e5718fb13f2fe7f6b34fbc2b1a6db95576fcf9cbed481fea59fd4dd28d064104a912a1000533810221141ec09e9fd8d1e59850ae5a26ae441bb6d8878f42c418 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.5.tar.bz2=71ae2c5bac04a97694310daf76e896a1a02c245274e9c96ca96740f78a0e245302564bce757f1688d3e83b7c0c88989f702814c434101f8df786c1276a4f5a2d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.6.tar.bz2=1693ebd7cd3a452f51ce2ef32144aa36f6fa8121ec68cd0fff715db8981214ea9fc729099e4495e1e8bc346409551d4b93c6c3803fe187fc0c25360b80caab72 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.7.tar.bz2=53b05c51b970a239fab953dcf3bb433f59465fa0b4dfe58066132a1bf6247cbe4adcafe41b219ba453ea392f88a521349df14d58a91a855c53c9b9ba4cc16c4c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.8.tar.bz2=b9b0d99e590a48ceedbd1d6318c29b8fecc12b02ce5a6f1555593eb1b3e284c766f2f8800ee3070fb7a041593e4a3806d53590be760381268ef0f9588e127b08 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.0.tar.bz2=90491968190f4809fefb4068fcc37fb7e2ef179454f57c90bf2af308541f1ec175a72ded53202c1e86dbb63cb6b47678656f753574bf6ba525e982f3278a7602 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.1.tar.bz2=7f9ce1b6872352a6feb539948d26dbdfefb3d4225ba582ef8730be8fd85d5c350bd6f21346d43cfe26a8501c4ad145d733d94da5dbf25b15e7610ca037ad4227 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.2.tar.bz2=8544797f46d54cc4098227809561023bb7bd01eb2330724a94921c5a79ac64b44bd56069d7a77a3e6d2d3dbc504ec25157daf7fdf921c3acb3b4289ce1bbfb5c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.3.tar.bz2=fe086aad84ac7fe8009ea2bc16f0ccb7c60a5fc9034690af38fce1a05582a6226dc3d7b80d08d1952d03a9abcebd7b361f5fa2d506d71e1f5aae9b5f31ac22af https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.4.tar.bz2=ce06ce97ea1554972b00781332f126e767a3ab98f5023d3dc83195bb36b954b1b497961c74bf31340827d9a5de2e0bb34240accbadad550b2e692d26cb097d4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.5.tar.bz2=6fa248065a48cebd1e9950ae07f3e653b3e29e369fdd914908be0b215257fa2766b0182e392fb869af51cd498e258435f6d9b45a03452356dc08da0e96877ae4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.6.tar.bz2=ce912342033f395ba6298051b081c89832f656d61ecf2064e9568692552a938599c816d2cd1fd1f9bee721611f890b8329985c69f4d5b2bdbfa6635b48afe3b1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.0.tar.bz2=cbfc7a1cddff0385187a7bf2eb9dc71a8d14912cbbe4e9529b79414e49e681302ac9009b7c8e6fcf92a9f19a0ca5053a6ed25edfdb510e3e4e247474d471c58c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.1.tar.bz2=29b99b3e04325ceca89b64c7846aeadb412215270f6f7c390fb1e275ebe19b2faef811778c0615b2d4720ddd942a2cc209c72e623f559e6c04e78849cc1c1b1e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.2.tar.bz2=f67ab3ac13ae90622fb3664a869b0c584b97df0500384a28bda9c5c36cf2a27ac1f66afafea08bb29bbfbfc1e0ddc444427993ff4163987f5510c4158a90a96d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-3.0.0-preview1.tar.bz2=aaeeafee545dd1ba1c4df5b7e46e82f7e89e0dcf4fb10677b7e177e66f86e6825e85fa5ae3e74062363883768b3485495a3378f97693d45f675a6e547e989cba https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.0.tar.bz2=3e78b2a73167c3680aebb1ed015c583d4f6c58804d3b272253bee2cef37fd2d1cb3852fd2b408f4af1abca17725d923a1f28d40d2a33896e5cc21c4c6711d7ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.1.tar.bz2=14e7962e180b9ae16607347ba5360b9ec086eb8055b88d2f60b1c9284fafd93fea905aceb441f07d594a34b53647520f9dec38e4e9f6ad3e5a6850750d981a27 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.2.tar.bz2=5b7d88d4405cd45a6a720295cb0b7d3152dd757aac996c8d1a576c6ab2a45cf9ed0b0ac006423791cb038a14153048e96308ecc8ba1e761d4b7671dd6f880d15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.3.tar.bz2=320734a124e26de068457237b5f973278286d7e529e92405c1b856b6e57441b5e76c59d0f519fe43fbdd2c8c48c9dd37dc5094831c0e6a81d804e88888ab6237 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.4.tar.bz2=ca34ccbfc24adc4b2c6c5c0e3b27bd2754c2c5be61e9dfa7b919b4902174e351f45128d887c179c37ccd5163a7f51c213fae96be4d0c356e2d7f96acdd4f164b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.5.tar.bz2=fabb151c29ad7ef7432efd4d51ea1e20180006601617ba896f8b1379555f4088d398e96f7bddd7c9815b266acf5ea94527ef4acfad2446950da6fabc3770f788 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.6.tar.bz2=2728c38987d41169b7110fce2b507b5d3e971d5b043b60c9a3b8d6d385ec2a40d24e464f6cf081844282d6b9fadd4abce670e79f02e4606bdd5aeacd1b57f773 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.7.tar.bz2=f98f4dacd9d8c6c9515ddc2597da8b868c66897577cc5a76819db742f3649881ef5a7f85a880f1e359772b1ab08750dda6fa74ee826938e06b93a9848699b929 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.8.tar.bz2=47fb4b41e60b1e536b3a54e18e9ee92aefee7eef92d49716b46884b2a3d73a02e88e4815df64baedebff80e9e17ac7b0af6e65b406a2c53a4f90421dbc948415 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.9.tar.bz2=c81ad5e16aa18beb7c34eeee68ffa96da243f99ff69cf00932ad5ebe427c1f80e3f7fee31b15ec0d96c1be5c2007dfa6e96c38114f61e958c6b7ecc40270db4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.10.tar.bz2=856210b3eb2bf338c5da2668e830b95d48feb82c1c4407371b18c772df12878703a9eec948a2778acd098bcc8eb402ba6d57b2b935766847f3e652c3dadaf6f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.0.tar.bz2=6ea5e6338319e5d6861d420b10f93b5e6634a9925380c61acfbb258b6609ada76bf2a6b474b53a30b0a81f0dd81cfdd1e610b68698df73f69091f479ad39bc63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.1.tar.bz2=8e8e4ef137b9394ee34b760dbeaf4d23953bec083e5775a423ef6c16b75faf8bdfe99df975ab6b6d762509536b017f3510a9a5e9ab63060208edd4d2d96371eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.2.tar.bz2=756c9ecbe3c9801a0a364143478903318c524f7aba026239a1fb42d7390f74110805543a9ac2a9f8bbbeaee48bc867fd15d400d8bd46576bf4fd417d6136a3b2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.3.tar.bz2=594ff95e33d0f7af7be448a781ac68f895f8344ebb1c9a03898813baa5963024aa84b11baa405fa584070e4195fbfda9b908f1fe171f75f19e5e1d7879bdaaf9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.4.tar.bz2=a9703c6edcfa2ddb87bb73c070d963fc4d59599919865be9b1d93989906698c6f3b9c4fd7f2d597e5d710276555de0b5865676b92aa3aba1f1f41be4052bedc1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.5.tar.bz2=dbd91cccc0a00a1ca7e901d56f9840e62e4f139ff4dbae530169f41897d06523c7e8977138ffc6212e1b60589f3091a4e2f6b6714c0fad22fa65e442b248f61e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.6.tar.bz2=ec967415b5bec95154cd9ff8338a602a6d005fa647afb1e1cff54a0fd4e9c0697b9e952c2dfd8e4b30068a697f5391b9cd165d5d33f3b146fe35f2a8fdf9823c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.7.tar.bz2=b8786ef31db7d950b1309646f81e6a99d56b76223bb8d2d20ae045f09917332a869b14cee1bf235675c7d8eebc6942b5ebd6cf0cbd290ea75d9f9be1475352f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.8.tar.bz2=4d949a715a04cd45f6817b1b26093f7bbf03ca630aaa015972e7d0ca72bae094add18664e1489ebf8ade27c160d2fbcebdb105701d719461af13c4d5fcf2cd22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.9.tar.bz2=ec6cd8bd90ee99aa6470d9d524d89531f96f992efab8a9d6a709a3959ef4c314828276e67b84ed97d415cb3e0c837458d13732dc940c93d4d069d9b881d7f92c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.10.tar.bz2=1f60cae30581e3467c7ec07391de5045f238b61a49661ef0cf76d72ef78d220b7ae70b86b1e72625cf37085b6507fb1dfccfbe5554195f0c6eefaa996e199c16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.0.tar.bz2=343f5dd6703b6b58d61fabefc8a50ce5d02d98c32c8b4e52b8deacc9824369a9f0dc8faff69e90ca7585a194a4d742791765b16c3f5e2417b0f54e0e6f6220b4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.1.tar.bz2=aaf7f9e30b3998b8586764f61d09e434c32aba7479aa79fb6afa71ab11c067384ef3a4b9215a1a3639da807f4f642b9efc62b37b55e989b7ed7d75cedc7cab40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.2.tar.bz2=b834ef95d52abc1f0c224193391bded9b4d2089c694378dd5aa45f8b2b1ea41b1c300445f766841cbb8cdb1114491ffe0095f518e1600746f5f583dd0cff9c1f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.3.tar.bz2=9df5ba9423e0a8af9d825e59f8c69889c70af0f6d67f96708a02d7d61260c83474e2f7b2f240af399911bdfc56850255b4f34554f7013d0417a13bb782403aa4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.4.tar.bz2=1d4b55a6a34249e82880fbacfc1d97a093600005deb982c6b42ccb14bbd7bf1db14e0f6d73bc25f1addd72378850f7edcd63738f2b3cbab569e34e89d563188d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.5.tar.bz2=29a76dbb28d5b63ee0ce64cc2e7d022118350a550d3693b8e38d559bbc4f42fdb6b63af4bcc4ebfffc5c0fbabbf2e18db7228e655de3bb416e344a61737870c7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.6.tar.bz2=122322fb462f8fdcb065e6f9d9968027c320ba9be9ad6fba9011760a7296cec1892a0780d7436903cb7763f5d18cce11860c5c7fce82890eaa139a94d5e89428 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.7.tar.bz2=0c17f52a74b73041c588ed76f73862d179d7b9abf9de61279dc74ba7b7f170179e0db5672a403dcc209b6dec9a865a88a382f5df01f5e6ba4cfe0f66232b4a15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.8.tar.bz2=1a30bbda34fee311762a2f05ac7fbcfb4f373f8840f86b9762b0c07f1cd397e3eb3be83210221384333b625a243c7161ef4f368602a613760391265309e4f304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.0.tar.bz2=edf31b2dd02208c96be25c2f4f7d35e2b122e5d327133545e16038836b848b90f81079be4df47c5493bf4ead1d464fa72a8d0d405bb2509ab0db6335c58ff793 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.1.tar.bz2=91cc7a9cf493c7361f3d507cdbb8e258b7dd710100cca8053b77569c07c04fbc2f72fdceb9fd9a3a5d01f4c423a206da97730c356d017157bc2454041e1f1fd4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.2.tar.bz2=8ea603a27560ddde5fc639b86381a303f886ce80384d8edd0e7bc806f10649760d75a76dd5f2ee445371254e727544ec12df49d7fc8876890b73237f4eecea1c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.3.tar.bz2=c42f24668695be5c291836ae6f39b4366e0357c9bb63cf8be2ad36cefe0c6d19cb921a43159d49d4d062dccc15902ec1698a1a6842d13ccaec45c6cb628da4b7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.4.tar.bz2=3ac89131407faefde80bf2e1bed4baa51c371ab4bffc18c8dcf2624f4d1068c9f933eb66486a2bc7c6c67f674c5bd06747bddfe1f1f9dcd939458a08e1bc6108 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.5.tar.bz2=8ca9a9387b8cb434828fa36e5886bc8a28d70fa46d3e20df60389880477fa2ee54fe63c0c14611a2cb0168ef1149d205640c6003e6a507400ad5fc34fa641bd2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.6.tar.bz2=52795cd7d112ff437adf603f58130ce539209628d2224a685d060d67a07325717981fc6f91736d4abfe014ccc8057bb40a097fcf85f5046aabde0019d08bef16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.7.tar.bz2=bc179a31c746ac6e632ce08f57a8f403d4e463ad72285c0ce008d7fa39b88a22be3a43014c9eb019f6a39d022f9448ef151a8d03e89a4d2e767c4f77684e3750 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.8.tar.bz2=d693e3a800c2200c74b24c207425f41cef206a0b3f20625d18b1590e9891f409d6643ee0e7ab8fdb6e1e85de6fea52c6a307bf8f65324ee0f9ac33306ed1e876 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.9.tar.bz2=4b6cab99f6b7be7705efa5eb6f321b5eeb1d1c6e96d4113bf96b57378aaa4950b39f40ad555f630f17d216d235972f028617ea43c28b1970772ffd16be3d9a67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.10.tar.bz2=40bd90d231fcedbe34ec9963eb59645fdd1036b03056b9b8fa3b56900deb86d94e2a256f90e6aed297288d6797857a3ef9fc27bc6ed05c017b5c8e8ddc465df1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.0.tar.bz2=c1df39ae526da7ebf87510017d7694e6f78c59871baac4e9c5f2d13c22cbecc30925e2783ad93f741110b7c3802e9f25a6c3ff85160b33a4080b0f1fb02f7740 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.1.tar.bz2=930f6f7f654fa14076c84365fbc771d5b09679588c4c478d8f6944770c53fdd37213bdad159fd231efbc079b85ab7ab648b0a97fafd666c38d0e280046c6e2ef https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.2.tar.bz2=cb62ca82d57dfc0e21e532d4b523f49c559c4ed5f3d73adbd9d650bbf23c694d382f3cc25eed6a8630f23e4780db127b4b8b6ecf6fc24b0f6febc820dbc6af3e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.3.tar.bz2=708209a89a18cd99c02392307d2bc63e46bd38c72c8ab0e982b28285f8e006d4ed77e04da3900c880eff01c3350033cd00ffc3be1d3a12c4ee5b263282f0dd05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.4.tar.bz2=c94f5b3129ff41da1b07da1cf742592e9822febf6bcfd0e9eb7145c00b732fc66625056bddc72fe9b631742c70d0e731cc6a9a16a089c7b559ae963b072578eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.5.tar.bz2=b4d20f79eebc5496768fc6adb0735c6a23cffbb39ceaf9c2da42851ff7842dd2318c07877d89564176d206e22b8824d2a3c637b5ef02c5caed0b2b5276581032 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.6.tar.bz2=a09ab93c3d6936d30065236ff2abbd0295988a9359f5a76425cecab47af0ca5b6829530d1708e9ddc9e78d1fbb7c0359b9c7e90227870537d099ccc89c73844b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.7.tar.bz2=f6086c879f8737eaf6eef4461d23270e9e43811186a22f35ed69a8303eb933136e7a690bce2d9e18bcff730725292075e09db0f2384d0e26018b7f2a0df70b32 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.8.tar.bz2=62c631026560ee310a849483f1b48690075477942ce86e0564e92f5ca7834553c435a35a1d6d8dd957c3a7be24c63c32104518995eb3a96e61066a04887bb0d6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.9.tar.bz2=0f10741772d2498167c1eb2aa263292f99748518a4ec03dc19440eb5befa075fa69e68b08a09af6eb2e02e462ff20ab10e4121cfeea7bdc938c04762d81fbc4a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.0.tar.bz2=908132a47bd996f8c76bed54078e71abb154294f97dcba779b4cf0d3b82e31c4635dff89e97d5f6b4f1d797d854c6d020afdf9dc77b10c0e522755fa194a17c3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.1.tar.bz2=39c867ac0af48410c0bc6b01f1ecac00616a59cc07f3f5a3e7cfe8f786b70c7cacab65550dfee777d11b8b7a3ac173bb22c602df370eef6a04b40f8e539025ae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.2.tar.bz2=2f04566f6d778121281bc6ba23ec57ad408049e649b351585bc9a3184848c71873910e159f7fd3909c7372378152f5ed264070aefd45933b97980e80f6df4deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.3.tar.bz2=940375b11c525e3f0bf00e19013eeb886bf85b8d8b66d86d53740170b0ae16b14faa491dbcbec29238f875f84204cb0d52ade17c180d71e129cef5254f338f0c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.4.tar.bz2=1c9d41d7ab7bd69d7e3baa3c4149b1938cc147beb2a63923dadf2fd959732c8cc824e2add0946bcd62f44b0e1d509b80b4796a5929841cda8d28f3a8207b17df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar.bz2=f47443a53e3008cb7b7b7afcbbf1adf44887769e42b3defafceacc1e50e349c9000b98010f853c6b7cafdb54b85b640732a56a8e11ad8e58fedb5fa4724f68d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=fc1c9a08c48ad91edb4afcac5244f386d63940fa906dadaabe02a1eb025375443c8174a6ad1acd50f4583d6c57a88feae86e697ec15c8a25bb49f280b1357783 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=aa611f7c350374d2c5c8652a694022e038cb5a65fde795c43e927067f155d0ccb368b281b1575e679b84cd7ba6042216dc28149e138256faf62dd3060ec0a6a7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=ab04071b90ddb81b68f064fbc9f2bf726729220e4359113556d9b71f3549483f122b796b3b1e4dc8404e6f44a4bdd02e9db2c8066974acf190448c4d5a97dc6b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c769fd3814bf31728b83f2bcdaf0928e6423150609f3db903631f9db68ce0a0f9c87bfce5f93983cd962662148a66cc55f5f42bffc1a1b5a237e6938726629ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=c231f8ecd46760db49796519645bcb5cc9fa1c0582abbc419a2ca81805c81fe8912dc32dcc2c5192ca9ef0d502da8f61ce1ce7ecc87b29edad3a144a8a0c200e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=b41557c83084c8e5bb263aa944499932ce7d84457e4e307f1cffecf62aa44f8543a06299e38fee17ba64f8952048612f9289e24c35acfe2ba02b913c15dc1405 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=001d10af5833a03b42d9a254bde844731d3a796d98ce2efea90fc68e4638c7cc3be31a34fa163d4c5ac18c60e685e5cf2ccf88fac46ae6bc587a48ea35cfb09b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=0a8681afc19372ccd9409bb017967f86c2e6642e083ca47ec904cccc34242040f710392d916a69a327ae6a0bb287d97bc05bbe116a1d93478ae282b32e5fcfab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=e505ff2f00334870d07f4ec9348648b7f3b91dbbad1fddb2f60f7a38572a66a7bf081fc7b386f800d86113aac1ce3cb739c86cf0d6da2bab916a4432ad557c54 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=aee6000ac886cdd4e4044a7b43ab20d54d1e99f6b893af69d0d7e7a202f4ae861f939898580c60996b0bb7c6481eecad69a20acc83c75cc594dfbfde3a22c476 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=86f4e6948eaf2586e018570f09232b94f907766590eb75f00992531ef74676070ac5a2308e121ecc1c23388ece4dbe1ee8a4b2a7ab99ca00a28d6583d6df3d0a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=1bf867b0af84eae4e7996047727fbc7ef459afd3b2ca5885f658a74d62910d00eecddbf0c11b23265c625c26b420421ca5add40079438edca8eacd8b5c0149a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=92a3b217079f9d960cc4fbb5908f7fc7ef71cc3ec8e5e404341e2b8875534c0542167d03b61577776e0b0f049f9ba2e3235842be381b4d484845768adaa6e3f7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=608f0f9eafd72226fd1b39f6c92d0f1c6d3aa7ede096cc390fc4f8bee4326b0937767bc6de84fff536dea48cbf9bdb8ef5598670235e013ccd630b06c5b8fb05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=40cccacc66cc4b7891b01c35375ca913efe008157ae540308b649e14f5753f34f1827861c6e16b500c49ac95e1aa22e1c01444faca5dce71f981452a9e0f1b67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=5a33d600e55f7b8755725d7e2f2102cd76720d524d7b378d85fc21ea8d853166dd97e2e615ab18f9e44122e3404b439dd123f8e23d6ade5328982fe72db2af0b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=37e3a4011b3603807c6e0fd48818b256caf272b3720ee654f38c0ae202cffa21600f9cc751b5335b57905ce67db185b37f548ac9c84d6acfc567f0ef4866635f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=6648c1b6bd962e30e89eacdb6130b1788ccdf6ed05ea13eac32eefc222438a298de8121937262851cf5c4cdcc1a804d5d8bf19667819db6599bfcf79e57b0e17 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=ac690170a6801fd741efb88e67961c0c3d717029b3bd9c6e243074799641c940416fc9cde7b4ba2c56e79551d6cb7fe5f7977649404da0d20d1819d7d3ce0bd3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=e6edfed2dd9d6649c47b1dc1b102f933f76a148e6dd8441add2316073dd255cac851e972366e4821fcd665e55b375fac757d189b7552baaa0b49e82349c71b77 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=69c4895076690037199f2a9b98e622f6b5e3c23ea02de79bcade6193da2b1b88ed0c28006059f4ecc502298442275e7e7324232de04a2f0ce430665057410a05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=175777563303c6d6a04393938ffa7e36e0bc6db33f7d2cf1d42ec852b41ea26dd7d50569eee4cb00497e6bceae95592365ea6718a35451e5c929d8a085aa9649 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=b668f0cd853615fec38253b264115ef0fedd21a7879a663ba844f4c3fa8b87e5ccd8adffbaa12ffa3aa16b108a2a439cecf827e7d8e19ec8041d46e758abc391 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=2039b1fcf55cca35ed3c8446eea45819368016ec1a05a5fd4c6a761b54f5cd56cb3301d5d2674af1ff75bda41eba41b7156e71ac48b88ca7a6474f0e944efd89 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=b4bb324a53c316da488c5f60803933eade9ad5c59a6d58e76787d2dd89dc2d2f18016d2ac4ab0853a40976b4beab70864a9c2d23de194bcd63ad089b2159fa7a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=3a9b5868d707d6a4580a44ab7504cb46a2713f78918142b185f0d62c5b7e0dfebc1ff551b2a52e9726befb70abbde867d2802345a01fd3e4568b9f58ac83c168 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=39007e736b28ca599ea244bf4e54b52e86597c950c0ebd8f1696a02c8eef575a734d089b52c7013d00c02aeb261dd7e2facb45f24b34c75c4bbf14cb8bdc3ae2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=0fc4e39f7382c29fa2119119a78040c611fc8298bd4765025599d3018775cb2bb28f51d38efd4306e9f04eeea20e7c2365f2fbba1233e0494a8258c3c184278a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=5dfbcefa70f5b81887d34e776713bb9c6f7bcecbda8f1c9561daa3e235c725417ab0a930f594303723f226d36306e6a73f228abfa3533280659ab387708182da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=00936db899bca33dfa8d0e6ffd4bd6b0453ad5823a450e50e3a055ea696dcf94b317357732e26208a6f34224c33a8b4a6130e5613262d62381179a52cc8f3a1d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=15b816d190fd58382a2f6f6e087f358b54003f186462abf59dbef545af9044a2b9c65576119185adc6bfd9ebcdb49f03a2a268eed4fb0f0d37aa35fa18adc1fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=3a481c35668be459688a66e4e480e11b4e58c13aecc3751da9de8a3e3282bb4a152128528a804742aa0b4380eb537b666a2b29fd79be0d6968c4ff1fa428eb7b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=c604871b39f396c539c52dd4849d1d42f37530003601f60162860efc777c85e7e1a1ee88a77cfc9ca8ca20f0448a5dde4f39cbdae67470d8d2d283d6fbbf0239 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=12042b5c30179da275fcb6155142ff2787e86cf577caef44b7c4d8175ac671cd461814e9a19f4c9b1e78bbdf041fdd06bd463aa972e194caa91e80778a56bce0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=2bf1c13616b2e255b8c269bcb2f979a45009c079ffdcb10a13e238e5d13b0978e8a974bdc1e7bf8519e15264ed5f577cc8f85a5861b3ea3a4589eb78138a3f2f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=2e7876c8c8a1f4e3cd1913023c564d9e74972ce427e85765bbe9ddf237285d7b96017c1ed17868eb912509881e05aaf96e4a6b353a69989e61c733b346511715 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=06de4f6f2761bc58d94659f826c7c86be50192b7dfdb5c8b6710b384a50299ad161309e2a8c333fa5249d0e7112f74dd0c0b0faa2950a6e74bdba68833f68702 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=597374487d196abdfb389c79d7d09b81026fe3e8043f8811497646eaf47bfa432cfb96e2af9be1a35ad2d05f2f5c800afa3f9e5adb0ea2b2d31812d219232a00 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=ba56050ce3fdbb9117c6c9e767f818ce3d467030713b7693ebb039f6888bd5d7e5f7b1986ed117414037e56e550707c3625a88bfd5d00d7319d0c7ad642fc811 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=395facf2f7a15eecc94e554a60d87c269ba70c5063b24b7bc504f579c0d12a7d858eb0b98c502016ff8bf02aaf11ef765e2291b542759fc96affa186206ffe4f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=d1d527b2e95e3a16f521214c5352bcb379b946e8be1a943da872aff0ab4b8edd93a507d693abd7a8ef1cd5ea1ee6e6bf1f838683f5a447a6cb7992de61f744ad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=e47a50392c4f3ee13a565103e0c5f9474ba0a8f5ff60fc9fe7d290b7f5f9a9ddec962fcbb103a8d3b9c7765a28ba59237975f90aa3637a06a128802ede28b3da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=77fdbe62d1694732a7307c29b4f45d0dcab7e8a729f04f45b216345336c5820715bf3f8f7cab52175c4ca1a431d867c7feef7d802dec61c2cffa4abfa8746e90 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=24da0cfc93ac536c505dfaf2dbddc7b312a3cc5c72a9f47e28b3bba760a53b584422b73da8546ca01cc44d3906a31eed7f27a3dfc0bb574f01f9c08f7c589d20 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=aee8267c4855e95a55b7ab858ca6359d635049743b8e38d34ad1430522a0cd746cd572e77884f7e10af14a731ccd8ebb9cad6ea035b0fca4ae534913a38f43f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=ba3e66bd3dde28e7193b90c44194cf7732d294e592321c482deb3b31ddd9655630f5b04aa89a43eb9d1bc222da10884e9da332bc9da78e9e1b655300db52a444 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1df8a2ad9256985b4ffb3da5b545af4160ccebdd8265711d1b642cd2285a004a42cc2ea51ce3ee78854e599f5196c66448b8e0b043846ef6e6bf992828aefb6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=cc460b3d17d460abec27d77f734e1c1e7a649769c3374f02d32a4ad00f989ff3150dab926a203b209c92475100667dd524774fc37633d71f98737ea2d8868968 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.2.6.tar.bz2=335cddbfcf26c82cf9bf9c7ec6637c1c3e30e1b10d00553f5dcc60822d40b560e412d404fa65faefbd1c9022a2d7f0e4d93c25d054681d109c7cdb5968989005 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.3.6.tar.bz2=5531048adec175ad23e3bb050ba6295352cfe17ce27203c356145008434107831186a09c00ff158f4ce9109776f381661f3047e828a177906a52143096249dbc jruby-bin-1.7.0.tar.gz=1e466a3f8d52b553c9def09827fda4b8433576b0262c40ee505602754521a00defd821d5ead5052be52baf281c6cb080fd03a8b15c628a0ee67b4e417633e5e2 jruby-bin-1.7.1.tar.gz=ef28381ca30664cf450f9d3df9927530db771d30e86ebcf535af38e1a7e26724ae2bcfe8487cd2eb349bf609a733a25528aae14beab4d13d298b5604ac7353cc jruby-bin-1.7.2.tar.gz=8155c81eea6743951db7383bd9f6b1750614927c9c0b25a6574f6d64898bb3ada2f626c6e0df6c5486561a03cc7d472fc12fe804ce66a3972d2fe02e3f407100 jruby-bin-1.7.3.tar.gz=1d19be25bf4a7dbb0edad71008704377893d3967aa4204a0d59d6883aa04462ef6798c64d0c0fdd3f5129c16ccb42e8507f3fef38ed56054bf6e689de745935a jruby-bin-1.7.4.tar.gz=d7c0ee0316c50ae5413757e956c18ca68e9d99a25cf85be978da0787c13b8978d4ff2712a3effa564cfdf07144be4a56a0cb8acc794a01f43264fe8baeb125e5 jruby-bin-1.7.5.tar.gz=a4984591a3809330b93f4ce79fd1b9c24360f89d88a03bbc76351be623893c4bfc6441375bbea452ba4f24ca8b9357e03ac938fd6c065b3e2348c0f896b22a1b jruby-bin-1.7.6.tar.gz=98600a2d46bfce14111c7eebc62716352a4b685043afdd696b8fe51c6b205eb9569fc2860423a653b842b173198c76c59767156aa48e0d23482dff3358d884f3 jruby-bin-1.7.7.tar.gz=71da2e72c65899216fa15ec568b51aa7004e2ed7dff99ca376b332d3692c83a674c688dc21ee04d177a3961a2bb3973714509d88cc14d0ba9f79c864c6258a06 jruby-bin-1.7.8.tar.gz=42d54243653ec260abdafecce1143161be63fcc38a80f71ab70fcece4bf91545a2b12ed2319f9fd6f6b41916c398a9a8e89e7f0389f59da56f2739665e74522d jruby-bin-1.7.9.tar.gz=f519f53b1d9f57cfe28982ad70b892dc6fc20fe6601d98d65a1dca9f617a0eb8fff74d0fd82ddb858fe105d05ca7c7bbf3a987677ae0363caa2981bea358c096 jruby-bin-1.7.10.tar.gz=160b701f2f500dfab64beb635e5c4dc57760dd422d0fffe8d3cf8d84ee6ea17a877ef77a0087b4888ea9db64ce7750de01a73a51530aa6666a2efdcdccdb89e0 jruby-bin-1.7.11.tar.gz=a53b0fa327b98344cb4a8aad1ba537ddacb709a0e173b1e32656de8a610cb9896e9a4554d54d0d01d2361f8ff1539a0e2ee01308f670df2004225231b704065c jruby-bin-1.7.12.tar.gz=bf2be8a37b53d38c75712a6331f96b999fa6b0e87f453fac7b9d11eeb1b66098ea0778172f1a6a84345e1881f05d63012e28d4068a0bd31122bf2473bbdae5bf jruby-bin-1.7.14.tar.gz=f14e658da7f2abd469edcfd657dbc2505d6a2c04ba1e5f65f2164256f54625da154b338bd3d286ea6a18da61d04d90a61ad6b012bd9461182753483efcd0f603 jruby-bin-1.7.16.tar.gz=47ca714c3211c95c84e9c80ae4fbc894bfd7ee03e1bcc494cb48d839f8538db4aaca7029a4913b8d323e7227450e4e41bb943dc670f43df8a654eb127012033f jruby-bin-1.7.16.1.tar.gz=9bacdf6e212d08e46ac2c49183c8611873f6ecebfcb0e928b5110bdebfeb8751ac087cf8aba09afb9a8ccb58e59f3c3e06a241c1db445835d7a875b0c3deb4b5 jruby-bin-1.7.16.2.tar.gz=349283bb5344a62f282021ce39648a0c8d0b41ecf8f800ab5099b5ce161ff771e688f205a918324cef6ba0ded6b3694b8dd83f46f56be584202b8fee496b37e7 jruby-bin-1.7.17.tar.gz=a3b171df08e789f91c260c5a57ec842a5d62cc8d6b462b772905ec5284e394ed7b78f5b327ca1ff20f5deba8371a86cb03fade75b5f34f233df47bc3f08d469e jruby-bin-1.7.18.tar.gz=b259da2967e246a387687117eb13e8986b57de6ca8e570d6f8f8f07b8097db6e01cea8b0ec3a860b091fde14de535260dc6dbfc638f9e9b49d348f726e969642 jruby-bin-1.7.19.tar.gz=da91efcd51cfc833666f8b7cf949d3b5c41cd8da99ae1559c88a7358fb48df1245c66702c7cf23e7ca012cbefae98787c200352976d4e8aa3e9120057a89dc8c jruby-bin-1.7.20.tar.gz=77131afe46e72c406ab4250e43cd1f98e59a8351c494044ac89f97a7c9a81492f8a8194541055fcf1fc59569e99a577fd6a36a9f6a3952a99f399d4970e80e69 jruby-bin-1.7.21.tar.gz=111883df12a60d06e9924d33057ba72094fcffd44f7e3954d6c6d2190f8e6442804e739cc525a9e75159251a8dc1cc487570792b1b4f5773f4d0082f0eb360d0 jruby-bin-1.7.22.tar.gz=6ed6cbe7b81a8aee60906fdf965bc217b3db794698e2cb37559f36ac119a0cd2a1ae1a7a766535ab491d647e8b4e6b2f63e62011714b757f8691455831ef365c jruby-bin-1.7.23.tar.gz=6f4b97c4e08274f96195deb176e3126e8d047c981cb655cded9665624033fb905d60d5586704a3f91b2ca06d7e78918d9d31131c93e4c90c75a38182e309ac9c jruby-bin-1.7.25.tar.gz=a89ab8d539bff346ad56d345b6a205f74890b9aafe82a2c82e7c19cfc30b77fefde1003e8bd7ed15f141151bc0fd21946203219691383a64f2234fa586e1905b jruby-bin-1.7.26.tar.gz=feee03a50900e459d9ed7d2096056bef126c4551c02c335c4132e2307411f3fc4fd435e8fe44411184773c80f0630a7812b3d798b7e9be2818e1b5a712bc6995 jruby-bin-1.7.27.tar.gz=656f4313fbfe5db8d2d4fc2087a012c91efef848394c48aeaa0041e9a19b87ab74686702955413d2c51d6b4b11c758ba0555b30fdc42e86d66094411324139b6 jruby-bin-9.0.0.0.pre1.tar.gz=988c6a058336ab9ac8b27c7501ceccf3940837f9b9d3ed32a466b891bda1bc13f76199f5bc3baaa1240dd0dfdaee40775f721294d667f3b8b5bb9ac8206e2e83 jruby-bin-9.0.0.0.pre2.tar.gz=f207f9477a12d7ffacd92b1bb5154ba8101dda8f7b2eeadd4fa83eadec9a75727bc1831733d27fde63ba63322ec491201dd23cc6e2c2b5a4b8381a8fbe49e8f2 jruby-bin-9.0.0.0.tar.gz=33308a983533c129cffbf521bdb8c1996a10a6159a4a436248e645bda682c5a5395ac1aa767e971ae679c935f3b61573cb22d5b8c64af026752db3411a6356e1 jruby-bin-9.0.1.0.tar.gz=277dca63f3faad01c98a793f06bb4d558a970a10a66a38482e8372b25f4cf4fea85f1d5624fce7fb5b4310c42ea8aa360f24f6b9b6ef4bb0ebcb036736009ccd jruby-bin-9.0.3.0.tar.gz=d82f83e20ef17a0675843e306ec5e90993e5952cf5a53957a91e369d2c90d92306aa515b1e135c04b45844a81a0f4ae34289b966821ae5f46ea51fe012627352 jruby-bin-9.0.4.0.tar.gz=b9cd4f4a00da8152740b468914046633d5341b10aa26b0ac56835d5896531030c8afbc4c965b30c36923555ed5b145de8ada69e05ca38b01d43621914a331335 jruby-bin-9.0.5.0.tar.gz=7c61cf010fbae571cd6ba334aefcfd917f6de8224d014026297b840d0b890523e94b2fea20f154c82c25c4f9d5992b9481fb569646a7023e5ddb42db1baf5f34 jruby-bin-9.1.0.0.tar.gz=1ffdd352823436086ebfd37c03401a1f3a9cb8a8c5f75476af1f704c4764396a20f49ddb7fb7f0911e1608f7c88a332944330b8849d13e6badb170efb736dbe2 jruby-bin-9.1.1.0.tar.gz=475acda79ab8c54467ae70094aa86842959200127c1e92709f0a731014c469d3e52e4c48770b64ab1bf31e1b710ac4570b421077c85c08071c1356bee55a2900 jruby-bin-9.1.2.0.tar.gz=cc6b1e1a2907c128dd04edf9da11933a54bbed5e861ab6f0208505bca5aa2aa9d9acdd04bfde65824346fbb435584081fc8ec2e2e9a3aeea1bef8047915e0c61 jruby-bin-9.1.3.0.tar.gz=88339f4cc05f7f0ded21f100755156ade33f19873f49c0c64110916da8c0b059df541a77bb36e54fda9cebf042591450d2d6312ffaa879df926870806985e774 jruby-bin-9.1.4.0.tar.gz=ebe0e9d67cb91721d589461e93e26338e3e3a1f0f98de53f25906684140b49d989ca6d3704cd3f6cbf650f30aed9a3989f117bb4732c83ed870364ce4c31fa36 jruby-bin-9.1.5.0.tar.gz=f2a11e6fc88d37fc1b640ea8c9feda4607bea6da5e6520f61ff85e8d6a51543612ae267b45c033214f8fd0e2283153da02001cbc9fd90be4761b7544e1413b9f jruby-bin-9.1.6.0.tar.gz=ca59d199a0fe791efc57f05801ae26c6cf6402bdc0f1a795250b1a2dda39b233ed24c8cb005016e79727f4bcdceb1bad726a60c16935e76fc87e5d1a078fb5bd jruby-bin-9.1.7.0.tar.gz=f2569d4858a33280e90d984aac53662c25ef057ef9903bace6a2214aa2e6a537c9bc8fc76b08f846b3093cc4a12c70c98d725576a4ac771e640b95cfe3697c7d jruby-bin-9.1.8.0.tar.gz=dba3b41b65ff27dbaa203a5cfc78ac7cb9d952c52b452bc774f593383e4ef9389c0bc37549b798f48b63497ce7007b1ac2d2fa252d9a7c3e52146b4ae192ee49 jruby-bin-9.1.9.0.tar.gz=f8f6419be34aeb7b7577e946a62a094f5921d7319b51876c5e07322d99249b3a9f29fea4ee5c2b8184dfccbd5da8f8262fa97f5e93874887f3355dabfccfa0df jruby-bin-9.1.10.0.tar.gz=857783bb45fc5d62148bd687b43af9ce776099dfea75ec4b5d947a46ed270568bceba2a630a3277746a3a9c1fd3111caa9a4cd13493ea8824c1ee190e6d2abf1 jruby-bin-9.1.11.0.tar.gz=718ed3f5a39cd9f9b45c4e11ba44cd32e035f8d9f26fe59230dbaecb71adfb2513ee1bb86ff72e075b02f20151f3f30e53bfa30b6c4b011a93a138d4f479fbf7 jruby-bin-9.1.12.0.tar.gz=8a9f88d517d8002be570aa95aebb0063eb62a47efee191155f9fa4f045854910f78431514f857c438167ec42f4241faf74d4a8d236ae36feae58732312e4bbed jruby-bin-9.1.13.0.tar.gz=ef88f613ada2665d4f63b2e2f15594739de8ba501406e76de417821f44847b0e258524687b0ae0cf5b737520aa4dd9bb59d80a4b89a81408cda638f28bebbead jruby-bin-9.1.14.0.tar.gz=d15ae0c60421951b830524acd21a0f2a56f480e983b148a2722cd36afed8e99a41f518eb8a679bfa2cf87f08637e81c24ea88be40c0a5390e081322f1fc6f8da jruby-bin-9.1.15.0.tar.gz=74a411f42149510180706b2c70610caeea357f6fc3d2a12ff0227586862e6a9dedf09e752596d6c486af7a310a07241f311a1dfc73ead229d7225c09d4508605 jruby-bin-9.1.16.0.tar.gz=94e88dbeb2545250ba5bef50bbe0baa6f3851e9817f67f879ffaab50048bb0d41cd7a0e87ac9ef547e37c2b82cf1d7aae6b8caa43d03c6a9931b8ce0ad4b2afe jruby-bin-9.1.17.0.tar.gz=4c06b9674e20f48d3815b4084bb38e6994670eac804fbc56d717cde7abdb74d57e0ac17b7fa0b500318de405c187c3eaa01441c22621139dfdbeef62a5467a63 jruby-bin-9.2.0.0.tar.gz=79f5e8674089d2f6b260e033e3ceb4571f54cb5cedbca74ba76b52dd7cb30085a8c6c2676e9be57a8ecd9e962fbcb3682a8de38e1cdde2dc6e05bd179556edc3 jruby-bin-9.2.1.0.tar.gz=185e67da4964c9cf1d9142446efa77605e77894444bdc96bbd10fee22637f197aea9fbb0f60d3a42540e5f383d5b06fcf095d572f432544a40c2145deec81926 jruby-bin-9.2.2.0.tar.gz=85e16e38748b6ec5f237eabc8a17eb225c484c20f7ab6728f2a0f650061bc50c8a9601c04b0128e73c410ffe84dacd2b8bb37167aae5595728aa25e88c4c9b92 jruby-bin-9.2.3.0.tar.gz=97ee210157c451567946b38d33380051f82e7e8cb5f7649fffe050542ff6cd627e2c42f4c46739d1f0995c87e7338865b18844741285bf3f72364aa3c841c54c jruby-bin-9.2.4.0.tar.gz=9fe1506e862a17e261cf726e1bb70a9f612a6d7beda919a01405899660d1f4b79ee690ddf9aeed1d2b2f3cbd698be8df4f98d3815352772cc680e9646d721761 jruby-bin-9.2.4.1.tar.gz=2c41e7884cc54819da17ea9b2b773d05d3240d53a2ecb57ba430ab61308066eeb1bfbe6627e6c261f5f27ab5df7f5972656366a04a191a81b0379f620b74512d jruby-bin-9.2.5.0.tar.gz=d548eba8de420c80062021f5b6e6b203f8b7b36e3f11409919eeab87a028a18f9346f27d2cd8b1f33419adcc83fc804a36dbc3cee169ef1d93383b8f5835ba2c jruby-bin-9.2.6.0.tar.gz=20c7897da0d2b585616ea5848998fe8770517e24e16955797db2e5bff4622c348082628d304240a71a97e9551ef7aa63271cfb728eb5fb7e7d19bb48aff20d4c jruby-bin-9.2.7.0.tar.gz=8e71e27fdb149cb7470fb736e7ce858719d13ce6ff8a1e9ab1c1dc71fcc068fb601946bb28ed2feee3670b5e6ebfa8a655a6618d1badfc3763897912c41b1c82 jruby-bin-9.2.8.0.tar.gz=7f71fb5bc8c6c31b31b4c0430ae091871b21aa345777662f264c728c60212365dadb63a7a4b2fff31adbbf8a2e7cfa678d47486e28840f57b86cd45fe9354013 jruby-bin-9.2.9.0.tar.gz=7df33150858ddff586b3bd86120d4bdd80546c7f8e62245f61facbaa5527400a1aebbb33e4a1a8af52066487e3d29760eb96c7ecb9875eb9bc954ccbcb37a4d2 jruby-bin-9.2.10.0.tar.gz=f4ca024602ddab37154f5547132accb26e7c0ac2e913ebe1b5c7806727eb148249e76031ed4623ab53814beb8fb3f472e386f44d57adb5d2b3b00fb2773c8a63 jruby-bin-9.2.11.0.tar.gz=f736a9e139694c84d0a5ea42f36b972adc82c9be13e0b80bd61045c026e4fe31ccdd4be3dd3e94781c846f356e026465e41716fd2744ded2ab0ca39cd33bb46b jruby-bin-9.2.11.1.tar.gz=2f758fabf5910ea01e9c04c7600d9c666f2df3db8622f3eeb3534578075ce65013c42fe9ea6f95d4499945f795e6d566eed2b1545e149af823eb1d29167a1223 jruby-bin-9.2.12.0.tar.gz=1dbc5bb3814a6590f5e8ecf4889152684b5625fe81794a2c4064d598614a85129256002dcd239e294f209b98e3abaf9bfe70467fff48ef66b1531162dc6c3be6 jruby-bin-9.2.13.0.tar.gz=2cba016ad6a376252083122d51335610209d860c41de1902f5cd49ffc2f6b49c350b68df8fc4113c221255af4db7ec07980267b9888369811faf66db369e757c jruby-bin-9.2.14.0.tar.gz=ee3d17e875dd197f92744c7cba62320bfd3f166bbb2ca117f2910780a7c571779c0940e024351e9d4685ee9781dd207e773ace57a4a8a7011869c8b6209513c5 jruby-bin-9.2.15.0.tar.gz=678abfa7654b53b049e4103ae3647775d970c5a7192539378957c1731a3037c852e03f00a496c022c1c438d159a93be6e6f04d7563c811aeb7d261ced643d9e5 jruby-bin-9.2.16.0.tar.gz=f77e314d578a980071bddc25c65659d62e0644927ebc4e7d7d4523935b6c893e611d47ae7478a26ce7acff38b1525eac11b4a329188cdf76aeb07fab667d99d4 jruby-bin-9.2.17.0.tar.gz=e90ac1890a54a892b13adbbeab3cc5242889ff2a4b6cae535c0a3172072bda6ab01b960705ba608d6d7ebe9de5984d8384dbbb6399ab3b2e53a9e347e7849e1b jruby-bin-9.2.18.0.tar.gz=c5816ee0f7b0f559dac70ffc5277f85ae9c41ad176e43d277f820c2727387baba93998b915cadf9708fa78b5cdf3911a9c39c2ebb61a77a38dcff359f7d88a73 jruby-bin-9.2.19.0.tar.gz=3740674035e27cf7961b3570ad65536c30faab1c9a71a42a696b173379e79647411d57e0d1d06b5f9c9a970eb02a595a559191af08a083773dc4601dcfd07491 jruby-bin-9.2.20.0.tar.gz=1961f52f41e7eb9f50b0f382c8166ad988a6b3c0311c342658edb34486b073ed45c1ca5731aa319196db02cec208a4dfc86aa6b436959b80243bfa4f62629735 jruby-bin-9.2.20.1.tar.gz=598e28cbad682fbb30a9a9a9f708e6e1f4b7903300de2477e88a646c42ae594df5b768ff5379ed447f1a7168e93dbe35cc2d5db7087cb2228233a05bc4687908 jruby-bin-9.2.21.0.tar.gz=8f6cfc43ce3ebbd69781da71c5a70746ada090162bf6cb709dca41a6d968e6072ae62f657cb0bd471c648ff294044bfec3079828bdc410bd64758f76a93c3214 jruby-bin-9.3.0.0.tar.gz=06331ce32ee88aaad5e5bc0668d164ec3263f8ef3ed34bb32981b76ca33f8c817e3632550775706481094159f4feb43916ad1f9ec0f0775ad756b16cb7bd9417 jruby-bin-9.3.1.0.tar.gz=bfcbe6dc5ba736fc944af15eb387b545f6c5b987a7db88045913a02a1d30726c5d1255c4dd609aa7c2d2823ddf9d8360223b0575c93302aeef4c54eb37af9abe jruby-bin-9.3.2.0.tar.gz=b1777bfdf1964d7e527bb3dfc47b4b9e8c589cdb301c38ee8ee988bd0c392ca978ee3c1c24e4b5a65bdecff67d1bd96e2d8645e58ff7e891e3622097ea29e925 jruby-bin-9.3.3.0.tar.gz=648e70de0bda710e2dc70fd03c3dc6b798dd4c7b92584c54306c426f59ebe1168a595c4cf94328f6b44674f5507bee354efdb1cd73060b73b0171a3605051c9c jruby-bin-9.3.4.0.tar.gz=6b09decf412a76578179cefaabf01cc8740f70ab5324954e6aa43b1d8b81c37db7a99b1f94d6ced2b459f1c44c3086892b9a2c06b3ea838baf75a8fd5e0447c8 jruby-bin-9.3.6.0.tar.gz=f730522eff27462192808773cbd071cdaefae11f20bc808a8f22515a33960a730f3c87ec727ddfd9dc9b6b35acffeb50c31d75a4794a3f8daa75e1963ebd246b jruby-bin-9.3.7.0.tar.gz=265051c68d3b9dcce708b75f8267303ae84008859c88d7fe4f282395366c3f52fcf1bb161210555c0fd0a2427ff5a728ea9e337feea3d9b69559cadb2f300aed jruby-bin-9.3.8.0.tar.gz=12e795b7e1f14141bde68f52a29b0aa9f1db20515240dce83cffec351cefd25959579e01059d42dc8c8e4280493a70819d9beb1e0523e9bc10a72af16d9abd60 jruby-bin-9.3.9.0.tar.gz=f0b31d98f39a2bd4436764db0b0139433d6868bce7c30c5d6e3552616ba879c93478c499f3e4c884fd3728502916aed5c9ca1be150ae3e80ff47b36710c3f6df jruby-bin-9.3.10.0.tar.gz=aa36fd4c5de7b17f5fdcca1d1314d309e7b4470d46822c45baefbc0ad5180e5530a7054502b97b414352af485e7936659390690dc6198512ba6733d8f8d503ed jruby-bin-9.3.11.0.tar.gz=d9fd90bc64028dcc45687d2be51414b1561add20d20d1392525f4434cc684d505427f5e56827afffbbb0ce2c9cd7c1ef846b0bffa737679afb95d4c160232da5 jruby-bin-9.3.13.0.tar.gz=eb24641fb7a6b9d2039ec953388053e7333b306056f9a5bf745331b04cfc05dc4211a9b7780ce88bcee9184b8cbb219b574574d308bc2720547c116f4d4721dc jruby-bin-9.3.14.0.tar.gz=d9b02fc35133f71140cc7d891061f8190b61b3d1065f00092a2aa9a4beaf7d67297dfb0529691bd24d29607d698f39c62af9018e8307c1e6624c3104a61bb74c jruby-bin-9.3.15.0.tar.gz=e41521ebf453d6b6a9de937556fcaa972c60268285d0af4a41bfb95aad790eb47dd507e182958ca6f4889a0e03eedee0fa4bbc58e3d0407a2b6ba64a8b87a21a jruby-bin-9.4.0.0.tar.gz=fb72f8e087ea08653fa4e4225fa26694c3ff97c41f3deb8731cdb6571c6c9b21e0d8f69e2096f82ee81e2b5c283f912e2a5228c15873dbbd56de96a2ba35d59b jruby-bin-9.4.1.0.tar.gz=46003ef6192718a6372b79ebc89bee37957686224a08fe2f9a6be3c9e479784409d0269f0885c4d1f1351585c5d2cd31fd2ad45014e425bcaf2d44d66b98d299 jruby-bin-9.4.2.0.tar.gz=77e484ab73ece93e7d7283f876f0d541607c6080eee696b702b485be9794cf7e6d464f250a6d75387ee69aef3ba40ccf4f6d9fcfe324c5bc7a14376177ea2bb8 jruby-bin-9.4.3.0.tar.gz=2361f4bb2989f5951b0d3e9d49bf31e6805ce39bdc987ad3c6934daa98ab7c8e69763d40d7412ccef8adbbc198e52f4b83d00998ee12ac43fbfc6b5d88930c15 jruby-bin-9.4.4.0.tar.gz=e89dff0cc5b4a948daa95196d4bd4fee0c6901bb4aa023ae35b3679d9739967c2a74e8a4388b1835465dd39f1332a1f321b450b40c54ad2b81802645b4a31ca4 jruby-bin-9.4.5.0.tar.gz=06db948e5fa6f8559abd3b6891c7b4867b9f54b7bddf0e36d6f20cc1bfb394cdba8ea920213e545c927d1cb865e083cb1089c8e925bc608e0f8784a79b5d330f jruby-bin-9.4.6.0.tar.gz=ebdc671622baf3c42a988d6ebe24af6bfefa1f717f050f602a1b35909a3220316329aad080ee2cd9cd330da9428f8d736502573efa64bd70f093ccc123ab32b0 jruby-bin-9.4.7.0.tar.gz=4fc8b12deba7b8a53a523a41a31c248895adc9bd54a62664a27107e7205369af39c0eaa508a9a70611c3bb845524d8c5f39451c09b8b9cd87059ae15139703b9 jruby-bin-9.4.8.0.tar.gz=0d65fdfd63e2049ab3b8ccbcb4caaaab20aea5a63276aeb20ed4092191a8814f144425dd0d926aeed757ad6b4daa308a98fafe1bbd1647f3db44368066f61868 jruby-bin-9.4.9.0.tar.gz=1321e2ef5fdce909008ed764051d1bf9be0a4b8cb4a2515fa888c7c0ea48f0f4a2ab7b5c881633dba3d03449c6340255d9411a58836ed059f62d801d48565d1a jruby-bin-9.4.10.0.tar.gz=3396cdda4334552f2ca21c9123e709d72544e11b448d3091ec1a6e6f7beda2cde86ba4c15a4c0648135df34b558d254a96cb970f0a18d098126b7c5c2a2af019 jruby-bin-9.4.11.0.tar.gz=21ee47b4f6d1b6295f7f25cd74e559e6dbc8d98738d31f87c27ea657a740382e8c0e8156eafc8d270946311ebe22a7ce60d5c0499fb52cac7f9b120ed4495834 jruby-bin-9.4.12.0.tar.gz=01f74e4dad2d4357c0dd5dfa937400a3d3d3ebdc0485444359658f3e4b58c8af180ff66ce75b269afc75548cb832c4f75e891f506fb5e4004f9b12286991a8df MagLev-1.0.0.tar.gz=8da29f16e08f657b0d2f147b64f2202ac027db26f85da8dec29f926898f178ac8d11260fd6c0a539a9b9b15eb92d8c7ced86a8cab1861ae7f8a33b6fa468e5cb MagLev-1.1beta.tar.gz=7122af70530e76b9a4cee93244d6872b49616e78086bc8a5db0f32d2b846560b352c4831addbbecc72e0e3158bd52f26c2da14f5d83a515ead30efe7c538b62e MagLev-1.1beta2.tar.gz=43b4b831791074f6e8c12f6fbe6ccec2bd0446dae029d3e6717cde1e7adca8462a2d7dc49c14112cb568b5b3adc8cd051767044b41d57ae51f38aca035ff8597 MagLev-1.1RC1.tar.gz=942c1cf43f1a911230aa43bbac1cea2e2e61b5e19af755e29a6a71139d66d304efcc519072dcc3487a2da7462847530564aff4a2159d675e3270cc938a297dd9 MagLev-1.2Alpha.tar.gz=2672e3e5425df2d2ecc49f85df5845fdb083f74a7b242cac75e33d0c1837079ced8ec8b273807326d08e7bf6f95cb4f1d8351f37af8bb38c4150e6292fc553dc MagLev-1.2Alpha2.tar.gz=4492ed58b6c2b852502a2195836f1db5a80f0619467e4d7b44981a993a5e9a9ea5c9fecf1198de1891583e334bbc3c3a86648ce8afea1137ae9c73a4d76b0f4a MagLev-1.2Alpha3.tar.gz=6290895b22efb986ffd7305b7d651f20a051ab6869d51310bf891fa3eed48526a8617b69f72793e8ac0b57f99bc5de75f34235ef94de967bbdcd51857efc2af6 MagLev-1.2Alpha4.tar.gz=a621e9c615ffec503910540db770754f29bab1646d8e67650d5b82413bd551adfb0bbbb8155407ccb6f80933bfe8ae1bf9b688eb0defbc88710308bde1325683 mruby-1.0.0.tar.gz=4a0f2927da3401df23d5c19ba566995f76775def3badbb14f16510a271e7b40a833fc61841f89d8adc6d57b5b12cb453708961c16a22133c092fab8ecfcd1e3c mruby-1.1.0.tar.gz=afa99a973e9c1b72a5a418d709c4aca08dc7449c427cedef5f12db4ccefb15e11a4fd1c23ceb7e31e49d4d2e602c0b1f9dcf2e0f6cf8ea3466f0b9bee23b53df mruby-1.2.0.tar.gz=bd5de32ba52b6642358752755329fa45a954082122a8983012930056c286ac328fb52fbdd11f34ff7c80af2c0e9a6348abcd5214602aca1150f2e7ae25cad1f2 mruby-1.3.0.tar.gz=13a57306706d2d60693151919ae15bb3621e6e7ed3b5e9c6d3b1c8d44e52b898c1ad394b39946d730ff82a19f5e3b7c2a374f9dcc3b6c6f990581e504f1cb9cb mruby-1.4.0.tar.gz=d2dd6e17c7f8e890ef5b6887538cccdea08a2376ba8f9a478d7d5c4377fd4c31a4af6323b1fc73952ef80e5a4778ca22eac3d724ce7d50b76770f7e614df7da0 mruby-1.4.1.tar.gz=2cbf155ba7819211b6410ea606c4d0db3adf4f47a4018ac45285ab3e32b94f280aa0af0936ead7233411957cfca62979d14bbaaf0d8f40521cba5c12272f2af4 mruby-2.0.0.tar.gz=8379f76b7a06d280e2a2552eec2975ffa3fe85b99028f6f7c009cd908f95faf3cd36a9975f502a5779559baf3c45a4297da0b6bcc038d213a0fdee851f9d01ea mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.1.0-rc.tar.gz=f310b385cbf80c6b6ab67e2a41b931411149639c0bf778799e3358d6a9a59f508f42e3faf72fef9e8ef91088d6184c445af7933a47e4e2b2fe114362d579bac0 mruby-2.1.0.tar.gz=da28b5a078e121c75edf62fc68fad6d5810212bd53a3424d4f585ffe5bbd09f652393ffea0f4b3ddd802e5fe178554dc67040c39c9d5069bdfad4ef22ead7e8d mruby-2.1.1-rc.tar.gz=97c9cc2c79a5dbf2f634ea08532f0f512f8af6ffb99ab4eefd83fc336ca9d97b943e76643971047b4508aaddb5e40176d6cc8fa39a17022455aa15d774eb5b98 mruby-2.1.1-rc2.tar.gz=13aa32a35bd5d8f02a9bfd08d17818dbae78ce46c8b0224a029f9f191cb64ac330eddf3871f4396b9221b987a91e4cd6f8933f59814ac0018155ec8454abff18 mruby-2.1.1.tar.gz=66f9b4bebb5a7b19f5cb1be2bd8b9bc65e4dbb5d4350d238ad5f947c9195fd431f2069f7334036ea63a750e9257e59ae1aef16ac99c7e1f4e17724cd1cbe2e50 rubinius-1.3.3.tar.bz2=8b91baf429dac60663d0e4da3152a60ec6e007f5d6c17ffa430876ec88eb87ade44efae90f2e32e238fd74f1b3d54e27492315f08e7bb073220b402e1e2d3163 rubinius-1.4.1.tar.bz2=928d12aa01a1d0f6c80175d67d3b1f8b9840f69f045c8148786612316421223f4cea71e3c373ee18a3f686b1457557ae547645afe758a99d21c4818dff47b9d1 rubinius-2.0.0.tar.bz2=5c81a6b8cf7b59e08c3b9353b0eb37ce985aaf391f5064df65ffb10f6d12b668287e4d4e61e2c6b560d9234c10f0b64bba74259f2c06f1dac488928544d4131d rubinius-2.1.1.tar.bz2=154cfa93ed59835814b8b974f6d738b049942fcc2b75095d21c87647d002c879fd55aa3d1ec95414b5b66eb9926c25a5c6e3e19a7c0da7dec6edbf434acb9c68 rubinius-2.2.10.tar.bz2=c2168e676059c197123916dd948b83e39bb96e99786bdcaef2e690936b761fedb13740b9f19883f991f1b475f3249ea1696213e8448c41ae15dfc14b3d4e1fda rubinius-2.3.0.tar.bz2=d0f3dd5e3b891bff2eb79b7810c6041e15fbbf0606c379f89575cefd829ac7a394b0c12ed3c5a4d452730797bc0a2c6c82646a19a078b56dcac7acad015a4559 rubinius-2.4.1.tar.bz2=7bcea320006b8cd3d122c407d89c325973a74c32456ba0b649657ac848f4682f2eb7455c13e3007709c22932bc2e1b65e2dd43fda0d3c9f993ddf8a74d1e2cb1 rubinius-2.5.0.tar.bz2=ac94d5bc11524e715fc24c1de33f4d358c2cd65e92fbb64c850dc8151d2a712d268227733c99fcffe298c3bdd6ce080c5e9553e4e8f3238868323498a9d10cae rubinius-2.5.1.tar.bz2=9315f76126d0aa754ee63b190385c24cb084f36293a99aa30fc482fd880d5393aabce361e09ff5514bc2540dfede8e179b7e9212b2dd59bd14ca2aa69d209a83 rubinius-2.5.2.tar.bz2=b48bd8d54a450441a50904b07c75c8d31b59822830a74c952720d6f8d2d86e6a27a84775e975ff2bf55bf3346f34e69d742f308933a9d8476e5e78109cb525f6 rubinius-2.5.3.tar.bz2=b923446d325dc3ce5ad28af9ee527607fae3259b85e85aeff97c1bebbb4520daf70616957b1c0ded900ed19e59025826dee66977c19cd2a2d4e9a0296811eb20 rubinius-2.5.4.tar.bz2=75b7ddbe218e4c92210dbf5a06eb8b3c3aa028d16146982a4e813e3af10a90d33f3e239f4508469c6aba17f02cb8bd10e96a204839975e06519869cacd456c92 rubinius-2.5.5.tar.bz2=a862146ddbbdcd4439eb64e78bfe6d09ae4cca540d19869618426d3f451544658713fe8eb7d46493785eb0cc721077e624293cc44d68eea3ef584967b43a18d7 rubinius-2.5.6.tar.bz2=9a0bdb5d77f80f163925ce409d00be3cee34871baae8bcfdb34c3c7545b92fd14102fecb970e42b3012588d299e504b724025f397a5a00e181ab75f1448e426a rubinius-2.5.7.tar.bz2=8048110b3ba4e5ff8c3f35282896067e1b1b46dccaf9ef4f6c9b6098782f27591ff59ccae0234fd7e881e3aaf17a0b420286b1b52ecd2cb672249655795a6982 rubinius-2.5.8.tar.bz2=23fca2f9747d2b0e544af890c3baacfb7b3a009cc59cbe653762ccdd827a6c915dcc57902d317fa1f7a81f8c12682f6c3a93195331b6de0f705b118e2e8c13f1 ruby-1.9.3-p550.tar.bz2=38767e98df25484f7292437f3cb0f798b3a43e9a7414a5401677e96ad1cc367cb3fa23ac3abe568d5bf2b2ca553713469a8770d41b79bc63daf3fa59cb4e15c6 ruby-1.9.3-p551.tar.bz2=5ea40f8c40cf116030ffdedbe436c1fdbf9a50b7bb44bc890845c9c2a885c34da711bc1a9e9694788c2f4710f7e6e0adc4410aec1ab18a25a27168f25ac3d68c ruby-2.0.0-p576.tar.bz2=e089cca4867cd9c715f4f37e40a1db9af6ba0c74b47e79568121bb980476f8877a87ccb848b973381edb4667c0c73165f5e1761f60db839e67f6326302dbd864 ruby-2.0.0-p594.tar.bz2=8301a51c73fb63a8cfeb14af47d0c18b5bc3c45e3d62fc2ed56a673a1cd6b0015c41f275e70eb14a9e40036b1530977199321e05285e107a6adf58514bef1b3d ruby-2.0.0-p598.tar.bz2=10026a04e01a8ad14ea9c99bbdf4f7d04029b73ee0c01bbf6c2eb2817332d49adacf127b646693b67b5dd7010eaf3b696b23b6335cc0f7ee5a6b56dbba0f6f82 ruby-2.0.0-p643.tar.bz2=453117152e6facdcd5bedaa9c3b1e349382bc5bc1dd3d650ec58b398cb9d2519a2822d05da10bcc5dbbb4f513fc5fef310caa3529d176fa2d453befb28e4d83a ruby-2.0.0-p645.tar.bz2=e9ca186b1cf0877cdbecd43dcab2c5161a53103e926609d5e1b769a4980eab4571bfd0951788b4fc92dfd9d10175b0f5f36ea2c7289e575a9db9b62c02f93185 ruby-2.0.0-p647.tar.bz2=3416af771ebb0b27ceacf23d309bd2a1ede832c2edf48a5ca46f0b0b84b2ab94fb6362a0c7fe4f77b21253539db8161ae26d23a78d1ba729bf03812454d93d04 ruby-2.0.0-p648.tar.bz2=609acf6d6352c9746e21cd7f0e7d29f5eb522e6fff2d5fad0431d63c568cc084ed5b7141f84cd33512d8213200d2d1a22e8d7df71469a980a3a92886133fea38 ruby-2.1.3.tar.bz2=9b48adb161e5e4550a71f61252c8edf59944affb82250babcb64240749af4b672e4a54ccd0feac5b36ea447a358b350b5080125ef2d4acf6e9e8b1ab82612f48 ruby-2.1.4.tar.bz2=68db1567751166c5e7d24b6e5015124b8a15568c50556e1f429486395352fa56c4a195a74820ab135697924149d014b445b345a1b9755678aaf824fba79c606b ruby-2.1.5.tar.bz2=d4b1e3c2b6a0dc79846cce056043c48a2a2a97599c76e9a07af21a77fd10e04c8a34f3a60b6975181bff17b2c452af874fa073ad029549f3203e59095ab70196 ruby-2.1.6.tar.bz2=75d58120b5f387bcadbf6d19e85624f78c74f81b9018baef39207214673f7ebc0700ab31145acd88b4071c896ba8e1302a29c90955bcf5f8c863634125022aa6 ruby-2.1.7.tar.bz2=f610d2dd6a93f0a5e84e04ddedf847bbcea5dd3289b3164cdf60be64f67a80dfd5f9836ea5d169970cd0ce24a7e05ea6190699706567cb0d5cf450de6a70e445 ruby-2.1.8.tar.bz2=7129c012bca7f0e7cfa51c73ba0898697f7a9f31abd5ae57d38be5b6b646fd80ab33be9b262cd3e2486c66f65aaf4ec6e881ae6e5a82ec9df62f00fa072510fc ruby-2.1.9.tar.bz2=a86422132e4c64007a84a91696f4557bdcbc8716fbfe1962f1eef3754ee7f994f4de0b5b7e7231c25057515767040d5c4af33339750b6db15744662e9bd24f38 ruby-2.1.10.tar.bz2=4b7213695416876e4de3cbce912f61ac89db052c74f0daa8424477991cfc49b07300e960177ff576b634a97ee8afef3c5aded5d5806329dbd01d0ce7b42b9b63 ruby-2.2.0-preview1.tar.bz2=2f1190f5d8cd1fa9962d1ff416dae97759d032a96801d77bc6b10136eba59dde1a554ff8c0c2d9ce0d3c1361d4dd12ad573b1266fd53b90ab238d8ce39e6b862 ruby-2.2.0-preview2.tar.bz2=c654d4c047f9463a5fb81eaea0fa5ab7bf316962bc7fb0fb356861e6336ce8ce2162c7779d8b27f72d7bc0e9604b5e5af2910abcb0b0a1f197b3138eaddfd4a5 ruby-2.2.0-rc1.tar.bz2=181201168360bee37dceeef3481a69e8a333a5d329680031fd9d371d30ac64460bbdf4db07546133024f541774e51301f1630cfd988c5e5bf2464834f3abe6bf ruby-2.2.0.tar.bz2=04edc53e8cd1732c3ca61ebeb1d6133614beb10f77f9abb80d8d36352fe8aa205112068e460bf600b2c7e81e0ddcc3b311e7e027c320366f1bd992b3e378a6ad ruby-2.2.1.tar.bz2=af6a8e75a66b953ff33ecbca5111bcf1c6560b6b48b370b700820fcbe91363146c5ac8abd670a14e693b44343ae598bab472ed2902834304c03ffcd9550886d1 ruby-2.2.2.tar.bz2=d6693251296e9c6e8452786ce6b0447c8730aff7f92d0a92733444dbf298a1e7504b7bd29bb6ee4f2155ef94ccb63148311c3ed7ac3403b60120a3ab5c70a162 ruby-2.2.3.tar.bz2=795f1b66a6d4f0baef897068899c3a1a4370ce1268618e6a7d6d4720234444259f371d1ba2e174b2f7580265e9f18eda3f295fbb087447aa6e8fb7a0f07526ce ruby-2.2.4.tar.bz2=d27ca2f19c214ce87f906b57edd41f2f8af35b2871c191470facded9cfda15ba46e5c3bc7d5540225a38da6bd65050fcc8aaa4ffbadbb6bf7dc891c1821da0df ruby-2.2.5.tar.bz2=d3224814361c297bc36646c2e40f63c461ccf5a77fea5a3acdcb2c7ad1705bb229ac6abbd7ad1ae61cbe0fefd7a008c6102568d11366ad3107179302cd3e734e ruby-2.2.6.tar.bz2=7a93f72d236521ac28c8a0bc0c73cf805797a8813d22e02f42c5fc05dd39f6e422817272e0db6a24c245f6f97ad4b2b412a9a47ac50156ab186df596918a5f34 ruby-2.2.7.tar.bz2=83756cd1c91516962b83961e0de59d858618f7ed3e9795f930aab4f199d47a95ed8f867d8aa9b51d508be26d9babf2140117c88241168bac41e6ef702cfadf20 ruby-2.2.8.tar.bz2=aa1c65f76a51a57d9059a38a13a823112b53850a9e7d6f72c3f3e38d381412014521049f7065c1b00877501b3b554235135d0f308045c2a9da133c766f5b9e46 ruby-2.2.9.tar.bz2=2a8c8770fda20a22b79c9115b6f468f8e7ea1092c84a5089af7a3122163e5ad298b493e6637e4d93ba02d899d8a619c94064dda8ac98cf3b93f64f45d5401085 ruby-2.2.10.tar.bz2=f8ec96c2a5f4ecf22052ee0b1029989ded52d7bf5d41be24fef67e732e76f72119302240bca08f0547510a9cd29e941a32e263cad9c8a2bf80023d6bc97b2373 ruby-2.3.0-preview1.tar.bz2=ae6d46c87f59e1fd3703b76dfc45bfcf208625f95ab9f4559f0b9f7050e8681f1a6e419f5fa06b704c83e56879c3a9ff1337dba443bcfca76fadb49c97d97a93 ruby-2.3.0-preview2.tar.bz2=e397f321d4338edba8d005d871408775f03d975da90c8abcfdb457a1bc7e6c87efe58c53b2c3bc122e9f58f619767b271bcc8d5d9663ed4b4288c60556e8d288 ruby-2.3.0.tar.bz2=77b707359e754c3616699d21697752741497c719dc3d6fdfb55ed639e76d52560d293ae54cbe5c63be78dc73fbe60f1b8615d704d017bdfe1994aa9747d26a6c ruby-2.3.1.tar.bz2=a8659b96a3a481a3dbdbb6997eb18ff1f8cd926a9707a90d071e937315c21d372c89252f0d44732ae5007d2678fda8c8fbceafa4e4b4ff500d236fb796284d8d ruby-2.3.2.tar.bz2=78699bae5b0a2382a58f9d51f7d891341f00ad3a90d9ca06b68b1b245cf5acebc3a82133e39bf6a412ac999a5c0f778a0dab177c2569ffbee085ffff6f6ec38e ruby-2.3.3.tar.bz2=88f7782effd35bfe0b4c33140b5eb147d09b63fbb35b9c42d2200c010f387e2b70984ead1eca86569e8ec31f08b35289d440c0ca76b662dadb760f848e863d91 ruby-2.3.4.tar.bz2=ad1f16142615498232d0de85149585be1d2c5de2bc40ec160d272a09e098ef6f317d8b25026001735261fd1c5bc0d1f8513a8474e89f0d86eed5b2fe7338d64e ruby-2.3.5.tar.bz2=3ecc7c0ac10672166e1a58cfcd5ae45dfc637c22cec549a30975575cbe59ec39945d806e47661f45071962ef9404566007a982aedccb7d4241b4459cb88507df ruby-2.3.6.tar.bz2=bc3c7a115745a38e44bd91eb5637b1e412011c471d9749db7960185ef75737b944dd0e524f22432809649952ca7d93f46d458990e9cd2b0db5ca8abf4bc8ea99 ruby-2.3.7.tar.bz2=e72754f7703f0706c4b0bccd053035536053451fe069a55427984cc0bc5692b86bd51c243c5f62f78527c66b08300d2e4aa19b73e6ded13d6020aa2450e66a7d rubu-2.3.8.tar.bz2=6d79e0d25757fd37188a8db3e630a52539bce7927fcb779a2ce9a97b9e5f330753035c16843552f1a1fb6c9a1e5c0f916b3cc8b5c0bfe81e20f35f8442e40ae8 ruby-2.4.0-preview1.tar.bz2=c9873e8686eb54dbde61d6e23cd5197beebccd6cb31fd12c82763ebe1fde17095d7514d9d93c2c82b238032c98691df5479dc2d666a8a590e0fc54450ec29cb5 ruby-2.4.0-preview2.tar.bz2=0c9a59a2f57a99c4ee8539a30f41da1de7547566203f89d856e1be9dbb44365754e6c470145dc9336eb324e0feb2f53d9fef18a1564968ac21f9ee528905949f ruby-2.4.0-preview3.tar.bz2=6602c65a7b1e3bc680acc48217108f4335e84fdd74a9cf06f2e2f9ad00a2fccacf9fa035a912bc9d5cc3f0c7a5e21475971dfac37b0364311ef3645f25c7ddf9 ruby-2.4.0-rc1.tar.bz2=b43902ac7794487197df55a45256819d2e7540b77f1ed4eb68def3e0473ee98860a400862075bafadbde74f242e1dfe36a18cd6fe05ac42aae1ea6dddc9978ce ruby-2.4.0.tar.bz2=bef7bb53f63fb74073d071cc125fb67b273ed0779ef43c2d2969089b9ca21fff1bd012281c5b748f7a3c24dd26e71730d7248c05a01cb23ab2089eb4d02115fe ruby-2.4.1.tar.bz2=1c80d4c30ecb51758a193b26b76802a06d214de7f15570f1e85b5fae4cec81bda7237f086b81f6f2b5767f2e93d347ad1fa3f49d7b5c2e084d5f57c419503f74 ruby-2.4.2.tar.bz2=1a5302d2558089a6b91b815fff9b75a29e690f10861de5fdd48211f3f45025a70dad7495f216e6af9c62d72e69ed316f1a52fada704bdc7e6d8c094d141ea77c ruby-2.4.3.tar.bz2=fb4339e30c04d03b1422b6c32ede45902e072cd26325b36f3fc05c341d42eea6431d88718242dcc9ce24d9cad26f3d26772f2e806bd7d93f40be50268c318409 ruby-2.4.4.tar.bz2=ae632852a5f413561d8134e9ef3bb82adb37317696dd293ef92cb76709ecd45718f14116ecce35b12f1c2dd53ccae8dabc7a924a270072b697512d11f4922347 ruby-2.4.5.tar.bz2=7034fcaeaee41f14bc0ecce0d3d93bd1abe95310e1a0b95fac66eaba867adfb2bf7ba4d0d70d67a15ce8df16052dee405c38cdb18987602e64a2f701d37d3df0 ruby-2.4.6.tar.bz2=292802984e5cff6d526d817bde08216fe801d255c4cede0646e450f22d4a3a81ae612ec5d193dcc2a888e3e98b2531af845b6b863a2952bcf3fb863f95368bcf ruby-2.4.7.tar.bz2=2665bca5f55d4b37f100eec0e2e632d41158139b85fcb8d5806c6dc1699e64194f17b9fe757b5afd6aa2c6e7ccabba8710a9aa8182a2d697add11f2b76cf6958 ruby-2.4.8.tar.bz2=2d7e0f5ad766e2a12a1b53ff838e6bfe86244ffb7202196769c25e9df6f71f3ccdd8605e7ef35c53e54310bc82caf6b368ad5111dd0a3ad70a3aae1a7be93f08 ruby-2.4.9.tar.bz2=d485444dcd025a261a16bd740dae63c0aa23e4138a095584e7a83aec47af34415c7d9cbc1313e92da2ec416b11bfddf20bb1a7b60c80f12906d11ef27409b3e8 ruby-2.4.10.tar.bz2=4d730d2d7cb96b002167ee358258f2620862a5a6d8627cfa5b49bd43c6e59c50c0f437b959d4689b231d57706ec7d5910d9b144f4ca1c1ed56bc879ed92e8a59 ruby-2.5.0-preview1.tar.bz2=2d39ef64aaf7a52014905f4ad59b53e83b71433e50a9227f9f50cbb7a2c9a5db9cd69fa7dbe01234819f7edd2216b3d915f21676f07d12bb5f0f3276358bce7f ruby-2.5.0-rc1.tar.bz2=bf0eb114097f9e505ff846f25e7556a2fb393573b4e8b773f94cf5b47998e221f3962a291db15a3cdbdf4ced5a523812937f80d95f4ee3f7b13c4e37f178d7a7 ruby-2.5.0.tar.bz2=8f6fdf6708e7470f55bc009db2567cd8d4e633ad0678d83a015441ecf5b5d88bd7da8fb8533a42157ff83b74d00b6dc617d39bbb17fc2c6c12287a1d8eaa0f2c ruby-2.5.1.tar.bz2=82e799ecf7257a9f5fe8691c50a478b0f91bd4bdca50341c839634b0da5cd76c5556965cb9437264b66438434c94210c949fe9dab88cbc5b3b7fa34b5382659b ruby-2.5.2.tar.bz2=9f9388a162a3ae9c14ec8999fa3b12ff5397de14f55996cc8761d21c757113db37ace4d326b9606de7ad3a5875aa94fec900dd9b81b2fb0dff558c39422f4aa1 ruby-2.5.3.tar.bz2=6fe89fe9d406bb454457442f908774577369ab2501da4fd15725ccbab77675b88faad739a6c8ad1c7b6690b439a27de5e08035b7546406cdeca65c7b295e2c77 ruby-2.5.4.tar.bz2=3c4f54f38ee50914a44d07e4fd299e53dddd045f2d38da2140586b8a9c45d1172fec2ad5b0411c228a9b31f5e161214820903a65b98caf3b0dfeeaabf2cab6ad ruby-2.5.5.tar.bz2=1b56aa79569b818446440b9f2d13122bf7c2976ab9b2865f5fb62d247d7768dd4ac5b5e463709ffec0f757bff7088afd293c2a8c5349c3780763b6444bb354a8 ruby-2.5.6.tar.bz2=e4511d42d19a7bb39ea79f66bb4eca54b63c2a9d27addc035d6d670c1e59ee48a0c6e9c6bc7d082d1f1114b0668831dce3b7422034517f3c4a06ced0e47a7914 ruby-2.5.7.tar.bz2=7d6a7d41b4f3789f46be5f996099f3eb8321aa4778b2a8ff44142654e769ba4ba2df127dd0f267547e4c8cd6ff46364f18e79838df54fcd7e3fb714294ee0099 ruby-2.5.8.tar.bz2=037a5a0510d50b4da85f081d934b07bd6e1c9b5a1ab9b069b3d6eb131ee811351cf02b61988dda7d7aa248aec91612a58d00929d342f0b19ddd7302712caec58 ruby-2.5.9.tar.bz2=12f58e14cfa6337065b0e82941e39b167813920eb54cbdb4ac4a680dd0cb75d2684d341059e7b4d0da1292bfc4e53041443bd14891a66f50991858b440a835c8 ruby-2.6.0-preview1.tar.bz2=d9cb270529a97670d54f43a0236fab072714e715c39277dab70b7a1843ec818e6700e47e1384c7256f9e0ae41ab2c0b768a0de38a5ecf4f4fff5da6ef5ad4944 ruby-2.6.0-preview2.tar.bz2=3872227e9b1c97c206d19bf1e6ce15a38ee15a26c431b4436605dea67affcf16372358984df76b35e7abaa902c15c16f533ac7af47e3031dea9451bbe459b693 ruby-2.6.0-preview3.tar.bz2=d1693625723796e8902f3e4c4fae444f2912af9173489f7cf18c99db2a217afc971b082fce7089e39f8edd54d762d2b4e72843c8306ed29b05ccb15ac03dbb5b ruby-2.6.0-rc1.tar.bz2=cbd6281b2aab6fbce3f699c1ab57e5423304dca7a547a0b3cd4e8e980326dc7b85b2ca2bfaf3f3a648d40f4222fdf1740d81d422790ee7ae1ba1ed33eb11e3e8 ruby-2.6.0-rc2.tar.bz2=9bfbe83fd3699b71bae2350801d8c967eb128e79b62a9d36fc0f011b83c53cab28a280939f4cc9f0a28f9bf02dce8eea30866ca4d06480dc44289400abf580ba ruby-2.6.0.tar.bz2=ca3daf9acf11d3db2900af21b66231bd1f025427a9d2212b35f6137ca03f77f57171ddfdb99022c8c8bcd730ff92a7a4af54e8a2a770a67d8e16c5807aa391f1 ruby-2.6.1.tar.bz2=fc41429491935b89532733b95476ab9f8a4efc310aad8f4c2bd3b68fba08fd7b6e9ac84c6c88ca892022d1ba76435295f3299ea466f9b5453c07d41cb539af59 ruby-2.6.2.tar.bz2=cad678d2ced4085e99009e4fef83c067dd0e6ead27a8695bc212c0e5112a7fa09ceb27f82638faf91932ef8bdd090f844e0a878ffdf6845a891da4b858588aa0 ruby-2.6.3.tar.bz2=c63c3f527bef88922345f4abb4b9ad467117b63f2132e41722ea6b4234cec3446626c3338e673065a06d2894feee92472807c284cbe613a442c8fda234ea7f88 ruby-2.6.4.tar.bz2=a9fa2f51fb5f86cd8dcaa0925fe6f13d4f19f110b5d4c5fd251f199d16aaf920db39ad3bb50460eb94ab8d471ab2ac8bb54daea4a3bb080eaf45250aac3437fe ruby-2.6.5.tar.bz2=28e0b04ac8ca85203eb8939137b5e5de4850c933faf7f62fc69648fe1886faaabf6cdf48382f9d9585c1720876d10b41dafd33efaeb23341c309917fbd8a6e21 ruby-2.6.6.tar.bz2=001851cf55c4529287ca7cc132afc8c7af4293cdef71feb1922da4901ece255ec453d7697b102a9a90aef2a048fe3d09017ea9378ab4a4df998c21ec3890cdbb ruby-2.6.7.tar.bz2=311ec56d23d0de7a163f66c1ef4e5369b822f8409f8e1f3a25785c803f01c68dd13aa8ddcfb3a0fe6a97bf321950f8d6cd75b2babcb04158e791601914666f7a ruby-2.6.8.tar.bz2=51806d48187dfcce269ff904943dd008df800216ad4797f95481bdeecc2fbac40016bc02eabfff32414839ebb2087511d25eebfd6acead1a1d3813be6c10edf7 ruby-2.6.9.tar.bz2=ff067ebc059094c0a9a0debf54a37aad2c85f7ed47be59299041c9c03a7701529f5063ff32a1b8c56d48ee8585015acba63602ed0176b2797d263d43d67aa241 ruby-2.6.10.tar.bz2=275a0f329641e6c3d3d3c33ffabf585195187eb3baa4fb1dfd35999fa0a80bd5925943fa2711827ac00dffb6c9a1deeadabaf2e9ee401d56926fc167db5ae4a4 ruby-2.7.0-preview1.tar.bz2=a36b241fc1eccba121bb7c2cc5675b11609e0153e25a3a8961b67270c05414b1aa669ce5d4a5ebe4c6b2328ea2b8f8635fbba046b70de103320b3fdcb3d51248 ruby-2.7.0-preview2.tar.bz2=7066ececebbbba4b2933ba1a4f70cdef373169910802259a3e52b4fc144ba298f3cffda4be5fe8a7be8ef769ed43076fa046a9ac2c13bb733475b9852112c6f0 ruby-2.7.0-preview3.tar.bz2=5d8e99e3fd984c7d05c0bc483e1504e81ccdb920cbb2d78cad3c314e197b30316b692fd0199f836acac41246e3a713cb81dc6dd64c27cba56f807df4c193db1a ruby-2.7.0-rc1.tar.bz2=b5f96227775f8bdf19f944a555d0a83d7e84b37bd31fe4b8ac008a3272b1a28a4d94abbb1b5570ee32ec0690ba9d476b837a020a5194bee14bebf6f0e768bc79 ruby-2.7.0-rc2.tar.bz2=9010f72bb3f33b6cd3f515531e6e05198f295bb2a8a788e3a46cdfd776a9f6176b6ba8612f07f0236a11359302d2b77fdecca1dc6be33581edbb028069397a0a ruby-2.7.0.tar.bz2=8b8dd0ceba65bdde53b7c59e6a84bc6bf634c676bfeb2ff0b3604c362c663b465397f31ff6c936441b3daabb78fb7a619be5569480c95f113dd0453488761ce7 ruby-2.7.1.tar.bz2=4af568f5210379239531dbc54d35739f6ff7ab1d7ffcafc54fed2afeb2b30450d2df386504edf96a494465b3f5fd90cb030974668aa7a1fde5a6b042ea9ca858 ruby-2.7.2.tar.bz2=f07592cce4de3532c0fa1c84d53a134527d28ba95e310cd3487ac321c49ee680faeace285de544ee6db432a90aa7538a1d49ff10c72b235968ca362ef9be621d ruby-2.7.3.tar.bz2=e9236138be3e61380140f2e0d42f8fb82ad8f5219d454de2f6c2ec546bb208acc8b0f2020f23e6446660d2b3b9ae873cdd8298471f166a5f1efba8e80b05e746 ruby-2.7.4.tar.bz2=f144c32c9cb0006dfcfa7d297f83f88b881f68c94f0130346c74dfd8758583a68d22accfd0fc9f31db304ab5ff0bc135bfb2868145c0dec1ee6cec5ac6c3725d ruby-2.7.5.tar.bz2=0aa2ac44bc22859a39c43d08b7c7f457df05c2dc36b2574fd70ca399143ef1000dc5e496212db9eb055bc4258523d47d26db3c57a1a5a5d63cf1b3de9f81645a ruby-2.7.6.tar.bz2=4f7f3624afc43da25ebf0f01d5a2f92f72f94bab7423587cfd3920e089b479bf559b159adf2891b996f7e6a98c008a4f73a4a2170e2f8619417660ac1ab24bdc ruby-2.7.7.tar.bz2=24cc772ac1b56d3bb423f1b33716f221bf534f3717a506bf8235a698f8a454db7d79d94ae9a84067153c2f737b3f8f6085f34e36cc04be0d75ae2fdd57718870 ruby-2.7.8.tar.bz2=3a9db8d9e79318f869417f2ebf3365907febc0d1428116eabf3253c51d8420f255782b32fa30a54802b9f5f4187fad80dab0611cc80436feec84db87b0456ec6 ruby-3.0.0-preview1.tar.gz=b94892951f842a1538f4b99022606ac2c0b5031f1ede7eef3833a8caa9ed63e9b22868509173bfefb406f263c65211db75597b152b61f49e5ba2a875fce63a27 ruby-3.0.0-preview2.tar.gz=6fa4191425ae71e41894b60bd9c31d483a562ee8216886360ce18238ab48115b95be0367708612c45f634e7584fba8940a524ba0113ce0f36ce4df78a112d0b7 ruby-3.0.0-rc1.tar.gz=798926db82d27366b39be97556ac5cb322986b96df913c398449bd3ece533e484a3047fe35e7a6241dfbd0f7da803438f5b04b805b33f95c73e3e41d0bb51183 ruby-3.0.0.tar.gz=e62f4f63dc12cff424e8a09adc06477e1fa1ee2a9b2b6e28ca22fd52a211e8b8891c0045d47935014a83f2df2d6fc7c8a4fd87f01e63c585afc5ef753e1dd1c1 ruby-3.0.1.tar.gz=cb81db2c9b698cf8159b2ca6507f4c7f171e4eb387f5730c4b658ed632b7900a169808e6fbec0ee80598d937030ad5d9c56b63a2a339373ec5d9e1c06b7661d0 ruby-3.0.2.tar.gz=e1fba6f5429b5fca9c3f52a32535615fcf95fafa415efc71c46db4cce159f249112c01574c305026be5c50140335696042e47a74194caea045acbfaa4da738cd ruby-3.0.3.tar.gz=39dab51a0d784a38302372b99f96205817d466245202586d22123745761e9cb39db128ec2b984ebc3919b9faf2adf828d19c97d3fb1e56d44be0a81dc5d11b87 ruby-3.0.4.tar.gz=0dfded6826063c1b39bf625a6e13b46c109cb160c8648b78f0965f70e7c7a1a65f1c117fc8f2cf8bdb34d7cbf79fecf1f45d169d2323406d66ab27b18bde1d22 ruby-3.0.5.tar.gz=ea45fcd2ca53b87f18fd8696d00a1e340d2495443216aaf87d3f643cb5bd8bb614a1faacd82d07e7f2b72172397c728316a82d7c34a7b4566191268ea517ccf7 ruby-3.0.6.tar.gz=d596bfd374ae777717379b409afe8ee1655ade0c0539ada7a10af4780b818efe25a28aa50a2a7226741d1776d744e10ad916641f9d12fb31c7444b0a01d0e0cc ruby-3.0.7.tar.gz=66e5116ddd027ab1b27d466104a5b440889318b4f2f74b5fdf3099812bf5f7ef77be62fe1df37e0dc7cd5b2f5efe7fee5b9096910ce815ca4126577cb2abfaa7 ruby-3.1.0-preview1.tar.gz=63f528f20905827d03649ed9804e4a4e5c15078f9c6c8efcfb306baa7baafa17a406eb09a2c08b42e151e14af33b1aadbd9fb1cc84f9353d070b54bbf1ff950d ruby-3.1.0.tar.gz=76009d325e961e601d9a287e36490cbc1f3b5dbf4878fa6eab2c4daa5ff2fed78cbc7525cd87b09828f97cbe2beb30f528928bcc5647af745d03dffe7c5baaa9 ruby-3.1.1.tar.gz=a60d69d35d6d4ad8926b324a6092f962510183d9759b096ba4ce9db2e254e0f436030c2a62741352efe72aec5ca2329b45edd85cca8ad3254a9c57e3d8f66319 ruby-3.1.2.tar.gz=9155d1150398eaea7c9954af61ecf8dfdb885cfcf63a67bbcf6c92e282cd3ccac0ff9234d039286a9623297b65197441438c37f707e31d270ce2fe11e8f38a44 ruby-3.1.3.tar.gz=550cfda2ae492312009a58316e18fd77ea92852718b37443bcd76aac84ba6694fb841fe19bf23bee099f96f5aeed9d03e77c8c02fb194e414eca5f707adbbf90 ruby-3.1.4.tar.gz=41cf1561dd7eb249bb2c2f5ea958884880648cc1d11da9315f14158a2d0ff94b2c5c7d75291a67e57e1813d2ec7b618e5372a9f18ee93be6ed306f47b0d3199a ruby-3.1.5.tar.gz=23661cb1b61013d912b7433f8707bbcd723391694d91f413747c71428e74f8c7385c1304de7d08b70c9fa3bd649e4eb5e9acb472d89dc2ad5678cc54855a24ae ruby-3.1.6.tar.gz=624555ab3681bd6663bca7cf3529a969b9f0f16928559cfb713c57f763506c8740410c9b460d946922994859189ef2b9956167bd31423cf2e3acbf5a30086fe1 ruby-3.1.7.tar.gz=a8432aaeaee4f48027ab30b7870bc61350840761b9d72b0b399d8fdfa96acb3c8f1ebe63663bcd8d835dd89b21128a07ef8f0c0c47eb41b942c169954ccb7edd ruby-3.2.0-preview1.tar.gz=d24e77161996c2085f613a86d1ed5ef5c5bf0e18eb459f6a93a0014a5d2ce41079283b4283d24cb96448a0986c8c6c52a04584abd4e73911ea59cefeb786836e ruby-3.2.0-preview2.tar.gz=5e9ddcb1a43cff449b0062cc716bfb80a9ebbb14a1b063f34005e2998c2c5033badb44e882232db9b2fceda9376f6615986e983511fda2575d60894752b605cc ruby-3.2.0-preview3.tar.gz=860634d95e4b9c48f18d38146dfbdc3c389666d45454248a4ccdfc3a5d3cd0c71c73533aabf359558117de9add1472af228d8eaec989c9336b1a3a6f03f1ae88 ruby-3.2.0-rc1.tar.gz=798157d785ebae94cb128d3c134fa35e0e90c654972e531cb6562823042f3fb68a270226f7b1cf0c42572ef2b1488a1a3e44f88389ad2a6f9ca4b280a2a8e759 ruby-3.2.0.tar.gz=94203051d20475b95a66660016721a0457d7ea57656a9f16cdd4264d8aa6c4cd8ea2fab659082611bfbd7b00ebbcf0391e883e2ebf384e4fab91869e0a877d35 ruby-3.2.1.tar.gz=f8bbff5e237b501f4042ddc70a19ac1ce74f72f147c90daf7f3007a940136abde37c12a0f7444f713ede09ba847c2cc2897a1742823832e3dc8cce80073164e1 ruby-3.2.2.tar.gz=bcc68f3f24c1c8987d9c80b57332e5791f25b935ba38daf5addf60dbfe3a05f9dcaf21909681b88e862c67c6ed103150f73259c6e35c564f13a00f432e3c1e46 ruby-3.2.3.tar.gz=75aecd9cf87f1fa66b24ecda8837a53162071b4f8801dcfd79119a24c6e81df3e3e2ba478e1cc48c60103dfaab12a00cfa2039a621f8651298eba8bd8d576360 ruby-3.2.4.tar.gz=b695b98dac7bb2c8755a106d949cb1b1b91551092fad263765171ddf8a4d86585259ffab5f7cc9bace70143d645dbe5932cfc61c6dba7817177de391d76bcd79 ruby-3.2.5.tar.gz=d86c0151fabf21b418b007465e3f5b3fd0b2de0a9652057fd465b1f7e91b01d00f83a737e972ea994a5d9231e8cb27e64e576852390fe6c2ad502f0d099fe5f4 ruby-3.2.6.tar.gz=26ae9439043cf40e5eddde6b92ae51c9e1fa4e89c8ec6da36732c59c14873b022c683fb3007950d372f35de9b62a4fabbbc3ef1f4ef58cd53058bd56e1552cbe ruby-3.2.7.tar.gz=174e70ac20a21ea77e2c5055a9123a6812109fd7b54c0f7b948312b8159eedbfb11c06120390c158430ca8543e36893da6c809883c82757082d22e08004c5055 ruby-3.2.8.tar.gz=342d9ce337936cdbaa5d63a4d393edf0594e431add8cec3b6f17b884075bfdc5aa7a843c03f4ee3bece01700dfa4707bba653715a628d9dcb230762dbd3e5ac8 ruby-3.3.0-preview1.tar.gz=0f891f140ddc6372aa7c4459f8784126e0c341db7b80e72c51e441c5153c43c2d7b965f7807c076862ac84b9b8b0c6a66bbf66fc341746016151397bb21c782a ruby-3.3.0-preview2.tar.gz=1c5a13e519e8487fd40d932b96d14fa729521925c288e7841ab5eada628e506ceca2605bae36eea1aa505d9253383d53cd933b7a4bff96e6de5b1130c7c558e6 ruby-3.3.0-preview3.tar.gz=94db07a6958c09809b2e5b597fa55a121074e8bacb3bf588c83cf0d35b07a8b070172035a49d1abf0d8ee364a9ace824f34e677f7327ffe1acdbab0938ac49c4 ruby-3.3.0.tar.gz=26074009b501fc793d71a74e419f34a6033c9353433919ca74ba2d24a3de432dbb11fd92c2bc285f0e4d951a6d6c74bf5b69a2ab36200c8c26e871746d6e0fc6 ruby-3.3.1.tar.gz=0c8ea922a79152ac7adbfb2541320565bce6a631692fd39d499a06f53ad6339c16fad8374d171351ed63f7bda3312b26d4f8c058c5b6df3d7548fde372c718f1 ruby-3.3.2.tar.gz=a15ba8d6c2830fcd1f2b36f671acf9028c303ec78608fd268da0585db8e95ddd971666e8029bcfa2584da2184a6534e1f2f2da07fa7ca4494e8d842eed206f00 ruby-3.3.3.tar.gz=0388a96127eb6e53b836f7954af51ff62b84cdb7abeab823cb1349993d805b151204e426b9ac04ca8333fbd5e01c386d58bc37d34c4e9286b219dcda7542a150 ruby-3.3.4.tar.gz=56a0b88954a4efd0236626e49cc90cdb15d9bfd42b27d7fc34efae61f500058e58cb32c73fdef5f1505a36602f4632d6148bf3bd1df539cb5581ae157c78c22b ruby-3.3.5.tar.gz=5c482059628ef9de5d8a6ad4751f8043f2fc2b159b768265be7f3ee0574ad51d9500ee4fc9146c5978fbd51313039c3de39e7b7a4dedc9bcd5d09a41a713f1a7 ruby-3.3.6.tar.gz=4ae22f5c2a1f7ed84aab7587ff04ce4d9933cffe4347deaef0ab88d22c9780f274c1664a4ee1dd8235bc3cc749be828ffa8db7cb5f5002339a59a599acf3c729 ruby-3.3.7.tar.gz=9b48be05d1210e9194c8a6d77dfc3227599bff2b55fc9bb2049b11547927deef530ece9a2a505600cdc492c8517b1bef7ab5f2520ebd79ffcf76f0a734fa763d ruby-3.3.8.tar.gz=c5005ba4019fbae19650a9a9ce139e13608345065da9e2277dbeac9d0ac9e3b07b666816afe7be690088080c8c9cf88a8c372971d429479dcebea80d6c2e3883 ruby-3.4.0-preview1.tar.gz=29c0e32179f7b823b6708f5328e495cd333fe8dd88f7df7d9051deab47add67b14d899bba565bba1a77e1b04c9693d9708541445c112925777bb6891cb7b2b62 ruby-3.4.0.tar.gz=bc70ecba27d1cdea00879f03487cad137a7d9ab2ad376cfb7a65780ad14da637fa3944eeeede2c04ab31eeafb970c64ccfeeb854c99c1093937ecc1165731562 ruby-3.4.1.tar.gz=93acc262e3b7cf86aeddebdad5b8938c187b9c44a73b0c252b6f873745964001459ae45ece7376745916e317c24895596a42b4544e836670fc6e90058e6f0de4 ruby-3.4.2.tar.gz=edc3aede0aadcaa62343f38ea6cab7adacedba810d883f1d9c3e6e24e28e24e0e27a7df2c8e517cc2aab940168fc4872ab8cad000598aab5940aa79072ac190b +ruby-3.4.3.tar.gz=7019889939713c3e649003fed4d973dced36239fc354cfdee2d01dbdeb7e8512881a31b00efc3d5017f08cd492aed7914d15927bc8d076c0cae7534273e471e9 rubygems-2.6.11.tgz=3b0dd38c0aaf313c59e299dcf54f7bfb6e6d84b8b739573ddaf599e584da45ed7b1465f6521131b32f237e31a4796d9ef455b8be685064b3fd77a0355dfff13e rubygems-2.6.12.tgz=ebb672488b50f5fc988eab66ab14ce8e887dcc635f71239a85e32fbf1e919ca70196eb4d3f2fee3486cace7064bab0b8b08339c754b723198e1b0b0a0984ab54 rubygems-2.6.13.tgz=c952b6061a9a0778db304c3aa5bea693e71ae2564abfb19f8b123eef66eb1e3877fc7c36f4f1527da97bb320870cbfd4574ac57ad88e850a44fadd67ebdac152 rubygems-2.6.14.tgz=7743845bc5265df3782f85a23896cbb250d8a2bbc9934a27f274b001afa7aa62f7f00f616296f74747ea612d2cb37dd7f533c931aa72550d84c64d2a73d60daf rubygems-2.7.0.tgz=0bd08fbabcc33687c98365ffe6794ca2a5e82160b0297479d4f19bd899d176b7f4efb95248898b26d873f9fc7d86c10cada6e40cdc48738b0bac261c3aad261f rubygems-2.7.1.tgz=fa4ea123760b03b8b8e8ececc55c9dc34249073fb267d310bd903aa7a613267e5d27990bbf28e32c9a746bf884af8a84a0dc202297272f9d477f7710c21bfb60 rubygems-2.7.2.tgz=0f48c6e46663780a571c7ee0e6e772f2e18a755031e7dd8ede7870f238c214b9e3e38153b1ae8f1f78a9aad63c1a079b86573b3a25c57a600d842bdf92b9c4d1 rubygems-2.7.3.tgz=2782331b31947a23f85b285a3d5e7b66e34fe5847bc84dca4f1e6bfe33ce187ab0cbc814229de8111aa19490b656ca78b7c821e4ea6b425449991c01371b7565 rubygems-2.7.4.tgz=90f72a46709ef847666a6a23eecf24521abd5c294b2da8a246bb4c7f85daf4af39a0634fc8093c7bb7ded2ac137ea27fac5ed94af3b70c49e78594285c7a40ce rubygems-2.7.5.tgz=86957f1c438070135df527a15102e40487fcee93a55251463095e4c8794a8616d16ed9bdead0e0ef83c44806bd5016ecd9e178bef608b66af2e68e2c9c49e941 rubygems-2.7.6.tgz=bc168afc40c974dbc7c37eb5678432ba2ed7469c3f007a159699467ff2cff5205c508237193ee8becaa6eb555b043969cc5f92b2aaa6bf7c958dd7c187e258a7 rubygems-2.7.7.tgz=f93b7eacf5ef8725c40d618daf9deabc7e9eed74b3b7f13ecd16f89205fe24958e782314c52f8a8fe3205b93e20b830b4fbf7ff8944ff1cf56feb7de2d773252 rubygems-2.7.8.tgz=3d1cf68377dfcf102028342258aaff5a7257d2d2b34a80508c85aa258d810add46e65a157f902c271b0b7b568c437372d17246e89cd88f8500e47c008d17f1a6 rubygems-2.7.9.tgz=5f699f47bc24d8ffd4f8f44a509a9df71fcd945ca2574dc9d5050bfe06a44830a368f45d204112d7a4f1877e1600a6fe4d1b6b68f9a55288664667b4220a7d72 rubygems-2.7.10.tgz=48a18c0f202f463c38cf5dafecfbc7cc39245e63c7a059ef2cefadda478483794a929ea6b7e0ef062dd4423230746f1f09d7bec06a97fe3ceccc3325397a3e71 rubygems-3.0.0.tgz=047f4d446aae414e4803517088ef47d5cc66319ff08a3795c6d69e83eee9f3e7c3b05419858f7e5b6a8ec224990ca01178a9259961ef2d7ab737bac352a0f18d rubygems-3.0.1.tgz=dc29ad51ec67b1dca82a23973ea92153482788964d0755bdcd3c650116915c461c6e5fb1c826be3ee04a497fec4ac2826904bd406f24611e77cd8c9eaf4d8729 rubygems-3.0.2.tgz=90b46c2cd4f8baee74eb488a40691cc00e754cefc42029d485163d6ad7782df78ba5cbeab08eec6a4f71febe0f6e635e12a9381393008c58eb5e16396df93fbe rubygems-3.0.3.tgz=1dd585243341901c7b4cc60a4902000c10ce57fe2cc9c28e27e274a2e6029f936cde1c99d7097c93c2c5b2c8bcee5d692c8fe5cc00c996a040e4954b674e330e rubygems-3.0.4.tgz=887c64226ec0b32d33f2ea331936683406d54dc74d19e658a23521e25ab50aa23534fe9eecaf696154247ad1df1d24c233d8900b9aabc79096eebd6afef3f775 rubygems-3.0.5.tgz=f5a97cf67d7d043afba7c1aed014f1b64ff6376ea74d3d6533496bc5ca9742e0ccce1a157e6f67d8fcbe59d8e34bbfbcf4ed8be97acf2970603de6381043cb78 rubygems-3.0.6.tgz=1ef1822a2b19790a36a6d242b7d4584222617baa27787ec58961a9cfeb2733f19f9085490ffc72ee375d3153c7114e050c42e68fc8039e727fe5961b09365ee5 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=5dfb040b746e462c297ebcdf84e0f07cd74b86852055dcf0a7cf1814112099bc674bcccd94b03726aee76b253c9345a45d046cbfea230647644f0fd6b1c1ec96 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=17983c442c54d19196be3626e25c64f5474139c0b973624832ba8730efb047bc747c02e59c82f38397bf012c63ab83f79a9c1b64311cab796f08fe96d7d12a1a truffleruby-1.0.0-rc3-linux-amd64.tar.gz=b0b57082d61317911f101da617333d81ee6bede6b6e18f9bed86544dc413339c830198d90cad7ac94c0c8fb690adcfc559dd9f530abb70507ff6a76eee552b61 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=18f9782de56269389320ddad779ec69c168909198d4572e2ea4c18bc8082a539569a76760a6a6da58722fe08d77d83904aaba14baf4075a2833cbd2efc45dff3 truffleruby-1.0.0-rc5-linux-amd64.tar.gz=134d9ba5db7b8a1960d3a88390cd6f7503a0e8565094fb127333d122cd773bfbf9dc976c659029007e6fb68e93486293bac2ee29ab21dae9cb0c06ba57dd2c72 truffleruby-1.0.0-rc5-macos-amd64.tar.gz=5804f1f27916176f5a270de8aac85bc48c38ba37c4e719b09f5777e5c42429271819378cfe096c3cc33d406cd0726f2e37658020f97a438fd53751019831569a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=2597b375f590755b851d3b8cbad3eeab4c965eb02d0c944044f57e39f6c3db1e2f513e2aa55db789e4a885c697f81ce5c8bdbe9a7e44ee30fc09d234e44fb512 truffleruby-1.0.0-rc6-macos-amd64.tar.gz=2eb177190de0408dfdaf30264132955d1db7783ddfb63880d97d5933f66c5662794c3bb6198edf230fbff348674203e61f7f5481e74ac875974467f2f128e939 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=ab3a3dc19f903e68e36b135729693fa025a7c1950139277255e48c972387ef8399beceb3252ac37cc70c0df92838f8a0ba8c45f53665ac4286ef23f9b240806a truffleruby-1.0.0-rc7-macos-amd64.tar.gz=b8423f50a5292e211db7ebd7e2b987fd5c9eaaf34eba86b0644d2716a7f068f2e56deb4357c516b87b437e64fd5ce8515bc181165cc1042c6763f27d71baa59d truffleruby-1.0.0-rc8-linux-amd64.tar.gz=bcd05d304ee9b4da97193575fb1ad78041a0c7710bb444af6aef12ab4261b1873f472175ec51a187a5e99da481d66b81a132fb691643b793e87d655f31d54657 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=2c758221793c38ca8af1831a5d9f3abd555c406569508ac3a86d3c1ea5baeeacf65abb6e904ed3b1e58f555f51bc85ab171135ff4c3d0e08cdae994a861cbda4 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=42e60b69957f77a8623e0dccb7d215e800c27c622364fa76b9c574e8b1d3a4056a058b61ed91eac2375ecf4e51e482a6e17550aa2894a44d1db70687958033da truffleruby-1.0.0-rc9-macos-amd64.tar.gz=18556ee8d2fdec6907fbc8fc33d8b32ea0c58d40ee3df084ffb233e2fcd3a514a553f97c31dcc25dda3f86b1b805ca5fe3c9bf8cb078b92325515f09db6b88ba truffleruby-1.0.0-rc10-linux-amd64.tar.gz=10a7cb1be6214347469d5797091f73c3d7824bfb32a47c13566573a383380b1df9b79b7901ce0fa3af1c97285c90afac21e2de7a66ed88d9495846743b3b25e2 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=53f0939d9d8c3470cb79316d865b765816032528d77a3cf497134f3aa667a6253ae037410801261a8e7d0628198ac5f6aea5ecf9b7313f06ccc1d5e9f94e74ea truffleruby-1.0.0-rc11-linux-amd64.tar.gz=f89bc9a3310634d39f68006307da0b0ddafae036089bdd663e8372777a9562d201a4e69b2e1a602cff5fba6c78a8d4861b6d1020679bd0c72c71b938a4f36a27 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=3f461c12fa9fa57a55cc390eb9887df88f404661a77bffb44f82b4c7e9021513a6df9f6d5f332a36ce0c28ae7e3d5afbbe15cc4b814bc7f86dac2e5ec280f947 truffleruby-1.0.0-rc12-linux-amd64.tar.gz=85f042c308ccdfbeb318cec37056d8d970cab51cb0779425b85b8f76b0a1dd9cdec3191ae2b6b9b6be6e95767db814496450ed20076addd9bd495742f9de3c8c truffleruby-1.0.0-rc12-macos-amd64.tar.gz=067a0f63bbaaed4c8d4120f758c8ecf8c52afd1d30ea9d41489e26289d57a574d2d4ae29e29655378510adfb3f4a07b04b403d6ee98ee6b3d3aa8bff9c8d718f truffleruby-1.0.0-rc13-linux-amd64.tar.gz=1eb6b80cb05133d253f20629a11ed9ec3f37da002d5668cdc6577b2a20524e0cdd4d739d3f1aa2e8c518e2f7ebfd519ec1c647293714a1133ad4d569375c0e69 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=e3cddb0d0ae48f7d5ee4dd094ddb5a13f6a7aff1521b1adf25710971664b235cf67144e3b81525fd710dc49b6f6f6ba06e10eee1df5dc08119e9494c6be86934 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=c982194675b66a0433bd5517fc6f1564db669f595f8c7ba4819bf37e0599474d49a0c606577a898c27fa5ba40ab793c62d8211e7ea398d6b3e2bcc31eb5d55f4 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c14e396396385644333fb4c4aa1fb4b934a3f4e46312146821e5dcdaa097cb5b1efbf397c1dd6117d909803fd27ba8d835904672e98d43dc565e907fed752e1b truffleruby-1.0.0-rc15-linux-amd64.tar.gz=f27a75f929a6e945e49ceaad12f484fdaa918469a2f639b572fc4737b78e1cde0881697057e13a58b2fab7ac64c3a71bc9951561c3a8728e3dec814ef5e95fee truffleruby-1.0.0-rc15-macos-amd64.tar.gz=7aa029c4999d4608c9bcc491771b0434267032dbe9dbf504728079f87ce93e6a90e0fa839295b88c00e5a025186ed0fcc42361428b7874c05e222edb108d6c02 truffleruby-1.0.0-rc16-linux-amd64.tar.gz=e8c508dede11d4f54cf0b15cf92b50caad93076a6065bd2d6784c5ca739f5923ea2b894c6b2b52131f62187c8b305cd11a960fb5a670789802d59b6b2999f0af truffleruby-1.0.0-rc16-macos-amd64.tar.gz=841eff077c38bf594b101edb15942f601ba0dada2122b21b016f53251aa2a635b8d0b63b49bdfb50259b2545d1f498bca95d5f771a15a28edb0dd07216c9b709 truffleruby-19.0.0-linux-amd64.tar.gz=8ec6c7829351e0dc2cce57305947cd540734fe5a0b95b9501d4179993727ab2c331e9fb639b9865c0fed596df3906adf3dcf2efb22c4cfdd23a3dc2137025fd4 truffleruby-19.0.0-macos-amd64.tar.gz=912e0c15d32e40c884b2caaaf9a86a71450d441c960ef98a63dfce80353619073b146dcfe03d9af4273b2811d0899eebe922cc84a51d6f5e6826cc436d793f78 truffleruby-19.0.2-linux-amd64.tar.gz=eec92bfbd776acd61709a428b90b1029c5ea83e5ea839304d23cae3a541dd4fab3b387691fa76643f55d5939c9cac0cbe70dc0b5786e5e0e5d20f3fcd9a21356 truffleruby-19.0.2-macos-amd64.tar.gz=ce647b76c9931feac55baa5acd2c87d8335c606bc5cd7e462bd92ba1b09f4bab5db927f021e3119abfd85c33377003d060f36cf64eb121954fce8878112f01b5 truffleruby-19.1.0-linux-amd64.tar.gz=db01e6dc09fc5f39ca466aa94f725023d49a8f52343f129bf8c32b7f5f76ccf2d573ee3344fce3d5aff9983bc9af618cc5ca6e1dbba93b3f604e4f33f8a69b3f truffleruby-19.1.0-macos-amd64.tar.gz=f002bc0b6efca11eb97c4aa6df33d2e0fcc1de3443efd39d912b028df9dd8954cb76ef3ca7fbe140f4e922d6ae4c1a6a20853490ef1ea0749293e2fcd4ffe8fc truffleruby-19.1.1-linux-amd64.tar.gz=ec031e8c216e31f034d97aaccd6441869221d6946e18f375b44a866550b8e8eb4b2fb923f9ce1a62853bdcd5b9201e0f5d2732ca6525d80171d5732ef522bd25 truffleruby-19.1.1-macos-amd64.tar.gz=1c15918af939a8fe1779b71d9e53d2ce09ca7353173a3b357905d9fe1981ff013cf0f90c6b47e1ca66dd168c2f2d742f28a5fb134cc0231d36146da99f91c3cc truffleruby-19.2.0-linux-amd64.tar.gz=1248bdde9cd3651d7042fe4cecff4ad35534868d543fe2e6f3a5bfc3bc9d10d57b4139fc070f0a03861436a1aabc9a8ebdf3356f39b77a4b8f6a1dcf492f70a4 truffleruby-19.2.0-macos-amd64.tar.gz=92c3154ed229a115cf392826494745aae06dd9228dd0996c2c44c550552f13f9c254367d068452fa4a84eef79c19601c79b87e10f3121fd7b83b803514a41cfd truffleruby-19.2.0.1-linux-amd64.tar.gz=53c78cd1f255f2b7031a70a42b65c0bf80c510b9254f5d7ba82b4787f55f5b09cfa9544c424a90f4619a74179fed07c168bd501e34772ef836a773e89c467cc5 truffleruby-19.2.0.1-macos-amd64.tar.gz=ac11523cd49fac50de1e441039e429fb8cd6c7051d537e5083b64fa68eaa19c9f0a966b269da906c367985f229af82a4811282dbfd0a76ef6565162e1081a659 truffleruby-19.2.1-linux-amd64.tar.gz=c5ffc1b592a74e836a4f6ec75b0e103150a4a40d3183ae853ead38c951a85378163111cf0bd2b81e44548c0a7aeaded3ae8a7ae558d5a02dc9e2cce992b79b58 truffleruby-19.2.1-macos-amd64.tar.gz=bb467b91f66eb7d1e6f1a54a7bc0a3d9503bcbd935e8a02da9ea0b749a51e354b1140d4a4dad6fc05312b560bb9ccdcce4f6583bccd19bb5afee19bf494102fe truffleruby-19.3.0-linux-amd64.tar.gz=0e94777a3feabbf0107ed40847e20dd4e3696ff2b7c3f6ceddf3a53ccd812bd003c84c62a750e8fac9d2490374bf792d69174b48c3ed36b593485d86729136c1 truffleruby-19.3.0-macos-amd64.tar.gz=95470c389e24c865ecdc3d299005cd98f8221a128f3cd75f899b6b7ae5d6dc07962443ce0ff38dfd014589d5aaf08b718dc870a72eb7ea6ced18ec2b2db63095 truffleruby-19.3.0.2-linux-amd64.tar.gz=dc5309b71980657f750b4dd4f8b3bc4e191bc305b638b1e562ff5b0ad7fbba40079ba674caf46226a46b5ca58c10f812354786696264742f351b129fb088a672 truffleruby-19.3.0.2-macos-amd64.tar.gz=ff1c37485ebeff3edcc7081ce09bebe5541012dedff6997662c7f8a064e0ab10bef9a5cdf834263a06ae04ca0391743948bcdea6e6c9d7e1cfef9f21523c2bdb truffleruby-19.3.1-linux-amd64.tar.gz=c724547a9eacfdd135ce05eac9dcfe74e58a5e77c97f88103f83b8513c15c975a0ecf623f623a425ec81fad1b64d3b5e135660d6943608ad08048cda00eace79 truffleruby-19.3.1-macos-amd64.tar.gz=d746b2ad410c15d145d36c676a070ae454ba8e5ec6c594d5ebcf54b1fc719f98e8b8f71b6fd504c3d38df286bd11c5114f73b5ba39be312b11d42d4ca1a17d02 truffleruby-20.0.0-linux-amd64.tar.gz=4efea5ded5fcc6886befba3a3720fe1e5b2e376d46738565e8871a1ce0201a33ed52e78b8af2fb389618bdea99466d126d8537dd0919b0c13f8ff1940cb3e52e truffleruby-20.0.0-macos-amd64.tar.gz=b36488330514b77c7115689042cf2482a0beb9f72a0b05fb4c7a6ecb0835a3da47c3b15c41abd6ffced023e65ecf7eabcfbcc6e41901dcddd0fb3dfed46564c6 truffleruby-20.1.0-linux-amd64.tar.gz=116d57404540b85c15b321793a6f985624a2044af544e659b3607e50159703af5d445e22bff28ae2182dfa752f7500d420e250f6deccc98a2f01e89adba8ac3a truffleruby-20.1.0-macos-amd64.tar.gz=9b1267101dfe78b85c79f7528eb4de96b16933e66d5771efa6272372dac0fb35b199bb9d42773d61f4fa7a15d6cbd18b5753c148f7c3e477c7c4b21633f12b88 truffleruby-20.2.0-linux-amd64.tar.gz=a37eaf8475364b74d948979ac13dc6e6423bf11949ad1d0f2925f78a4495e80de9767001ccdb777c8cfd7f545839fad4d842522620c3acad179404bc4ce6752c truffleruby-20.2.0-macos-amd64.tar.gz=964c1e02cc53e1646060334a9911771e679a8344d811a0f77d5cae3529dfefff259c45505ac84b7debb958514cd5d2276ffd435802085494e0229dd140ce8f00 truffleruby-20.3.0-linux-amd64.tar.gz=ec2d8ff6a5d45fd7091e26430c67cbbdc0f8ffa41e9ac574d48802766fcd144e1f446db807700247ad6d8046b7ed070b5da70ef667e576d6fea60cc64ea5484f truffleruby-20.3.0-macos-amd64.tar.gz=1878f94e05a3c40484bf944a72412b179aa5415a16a7ebc1610cb512a1e1c4a2ce0e98685257ad6e5c14745245c35bb5b28205fb687292c4f17193cbfb3bb606 truffleruby-21.0.0-linux-amd64.tar.gz=b7d1b76cc015d136dbd74515431f4447730850475f81b00885b71b95819134db2656d941736048db42d519f03e1f2df066226513b77208adbdbbeda1f49cab11 truffleruby-21.0.0-macos-amd64.tar.gz=7677b827a9c1758d5f941c512cb0fe8daaa19c3db77b485d7dfa43940151d6b9094c4d9271e18ef5014630142dffb93d168c7ac631a3b5eef6fc61b2f9eecf88 truffleruby-21.1.0-linux-amd64.tar.gz=010e9fb78cab12486641780392be0f284da08dfd955f3a0d1ef72adb52e1c9024b54dc880173645aea2af680b3670a6bb01409198b757239edda4cd9bf2b1e90 truffleruby-21.1.0-macos-amd64.tar.gz=96ef8481faef1bfa7f01bb4d396818ef6f0943d19c6a23dedb68f8346740b72bf06efc707bdd29158cf991cc7073c97f429a07b02c2a48050512b46369850058 truffleruby-21.2.0-linux-amd64.tar.gz=c20af04909a852cb676c90403d852fb367d56eac0f9cf8ba42caa4cad1013ba393cc4611e434614ad132b7b0ed61160aadd887001b08de0767cf58f5e149efe7 truffleruby-21.2.0-macos-amd64.tar.gz=0b8d9633fde53aad78f0baf52858cd5a5716f53ff21698baab17da4a625b4369b88dbd664193e3f0d1b40e64c88699ab4f04bbe40f54189a588c93678962a7be truffleruby-21.2.0.1-linux-amd64.tar.gz=15ceeee383114f974aed5f16c99131d56947e13cfe248b97e55d61263ccd51aa56fc3e0df215196ef7f80ccba9e7f19e7f261d7a91d54bde2d9992caba682d82 truffleruby-21.2.0.1-macos-amd64.tar.gz=8a8762d90c19db4f48433ce0e3f3339e290685d79c6ee9bb7d4359c741edfa6a7360ff65124433d964730ac25b2cc6d8b581191b0a51479f11c2a80031a6c1c8 truffleruby-21.3.0-linux-amd64.tar.gz=b0c07b1ea797de92447a81b350d460c125a2efaff3c290637c4bcf1c216b5abd11148cfb143ad397062a96f36beade8234d0785c42f58fceac0011f629a5220b truffleruby-21.3.0-macos-amd64.tar.gz=42e607fa52a534123989ad232691ede65aa1c615f39320d93aa8ab9c21924eea7bc0aa49aef1a540ec972e2b3dc775d22a99eca3e0c9bc450c525f9020fbb975 truffleruby-22.0.0.2-linux-amd64.tar.gz=2231a0cfd27238c34ea0bbad27ba387453e48f39032607cbb829b347ea6ac804df15eb3f84d50b09248782d6202284498e7bc9aaa2060f0ce81bb83a84d700ad truffleruby-22.0.0.2-macos-amd64.tar.gz=1d7ac44f0862ad23cf17a7bba73d23dfd4727aadd9a3aa9633361e9bcd19655d163e160eae9c8db8ec9892f8fbf82d7a38b1cd689475bf41609a828208098623 truffleruby-22.1.0-linux-amd64.tar.gz=c4c2f9bf4236118c8ea62c08bad89e1034ecdfa0c4815693961c4d2b1b30ca043fe958abfec9cf36a8638aa2e005e71fcc244ebffd9ce11eb68cf48bd98c29d3 truffleruby-22.1.0-macos-amd64.tar.gz=507004ade838e614955e23331845839be656aaeae7869ed3d989c10e6491775a12313ac9ef03e14945f20f5e76d46ce6f7bb860af68a627c48065399cea3c567 truffleruby-22.2.0-linux-amd64.tar.gz=37c09249ef387df3e0614f646abb444cb5b7b2751538ab0432e703abe92a81b82e0d15f89d5ad7cd58afe5f30d9a92dc8471d19f1c1ce10b50478ac74f247739 truffleruby-22.2.0-linux-aarch64.tar.gz=49a7cfb4c81980d9c7a1588ef9f76a9bfb759d4b1925ab11f230d99c15a62e162a08249d23cf5646e2d38ecc2005e27103f2e5d92b83b0a182a4e64319b70c0d truffleruby-22.2.0-macos-amd64.tar.gz=d4c206fb0a5e63c5b7f61f2e62de854e4d0817075ef9ded237d98cd821c286e88d7b150d140d9907a957209f39be96c7025560e3908c89aa337925d2fba690af truffleruby-22.2.0-macos-aarch64.tar.gz=a01c18803777a74717ad699b6ee51eb759d881fb436d24338b557c52d4a693079d7b55f108394ccad0dd69c974cb895f4a36854355e84fecb67e41bf9eb18514 truffleruby-22.3.0-linux-amd64.tar.gz=d53472ae892dadc81c6fe63a597ccfb67e133958431b11716db4d920c78fc86f7496e4b10322d041c900bed77d27e02850da20aa95b297d63a9de2e72cdf3c76 truffleruby-22.3.0-linux-aarch64.tar.gz=dab63d49db4722f0c174ce8b882413102520ff649182946ba332ef5ba0fc6b58913595539a20b59e460faab2fba36f762dc8eb66aa729d4a6bb90feb2a95f053 truffleruby-22.3.0-macos-amd64.tar.gz=15c91d25fd6fb1d9f3f2a0b36676da5c8a76d62be86cff463ebe6c7e6aed2d9b6de9062021ab1b9b29cfb7a92b5682c860939acd71d12dba7e4a6bf3964fef3d truffleruby-22.3.0-macos-aarch64.tar.gz=7c44d0dd07e4ecd84a92f6dd574dc185906121b8eb75f6fe097b9d4738aa30751664d70e9027e072eeaa1dffa05fe7bcfc06be0c2dc950142f60664baf5eac69 truffleruby-22.3.1-linux-amd64.tar.gz=f41d3bd22500b7291121368169f8558df4563c840a01b70ff7feea3593f0152d8d77d4437af362bad62f25b79bce1ce8ddaa1bd8172a2a7ef8b61cdb6e478c9e truffleruby-22.3.1-linux-aarch64.tar.gz=1ca5221f0dc5ae3e0bd9545be474e115b2e62737701df95c6ee6cdaae5d82815acbe6af961ff23afee64dc26e655c7786d4347e3694c140773f065534322ee59 truffleruby-22.3.1-macos-amd64.tar.gz=bae16cc04c6018703833121f4258c3f18fa5062309d0600458be3c51c838bc63976a026db0f28d23005df9b640ccad0a9cafc56610a5ca9c24951c66b62097d9 truffleruby-22.3.1-macos-aarch64.tar.gz=b56e230d8fbc95d19364e695aaf1e552238b02ace7056f636808a7d7510777cddfde572ace5238ea1e314351bdd1a053ab3912d0889f51f55c722797c83eaaee truffleruby-23.0.0-preview1-linux-amd64.tar.gz=d538412f12d5ce743c351acbaa483b8b85dd2cf84fe06b3e90ca21f3c2fc0465df9c1773b3515fe4296d599f45e9cbb935dc5a69fe45668321e5639d58608ef4 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=f10b5ac749b11f93c2469f2c8a713ad090cb653761ae0a3e1ba4c19b0c96bd61c5e8da74d8944f9487c2d327d268a188f2cb56028d2beaca2a7816e63123600b truffleruby-23.0.0-preview1-macos-amd64.tar.gz=cd9db49c4253bd66cad6f9ae111c83d3befd0102a7ccb72a2407d22dc576ba7f3a26a90cd479f26dee3565d2f893a2b7c8b549e2351336f35d2632e57966657c truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=28b77d9943cd1617e0445633a9fea8911cfa975f5c581192439cd0944d2a17c2b0558e3e4112588b5fc77b57c48d857ad68ac51fcb867250625ad85406d87acc truffleruby-23.0.0-linux-amd64.tar.gz=da702de2e8c994f2646a3de5b44824210dbd37129cd2f91c3bdd990a1b0d0b05dee4443ad0f6cf98fdb4e489c9f4cde64f3561baf486dc642d4981a1a1812925 truffleruby-23.0.0-linux-aarch64.tar.gz=808254a154adcfd1bbd6e22bcdafebb6169c6f8cfd1c55382d446bb66002384ee844dcd8b5f642703ef440f7566645d190081f45e04a7d8d59bf87571cb4430a truffleruby-23.0.0-macos-amd64.tar.gz=f775d57e63c606eef424a1115408ed8539ef47d6bea0125ad1de7ee4fd5971e96747cb7f5d22d91d2f004edbd6ed6b9b5bd014127dc1abe7821a3a987a72d9dc truffleruby-23.0.0-macos-aarch64.tar.gz=000069854458f81d97eefe14123fbb69937942825e77d35602d55fa279123808177a34f252aec9dcfa48b93feacbee81ae0f0e7043c2d8a9ace2a4bb61ab253f truffleruby-23.1.0-linux-amd64.tar.gz=1868799d989c51798cf07b5243457af7ae2436dd19805fd634c98b2f1885266b5c3ec81dde668c2e5a290e9028f6f9fd223d153489df6ffcc74d45240aa020ad truffleruby-23.1.0-linux-aarch64.tar.gz=2766621877996ad35fddb94f978feed531307e8abf601dcf863754c96782b8149c3ac512dfe6dd2bdef0fe0e8a968bdd77608c41020434aaef4e7250c09edd74 truffleruby-23.1.0-macos-amd64.tar.gz=06c5a1d6ad644fd81737f0a1fd24c1529f712abe2a4485ad597aca7c35ca2af898121bb5883552cf518e2afdcb4221c8ad013759b46a69e34249e7c5ebe2b170 truffleruby-23.1.0-macos-aarch64.tar.gz=496cacc5cf413a48b60184e097a962ab5d2236c539f07cc0a9a2d9ef57dfc911a26b125cc3ad9408f6170c6f93c7562f35729c8313be0301972be21c10097942 truffleruby-23.1.1-linux-amd64.tar.gz=dbca85e281bf2484371a0bbcc202ca700acc704304d966b9202cf3835e82f6eb502e43522355f4c9e5a743877d93f5609006fbba2c5e6343a89de130e5209f6a truffleruby-23.1.1-linux-aarch64.tar.gz=6a58842d79247d8a64c513d68db9d53ea5640c02f71a1bc45f103baaaca67bb224939ae5f21ef55daa9d9b9697404052d39a3c382768ca366ab7892b8bf1abbe truffleruby-23.1.1-macos-amd64.tar.gz=7cc6bc957b7ffa42e9fbfe2f6e3014bf1e7996f2754e9e74377078c2c7bc7ac8e10598f1e1452839fc5b9583c823a2a735731ca193a6af2814a02566cc4cd9e4 truffleruby-23.1.1-macos-aarch64.tar.gz=a85b8189ef8a280f6a27d4c1c93893f844266dbdc15b8c4988cdf581613a353508fae4872ac9380efcc47f36357e137861521712c00ce8548041762a8987a9b2 truffleruby-23.1.2-linux-amd64.tar.gz=6307fd71fb1431fb12346d1f13dee4b3afe53947e8a9c1f3e3aa0baae5f9fc9e1496ede0a7d86b169d912ffef9625af998b4e698dc57a2a649140150e3fae28a truffleruby-23.1.2-linux-aarch64.tar.gz=0f0c5e4aa4e9fbc9b9f91d2b3d3fbfe26e78c5bc5b369fc78dd54775a7582b8c084a64f02848058bec79387fd80b09a5a5594ecfb268635fe76e1f9d957c2e92 truffleruby-23.1.2-macos-amd64.tar.gz=648401a73b29c28862a1fa077c2e1bf8fff65015c8bc690ff883a00a3dfd99389ffdb71f39ad85a4f16c531470f4cc891ae51ec927a426b0fa05fa85c9c6a2f9 truffleruby-23.1.2-macos-aarch64.tar.gz=4ec88684c09aacfa1d8bfed9a17243579ededacecd869e98e12841710bae29ed6e5f080611e53fc217a853f730bb2a9cb3d47ef15443eb8a1ad76a120118c8a5 truffleruby-24.0.0-linux-amd64.tar.gz=3a59a4dc58ad03549d8e63db1485767757715fc9aec21b2b67b1440b13871a04541abeff9bc8201b3088e1865360b1667459e536d3cfb09687dbffca95deafeb truffleruby-24.0.0-linux-aarch64.tar.gz=50f3993b7362bb6e7da80f7327df3d079bb02f98b67012e2135005d77e61648e4f3268f767d8ca245ec5889ff934fbcccb94fd5ecbd55bb0cd9cca900fe10509 truffleruby-24.0.0-macos-amd64.tar.gz=9ec8bb340b15e29550448e123e3ab0f183edb9bbe7e052743cb2306cbd1956a5789c5a367c80c5e8d913dce2b804448dd6815e4d3421515166daf8db51d37c7d truffleruby-24.0.0-macos-aarch64.tar.gz=499f83bf65dcb6ecc92414a3550673e6a0baaddfe3ab13c0bd7aa1bdde1ae2a61d9d0ca8001c0d12688d9e09f98f9e2946a651220fe7d200bb0ec6f285394701 truffleruby-24.0.1-linux-amd64.tar.gz=62b4e8508eba8cdaac70e99ac9cb0b33a663b4195d79b2dad3d771ef538c6c41d1d91bb7bb07fbbafbcbbcaf17814ffaf6d6bdbafd474ba6a8ecdac30315a8c9 truffleruby-24.0.1-linux-aarch64.tar.gz=817d877848ea4bb55658ce34bbda52926be12426a8a5e1c4588bc0ec1896018b06dce176336b382f80a7c6d073d4331b20694a7797ee8fdf0177e973053bf929 truffleruby-24.0.1-macos-amd64.tar.gz=2ea65bea154aa38cce3f00f24fc9a4aab5e7478fafd070d0cc966878371c070d5a1776b7405e2c9e4cfa14e5c51219ed0fa988294eb4708690983b348886f439 truffleruby-24.0.1-macos-aarch64.tar.gz=bc1923e21768d34779c1bcd7850456a01ddc01acd1ccf20f4fb4a446fb847f8c51b1ff4a7c0cdc317ef8ce057ac24f18f25b778a02a6e2b185e0055d946ecaf2 truffleruby-24.0.2-linux-amd64.tar.gz=5d111beb862b618c4e6a7f8aea1d3d6476740513efdd59bf980a2b6d525a017f46fe02017b075962a4919a001b60bd9a070e69fedfa8a85533c0adbad2a8d86b truffleruby-24.0.2-linux-aarch64.tar.gz=8e3ba19df4e5509c4719bc3bb621f70ca6a0e683d48a296703649b88abd83a165e8a64ad2d7dc45394b6de0b214a95a395fa449f5393dd9e67deab9e149cf494 truffleruby-24.0.2-macos-amd64.tar.gz=06d3b5533c4e26aa1356e602c672efad99208aaee96110904216e16dcfb1d99a7535c3ef275f9a14635dd2f05110798b3c75d71199f6010f23c92c6990492cef truffleruby-24.0.2-macos-aarch64.tar.gz=ba36d3f1680112e6623b14a4bb902a5f65f11e9827f44462161b1c79ee344ca340566289aa1f841c1e213daef5608c159343cc203d07f41c2a55eaeb25db0987 truffleruby-24.1.0-linux-amd64.tar.gz=9a93fd61086fabcb6c4f3a0fcb16e81f42b0203a24a04209fe446eb5f88d78e2ac59ab54d42cc30ef5417199a88b452973eecdfafc57c7877e11edf0a3d42b13 truffleruby-24.1.0-linux-aarch64.tar.gz=ca23edf279ee9b4693630df9596c6e269bb544e06bfd02620447f51108d9e9b4dc8b3ecbcc7a8ba1280560c0eb4b59474e75acead81799e4c51365acb5676d24 truffleruby-24.1.0-macos-amd64.tar.gz=65b661b3bf497bbb090a2cb49607aa00c3e5bfe95eb19c7736d798715d55fe07ddb4e8d8c25c1ec4b7b304b37205c7de9d8ac2d56005c9fc43e4dc81ae699c9b truffleruby-24.1.0-macos-aarch64.tar.gz=ab665d995bd63839c0bf6ed1171875cce7974d49ed79953a05ecdcf13d815c0a5cd471f40839f3f51a1b3128b40a4ed34d9b89e4c3f343b38c78276aed667956 truffleruby-24.1.1-linux-amd64.tar.gz=78e4e8bd910e4b3b41e927f6158cf8cfc74da5187969727d5c5303416310c5b7f72fde239993ecd5ab51724785cd80b2bb9a422a0475320fca57ad40b26d2786 truffleruby-24.1.1-linux-aarch64.tar.gz=c4e3aa72433622f96216b053862beb65861ab20ab28cfc50f51452720173f0a836ee69335281c4c89c6289ffa6f42517b9487d1b6fe16926aecfd9180d6f8195 truffleruby-24.1.1-macos-amd64.tar.gz=099d1abaa8677ecfd298e974fbb37e21bff2ad45313090cecf9a2799b79b74223ca4f95fb873cb7148bb2754ea3f923cfb553dd1dbdf6f1c088a3793bd991871 truffleruby-24.1.1-macos-aarch64.tar.gz=8980a71fc423c454ceaa16b46ba085a0164bf22e3e2040e960623148f09fea4c467b304774afc2ea37d9e072905eab3ad65b3c4acdc7b01ba238e24829cc16d2 truffleruby-24.1.2-linux-amd64.tar.gz=93e4ebdfb9c6a89681d8913a0e175b46c53124c37b0c15c6e032bcbf423def9205a6b288977772e50ba68c8fd06308c9478f22dc7c0385b41fc9989f68a86083 truffleruby-24.1.2-linux-aarch64.tar.gz=63a212ab48704376c1f6e6792da231f6b4ed8ffe1f77eff56b0f58ae8030866da6fcc19cd7068ec158c6e11840b13f47d2d12ba65b6a7f06ba1de6cb1b582fc4 truffleruby-24.1.2-macos-amd64.tar.gz=6cb535ce7fface14bdef86ad322992931ff809fbe781c0715774f279842b5f65d5e8ff4885858cf7a3ba345071509127f473381655f50d000e60c90a88eb11a0 truffleruby-24.1.2-macos-aarch64.tar.gz=a146c8000468c977fc48d8069e938ad6d32fd257d23133c2125f5bb86598d00283c654fc553d5de31ff9a79224f34b3b064bb223ff7766f9f2e25fcf7e263947 truffleruby-24.2.0-linux-amd64.tar.gz=ef5268859169ce3c584a7865a39928005dfa264e15dd84031a9ce874deaa31af067b1ef53712011911e7816da18bb085c783a10a4b2e45d3820e1b82d4855f86 truffleruby-24.2.0-linux-aarch64.tar.gz=7c9b29eae0d6db96c8106f286cb376dadfc0e93ded75b7eb333f0919f50edaf7b0b1e2c8634ae9bcb671611cd1084b75b598a8fbc1c79600b59e98964d1fd7a8 truffleruby-24.2.0-macos-amd64.tar.gz=7d54e9b475a2ba18bc78466c75dadf12514090fae74716358a310a339722c5425fb462eb30bfc1e4264e3586717a9647d91f4e07c6250dfb8e3d2de9004f48f5 truffleruby-24.2.0-macos-aarch64.tar.gz=81df31324c5f51650d8d321e3119672c90bd19c6abf61ded977e978cee387a69ee0eeb1ed6dcec6ca371baefe3df64e09bf1fb5eb06c61725557d7bdc62d6a5b
rvm/rvm
3edeb80af7939bf04640269b27bd52bcf88f3c1d
Add Ruby 3.3.8 (#5560)
diff --git a/CHANGELOG.md b/CHANGELOG.md index e8e253f..21c4b24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,592 +1,593 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Use OpenSSL 3 for Ruby 3.2 and 3.3 [\#5480](https://github.com/rvm/rvm/pull/5480) * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) * Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) * Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) * Install `libncurses-dev` instead of `libncurses5-dev` on newer Debian and Ubuntu versions [\#5477](https://github.com/rvm/rvm/pull/5477) * Use `zlib-ng-compat` packages for Fedora 40+ [\#5479](https://github.com/rvm/rvm/pull/5479) * Detect core count on ARM-based machines [\#5498](https://github.com/rvm/rvm/pull/5498) * Fix requirement check for Ubuntu [\#5500](https://github.com/rvm/rvm/pull/5500) * Update location of homebrew install script on osx [\#5505](https://github.com/rvm/rvm/pull/5505) * Fix detection of Homebrew's write permissions when using Workbrew [\#5528](https://github.com/rvm/rvm/pull/5528) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) * 3.3.3 [\#5474](https://github.com/rvm/rvm/pull/5474) * 3.3.4 [\#5488](https://github.com/rvm/rvm/pull/5488) * 3.2.5 [\#5490](https://github.com/rvm/rvm/pull/5490) * 3.3.5 [\#5499](https://github.com/rvm/rvm/pull/5499) * 3.2.6, 3.3.6 [\#5513](https://github.com/rvm/rvm/pull/5513) * 3.4.0, 3.4.1 [\#5533](https://github.com/rvm/rvm/pull/5533) * 3.3.7 [\#5540](https://github.com/rvm/rvm/pull/5540) * 3.2.7 [\#5544](https://github.com/rvm/rvm/pull/5544) * 3.4.2 [\#5549](https://github.com/rvm/rvm/pull/5549) * 3.1.6, 3.1.7, 3.2.8 [\#5558](https://github.com/rvm/rvm/pull/5558) +* 3.3.8 [\#5560](https://github.com/rvm/rvm/pull/5560) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) * 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1, 24.0.2, 24.1.0, 24.1.1, 24.1.2, 24.2.0 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.3.15.0 [\#5482](https://github.com/rvm/rvm/pull/5482) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) * 9.4.8.0 [\#5484](https://github.com/rvm/rvm/pull/5484) * 9.4.9.0 [\#5512](https://github.com/rvm/rvm/pull/5512) * 9.4.10.0 [\#5538](https://github.com/rvm/rvm/pull/5538) * 9.4.11.0 [\#5541](https://github.com/rvm/rvm/pull/5541) * 9.4.12.0 [\#5548](https://github.com/rvm/rvm/pull/5548) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) * 3.1.6, 3.2.5, 3.3.2, 3.3.3 and 3.3.4 [\#5491](https://github.com/rvm/rvm/pull/5491) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 24.04 (Noble Numbat) x64 binaries * 3.2.6 and 3.3.6 [\#5529](https://github.com/rvm/rvm/pull/5529) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) #### Upgraded Ruby interpreters: * Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159), 2.5.0-preview1 [\#4204](https://github.com/rvm/rvm/pull/4204), 2.2.9, 2.3.6, 2.4.3 and 2.5.0-rc1 [\#4261](https://github.com/rvm/rvm/pull/4261), 2.5.0 [\#4265](https://github.com/rvm/rvm/pull/4265), 2.6.0-preview1 [\#4317](https://github.com/rvm/rvm/pull/4317), 2.2.10, 2.3.7, 2.4.4, 2.5.1 [\#4340](https://github.com/rvm/rvm/pull/4340) and 2.6.0-preview2[\#4395](https://github.com/rvm/rvm/pull/4395) * Add support for Rubinius 3.85-3.100 * Add support for JRuby 9.1.14.0 [\#4224](https://github.com/rvm/rvm/pull/4224), 9.1.15.0 [\#4258](https://github.com/rvm/rvm/pull/4258), 9.1.16.0 [\#4316](https://github.com/rvm/rvm/pull/4316), 9.1.17.0 [\#4366](https://github.com/rvm/rvm/pull/4366), 9.2.0.0 [\#4390](https://github.com/rvm/rvm/pull/4390) * Add support for mruby 1.4.0 [\#4286](https://github.com/rvm/rvm/pull/4286) * Add support for MagLev 1.1* and 1.2Alpha-1.2Alpha4 [\#4289](https://github.com/rvm/rvm/pull/4289) * Add support for RubyGems 2.6.14 [\#4205](https://github.com/rvm/rvm/pull/4205), 2.7.0-2.7.4 [\#4276](https://github.com/rvm/rvm/issues/4276) and 2.7.5-6 #### Binaries: * Ubuntu 16.04 x64 binaries for Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4362](https://github.com/rvm/rvm/issues/4362), 2.2.9, 2.3.6 and 2.4.3 [\#4259](https://github.com/rvm/rvm/issues/4259), 2.2.8, 2.3.5 and 2.4.2 [\#4161](https://github.com/rvm/rvm/issues/4161), 2.5.0 [\#4272](https://github.com/rvm/rvm/pull/4272) * Ubuntu 17.04 for Ruby 2.1.\*, 2.2.\* [\#4233](https://github.com/rvm/rvm/pull/4233) ## [1.29.3](https://github.com/rvm/rvm/releases/tag/1.29.3) 10 September 2017 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.2...1.29.3) #### New features: * Add RVM commands missing in bash shell completion [\#4078](https://github.com/rvm/rvm/pull/4078) * Railsexpress patches for 2.3.4, 2.3-head [\#4084](https://github.com/rvm/rvm/pull/4084), 2.2.5 and 2.2.6 [\#4153](https://github.com/rvm/rvm/pull/4153) * Update `gem-wrappers` to 1.3.0: Show warnings when the target binary is missing or is not executable [gem-wrappers \#9](https://github.com/rvm/gem-wrappers/issues/9) * Detect Zorin OS as Ubuntu [\#4140](https://github.com/rvm/rvm/issues/4140) #### Bug fixes: * Infinite loop in `gemset_create` [\#4102](https://github.com/rvm/rvm/issues/4102) * Command not found `__rvm_remote_version` error [\#4085](https://github.com/rvm/rvm/pull/4085) * Fix path of version script in `environment` [\#4117](https://github.com/rvm/rvm/pull/4117) * Define `cd()`, `pushd()` and `popd()` properly when using zsh [\#4132](https://github.com/rvm/rvm/pull/4132) * Update gem-wrappers to 1.3.1: Avoid warnings for missing ruby binaries [\#4104](https://github.com/rvm/rvm/issues/4104) * Handles :engine=> and :engine_version=> in Gemfile * Makes $rvm_ruby_string is not installed searchable by adding a fixed keyword * Correctly quotes suggested install command * Fix path to version script in rvm-installer [\#4134](https://github.com/rvm/rvm/pull/4134) * Fix rvm autolibs status, fix [\#4123](https://github.com/rvm/rvm/issues/4123) * Ruby 2.3.x and older are not compatible with OpenSSL 1.1.x on Arch [\#4006](https://github.com/rvm/rvm/issues/4006) * Allow comments after ruby directive in Gemfile [\#4056](https://github.com/rvm/rvm/issues/4056) * Ruby 2.3/4 compilation fix for GCC 7 [\#4080](https://github.com/rvm/rvm/issues/4080) [\#4115](https://github.com/rvm/rvm/issues/4115) * Add warning for sudo users [\#4009](https://github.com/rvm/rvm/issues/4009) * Allows running RVM shell function in Bash with `set -o nounset` [\#4013](https://github.com/rvm/rvm/issues/4013) diff --git a/config/known b/config/known index 61fa3c3..1cb25ef 100644 --- a/config/known +++ b/config/known @@ -1,81 +1,81 @@ # MRI Rubies [ruby-]1.8.6[-p420] [ruby-]1.8.7[-head] # security released on head [ruby-]1.9.1[-p431] [ruby-]1.9.2[-p330] [ruby-]1.9.3[-p551] [ruby-]2.0.0[-p648] [ruby-]2.1[.10] [ruby-]2.2[.10] [ruby-]2.3[.8] [ruby-]2.4[.10] [ruby-]2.5[.9] [ruby-]2.6[.10] [ruby-]2.7[.8] [ruby-]3.0[.7] [ruby-]3.1[.7] [ruby-]3.2[.8] -[ruby-]3.3[.7] +[ruby-]3.3[.8] [ruby-]3[.4.2] ruby-head # for forks use: rvm install ruby-head-<name> --url https://github.com/github/ruby.git --branch 2.2 # JRuby jruby-1.6[.8] jruby-1.7[.27] jruby-9.1[.17.0] jruby-9.2[.21.0] jruby-9.3[.15.0] jruby[-9.4.12.0] jruby-head # Rubinius rbx-1[.4.3] rbx-2.3[.0] rbx-2.4[.1] rbx-2[.5.8] rbx-3[.107] rbx-4[.20] rbx-5[.0] rbx-head # TruffleRuby truffleruby[-24.2.0] # Opal opal # Minimalistic ruby implementation - ISO 30170:2012 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1[.4.1] mruby-2.0.1 mruby-2[.1.1] mruby[-head] # Ruby Enterprise Edition ree-1.8.6 ree[-1.8.7][-2012.02] # Topaz topaz # MagLev maglev-1.0.0 maglev-1.1[RC1] maglev[-1.2Alpha4] maglev-head # Mac OS X Snow Leopard Or Newer macruby-0.10 macruby-0.11 macruby[-0.12] macruby-nightly macruby-head # IronRuby ironruby[-1.1.3] ironruby-head diff --git a/config/known_strings b/config/known_strings index ae3848d..4a7edd1 100644 --- a/config/known_strings +++ b/config/known_strings @@ -19,566 +19,567 @@ jruby-1.1RC3 jruby-1.1 jruby-1.1.1 jruby-1.1.2 jruby-1.1.3 jruby-1.1.4 jruby-1.1.5 jruby-1.1.6RC1 jruby-1.1.6 jruby-1.2.0RC1 jruby-1.2.0RC2 jruby-1.2.0 jruby-1.3.0RC1 jruby-1.3.0RC2 jruby-1.3.0 jruby-1.3.1 jruby-1.4.0RC1 jruby-1.4.0RC2 jruby-1.4.0RC3 jruby-1.4.0 jruby-1.4.1 jruby-1.5.0.RC1 jruby-1.5.0.RC2 jruby-1.5.0.RC3 jruby-1.5.0 jruby-1.5.1 jruby-1.5.2 jruby-1.5.3 jruby-1.5.4 jruby-1.5.5 jruby-1.5.6 jruby-1.6.0.RC1 jruby-1.6.0.RC2 jruby-1.6.0.RC3 jruby-1.6.0 jruby-1.6.1 jruby-1.6.2 jruby-1.6.3 jruby-1.6.4 jruby-1.6.5 jruby-1.6.5.1 jruby-1.6.7 jruby-1.6.7.2 jruby-1.6.8 jruby-1.7.0.preview1 jruby-1.7.0.preview2 jruby-1.7.0.RC1 jruby-1.7.0.RC2 jruby-1.7.0 jruby-1.7.1 jruby-1.7.2 jruby-1.7.3 jruby-1.7.4 jruby-1.7.5 jruby-1.7.6 jruby-1.7.7 jruby-1.7.8 jruby-1.7.9 jruby-1.7.10 jruby-1.7.11 jruby-1.7.12 jruby-1.7.13 jruby-1.7.14 jruby-1.7.15 jruby-1.7.16 jruby-1.7.16.1 jruby-1.7.16.2 jruby-1.7.17 jruby-1.7.18 jruby-1.7.19 jruby-1.7.20 jruby-1.7.20.1 jruby-1.7.21 jruby-1.7.22 jruby-1.7.23 jruby-1.7.24 jruby-1.7.25 jruby-1.7.26 jruby-1.7.27 jruby-9.0.0.0.pre1 jruby-9.0.0.0.pre2 jruby-9.0.0.0.rc1 jruby-9.0.0.0.rc2 jruby-9.0.0.0 jruby-9.0.1.0 jruby-9.0.2.0 jruby-9.0.3.0 jruby-9.0.4.0 jruby-9.0.5.0 jruby-9.1.0.0 jruby-9.1.1.0 jruby-9.1.2.0 jruby-9.1.3.0 jruby-9.1.4.0 jruby-9.1.5.0 jruby-9.1.6.0 jruby-9.1.7.0 jruby-9.1.8.0 jruby-9.1.9.0 jruby-9.1.10.0 jruby-9.1.11.0 jruby-9.1.12.0 jruby-9.1.13.0 jruby-9.1.14.0 jruby-9.1.15.0 jruby-9.1.16.0 jruby-9.1.17.0 jruby-9.2.0.0 jruby-9.2.1.0 jruby-9.2.2.0 jruby-9.2.3.0 jruby-9.2.4.0 jruby-9.2.4.1 jruby-9.2.5.0 jruby-9.2.6.0 jruby-9.2.7.0 jruby-9.2.8.0 jruby-9.2.9.0 jruby-9.2.10.0 jruby-9.2.11.0 jruby-9.2.11.1 jruby-9.2.12.0 jruby-9.2.13.0 jruby-9.2.14.0 jruby-9.2.15.0 jruby-9.2.16.0 jruby-9.2.17.0 jruby-9.2.18.0 jruby-9.2.19.0 jruby-9.2.20.0 jruby-9.2.20.1 jruby-9.2.21.0 jruby-9.3.0.0 jruby-9.3.1.0 jruby-9.3.2.0 jruby-9.3.3.0 jruby-9.3.4.0 jruby-9.3.6.0 jruby-9.3.7.0 jruby-9.3.8.0 jruby-9.3.9.0 jruby-9.3.10.0 jruby-9.3.11.0 jruby-9.3.13.0 jruby-9.3.14.0 jruby-9.3.15.0 jruby-9.4.0.0 jruby-9.4.1.0 jruby-9.4.2.0 jruby-9.4.3.0 jruby-9.4.4.0 jruby-9.4.5.0 jruby-9.4.6.0 jruby-9.4.7.0 jruby-9.4.8.0 jruby-9.4.9.0 jruby-9.4.10.0 jruby-9.4.11.0 jruby-9.4.12.0 macruby-0.12 maglev-1.0.0 maglev-1.1beta maglev-1.1beta2 maglev-1.1RC1 maglev-1.2Alpha maglev-1.2Alpha2 maglev-1.2Alpha3 maglev-1.2Alpha4 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1.4.0 mruby-1.4.1 mruby-2.0.0 mruby-2.0.1 mruby-2.1.0-rc mruby-2.1.0 mruby-2.1.1-rc mruby-2.1.1-rc2 mruby-2.1.1 rbx-1.0.0-20100514 rbx-1.0.1-20100603 rbx-1.1.0-20100923 rbx-1.1.1-20101116 rbx-1.2.0-20101221 rbx-1.2.1-20110215 rbx-1.2.2-20110222 rbx-1.2.3-20110315 rbx-1.2.4-20110705 rbx-1.3.2 rbx-1.3.3 rbx-1.4.1 rbx-1.4.3 rbx-2.0.0 rbx-2.1.0 rbx-2.1.1 rbx-2.2.0 rbx-2.2.2 rbx-2.2.3 rbx-2.2.4 rbx-2.2.5 rbx-2.2.6 rbx-2.2.7 rbx-2.2.8 rbx-2.2.9 rbx-2.2.10 rbx-2.3.0 rbx-2.4.0 rbx-2.4.1 rbx-2.5.0 rbx-2.5.1 rbx-2.5.2 rbx-2.5.3 rbx-2.5.4 rbx-2.5.5 rbx-2.5.6 rbx-2.5.7 rbx-2.5.8 rbx-3.70 rbx-3.71 rbx-3.72 rbx-3.73 rbx-3.74 rbx-3.75 rbx-3.76 rbx-3.77 rbx-3.78 rbx-3.79 rbx-3.80 rbx-3.81 rbx-3.82 rbx-3.83 rbx-3.84 rbx-3.85 rbx-3.86 rbx-3.87 rbx-3.88 rbx-3.89 rbx-3.90 rbx-3.91 rbx-3.92 rbx-3.93 rbx-3.94 rbx-3.95 rbx-3.96 rbx-3.97 rbx-3.98 rbx-3.99 rbx-3.100 rbx-3.101 rbx-3.102 rbx-3.103 rbx-3.104 rbx-3.105 rbx-3.106 rbx-3.107 rbx-4.0 rbx-4.1 rbx-4.2 rbx-4.3 rbx-4.4 rbx-4.5 rbx-4.6 rbx-4.7 rbx-4.8 rbx-4.9 rbx-4.10 rbx-4.11 rbx-4.12 rbx-4.13 rbx-4.14 rbx-4.15 rbx-4.16 rbx-4.17 rbx-4.18 rbx-4.19 rbx-4.20 rbx-5.0 ree-1.8.6-20080507 ree-1.8.6-20080621 ree-1.8.6-20080623 ree-1.8.6-20080624 ree-1.8.6-20080709 ree-1.8.6-20080810 ree-1.8.6-20081205 ree-1.8.6-20081215 ree-1.8.6-20090113 ree-1.8.6-20090201 ree-1.8.6-20090421 ree-1.8.6-20090520 ree-1.8.6-20090610 ree-1.8.6-20090928 ree-1.8.7-2009.10 ree-1.8.7-2010.01 ree-1.8.7-2010.02 ree-1.8.7-2011.01 ree-1.8.7-2011.02 ree-1.8.7-2011.03 ree-1.8.7-2011.12 ree-1.8.7-2012.02 ruby-1.8.5-p115 ruby-1.8.5-p231 ruby-1.8.6-p286 ruby-1.8.6-p287 ruby-1.8.6-p369 ruby-1.8.6-p383 ruby-1.8.6-p398 ruby-1.8.6-p399 ruby-1.8.6-p420 ruby-1.8.7-p160 ruby-1.8.7-p174 ruby-1.8.7-p248 ruby-1.8.7-p249 ruby-1.8.7-p299 ruby-1.8.7-p302 ruby-1.8.7-p330 ruby-1.8.7-p334 ruby-1.8.7-p352 ruby-1.8.7-p357 ruby-1.8.7-p358 ruby-1.8.7-p370 ruby-1.8.7-p371 ruby-1.8.7-p374 ruby-1.9.0 ruby-1.9.1-p129 ruby-1.9.1-p243 ruby-1.9.1-p376 ruby-1.9.1-p378 ruby-1.9.1-p429 ruby-1.9.1-p431 ruby-1.9.2-p0 ruby-1.9.2-p136 ruby-1.9.2-p180 ruby-1.9.2-p290 ruby-1.9.2-p318 ruby-1.9.2-p320 ruby-1.9.2-p330 ruby-1.9.3-preview1 ruby-1.9.3-rc1 ruby-1.9.3-p0 ruby-1.9.3-p125 ruby-1.9.3-p194 ruby-1.9.3-p286 ruby-1.9.3-p327 ruby-1.9.3-p362 ruby-1.9.3-p374 ruby-1.9.3-p385 ruby-1.9.3-p392 ruby-1.9.3-p429 ruby-1.9.3-p448 ruby-1.9.3-p484 ruby-1.9.3-p545 ruby-1.9.3-p547 ruby-1.9.3-p550 ruby-1.9.3-p551 ruby-2.0.0-preview1 ruby-2.0.0-preview2 ruby-2.0.0-rc1 ruby-2.0.0-rc2 ruby-2.0.0-p0 ruby-2.0.0-p195 ruby-2.0.0-p247 ruby-2.0.0-p353 ruby-2.0.0-p451 ruby-2.0.0-p481 ruby-2.0.0-p576 ruby-2.0.0-p594 ruby-2.0.0-p598 ruby-2.0.0-p643 ruby-2.0.0-p645 ruby-2.0.0-p647 ruby-2.0.0-p648 ruby-2.1.0-preview1 ruby-2.1.0-preview2 ruby-2.1.0-rc1 ruby-2.1.0 ruby-2.1.1 ruby-2.1.2 ruby-2.1.3 ruby-2.1.4 ruby-2.1.5 ruby-2.1.6 ruby-2.1.7 ruby-2.1.8 ruby-2.1.9 ruby-2.1.10 ruby-2.2.0-preview1 ruby-2.2.0-preview2 ruby-2.2.0-rc1 ruby-2.2.0 ruby-2.2.1 ruby-2.2.2 ruby-2.2.3 ruby-2.2.4 ruby-2.2.5 ruby-2.2.6 ruby-2.2.7 ruby-2.2.8 ruby-2.2.9 ruby-2.2.10 ruby-2.3.0-preview1 ruby-2.3.0-preview2 ruby-2.3.0 ruby-2.3.1 ruby-2.3.2 ruby-2.3.3 ruby-2.3.4 ruby-2.3.5 ruby-2.3.6 ruby-2.3.7 ruby-2.3.8 ruby-2.4.0-preview1 ruby-2.4.0-preview2 ruby-2.4.0-preview3 ruby-2.4.0-rc1 ruby-2.4.0 ruby-2.4.1 ruby-2.4.2 ruby-2.4.3 ruby-2.4.4 ruby-2.4.5 ruby-2.4.6 ruby-2.4.7 ruby-2.4.8 ruby-2.4.9 ruby-2.4.10 ruby-2.5.0-preview1 ruby-2.5.0-rc1 ruby-2.5.0 ruby-2.5.1 ruby-2.5.2 ruby-2.5.3 ruby-2.5.4 ruby-2.5.5 ruby-2.5.6 ruby-2.5.7 ruby-2.5.8 ruby-2.5.9 ruby-2.6.0-preview1 ruby-2.6.0-preview2 ruby-2.6.0-preview3 ruby-2.6.0-rc1 ruby-2.6.0-rc2 ruby-2.6.0 ruby-2.6.1 ruby-2.6.2 ruby-2.6.3 ruby-2.6.4 ruby-2.6.5 ruby-2.6.6 ruby-2.6.7 ruby-2.6.8 ruby-2.6.9 ruby-2.6.10 ruby-2.7.0-preview1 ruby-2.7.0-preview2 ruby-2.7.0-preview3 ruby-2.7.0-rc1 ruby-2.7.0-rc2 ruby-2.7.0 ruby-2.7.1 ruby-2.7.2 ruby-2.7.3 ruby-2.7.4 ruby-2.7.5 ruby-2.7.6 ruby-2.7.7 ruby-2.7.8 ruby-3.0.0-preview1 ruby-3.0.0-preview2 ruby-3.0.0-rc1 ruby-3.0.0 ruby-3.0.1 ruby-3.0.2 ruby-3.0.3 ruby-3.0.4 ruby-3.0.5 ruby-3.0.6 ruby-3.0.7 ruby-3.1.0-preview1 ruby-3.1.0 ruby-3.1.1 ruby-3.1.2 ruby-3.1.3 ruby-3.1.4 ruby-3.1.5 ruby-3.1.6 ruby-3.1.7 ruby-3.2.0-preview1 ruby-3.2.0-preview2 ruby-3.2.0-preview3 ruby-3.2.0-rc1 ruby-3.2.0 ruby-3.2.1 ruby-3.2.2 ruby-3.2.3 ruby-3.2.4 ruby-3.2.5 ruby-3.2.6 ruby-3.2.7 ruby-3.2.8 ruby-3.3.0-preview1 ruby-3.3.0-preview2 ruby-3.3.0-preview3 ruby-3.3.0 ruby-3.3.1 ruby-3.3.2 ruby-3.3.3 ruby-3.3.4 ruby-3.3.5 ruby-3.3.6 ruby-3.3.7 +ruby-3.3.8 ruby-3.4.0-preview1 ruby-3.4.0 ruby-3.4.1 ruby-3.4.2 truffleruby-1.0.0-rc2 truffleruby-1.0.0-rc3 truffleruby-1.0.0-rc5 truffleruby-1.0.0-rc6 truffleruby-1.0.0-rc7 truffleruby-1.0.0-rc8 truffleruby-1.0.0-rc9 truffleruby-1.0.0-rc10 truffleruby-1.0.0-rc11 truffleruby-1.0.0-rc12 truffleruby-1.0.0-rc13 truffleruby-1.0.0-rc14 truffleruby-1.0.0-rc15 truffleruby-1.0.0-rc16 truffleruby-19.0.0 truffleruby-19.0.2 truffleruby-19.1.0 truffleruby-19.1.1 truffleruby-19.2.0 truffleruby-19.2.0.1 truffleruby-19.2.1 truffleruby-19.3.0 truffleruby-19.3.0.2 truffleruby-19.3.1 truffleruby-20.0.0 truffleruby-20.1.0 truffleruby-20.2.0 truffleruby-20.3.0 truffleruby-21.0.0 truffleruby-21.1.0 truffleruby-21.2.0 truffleruby-21.2.0.1 truffleruby-21.3.0 truffleruby-22.0.0.2 truffleruby-22.1.0 truffleruby-22.2.0 truffleruby-22.3.0 truffleruby-22.3.1 truffleruby-23.0.0-preview1 truffleruby-23.0.0 truffleruby-23.1.0 truffleruby-23.1.1 truffleruby-23.1.2 truffleruby-24.0.0 truffleruby-24.0.1 truffleruby-24.0.2 truffleruby-24.1.0 truffleruby-24.1.1 truffleruby-24.1.2 truffleruby-24.2.0 diff --git a/config/md5 b/config/md5 index 9e6d770..2d396c2 100644 --- a/config/md5 +++ b/config/md5 @@ -1294,779 +1294,780 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=9c3775365cab8e1e82aa19e87b9711dd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=cce17e87cc9bfcb6b995e5f1996c423c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=b80a93441133b85258d97085aeead20a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=74c45b08a2dc28871ff158b608cc8685 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=469b22a4b12f23e86ac25b3d797ff559 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=ea7767cbfacd744813ccaedd1b4e0013 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=0d9f69db1bd665c9e5c9592b483b31a1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=068f5c90b5b381cd58d8804ca2b3be64 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=6181192273efab4aabaa8628fc83c7be https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=fa690cb7132706fb25dfc625e949e96a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=c443f32cd4c91fb37ff79bd86906e1bc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=6fa3edab1bbacf7328074a7fba22be50 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=a950bc4af16446fce2f9266e95629bdb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=d9bce275c2f36dbde8a6c25f9fa10c2e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=6486c5ce9ec697039b0bb36d2bf18a0d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=79f0927984b8e6e7934b34bdb2a3e5e5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=214ac1e49a75291a68c63134bc246a8a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=94a39d1b226350362666f6305866b20b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=4db7d99d775a7f24bb55c6053d4eb864 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=c0db831a97b8427e0777adeaebf7a9d8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=830b4845fbfd45df75758e311a013ffc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=3fc39c824b2060a3a2766ca01037dd15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=0b395f3884c78c6938896ff253c5251b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=2be294a056a45a50262d1796906f8860 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=0270733b808489a91e41f73d9fe971e9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=33db4a687e4943faf6c2853179b67935 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=dea6663b2c113190e9b99a6dcedb3aa0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=835e563bfbe3c8311326660a51f3394c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=66e3c1e1140300c8236c13e3178cb8ab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=07b12bd2a7d8242c34d824882e654c22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=fe12c0e211f90076b51c7916c830971f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=65ab3105b0c6d5e8a2e9977a3ab7ed94 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=08547ad8e760e0776c74401ae5bbd8e5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=631b4ea065d18df96c6ccbc141904bb3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=03a67e234d886f3c698c1571e42cc7a6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=0ded0cb8ce18a846d71d7e04d24c2e78 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=5251aed0ba4d8349413d6bf4c261bea3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=f09694c4f23d7625f72606bce0efb710 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=340db3acb58829b51e4a7ac1c77246d4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1bd86cb46a9e6c40c285258879a3d59 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=d86b2a1e9721b9459e1283006e03fa92 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.2.6.tar.bz2=7d7e84912bb4d1f9915bb391fac54694 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.3.6.tar.bz2=3148fa25b5cd308156c567181ccf5ac3 ironruby-1.0.zip=7a92888837b3507355ed391dbfc0ab83 ironruby-1.1.3.zip=4f2af6253a459cc054d6c55956e514a9 jruby-bin-1.3.1.tar.gz=4a95db8fc93ed7219663fbede98b6117 jruby-bin-1.4.tar.gz=54dba9a88b2b3f99ac86a79828d0178b jruby-bin-1.4.0.tar.gz=f37322c18e9134e91e064aebb4baa4c7 jruby-bin-1.4.0.zip=3a9c8a5115a679da7d7a49a56d57d4c0 jruby-bin-1.4.1.tar.gz=a4aa8c43d1b9ffd9dbc6cb738d55a034 jruby-bin-1.5.0.tar.gz=ee2b4e326e8b87858e5dd0c8e94102e6 jruby-bin-1.5.1.tar.gz=74251383e08e8c339cacc35a7900d3af jruby-bin-1.5.2.tar.gz=d239deb9a108a6abbfbd6cb79cf8255b jruby-bin-1.5.3.tar.gz=ccb0b2dbc300d8dd4ad1bd4da48b8320 jruby-bin-1.5.5.tar.gz=8e00f7d40cbf221f733d6f7a15784e9a jruby-bin-1.5.6.tar.gz=94033a36517645b7a7ec781a3507c654 jruby-bin-1.6.0.tar.gz=f4d7e339dfc0fbaef5b878d1c0a66fbe jruby-bin-1.6.2.tar.gz=a46f978c24a208717023bb4b8995c678 jruby-bin-1.6.3.tar.gz=694b80e4eea784cdc1eb39fb1e3132c9 jruby-bin-1.6.4.tar.gz=0e96b6f4d1c6f12b5ac480cd7ab7da78 jruby-bin-1.6.5.tar.gz=54354082673bd115f945890dc6864413 jruby-bin-1.6.5.1.tar.gz=246a7aa2b7d7e6e9e8a0c2e282cbcfd0 jruby-bin-1.6.7.tar.gz=fd1b8d7389aa92da69ea6efb4782e40a jruby-bin-1.6.7.2.tar.gz=1e520f1b5130114464e5f1950cb24774 jruby-bin-1.6.8.tar.gz=a76ac5845640e4a1ebdfa74421efc935 jruby-bin-1.7.0.preview1.tar.gz=7b9e5e1cd0d818d0199086d948f948b4 jruby-bin-1.7.0.preview2.tar.gz=e8f1623759590aadbf49e4cc53f1cb61 jruby-bin-1.7.0.RC1.tar.gz=bdddcee3d126cddd9a85b5a066a7e25e jruby-bin-1.7.0.RC2.tar.gz=ffe2dd61711f4574fed344af151e5de5 jruby-bin-1.7.0.tar.gz=21861e0ecdbf48cda713c8ade82fdddb jruby-bin-1.7.1.tar.gz=86e659863541d8b987cb7bfbe3b4cfb0 jruby-bin-1.7.2.tar.gz=6ec9293b6dffd1e8ee57e9b7c6d18cbe jruby-bin-1.7.3.tar.gz=f0adf8ccee6f6777f7ab8e5e1d7a1f47 jruby-bin-1.7.4.tar.gz=c6a56eae78db28dddba911ccd0848c32 jruby-bin-1.7.5.tar.gz=c2a28c43c8095127d4a4aee0cf9b1439 jruby-bin-1.7.6.tar.gz=5d10011516a3d3bde10209b60cfcc0ef jruby-bin-1.7.7.tar.gz=9d6df2188fa57f12bf6fde4e4b2e3f09 jruby-bin-1.7.8.tar.gz=1e68f39d6dba7b6d9db81e24bb6b7d0a jruby-bin-1.7.9.tar.gz=b2e44f1f44837c07068ee453a89f4b55 jruby-bin-1.7.10.tar.gz=c84fe9245a73f9cd29f56343b7d2e39a jruby-bin-1.7.11.tar.gz=d6e6ab72426fa7fdc9ae55950980d877 jruby-bin-1.7.12.tar.gz=2073aa6dfc7c701ef7c3d3143d181582 jruby-bin-1.7.14.tar.gz=bc33284f27a3508a70d2ade100a2f6bd jruby-bin-1.7.15.tar.gz=92e63cffcb86842511aeeed95bdf96ed jruby-bin-1.7.16.tar.gz=92cb058d1a896257b5ac1c26dc433506 jruby-bin-1.7.16.1.tar.gz=eec2f0e03560bacf02a09c0096a99cad jruby-bin-1.7.16.2.tar.gz=cd31909b67239c5c6a795521fca5c239 jruby-bin-1.7.17.tar.gz=8b78ba1acdb718431f71c38287c07967 jruby-bin-1.7.18.tar.gz=aa7286140be0f6f60534ebffededc708 jruby-bin-1.7.19.tar.gz=bc38596757d8000d6ca4c4c3f8eacea6 jruby-bin-1.7.20.tar.gz=0c2adc160cb85c888b269e8ac4f886fc jruby-bin-1.7.21.tar.gz=bc91594072032023d146f330764d3274 jruby-bin-1.7.22.tar.gz=1da904bf41d362d0d0b366d9e781168f jruby-bin-1.7.23.tar.gz=41e3f45c28c94a275f9eeb22721da35d jruby-bin-1.7.25.tar.gz=fc43ead73f657f5261428923974fd605 jruby-bin-1.7.26.tar.gz=4ca60264a9560f37fdba8108543e72c2 jruby-bin-1.7.27.tar.gz=b98b0a2c52e885a868a2b60092e1cd3d jruby-bin-9.0.0.0.pre1.tar.gz=d5c8b30648348aa883f893d464d46bf1 jruby-bin-9.0.0.0.pre2.tar.gz=86994a9d7ed2cf318c75392623a3e6da jruby-bin-9.0.0.0.tar.gz=fe9036ea69bf23dc3b69cfc94adb5404 jruby-bin-9.0.1.0.tar.gz=a82bc640e0080b1d9a21d1477c8400e3 jruby-bin-9.0.3.0.tar.gz=828dd6c6dd18e5b186ccfd65753077bd jruby-bin-9.0.4.0.tar.gz=645bf4a1dcde3f19dc0fff75c8b4b685 jruby-bin-9.0.5.0.tar.gz=1d2dc649cbacbe26418ef3ba421018b1 jruby-bin-9.1.0.0.tar.gz=fe26e6308d006d35eb613cdd47d1dc99 jruby-bin-9.1.1.0.tar.gz=8356334270df07a214590d00a986837b jruby-bin-9.1.2.0.tar.gz=749bb917dde9666e365e12bbe776a5c2 jruby-bin-9.1.3.0.tar.gz=91c246cd623702032e88283565da5480 jruby-bin-9.1.4.0.tar.gz=5b80b78c09bf0cd4dcbcb9e1fe3e8b73 jruby-bin-9.1.5.0.tar.gz=e9b2cc44757db4cfbe7da79601d0169a jruby-bin-9.1.6.0.tar.gz=4092a89b01b55d1fb5498113f97ab0ca jruby-bin-9.1.7.0.tar.gz=b120c3eaeef7ff2aed3a57701e414e78 jruby-bin-9.1.8.0.tar.gz=0fdee002c56ec91dff1efffce205265c jruby-bin-9.1.9.0.tar.gz=170efc34297d7ac2a56bb1163e96b363 jruby-bin-9.1.10.0.tar.gz=b75e0d1a200e8f790d8bbc84f91e3002 jruby-bin-9.1.11.0.tar.gz=0502a14141da25a460ce197720bab4c3 jruby-bin-9.1.12.0.tar.gz=74bd7ae08c159fc62cb6f64845a868cc jruby-bin-9.1.13.0.tar.gz=6c642c8a2653a585779f453d8c843fd7 jruby-bin-9.1.14.0.tar.gz=a7e0ecd529690025d327c45744f60fa4 jruby-bin-9.1.15.0.tar.gz=01c29690324d7eb414fba66e4c009c9e jruby-bin-9.1.16.0.tar.gz=e64c3aa1310c272194fd1750b0b79fac jruby-bin-9.1.17.0.tar.gz=f28d1fcbb60e550f3abd839102ad0069 jruby-bin-9.2.0.0.tar.gz=bd476da4bed39ffcfff7116f448a5365 jruby-bin-9.2.1.0.tar.gz=4b78b0a40ca541556f5ee75a815e0be0 jruby-bin-9.2.2.0.tar.gz=be678559801be029fe233c33396e34d2 jruby-bin-9.2.3.0.tar.gz=79328ab1ed37d612da35271183e46bbd jruby-bin-9.2.4.0.tar.gz=f538f2be459f0f0e517a53446e78a354 jruby-bin-9.2.4.1.tar.gz=d373bbc2bd6caabfcc9914c4067e9d24 jruby-bin-9.2.5.0.tar.gz=14582fd6eee19610f0a7433ce5dd5ce4 jruby-bin-9.2.6.0.tar.gz=dba182ac9943b726b609ca61747c1835 jruby-bin-9.2.7.0.tar.gz=c0111b2cafa920df76284044e1aeedc7 jruby-bin-9.2.8.0.tar.gz=7d652b586a18f1c665289fd7e6edf4f5 jruby-bin-9.2.9.0.tar.gz=74b3451f79c13c2fc66c6dee69d46699 jruby-bin-9.2.10.0.tar.gz=e6ce97eae6e35b622c1b572f9297705b jruby-bin-9.2.11.0.tar.gz=22b003adfb03b253721cc85db248698f jruby-bin-9.2.11.1.tar.gz=687586132f7b649b1bdd7b823577c9d8 jruby-bin-9.2.12.0.tar.gz=cc7599837fbd0839cce7293577a34f2c jruby-bin-9.2.13.0.tar.gz=99df4eb89f88c7582bfe7c313daec7b4 jruby-bin-9.2.14.0.tar.gz=421c5b8146701177a738a0a691190018 jruby-bin-9.2.15.0.tar.gz=ba593f1de2c4e592a8ca9b9e903af457 jruby-bin-9.2.16.0.tar.gz=d8d954ee0ab6f4868c3fc63339660af9 jruby-bin-9.2.17.0.tar.gz=382fb3d9d2982efd5396f1a42e3fa6a1 jruby-bin-9.2.18.0.tar.gz=002ac95859a2176cb0a58d81d6e0fb14 jruby-bin-9.2.19.0.tar.gz=0961867a77838853f32ee72dbde7c00e jruby-bin-9.2.20.0.tar.gz=840876dd0ca0098452dd2667fe9dd7f4 jruby-bin-9.2.20.1.tar.gz=5856ed030f0d9e75d2384cf42f62a4de jruby-bin-9.2.21.0.tar.gz=9957c1d2bd9265144fe55f9f7093272a jruby-bin-9.3.0.0.tar.gz=501a3c975b3c9478b72d4b0cd37170b9 jruby-bin-9.3.1.0.tar.gz=201d3e483bf847f5c59f4b1f3bf594d5 jruby-bin-9.3.2.0.tar.gz=259c276f68a01495dda24407394a382d jruby-bin-9.3.3.0.tar.gz=cd49b81753048cee9c8ffdd2ce1cb3e2 jruby-bin-9.3.4.0.tar.gz=7292dd9a56155aa015ec08c03855b3fc jruby-bin-9.3.6.0.tar.gz=bc5a7b02be69fdf3f5584e8880fc7dcc jruby-bin-9.3.7.0.tar.gz=49b17b5cd7cf8bfb09d8f64147d992ef jruby-bin-9.3.8.0.tar.gz=6ea209b699a06944d0653d8048d8bfec jruby-bin-9.3.9.0.tar.gz=9a0f0a931346bc6ea34196a5c88002ec jruby-bin-9.3.10.0.tar.gz=83c9d776dfc8cf33bfa60f7e78077160 jruby-bin-9.3.11.0.tar.gz=6ccc04e658c49db19fc0c452db0f2931 jruby-bin-9.3.13.0.tar.gz=3f20268b494da900504e921507248183 jruby-bin-9.3.14.0.tar.gz=87a96fd3af448ec8fd5ca45c6469ecc9 jruby-bin-9.3.15.0.tar.gz=385fabe180b68fb8cd3743b315109e5f jruby-bin-9.4.0.0.tar.gz=d0136daa4910f6e6b21858260eb00fe2 jruby-bin-9.4.1.0.tar.gz=abe2669672ac973f1b41a4d3860eb7ae jruby-bin-9.4.2.0.tar.gz=486e50f3c74e7400e71631819fde91da jruby-bin-9.4.3.0.tar.gz=526006fefb3e5ffc5095ab5599cc38c6 jruby-bin-9.4.4.0.tar.gz=287b5c3a9b63ff93e49ae9dc0347263b jruby-bin-9.4.5.0.tar.gz=09c6fceb38d6c086af2e4d5f21f9fe65 jruby-bin-9.4.6.0.tar.gz=5e2fe4ed897d938332ee0d85d2aa60bc jruby-bin-9.4.7.0.tar.gz=a0633ca837efff62edca84ceae1f5515 jruby-bin-9.4.8.0.tar.gz=9f520a3a416b598b4e53916e7180b623 jruby-bin-9.4.9.0.tar.gz=b7a789e9ff1b87d0e8c7bda7fae31c16 jruby-bin-9.4.10.0.tar.gz=36d6d8d745e793580ec4b12caa257501 jruby-bin-9.4.11.0.tar.gz=46e632baba1068e17345c7d24fec4241 jruby-bin-9.4.12.0.tar.gz=c7a26b4bd2fde1064b1cc6bf67f2f645 libiconv-1.13.1.tar.gz=7ab33ebd26687c744a37264a330bbe9a MacRuby%200.5.zip=675454a8c7bc19d606d90a726e08427c MacRuby%200.6.zip=a80afd3700c88cf95c539fc63b272faf MacRuby%200.7.1.zip=e8245dcd03c0757dfae7e6fee913947a MacRuby%200.7.zip=0bb60588c9ec9b1517665743bb05132f MacRuby%200.8.zip=735ac0a70f539e00b5de6fbec09c2c5c MacRuby%200.9.zip=fa01345e8fbfee620bbac64743a45f69 MacRuby%200.10.zip=1662d13d2f73cfc26258598f6988dcbc MacRuby%200.11.zip=b0cc23d60484a07012bcad549cef6054 MacRuby%200.12.zip=e1c5fa1b007a1cdc38c527a47302bf5e MagLev-1.0.0.tar.gz=e02cb8ee04438451eb78df14f91a68a9 MagLev-1.1beta.tar.gz=d542c7af290ce3b588b57629906b19e9 MagLev-1.1beta2.tar.gz=0ef88d5d145611aef324cb51be0aaafd MagLev-1.1RC1.tar.gz=41f4a0994daf1e5271cbd0ebe57816f4 MagLev-1.2Alpha.tar.gz=5c7dd3acef9dbddc0829bb1daa087abb MagLev-1.2Alpha2.tar.gz=cbbeae109854a6bf107a747a93fd478b MagLev-1.2Alpha3.tar.gz=b7470518f2b697eb1a5a39eff9b6d749 MagLev-1.2Alpha4.tar.gz=d54f04a611ce838b9d7009627065b7ca mruby-1.0.0.tar.gz=d9aec6a20fc1add65ee07ff6cf0e1ef2 mruby-1.1.0.tar.gz=60d75ea704c9285f3c80b3ad1d2b68de mruby-1.2.0.tar.gz=b5a3b7962d9db8cb8fb8105aa914d16c mruby-1.3.0.tar.gz=9714dd2804064d0043e099b7211d72b9 mruby-1.4.0.tar.gz=25efc35511070454074b36863c4d5b5e mruby-1.4.1.tar.gz=b40bf09af3f4c6e2bc443b9ac803a3ad mruby-2.0.0.tar.gz=b86c6a1dd86cb4ebe51e3fe38964a830 mruby-2.0.1.tar.gz=15b426a8a94a610c45414578786d05e3 mruby-2.1.0-rc.tar.gz=58a85fcb102d72900a25190da670e01d mruby-2.1.0.tar.gz=c01a4bbf62e6f5765c70b8813e0ce7da mruby-2.1.1-rc.tar.gz=809edd80e680855e7c4cf3c569972f28 mruby-2.1.1-rc2.tar.gz=24879fa5eb587f9415f03f8f3701842e mruby-2.1.1.tar.gz=c0ee4a112695046b9e4f177e31096d6c ncurses.tar.gz=cce05daf61a64501ef6cd8da1f727ec6 openssl-0.9.8k.tar.gz=e555c6d58d276aec7fdc53363e338ab3 openssl-0.9.8n.tar.gz=076d8efc3ed93646bd01f04e23c07066 openssl-1.0.1c.tar.gz=ae412727c8c15b67880aef7bd2999b2e openssl-1.0.1i.tar.gz=c8dc151a671b9b92ff3e4c118b174972 pkg-config-0.23.tar.gz=d922a88782b64441d06547632fd85744 readline-5.2.tar.gz=e39331f32ad14009b9ff49cc10c5e751 readline-6.0.tar.gz=b7f65a48add447693be6e86f04a63019 readline-6.2.tar.gz=67948acb2ca081f23359d0256e9a271c release-2.0.0-rc1.zip=b05b5e3c2712a294e4b09ebf450c1bfe rubinius-1.0.0-20100514.tar.gz=b05f4e791d3712c5a50b3d210dac6eb0 rubinius-1.0.1-20100603.tar.gz=eb185703c7ae0c0210e8dcb7f783ee8e rubinius-1.1.0-20100923.tar.gz=e2ae16238b201de09975abe19da09ea9 rubinius-1.1.1-20101116.tar.gz=b39f618eeba37c3aff215da8bca55fd7 rubinius-1.2.0-20101221.tar.gz=4284c2660f1f648942de35d4fc871f70 rubinius-1.2.1-20110215.tar.gz=e4a5127480062fddddc7ce2860b3b813 rubinius-1.2.2-20110222.tar.gz=59124378fb7ee040e9ee4e4736d89fc0 rubinius-1.2.3-20110315.tar.gz=9782dab18c2dd440af6b76e8eb5bc0f0 rubinius-1.2.4-20110705.tar.gz=403c777d19b3553e9cb36701fe002c5e rubinius-1.3.2.tar.bz2=64801ad8dd4e5e4fcb74ff313fec0a69 rubinius-1.3.3.tar.bz2=79f1f860ed8242257bd7f3e88c81a197 rubinius-1.4.1.tar.bz2=76b840405d4b9303261c27cf15002386 rubinius-2.0.0.tar.bz2=62e379e044c822b81e7b20a27daf133e rubinius-2.1.0.tar.bz2=908053f38fd840c75a93aab7487c20a5 rubinius-2.1.1.tar.bz2=6b4df0caec5ea88373e113f97a3b4c72 rubinius-2.2.0.tar.bz2=f1fbc6f3baf1da5ad86b3858f30f3349 rubinius-2.2.2.tar.bz2=ac70d629ea43525d91e81f4ccf135299 rubinius-2.2.3.tar.bz2=d9978cf1a4e8f0310db63e49834f9837 rubinius-2.2.4.tar.bz2=c10699da85a8eb5861a37b29077213bd rubinius-2.2.5.tar.bz2=5996dc8529b2ffe5921c5e7020bee20e rubinius-2.2.6.tar.bz2=85339bb6dd525eee719edf0551868f56 rubinius-2.2.7.tar.bz2=de2e6f4c3bd9a90bcb89f2ea27ddee9e rubinius-2.2.8.tar.bz2=c4db1ffb8dbdf864240cabe8b7758b49 rubinius-2.2.9.tar.bz2=0bf87ba617fa989e47d20942410028af rubinius-2.2.10.tar.bz2=8680da7eb921e6f595a1d716915ca7e0 rubinius-2.3.0.tar.bz2=e003a30af6689c8198116b3405d09d8e rubinius-2.4.0.tar.bz2=62391a51f49820daa51463066c3ce007 rubinius-2.4.1.tar.bz2=7758721b6e848387c3943ddb9ebd9479 rubinius-2.5.0.tar.bz2=178baa1ad172df0801765ea93bc36d87 rubinius-2.5.1.tar.bz2=77e1b87dc357691ad44b561a5f45c188 rubinius-2.5.2.tar.bz2=e5973d6e0a16f0390dc2a7478db83ff5 rubinius-2.5.3.tar.bz2=b19709eb3fa9e05b3fa6a357b33e3b5b rubinius-2.5.4.tar.bz2=64587916e5d445ed9bc630017a04498e rubinius-2.5.5.tar.bz2=ef671bbab50cbe2f70f953c491311261 rubinius-2.5.6.tar.bz2=597e4b049f49966c646faf699856c1b9 rubinius-2.5.7.tar.bz2=9a7f404019bce9fc34a7af7feb7cbb74 rubinius-2.5.8.tar.bz2=a24520892cada1f660e719a25abf63e3 ruby-1.8.5-p115.tar.bz2=03955e3c367b9beb3efe144c9f00d689 ruby-1.8.5-p115.tar.gz=20ca6cc87eb077296806412feaac0356 ruby-1.8.5-p231.tar.bz2=327f5aa6573787432222e96195cffd1e ruby-1.8.5-p231.tar.gz=e900cf225d55414bffe878f00a85807c ruby-1.8.6-p286.tar.bz2=e6b6bf8f34370e433936adb7a7065e63 ruby-1.8.6-p286.tar.gz=797ea136fe43e4286c9362ee4516674e ruby-1.8.6-p287.tar.bz2=80b5f3db12531d36e6c81fac6d05dda9 ruby-1.8.6-p287.tar.gz=6ff3420094711266c3201a0c7c2faa38 ruby-1.8.6-p369.tar.bz2=c3c1f3dd0dfbd2e17a04e59c2f12cfc8 ruby-1.8.6-p369.tar.gz=8c140ae28b4c3947b92dfad69109d90b ruby-1.8.6-p383.tar.bz2=a48703cd982b9f0e3002700a50b0e88e ruby-1.8.6-p383.tar.gz=4f49544d4a4d0d34e9d86c41e853db2e ruby-1.8.6-p398.tar.bz2=fbd43dc44ee26be4d37e6bebbed6f8bd ruby-1.8.6-p398.tar.gz=736db5f56c2d9b0136e563d049249fa8 ruby-1.8.6-p399.tar.bz2=f77c307cb72fb8808b0e85af5d05cefc ruby-1.8.6-p399.tar.gz=c3d16cdd3c1ee8f3b7d1c399d4884e33 ruby-1.8.6-p420.tar.bz2=1c7a978e9ffd4f56dc2ad74bbd2c34f3 ruby-1.8.6-p420.tar.gz=ca1eee44f842e93b5098bc5a2bb9a40b ruby-1.8.7-p160.tar.bz2=f8ddb886b8a81cf005f53e9a9541091d ruby-1.8.7-p160.tar.gz=945398f97e2de6dd8ab6df68d10bb1a1 ruby-1.8.7-p174.tar.bz2=88c45aaf627b4404e5e4273cb03ba2ee ruby-1.8.7-p174.tar.gz=18dcdfef761a745ac7da45b61776afa5 ruby-1.8.7-p248.tar.bz2=37e19d46b7d4b845f57d3389084b94a6 ruby-1.8.7-p248.tar.gz=60a65374689ac8b90be54ca9c61c48e3 ruby-1.8.7-p249.tar.bz2=37200cc956a16996bbfd25bb4068f242 ruby-1.8.7-p249.tar.gz=d7db7763cffad279952eb7e9bbfc221c ruby-1.8.7-p299.tar.bz2=244439a87d75ab24170a9c2b451ce351 ruby-1.8.7-p299.tar.gz=43533980ee0ea57381040d4135cf9677 ruby-1.8.7-p302.tar.bz2=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p302.tar.gz=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p330.tar.bz2=2689719fb42c8cf0aa336f8c8933f413 ruby-1.8.7-p330.tar.gz=50a49edb787211598d08e756e733e42e ruby-1.8.7-p334.tar.bz2=2f14f604bf981bb938ab5fc8b09eb1a6 ruby-1.8.7-p334.tar.gz=aacb6ee5dfe2367682bba56af7f415b8 ruby-1.8.7-p352.tar.bz2=0c61ea41d1b1183b219b9afe97f18f52 ruby-1.8.7-p352.tar.gz=0c33f663a10a540ea65677bb755e57a7 ruby-1.8.7-p357.tar.bz2=3abd9e2a29f756a0d30c7bfca578cdeb ruby-1.8.7-p357.tar.gz=b2b8248ff5097cfd629f5b9768d1df82 ruby-1.8.7-p358.tar.bz2=de35f00997f4ccee3e22dff0f2d01b8a ruby-1.8.7-p370.tar.bz2=1e4c3194537dd8ff92e756993e55a29d ruby-1.8.7-p371.tar.bz2=c27526b298659a186bdb5107fcec2341 ruby-1.8.7-p371.tar.gz=653f07bb45f03d0bf3910491288764df ruby-1.8.7-p374.tar.bz2=83c92e2b57ea08f31187060098b2200b ruby-1.8.7-p374.tar.gz=b72a0bc5b824398537762e5272bbb8dc ruby-1.9.0.tar.bz2=17eb66ac3721340d21db352d8f5dec76 ruby-1.9.1-p129.tar.bz2=6fa62b20f72da471195830dec4eb2013 ruby-1.9.1-p129.tar.gz=c71f413514ee6341c627be2957023a5c ruby-1.9.1-p243.tar.bz2=66d4f8403d13623051091347764881a0 ruby-1.9.1-p243.tar.gz=515bfd965814e718c0943abf3dde5494 ruby-1.9.1-p376.tar.bz2=e019ae9c643c5efe91be49e29781fb94 ruby-1.9.1-p376.tar.gz=ebb20550a11e7f1a2fbd6fdec2a3e0a3 ruby-1.9.1-p378.tar.bz2=5922459622a23612eb9b68a3586cb5f8 ruby-1.9.1-p378.tar.gz=9fc5941bda150ac0a33b299e1e53654c ruby-1.9.1-p429.tar.bz2=09df32ae51b6337f7a2e3b1909b26213 ruby-1.9.1-p429.tar.gz=0f6d7630f26042e00bc59875755cf879 ruby-1.9.1-p431.tar.bz2=03179138ae95dbfae872ef49e9cc6da7 ruby-1.9.1-p431.tar.gz=23f28cffc007ed5ac72c8e9bec6837ce ruby-1.9.2-p0.tar.bz2=d8a02cadf57d2571cd4250e248ea7e4b ruby-1.9.2-p0.tar.gz=755aba44607c580fddc25e7c89260460 ruby-1.9.2-p136.tar.bz2=52958d35d1b437f5d9d225690de94c13 ruby-1.9.2-p136.tar.gz=6e17b200b907244478582b7d06cd512e ruby-1.9.2-p180.tar.bz2=68510eeb7511c403b91fe5476f250538 ruby-1.9.2-p180.tar.gz=0d6953820c9918820dd916e79f4bfde8 ruby-1.9.2-p290.tar.bz2=096758c3e853b839dc980b183227b182 ruby-1.9.2-p290.tar.gz=604da71839a6ae02b5b5b5e1b792d5eb ruby-1.9.2-p318.tar.bz2=be431c6cbfa27e3836a06c6315717747 ruby-1.9.2-p318.tar.gz=cc7bf1025128e1985882ae243f348802 ruby-1.9.2-p320.tar.bz2=b226dfe95d92750ee7163e899b33af00 ruby-1.9.2-p320.tar.gz=5ef5d9c07af207710bd9c2ad1cef4b42 ruby-1.9.2-p330.tar.bz2=8ba4aaf707023e76f80fc8f455c99858 ruby-1.9.2-p330.tar.gz=4b9330730491f96b402adc4a561e859a ruby-1.9.3-p0.tar.bz2=65401fb3194cdccd6c1175ab29b8fdb8 ruby-1.9.3-p0.tar.gz=8e2fef56185cfbaf29d0c8329fc77c05 ruby-1.9.3-p125.tar.bz2=702529a7f8417ed79f628b77d8061aa5 ruby-1.9.3-p125.tar.gz=e3ea86b9d3fc2d3ec867f66969ae3b92 ruby-1.9.3-p194.tar.bz2=2278eff4cfed3cbc0653bc73085caa34 ruby-1.9.3-p194.tar.gz=bc0c715c69da4d1d8bd57069c19f6c0e ruby-1.9.3-p286.tar.bz2=e76848a86606a4fd5dcf14fc4b4e755e ruby-1.9.3-p327.tar.bz2=7d602aba93f31ceef32800999855fbca ruby-1.9.3-p327.tar.gz=96118e856b502b5d7b3a4398e6c6e98c ruby-1.9.3-p362.tar.bz2=13c26ea368d88a560f07cc8c5eb4fa05 ruby-1.9.3-p374.tar.bz2=944e73eba9ee9e1f2647ff32ec0b14b2 ruby-1.9.3-p385.tar.bz2=5ec9aff670f4912b0f6f0e11e855ef6c ruby-1.9.3-p392.tar.bz2=a810d64e2255179d2f334eb61fb8519c ruby-1.9.3-p392.tar.gz=f689a7b61379f83cbbed3c7077d83859 ruby-1.9.3-p429.tar.bz2=c2b2de5ef15ea9b1aaa3152f9112af1b ruby-1.9.3-p429.tar.gz=993c72f7f805a9eb453f90b0b7fe0d2b ruby-1.9.3-p448.tar.bz2=aa710d386e5903f78f0231868255e6af ruby-1.9.3-p448.tar.gz=a893cff26bcf351b8975ebf2a63b1023 ruby-1.9.3-p484.tar.bz2=03f5b08804927ceabe5122cb90f5d0a9 ruby-1.9.3-p484.tar.gz=8ac0dee72fe12d75c8b2d0ef5d0c2968 ruby-1.9.3-p545.tar.bz2=4743c1dc48491070bae8fc8b423bc1a7 ruby-1.9.3-p545.tar.gz=8e8f6e4d7d0bb54e0edf8d9c4120f40c ruby-1.9.3-p547.tar.bz2=5363d399be7f827c77bf8ae5d1a69b38 ruby-1.9.3-p547.tar.gz=7531f9b1b35b16f3eb3d7bea786babfd ruby-1.9.3-p550.tar.bz2=c2169c8b14ccefd036081aba5ffa96da ruby-1.9.3-p551.tar.bz2=0d8b272b05c3449dc848bb7570f65bfe ruby-1.9.3-preview1.tar.bz2=7d93dc773c5824f05c6e6630d8c4bf9b ruby-1.9.3-preview1.tar.gz=0f0220be4cc7c51a82c1bd8f6a0969f3 ruby-1.9.3-rc1.tar.bz2=26f0dc51ad981e12c58b48380112fa4d ruby-1.9.3-rc1.tar.gz=46a2a481536ca0ca0b80ad2b091df68e ruby-2.0.0-p0.tar.bz2=895c1c581f8d28e8b3bb02472b2ccf6a ruby-2.0.0-p195.tar.bz2=2f54faea6ee1ca500632ec3c0cb59cb6 ruby-2.0.0-p247.tar.bz2=60913f3eec0c4071f44df42600be2604 ruby-2.0.0-p353.tar.bz2=20eb8f067d20f6b76b7e16cce2a85a55 ruby-2.0.0-p451.tar.bz2=908e4d1dbfe7362b15892f16af05adf8 ruby-2.0.0-p481.tar.bz2=ea406a8d415a1a5d8365596d4288f3da ruby-2.0.0-p576.tar.bz2=eccd42d43620544a085c5e3834572f37 ruby-2.0.0-p594.tar.bz2=58469c0daf5f3a892a70cc674ea59c7f ruby-2.0.0-p598.tar.bz2=a3f3908103a7d209d1d1cf4712e3953c ruby-2.0.0-p643.tar.bz2=1390888cac6cd175e6f164eff378cdde ruby-2.0.0-p645.tar.bz2=d576240c97cfcc3ed9bdc457eb1e8280 ruby-2.0.0-p647.tar.bz2=27a3ea1a8b8bca1a6de43a7d08e88b69 ruby-2.0.0-p648.tar.bz2=3544031334f4665aa2eb1414babc9345 ruby-2.0.0-preview1.tar.bz2=47a0f662f0e258aa1c5e429c310861b3 ruby-2.0.0-preview2.tar.bz2=a645a783c3302cc094a9963a5e700a4d ruby-2.0.0-rc1.tar.bz2=24cebdda11e01ff4889ac983cd7dc02c ruby-2.0.0-rc2.tar.bz2=e92420131bd7994513e0bf09a3e2a19b ruby-2.1.0-preview1.tar.bz2=d32d1ea23988399afadbd21c5a7a37fc ruby-2.1.0-preview2.tar.bz2=9d566a9b2d2e7e35ad6125e2a14ce672 ruby-2.1.0-rc1.tar.bz2=cae095b90349b5b0f7026060cc3dd2c5 ruby-2.1.0.tar.bz2=1546eeb763ac7754365664be763a1e8f ruby-2.1.1.tar.bz2=53edc33b2f590ecdd9f6a344b9d92d0d ruby-2.1.1.tar.gz=e57fdbb8ed56e70c43f39c79da1654b2 ruby-2.1.2.tar.bz2=ed9b8565bdeccb401d628ec8d54a0774 ruby-2.1.2.tar.gz=a5b5c83565f8bd954ee522bd287d2ca1 ruby-2.1.3.tar.bz2=02b7da3bb06037c777ca52e1194efccb ruby-2.1.4.tar.bz2=f4136e781d261e3cc20748005e1740b7 ruby-2.1.5.tar.bz2=a7c3e5fec47eff23091b566e9e1dac1b ruby-2.1.6.tar.bz2=e1a8e6c6bfbb09bb7f8d6be8f508e4a1 ruby-2.1.7.tar.bz2=3a878e98311d543e5de3533b82ef4a5a ruby-2.1.8.tar.bz2=b17130b5f02a61640ae3b629af931610 ruby-2.1.9.tar.bz2=62bd1cbfcbc22e4d137462bce992f6d1 ruby-2.1.10.tar.bz2=5155c624807ff2418a9e9f15202954d0 ruby-2.2.0-preview1.tar.bz2=767b132eec3e70b14afe5884a7a767b1 ruby-2.2.0-preview2.tar.bz2=d7abace25a8ffe861cb2807bef1c58a6 ruby-2.2.0-rc1.tar.bz2=7144732d30dd4547c0a59862b3345d54 ruby-2.2.0.tar.bz2=d03cd4690fec1fff81d096d1c1255fde ruby-2.2.1.tar.bz2=06973777736d8e6bdad8dcaa469a9da3 ruby-2.2.2.tar.bz2=af6eb4fa7247f1f7b2e19c8e6f3e3145 ruby-2.2.3.tar.bz2=f49a734729a71774d4a94a9a603114b2 ruby-2.2.4.tar.bz2=c3d65f6d2ebe90dda81a37885ea244f5 ruby-2.2.5.tar.bz2=0c7edd1ff3650c3b74da2efaf641bf34 ruby-2.2.6.tar.bz2=3d13cf447142b8a11cd9beb7bc63fee0 ruby-2.2.7.tar.bz2=ca7224d80c08b015bc3b8c226d0914c3 ruby-2.2.8.tar.bz2=054d2e2904d5175662293e29c3bdb927 ruby-2.2.9.tar.bz2=575adf8ede6b1ca7236a5341e73536b0 ruby-2.2.10.tar.bz2=bef1909a4c885157870ef69548cdad3a ruby-2.3.0-preview1.tar.bz2=776000d74ec6dd34bf355ff6921c8311 ruby-2.3.0-preview2.tar.bz2=3ad442ccb337e77e4acaa4113f25b76a ruby-2.3.0.tar.bz2=f0d9f9bbdc87372ca98988a571875819 ruby-2.3.1.tar.bz2=c194281f63d7fcd816747fe78474be5e ruby-2.3.2.tar.bz2=9d00f3772f1c8fa5eecdfea089e3032f ruby-2.3.3.tar.bz2=04b9c461a2bc1eec0535ad1947cad4fb ruby-2.3.4.tar.bz2=99961e97566aee6d63635e2da4cf73ac ruby-2.3.5.tar.bz2=e1efc3d5a948ca1f552005efe5925513 ruby-2.3.6.tar.bz2=b2443b11ee80319a119f7ec0c9b8d79a ruby-2.3.7.tar.bz2=5eb580d5cd13ffb5aacfb96580c0043d ruby-2.3.8.tar.bz2=78045332e298dfd859ceef9fe946950f ruby-2.4.0-preview1.tar.bz2=64b8983b5f53d053906e394f734aa296 ruby-2.4.0-preview2.tar.bz2=1074e8dea5baa89af7f7c2d1d2b9ebaa ruby-2.4.0-preview3.tar.bz2=9f767e6bc61830735ea7dc9cd5a63653 ruby-2.4.0-rc1.tar.bz2=0f8b665acf4e883334adc121a42a206f ruby-2.4.0.tar.bz2=98f29161860fe1b6c65396717847a358 ruby-2.4.1.tar.bz2=07b2ae5d2f46321c95b37066c8415900 ruby-2.4.2.tar.bz2=5ff3ad6ec816bcce8806a55090936ab6 ruby-2.4.3.tar.bz2=ac8215ba561cc7c79b4f61daee11b706 ruby-2.4.4.tar.bz2=d994274eaa95b82aa5d31ec2188253c6 ruby-2.4.5.tar.bz2=45d70a8bb9397d818795ffe992163d27 ruby-2.4.6.tar.bz2=4abd13c50c1fc273a0a81a0ae74ed39f ruby-2.4.7.tar.bz2=1ce166ced489908993d78e8bb68325e0 ruby-2.4.8.tar.bz2=396d35f1a2d1deaf303f59cb5245d4ae ruby-2.4.9.tar.bz2=0b3447370651df55a2014a170c0cb1d5 ruby-2.4.10.tar.bz2=b10a7d2fcaf218c98edbaf57efc36e58 ruby-2.5.0-preview1.tar.bz2=889454189f41e271ae5ba15382911b6a ruby-2.5.0-rc1.tar.bz2=f5acdeacf56aced3c00ae6a8fa816bbc ruby-2.5.0.tar.bz2=63a6cd49546783d62de25a0ffc4aecc3 ruby-2.5.1.tar.bz2=5aaaf2fb4893214fa316516f3ac43519 ruby-2.5.2.tar.bz2=e90ab127e2ac3ee1d8840835e8ba1f13 ruby-2.5.3.tar.bz2=49aea0bf56d25351ccaf938c642400df ruby-2.5.4.tar.bz2=0c923215470f1debe593fe21e66fd37b ruby-2.5.5.tar.bz2=8f41b5cb683d48b5cb6cdfe03d135d6b ruby-2.5.6.tar.bz2=f2a74416ab3016434896194120796f04 ruby-2.5.7.tar.bz2=65597b69aa54bdca8745502c10349f96 ruby-2.5.8.tar.bz2=9ec96e7a590ef801ede294b6184c9c0f ruby-2.5.9.tar.bz2=9e905a545a729af1f1620ddfc2976fe5 ruby-2.6.0-preview1.tar.bz2=1ce507e27fa02aeb36100dabcf1da94f ruby-2.6.0-preview2.tar.bz2=e45011116334d21857b9e1712a01e6b3 ruby-2.6.0-preview3.tar.bz2=b326ceee3d3756f892515009e148f4b2 ruby-2.6.0-rc1.tar.bz2=40457a72e36cbecd0c51d9f895347302 ruby-2.6.0-rc2.tar.bz2=9665e6d886a9da2d4076fa75836798f1 ruby-2.6.0.tar.bz2=d3372daec93f83e7a91c669821053014 ruby-2.6.1.tar.bz2=73d19ac478db1a178be5ae2f2fb8c9ec ruby-2.6.2.tar.bz2=658fcc0da15578c2420ded807b11cce1 ruby-2.6.3.tar.bz2=52e609b756735115814b9c8463f185e2 ruby-2.6.4.tar.bz2=d9b35753c65f54c745ab6b0094511839 ruby-2.6.5.tar.bz2=d1b89c88effb71d75cd7ef77c35e1985 ruby-2.6.6.tar.bz2=abc030870bfbe18ae9c356abebd95cb6 ruby-2.6.7.tar.bz2=46f24740181f91247c72f19d52334379 ruby-2.6.8.tar.bz2=c53761123d17e929cfe248f50429bcab ruby-2.6.9.tar.bz2=ddc24495adaf215c8ee40630b4a55041 ruby-2.6.10.tar.bz2=6ad76db639ab308e3b6c19408729a0cf ruby-2.7.0-preview1.tar.bz2=82fab0496947acd847a6b2eb758acfc6 ruby-2.7.0-preview2.tar.bz2=966a544ab59114591898403c23d91397 ruby-2.7.0-preview3.tar.bz2=2fa6c213774744b287e7e0212b43f626 ruby-2.7.0-rc1.tar.bz2=48a8837cb352f5b95e97a1ae0d62a9d0 ruby-2.7.0-rc2.tar.bz2=cca58fdb8c5e8be8273842d54199c42d ruby-2.7.0.tar.bz2=89347748b7414f5bc7aeb8f4a87ebef4 ruby-2.7.1.tar.bz2=4bb2b2b2f0c6953859e30af140cf249a ruby-2.7.2.tar.bz2=a8acc9c24708fe29dfc287823ecaae65 ruby-2.7.3.tar.bz2=604acb258b1d8228f55799e846cfe6d3 ruby-2.7.4.tar.bz2=52705d799ed851dd3bfd5634265cde46 ruby-2.7.5.tar.bz2=d97d4377eee18b0e790510c3afed648c ruby-2.7.6.tar.bz2=1b6efacb9f129d0253d8a9faa9c21f99 ruby-2.7.7.tar.bz2=63c55e75150251d3ba092b662138e4af ruby-2.7.8.tar.bz2=f44dedf51fdb7441a7dba592d6a4a14d ruby-3.0.0-preview1.tar.gz=991df063b86a8f8412ca07f548579f39 ruby-3.0.0-preview2.tar.gz=ce14b24e923f2e269fea6441791a7248 ruby-3.0.0-rc1.tar.gz=848a8628c8abde270b66e2474049a4a3 ruby-3.0.0.tar.gz=d6af36269a1b0bc278236d371543ad97 ruby-3.0.1.tar.gz=8d1c460a9a9d48a353de3eb0f338bbfd ruby-3.0.2.tar.gz=b973af486291a1e17ad50d88472bfa86 ruby-3.0.3.tar.gz=9ecae293da9547c1438a970f04f64655 ruby-3.0.4.tar.gz=ec9de9a15acc4f205b08816d94267415 ruby-3.0.5.tar.gz=cdff2395625dc1d632fc5400c8fec103 ruby-3.0.6.tar.gz=6b5a7b14505697e6fc2b40b345679f40 ruby-3.0.7.tar.gz=147a3467facc704b5d479e809c131603 ruby-3.1.0-preview1.tar.gz=d131b9bca700ee87ea276f8233ea4c0b ruby-3.1.0.tar.gz=1ca89d713f2c18a20104befed51b3b9a ruby-3.1.1.tar.gz=702778a0ef8b7a01ef7530a541002e19 ruby-3.1.2.tar.gz=9daf064899cccc32fd564117c7a7e0dd ruby-3.1.3.tar.gz=cce38a2b2c589d59f440f67c7d8cc697 ruby-3.1.4.tar.gz=3e601ae6db76a487219a1084e5cb4c9c ruby-3.1.5.tar.gz=ce1e92ddb1230fa2d4f4367882542555 ruby-3.1.6.tar.gz=880923d0ce02717023683b522dbe92a5 ruby-3.1.7.tar.gz=20b73ea8e850d7e12c226b3772b1d0ed ruby-3.2.0-preview1.tar.gz=a83c91d53e130fe232e4c27ecc8738da ruby-3.2.0-preview2.tar.gz=56e7801b37612b82285c9a09cfeb28ce ruby-3.2.0-preview3.tar.gz=0ed16faae50403b4e2ba2e85ec2314a1 ruby-3.2.0-rc1.tar.gz=4657d7013702adce21ca21dfe71ea4a0 ruby-3.2.0.tar.gz=76ca7e7d71898ab1e85155d69403754e ruby-3.2.1.tar.gz=055101c924538467c63fcbf42abddc75 ruby-3.2.2.tar.gz=eb6f18605e1e1be5dfb5b45f31bf6a93 ruby-3.2.3.tar.gz=e0ba90554f7ea41c587ffa7fcfd064ca ruby-3.2.4.tar.gz=c48283a23c72d7aae19b7f510b89444a ruby-3.2.5.tar.gz=3bd6f2b26918c8637abf56c2f208833e ruby-3.2.6.tar.gz=fa9bd65bc429a43a3e6dda8ff0b97022 ruby-3.2.7.tar.gz=c72e290d57080f828156b5c24fe8e4ad ruby-3.2.8.tar.gz=aa16ae868ae1cb8810581ea604e4e0fa ruby-3.3.0-preview1.tar.gz=0833f555b1b8d5423953600fb4146639 ruby-3.3.0-preview2.tar.gz=4f82f4c9e512ec0a53baa1be8d35ebf7 ruby-3.3.0-preview3.tar.gz=a32ede198a9da50d4afc4421a4a993ad ruby-3.3.0.tar.gz=f57422a0f995cd5a93c726f6c42c310a ruby-3.3.1.tar.gz=368e331a35145ace4948390ed76cf1df ruby-3.3.2.tar.gz=9a7efebc6a0e4810c716ec6d401dc372 ruby-3.3.3.tar.gz=beb9773cc4d9d8da29463ab175e4db28 ruby-3.3.4.tar.gz=f2e16c1a56e07e185214e85c62657941 ruby-3.3.5.tar.gz=ccad73b02d942d1e6b4c27873d4c08e4 ruby-3.3.6.tar.gz=51bcf91da64e5889e2e59c7adc7189c5 ruby-3.3.7.tar.gz=5fa3e653657d868e2c8377d2f3adb335 +ruby-3.3.8.tar.gz=874dd01d11ddb2886df05340c6388ba9 ruby-3.4.0-preview1.tar.gz=93b9b1040a2dd7be7514a7870aa7da03 ruby-3.4.0.tar.gz=2acf769caa47f692fea932ab81e75639 ruby-3.4.1.tar.gz=43e587b9a6de2a51dd1fa2613615542b ruby-3.4.2.tar.gz=120907785ecc0a84521e924cbda66af9 ruby-enterprise-1.8.6-20080507.tar.gz=17e3c52e73e42809f57ad0000a6cb4ab ruby-enterprise-1.8.6-20080621.tar.gz=626fc3811eee2dc92ac27ea63d37a8b2 ruby-enterprise-1.8.6-20080623.tar.gz=0bf8a3a93c6b37bb1260cc09b05e81fd ruby-enterprise-1.8.6-20080624.tar.gz=de58b97128aa65209f291c66eab7c4a7 ruby-enterprise-1.8.6-20080709.tar.gz=f0ded08cec64959fa388ec6a237b9c47 ruby-enterprise-1.8.6-20080810.tar.gz=bfdcf06f437af825cd9f2d321f9d1896 ruby-enterprise-1.8.6-20081205.tar.gz=50206bec9be2e08a862e5ec2e70fa693 ruby-enterprise-1.8.6-20081215.tar.gz=aab57b7d5061c1980bec5dbe311ec9b2 ruby-enterprise-1.8.6-20090113.tar.gz=e8d796a5bae0ec1029a88ba95c5d901d ruby-enterprise-1.8.6-20090201.tar.gz=a965e6789b553efaed72191825b13713 ruby-enterprise-1.8.6-20090421.tar.gz=c777b361aadccda7988be16ede7ab15f ruby-enterprise-1.8.6-20090520.tar.gz=156572a8296bd0440970a6bb95018a13 ruby-enterprise-1.8.6-20090610.tar.gz=0bf66ee626918464a6eccdd83c99d63a ruby-enterprise-1.8.7-2009.10.tar.gz=3727eef7b6b1b2f31db7d091328d966e ruby-enterprise-1.8.7-2010.01.tar.gz=587aaea02c86ddbb87394a340a25e554 ruby-enterprise-1.8.7-2010.02.tar.gz=4df7b09c01adfd711b0ab76837611542 ruby-enterprise-1.8.7-2011.01.tar.gz=4640634347cd8e5469cb718853e2112e ruby-enterprise-1.8.7-2011.02.tar.gz=8c5faa11c1ddaed3f44b7294711980cc ruby-enterprise-1.8.7-2011.03.tar.gz=038604ce25349e54363c5df9cd535ec8 ruby-enterprise-1.8.7-2011.12.tar.gz=1e5f3059d52a67ab5d91d472b756de08 ruby-enterprise-1.8.7-2012.02.tar.gz=8d086d2fe68a4c57ba76228e97fb3116 ruby-enterprise-1.8.7-20090928.tar.gz=ae00018ce89d95419dfde370fcd485ac rubygems-0.4.0.tgz=86a64616548a793e1a5f825f0dd385b9 rubygems-0.5.0.tgz=80d151edd94a06bcd2452a7e272b4d96 rubygems-0.6.0.tgz=5df803f5a04654833690dd32283de741 rubygems-0.6.1.tgz=c4a0faa9f876ad805ae80d1396a29d97 rubygems-0.7.0.tgz=ede9b55343219e8b3491793aa12c46f3 rubygems-0.8.0.tgz=9ef6e3c34dcb54e295c8e57321ddc079 rubygems-0.8.1.tgz=6276d268b420c0d61796cdbf6d28dae4 rubygems-0.8.3.tgz=6e6da80f61d6e77d0ad9e531767f6fd5 rubygems-0.8.4.tgz=a2ad2d03dae8a98002c2a7cd6c3ed352 rubygems-0.8.5.tgz=b917c084e1e6e99d8e102af8dd687ddb rubygems-0.8.6.tgz=9de98d2f62e3f91521b0207a4dcdeb5b rubygems-0.8.7.tgz=7fc04b9f9acc0c18cbbe6222be8d0bd3 rubygems-0.8.8.tgz=a8535e9c35a4c215d6ef9268d4bc69ed rubygems-0.8.10.tgz=d26592e280c0fb24c51f2837c3f48e67 rubygems-0.8.11.tgz=aa363b428c4c1fc2e076a4ff77b957d7 rubygems-0.9.0.tgz=5d496e1f415b8b4033ab867f01d1161f rubygems-0.9.1.tgz=a62314cdb174ccc88a27b8924fa79e4a rubygems-0.9.2.tgz=cc525053dd465ab6e33af382166fa808 rubygems-0.9.3.tgz=600940a22ecd79e28e0fd37ad1f1d871 rubygems-0.9.4.tgz=b5680acaa019c80ea44fe87cc2e227da rubygems-0.9.5.tgz=91f7036a724e34cc66dd8d09348733d9 rubygems-1.0.0.tgz=b0b74eac0cbfc5a13f895ab6f803edc1 rubygems-1.0.1.tgz=0d5851084955c327ee1dc9cbd631aa5f rubygems-1.1.0.tgz=85f994904c5b4045f0a859b29d0be717 rubygems-1.1.1.tgz=1a77c5b6b293a3ccd5261dc120641ccc rubygems-1.2.0.tgz=b77a4234360735174d1692e6fc598402 rubygems-1.3.0.tgz=63d3dfc038710eaf532b6a133225115a rubygems-1.3.1.tgz=a04ee6f6897077c5b75f5fd1e134c5a9 rubygems-1.3.2.tgz=6204d0a4c526a1d8fdbce746647b179a rubygems-1.3.3.tgz=0e9697db44d812712350baf28016b4a7 rubygems-1.3.4.tgz=b17b398503253bf36a101c58f02a226f rubygems-1.3.5.tgz=6e317335898e73beab15623cdd5f8cff rubygems-1.3.6.tgz=789ca8e9ad1d4d3fe5f0534fcc038a0d rubygems-1.3.7.tgz=e85cfadd025ff6ab689375adbf344bbe rubygems-1.4.1.tgz=e915dbf79e22249d10c0fcf503a5adda rubygems-1.4.2.tgz=b5badb7c5adda38d9866fa21ae46bbcc rubygems-1.5.0.tgz=49bef7186bf3c0ca6ee7adf4b585bccc rubygems-1.5.1.tgz=47577a5e33c9c6f1e3a56aff7f51d0ff rubygems-1.5.2.tgz=3951f94c09c16c774c8bcebc94fa5374 rubygems-1.5.3.tgz=38bbbdc17aef923fb41f054cf8421116 rubygems-1.6.0.tgz=abd27b5a9002100ff74ddb398a1c9689 rubygems-1.6.1.tgz=a77c64896aaa10d64aaf34f5c1488173 rubygems-1.6.2.tgz=0c95a9869914ba1a45bf71d3b8048420 rubygems-1.8.6.tgz=8e95d0c5b377a003f3d54a49461e81d9 rubygems-1.8.9.tgz=fc399445d693c29778779e5828ee5e90 rubygems-1.8.10.tgz=5b08ee31740c9b0bd36f6c04d537e7d4 rubygems-1.8.23.1.tgz=5259ce3eb7988950fa3aff9051a5de91 rubygems-1.8.23.2.tgz=fb377c7fd387df14a33e529153adc316 rubygems-1.8.23.tgz=178b0ebae78dbb46963c51ad29bb6bd9 rubygems-1.8.24.tgz=3a555b9d579f6a1a1e110628f5110c6b rubygems-1.8.25.tgz=1376a258d43c53750a8df30e67853e10 rubygems-1.8.26.tgz=0ea47f1efd010f4c82b8a51a934f48dc rubygems-1.8.27.tgz=6686ad26735c21d0d6e58b6192c7da5d rubygems-1.8.28.tgz=2df78039f391fb1f71c02c2fc5671c94 rubygems-1.8.29.tgz=a57fec0af33e2e2e1dbb3a68f6cc7269 rubygems-2.0.0.tgz=89ce467eb2d55657e9965a46559acbcf rubygems-2.0.1.tgz=2652ab6f001a873b8933e2ca09505974 rubygems-2.0.2.tgz=3471f140a70bcd32a7495b545cfce790 rubygems-2.0.3.tgz=854691f145cea98b4100e5b0831b73ed rubygems-2.0.4.tgz=3ec32dbe783bab37a87f50758f8efe13 rubygems-2.0.5.tgz=641d82672937d40d664dbc18f49cdcec rubygems-2.0.6.tgz=0633f50db16112bf6c3cf9bfb9ceb9bd rubygems-2.0.7.tgz=9046700f1222712fedfb836fafa08c50 rubygems-2.0.8.tgz=5432214a740c0d13482e43a5328a6518 rubygems-2.0.9.tgz=bc55898247297ffa190223276b1b1bd7 rubygems-2.0.10.tgz=5457ba403cd9a5f4f5fb2ef4a2a1c03e rubygems-2.0.11.tgz=0f28e3fde3348c0f23ceecba73a6cbef rubygems-2.0.12.tgz=99c416517e2de1146d2c6fbb4c4c1441 rubygems-2.0.13.tgz=3970e66a670ddb6d1aade9c7b18033d4 rubygems-2.0.14.tgz=4a7aa0b144e465230ab5d7b59dfd7e8f rubygems-2.1.0.tgz=9a9d242baef5e58fbfe79ec5206cd316 rubygems-2.1.1.tgz=b34d6f4028b69a84123a6b7cb0ac8028 rubygems-2.1.2.tgz=b5c5c4430be60f911014216d41886ef3 rubygems-2.1.3.tgz=ac7bbdfecd49f9304756aa5ebeb51400 rubygems-2.1.4.tgz=aa502b1ea90fbdd14ca9b32634795c2b rubygems-2.1.5.tgz=60564b762d4e186815997653b1c876ab rubygems-2.1.6.tgz=e11237a8f87dbd8c085770551d64a8f8 rubygems-2.1.7.tgz=b721ed7d5fd57ed05f77eb21a3a592ee rubygems-2.1.8.tgz=cc4c84c0482840389a457740e8083ed9 rubygems-2.1.9.tgz=2636bf26c0a9ec889c7bd938887bd9a3 rubygems-2.1.10.tgz=6fa671d7d6605de73d16f529cf7bffb8 rubygems-2.1.11.tgz=b561b7aaa70d387e230688066e46e448 rubygems-2.2.0.rc.1.tgz=f7d80b612339169569f2675155c202f1 rubygems-2.2.0.tgz=3c16e50673adb99d1ce76d5231f764bd rubygems-2.4.8.tgz=dc77b51449dffe5b31776bff826bf559 rubygems-2.6.10.tgz=ab5a0028d2a0653691b29d7463bd0892 rubygems-2.6.11.tgz=8d514b836fcf3ae2c20b4fe8d5cdc3c5 rubygems-2.6.12.tgz=7c454ef88b716c1a123f62b26bb9612b rubygems-2.6.13.tgz=e6f19b51614055d826e431549a12a80b rubygems-2.6.14.tgz=e0a6914ce03b91dfc6d448ebf292f145 rubygems-2.7.0.tgz=771c40015538c0f225c5249e4bc7d441 rubygems-2.7.1.tgz=65646f28f3c36ccaa7f991c17e15b8a9 rubygems-2.7.2.tgz=312a238ed98a61d2b3d165b790b6062b rubygems-2.7.3.tgz=fb3a1927a1842b75677a24f48dd63ddc rubygems-2.7.4.tgz=e9bbf5a4cc9a74293884b91f49603ea0 rubygems-2.7.5.tgz=516a4f219976003feb4b4f797cbc66b0 rubygems-2.7.6.tgz=366cea352c2b1243db726013c3d76fc4 rubygems-2.7.7.tgz=b6721f6ce4af08f68c6f513bbddfe484 rubygems-2.7.8.tgz=a3ed89a34e1ae8f9da0c620a8aa35f12 rubygems-2.7.9.tgz=173272ed55405caf7f858b6981fff526 rubygems-2.7.10.tgz=464754059d8ca01c1121a1233d866e8c rubygems-3.0.0.tgz=3908105894e531f7ad3aceb8b41dcbcd rubygems-3.0.1.tgz=1e8af9b87a67f15841ad2be7d5725a5f rubygems-3.0.2.tgz=d8db1b516ae1e35b8f6f56cb526f879a rubygems-3.0.3.tgz=b7a7dd5f85485334a6cb61b7dac20cff rubygems-3.0.4.tgz=7d0c49077a2d19f48d88567cfa3cf17a rubygems-3.0.5.tgz=4664467d621d719688e4778d147c306a rubygems-3.0.6.tgz=60d84e843b131fb87c8fd67e8fac6470 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=3e9afdf72f153e2f66259fc2b6fca594 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=c30459287aec83548cfcb17340fa73d5 truffleruby-1.0.0-rc3-linux-amd64.tar.gz=138f6814451ce634b0fae3aca5579248 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=94ed54ecb65bea2166a2159431b0362b truffleruby-1.0.0-rc5-linux-amd64.tar.gz=9e5428611e22b093d05afebbe0ccbc2b truffleruby-1.0.0-rc5-macos-amd64.tar.gz=b32a254fed71434c3431fb2effb35c5a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=7f394a8c7fe356b7bd36683c57f74ebd truffleruby-1.0.0-rc6-macos-amd64.tar.gz=f033329d03f1f846d25728c2af9d7524 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=184e98f2d6939f63db4b915943ff60c6 truffleruby-1.0.0-rc7-macos-amd64.tar.gz=d19213b33011f7a55e0f32d25e19184f truffleruby-1.0.0-rc8-linux-amd64.tar.gz=a394167c0331c6d8c1123e1f992e5411 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=dc1bf0fcfdd5837ae0ca56d6d6e5f7b0 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=f6ec25bd532bf0551d35327d1aa4caf9 truffleruby-1.0.0-rc9-macos-amd64.tar.gz=c80a345f9071521cf1961ab75ebc7dd1 truffleruby-1.0.0-rc10-linux-amd64.tar.gz=3a889726efcdf33feb7ef3df13fd5f39 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=bba618b4483b79eebf9f0e7af4078502 truffleruby-1.0.0-rc11-linux-amd64.tar.gz=a25e179ca0be96a1bc737a600729c195 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=bb8d8f5525e1ba86bb039e56291c6c7c truffleruby-1.0.0-rc12-linux-amd64.tar.gz=872774837057489250527bf863192115 truffleruby-1.0.0-rc12-macos-amd64.tar.gz=bb4a64e6c4882fd0c5e412bf9c57720b truffleruby-1.0.0-rc13-linux-amd64.tar.gz=0f36eed2eb36846785fdd4eae24adfa0 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=1bd3087a0f2df4c006b87c9488ada6d4 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=9eddd1aa98c9649e7c01bb10bf28c471 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c93643f1d00b370411310ee7a1dd5330 truffleruby-1.0.0-rc15-linux-amd64.tar.gz=bc7339a6218ea991f2c72ce8759cb6e3 truffleruby-1.0.0-rc15-macos-amd64.tar.gz=1671d08dd2f5026d58b326fd55c9b7de truffleruby-1.0.0-rc16-linux-amd64.tar.gz=5564d17f19b8ee0edb96ab5b1bfbda98 truffleruby-1.0.0-rc16-macos-amd64.tar.gz=61583b529b6a1337398b0966db952d24 truffleruby-19.0.0-linux-amd64.tar.gz=006220c7bde7d0b5c72481133624a83f truffleruby-19.0.0-macos-amd64.tar.gz=9ef7f5a311465d35e54ac6e00ec3d169 truffleruby-19.0.2-linux-amd64.tar.gz=2f7fe574e0695fb6001f4f5282aa2f79 truffleruby-19.0.2-macos-amd64.tar.gz=aa20f76b3eac1f4976a507364201d1ad truffleruby-19.1.0-linux-amd64.tar.gz=71368f8371069017d911528f052b0a55 truffleruby-19.1.0-macos-amd64.tar.gz=7f086adbc89fdfaed35273394ac3ac66 truffleruby-19.1.1-linux-amd64.tar.gz=c1ad4d17bb40e214b124222f3a7c6db6 truffleruby-19.1.1-macos-amd64.tar.gz=f4e76b0612319b4a82480cbd1fc90210 truffleruby-19.2.0-linux-amd64.tar.gz=458ed5fec1a849ef5b00e19b0e25d5e9 truffleruby-19.2.0-macos-amd64.tar.gz=dc324575ad20e3054980835c24ea7161 truffleruby-19.2.0.1-linux-amd64.tar.gz=ad7444145550d89931199159163077c1 truffleruby-19.2.0.1-macos-amd64.tar.gz=b5bcfb0aaded1e2d1763089ab6c9a14d truffleruby-19.2.1-linux-amd64.tar.gz=fc4879d2b0cc22c152a8bf893a72c346 truffleruby-19.2.1-macos-amd64.tar.gz=71448ff3f8f1da086f222751d3f853bc truffleruby-19.3.0-linux-amd64.tar.gz=dd44ac30b5a1ef3a7d61172cda9b30b6 truffleruby-19.3.0-macos-amd64.tar.gz=41daa52f0f308abb77a2b91c1b7e0f3d truffleruby-19.3.0.2-linux-amd64.tar.gz=2db2cb5c29523c9bdb6f59dfa0bd74ce truffleruby-19.3.0.2-macos-amd64.tar.gz=edf1603643938686dce57139aadf7d3c truffleruby-19.3.1-linux-amd64.tar.gz=a14c028351f7a3965bcb56e9b22364de truffleruby-19.3.1-macos-amd64.tar.gz=a8707d0af3eda694ec07a5387d3443fb truffleruby-20.0.0-linux-amd64.tar.gz=b30110ecbc50c4fce402fdf44c45dad5 truffleruby-20.0.0-macos-amd64.tar.gz=0671e5909cefb9a2c12c473fc0110821 truffleruby-20.1.0-linux-amd64.tar.gz=4592b5fc3636d82fc998ab6fe0a43584 truffleruby-20.1.0-macos-amd64.tar.gz=3c0be43db86817c7037d3ff5053d322d truffleruby-20.2.0-linux-amd64.tar.gz=e9859decb24829f9a189d88b3c2e9b79 truffleruby-20.2.0-macos-amd64.tar.gz=49e7ccf8f9e60d6c59b3b07b854466cf truffleruby-20.3.0-linux-amd64.tar.gz=93a20845f7d9d39100761424dfc0a734 truffleruby-20.3.0-macos-amd64.tar.gz=b178b7a94fac58400450417612fe3441 truffleruby-21.0.0-linux-amd64.tar.gz=c03304a505c8699e697acecf5030d95f truffleruby-21.0.0-macos-amd64.tar.gz=019796be37a58ef8e186a625f2ff5d07 truffleruby-21.1.0-linux-amd64.tar.gz=065bfcc48f6925410e0da21e16428b64 truffleruby-21.1.0-macos-amd64.tar.gz=325f6854c10d8a3a114c80da582c469f truffleruby-21.2.0-linux-amd64.tar.gz=0aec44721a040845347f18c1f72ceb75 truffleruby-21.2.0-macos-amd64.tar.gz=76d27715b20902df5779f7a0c00852b1 truffleruby-21.2.0.1-linux-amd64.tar.gz=f68e9b8a9f9cae5efc5ac45a7d9e760d truffleruby-21.2.0.1-macos-amd64.tar.gz=b021e50fc94cab590b49d27f2ea821b0 truffleruby-21.3.0-linux-amd64.tar.gz=359aca79cba4e08f9955d9c6543c2189 truffleruby-21.3.0-macos-amd64.tar.gz=d9e2e2c6fcd3ac16f0c37b0ccffb4f41 truffleruby-22.0.0.2-linux-amd64.tar.gz=324327026e9b2963a8e5fb4ee3f4e216 truffleruby-22.0.0.2-macos-amd64.tar.gz=7029d0e291d498a264d9b413729a3e17 truffleruby-22.1.0-linux-amd64.tar.gz=9329cf507ba8ac529e93156cacc1425d truffleruby-22.1.0-macos-amd64.tar.gz=353242978b46cafc34b05e2c81206096 truffleruby-22.2.0-linux-amd64.tar.gz=5d676377056ae94fe847be721c20405b truffleruby-22.2.0-linux-aarch64.tar.gz=b774f4b7d330842521f1e6e56cb41db5 truffleruby-22.2.0-macos-amd64.tar.gz=e45fdd9a05aec6220a76fb707b0a5ae8 truffleruby-22.2.0-macos-aarch64.tar.gz=ebcbfe056d90d06de4bd0a9d699bad8f truffleruby-22.3.0-linux-amd64.tar.gz=ada8bc5dc52aca8317eaeab04d91e877 truffleruby-22.3.0-linux-aarch64.tar.gz=11493301d5519aa73e8f0e140cefb581 truffleruby-22.3.0-macos-amd64.tar.gz=9e27c677637b69b0460fb0a4569a5cca truffleruby-22.3.0-macos-aarch64.tar.gz=eaa1c9020b521226f8bb48b8c7e5c596 truffleruby-22.3.1-linux-amd64.tar.gz=243d926f038fd2220c03dfbe40ef58c3 truffleruby-22.3.1-linux-aarch64.tar.gz=01487fe680863381489bf2a0a2ac162b truffleruby-22.3.1-macos-amd64.tar.gz=b3d5a777d94856e51034d81076e8ef72 truffleruby-22.3.1-macos-aarch64.tar.gz=320ce75730a5b9f16f111eb7ef5e4e09 truffleruby-23.0.0-preview1-linux-amd64.tar.gz=76c1cb23ee63ba4de93a0c23784bfca9 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=eec3fc74565f08e9468982692f7f9010 truffleruby-23.0.0-preview1-macos-amd64.tar.gz=50e38f3cd548dfe78f397f76ed577bf1 truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=b769bcf9b843d9b2980def1e2139284f truffleruby-23.0.0-linux-amd64.tar.gz=6e1a491406c5dbf42de10fcb3ed7dc1c truffleruby-23.0.0-linux-aarch64.tar.gz=5c3663f64bee707173b2684355a9a42e truffleruby-23.0.0-macos-amd64.tar.gz=515a9a8a0f39ba9399e869cd418ebff5 truffleruby-23.0.0-macos-aarch64.tar.gz=57e5fa52270e692b82c445107fe6b6a6 truffleruby-23.1.0-linux-amd64.tar.gz=f7511c19045e57e72f9b5415bc17c8e8 truffleruby-23.1.0-linux-aarch64.tar.gz=e8a20dd919a2ff77b7cc5457e853d15d truffleruby-23.1.0-macos-amd64.tar.gz=d3b6a3cbc0a230ebae6f3a462a32ddd3 truffleruby-23.1.0-macos-aarch64.tar.gz=ee74fc5d192c2fb8afd0458d2d429c02 truffleruby-23.1.1-linux-amd64.tar.gz=d7e1c040da170aaa36b5f5a1d106d237 truffleruby-23.1.1-linux-aarch64.tar.gz=cf508ba3787be20c03bac690f3bdbac5 truffleruby-23.1.1-macos-amd64.tar.gz=a662a8672871524808500dddef3808c1 truffleruby-23.1.1-macos-aarch64.tar.gz=de543312024993a533e3caa63b396127 truffleruby-23.1.2-linux-amd64.tar.gz=e3e5b01b291d7fea61be2be842c7e8dc truffleruby-23.1.2-linux-aarch64.tar.gz=8fe26f643fa81eec6de3bde7024c858a truffleruby-23.1.2-macos-amd64.tar.gz=83bc41bf699fa847df7e60412bee2823 truffleruby-23.1.2-macos-aarch64.tar.gz=7dbd2e182cfec0cf2d2e37784721903f truffleruby-24.0.0-linux-amd64.tar.gz=202f05706d28faca75d5e3cd0f9bef78 truffleruby-24.0.0-linux-aarch64.tar.gz=4faaf4edde4f6a516246b7c2f4ee80b3 truffleruby-24.0.0-macos-amd64.tar.gz=d07f27e0e29398c6de836b0049105c12 truffleruby-24.0.0-macos-aarch64.tar.gz=10cf176718968893468caba617c02141 truffleruby-24.0.1-linux-amd64.tar.gz=2914bfb81b136cd1fb5736c0a40068e3 truffleruby-24.0.1-linux-aarch64.tar.gz=429e6ada9a95ea23ebb95d01f90eb0f4 truffleruby-24.0.1-macos-amd64.tar.gz=e3aa5ab128f5d169d93f2d6df98c4e77 truffleruby-24.0.1-macos-aarch64.tar.gz=6f81a1afe1b89a40f00c9bd4216ec45d truffleruby-24.0.2-linux-amd64.tar.gz=1a826ea6323a25becce5940d8e6c4642 truffleruby-24.0.2-linux-aarch64.tar.gz=45429f35653bd8cbc328eafe81d15e8a truffleruby-24.0.2-macos-amd64.tar.gz=f68aeb26783d048ae5f78e1c13739747 truffleruby-24.0.2-macos-aarch64.tar.gz=df05f94696b4f4584a259001a3d4d1d0 truffleruby-24.1.0-linux-amd64.tar.gz=14aa05250088f17491072e500c22c039 truffleruby-24.1.0-linux-aarch64.tar.gz=3e26495f8aa7b810ec5794a69e93483a truffleruby-24.1.0-macos-amd64.tar.gz=53b6251cdd359176f9e52fe05f05e949 truffleruby-24.1.0-macos-aarch64.tar.gz=28d61b8a1a307cbdf988313c8a1f77f1 truffleruby-24.1.1-linux-amd64.tar.gz=9ef530c2ac5f597100e69e4b374182c3 truffleruby-24.1.1-linux-aarch64.tar.gz=efcc6f5c51be84d2ec99e6cebccc586a truffleruby-24.1.1-macos-amd64.tar.gz=11e2f0f62c55fcc8330cd66393abb1fc truffleruby-24.1.1-macos-aarch64.tar.gz=eaba15df3e46cd3976bedaf6f086aae2 truffleruby-24.1.2-linux-amd64.tar.gz=ada406523c5cf80f7655a9314902e2b5 truffleruby-24.1.2-linux-aarch64.tar.gz=5a5dc457002a8a65b21264efd0387d5b truffleruby-24.1.2-macos-amd64.tar.gz=cb6142250e4b0b2b164ffa7ce47d5f29 truffleruby-24.1.2-macos-aarch64.tar.gz=f73e0af905cabe695b0fe6c73df699a1 truffleruby-24.2.0-linux-amd64.tar.gz=326d5bc6b5232c88e00837d30884ba52 truffleruby-24.2.0-linux-aarch64.tar.gz=391fa212eaff207df31860a291fee28e truffleruby-24.2.0-macos-amd64.tar.gz=0e21c5233ac4a20c4221900c79602496 truffleruby-24.2.0-macos-aarch64.tar.gz=9573cceaf4e1d6444cff0fda3695228a yaml-0.1.4.tar.gz=36c852831d02cf90508c29852361d01b zlib-1.2.3.tar.gz=debc62758716a169df9f62e6ab2bc634 zlib-1.2.5.tar.gz=c735eab2d659a96e5a594c9e8541ad63 diff --git a/config/sha512 b/config/sha512 index 8f928f0..6431798 100644 --- a/config/sha512 +++ b/config/sha512 @@ -1105,668 +1105,669 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.1.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.2.tar.bz2=440f27f682a7f9d2a99ff8c0687c1fecebd8bce494b9db48ab9d303250b8ea12dee51eed0f68d940f141d8e2699653fca7d2a6811eddc5c512a9fe39430fde3f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-1.9.3-p392.tar.bz2=3582744ce4a4ca8b497c918e129823167e80909367d65484c2a09a8e6fa185a38bfda8c1b6676742acb492472d0687fc5b6eb18965201e0f54268d835f618df4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-1.9.3-p551.tar.bz2=fc04b976fa02fc5c1cd4ccdd49948b5e289b3a5bba16ef99266b65fbb35f0c20a0ed02d5b147f2fc4469db6a7b6665d34e0373dba242ff04c95fa27642cfde1e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.0.0-p648.tar.bz2=7dd451549e9c1a43ef86be51eaa746344c424d1accbc9cfd360067c3aec20db8ffee277e1108d40c280f1b8ec0851c6e51bc448f25505508d9af153878d9b091 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.0.tar.bz2=cfe087a9daa6de2ef00a6501d568a25a3386da730304697e1bdb9fbb098617a143f073e58629876de4f09a1e8a60a48ec05864fcbccbd6733d9e1b3d309a1100 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.1.tar.bz2=b74cc64103a31b9b9545474fe202ab9f9b15569681262438056865e4dcad08419c44bb696c7dc8a18f72b3bd8e5e98201d0c3608ea652c907372c3c95cb7e16f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.2.tar.bz2=fafffbcd24eb3c55c89704e6e8ea48ad6be286bbb4e38f56c3b3d61f9bf4f6bec28882da2ff60f17f79516476ae50cc4cb8c6a8cf4a0f31b910d6153727caed2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.3.tar.bz2=4daaf8bba3a04d46e04720ff2af1469e1caa68168f5c27d1d3e0cab922055b1f9c0b26ee64c3cb46c17b6a9651ee7a11bad19e9414102455e96454f1a7929408 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.4.tar.bz2=988c13e900168b901a3a3deb4bb96e19b15205cf4c2793b56854b58924fff652946a083be6615b2053fb5285df0fd218d1f9f91562798f0386f0758973765dcd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.5.tar.bz2=c7396627e45d8df68b18c2491fa756085aeb4ec28c1cc707617cd903fcd47d4fdd3cd6ed225dccc14497afb14200b9bea5ba38f1e8dc621c4aea8b8f0f1ccc7d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.6.tar.bz2=389aa514d93d165fe299856a5348b1667f295aaeb49094bb5ff49e9c6861bac603e698c36bf81777797d05a1d3c405e37c1a00a4dbb85f262bf02c1b0e16ff04 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.7.tar.bz2=5a38bc1dd227658347114b935ad66e27fab67b8da9529a7f9083d6aac5743c40aea8c33ca95d4f10ed1d56f29bcc2c0747a3e88b87425a5786245792d8851301 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.8.tar.bz2=44e36e4918ab4c354cacdd20be30acf12f060aab808172184251186758f750ce688eef72f39ea110ab6429fbaaa5a792b1915a5c2d845b6e22a3cc4bc851c6b9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.9.tar.bz2=358f12ae2d4e177a080bbcde8b275691418884eae9a42c98161170c7b0f6029ffebf7ffad27961bfc8a50a393796934a2dd2c7f0ad2a35992c35dbd6c8c6349f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.10.tar.bz2=e7e98be6cf658eaab81486360f4d5d22f86805582feee4aa11a8e2fe6b461db69b850c7ea98840af0811910be7f534317ab5887bc48f47a9591b65fa7262feea https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.0.tar.bz2=307ee69b3051fcec2942fce075232a62f6adf6486239a89fab7bd63a9bf068e36371e67a5e42f86ed60e31b8219ff431c2d4bcf519b2c10393504942d2d90a9d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.1.tar.bz2=a0a30a805be9c43cfe52793d103e9f0dc6076d02b0c5af36d650564aa43958164a278958f7a7e1132ee5d3357cdcfaa8d59a4cc0bab027e288d935a44958b743 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.2.tar.bz2=d3218d01a18f5dbcdb65f216469a463215784170d32110f06372fda6325bc17e2c2aec1601a5bf3319ad753b123de056e6bee8aacdd7c64c4859570d40571ec6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.3.tar.bz2=4fb3bc10aa46a85cc37fb041d351b2a8f74d70c3de32fbceefebcd6e757cd8dffdfc86cd14fa6ae7d5273f875e1d4e13e6446b6dd1882c8fb015d1d34ab5ed2a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.4.tar.bz2=a008439e903b1e97eb5a66a88cf72c2e7438b12b78750411ba0ffa496c68beb8cacc2037763be1c8c8841fe9a248d4be0d0976420db0520b4b8456aed5480f3d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.5.tar.bz2=14573495aadfabb81b985aa485c0090a816f459a0db8e790a7d1bd948897cf650fef4e8aad7d2ab8232d2ebf56bf08363730dbbfbc2318625dcab04d3904b3dc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.6.tar.bz2=e915bc10ecd1129d7ed55a12fdefdd6b6fccc281cb3cc0790e5970978f17652068ccd7fdc160608cadc8556abb73a2c187d041899adfcfcb4a311285415145ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.7.tar.bz2=d80b934273b84d7ccc4e17fa07c9e0a0f95cb4a38224bd60ff73772ef7ecb3d1974e686bb10aa319642709e49789c0886f98f4fc1ccc5312a19ca19f03674e7e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.8.tar.bz2=9bf0cc35deab5f53900bc8e8264dc1b57f91a3477f241848df48109f4b5c97f3140470f523fa768a7543c61cdb7a93427866d871d09ebf8060a5cb75ac6d3790 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.9.tar.bz2=0cdefbcc88c5b9d34c08c8871c548772bd473dbaf54738f9855afddae8da5eecda607b36c546077efd0165114da385cd1f296433afe411f57a524fbff0a69291 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.10.tar.bz2=3aed1b12ca46e34fce66ac23bdd97ef815918275d91ca4723f9a6f2a2b93cb2b66f845747951593eaaf078bd0d982e06efa7641fc3e11d141b7605b086f93393 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.0.tar.bz2=ac6a699d5d08b33e7580a24c9357c0c8e8378208fc7385f5582f088a879f61e48a4654d72f03263a1dcf33fb0838b01c8c21fd39c5e2549d683466e0441381d5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.1.tar.bz2=77cb7698c66ccede33f558f6ab9ebe4be3b775a567d1d4dc12fd85d7b0f28d7bd446b18ef48ba1c879dadd76b50540b57f283e9f226e904e620afc3ba6585bae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.2.tar.bz2=9592c8e2fd9266f5d1cc780706f558e15d775cece995f5b6e933c54be7b7f2be2839b28ef1898b2072c5cdce36b830e72f967062ece4393765f8dbc88c6dff88 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.3.tar.bz2=8243575f30eb38409003b0450ddece621a589e29a4ffe219410820bc2afb97b7daec4c81d59d95dcfc83138414a2df707c925f0eb56907d565dac4bbd5a929d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.4.tar.bz2=ae16edab6e55d1b2506c4cb30d836639035a7fc153511125b578d6da8a8b40cd87650855fc6b4cf777c1fa0428c593325af88d9ad25d53acfbde0051a730eaa5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.5.tar.bz2=10f4aff595d12bdb425eb3268c868e0efb92059e6aed8683fefa5abedc1ef21d23a45e17802edd8e5e0924ba1c3277b653c0559ef4ad4c9dd2be2fee17226f8d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.6.tar.bz2=bc352df203155008da7a1099f7f7d26eb9f80e0d2e41c8adec5eb47f976529c6126bccc207563de87ccc2867d1e4c43797efbf295c9a7a4afce002ee19116074 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.7.tar.bz2=d71dc217011d154ef7b33780366bff07e4232ae77321ad6d16f19090f924ed3867c31f2af4aca4ffbc6a536b0320b676716ffb43e34b0323e81eafab13f17fa1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.8.tar.bz2=aae74010426e2a1288280f3611ba6aac842ff573f9b122fda9a4f1c514e09cb3d22281e6957b4acfcc753c94113852e083a9a80d0cae6b33682b83669c475eab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.0.tar.bz2=4a083c168d9facf3346b67dde02d9705109feef6fcd4e3c7c59c2bcb35c83597305e09ee143915fd993799a888d6d9ffffadb386bd57e9477312566dd6164deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.1.tar.bz2=58b30b00156691de2acc5d21d3255029fc3f9f2536e668298ab160d300fa0bf3eb0705aa524c9123ff09d770807cda0154bae012632b7e87120d7538f844560f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.2.tar.bz2=4c3c586765fd5afb55383d16eb9d0e7ffa5b1ff988a2b1d847e3f972a211b2401f035ff6c02d71de558cc161655438727079aafcc8ab80c97e07e16cd7fb1304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.3.tar.bz2=e66a4ca4b95496964ff4d77e36caf0894d913c1116f901c9b589da5a0e388302b64a79ad6acfe7eb1ca5917825bc0f866b482f074f1d5fed96d91e238f7ef454 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.4.tar.bz2=f95eee611be949327224b89942f4344e7d8e075b958ce3418b5874e9b23981113e4fd58254629fa9f6c2fdaf5840d44785ecf5f04433987f8fc4415df5c3e367 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.5.tar.bz2=447b28420be5b19f6b1381d232920e3c20bc894c2e0d1d2e394cc44e7859d02d177ec3ee09ce96e922f55b7fe2651918805f00fb783af3780e5f25c21f330195 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.6.tar.bz2=5f60bde5843fdc0b05bb852a2f1b30ce085dbcf7acaf105d5af951398b845c766113ff3740d44585ce3814b4953c004230eb4dc2ce8746b6236ea4b7a1d1cb10 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.7.tar.bz2=929a03725dba7de8d7eee3fe8987b858b9b9d6d377beee710af5c3e84b02501996444aa7b2c1db458aefc3e765da17cd17ac30fb0b4d77ab1e54239e72fa2a63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.8.tar.bz2=227849b5809072b3aee211125c2aad3e2e4984e9d9b4415dd8c01dbff70eb9c3758c3cf54f2b97fe282f7a42f205a2becf7b86e1e6ebb4a4d048ca32659603e1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.9.tar.bz2=c15a46ba1e89cc41523a21eec90d4e3af5b9739d27c2f2b51047f2c1db832e2773cbc04871a176f71e7124eb3f7b53262e40a1baab87262f8811a8d69d8e5358 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.10.tar.bz2=b83334e272e78995b699de28bff67accfc151cc7fb193d5c5746fcf06087643564b3a0b538cb64f50706642a620dba2cc54191357321852db42cc8c5648270df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.0.tar.bz2=82038a66827fbdaf60f404103b3956ead4e03c999893f0095109e7d853919992cab615f85cd96ba9158402b2de5a68fcbdb8b32e9d07c6f754e0591f72851b40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.1.tar.bz2=31e9f176ba61480b33b7761d2a19119a200ad61c8f85145f736eb196de50babaf278d023b274274c6a31f2173c5d022bb93e0f8d46a88223659d8ebcf6f5e278 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.2.tar.bz2=75d25fa6dc81ce8a62d02adc2e163e7c222c5946116c4880cec19460e2309457ee1a11a8eac94243ee8437514bfbba9ebee939218b6ccc7e5c1f15b673d432e7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.3.tar.bz2=84c93c85aa3733f2ac82e695c19e714ad4afd096edd6abda8a4915311d1f604453fc3fdc290c6ae1f9055d305ef400f8f8f152c5e15eb230baf7cfd5e192b7fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.4.tar.bz2=131b874ac376f42f3427dcbeb0adb0edd18ece834514ff5cc15f3b3e29b8f14697050051224d7ba2b509d428f780c653a4d7101149b8ded41ae373aab871e90a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.5.tar.bz2=f55d2ff7f2eae4d30fbc14226c928d1caff21db1f2cd559d3caeb0c07a7a3f034fa369d95f783e6f38cecb493d99aa1928def9d8574698e3edea3d33515749f4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.6.tar.bz2=06b12b2a1e85248311cf55620499806078b3b67110fb45dad9cb11cbaf1e230ce8a0da23c7de0a5abfccdeada8eb799f038b1a09980ee9572ec415e24fcf8c76 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.7.tar.bz2=49128b7845954f1f04502a484f17d5c0c6ecf8990047f5a383b2752ea9e09839e5994b210c2f60307d44ffa8b440472116fa1231ea899caf639e1b8a72f7f97c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.8.tar.bz2=24290aab4e0d48719659f8c1153d2b08020f17ae845e9ac6d6b6d3203e4a5b19061e907a214e8d4390277584ff4b46dd4a0113c6b201fa37e8a95c42fab5aea5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.9.tar.bz2=c2771d6b12f4240200926b2c40ec1bd3058c9ef213e2c6032e44799fa34b75b00f2564a0f7c0d9f972870d34c7742174310bfe3b15e2742a17ba2fa05e5a27cd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.0.tar.bz2=1be48c38da41f462c23d516f465ed34e2fe90c6fd53ee06f1efc9107077d9937413bee589d5d3384aee5c09da7087fa84864a50089bd1cf3c385ba3399e9b0a2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.1.tar.bz2=b7e1204e0e501312828ca0e30b77434b2d8d94581627196f0195ba93fb10a11046d44942393bd8a261585c564bc721313152a9087aa56b57b433ed14cc7922be https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.2.tar.bz2=e91a187a9e726ed26ddfaf09cc49473c8379545e2265934fcd1a1fa78ba99f9a119fe2c3c8247eab583389c3af7ec40a0e71da19f6ecc17ffc086759cebaaa15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.3.tar.bz2=77d9be5bbcd115131ec7c842a4449729d1515bf2106a6a235472dc96b58a56873c2d0fe6a3b824dd15ad00194b30e72a75813d8b4e10ee11cc793973130e2401 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.4.tar.bz2=a2e5409a1a88557bef747ca9b1ea65ac90e430500a8f9370023b4314cb5d1e0679a1b03761980ab2e933ac3521188e2151e521408e33cb4dde5f0bf802d81a41 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.5.tar.bz2=ed6288a4d81a740d722b43925db8f22f794cc704bf834a1f9c844e2072baceb8938547abb8f4fb1a50f92c34a8616904fc2679a44bf4adec4e78ce00e8456b45 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.6.tar.bz2=08cda5ff00b9297b46d1fb620301066b21240951924337b8b87d27526e55024e61121e51d9b35feea2ac5eed4027658b39ff487195140e7abe9158181c3349af https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.7.tar.bz2=3cc5695814c4ca49b6a0d7790093e85f5a359c5411618a12e60f4bda75c3635b94736762983e287cd04ce3ee3155d824bd9bb202aa929f85387a741d1685dd06 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.8.tar.bz2=91e371298a6dc1083c8b6265cc8d3d388d17a21d59e0103bba7e68640f80bdd12b98547584b1cd0feb7f8dad6ad530ef5660a154075960e1a76061d534609296 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.9.tar.bz2=7e3d0f7f42d644cf4eecfd88801afe088260d5fc8f490895378d5e4ede76b2bd67959b9803db59f7b19287801df43eba920885aa1bcd29f60d225745d67093c0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.10.tar.bz2=64683129da9a476d268ffde06bd7aa1c67b3c7c97b539d856833ffb127f458a55176d8b4a101e60b18ee923485097f3bd98e8216c3092c3d0527f6111cf7a051 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.0.tar.bz2=cada908be34428bc2f302bad6ebd778a2c7a8e979476e00e45c9444b65d7f48f397b838549d56ceb91f0e5593ffd663e9facc4ea5f5c6a4aecda85a5a1136496 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.1.tar.bz2=06cb5f2f0c0941802119dbdf34995446d6d69ee59eed9a5e9d7f9e7f0e14de440a9e77eee330357fa305e81ee39a6868651c740ebc91bb9a2085a74b33685f4c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.2.tar.bz2=23654c65e6e62354857f86098852af0ba50a15643df5e7f6fc8b710e35a3872f6eb7dc1bf9266375361f696d8ded0bcdb9ee9acdc8d0c975955d299292da7e21 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.3.tar.bz2=ac02a93a62c55a2a10dc260cd52749bd8f4bcf1a2d43dad3cfd2e5c0bf7800c51a5b00779526d84f759f6d50ce673c7f3e526392c4ab68322649f4fe980f2ac3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.4.tar.bz2=88651ffa2f1623ca3b93b60a591e828ea0dcfc73daf1eead2629531beef291331f8ed1a4a33d682828ca60bacfdd7fea77bcd67f1a0bdbfa9d1e4f173da53208 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.5.tar.bz2=001486271268cd1d2252f46b32001b25d493bbbc8ce981ecb608eaf8d2c2e6d6361f6d9bf052b9b2d7694e228bc302a1082689f2038564439705fbecc00de1ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.6.tar.bz2=a48c974f341cd10143eacf46a9d0eef45cfca3ed91ebc9f7fcbba73d408408eebc60c55e15dab391bc4a9ada6777e2be3ec4b9e849927c5782f4443a813a6ea9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.7.tar.bz2=b9e99d1df4a772441edf7fa4e05dd5aaa62efcc5a8c89fee68aa80c4bf1d17ad0e5ecae5682a10d2eb0ff78ee79c583f0cec46f5ac11ae874126082b9f8d76e4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.0-preview1.tar.bz2=8fe71fdb37955b031769359dadc5062b6c15e0618fd8961c932212a6a2610829aba8b1dbdcf4bdcc2e133665e043b29088f714874e3ef3a41d688b7beba78928 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.0.tar.bz2=c51f55af33e09ed425715dae0dd59dfa253e909bbd44b4bf3dc34452656438c23a754f6b2ccf0a3e878463519043361dc7ad8a757c87a3ae0e747599547dc7cc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.1.tar.bz2=fd09a4d721388c2b9f2fd09b68175dbd620e11df02ff7cea4e438d3205494a9883c25def06d6c1ae4207e7f82bc48fdd122fe12630bb9af9da451ce6be19d86a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.2.tar.bz2=2ade19f26f6e2eaf65a8ac3e9ca21cc8fe04252df58f9b14c6d0f92aba3c0eff27b1c68b1b05041496c367051e020dca7b0c64bf44fb07b4fbdee9e68b78fdf7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.3.tar.bz2=11d81f71ec3d293916bd6a00d28dfbcc93e721d12c6137fd58febb79e7399f8fd1ab5a66915863311db9539009dac06612a4b2daf0408fc1f1e84db8f8f4fdb8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.4.tar.bz2=bff3db8c69e85d503bb0686644f2d60b97c599e0cacbdb7cd4b18d630c50d04ed0dd90ea97be01c3b3220589abefc1e4dbef39246860e3c70993f0f2de738053 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.5.tar.bz2=32f69f0e33f7f7d41f4c0e5c5a1cd859a4c6032b0978c317ec3d333da42047b7f8f8dee9c4d72afe890b47b9f17901139142cfbbf228018d8ab5d02f7a01f0a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.0.tar.bz2=f7fb515855de32badd6e5ebbb03980312144b69dd8b696fb56320981e4f0964065cd13853a34dd321fca1ab160510dee8fc3b6c99f2a5e007e6974d70a564db5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.1.tar.bz2=de183d962dd4a8c95bea54f8740cc34931c2d856783fe7506f0252c5c71bb7125db00c9c7eaf8e80f8fa1c97208ba4b2a4d6c1a76e38d2b6251a92166749fb37 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.2.tar.bz2=7589f0292f72a2217e5024b51791f9a719ff0862bf39480f1460b5106f1c11172c72ccc1fe2a00b166d80610d76fcbefe64b7c9df0ed3a72c58964c2402982c0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.3.tar.bz2=d79cbc4812ebe9b308a145e96f6e7f64c2692b04370ecba0bcbaae5427afcc7e57ee83b4537914b6b90494fd45a11bbf2b27999a7a74c7fd569687a93c43961f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.2.0.tar.bz2=2d11ad1c89c1ce9873dcdc87c41cf38105b00e265277a173d721fce4bd350af73caf01fa4a5797e926f1a0cb180f1c6e969149d1d524c4df797939cdbbe9657f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.2.1.tar.bz2=cbfe8a92e732675ca1f7d51c04775dfdedec1b9f21b3b7f0760ef61b7c375cc4b0758a17302242087b55faac7c3f1217fab0f6a2e713a05dac082cd6a5d5df3c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.0.tar.bz2=172189c66b3c721e7413f0088f50e4eb8dd80d87779c3a4e74231f7036eeaacb8e373b7f5ff017f8aa274c1e1c872066f2f93485a2a369a7e9b442d157840bf2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.1.tar.bz2=829fcc1a3d878ee28e89a58a2f6d4221cec115d241a007b048953672d57548002c3a105ea4e65e344137091baaf5d5c54232a54c116afe03d0f3d61c07547c2c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.2.tar.bz2=ec2e7bd32e2d574773486e1c1d733611465765cf14895fa6b017b6ed6301ef40cd062496a3926788851e7ff3bdd62b488d03385aeacc66bed53aed18a6dec225 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.3.tar.bz2=79f822725d4e3bb7daf416e736d87f3b01c21d011423a2b3c65d9019a47ad4df256fd4a1f171961267ab8f20387019fec8f3f4ebfb6664f682bdf36914f6a329 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.4.tar.bz2=aba571bed773554b18863e6b942f2bca743729834657689a016938a34b7e4352e68d9fffc440b2fd4fcdd1bed4d1ba5dde689da535088d7ff8ae7dc364ac3b2a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.5.tar.bz2=0e46655028859f5abb64d71a5585db638d00edb9d20a487739d307bc1dfa2fca4ad196e04044dceab0e279286379e73110590c772a06786214c4eb23557324f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.6.tar.bz2=177e9f0a193f9dc45f8653306cf6a87bffba16780220fedbd8be67a3608a8f8d370011f3993590d58805a8ea4833d95196385fede4b513d908fd4263a82f113b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.7.tar.bz2=88bfad0d6258372d4e9739613a07352e954db3deb43c0e2d2a176f9cf55bc5e2df73e4cb04bda75e2dbb210799649f020a7284cd2acb5fb92d2b115a933a4f03 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.8.tar.bz2=3710f83ed7f3f30c9b5d3dd515c168534d01811cd33f20d3a54e654dfb5140afc8198f46dd823ac45072a83d844ad866af1e2b8265f54f9997356be88fa254a6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.9.tar.bz2=078ce0d7433e63d947fe4cb0cd5a14e6f5fca00b7309d7288359ed90989dbf618bd8c1f5f31b607f3ad6b0cf540d715dec2c38cfbf71cd170e572321598bde7e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.10.tar.bz2=f97f877f7afa604dfa7e8f1b399a4c034e79b616c95bd4e48927d88d1e8adf8e203901fa178f93c6af4511d26a38e2d8cced7225c2e75457bb02dc27b8feedad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.0.tar.bz2=ad619ccf77132166151e4982996e93135fb91d97701ef9aea12b6bd05e18e585dc4d5fc34883b3369ebba15474741db238fb90192eb273dd5428864429525d9b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.1.tar.bz2=9094c9bbda4c3d830382e89e4e1c24fe43cebd9d733b6878a43a34d679092bdb6c7b23cb3cc08d4efc6e15449c68862799713006703f95e2862bad1c0b0bb94a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.2.tar.bz2=54c8fc2f2a99f834292b83ef8e68e2b120f20fc4ff74856c13137065b95262f62188ed5c6ffea8fc4b0c1034d9f8a1b497878d6a581391d422994911f5fcb35d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.3.tar.bz2=b26daf1825cbc9cbe51e1abea84f3aae542beec7c26628201325026b4d4bdeeb46f8053a1c105973242ef532e66bd4eda5199dc1aa4faba1a6393f9cc126d856 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.4.tar.bz2=e5718fb13f2fe7f6b34fbc2b1a6db95576fcf9cbed481fea59fd4dd28d064104a912a1000533810221141ec09e9fd8d1e59850ae5a26ae441bb6d8878f42c418 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.5.tar.bz2=71ae2c5bac04a97694310daf76e896a1a02c245274e9c96ca96740f78a0e245302564bce757f1688d3e83b7c0c88989f702814c434101f8df786c1276a4f5a2d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.6.tar.bz2=1693ebd7cd3a452f51ce2ef32144aa36f6fa8121ec68cd0fff715db8981214ea9fc729099e4495e1e8bc346409551d4b93c6c3803fe187fc0c25360b80caab72 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.7.tar.bz2=53b05c51b970a239fab953dcf3bb433f59465fa0b4dfe58066132a1bf6247cbe4adcafe41b219ba453ea392f88a521349df14d58a91a855c53c9b9ba4cc16c4c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.8.tar.bz2=b9b0d99e590a48ceedbd1d6318c29b8fecc12b02ce5a6f1555593eb1b3e284c766f2f8800ee3070fb7a041593e4a3806d53590be760381268ef0f9588e127b08 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.0.tar.bz2=90491968190f4809fefb4068fcc37fb7e2ef179454f57c90bf2af308541f1ec175a72ded53202c1e86dbb63cb6b47678656f753574bf6ba525e982f3278a7602 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.1.tar.bz2=7f9ce1b6872352a6feb539948d26dbdfefb3d4225ba582ef8730be8fd85d5c350bd6f21346d43cfe26a8501c4ad145d733d94da5dbf25b15e7610ca037ad4227 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.2.tar.bz2=8544797f46d54cc4098227809561023bb7bd01eb2330724a94921c5a79ac64b44bd56069d7a77a3e6d2d3dbc504ec25157daf7fdf921c3acb3b4289ce1bbfb5c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.3.tar.bz2=fe086aad84ac7fe8009ea2bc16f0ccb7c60a5fc9034690af38fce1a05582a6226dc3d7b80d08d1952d03a9abcebd7b361f5fa2d506d71e1f5aae9b5f31ac22af https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.4.tar.bz2=ce06ce97ea1554972b00781332f126e767a3ab98f5023d3dc83195bb36b954b1b497961c74bf31340827d9a5de2e0bb34240accbadad550b2e692d26cb097d4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.5.tar.bz2=6fa248065a48cebd1e9950ae07f3e653b3e29e369fdd914908be0b215257fa2766b0182e392fb869af51cd498e258435f6d9b45a03452356dc08da0e96877ae4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.6.tar.bz2=ce912342033f395ba6298051b081c89832f656d61ecf2064e9568692552a938599c816d2cd1fd1f9bee721611f890b8329985c69f4d5b2bdbfa6635b48afe3b1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.0.tar.bz2=cbfc7a1cddff0385187a7bf2eb9dc71a8d14912cbbe4e9529b79414e49e681302ac9009b7c8e6fcf92a9f19a0ca5053a6ed25edfdb510e3e4e247474d471c58c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.1.tar.bz2=29b99b3e04325ceca89b64c7846aeadb412215270f6f7c390fb1e275ebe19b2faef811778c0615b2d4720ddd942a2cc209c72e623f559e6c04e78849cc1c1b1e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.2.tar.bz2=f67ab3ac13ae90622fb3664a869b0c584b97df0500384a28bda9c5c36cf2a27ac1f66afafea08bb29bbfbfc1e0ddc444427993ff4163987f5510c4158a90a96d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-3.0.0-preview1.tar.bz2=aaeeafee545dd1ba1c4df5b7e46e82f7e89e0dcf4fb10677b7e177e66f86e6825e85fa5ae3e74062363883768b3485495a3378f97693d45f675a6e547e989cba https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.0.tar.bz2=3e78b2a73167c3680aebb1ed015c583d4f6c58804d3b272253bee2cef37fd2d1cb3852fd2b408f4af1abca17725d923a1f28d40d2a33896e5cc21c4c6711d7ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.1.tar.bz2=14e7962e180b9ae16607347ba5360b9ec086eb8055b88d2f60b1c9284fafd93fea905aceb441f07d594a34b53647520f9dec38e4e9f6ad3e5a6850750d981a27 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.2.tar.bz2=5b7d88d4405cd45a6a720295cb0b7d3152dd757aac996c8d1a576c6ab2a45cf9ed0b0ac006423791cb038a14153048e96308ecc8ba1e761d4b7671dd6f880d15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.3.tar.bz2=320734a124e26de068457237b5f973278286d7e529e92405c1b856b6e57441b5e76c59d0f519fe43fbdd2c8c48c9dd37dc5094831c0e6a81d804e88888ab6237 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.4.tar.bz2=ca34ccbfc24adc4b2c6c5c0e3b27bd2754c2c5be61e9dfa7b919b4902174e351f45128d887c179c37ccd5163a7f51c213fae96be4d0c356e2d7f96acdd4f164b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.5.tar.bz2=fabb151c29ad7ef7432efd4d51ea1e20180006601617ba896f8b1379555f4088d398e96f7bddd7c9815b266acf5ea94527ef4acfad2446950da6fabc3770f788 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.6.tar.bz2=2728c38987d41169b7110fce2b507b5d3e971d5b043b60c9a3b8d6d385ec2a40d24e464f6cf081844282d6b9fadd4abce670e79f02e4606bdd5aeacd1b57f773 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.7.tar.bz2=f98f4dacd9d8c6c9515ddc2597da8b868c66897577cc5a76819db742f3649881ef5a7f85a880f1e359772b1ab08750dda6fa74ee826938e06b93a9848699b929 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.8.tar.bz2=47fb4b41e60b1e536b3a54e18e9ee92aefee7eef92d49716b46884b2a3d73a02e88e4815df64baedebff80e9e17ac7b0af6e65b406a2c53a4f90421dbc948415 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.9.tar.bz2=c81ad5e16aa18beb7c34eeee68ffa96da243f99ff69cf00932ad5ebe427c1f80e3f7fee31b15ec0d96c1be5c2007dfa6e96c38114f61e958c6b7ecc40270db4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.10.tar.bz2=856210b3eb2bf338c5da2668e830b95d48feb82c1c4407371b18c772df12878703a9eec948a2778acd098bcc8eb402ba6d57b2b935766847f3e652c3dadaf6f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.0.tar.bz2=6ea5e6338319e5d6861d420b10f93b5e6634a9925380c61acfbb258b6609ada76bf2a6b474b53a30b0a81f0dd81cfdd1e610b68698df73f69091f479ad39bc63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.1.tar.bz2=8e8e4ef137b9394ee34b760dbeaf4d23953bec083e5775a423ef6c16b75faf8bdfe99df975ab6b6d762509536b017f3510a9a5e9ab63060208edd4d2d96371eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.2.tar.bz2=756c9ecbe3c9801a0a364143478903318c524f7aba026239a1fb42d7390f74110805543a9ac2a9f8bbbeaee48bc867fd15d400d8bd46576bf4fd417d6136a3b2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.3.tar.bz2=594ff95e33d0f7af7be448a781ac68f895f8344ebb1c9a03898813baa5963024aa84b11baa405fa584070e4195fbfda9b908f1fe171f75f19e5e1d7879bdaaf9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.4.tar.bz2=a9703c6edcfa2ddb87bb73c070d963fc4d59599919865be9b1d93989906698c6f3b9c4fd7f2d597e5d710276555de0b5865676b92aa3aba1f1f41be4052bedc1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.5.tar.bz2=dbd91cccc0a00a1ca7e901d56f9840e62e4f139ff4dbae530169f41897d06523c7e8977138ffc6212e1b60589f3091a4e2f6b6714c0fad22fa65e442b248f61e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.6.tar.bz2=ec967415b5bec95154cd9ff8338a602a6d005fa647afb1e1cff54a0fd4e9c0697b9e952c2dfd8e4b30068a697f5391b9cd165d5d33f3b146fe35f2a8fdf9823c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.7.tar.bz2=b8786ef31db7d950b1309646f81e6a99d56b76223bb8d2d20ae045f09917332a869b14cee1bf235675c7d8eebc6942b5ebd6cf0cbd290ea75d9f9be1475352f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.8.tar.bz2=4d949a715a04cd45f6817b1b26093f7bbf03ca630aaa015972e7d0ca72bae094add18664e1489ebf8ade27c160d2fbcebdb105701d719461af13c4d5fcf2cd22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.9.tar.bz2=ec6cd8bd90ee99aa6470d9d524d89531f96f992efab8a9d6a709a3959ef4c314828276e67b84ed97d415cb3e0c837458d13732dc940c93d4d069d9b881d7f92c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.10.tar.bz2=1f60cae30581e3467c7ec07391de5045f238b61a49661ef0cf76d72ef78d220b7ae70b86b1e72625cf37085b6507fb1dfccfbe5554195f0c6eefaa996e199c16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.0.tar.bz2=343f5dd6703b6b58d61fabefc8a50ce5d02d98c32c8b4e52b8deacc9824369a9f0dc8faff69e90ca7585a194a4d742791765b16c3f5e2417b0f54e0e6f6220b4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.1.tar.bz2=aaf7f9e30b3998b8586764f61d09e434c32aba7479aa79fb6afa71ab11c067384ef3a4b9215a1a3639da807f4f642b9efc62b37b55e989b7ed7d75cedc7cab40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.2.tar.bz2=b834ef95d52abc1f0c224193391bded9b4d2089c694378dd5aa45f8b2b1ea41b1c300445f766841cbb8cdb1114491ffe0095f518e1600746f5f583dd0cff9c1f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.3.tar.bz2=9df5ba9423e0a8af9d825e59f8c69889c70af0f6d67f96708a02d7d61260c83474e2f7b2f240af399911bdfc56850255b4f34554f7013d0417a13bb782403aa4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.4.tar.bz2=1d4b55a6a34249e82880fbacfc1d97a093600005deb982c6b42ccb14bbd7bf1db14e0f6d73bc25f1addd72378850f7edcd63738f2b3cbab569e34e89d563188d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.5.tar.bz2=29a76dbb28d5b63ee0ce64cc2e7d022118350a550d3693b8e38d559bbc4f42fdb6b63af4bcc4ebfffc5c0fbabbf2e18db7228e655de3bb416e344a61737870c7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.6.tar.bz2=122322fb462f8fdcb065e6f9d9968027c320ba9be9ad6fba9011760a7296cec1892a0780d7436903cb7763f5d18cce11860c5c7fce82890eaa139a94d5e89428 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.7.tar.bz2=0c17f52a74b73041c588ed76f73862d179d7b9abf9de61279dc74ba7b7f170179e0db5672a403dcc209b6dec9a865a88a382f5df01f5e6ba4cfe0f66232b4a15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.8.tar.bz2=1a30bbda34fee311762a2f05ac7fbcfb4f373f8840f86b9762b0c07f1cd397e3eb3be83210221384333b625a243c7161ef4f368602a613760391265309e4f304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.0.tar.bz2=edf31b2dd02208c96be25c2f4f7d35e2b122e5d327133545e16038836b848b90f81079be4df47c5493bf4ead1d464fa72a8d0d405bb2509ab0db6335c58ff793 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.1.tar.bz2=91cc7a9cf493c7361f3d507cdbb8e258b7dd710100cca8053b77569c07c04fbc2f72fdceb9fd9a3a5d01f4c423a206da97730c356d017157bc2454041e1f1fd4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.2.tar.bz2=8ea603a27560ddde5fc639b86381a303f886ce80384d8edd0e7bc806f10649760d75a76dd5f2ee445371254e727544ec12df49d7fc8876890b73237f4eecea1c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.3.tar.bz2=c42f24668695be5c291836ae6f39b4366e0357c9bb63cf8be2ad36cefe0c6d19cb921a43159d49d4d062dccc15902ec1698a1a6842d13ccaec45c6cb628da4b7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.4.tar.bz2=3ac89131407faefde80bf2e1bed4baa51c371ab4bffc18c8dcf2624f4d1068c9f933eb66486a2bc7c6c67f674c5bd06747bddfe1f1f9dcd939458a08e1bc6108 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.5.tar.bz2=8ca9a9387b8cb434828fa36e5886bc8a28d70fa46d3e20df60389880477fa2ee54fe63c0c14611a2cb0168ef1149d205640c6003e6a507400ad5fc34fa641bd2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.6.tar.bz2=52795cd7d112ff437adf603f58130ce539209628d2224a685d060d67a07325717981fc6f91736d4abfe014ccc8057bb40a097fcf85f5046aabde0019d08bef16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.7.tar.bz2=bc179a31c746ac6e632ce08f57a8f403d4e463ad72285c0ce008d7fa39b88a22be3a43014c9eb019f6a39d022f9448ef151a8d03e89a4d2e767c4f77684e3750 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.8.tar.bz2=d693e3a800c2200c74b24c207425f41cef206a0b3f20625d18b1590e9891f409d6643ee0e7ab8fdb6e1e85de6fea52c6a307bf8f65324ee0f9ac33306ed1e876 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.9.tar.bz2=4b6cab99f6b7be7705efa5eb6f321b5eeb1d1c6e96d4113bf96b57378aaa4950b39f40ad555f630f17d216d235972f028617ea43c28b1970772ffd16be3d9a67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.10.tar.bz2=40bd90d231fcedbe34ec9963eb59645fdd1036b03056b9b8fa3b56900deb86d94e2a256f90e6aed297288d6797857a3ef9fc27bc6ed05c017b5c8e8ddc465df1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.0.tar.bz2=c1df39ae526da7ebf87510017d7694e6f78c59871baac4e9c5f2d13c22cbecc30925e2783ad93f741110b7c3802e9f25a6c3ff85160b33a4080b0f1fb02f7740 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.1.tar.bz2=930f6f7f654fa14076c84365fbc771d5b09679588c4c478d8f6944770c53fdd37213bdad159fd231efbc079b85ab7ab648b0a97fafd666c38d0e280046c6e2ef https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.2.tar.bz2=cb62ca82d57dfc0e21e532d4b523f49c559c4ed5f3d73adbd9d650bbf23c694d382f3cc25eed6a8630f23e4780db127b4b8b6ecf6fc24b0f6febc820dbc6af3e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.3.tar.bz2=708209a89a18cd99c02392307d2bc63e46bd38c72c8ab0e982b28285f8e006d4ed77e04da3900c880eff01c3350033cd00ffc3be1d3a12c4ee5b263282f0dd05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.4.tar.bz2=c94f5b3129ff41da1b07da1cf742592e9822febf6bcfd0e9eb7145c00b732fc66625056bddc72fe9b631742c70d0e731cc6a9a16a089c7b559ae963b072578eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.5.tar.bz2=b4d20f79eebc5496768fc6adb0735c6a23cffbb39ceaf9c2da42851ff7842dd2318c07877d89564176d206e22b8824d2a3c637b5ef02c5caed0b2b5276581032 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.6.tar.bz2=a09ab93c3d6936d30065236ff2abbd0295988a9359f5a76425cecab47af0ca5b6829530d1708e9ddc9e78d1fbb7c0359b9c7e90227870537d099ccc89c73844b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.7.tar.bz2=f6086c879f8737eaf6eef4461d23270e9e43811186a22f35ed69a8303eb933136e7a690bce2d9e18bcff730725292075e09db0f2384d0e26018b7f2a0df70b32 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.8.tar.bz2=62c631026560ee310a849483f1b48690075477942ce86e0564e92f5ca7834553c435a35a1d6d8dd957c3a7be24c63c32104518995eb3a96e61066a04887bb0d6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.9.tar.bz2=0f10741772d2498167c1eb2aa263292f99748518a4ec03dc19440eb5befa075fa69e68b08a09af6eb2e02e462ff20ab10e4121cfeea7bdc938c04762d81fbc4a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.0.tar.bz2=908132a47bd996f8c76bed54078e71abb154294f97dcba779b4cf0d3b82e31c4635dff89e97d5f6b4f1d797d854c6d020afdf9dc77b10c0e522755fa194a17c3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.1.tar.bz2=39c867ac0af48410c0bc6b01f1ecac00616a59cc07f3f5a3e7cfe8f786b70c7cacab65550dfee777d11b8b7a3ac173bb22c602df370eef6a04b40f8e539025ae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.2.tar.bz2=2f04566f6d778121281bc6ba23ec57ad408049e649b351585bc9a3184848c71873910e159f7fd3909c7372378152f5ed264070aefd45933b97980e80f6df4deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.3.tar.bz2=940375b11c525e3f0bf00e19013eeb886bf85b8d8b66d86d53740170b0ae16b14faa491dbcbec29238f875f84204cb0d52ade17c180d71e129cef5254f338f0c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.4.tar.bz2=1c9d41d7ab7bd69d7e3baa3c4149b1938cc147beb2a63923dadf2fd959732c8cc824e2add0946bcd62f44b0e1d509b80b4796a5929841cda8d28f3a8207b17df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar.bz2=f47443a53e3008cb7b7b7afcbbf1adf44887769e42b3defafceacc1e50e349c9000b98010f853c6b7cafdb54b85b640732a56a8e11ad8e58fedb5fa4724f68d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=fc1c9a08c48ad91edb4afcac5244f386d63940fa906dadaabe02a1eb025375443c8174a6ad1acd50f4583d6c57a88feae86e697ec15c8a25bb49f280b1357783 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=aa611f7c350374d2c5c8652a694022e038cb5a65fde795c43e927067f155d0ccb368b281b1575e679b84cd7ba6042216dc28149e138256faf62dd3060ec0a6a7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=ab04071b90ddb81b68f064fbc9f2bf726729220e4359113556d9b71f3549483f122b796b3b1e4dc8404e6f44a4bdd02e9db2c8066974acf190448c4d5a97dc6b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c769fd3814bf31728b83f2bcdaf0928e6423150609f3db903631f9db68ce0a0f9c87bfce5f93983cd962662148a66cc55f5f42bffc1a1b5a237e6938726629ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=c231f8ecd46760db49796519645bcb5cc9fa1c0582abbc419a2ca81805c81fe8912dc32dcc2c5192ca9ef0d502da8f61ce1ce7ecc87b29edad3a144a8a0c200e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=b41557c83084c8e5bb263aa944499932ce7d84457e4e307f1cffecf62aa44f8543a06299e38fee17ba64f8952048612f9289e24c35acfe2ba02b913c15dc1405 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=001d10af5833a03b42d9a254bde844731d3a796d98ce2efea90fc68e4638c7cc3be31a34fa163d4c5ac18c60e685e5cf2ccf88fac46ae6bc587a48ea35cfb09b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=0a8681afc19372ccd9409bb017967f86c2e6642e083ca47ec904cccc34242040f710392d916a69a327ae6a0bb287d97bc05bbe116a1d93478ae282b32e5fcfab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=e505ff2f00334870d07f4ec9348648b7f3b91dbbad1fddb2f60f7a38572a66a7bf081fc7b386f800d86113aac1ce3cb739c86cf0d6da2bab916a4432ad557c54 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=aee6000ac886cdd4e4044a7b43ab20d54d1e99f6b893af69d0d7e7a202f4ae861f939898580c60996b0bb7c6481eecad69a20acc83c75cc594dfbfde3a22c476 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=86f4e6948eaf2586e018570f09232b94f907766590eb75f00992531ef74676070ac5a2308e121ecc1c23388ece4dbe1ee8a4b2a7ab99ca00a28d6583d6df3d0a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=1bf867b0af84eae4e7996047727fbc7ef459afd3b2ca5885f658a74d62910d00eecddbf0c11b23265c625c26b420421ca5add40079438edca8eacd8b5c0149a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=92a3b217079f9d960cc4fbb5908f7fc7ef71cc3ec8e5e404341e2b8875534c0542167d03b61577776e0b0f049f9ba2e3235842be381b4d484845768adaa6e3f7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=608f0f9eafd72226fd1b39f6c92d0f1c6d3aa7ede096cc390fc4f8bee4326b0937767bc6de84fff536dea48cbf9bdb8ef5598670235e013ccd630b06c5b8fb05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=40cccacc66cc4b7891b01c35375ca913efe008157ae540308b649e14f5753f34f1827861c6e16b500c49ac95e1aa22e1c01444faca5dce71f981452a9e0f1b67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=5a33d600e55f7b8755725d7e2f2102cd76720d524d7b378d85fc21ea8d853166dd97e2e615ab18f9e44122e3404b439dd123f8e23d6ade5328982fe72db2af0b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=37e3a4011b3603807c6e0fd48818b256caf272b3720ee654f38c0ae202cffa21600f9cc751b5335b57905ce67db185b37f548ac9c84d6acfc567f0ef4866635f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=6648c1b6bd962e30e89eacdb6130b1788ccdf6ed05ea13eac32eefc222438a298de8121937262851cf5c4cdcc1a804d5d8bf19667819db6599bfcf79e57b0e17 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=ac690170a6801fd741efb88e67961c0c3d717029b3bd9c6e243074799641c940416fc9cde7b4ba2c56e79551d6cb7fe5f7977649404da0d20d1819d7d3ce0bd3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=e6edfed2dd9d6649c47b1dc1b102f933f76a148e6dd8441add2316073dd255cac851e972366e4821fcd665e55b375fac757d189b7552baaa0b49e82349c71b77 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=69c4895076690037199f2a9b98e622f6b5e3c23ea02de79bcade6193da2b1b88ed0c28006059f4ecc502298442275e7e7324232de04a2f0ce430665057410a05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=175777563303c6d6a04393938ffa7e36e0bc6db33f7d2cf1d42ec852b41ea26dd7d50569eee4cb00497e6bceae95592365ea6718a35451e5c929d8a085aa9649 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=b668f0cd853615fec38253b264115ef0fedd21a7879a663ba844f4c3fa8b87e5ccd8adffbaa12ffa3aa16b108a2a439cecf827e7d8e19ec8041d46e758abc391 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=2039b1fcf55cca35ed3c8446eea45819368016ec1a05a5fd4c6a761b54f5cd56cb3301d5d2674af1ff75bda41eba41b7156e71ac48b88ca7a6474f0e944efd89 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=b4bb324a53c316da488c5f60803933eade9ad5c59a6d58e76787d2dd89dc2d2f18016d2ac4ab0853a40976b4beab70864a9c2d23de194bcd63ad089b2159fa7a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=3a9b5868d707d6a4580a44ab7504cb46a2713f78918142b185f0d62c5b7e0dfebc1ff551b2a52e9726befb70abbde867d2802345a01fd3e4568b9f58ac83c168 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=39007e736b28ca599ea244bf4e54b52e86597c950c0ebd8f1696a02c8eef575a734d089b52c7013d00c02aeb261dd7e2facb45f24b34c75c4bbf14cb8bdc3ae2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=0fc4e39f7382c29fa2119119a78040c611fc8298bd4765025599d3018775cb2bb28f51d38efd4306e9f04eeea20e7c2365f2fbba1233e0494a8258c3c184278a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=5dfbcefa70f5b81887d34e776713bb9c6f7bcecbda8f1c9561daa3e235c725417ab0a930f594303723f226d36306e6a73f228abfa3533280659ab387708182da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=00936db899bca33dfa8d0e6ffd4bd6b0453ad5823a450e50e3a055ea696dcf94b317357732e26208a6f34224c33a8b4a6130e5613262d62381179a52cc8f3a1d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=15b816d190fd58382a2f6f6e087f358b54003f186462abf59dbef545af9044a2b9c65576119185adc6bfd9ebcdb49f03a2a268eed4fb0f0d37aa35fa18adc1fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=3a481c35668be459688a66e4e480e11b4e58c13aecc3751da9de8a3e3282bb4a152128528a804742aa0b4380eb537b666a2b29fd79be0d6968c4ff1fa428eb7b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=c604871b39f396c539c52dd4849d1d42f37530003601f60162860efc777c85e7e1a1ee88a77cfc9ca8ca20f0448a5dde4f39cbdae67470d8d2d283d6fbbf0239 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=12042b5c30179da275fcb6155142ff2787e86cf577caef44b7c4d8175ac671cd461814e9a19f4c9b1e78bbdf041fdd06bd463aa972e194caa91e80778a56bce0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=2bf1c13616b2e255b8c269bcb2f979a45009c079ffdcb10a13e238e5d13b0978e8a974bdc1e7bf8519e15264ed5f577cc8f85a5861b3ea3a4589eb78138a3f2f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=2e7876c8c8a1f4e3cd1913023c564d9e74972ce427e85765bbe9ddf237285d7b96017c1ed17868eb912509881e05aaf96e4a6b353a69989e61c733b346511715 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=06de4f6f2761bc58d94659f826c7c86be50192b7dfdb5c8b6710b384a50299ad161309e2a8c333fa5249d0e7112f74dd0c0b0faa2950a6e74bdba68833f68702 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=597374487d196abdfb389c79d7d09b81026fe3e8043f8811497646eaf47bfa432cfb96e2af9be1a35ad2d05f2f5c800afa3f9e5adb0ea2b2d31812d219232a00 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=ba56050ce3fdbb9117c6c9e767f818ce3d467030713b7693ebb039f6888bd5d7e5f7b1986ed117414037e56e550707c3625a88bfd5d00d7319d0c7ad642fc811 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=395facf2f7a15eecc94e554a60d87c269ba70c5063b24b7bc504f579c0d12a7d858eb0b98c502016ff8bf02aaf11ef765e2291b542759fc96affa186206ffe4f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=d1d527b2e95e3a16f521214c5352bcb379b946e8be1a943da872aff0ab4b8edd93a507d693abd7a8ef1cd5ea1ee6e6bf1f838683f5a447a6cb7992de61f744ad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=e47a50392c4f3ee13a565103e0c5f9474ba0a8f5ff60fc9fe7d290b7f5f9a9ddec962fcbb103a8d3b9c7765a28ba59237975f90aa3637a06a128802ede28b3da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=77fdbe62d1694732a7307c29b4f45d0dcab7e8a729f04f45b216345336c5820715bf3f8f7cab52175c4ca1a431d867c7feef7d802dec61c2cffa4abfa8746e90 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=24da0cfc93ac536c505dfaf2dbddc7b312a3cc5c72a9f47e28b3bba760a53b584422b73da8546ca01cc44d3906a31eed7f27a3dfc0bb574f01f9c08f7c589d20 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=aee8267c4855e95a55b7ab858ca6359d635049743b8e38d34ad1430522a0cd746cd572e77884f7e10af14a731ccd8ebb9cad6ea035b0fca4ae534913a38f43f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=ba3e66bd3dde28e7193b90c44194cf7732d294e592321c482deb3b31ddd9655630f5b04aa89a43eb9d1bc222da10884e9da332bc9da78e9e1b655300db52a444 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1df8a2ad9256985b4ffb3da5b545af4160ccebdd8265711d1b642cd2285a004a42cc2ea51ce3ee78854e599f5196c66448b8e0b043846ef6e6bf992828aefb6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=cc460b3d17d460abec27d77f734e1c1e7a649769c3374f02d32a4ad00f989ff3150dab926a203b209c92475100667dd524774fc37633d71f98737ea2d8868968 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.2.6.tar.bz2=335cddbfcf26c82cf9bf9c7ec6637c1c3e30e1b10d00553f5dcc60822d40b560e412d404fa65faefbd1c9022a2d7f0e4d93c25d054681d109c7cdb5968989005 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.3.6.tar.bz2=5531048adec175ad23e3bb050ba6295352cfe17ce27203c356145008434107831186a09c00ff158f4ce9109776f381661f3047e828a177906a52143096249dbc jruby-bin-1.7.0.tar.gz=1e466a3f8d52b553c9def09827fda4b8433576b0262c40ee505602754521a00defd821d5ead5052be52baf281c6cb080fd03a8b15c628a0ee67b4e417633e5e2 jruby-bin-1.7.1.tar.gz=ef28381ca30664cf450f9d3df9927530db771d30e86ebcf535af38e1a7e26724ae2bcfe8487cd2eb349bf609a733a25528aae14beab4d13d298b5604ac7353cc jruby-bin-1.7.2.tar.gz=8155c81eea6743951db7383bd9f6b1750614927c9c0b25a6574f6d64898bb3ada2f626c6e0df6c5486561a03cc7d472fc12fe804ce66a3972d2fe02e3f407100 jruby-bin-1.7.3.tar.gz=1d19be25bf4a7dbb0edad71008704377893d3967aa4204a0d59d6883aa04462ef6798c64d0c0fdd3f5129c16ccb42e8507f3fef38ed56054bf6e689de745935a jruby-bin-1.7.4.tar.gz=d7c0ee0316c50ae5413757e956c18ca68e9d99a25cf85be978da0787c13b8978d4ff2712a3effa564cfdf07144be4a56a0cb8acc794a01f43264fe8baeb125e5 jruby-bin-1.7.5.tar.gz=a4984591a3809330b93f4ce79fd1b9c24360f89d88a03bbc76351be623893c4bfc6441375bbea452ba4f24ca8b9357e03ac938fd6c065b3e2348c0f896b22a1b jruby-bin-1.7.6.tar.gz=98600a2d46bfce14111c7eebc62716352a4b685043afdd696b8fe51c6b205eb9569fc2860423a653b842b173198c76c59767156aa48e0d23482dff3358d884f3 jruby-bin-1.7.7.tar.gz=71da2e72c65899216fa15ec568b51aa7004e2ed7dff99ca376b332d3692c83a674c688dc21ee04d177a3961a2bb3973714509d88cc14d0ba9f79c864c6258a06 jruby-bin-1.7.8.tar.gz=42d54243653ec260abdafecce1143161be63fcc38a80f71ab70fcece4bf91545a2b12ed2319f9fd6f6b41916c398a9a8e89e7f0389f59da56f2739665e74522d jruby-bin-1.7.9.tar.gz=f519f53b1d9f57cfe28982ad70b892dc6fc20fe6601d98d65a1dca9f617a0eb8fff74d0fd82ddb858fe105d05ca7c7bbf3a987677ae0363caa2981bea358c096 jruby-bin-1.7.10.tar.gz=160b701f2f500dfab64beb635e5c4dc57760dd422d0fffe8d3cf8d84ee6ea17a877ef77a0087b4888ea9db64ce7750de01a73a51530aa6666a2efdcdccdb89e0 jruby-bin-1.7.11.tar.gz=a53b0fa327b98344cb4a8aad1ba537ddacb709a0e173b1e32656de8a610cb9896e9a4554d54d0d01d2361f8ff1539a0e2ee01308f670df2004225231b704065c jruby-bin-1.7.12.tar.gz=bf2be8a37b53d38c75712a6331f96b999fa6b0e87f453fac7b9d11eeb1b66098ea0778172f1a6a84345e1881f05d63012e28d4068a0bd31122bf2473bbdae5bf jruby-bin-1.7.14.tar.gz=f14e658da7f2abd469edcfd657dbc2505d6a2c04ba1e5f65f2164256f54625da154b338bd3d286ea6a18da61d04d90a61ad6b012bd9461182753483efcd0f603 jruby-bin-1.7.16.tar.gz=47ca714c3211c95c84e9c80ae4fbc894bfd7ee03e1bcc494cb48d839f8538db4aaca7029a4913b8d323e7227450e4e41bb943dc670f43df8a654eb127012033f jruby-bin-1.7.16.1.tar.gz=9bacdf6e212d08e46ac2c49183c8611873f6ecebfcb0e928b5110bdebfeb8751ac087cf8aba09afb9a8ccb58e59f3c3e06a241c1db445835d7a875b0c3deb4b5 jruby-bin-1.7.16.2.tar.gz=349283bb5344a62f282021ce39648a0c8d0b41ecf8f800ab5099b5ce161ff771e688f205a918324cef6ba0ded6b3694b8dd83f46f56be584202b8fee496b37e7 jruby-bin-1.7.17.tar.gz=a3b171df08e789f91c260c5a57ec842a5d62cc8d6b462b772905ec5284e394ed7b78f5b327ca1ff20f5deba8371a86cb03fade75b5f34f233df47bc3f08d469e jruby-bin-1.7.18.tar.gz=b259da2967e246a387687117eb13e8986b57de6ca8e570d6f8f8f07b8097db6e01cea8b0ec3a860b091fde14de535260dc6dbfc638f9e9b49d348f726e969642 jruby-bin-1.7.19.tar.gz=da91efcd51cfc833666f8b7cf949d3b5c41cd8da99ae1559c88a7358fb48df1245c66702c7cf23e7ca012cbefae98787c200352976d4e8aa3e9120057a89dc8c jruby-bin-1.7.20.tar.gz=77131afe46e72c406ab4250e43cd1f98e59a8351c494044ac89f97a7c9a81492f8a8194541055fcf1fc59569e99a577fd6a36a9f6a3952a99f399d4970e80e69 jruby-bin-1.7.21.tar.gz=111883df12a60d06e9924d33057ba72094fcffd44f7e3954d6c6d2190f8e6442804e739cc525a9e75159251a8dc1cc487570792b1b4f5773f4d0082f0eb360d0 jruby-bin-1.7.22.tar.gz=6ed6cbe7b81a8aee60906fdf965bc217b3db794698e2cb37559f36ac119a0cd2a1ae1a7a766535ab491d647e8b4e6b2f63e62011714b757f8691455831ef365c jruby-bin-1.7.23.tar.gz=6f4b97c4e08274f96195deb176e3126e8d047c981cb655cded9665624033fb905d60d5586704a3f91b2ca06d7e78918d9d31131c93e4c90c75a38182e309ac9c jruby-bin-1.7.25.tar.gz=a89ab8d539bff346ad56d345b6a205f74890b9aafe82a2c82e7c19cfc30b77fefde1003e8bd7ed15f141151bc0fd21946203219691383a64f2234fa586e1905b jruby-bin-1.7.26.tar.gz=feee03a50900e459d9ed7d2096056bef126c4551c02c335c4132e2307411f3fc4fd435e8fe44411184773c80f0630a7812b3d798b7e9be2818e1b5a712bc6995 jruby-bin-1.7.27.tar.gz=656f4313fbfe5db8d2d4fc2087a012c91efef848394c48aeaa0041e9a19b87ab74686702955413d2c51d6b4b11c758ba0555b30fdc42e86d66094411324139b6 jruby-bin-9.0.0.0.pre1.tar.gz=988c6a058336ab9ac8b27c7501ceccf3940837f9b9d3ed32a466b891bda1bc13f76199f5bc3baaa1240dd0dfdaee40775f721294d667f3b8b5bb9ac8206e2e83 jruby-bin-9.0.0.0.pre2.tar.gz=f207f9477a12d7ffacd92b1bb5154ba8101dda8f7b2eeadd4fa83eadec9a75727bc1831733d27fde63ba63322ec491201dd23cc6e2c2b5a4b8381a8fbe49e8f2 jruby-bin-9.0.0.0.tar.gz=33308a983533c129cffbf521bdb8c1996a10a6159a4a436248e645bda682c5a5395ac1aa767e971ae679c935f3b61573cb22d5b8c64af026752db3411a6356e1 jruby-bin-9.0.1.0.tar.gz=277dca63f3faad01c98a793f06bb4d558a970a10a66a38482e8372b25f4cf4fea85f1d5624fce7fb5b4310c42ea8aa360f24f6b9b6ef4bb0ebcb036736009ccd jruby-bin-9.0.3.0.tar.gz=d82f83e20ef17a0675843e306ec5e90993e5952cf5a53957a91e369d2c90d92306aa515b1e135c04b45844a81a0f4ae34289b966821ae5f46ea51fe012627352 jruby-bin-9.0.4.0.tar.gz=b9cd4f4a00da8152740b468914046633d5341b10aa26b0ac56835d5896531030c8afbc4c965b30c36923555ed5b145de8ada69e05ca38b01d43621914a331335 jruby-bin-9.0.5.0.tar.gz=7c61cf010fbae571cd6ba334aefcfd917f6de8224d014026297b840d0b890523e94b2fea20f154c82c25c4f9d5992b9481fb569646a7023e5ddb42db1baf5f34 jruby-bin-9.1.0.0.tar.gz=1ffdd352823436086ebfd37c03401a1f3a9cb8a8c5f75476af1f704c4764396a20f49ddb7fb7f0911e1608f7c88a332944330b8849d13e6badb170efb736dbe2 jruby-bin-9.1.1.0.tar.gz=475acda79ab8c54467ae70094aa86842959200127c1e92709f0a731014c469d3e52e4c48770b64ab1bf31e1b710ac4570b421077c85c08071c1356bee55a2900 jruby-bin-9.1.2.0.tar.gz=cc6b1e1a2907c128dd04edf9da11933a54bbed5e861ab6f0208505bca5aa2aa9d9acdd04bfde65824346fbb435584081fc8ec2e2e9a3aeea1bef8047915e0c61 jruby-bin-9.1.3.0.tar.gz=88339f4cc05f7f0ded21f100755156ade33f19873f49c0c64110916da8c0b059df541a77bb36e54fda9cebf042591450d2d6312ffaa879df926870806985e774 jruby-bin-9.1.4.0.tar.gz=ebe0e9d67cb91721d589461e93e26338e3e3a1f0f98de53f25906684140b49d989ca6d3704cd3f6cbf650f30aed9a3989f117bb4732c83ed870364ce4c31fa36 jruby-bin-9.1.5.0.tar.gz=f2a11e6fc88d37fc1b640ea8c9feda4607bea6da5e6520f61ff85e8d6a51543612ae267b45c033214f8fd0e2283153da02001cbc9fd90be4761b7544e1413b9f jruby-bin-9.1.6.0.tar.gz=ca59d199a0fe791efc57f05801ae26c6cf6402bdc0f1a795250b1a2dda39b233ed24c8cb005016e79727f4bcdceb1bad726a60c16935e76fc87e5d1a078fb5bd jruby-bin-9.1.7.0.tar.gz=f2569d4858a33280e90d984aac53662c25ef057ef9903bace6a2214aa2e6a537c9bc8fc76b08f846b3093cc4a12c70c98d725576a4ac771e640b95cfe3697c7d jruby-bin-9.1.8.0.tar.gz=dba3b41b65ff27dbaa203a5cfc78ac7cb9d952c52b452bc774f593383e4ef9389c0bc37549b798f48b63497ce7007b1ac2d2fa252d9a7c3e52146b4ae192ee49 jruby-bin-9.1.9.0.tar.gz=f8f6419be34aeb7b7577e946a62a094f5921d7319b51876c5e07322d99249b3a9f29fea4ee5c2b8184dfccbd5da8f8262fa97f5e93874887f3355dabfccfa0df jruby-bin-9.1.10.0.tar.gz=857783bb45fc5d62148bd687b43af9ce776099dfea75ec4b5d947a46ed270568bceba2a630a3277746a3a9c1fd3111caa9a4cd13493ea8824c1ee190e6d2abf1 jruby-bin-9.1.11.0.tar.gz=718ed3f5a39cd9f9b45c4e11ba44cd32e035f8d9f26fe59230dbaecb71adfb2513ee1bb86ff72e075b02f20151f3f30e53bfa30b6c4b011a93a138d4f479fbf7 jruby-bin-9.1.12.0.tar.gz=8a9f88d517d8002be570aa95aebb0063eb62a47efee191155f9fa4f045854910f78431514f857c438167ec42f4241faf74d4a8d236ae36feae58732312e4bbed jruby-bin-9.1.13.0.tar.gz=ef88f613ada2665d4f63b2e2f15594739de8ba501406e76de417821f44847b0e258524687b0ae0cf5b737520aa4dd9bb59d80a4b89a81408cda638f28bebbead jruby-bin-9.1.14.0.tar.gz=d15ae0c60421951b830524acd21a0f2a56f480e983b148a2722cd36afed8e99a41f518eb8a679bfa2cf87f08637e81c24ea88be40c0a5390e081322f1fc6f8da jruby-bin-9.1.15.0.tar.gz=74a411f42149510180706b2c70610caeea357f6fc3d2a12ff0227586862e6a9dedf09e752596d6c486af7a310a07241f311a1dfc73ead229d7225c09d4508605 jruby-bin-9.1.16.0.tar.gz=94e88dbeb2545250ba5bef50bbe0baa6f3851e9817f67f879ffaab50048bb0d41cd7a0e87ac9ef547e37c2b82cf1d7aae6b8caa43d03c6a9931b8ce0ad4b2afe jruby-bin-9.1.17.0.tar.gz=4c06b9674e20f48d3815b4084bb38e6994670eac804fbc56d717cde7abdb74d57e0ac17b7fa0b500318de405c187c3eaa01441c22621139dfdbeef62a5467a63 jruby-bin-9.2.0.0.tar.gz=79f5e8674089d2f6b260e033e3ceb4571f54cb5cedbca74ba76b52dd7cb30085a8c6c2676e9be57a8ecd9e962fbcb3682a8de38e1cdde2dc6e05bd179556edc3 jruby-bin-9.2.1.0.tar.gz=185e67da4964c9cf1d9142446efa77605e77894444bdc96bbd10fee22637f197aea9fbb0f60d3a42540e5f383d5b06fcf095d572f432544a40c2145deec81926 jruby-bin-9.2.2.0.tar.gz=85e16e38748b6ec5f237eabc8a17eb225c484c20f7ab6728f2a0f650061bc50c8a9601c04b0128e73c410ffe84dacd2b8bb37167aae5595728aa25e88c4c9b92 jruby-bin-9.2.3.0.tar.gz=97ee210157c451567946b38d33380051f82e7e8cb5f7649fffe050542ff6cd627e2c42f4c46739d1f0995c87e7338865b18844741285bf3f72364aa3c841c54c jruby-bin-9.2.4.0.tar.gz=9fe1506e862a17e261cf726e1bb70a9f612a6d7beda919a01405899660d1f4b79ee690ddf9aeed1d2b2f3cbd698be8df4f98d3815352772cc680e9646d721761 jruby-bin-9.2.4.1.tar.gz=2c41e7884cc54819da17ea9b2b773d05d3240d53a2ecb57ba430ab61308066eeb1bfbe6627e6c261f5f27ab5df7f5972656366a04a191a81b0379f620b74512d jruby-bin-9.2.5.0.tar.gz=d548eba8de420c80062021f5b6e6b203f8b7b36e3f11409919eeab87a028a18f9346f27d2cd8b1f33419adcc83fc804a36dbc3cee169ef1d93383b8f5835ba2c jruby-bin-9.2.6.0.tar.gz=20c7897da0d2b585616ea5848998fe8770517e24e16955797db2e5bff4622c348082628d304240a71a97e9551ef7aa63271cfb728eb5fb7e7d19bb48aff20d4c jruby-bin-9.2.7.0.tar.gz=8e71e27fdb149cb7470fb736e7ce858719d13ce6ff8a1e9ab1c1dc71fcc068fb601946bb28ed2feee3670b5e6ebfa8a655a6618d1badfc3763897912c41b1c82 jruby-bin-9.2.8.0.tar.gz=7f71fb5bc8c6c31b31b4c0430ae091871b21aa345777662f264c728c60212365dadb63a7a4b2fff31adbbf8a2e7cfa678d47486e28840f57b86cd45fe9354013 jruby-bin-9.2.9.0.tar.gz=7df33150858ddff586b3bd86120d4bdd80546c7f8e62245f61facbaa5527400a1aebbb33e4a1a8af52066487e3d29760eb96c7ecb9875eb9bc954ccbcb37a4d2 jruby-bin-9.2.10.0.tar.gz=f4ca024602ddab37154f5547132accb26e7c0ac2e913ebe1b5c7806727eb148249e76031ed4623ab53814beb8fb3f472e386f44d57adb5d2b3b00fb2773c8a63 jruby-bin-9.2.11.0.tar.gz=f736a9e139694c84d0a5ea42f36b972adc82c9be13e0b80bd61045c026e4fe31ccdd4be3dd3e94781c846f356e026465e41716fd2744ded2ab0ca39cd33bb46b jruby-bin-9.2.11.1.tar.gz=2f758fabf5910ea01e9c04c7600d9c666f2df3db8622f3eeb3534578075ce65013c42fe9ea6f95d4499945f795e6d566eed2b1545e149af823eb1d29167a1223 jruby-bin-9.2.12.0.tar.gz=1dbc5bb3814a6590f5e8ecf4889152684b5625fe81794a2c4064d598614a85129256002dcd239e294f209b98e3abaf9bfe70467fff48ef66b1531162dc6c3be6 jruby-bin-9.2.13.0.tar.gz=2cba016ad6a376252083122d51335610209d860c41de1902f5cd49ffc2f6b49c350b68df8fc4113c221255af4db7ec07980267b9888369811faf66db369e757c jruby-bin-9.2.14.0.tar.gz=ee3d17e875dd197f92744c7cba62320bfd3f166bbb2ca117f2910780a7c571779c0940e024351e9d4685ee9781dd207e773ace57a4a8a7011869c8b6209513c5 jruby-bin-9.2.15.0.tar.gz=678abfa7654b53b049e4103ae3647775d970c5a7192539378957c1731a3037c852e03f00a496c022c1c438d159a93be6e6f04d7563c811aeb7d261ced643d9e5 jruby-bin-9.2.16.0.tar.gz=f77e314d578a980071bddc25c65659d62e0644927ebc4e7d7d4523935b6c893e611d47ae7478a26ce7acff38b1525eac11b4a329188cdf76aeb07fab667d99d4 jruby-bin-9.2.17.0.tar.gz=e90ac1890a54a892b13adbbeab3cc5242889ff2a4b6cae535c0a3172072bda6ab01b960705ba608d6d7ebe9de5984d8384dbbb6399ab3b2e53a9e347e7849e1b jruby-bin-9.2.18.0.tar.gz=c5816ee0f7b0f559dac70ffc5277f85ae9c41ad176e43d277f820c2727387baba93998b915cadf9708fa78b5cdf3911a9c39c2ebb61a77a38dcff359f7d88a73 jruby-bin-9.2.19.0.tar.gz=3740674035e27cf7961b3570ad65536c30faab1c9a71a42a696b173379e79647411d57e0d1d06b5f9c9a970eb02a595a559191af08a083773dc4601dcfd07491 jruby-bin-9.2.20.0.tar.gz=1961f52f41e7eb9f50b0f382c8166ad988a6b3c0311c342658edb34486b073ed45c1ca5731aa319196db02cec208a4dfc86aa6b436959b80243bfa4f62629735 jruby-bin-9.2.20.1.tar.gz=598e28cbad682fbb30a9a9a9f708e6e1f4b7903300de2477e88a646c42ae594df5b768ff5379ed447f1a7168e93dbe35cc2d5db7087cb2228233a05bc4687908 jruby-bin-9.2.21.0.tar.gz=8f6cfc43ce3ebbd69781da71c5a70746ada090162bf6cb709dca41a6d968e6072ae62f657cb0bd471c648ff294044bfec3079828bdc410bd64758f76a93c3214 jruby-bin-9.3.0.0.tar.gz=06331ce32ee88aaad5e5bc0668d164ec3263f8ef3ed34bb32981b76ca33f8c817e3632550775706481094159f4feb43916ad1f9ec0f0775ad756b16cb7bd9417 jruby-bin-9.3.1.0.tar.gz=bfcbe6dc5ba736fc944af15eb387b545f6c5b987a7db88045913a02a1d30726c5d1255c4dd609aa7c2d2823ddf9d8360223b0575c93302aeef4c54eb37af9abe jruby-bin-9.3.2.0.tar.gz=b1777bfdf1964d7e527bb3dfc47b4b9e8c589cdb301c38ee8ee988bd0c392ca978ee3c1c24e4b5a65bdecff67d1bd96e2d8645e58ff7e891e3622097ea29e925 jruby-bin-9.3.3.0.tar.gz=648e70de0bda710e2dc70fd03c3dc6b798dd4c7b92584c54306c426f59ebe1168a595c4cf94328f6b44674f5507bee354efdb1cd73060b73b0171a3605051c9c jruby-bin-9.3.4.0.tar.gz=6b09decf412a76578179cefaabf01cc8740f70ab5324954e6aa43b1d8b81c37db7a99b1f94d6ced2b459f1c44c3086892b9a2c06b3ea838baf75a8fd5e0447c8 jruby-bin-9.3.6.0.tar.gz=f730522eff27462192808773cbd071cdaefae11f20bc808a8f22515a33960a730f3c87ec727ddfd9dc9b6b35acffeb50c31d75a4794a3f8daa75e1963ebd246b jruby-bin-9.3.7.0.tar.gz=265051c68d3b9dcce708b75f8267303ae84008859c88d7fe4f282395366c3f52fcf1bb161210555c0fd0a2427ff5a728ea9e337feea3d9b69559cadb2f300aed jruby-bin-9.3.8.0.tar.gz=12e795b7e1f14141bde68f52a29b0aa9f1db20515240dce83cffec351cefd25959579e01059d42dc8c8e4280493a70819d9beb1e0523e9bc10a72af16d9abd60 jruby-bin-9.3.9.0.tar.gz=f0b31d98f39a2bd4436764db0b0139433d6868bce7c30c5d6e3552616ba879c93478c499f3e4c884fd3728502916aed5c9ca1be150ae3e80ff47b36710c3f6df jruby-bin-9.3.10.0.tar.gz=aa36fd4c5de7b17f5fdcca1d1314d309e7b4470d46822c45baefbc0ad5180e5530a7054502b97b414352af485e7936659390690dc6198512ba6733d8f8d503ed jruby-bin-9.3.11.0.tar.gz=d9fd90bc64028dcc45687d2be51414b1561add20d20d1392525f4434cc684d505427f5e56827afffbbb0ce2c9cd7c1ef846b0bffa737679afb95d4c160232da5 jruby-bin-9.3.13.0.tar.gz=eb24641fb7a6b9d2039ec953388053e7333b306056f9a5bf745331b04cfc05dc4211a9b7780ce88bcee9184b8cbb219b574574d308bc2720547c116f4d4721dc jruby-bin-9.3.14.0.tar.gz=d9b02fc35133f71140cc7d891061f8190b61b3d1065f00092a2aa9a4beaf7d67297dfb0529691bd24d29607d698f39c62af9018e8307c1e6624c3104a61bb74c jruby-bin-9.3.15.0.tar.gz=e41521ebf453d6b6a9de937556fcaa972c60268285d0af4a41bfb95aad790eb47dd507e182958ca6f4889a0e03eedee0fa4bbc58e3d0407a2b6ba64a8b87a21a jruby-bin-9.4.0.0.tar.gz=fb72f8e087ea08653fa4e4225fa26694c3ff97c41f3deb8731cdb6571c6c9b21e0d8f69e2096f82ee81e2b5c283f912e2a5228c15873dbbd56de96a2ba35d59b jruby-bin-9.4.1.0.tar.gz=46003ef6192718a6372b79ebc89bee37957686224a08fe2f9a6be3c9e479784409d0269f0885c4d1f1351585c5d2cd31fd2ad45014e425bcaf2d44d66b98d299 jruby-bin-9.4.2.0.tar.gz=77e484ab73ece93e7d7283f876f0d541607c6080eee696b702b485be9794cf7e6d464f250a6d75387ee69aef3ba40ccf4f6d9fcfe324c5bc7a14376177ea2bb8 jruby-bin-9.4.3.0.tar.gz=2361f4bb2989f5951b0d3e9d49bf31e6805ce39bdc987ad3c6934daa98ab7c8e69763d40d7412ccef8adbbc198e52f4b83d00998ee12ac43fbfc6b5d88930c15 jruby-bin-9.4.4.0.tar.gz=e89dff0cc5b4a948daa95196d4bd4fee0c6901bb4aa023ae35b3679d9739967c2a74e8a4388b1835465dd39f1332a1f321b450b40c54ad2b81802645b4a31ca4 jruby-bin-9.4.5.0.tar.gz=06db948e5fa6f8559abd3b6891c7b4867b9f54b7bddf0e36d6f20cc1bfb394cdba8ea920213e545c927d1cb865e083cb1089c8e925bc608e0f8784a79b5d330f jruby-bin-9.4.6.0.tar.gz=ebdc671622baf3c42a988d6ebe24af6bfefa1f717f050f602a1b35909a3220316329aad080ee2cd9cd330da9428f8d736502573efa64bd70f093ccc123ab32b0 jruby-bin-9.4.7.0.tar.gz=4fc8b12deba7b8a53a523a41a31c248895adc9bd54a62664a27107e7205369af39c0eaa508a9a70611c3bb845524d8c5f39451c09b8b9cd87059ae15139703b9 jruby-bin-9.4.8.0.tar.gz=0d65fdfd63e2049ab3b8ccbcb4caaaab20aea5a63276aeb20ed4092191a8814f144425dd0d926aeed757ad6b4daa308a98fafe1bbd1647f3db44368066f61868 jruby-bin-9.4.9.0.tar.gz=1321e2ef5fdce909008ed764051d1bf9be0a4b8cb4a2515fa888c7c0ea48f0f4a2ab7b5c881633dba3d03449c6340255d9411a58836ed059f62d801d48565d1a jruby-bin-9.4.10.0.tar.gz=3396cdda4334552f2ca21c9123e709d72544e11b448d3091ec1a6e6f7beda2cde86ba4c15a4c0648135df34b558d254a96cb970f0a18d098126b7c5c2a2af019 jruby-bin-9.4.11.0.tar.gz=21ee47b4f6d1b6295f7f25cd74e559e6dbc8d98738d31f87c27ea657a740382e8c0e8156eafc8d270946311ebe22a7ce60d5c0499fb52cac7f9b120ed4495834 jruby-bin-9.4.12.0.tar.gz=01f74e4dad2d4357c0dd5dfa937400a3d3d3ebdc0485444359658f3e4b58c8af180ff66ce75b269afc75548cb832c4f75e891f506fb5e4004f9b12286991a8df MagLev-1.0.0.tar.gz=8da29f16e08f657b0d2f147b64f2202ac027db26f85da8dec29f926898f178ac8d11260fd6c0a539a9b9b15eb92d8c7ced86a8cab1861ae7f8a33b6fa468e5cb MagLev-1.1beta.tar.gz=7122af70530e76b9a4cee93244d6872b49616e78086bc8a5db0f32d2b846560b352c4831addbbecc72e0e3158bd52f26c2da14f5d83a515ead30efe7c538b62e MagLev-1.1beta2.tar.gz=43b4b831791074f6e8c12f6fbe6ccec2bd0446dae029d3e6717cde1e7adca8462a2d7dc49c14112cb568b5b3adc8cd051767044b41d57ae51f38aca035ff8597 MagLev-1.1RC1.tar.gz=942c1cf43f1a911230aa43bbac1cea2e2e61b5e19af755e29a6a71139d66d304efcc519072dcc3487a2da7462847530564aff4a2159d675e3270cc938a297dd9 MagLev-1.2Alpha.tar.gz=2672e3e5425df2d2ecc49f85df5845fdb083f74a7b242cac75e33d0c1837079ced8ec8b273807326d08e7bf6f95cb4f1d8351f37af8bb38c4150e6292fc553dc MagLev-1.2Alpha2.tar.gz=4492ed58b6c2b852502a2195836f1db5a80f0619467e4d7b44981a993a5e9a9ea5c9fecf1198de1891583e334bbc3c3a86648ce8afea1137ae9c73a4d76b0f4a MagLev-1.2Alpha3.tar.gz=6290895b22efb986ffd7305b7d651f20a051ab6869d51310bf891fa3eed48526a8617b69f72793e8ac0b57f99bc5de75f34235ef94de967bbdcd51857efc2af6 MagLev-1.2Alpha4.tar.gz=a621e9c615ffec503910540db770754f29bab1646d8e67650d5b82413bd551adfb0bbbb8155407ccb6f80933bfe8ae1bf9b688eb0defbc88710308bde1325683 mruby-1.0.0.tar.gz=4a0f2927da3401df23d5c19ba566995f76775def3badbb14f16510a271e7b40a833fc61841f89d8adc6d57b5b12cb453708961c16a22133c092fab8ecfcd1e3c mruby-1.1.0.tar.gz=afa99a973e9c1b72a5a418d709c4aca08dc7449c427cedef5f12db4ccefb15e11a4fd1c23ceb7e31e49d4d2e602c0b1f9dcf2e0f6cf8ea3466f0b9bee23b53df mruby-1.2.0.tar.gz=bd5de32ba52b6642358752755329fa45a954082122a8983012930056c286ac328fb52fbdd11f34ff7c80af2c0e9a6348abcd5214602aca1150f2e7ae25cad1f2 mruby-1.3.0.tar.gz=13a57306706d2d60693151919ae15bb3621e6e7ed3b5e9c6d3b1c8d44e52b898c1ad394b39946d730ff82a19f5e3b7c2a374f9dcc3b6c6f990581e504f1cb9cb mruby-1.4.0.tar.gz=d2dd6e17c7f8e890ef5b6887538cccdea08a2376ba8f9a478d7d5c4377fd4c31a4af6323b1fc73952ef80e5a4778ca22eac3d724ce7d50b76770f7e614df7da0 mruby-1.4.1.tar.gz=2cbf155ba7819211b6410ea606c4d0db3adf4f47a4018ac45285ab3e32b94f280aa0af0936ead7233411957cfca62979d14bbaaf0d8f40521cba5c12272f2af4 mruby-2.0.0.tar.gz=8379f76b7a06d280e2a2552eec2975ffa3fe85b99028f6f7c009cd908f95faf3cd36a9975f502a5779559baf3c45a4297da0b6bcc038d213a0fdee851f9d01ea mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.1.0-rc.tar.gz=f310b385cbf80c6b6ab67e2a41b931411149639c0bf778799e3358d6a9a59f508f42e3faf72fef9e8ef91088d6184c445af7933a47e4e2b2fe114362d579bac0 mruby-2.1.0.tar.gz=da28b5a078e121c75edf62fc68fad6d5810212bd53a3424d4f585ffe5bbd09f652393ffea0f4b3ddd802e5fe178554dc67040c39c9d5069bdfad4ef22ead7e8d mruby-2.1.1-rc.tar.gz=97c9cc2c79a5dbf2f634ea08532f0f512f8af6ffb99ab4eefd83fc336ca9d97b943e76643971047b4508aaddb5e40176d6cc8fa39a17022455aa15d774eb5b98 mruby-2.1.1-rc2.tar.gz=13aa32a35bd5d8f02a9bfd08d17818dbae78ce46c8b0224a029f9f191cb64ac330eddf3871f4396b9221b987a91e4cd6f8933f59814ac0018155ec8454abff18 mruby-2.1.1.tar.gz=66f9b4bebb5a7b19f5cb1be2bd8b9bc65e4dbb5d4350d238ad5f947c9195fd431f2069f7334036ea63a750e9257e59ae1aef16ac99c7e1f4e17724cd1cbe2e50 rubinius-1.3.3.tar.bz2=8b91baf429dac60663d0e4da3152a60ec6e007f5d6c17ffa430876ec88eb87ade44efae90f2e32e238fd74f1b3d54e27492315f08e7bb073220b402e1e2d3163 rubinius-1.4.1.tar.bz2=928d12aa01a1d0f6c80175d67d3b1f8b9840f69f045c8148786612316421223f4cea71e3c373ee18a3f686b1457557ae547645afe758a99d21c4818dff47b9d1 rubinius-2.0.0.tar.bz2=5c81a6b8cf7b59e08c3b9353b0eb37ce985aaf391f5064df65ffb10f6d12b668287e4d4e61e2c6b560d9234c10f0b64bba74259f2c06f1dac488928544d4131d rubinius-2.1.1.tar.bz2=154cfa93ed59835814b8b974f6d738b049942fcc2b75095d21c87647d002c879fd55aa3d1ec95414b5b66eb9926c25a5c6e3e19a7c0da7dec6edbf434acb9c68 rubinius-2.2.10.tar.bz2=c2168e676059c197123916dd948b83e39bb96e99786bdcaef2e690936b761fedb13740b9f19883f991f1b475f3249ea1696213e8448c41ae15dfc14b3d4e1fda rubinius-2.3.0.tar.bz2=d0f3dd5e3b891bff2eb79b7810c6041e15fbbf0606c379f89575cefd829ac7a394b0c12ed3c5a4d452730797bc0a2c6c82646a19a078b56dcac7acad015a4559 rubinius-2.4.1.tar.bz2=7bcea320006b8cd3d122c407d89c325973a74c32456ba0b649657ac848f4682f2eb7455c13e3007709c22932bc2e1b65e2dd43fda0d3c9f993ddf8a74d1e2cb1 rubinius-2.5.0.tar.bz2=ac94d5bc11524e715fc24c1de33f4d358c2cd65e92fbb64c850dc8151d2a712d268227733c99fcffe298c3bdd6ce080c5e9553e4e8f3238868323498a9d10cae rubinius-2.5.1.tar.bz2=9315f76126d0aa754ee63b190385c24cb084f36293a99aa30fc482fd880d5393aabce361e09ff5514bc2540dfede8e179b7e9212b2dd59bd14ca2aa69d209a83 rubinius-2.5.2.tar.bz2=b48bd8d54a450441a50904b07c75c8d31b59822830a74c952720d6f8d2d86e6a27a84775e975ff2bf55bf3346f34e69d742f308933a9d8476e5e78109cb525f6 rubinius-2.5.3.tar.bz2=b923446d325dc3ce5ad28af9ee527607fae3259b85e85aeff97c1bebbb4520daf70616957b1c0ded900ed19e59025826dee66977c19cd2a2d4e9a0296811eb20 rubinius-2.5.4.tar.bz2=75b7ddbe218e4c92210dbf5a06eb8b3c3aa028d16146982a4e813e3af10a90d33f3e239f4508469c6aba17f02cb8bd10e96a204839975e06519869cacd456c92 rubinius-2.5.5.tar.bz2=a862146ddbbdcd4439eb64e78bfe6d09ae4cca540d19869618426d3f451544658713fe8eb7d46493785eb0cc721077e624293cc44d68eea3ef584967b43a18d7 rubinius-2.5.6.tar.bz2=9a0bdb5d77f80f163925ce409d00be3cee34871baae8bcfdb34c3c7545b92fd14102fecb970e42b3012588d299e504b724025f397a5a00e181ab75f1448e426a rubinius-2.5.7.tar.bz2=8048110b3ba4e5ff8c3f35282896067e1b1b46dccaf9ef4f6c9b6098782f27591ff59ccae0234fd7e881e3aaf17a0b420286b1b52ecd2cb672249655795a6982 rubinius-2.5.8.tar.bz2=23fca2f9747d2b0e544af890c3baacfb7b3a009cc59cbe653762ccdd827a6c915dcc57902d317fa1f7a81f8c12682f6c3a93195331b6de0f705b118e2e8c13f1 ruby-1.9.3-p550.tar.bz2=38767e98df25484f7292437f3cb0f798b3a43e9a7414a5401677e96ad1cc367cb3fa23ac3abe568d5bf2b2ca553713469a8770d41b79bc63daf3fa59cb4e15c6 ruby-1.9.3-p551.tar.bz2=5ea40f8c40cf116030ffdedbe436c1fdbf9a50b7bb44bc890845c9c2a885c34da711bc1a9e9694788c2f4710f7e6e0adc4410aec1ab18a25a27168f25ac3d68c ruby-2.0.0-p576.tar.bz2=e089cca4867cd9c715f4f37e40a1db9af6ba0c74b47e79568121bb980476f8877a87ccb848b973381edb4667c0c73165f5e1761f60db839e67f6326302dbd864 ruby-2.0.0-p594.tar.bz2=8301a51c73fb63a8cfeb14af47d0c18b5bc3c45e3d62fc2ed56a673a1cd6b0015c41f275e70eb14a9e40036b1530977199321e05285e107a6adf58514bef1b3d ruby-2.0.0-p598.tar.bz2=10026a04e01a8ad14ea9c99bbdf4f7d04029b73ee0c01bbf6c2eb2817332d49adacf127b646693b67b5dd7010eaf3b696b23b6335cc0f7ee5a6b56dbba0f6f82 ruby-2.0.0-p643.tar.bz2=453117152e6facdcd5bedaa9c3b1e349382bc5bc1dd3d650ec58b398cb9d2519a2822d05da10bcc5dbbb4f513fc5fef310caa3529d176fa2d453befb28e4d83a ruby-2.0.0-p645.tar.bz2=e9ca186b1cf0877cdbecd43dcab2c5161a53103e926609d5e1b769a4980eab4571bfd0951788b4fc92dfd9d10175b0f5f36ea2c7289e575a9db9b62c02f93185 ruby-2.0.0-p647.tar.bz2=3416af771ebb0b27ceacf23d309bd2a1ede832c2edf48a5ca46f0b0b84b2ab94fb6362a0c7fe4f77b21253539db8161ae26d23a78d1ba729bf03812454d93d04 ruby-2.0.0-p648.tar.bz2=609acf6d6352c9746e21cd7f0e7d29f5eb522e6fff2d5fad0431d63c568cc084ed5b7141f84cd33512d8213200d2d1a22e8d7df71469a980a3a92886133fea38 ruby-2.1.3.tar.bz2=9b48adb161e5e4550a71f61252c8edf59944affb82250babcb64240749af4b672e4a54ccd0feac5b36ea447a358b350b5080125ef2d4acf6e9e8b1ab82612f48 ruby-2.1.4.tar.bz2=68db1567751166c5e7d24b6e5015124b8a15568c50556e1f429486395352fa56c4a195a74820ab135697924149d014b445b345a1b9755678aaf824fba79c606b ruby-2.1.5.tar.bz2=d4b1e3c2b6a0dc79846cce056043c48a2a2a97599c76e9a07af21a77fd10e04c8a34f3a60b6975181bff17b2c452af874fa073ad029549f3203e59095ab70196 ruby-2.1.6.tar.bz2=75d58120b5f387bcadbf6d19e85624f78c74f81b9018baef39207214673f7ebc0700ab31145acd88b4071c896ba8e1302a29c90955bcf5f8c863634125022aa6 ruby-2.1.7.tar.bz2=f610d2dd6a93f0a5e84e04ddedf847bbcea5dd3289b3164cdf60be64f67a80dfd5f9836ea5d169970cd0ce24a7e05ea6190699706567cb0d5cf450de6a70e445 ruby-2.1.8.tar.bz2=7129c012bca7f0e7cfa51c73ba0898697f7a9f31abd5ae57d38be5b6b646fd80ab33be9b262cd3e2486c66f65aaf4ec6e881ae6e5a82ec9df62f00fa072510fc ruby-2.1.9.tar.bz2=a86422132e4c64007a84a91696f4557bdcbc8716fbfe1962f1eef3754ee7f994f4de0b5b7e7231c25057515767040d5c4af33339750b6db15744662e9bd24f38 ruby-2.1.10.tar.bz2=4b7213695416876e4de3cbce912f61ac89db052c74f0daa8424477991cfc49b07300e960177ff576b634a97ee8afef3c5aded5d5806329dbd01d0ce7b42b9b63 ruby-2.2.0-preview1.tar.bz2=2f1190f5d8cd1fa9962d1ff416dae97759d032a96801d77bc6b10136eba59dde1a554ff8c0c2d9ce0d3c1361d4dd12ad573b1266fd53b90ab238d8ce39e6b862 ruby-2.2.0-preview2.tar.bz2=c654d4c047f9463a5fb81eaea0fa5ab7bf316962bc7fb0fb356861e6336ce8ce2162c7779d8b27f72d7bc0e9604b5e5af2910abcb0b0a1f197b3138eaddfd4a5 ruby-2.2.0-rc1.tar.bz2=181201168360bee37dceeef3481a69e8a333a5d329680031fd9d371d30ac64460bbdf4db07546133024f541774e51301f1630cfd988c5e5bf2464834f3abe6bf ruby-2.2.0.tar.bz2=04edc53e8cd1732c3ca61ebeb1d6133614beb10f77f9abb80d8d36352fe8aa205112068e460bf600b2c7e81e0ddcc3b311e7e027c320366f1bd992b3e378a6ad ruby-2.2.1.tar.bz2=af6a8e75a66b953ff33ecbca5111bcf1c6560b6b48b370b700820fcbe91363146c5ac8abd670a14e693b44343ae598bab472ed2902834304c03ffcd9550886d1 ruby-2.2.2.tar.bz2=d6693251296e9c6e8452786ce6b0447c8730aff7f92d0a92733444dbf298a1e7504b7bd29bb6ee4f2155ef94ccb63148311c3ed7ac3403b60120a3ab5c70a162 ruby-2.2.3.tar.bz2=795f1b66a6d4f0baef897068899c3a1a4370ce1268618e6a7d6d4720234444259f371d1ba2e174b2f7580265e9f18eda3f295fbb087447aa6e8fb7a0f07526ce ruby-2.2.4.tar.bz2=d27ca2f19c214ce87f906b57edd41f2f8af35b2871c191470facded9cfda15ba46e5c3bc7d5540225a38da6bd65050fcc8aaa4ffbadbb6bf7dc891c1821da0df ruby-2.2.5.tar.bz2=d3224814361c297bc36646c2e40f63c461ccf5a77fea5a3acdcb2c7ad1705bb229ac6abbd7ad1ae61cbe0fefd7a008c6102568d11366ad3107179302cd3e734e ruby-2.2.6.tar.bz2=7a93f72d236521ac28c8a0bc0c73cf805797a8813d22e02f42c5fc05dd39f6e422817272e0db6a24c245f6f97ad4b2b412a9a47ac50156ab186df596918a5f34 ruby-2.2.7.tar.bz2=83756cd1c91516962b83961e0de59d858618f7ed3e9795f930aab4f199d47a95ed8f867d8aa9b51d508be26d9babf2140117c88241168bac41e6ef702cfadf20 ruby-2.2.8.tar.bz2=aa1c65f76a51a57d9059a38a13a823112b53850a9e7d6f72c3f3e38d381412014521049f7065c1b00877501b3b554235135d0f308045c2a9da133c766f5b9e46 ruby-2.2.9.tar.bz2=2a8c8770fda20a22b79c9115b6f468f8e7ea1092c84a5089af7a3122163e5ad298b493e6637e4d93ba02d899d8a619c94064dda8ac98cf3b93f64f45d5401085 ruby-2.2.10.tar.bz2=f8ec96c2a5f4ecf22052ee0b1029989ded52d7bf5d41be24fef67e732e76f72119302240bca08f0547510a9cd29e941a32e263cad9c8a2bf80023d6bc97b2373 ruby-2.3.0-preview1.tar.bz2=ae6d46c87f59e1fd3703b76dfc45bfcf208625f95ab9f4559f0b9f7050e8681f1a6e419f5fa06b704c83e56879c3a9ff1337dba443bcfca76fadb49c97d97a93 ruby-2.3.0-preview2.tar.bz2=e397f321d4338edba8d005d871408775f03d975da90c8abcfdb457a1bc7e6c87efe58c53b2c3bc122e9f58f619767b271bcc8d5d9663ed4b4288c60556e8d288 ruby-2.3.0.tar.bz2=77b707359e754c3616699d21697752741497c719dc3d6fdfb55ed639e76d52560d293ae54cbe5c63be78dc73fbe60f1b8615d704d017bdfe1994aa9747d26a6c ruby-2.3.1.tar.bz2=a8659b96a3a481a3dbdbb6997eb18ff1f8cd926a9707a90d071e937315c21d372c89252f0d44732ae5007d2678fda8c8fbceafa4e4b4ff500d236fb796284d8d ruby-2.3.2.tar.bz2=78699bae5b0a2382a58f9d51f7d891341f00ad3a90d9ca06b68b1b245cf5acebc3a82133e39bf6a412ac999a5c0f778a0dab177c2569ffbee085ffff6f6ec38e ruby-2.3.3.tar.bz2=88f7782effd35bfe0b4c33140b5eb147d09b63fbb35b9c42d2200c010f387e2b70984ead1eca86569e8ec31f08b35289d440c0ca76b662dadb760f848e863d91 ruby-2.3.4.tar.bz2=ad1f16142615498232d0de85149585be1d2c5de2bc40ec160d272a09e098ef6f317d8b25026001735261fd1c5bc0d1f8513a8474e89f0d86eed5b2fe7338d64e ruby-2.3.5.tar.bz2=3ecc7c0ac10672166e1a58cfcd5ae45dfc637c22cec549a30975575cbe59ec39945d806e47661f45071962ef9404566007a982aedccb7d4241b4459cb88507df ruby-2.3.6.tar.bz2=bc3c7a115745a38e44bd91eb5637b1e412011c471d9749db7960185ef75737b944dd0e524f22432809649952ca7d93f46d458990e9cd2b0db5ca8abf4bc8ea99 ruby-2.3.7.tar.bz2=e72754f7703f0706c4b0bccd053035536053451fe069a55427984cc0bc5692b86bd51c243c5f62f78527c66b08300d2e4aa19b73e6ded13d6020aa2450e66a7d rubu-2.3.8.tar.bz2=6d79e0d25757fd37188a8db3e630a52539bce7927fcb779a2ce9a97b9e5f330753035c16843552f1a1fb6c9a1e5c0f916b3cc8b5c0bfe81e20f35f8442e40ae8 ruby-2.4.0-preview1.tar.bz2=c9873e8686eb54dbde61d6e23cd5197beebccd6cb31fd12c82763ebe1fde17095d7514d9d93c2c82b238032c98691df5479dc2d666a8a590e0fc54450ec29cb5 ruby-2.4.0-preview2.tar.bz2=0c9a59a2f57a99c4ee8539a30f41da1de7547566203f89d856e1be9dbb44365754e6c470145dc9336eb324e0feb2f53d9fef18a1564968ac21f9ee528905949f ruby-2.4.0-preview3.tar.bz2=6602c65a7b1e3bc680acc48217108f4335e84fdd74a9cf06f2e2f9ad00a2fccacf9fa035a912bc9d5cc3f0c7a5e21475971dfac37b0364311ef3645f25c7ddf9 ruby-2.4.0-rc1.tar.bz2=b43902ac7794487197df55a45256819d2e7540b77f1ed4eb68def3e0473ee98860a400862075bafadbde74f242e1dfe36a18cd6fe05ac42aae1ea6dddc9978ce ruby-2.4.0.tar.bz2=bef7bb53f63fb74073d071cc125fb67b273ed0779ef43c2d2969089b9ca21fff1bd012281c5b748f7a3c24dd26e71730d7248c05a01cb23ab2089eb4d02115fe ruby-2.4.1.tar.bz2=1c80d4c30ecb51758a193b26b76802a06d214de7f15570f1e85b5fae4cec81bda7237f086b81f6f2b5767f2e93d347ad1fa3f49d7b5c2e084d5f57c419503f74 ruby-2.4.2.tar.bz2=1a5302d2558089a6b91b815fff9b75a29e690f10861de5fdd48211f3f45025a70dad7495f216e6af9c62d72e69ed316f1a52fada704bdc7e6d8c094d141ea77c ruby-2.4.3.tar.bz2=fb4339e30c04d03b1422b6c32ede45902e072cd26325b36f3fc05c341d42eea6431d88718242dcc9ce24d9cad26f3d26772f2e806bd7d93f40be50268c318409 ruby-2.4.4.tar.bz2=ae632852a5f413561d8134e9ef3bb82adb37317696dd293ef92cb76709ecd45718f14116ecce35b12f1c2dd53ccae8dabc7a924a270072b697512d11f4922347 ruby-2.4.5.tar.bz2=7034fcaeaee41f14bc0ecce0d3d93bd1abe95310e1a0b95fac66eaba867adfb2bf7ba4d0d70d67a15ce8df16052dee405c38cdb18987602e64a2f701d37d3df0 ruby-2.4.6.tar.bz2=292802984e5cff6d526d817bde08216fe801d255c4cede0646e450f22d4a3a81ae612ec5d193dcc2a888e3e98b2531af845b6b863a2952bcf3fb863f95368bcf ruby-2.4.7.tar.bz2=2665bca5f55d4b37f100eec0e2e632d41158139b85fcb8d5806c6dc1699e64194f17b9fe757b5afd6aa2c6e7ccabba8710a9aa8182a2d697add11f2b76cf6958 ruby-2.4.8.tar.bz2=2d7e0f5ad766e2a12a1b53ff838e6bfe86244ffb7202196769c25e9df6f71f3ccdd8605e7ef35c53e54310bc82caf6b368ad5111dd0a3ad70a3aae1a7be93f08 ruby-2.4.9.tar.bz2=d485444dcd025a261a16bd740dae63c0aa23e4138a095584e7a83aec47af34415c7d9cbc1313e92da2ec416b11bfddf20bb1a7b60c80f12906d11ef27409b3e8 ruby-2.4.10.tar.bz2=4d730d2d7cb96b002167ee358258f2620862a5a6d8627cfa5b49bd43c6e59c50c0f437b959d4689b231d57706ec7d5910d9b144f4ca1c1ed56bc879ed92e8a59 ruby-2.5.0-preview1.tar.bz2=2d39ef64aaf7a52014905f4ad59b53e83b71433e50a9227f9f50cbb7a2c9a5db9cd69fa7dbe01234819f7edd2216b3d915f21676f07d12bb5f0f3276358bce7f ruby-2.5.0-rc1.tar.bz2=bf0eb114097f9e505ff846f25e7556a2fb393573b4e8b773f94cf5b47998e221f3962a291db15a3cdbdf4ced5a523812937f80d95f4ee3f7b13c4e37f178d7a7 ruby-2.5.0.tar.bz2=8f6fdf6708e7470f55bc009db2567cd8d4e633ad0678d83a015441ecf5b5d88bd7da8fb8533a42157ff83b74d00b6dc617d39bbb17fc2c6c12287a1d8eaa0f2c ruby-2.5.1.tar.bz2=82e799ecf7257a9f5fe8691c50a478b0f91bd4bdca50341c839634b0da5cd76c5556965cb9437264b66438434c94210c949fe9dab88cbc5b3b7fa34b5382659b ruby-2.5.2.tar.bz2=9f9388a162a3ae9c14ec8999fa3b12ff5397de14f55996cc8761d21c757113db37ace4d326b9606de7ad3a5875aa94fec900dd9b81b2fb0dff558c39422f4aa1 ruby-2.5.3.tar.bz2=6fe89fe9d406bb454457442f908774577369ab2501da4fd15725ccbab77675b88faad739a6c8ad1c7b6690b439a27de5e08035b7546406cdeca65c7b295e2c77 ruby-2.5.4.tar.bz2=3c4f54f38ee50914a44d07e4fd299e53dddd045f2d38da2140586b8a9c45d1172fec2ad5b0411c228a9b31f5e161214820903a65b98caf3b0dfeeaabf2cab6ad ruby-2.5.5.tar.bz2=1b56aa79569b818446440b9f2d13122bf7c2976ab9b2865f5fb62d247d7768dd4ac5b5e463709ffec0f757bff7088afd293c2a8c5349c3780763b6444bb354a8 ruby-2.5.6.tar.bz2=e4511d42d19a7bb39ea79f66bb4eca54b63c2a9d27addc035d6d670c1e59ee48a0c6e9c6bc7d082d1f1114b0668831dce3b7422034517f3c4a06ced0e47a7914 ruby-2.5.7.tar.bz2=7d6a7d41b4f3789f46be5f996099f3eb8321aa4778b2a8ff44142654e769ba4ba2df127dd0f267547e4c8cd6ff46364f18e79838df54fcd7e3fb714294ee0099 ruby-2.5.8.tar.bz2=037a5a0510d50b4da85f081d934b07bd6e1c9b5a1ab9b069b3d6eb131ee811351cf02b61988dda7d7aa248aec91612a58d00929d342f0b19ddd7302712caec58 ruby-2.5.9.tar.bz2=12f58e14cfa6337065b0e82941e39b167813920eb54cbdb4ac4a680dd0cb75d2684d341059e7b4d0da1292bfc4e53041443bd14891a66f50991858b440a835c8 ruby-2.6.0-preview1.tar.bz2=d9cb270529a97670d54f43a0236fab072714e715c39277dab70b7a1843ec818e6700e47e1384c7256f9e0ae41ab2c0b768a0de38a5ecf4f4fff5da6ef5ad4944 ruby-2.6.0-preview2.tar.bz2=3872227e9b1c97c206d19bf1e6ce15a38ee15a26c431b4436605dea67affcf16372358984df76b35e7abaa902c15c16f533ac7af47e3031dea9451bbe459b693 ruby-2.6.0-preview3.tar.bz2=d1693625723796e8902f3e4c4fae444f2912af9173489f7cf18c99db2a217afc971b082fce7089e39f8edd54d762d2b4e72843c8306ed29b05ccb15ac03dbb5b ruby-2.6.0-rc1.tar.bz2=cbd6281b2aab6fbce3f699c1ab57e5423304dca7a547a0b3cd4e8e980326dc7b85b2ca2bfaf3f3a648d40f4222fdf1740d81d422790ee7ae1ba1ed33eb11e3e8 ruby-2.6.0-rc2.tar.bz2=9bfbe83fd3699b71bae2350801d8c967eb128e79b62a9d36fc0f011b83c53cab28a280939f4cc9f0a28f9bf02dce8eea30866ca4d06480dc44289400abf580ba ruby-2.6.0.tar.bz2=ca3daf9acf11d3db2900af21b66231bd1f025427a9d2212b35f6137ca03f77f57171ddfdb99022c8c8bcd730ff92a7a4af54e8a2a770a67d8e16c5807aa391f1 ruby-2.6.1.tar.bz2=fc41429491935b89532733b95476ab9f8a4efc310aad8f4c2bd3b68fba08fd7b6e9ac84c6c88ca892022d1ba76435295f3299ea466f9b5453c07d41cb539af59 ruby-2.6.2.tar.bz2=cad678d2ced4085e99009e4fef83c067dd0e6ead27a8695bc212c0e5112a7fa09ceb27f82638faf91932ef8bdd090f844e0a878ffdf6845a891da4b858588aa0 ruby-2.6.3.tar.bz2=c63c3f527bef88922345f4abb4b9ad467117b63f2132e41722ea6b4234cec3446626c3338e673065a06d2894feee92472807c284cbe613a442c8fda234ea7f88 ruby-2.6.4.tar.bz2=a9fa2f51fb5f86cd8dcaa0925fe6f13d4f19f110b5d4c5fd251f199d16aaf920db39ad3bb50460eb94ab8d471ab2ac8bb54daea4a3bb080eaf45250aac3437fe ruby-2.6.5.tar.bz2=28e0b04ac8ca85203eb8939137b5e5de4850c933faf7f62fc69648fe1886faaabf6cdf48382f9d9585c1720876d10b41dafd33efaeb23341c309917fbd8a6e21 ruby-2.6.6.tar.bz2=001851cf55c4529287ca7cc132afc8c7af4293cdef71feb1922da4901ece255ec453d7697b102a9a90aef2a048fe3d09017ea9378ab4a4df998c21ec3890cdbb ruby-2.6.7.tar.bz2=311ec56d23d0de7a163f66c1ef4e5369b822f8409f8e1f3a25785c803f01c68dd13aa8ddcfb3a0fe6a97bf321950f8d6cd75b2babcb04158e791601914666f7a ruby-2.6.8.tar.bz2=51806d48187dfcce269ff904943dd008df800216ad4797f95481bdeecc2fbac40016bc02eabfff32414839ebb2087511d25eebfd6acead1a1d3813be6c10edf7 ruby-2.6.9.tar.bz2=ff067ebc059094c0a9a0debf54a37aad2c85f7ed47be59299041c9c03a7701529f5063ff32a1b8c56d48ee8585015acba63602ed0176b2797d263d43d67aa241 ruby-2.6.10.tar.bz2=275a0f329641e6c3d3d3c33ffabf585195187eb3baa4fb1dfd35999fa0a80bd5925943fa2711827ac00dffb6c9a1deeadabaf2e9ee401d56926fc167db5ae4a4 ruby-2.7.0-preview1.tar.bz2=a36b241fc1eccba121bb7c2cc5675b11609e0153e25a3a8961b67270c05414b1aa669ce5d4a5ebe4c6b2328ea2b8f8635fbba046b70de103320b3fdcb3d51248 ruby-2.7.0-preview2.tar.bz2=7066ececebbbba4b2933ba1a4f70cdef373169910802259a3e52b4fc144ba298f3cffda4be5fe8a7be8ef769ed43076fa046a9ac2c13bb733475b9852112c6f0 ruby-2.7.0-preview3.tar.bz2=5d8e99e3fd984c7d05c0bc483e1504e81ccdb920cbb2d78cad3c314e197b30316b692fd0199f836acac41246e3a713cb81dc6dd64c27cba56f807df4c193db1a ruby-2.7.0-rc1.tar.bz2=b5f96227775f8bdf19f944a555d0a83d7e84b37bd31fe4b8ac008a3272b1a28a4d94abbb1b5570ee32ec0690ba9d476b837a020a5194bee14bebf6f0e768bc79 ruby-2.7.0-rc2.tar.bz2=9010f72bb3f33b6cd3f515531e6e05198f295bb2a8a788e3a46cdfd776a9f6176b6ba8612f07f0236a11359302d2b77fdecca1dc6be33581edbb028069397a0a ruby-2.7.0.tar.bz2=8b8dd0ceba65bdde53b7c59e6a84bc6bf634c676bfeb2ff0b3604c362c663b465397f31ff6c936441b3daabb78fb7a619be5569480c95f113dd0453488761ce7 ruby-2.7.1.tar.bz2=4af568f5210379239531dbc54d35739f6ff7ab1d7ffcafc54fed2afeb2b30450d2df386504edf96a494465b3f5fd90cb030974668aa7a1fde5a6b042ea9ca858 ruby-2.7.2.tar.bz2=f07592cce4de3532c0fa1c84d53a134527d28ba95e310cd3487ac321c49ee680faeace285de544ee6db432a90aa7538a1d49ff10c72b235968ca362ef9be621d ruby-2.7.3.tar.bz2=e9236138be3e61380140f2e0d42f8fb82ad8f5219d454de2f6c2ec546bb208acc8b0f2020f23e6446660d2b3b9ae873cdd8298471f166a5f1efba8e80b05e746 ruby-2.7.4.tar.bz2=f144c32c9cb0006dfcfa7d297f83f88b881f68c94f0130346c74dfd8758583a68d22accfd0fc9f31db304ab5ff0bc135bfb2868145c0dec1ee6cec5ac6c3725d ruby-2.7.5.tar.bz2=0aa2ac44bc22859a39c43d08b7c7f457df05c2dc36b2574fd70ca399143ef1000dc5e496212db9eb055bc4258523d47d26db3c57a1a5a5d63cf1b3de9f81645a ruby-2.7.6.tar.bz2=4f7f3624afc43da25ebf0f01d5a2f92f72f94bab7423587cfd3920e089b479bf559b159adf2891b996f7e6a98c008a4f73a4a2170e2f8619417660ac1ab24bdc ruby-2.7.7.tar.bz2=24cc772ac1b56d3bb423f1b33716f221bf534f3717a506bf8235a698f8a454db7d79d94ae9a84067153c2f737b3f8f6085f34e36cc04be0d75ae2fdd57718870 ruby-2.7.8.tar.bz2=3a9db8d9e79318f869417f2ebf3365907febc0d1428116eabf3253c51d8420f255782b32fa30a54802b9f5f4187fad80dab0611cc80436feec84db87b0456ec6 ruby-3.0.0-preview1.tar.gz=b94892951f842a1538f4b99022606ac2c0b5031f1ede7eef3833a8caa9ed63e9b22868509173bfefb406f263c65211db75597b152b61f49e5ba2a875fce63a27 ruby-3.0.0-preview2.tar.gz=6fa4191425ae71e41894b60bd9c31d483a562ee8216886360ce18238ab48115b95be0367708612c45f634e7584fba8940a524ba0113ce0f36ce4df78a112d0b7 ruby-3.0.0-rc1.tar.gz=798926db82d27366b39be97556ac5cb322986b96df913c398449bd3ece533e484a3047fe35e7a6241dfbd0f7da803438f5b04b805b33f95c73e3e41d0bb51183 ruby-3.0.0.tar.gz=e62f4f63dc12cff424e8a09adc06477e1fa1ee2a9b2b6e28ca22fd52a211e8b8891c0045d47935014a83f2df2d6fc7c8a4fd87f01e63c585afc5ef753e1dd1c1 ruby-3.0.1.tar.gz=cb81db2c9b698cf8159b2ca6507f4c7f171e4eb387f5730c4b658ed632b7900a169808e6fbec0ee80598d937030ad5d9c56b63a2a339373ec5d9e1c06b7661d0 ruby-3.0.2.tar.gz=e1fba6f5429b5fca9c3f52a32535615fcf95fafa415efc71c46db4cce159f249112c01574c305026be5c50140335696042e47a74194caea045acbfaa4da738cd ruby-3.0.3.tar.gz=39dab51a0d784a38302372b99f96205817d466245202586d22123745761e9cb39db128ec2b984ebc3919b9faf2adf828d19c97d3fb1e56d44be0a81dc5d11b87 ruby-3.0.4.tar.gz=0dfded6826063c1b39bf625a6e13b46c109cb160c8648b78f0965f70e7c7a1a65f1c117fc8f2cf8bdb34d7cbf79fecf1f45d169d2323406d66ab27b18bde1d22 ruby-3.0.5.tar.gz=ea45fcd2ca53b87f18fd8696d00a1e340d2495443216aaf87d3f643cb5bd8bb614a1faacd82d07e7f2b72172397c728316a82d7c34a7b4566191268ea517ccf7 ruby-3.0.6.tar.gz=d596bfd374ae777717379b409afe8ee1655ade0c0539ada7a10af4780b818efe25a28aa50a2a7226741d1776d744e10ad916641f9d12fb31c7444b0a01d0e0cc ruby-3.0.7.tar.gz=66e5116ddd027ab1b27d466104a5b440889318b4f2f74b5fdf3099812bf5f7ef77be62fe1df37e0dc7cd5b2f5efe7fee5b9096910ce815ca4126577cb2abfaa7 ruby-3.1.0-preview1.tar.gz=63f528f20905827d03649ed9804e4a4e5c15078f9c6c8efcfb306baa7baafa17a406eb09a2c08b42e151e14af33b1aadbd9fb1cc84f9353d070b54bbf1ff950d ruby-3.1.0.tar.gz=76009d325e961e601d9a287e36490cbc1f3b5dbf4878fa6eab2c4daa5ff2fed78cbc7525cd87b09828f97cbe2beb30f528928bcc5647af745d03dffe7c5baaa9 ruby-3.1.1.tar.gz=a60d69d35d6d4ad8926b324a6092f962510183d9759b096ba4ce9db2e254e0f436030c2a62741352efe72aec5ca2329b45edd85cca8ad3254a9c57e3d8f66319 ruby-3.1.2.tar.gz=9155d1150398eaea7c9954af61ecf8dfdb885cfcf63a67bbcf6c92e282cd3ccac0ff9234d039286a9623297b65197441438c37f707e31d270ce2fe11e8f38a44 ruby-3.1.3.tar.gz=550cfda2ae492312009a58316e18fd77ea92852718b37443bcd76aac84ba6694fb841fe19bf23bee099f96f5aeed9d03e77c8c02fb194e414eca5f707adbbf90 ruby-3.1.4.tar.gz=41cf1561dd7eb249bb2c2f5ea958884880648cc1d11da9315f14158a2d0ff94b2c5c7d75291a67e57e1813d2ec7b618e5372a9f18ee93be6ed306f47b0d3199a ruby-3.1.5.tar.gz=23661cb1b61013d912b7433f8707bbcd723391694d91f413747c71428e74f8c7385c1304de7d08b70c9fa3bd649e4eb5e9acb472d89dc2ad5678cc54855a24ae ruby-3.1.6.tar.gz=624555ab3681bd6663bca7cf3529a969b9f0f16928559cfb713c57f763506c8740410c9b460d946922994859189ef2b9956167bd31423cf2e3acbf5a30086fe1 ruby-3.1.7.tar.gz=a8432aaeaee4f48027ab30b7870bc61350840761b9d72b0b399d8fdfa96acb3c8f1ebe63663bcd8d835dd89b21128a07ef8f0c0c47eb41b942c169954ccb7edd ruby-3.2.0-preview1.tar.gz=d24e77161996c2085f613a86d1ed5ef5c5bf0e18eb459f6a93a0014a5d2ce41079283b4283d24cb96448a0986c8c6c52a04584abd4e73911ea59cefeb786836e ruby-3.2.0-preview2.tar.gz=5e9ddcb1a43cff449b0062cc716bfb80a9ebbb14a1b063f34005e2998c2c5033badb44e882232db9b2fceda9376f6615986e983511fda2575d60894752b605cc ruby-3.2.0-preview3.tar.gz=860634d95e4b9c48f18d38146dfbdc3c389666d45454248a4ccdfc3a5d3cd0c71c73533aabf359558117de9add1472af228d8eaec989c9336b1a3a6f03f1ae88 ruby-3.2.0-rc1.tar.gz=798157d785ebae94cb128d3c134fa35e0e90c654972e531cb6562823042f3fb68a270226f7b1cf0c42572ef2b1488a1a3e44f88389ad2a6f9ca4b280a2a8e759 ruby-3.2.0.tar.gz=94203051d20475b95a66660016721a0457d7ea57656a9f16cdd4264d8aa6c4cd8ea2fab659082611bfbd7b00ebbcf0391e883e2ebf384e4fab91869e0a877d35 ruby-3.2.1.tar.gz=f8bbff5e237b501f4042ddc70a19ac1ce74f72f147c90daf7f3007a940136abde37c12a0f7444f713ede09ba847c2cc2897a1742823832e3dc8cce80073164e1 ruby-3.2.2.tar.gz=bcc68f3f24c1c8987d9c80b57332e5791f25b935ba38daf5addf60dbfe3a05f9dcaf21909681b88e862c67c6ed103150f73259c6e35c564f13a00f432e3c1e46 ruby-3.2.3.tar.gz=75aecd9cf87f1fa66b24ecda8837a53162071b4f8801dcfd79119a24c6e81df3e3e2ba478e1cc48c60103dfaab12a00cfa2039a621f8651298eba8bd8d576360 ruby-3.2.4.tar.gz=b695b98dac7bb2c8755a106d949cb1b1b91551092fad263765171ddf8a4d86585259ffab5f7cc9bace70143d645dbe5932cfc61c6dba7817177de391d76bcd79 ruby-3.2.5.tar.gz=d86c0151fabf21b418b007465e3f5b3fd0b2de0a9652057fd465b1f7e91b01d00f83a737e972ea994a5d9231e8cb27e64e576852390fe6c2ad502f0d099fe5f4 ruby-3.2.6.tar.gz=26ae9439043cf40e5eddde6b92ae51c9e1fa4e89c8ec6da36732c59c14873b022c683fb3007950d372f35de9b62a4fabbbc3ef1f4ef58cd53058bd56e1552cbe ruby-3.2.7.tar.gz=174e70ac20a21ea77e2c5055a9123a6812109fd7b54c0f7b948312b8159eedbfb11c06120390c158430ca8543e36893da6c809883c82757082d22e08004c5055 ruby-3.2.8.tar.gz=342d9ce337936cdbaa5d63a4d393edf0594e431add8cec3b6f17b884075bfdc5aa7a843c03f4ee3bece01700dfa4707bba653715a628d9dcb230762dbd3e5ac8 ruby-3.3.0-preview1.tar.gz=0f891f140ddc6372aa7c4459f8784126e0c341db7b80e72c51e441c5153c43c2d7b965f7807c076862ac84b9b8b0c6a66bbf66fc341746016151397bb21c782a ruby-3.3.0-preview2.tar.gz=1c5a13e519e8487fd40d932b96d14fa729521925c288e7841ab5eada628e506ceca2605bae36eea1aa505d9253383d53cd933b7a4bff96e6de5b1130c7c558e6 ruby-3.3.0-preview3.tar.gz=94db07a6958c09809b2e5b597fa55a121074e8bacb3bf588c83cf0d35b07a8b070172035a49d1abf0d8ee364a9ace824f34e677f7327ffe1acdbab0938ac49c4 ruby-3.3.0.tar.gz=26074009b501fc793d71a74e419f34a6033c9353433919ca74ba2d24a3de432dbb11fd92c2bc285f0e4d951a6d6c74bf5b69a2ab36200c8c26e871746d6e0fc6 ruby-3.3.1.tar.gz=0c8ea922a79152ac7adbfb2541320565bce6a631692fd39d499a06f53ad6339c16fad8374d171351ed63f7bda3312b26d4f8c058c5b6df3d7548fde372c718f1 ruby-3.3.2.tar.gz=a15ba8d6c2830fcd1f2b36f671acf9028c303ec78608fd268da0585db8e95ddd971666e8029bcfa2584da2184a6534e1f2f2da07fa7ca4494e8d842eed206f00 ruby-3.3.3.tar.gz=0388a96127eb6e53b836f7954af51ff62b84cdb7abeab823cb1349993d805b151204e426b9ac04ca8333fbd5e01c386d58bc37d34c4e9286b219dcda7542a150 ruby-3.3.4.tar.gz=56a0b88954a4efd0236626e49cc90cdb15d9bfd42b27d7fc34efae61f500058e58cb32c73fdef5f1505a36602f4632d6148bf3bd1df539cb5581ae157c78c22b ruby-3.3.5.tar.gz=5c482059628ef9de5d8a6ad4751f8043f2fc2b159b768265be7f3ee0574ad51d9500ee4fc9146c5978fbd51313039c3de39e7b7a4dedc9bcd5d09a41a713f1a7 ruby-3.3.6.tar.gz=4ae22f5c2a1f7ed84aab7587ff04ce4d9933cffe4347deaef0ab88d22c9780f274c1664a4ee1dd8235bc3cc749be828ffa8db7cb5f5002339a59a599acf3c729 ruby-3.3.7.tar.gz=9b48be05d1210e9194c8a6d77dfc3227599bff2b55fc9bb2049b11547927deef530ece9a2a505600cdc492c8517b1bef7ab5f2520ebd79ffcf76f0a734fa763d +ruby-3.3.8.tar.gz=c5005ba4019fbae19650a9a9ce139e13608345065da9e2277dbeac9d0ac9e3b07b666816afe7be690088080c8c9cf88a8c372971d429479dcebea80d6c2e3883 ruby-3.4.0-preview1.tar.gz=29c0e32179f7b823b6708f5328e495cd333fe8dd88f7df7d9051deab47add67b14d899bba565bba1a77e1b04c9693d9708541445c112925777bb6891cb7b2b62 ruby-3.4.0.tar.gz=bc70ecba27d1cdea00879f03487cad137a7d9ab2ad376cfb7a65780ad14da637fa3944eeeede2c04ab31eeafb970c64ccfeeb854c99c1093937ecc1165731562 ruby-3.4.1.tar.gz=93acc262e3b7cf86aeddebdad5b8938c187b9c44a73b0c252b6f873745964001459ae45ece7376745916e317c24895596a42b4544e836670fc6e90058e6f0de4 ruby-3.4.2.tar.gz=edc3aede0aadcaa62343f38ea6cab7adacedba810d883f1d9c3e6e24e28e24e0e27a7df2c8e517cc2aab940168fc4872ab8cad000598aab5940aa79072ac190b rubygems-2.6.11.tgz=3b0dd38c0aaf313c59e299dcf54f7bfb6e6d84b8b739573ddaf599e584da45ed7b1465f6521131b32f237e31a4796d9ef455b8be685064b3fd77a0355dfff13e rubygems-2.6.12.tgz=ebb672488b50f5fc988eab66ab14ce8e887dcc635f71239a85e32fbf1e919ca70196eb4d3f2fee3486cace7064bab0b8b08339c754b723198e1b0b0a0984ab54 rubygems-2.6.13.tgz=c952b6061a9a0778db304c3aa5bea693e71ae2564abfb19f8b123eef66eb1e3877fc7c36f4f1527da97bb320870cbfd4574ac57ad88e850a44fadd67ebdac152 rubygems-2.6.14.tgz=7743845bc5265df3782f85a23896cbb250d8a2bbc9934a27f274b001afa7aa62f7f00f616296f74747ea612d2cb37dd7f533c931aa72550d84c64d2a73d60daf rubygems-2.7.0.tgz=0bd08fbabcc33687c98365ffe6794ca2a5e82160b0297479d4f19bd899d176b7f4efb95248898b26d873f9fc7d86c10cada6e40cdc48738b0bac261c3aad261f rubygems-2.7.1.tgz=fa4ea123760b03b8b8e8ececc55c9dc34249073fb267d310bd903aa7a613267e5d27990bbf28e32c9a746bf884af8a84a0dc202297272f9d477f7710c21bfb60 rubygems-2.7.2.tgz=0f48c6e46663780a571c7ee0e6e772f2e18a755031e7dd8ede7870f238c214b9e3e38153b1ae8f1f78a9aad63c1a079b86573b3a25c57a600d842bdf92b9c4d1 rubygems-2.7.3.tgz=2782331b31947a23f85b285a3d5e7b66e34fe5847bc84dca4f1e6bfe33ce187ab0cbc814229de8111aa19490b656ca78b7c821e4ea6b425449991c01371b7565 rubygems-2.7.4.tgz=90f72a46709ef847666a6a23eecf24521abd5c294b2da8a246bb4c7f85daf4af39a0634fc8093c7bb7ded2ac137ea27fac5ed94af3b70c49e78594285c7a40ce rubygems-2.7.5.tgz=86957f1c438070135df527a15102e40487fcee93a55251463095e4c8794a8616d16ed9bdead0e0ef83c44806bd5016ecd9e178bef608b66af2e68e2c9c49e941 rubygems-2.7.6.tgz=bc168afc40c974dbc7c37eb5678432ba2ed7469c3f007a159699467ff2cff5205c508237193ee8becaa6eb555b043969cc5f92b2aaa6bf7c958dd7c187e258a7 rubygems-2.7.7.tgz=f93b7eacf5ef8725c40d618daf9deabc7e9eed74b3b7f13ecd16f89205fe24958e782314c52f8a8fe3205b93e20b830b4fbf7ff8944ff1cf56feb7de2d773252 rubygems-2.7.8.tgz=3d1cf68377dfcf102028342258aaff5a7257d2d2b34a80508c85aa258d810add46e65a157f902c271b0b7b568c437372d17246e89cd88f8500e47c008d17f1a6 rubygems-2.7.9.tgz=5f699f47bc24d8ffd4f8f44a509a9df71fcd945ca2574dc9d5050bfe06a44830a368f45d204112d7a4f1877e1600a6fe4d1b6b68f9a55288664667b4220a7d72 rubygems-2.7.10.tgz=48a18c0f202f463c38cf5dafecfbc7cc39245e63c7a059ef2cefadda478483794a929ea6b7e0ef062dd4423230746f1f09d7bec06a97fe3ceccc3325397a3e71 rubygems-3.0.0.tgz=047f4d446aae414e4803517088ef47d5cc66319ff08a3795c6d69e83eee9f3e7c3b05419858f7e5b6a8ec224990ca01178a9259961ef2d7ab737bac352a0f18d rubygems-3.0.1.tgz=dc29ad51ec67b1dca82a23973ea92153482788964d0755bdcd3c650116915c461c6e5fb1c826be3ee04a497fec4ac2826904bd406f24611e77cd8c9eaf4d8729 rubygems-3.0.2.tgz=90b46c2cd4f8baee74eb488a40691cc00e754cefc42029d485163d6ad7782df78ba5cbeab08eec6a4f71febe0f6e635e12a9381393008c58eb5e16396df93fbe rubygems-3.0.3.tgz=1dd585243341901c7b4cc60a4902000c10ce57fe2cc9c28e27e274a2e6029f936cde1c99d7097c93c2c5b2c8bcee5d692c8fe5cc00c996a040e4954b674e330e rubygems-3.0.4.tgz=887c64226ec0b32d33f2ea331936683406d54dc74d19e658a23521e25ab50aa23534fe9eecaf696154247ad1df1d24c233d8900b9aabc79096eebd6afef3f775 rubygems-3.0.5.tgz=f5a97cf67d7d043afba7c1aed014f1b64ff6376ea74d3d6533496bc5ca9742e0ccce1a157e6f67d8fcbe59d8e34bbfbcf4ed8be97acf2970603de6381043cb78 rubygems-3.0.6.tgz=1ef1822a2b19790a36a6d242b7d4584222617baa27787ec58961a9cfeb2733f19f9085490ffc72ee375d3153c7114e050c42e68fc8039e727fe5961b09365ee5 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=5dfb040b746e462c297ebcdf84e0f07cd74b86852055dcf0a7cf1814112099bc674bcccd94b03726aee76b253c9345a45d046cbfea230647644f0fd6b1c1ec96 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=17983c442c54d19196be3626e25c64f5474139c0b973624832ba8730efb047bc747c02e59c82f38397bf012c63ab83f79a9c1b64311cab796f08fe96d7d12a1a truffleruby-1.0.0-rc3-linux-amd64.tar.gz=b0b57082d61317911f101da617333d81ee6bede6b6e18f9bed86544dc413339c830198d90cad7ac94c0c8fb690adcfc559dd9f530abb70507ff6a76eee552b61 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=18f9782de56269389320ddad779ec69c168909198d4572e2ea4c18bc8082a539569a76760a6a6da58722fe08d77d83904aaba14baf4075a2833cbd2efc45dff3 truffleruby-1.0.0-rc5-linux-amd64.tar.gz=134d9ba5db7b8a1960d3a88390cd6f7503a0e8565094fb127333d122cd773bfbf9dc976c659029007e6fb68e93486293bac2ee29ab21dae9cb0c06ba57dd2c72 truffleruby-1.0.0-rc5-macos-amd64.tar.gz=5804f1f27916176f5a270de8aac85bc48c38ba37c4e719b09f5777e5c42429271819378cfe096c3cc33d406cd0726f2e37658020f97a438fd53751019831569a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=2597b375f590755b851d3b8cbad3eeab4c965eb02d0c944044f57e39f6c3db1e2f513e2aa55db789e4a885c697f81ce5c8bdbe9a7e44ee30fc09d234e44fb512 truffleruby-1.0.0-rc6-macos-amd64.tar.gz=2eb177190de0408dfdaf30264132955d1db7783ddfb63880d97d5933f66c5662794c3bb6198edf230fbff348674203e61f7f5481e74ac875974467f2f128e939 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=ab3a3dc19f903e68e36b135729693fa025a7c1950139277255e48c972387ef8399beceb3252ac37cc70c0df92838f8a0ba8c45f53665ac4286ef23f9b240806a truffleruby-1.0.0-rc7-macos-amd64.tar.gz=b8423f50a5292e211db7ebd7e2b987fd5c9eaaf34eba86b0644d2716a7f068f2e56deb4357c516b87b437e64fd5ce8515bc181165cc1042c6763f27d71baa59d truffleruby-1.0.0-rc8-linux-amd64.tar.gz=bcd05d304ee9b4da97193575fb1ad78041a0c7710bb444af6aef12ab4261b1873f472175ec51a187a5e99da481d66b81a132fb691643b793e87d655f31d54657 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=2c758221793c38ca8af1831a5d9f3abd555c406569508ac3a86d3c1ea5baeeacf65abb6e904ed3b1e58f555f51bc85ab171135ff4c3d0e08cdae994a861cbda4 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=42e60b69957f77a8623e0dccb7d215e800c27c622364fa76b9c574e8b1d3a4056a058b61ed91eac2375ecf4e51e482a6e17550aa2894a44d1db70687958033da truffleruby-1.0.0-rc9-macos-amd64.tar.gz=18556ee8d2fdec6907fbc8fc33d8b32ea0c58d40ee3df084ffb233e2fcd3a514a553f97c31dcc25dda3f86b1b805ca5fe3c9bf8cb078b92325515f09db6b88ba truffleruby-1.0.0-rc10-linux-amd64.tar.gz=10a7cb1be6214347469d5797091f73c3d7824bfb32a47c13566573a383380b1df9b79b7901ce0fa3af1c97285c90afac21e2de7a66ed88d9495846743b3b25e2 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=53f0939d9d8c3470cb79316d865b765816032528d77a3cf497134f3aa667a6253ae037410801261a8e7d0628198ac5f6aea5ecf9b7313f06ccc1d5e9f94e74ea truffleruby-1.0.0-rc11-linux-amd64.tar.gz=f89bc9a3310634d39f68006307da0b0ddafae036089bdd663e8372777a9562d201a4e69b2e1a602cff5fba6c78a8d4861b6d1020679bd0c72c71b938a4f36a27 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=3f461c12fa9fa57a55cc390eb9887df88f404661a77bffb44f82b4c7e9021513a6df9f6d5f332a36ce0c28ae7e3d5afbbe15cc4b814bc7f86dac2e5ec280f947 truffleruby-1.0.0-rc12-linux-amd64.tar.gz=85f042c308ccdfbeb318cec37056d8d970cab51cb0779425b85b8f76b0a1dd9cdec3191ae2b6b9b6be6e95767db814496450ed20076addd9bd495742f9de3c8c truffleruby-1.0.0-rc12-macos-amd64.tar.gz=067a0f63bbaaed4c8d4120f758c8ecf8c52afd1d30ea9d41489e26289d57a574d2d4ae29e29655378510adfb3f4a07b04b403d6ee98ee6b3d3aa8bff9c8d718f truffleruby-1.0.0-rc13-linux-amd64.tar.gz=1eb6b80cb05133d253f20629a11ed9ec3f37da002d5668cdc6577b2a20524e0cdd4d739d3f1aa2e8c518e2f7ebfd519ec1c647293714a1133ad4d569375c0e69 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=e3cddb0d0ae48f7d5ee4dd094ddb5a13f6a7aff1521b1adf25710971664b235cf67144e3b81525fd710dc49b6f6f6ba06e10eee1df5dc08119e9494c6be86934 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=c982194675b66a0433bd5517fc6f1564db669f595f8c7ba4819bf37e0599474d49a0c606577a898c27fa5ba40ab793c62d8211e7ea398d6b3e2bcc31eb5d55f4 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c14e396396385644333fb4c4aa1fb4b934a3f4e46312146821e5dcdaa097cb5b1efbf397c1dd6117d909803fd27ba8d835904672e98d43dc565e907fed752e1b truffleruby-1.0.0-rc15-linux-amd64.tar.gz=f27a75f929a6e945e49ceaad12f484fdaa918469a2f639b572fc4737b78e1cde0881697057e13a58b2fab7ac64c3a71bc9951561c3a8728e3dec814ef5e95fee truffleruby-1.0.0-rc15-macos-amd64.tar.gz=7aa029c4999d4608c9bcc491771b0434267032dbe9dbf504728079f87ce93e6a90e0fa839295b88c00e5a025186ed0fcc42361428b7874c05e222edb108d6c02 truffleruby-1.0.0-rc16-linux-amd64.tar.gz=e8c508dede11d4f54cf0b15cf92b50caad93076a6065bd2d6784c5ca739f5923ea2b894c6b2b52131f62187c8b305cd11a960fb5a670789802d59b6b2999f0af truffleruby-1.0.0-rc16-macos-amd64.tar.gz=841eff077c38bf594b101edb15942f601ba0dada2122b21b016f53251aa2a635b8d0b63b49bdfb50259b2545d1f498bca95d5f771a15a28edb0dd07216c9b709 truffleruby-19.0.0-linux-amd64.tar.gz=8ec6c7829351e0dc2cce57305947cd540734fe5a0b95b9501d4179993727ab2c331e9fb639b9865c0fed596df3906adf3dcf2efb22c4cfdd23a3dc2137025fd4 truffleruby-19.0.0-macos-amd64.tar.gz=912e0c15d32e40c884b2caaaf9a86a71450d441c960ef98a63dfce80353619073b146dcfe03d9af4273b2811d0899eebe922cc84a51d6f5e6826cc436d793f78 truffleruby-19.0.2-linux-amd64.tar.gz=eec92bfbd776acd61709a428b90b1029c5ea83e5ea839304d23cae3a541dd4fab3b387691fa76643f55d5939c9cac0cbe70dc0b5786e5e0e5d20f3fcd9a21356 truffleruby-19.0.2-macos-amd64.tar.gz=ce647b76c9931feac55baa5acd2c87d8335c606bc5cd7e462bd92ba1b09f4bab5db927f021e3119abfd85c33377003d060f36cf64eb121954fce8878112f01b5 truffleruby-19.1.0-linux-amd64.tar.gz=db01e6dc09fc5f39ca466aa94f725023d49a8f52343f129bf8c32b7f5f76ccf2d573ee3344fce3d5aff9983bc9af618cc5ca6e1dbba93b3f604e4f33f8a69b3f truffleruby-19.1.0-macos-amd64.tar.gz=f002bc0b6efca11eb97c4aa6df33d2e0fcc1de3443efd39d912b028df9dd8954cb76ef3ca7fbe140f4e922d6ae4c1a6a20853490ef1ea0749293e2fcd4ffe8fc truffleruby-19.1.1-linux-amd64.tar.gz=ec031e8c216e31f034d97aaccd6441869221d6946e18f375b44a866550b8e8eb4b2fb923f9ce1a62853bdcd5b9201e0f5d2732ca6525d80171d5732ef522bd25 truffleruby-19.1.1-macos-amd64.tar.gz=1c15918af939a8fe1779b71d9e53d2ce09ca7353173a3b357905d9fe1981ff013cf0f90c6b47e1ca66dd168c2f2d742f28a5fb134cc0231d36146da99f91c3cc truffleruby-19.2.0-linux-amd64.tar.gz=1248bdde9cd3651d7042fe4cecff4ad35534868d543fe2e6f3a5bfc3bc9d10d57b4139fc070f0a03861436a1aabc9a8ebdf3356f39b77a4b8f6a1dcf492f70a4 truffleruby-19.2.0-macos-amd64.tar.gz=92c3154ed229a115cf392826494745aae06dd9228dd0996c2c44c550552f13f9c254367d068452fa4a84eef79c19601c79b87e10f3121fd7b83b803514a41cfd truffleruby-19.2.0.1-linux-amd64.tar.gz=53c78cd1f255f2b7031a70a42b65c0bf80c510b9254f5d7ba82b4787f55f5b09cfa9544c424a90f4619a74179fed07c168bd501e34772ef836a773e89c467cc5 truffleruby-19.2.0.1-macos-amd64.tar.gz=ac11523cd49fac50de1e441039e429fb8cd6c7051d537e5083b64fa68eaa19c9f0a966b269da906c367985f229af82a4811282dbfd0a76ef6565162e1081a659 truffleruby-19.2.1-linux-amd64.tar.gz=c5ffc1b592a74e836a4f6ec75b0e103150a4a40d3183ae853ead38c951a85378163111cf0bd2b81e44548c0a7aeaded3ae8a7ae558d5a02dc9e2cce992b79b58 truffleruby-19.2.1-macos-amd64.tar.gz=bb467b91f66eb7d1e6f1a54a7bc0a3d9503bcbd935e8a02da9ea0b749a51e354b1140d4a4dad6fc05312b560bb9ccdcce4f6583bccd19bb5afee19bf494102fe truffleruby-19.3.0-linux-amd64.tar.gz=0e94777a3feabbf0107ed40847e20dd4e3696ff2b7c3f6ceddf3a53ccd812bd003c84c62a750e8fac9d2490374bf792d69174b48c3ed36b593485d86729136c1 truffleruby-19.3.0-macos-amd64.tar.gz=95470c389e24c865ecdc3d299005cd98f8221a128f3cd75f899b6b7ae5d6dc07962443ce0ff38dfd014589d5aaf08b718dc870a72eb7ea6ced18ec2b2db63095 truffleruby-19.3.0.2-linux-amd64.tar.gz=dc5309b71980657f750b4dd4f8b3bc4e191bc305b638b1e562ff5b0ad7fbba40079ba674caf46226a46b5ca58c10f812354786696264742f351b129fb088a672 truffleruby-19.3.0.2-macos-amd64.tar.gz=ff1c37485ebeff3edcc7081ce09bebe5541012dedff6997662c7f8a064e0ab10bef9a5cdf834263a06ae04ca0391743948bcdea6e6c9d7e1cfef9f21523c2bdb truffleruby-19.3.1-linux-amd64.tar.gz=c724547a9eacfdd135ce05eac9dcfe74e58a5e77c97f88103f83b8513c15c975a0ecf623f623a425ec81fad1b64d3b5e135660d6943608ad08048cda00eace79 truffleruby-19.3.1-macos-amd64.tar.gz=d746b2ad410c15d145d36c676a070ae454ba8e5ec6c594d5ebcf54b1fc719f98e8b8f71b6fd504c3d38df286bd11c5114f73b5ba39be312b11d42d4ca1a17d02 truffleruby-20.0.0-linux-amd64.tar.gz=4efea5ded5fcc6886befba3a3720fe1e5b2e376d46738565e8871a1ce0201a33ed52e78b8af2fb389618bdea99466d126d8537dd0919b0c13f8ff1940cb3e52e truffleruby-20.0.0-macos-amd64.tar.gz=b36488330514b77c7115689042cf2482a0beb9f72a0b05fb4c7a6ecb0835a3da47c3b15c41abd6ffced023e65ecf7eabcfbcc6e41901dcddd0fb3dfed46564c6 truffleruby-20.1.0-linux-amd64.tar.gz=116d57404540b85c15b321793a6f985624a2044af544e659b3607e50159703af5d445e22bff28ae2182dfa752f7500d420e250f6deccc98a2f01e89adba8ac3a truffleruby-20.1.0-macos-amd64.tar.gz=9b1267101dfe78b85c79f7528eb4de96b16933e66d5771efa6272372dac0fb35b199bb9d42773d61f4fa7a15d6cbd18b5753c148f7c3e477c7c4b21633f12b88 truffleruby-20.2.0-linux-amd64.tar.gz=a37eaf8475364b74d948979ac13dc6e6423bf11949ad1d0f2925f78a4495e80de9767001ccdb777c8cfd7f545839fad4d842522620c3acad179404bc4ce6752c truffleruby-20.2.0-macos-amd64.tar.gz=964c1e02cc53e1646060334a9911771e679a8344d811a0f77d5cae3529dfefff259c45505ac84b7debb958514cd5d2276ffd435802085494e0229dd140ce8f00 truffleruby-20.3.0-linux-amd64.tar.gz=ec2d8ff6a5d45fd7091e26430c67cbbdc0f8ffa41e9ac574d48802766fcd144e1f446db807700247ad6d8046b7ed070b5da70ef667e576d6fea60cc64ea5484f truffleruby-20.3.0-macos-amd64.tar.gz=1878f94e05a3c40484bf944a72412b179aa5415a16a7ebc1610cb512a1e1c4a2ce0e98685257ad6e5c14745245c35bb5b28205fb687292c4f17193cbfb3bb606 truffleruby-21.0.0-linux-amd64.tar.gz=b7d1b76cc015d136dbd74515431f4447730850475f81b00885b71b95819134db2656d941736048db42d519f03e1f2df066226513b77208adbdbbeda1f49cab11 truffleruby-21.0.0-macos-amd64.tar.gz=7677b827a9c1758d5f941c512cb0fe8daaa19c3db77b485d7dfa43940151d6b9094c4d9271e18ef5014630142dffb93d168c7ac631a3b5eef6fc61b2f9eecf88 truffleruby-21.1.0-linux-amd64.tar.gz=010e9fb78cab12486641780392be0f284da08dfd955f3a0d1ef72adb52e1c9024b54dc880173645aea2af680b3670a6bb01409198b757239edda4cd9bf2b1e90 truffleruby-21.1.0-macos-amd64.tar.gz=96ef8481faef1bfa7f01bb4d396818ef6f0943d19c6a23dedb68f8346740b72bf06efc707bdd29158cf991cc7073c97f429a07b02c2a48050512b46369850058 truffleruby-21.2.0-linux-amd64.tar.gz=c20af04909a852cb676c90403d852fb367d56eac0f9cf8ba42caa4cad1013ba393cc4611e434614ad132b7b0ed61160aadd887001b08de0767cf58f5e149efe7 truffleruby-21.2.0-macos-amd64.tar.gz=0b8d9633fde53aad78f0baf52858cd5a5716f53ff21698baab17da4a625b4369b88dbd664193e3f0d1b40e64c88699ab4f04bbe40f54189a588c93678962a7be truffleruby-21.2.0.1-linux-amd64.tar.gz=15ceeee383114f974aed5f16c99131d56947e13cfe248b97e55d61263ccd51aa56fc3e0df215196ef7f80ccba9e7f19e7f261d7a91d54bde2d9992caba682d82 truffleruby-21.2.0.1-macos-amd64.tar.gz=8a8762d90c19db4f48433ce0e3f3339e290685d79c6ee9bb7d4359c741edfa6a7360ff65124433d964730ac25b2cc6d8b581191b0a51479f11c2a80031a6c1c8 truffleruby-21.3.0-linux-amd64.tar.gz=b0c07b1ea797de92447a81b350d460c125a2efaff3c290637c4bcf1c216b5abd11148cfb143ad397062a96f36beade8234d0785c42f58fceac0011f629a5220b truffleruby-21.3.0-macos-amd64.tar.gz=42e607fa52a534123989ad232691ede65aa1c615f39320d93aa8ab9c21924eea7bc0aa49aef1a540ec972e2b3dc775d22a99eca3e0c9bc450c525f9020fbb975 truffleruby-22.0.0.2-linux-amd64.tar.gz=2231a0cfd27238c34ea0bbad27ba387453e48f39032607cbb829b347ea6ac804df15eb3f84d50b09248782d6202284498e7bc9aaa2060f0ce81bb83a84d700ad truffleruby-22.0.0.2-macos-amd64.tar.gz=1d7ac44f0862ad23cf17a7bba73d23dfd4727aadd9a3aa9633361e9bcd19655d163e160eae9c8db8ec9892f8fbf82d7a38b1cd689475bf41609a828208098623 truffleruby-22.1.0-linux-amd64.tar.gz=c4c2f9bf4236118c8ea62c08bad89e1034ecdfa0c4815693961c4d2b1b30ca043fe958abfec9cf36a8638aa2e005e71fcc244ebffd9ce11eb68cf48bd98c29d3 truffleruby-22.1.0-macos-amd64.tar.gz=507004ade838e614955e23331845839be656aaeae7869ed3d989c10e6491775a12313ac9ef03e14945f20f5e76d46ce6f7bb860af68a627c48065399cea3c567 truffleruby-22.2.0-linux-amd64.tar.gz=37c09249ef387df3e0614f646abb444cb5b7b2751538ab0432e703abe92a81b82e0d15f89d5ad7cd58afe5f30d9a92dc8471d19f1c1ce10b50478ac74f247739 truffleruby-22.2.0-linux-aarch64.tar.gz=49a7cfb4c81980d9c7a1588ef9f76a9bfb759d4b1925ab11f230d99c15a62e162a08249d23cf5646e2d38ecc2005e27103f2e5d92b83b0a182a4e64319b70c0d truffleruby-22.2.0-macos-amd64.tar.gz=d4c206fb0a5e63c5b7f61f2e62de854e4d0817075ef9ded237d98cd821c286e88d7b150d140d9907a957209f39be96c7025560e3908c89aa337925d2fba690af truffleruby-22.2.0-macos-aarch64.tar.gz=a01c18803777a74717ad699b6ee51eb759d881fb436d24338b557c52d4a693079d7b55f108394ccad0dd69c974cb895f4a36854355e84fecb67e41bf9eb18514 truffleruby-22.3.0-linux-amd64.tar.gz=d53472ae892dadc81c6fe63a597ccfb67e133958431b11716db4d920c78fc86f7496e4b10322d041c900bed77d27e02850da20aa95b297d63a9de2e72cdf3c76 truffleruby-22.3.0-linux-aarch64.tar.gz=dab63d49db4722f0c174ce8b882413102520ff649182946ba332ef5ba0fc6b58913595539a20b59e460faab2fba36f762dc8eb66aa729d4a6bb90feb2a95f053 truffleruby-22.3.0-macos-amd64.tar.gz=15c91d25fd6fb1d9f3f2a0b36676da5c8a76d62be86cff463ebe6c7e6aed2d9b6de9062021ab1b9b29cfb7a92b5682c860939acd71d12dba7e4a6bf3964fef3d truffleruby-22.3.0-macos-aarch64.tar.gz=7c44d0dd07e4ecd84a92f6dd574dc185906121b8eb75f6fe097b9d4738aa30751664d70e9027e072eeaa1dffa05fe7bcfc06be0c2dc950142f60664baf5eac69 truffleruby-22.3.1-linux-amd64.tar.gz=f41d3bd22500b7291121368169f8558df4563c840a01b70ff7feea3593f0152d8d77d4437af362bad62f25b79bce1ce8ddaa1bd8172a2a7ef8b61cdb6e478c9e truffleruby-22.3.1-linux-aarch64.tar.gz=1ca5221f0dc5ae3e0bd9545be474e115b2e62737701df95c6ee6cdaae5d82815acbe6af961ff23afee64dc26e655c7786d4347e3694c140773f065534322ee59 truffleruby-22.3.1-macos-amd64.tar.gz=bae16cc04c6018703833121f4258c3f18fa5062309d0600458be3c51c838bc63976a026db0f28d23005df9b640ccad0a9cafc56610a5ca9c24951c66b62097d9 truffleruby-22.3.1-macos-aarch64.tar.gz=b56e230d8fbc95d19364e695aaf1e552238b02ace7056f636808a7d7510777cddfde572ace5238ea1e314351bdd1a053ab3912d0889f51f55c722797c83eaaee truffleruby-23.0.0-preview1-linux-amd64.tar.gz=d538412f12d5ce743c351acbaa483b8b85dd2cf84fe06b3e90ca21f3c2fc0465df9c1773b3515fe4296d599f45e9cbb935dc5a69fe45668321e5639d58608ef4 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=f10b5ac749b11f93c2469f2c8a713ad090cb653761ae0a3e1ba4c19b0c96bd61c5e8da74d8944f9487c2d327d268a188f2cb56028d2beaca2a7816e63123600b truffleruby-23.0.0-preview1-macos-amd64.tar.gz=cd9db49c4253bd66cad6f9ae111c83d3befd0102a7ccb72a2407d22dc576ba7f3a26a90cd479f26dee3565d2f893a2b7c8b549e2351336f35d2632e57966657c truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=28b77d9943cd1617e0445633a9fea8911cfa975f5c581192439cd0944d2a17c2b0558e3e4112588b5fc77b57c48d857ad68ac51fcb867250625ad85406d87acc truffleruby-23.0.0-linux-amd64.tar.gz=da702de2e8c994f2646a3de5b44824210dbd37129cd2f91c3bdd990a1b0d0b05dee4443ad0f6cf98fdb4e489c9f4cde64f3561baf486dc642d4981a1a1812925 truffleruby-23.0.0-linux-aarch64.tar.gz=808254a154adcfd1bbd6e22bcdafebb6169c6f8cfd1c55382d446bb66002384ee844dcd8b5f642703ef440f7566645d190081f45e04a7d8d59bf87571cb4430a truffleruby-23.0.0-macos-amd64.tar.gz=f775d57e63c606eef424a1115408ed8539ef47d6bea0125ad1de7ee4fd5971e96747cb7f5d22d91d2f004edbd6ed6b9b5bd014127dc1abe7821a3a987a72d9dc truffleruby-23.0.0-macos-aarch64.tar.gz=000069854458f81d97eefe14123fbb69937942825e77d35602d55fa279123808177a34f252aec9dcfa48b93feacbee81ae0f0e7043c2d8a9ace2a4bb61ab253f truffleruby-23.1.0-linux-amd64.tar.gz=1868799d989c51798cf07b5243457af7ae2436dd19805fd634c98b2f1885266b5c3ec81dde668c2e5a290e9028f6f9fd223d153489df6ffcc74d45240aa020ad truffleruby-23.1.0-linux-aarch64.tar.gz=2766621877996ad35fddb94f978feed531307e8abf601dcf863754c96782b8149c3ac512dfe6dd2bdef0fe0e8a968bdd77608c41020434aaef4e7250c09edd74 truffleruby-23.1.0-macos-amd64.tar.gz=06c5a1d6ad644fd81737f0a1fd24c1529f712abe2a4485ad597aca7c35ca2af898121bb5883552cf518e2afdcb4221c8ad013759b46a69e34249e7c5ebe2b170 truffleruby-23.1.0-macos-aarch64.tar.gz=496cacc5cf413a48b60184e097a962ab5d2236c539f07cc0a9a2d9ef57dfc911a26b125cc3ad9408f6170c6f93c7562f35729c8313be0301972be21c10097942 truffleruby-23.1.1-linux-amd64.tar.gz=dbca85e281bf2484371a0bbcc202ca700acc704304d966b9202cf3835e82f6eb502e43522355f4c9e5a743877d93f5609006fbba2c5e6343a89de130e5209f6a truffleruby-23.1.1-linux-aarch64.tar.gz=6a58842d79247d8a64c513d68db9d53ea5640c02f71a1bc45f103baaaca67bb224939ae5f21ef55daa9d9b9697404052d39a3c382768ca366ab7892b8bf1abbe truffleruby-23.1.1-macos-amd64.tar.gz=7cc6bc957b7ffa42e9fbfe2f6e3014bf1e7996f2754e9e74377078c2c7bc7ac8e10598f1e1452839fc5b9583c823a2a735731ca193a6af2814a02566cc4cd9e4 truffleruby-23.1.1-macos-aarch64.tar.gz=a85b8189ef8a280f6a27d4c1c93893f844266dbdc15b8c4988cdf581613a353508fae4872ac9380efcc47f36357e137861521712c00ce8548041762a8987a9b2 truffleruby-23.1.2-linux-amd64.tar.gz=6307fd71fb1431fb12346d1f13dee4b3afe53947e8a9c1f3e3aa0baae5f9fc9e1496ede0a7d86b169d912ffef9625af998b4e698dc57a2a649140150e3fae28a truffleruby-23.1.2-linux-aarch64.tar.gz=0f0c5e4aa4e9fbc9b9f91d2b3d3fbfe26e78c5bc5b369fc78dd54775a7582b8c084a64f02848058bec79387fd80b09a5a5594ecfb268635fe76e1f9d957c2e92 truffleruby-23.1.2-macos-amd64.tar.gz=648401a73b29c28862a1fa077c2e1bf8fff65015c8bc690ff883a00a3dfd99389ffdb71f39ad85a4f16c531470f4cc891ae51ec927a426b0fa05fa85c9c6a2f9 truffleruby-23.1.2-macos-aarch64.tar.gz=4ec88684c09aacfa1d8bfed9a17243579ededacecd869e98e12841710bae29ed6e5f080611e53fc217a853f730bb2a9cb3d47ef15443eb8a1ad76a120118c8a5 truffleruby-24.0.0-linux-amd64.tar.gz=3a59a4dc58ad03549d8e63db1485767757715fc9aec21b2b67b1440b13871a04541abeff9bc8201b3088e1865360b1667459e536d3cfb09687dbffca95deafeb truffleruby-24.0.0-linux-aarch64.tar.gz=50f3993b7362bb6e7da80f7327df3d079bb02f98b67012e2135005d77e61648e4f3268f767d8ca245ec5889ff934fbcccb94fd5ecbd55bb0cd9cca900fe10509 truffleruby-24.0.0-macos-amd64.tar.gz=9ec8bb340b15e29550448e123e3ab0f183edb9bbe7e052743cb2306cbd1956a5789c5a367c80c5e8d913dce2b804448dd6815e4d3421515166daf8db51d37c7d truffleruby-24.0.0-macos-aarch64.tar.gz=499f83bf65dcb6ecc92414a3550673e6a0baaddfe3ab13c0bd7aa1bdde1ae2a61d9d0ca8001c0d12688d9e09f98f9e2946a651220fe7d200bb0ec6f285394701 truffleruby-24.0.1-linux-amd64.tar.gz=62b4e8508eba8cdaac70e99ac9cb0b33a663b4195d79b2dad3d771ef538c6c41d1d91bb7bb07fbbafbcbbcaf17814ffaf6d6bdbafd474ba6a8ecdac30315a8c9 truffleruby-24.0.1-linux-aarch64.tar.gz=817d877848ea4bb55658ce34bbda52926be12426a8a5e1c4588bc0ec1896018b06dce176336b382f80a7c6d073d4331b20694a7797ee8fdf0177e973053bf929 truffleruby-24.0.1-macos-amd64.tar.gz=2ea65bea154aa38cce3f00f24fc9a4aab5e7478fafd070d0cc966878371c070d5a1776b7405e2c9e4cfa14e5c51219ed0fa988294eb4708690983b348886f439 truffleruby-24.0.1-macos-aarch64.tar.gz=bc1923e21768d34779c1bcd7850456a01ddc01acd1ccf20f4fb4a446fb847f8c51b1ff4a7c0cdc317ef8ce057ac24f18f25b778a02a6e2b185e0055d946ecaf2 truffleruby-24.0.2-linux-amd64.tar.gz=5d111beb862b618c4e6a7f8aea1d3d6476740513efdd59bf980a2b6d525a017f46fe02017b075962a4919a001b60bd9a070e69fedfa8a85533c0adbad2a8d86b truffleruby-24.0.2-linux-aarch64.tar.gz=8e3ba19df4e5509c4719bc3bb621f70ca6a0e683d48a296703649b88abd83a165e8a64ad2d7dc45394b6de0b214a95a395fa449f5393dd9e67deab9e149cf494 truffleruby-24.0.2-macos-amd64.tar.gz=06d3b5533c4e26aa1356e602c672efad99208aaee96110904216e16dcfb1d99a7535c3ef275f9a14635dd2f05110798b3c75d71199f6010f23c92c6990492cef truffleruby-24.0.2-macos-aarch64.tar.gz=ba36d3f1680112e6623b14a4bb902a5f65f11e9827f44462161b1c79ee344ca340566289aa1f841c1e213daef5608c159343cc203d07f41c2a55eaeb25db0987 truffleruby-24.1.0-linux-amd64.tar.gz=9a93fd61086fabcb6c4f3a0fcb16e81f42b0203a24a04209fe446eb5f88d78e2ac59ab54d42cc30ef5417199a88b452973eecdfafc57c7877e11edf0a3d42b13 truffleruby-24.1.0-linux-aarch64.tar.gz=ca23edf279ee9b4693630df9596c6e269bb544e06bfd02620447f51108d9e9b4dc8b3ecbcc7a8ba1280560c0eb4b59474e75acead81799e4c51365acb5676d24 truffleruby-24.1.0-macos-amd64.tar.gz=65b661b3bf497bbb090a2cb49607aa00c3e5bfe95eb19c7736d798715d55fe07ddb4e8d8c25c1ec4b7b304b37205c7de9d8ac2d56005c9fc43e4dc81ae699c9b truffleruby-24.1.0-macos-aarch64.tar.gz=ab665d995bd63839c0bf6ed1171875cce7974d49ed79953a05ecdcf13d815c0a5cd471f40839f3f51a1b3128b40a4ed34d9b89e4c3f343b38c78276aed667956 truffleruby-24.1.1-linux-amd64.tar.gz=78e4e8bd910e4b3b41e927f6158cf8cfc74da5187969727d5c5303416310c5b7f72fde239993ecd5ab51724785cd80b2bb9a422a0475320fca57ad40b26d2786 truffleruby-24.1.1-linux-aarch64.tar.gz=c4e3aa72433622f96216b053862beb65861ab20ab28cfc50f51452720173f0a836ee69335281c4c89c6289ffa6f42517b9487d1b6fe16926aecfd9180d6f8195 truffleruby-24.1.1-macos-amd64.tar.gz=099d1abaa8677ecfd298e974fbb37e21bff2ad45313090cecf9a2799b79b74223ca4f95fb873cb7148bb2754ea3f923cfb553dd1dbdf6f1c088a3793bd991871 truffleruby-24.1.1-macos-aarch64.tar.gz=8980a71fc423c454ceaa16b46ba085a0164bf22e3e2040e960623148f09fea4c467b304774afc2ea37d9e072905eab3ad65b3c4acdc7b01ba238e24829cc16d2 truffleruby-24.1.2-linux-amd64.tar.gz=93e4ebdfb9c6a89681d8913a0e175b46c53124c37b0c15c6e032bcbf423def9205a6b288977772e50ba68c8fd06308c9478f22dc7c0385b41fc9989f68a86083 truffleruby-24.1.2-linux-aarch64.tar.gz=63a212ab48704376c1f6e6792da231f6b4ed8ffe1f77eff56b0f58ae8030866da6fcc19cd7068ec158c6e11840b13f47d2d12ba65b6a7f06ba1de6cb1b582fc4 truffleruby-24.1.2-macos-amd64.tar.gz=6cb535ce7fface14bdef86ad322992931ff809fbe781c0715774f279842b5f65d5e8ff4885858cf7a3ba345071509127f473381655f50d000e60c90a88eb11a0 truffleruby-24.1.2-macos-aarch64.tar.gz=a146c8000468c977fc48d8069e938ad6d32fd257d23133c2125f5bb86598d00283c654fc553d5de31ff9a79224f34b3b064bb223ff7766f9f2e25fcf7e263947 truffleruby-24.2.0-linux-amd64.tar.gz=ef5268859169ce3c584a7865a39928005dfa264e15dd84031a9ce874deaa31af067b1ef53712011911e7816da18bb085c783a10a4b2e45d3820e1b82d4855f86 truffleruby-24.2.0-linux-aarch64.tar.gz=7c9b29eae0d6db96c8106f286cb376dadfc0e93ded75b7eb333f0919f50edaf7b0b1e2c8634ae9bcb671611cd1084b75b598a8fbc1c79600b59e98964d1fd7a8 truffleruby-24.2.0-macos-amd64.tar.gz=7d54e9b475a2ba18bc78466c75dadf12514090fae74716358a310a339722c5425fb462eb30bfc1e4264e3586717a9647d91f4e07c6250dfb8e3d2de9004f48f5 truffleruby-24.2.0-macos-aarch64.tar.gz=81df31324c5f51650d8d321e3119672c90bd19c6abf61ded977e978cee387a69ee0eeb1ed6dcec6ca371baefe3df64e09bf1fb5eb06c61725557d7bdc62d6a5b
rvm/rvm
4e317222ef2d13596b6e71cecfd3334ecd7c9bea
Add Ruby 3.1.6, 3.1.7, 3.2.8 (#5558)
diff --git a/CHANGELOG.md b/CHANGELOG.md index 5301631..e8e253f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,591 +1,592 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Use OpenSSL 3 for Ruby 3.2 and 3.3 [\#5480](https://github.com/rvm/rvm/pull/5480) * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) * Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) * Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) * Install `libncurses-dev` instead of `libncurses5-dev` on newer Debian and Ubuntu versions [\#5477](https://github.com/rvm/rvm/pull/5477) * Use `zlib-ng-compat` packages for Fedora 40+ [\#5479](https://github.com/rvm/rvm/pull/5479) * Detect core count on ARM-based machines [\#5498](https://github.com/rvm/rvm/pull/5498) * Fix requirement check for Ubuntu [\#5500](https://github.com/rvm/rvm/pull/5500) * Update location of homebrew install script on osx [\#5505](https://github.com/rvm/rvm/pull/5505) * Fix detection of Homebrew's write permissions when using Workbrew [\#5528](https://github.com/rvm/rvm/pull/5528) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) * 3.3.3 [\#5474](https://github.com/rvm/rvm/pull/5474) * 3.3.4 [\#5488](https://github.com/rvm/rvm/pull/5488) * 3.2.5 [\#5490](https://github.com/rvm/rvm/pull/5490) * 3.3.5 [\#5499](https://github.com/rvm/rvm/pull/5499) * 3.2.6, 3.3.6 [\#5513](https://github.com/rvm/rvm/pull/5513) * 3.4.0, 3.4.1 [\#5533](https://github.com/rvm/rvm/pull/5533) * 3.3.7 [\#5540](https://github.com/rvm/rvm/pull/5540) * 3.2.7 [\#5544](https://github.com/rvm/rvm/pull/5544) * 3.4.2 [\#5549](https://github.com/rvm/rvm/pull/5549) +* 3.1.6, 3.1.7, 3.2.8 [\#5558](https://github.com/rvm/rvm/pull/5558) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) * 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1, 24.0.2, 24.1.0, 24.1.1, 24.1.2, 24.2.0 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.3.15.0 [\#5482](https://github.com/rvm/rvm/pull/5482) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) * 9.4.8.0 [\#5484](https://github.com/rvm/rvm/pull/5484) * 9.4.9.0 [\#5512](https://github.com/rvm/rvm/pull/5512) * 9.4.10.0 [\#5538](https://github.com/rvm/rvm/pull/5538) * 9.4.11.0 [\#5541](https://github.com/rvm/rvm/pull/5541) * 9.4.12.0 [\#5548](https://github.com/rvm/rvm/pull/5548) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) * 3.1.6, 3.2.5, 3.3.2, 3.3.3 and 3.3.4 [\#5491](https://github.com/rvm/rvm/pull/5491) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 24.04 (Noble Numbat) x64 binaries * 3.2.6 and 3.3.6 [\#5529](https://github.com/rvm/rvm/pull/5529) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) #### Upgraded Ruby interpreters: * Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159), 2.5.0-preview1 [\#4204](https://github.com/rvm/rvm/pull/4204), 2.2.9, 2.3.6, 2.4.3 and 2.5.0-rc1 [\#4261](https://github.com/rvm/rvm/pull/4261), 2.5.0 [\#4265](https://github.com/rvm/rvm/pull/4265), 2.6.0-preview1 [\#4317](https://github.com/rvm/rvm/pull/4317), 2.2.10, 2.3.7, 2.4.4, 2.5.1 [\#4340](https://github.com/rvm/rvm/pull/4340) and 2.6.0-preview2[\#4395](https://github.com/rvm/rvm/pull/4395) * Add support for Rubinius 3.85-3.100 * Add support for JRuby 9.1.14.0 [\#4224](https://github.com/rvm/rvm/pull/4224), 9.1.15.0 [\#4258](https://github.com/rvm/rvm/pull/4258), 9.1.16.0 [\#4316](https://github.com/rvm/rvm/pull/4316), 9.1.17.0 [\#4366](https://github.com/rvm/rvm/pull/4366), 9.2.0.0 [\#4390](https://github.com/rvm/rvm/pull/4390) * Add support for mruby 1.4.0 [\#4286](https://github.com/rvm/rvm/pull/4286) * Add support for MagLev 1.1* and 1.2Alpha-1.2Alpha4 [\#4289](https://github.com/rvm/rvm/pull/4289) * Add support for RubyGems 2.6.14 [\#4205](https://github.com/rvm/rvm/pull/4205), 2.7.0-2.7.4 [\#4276](https://github.com/rvm/rvm/issues/4276) and 2.7.5-6 #### Binaries: * Ubuntu 16.04 x64 binaries for Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4362](https://github.com/rvm/rvm/issues/4362), 2.2.9, 2.3.6 and 2.4.3 [\#4259](https://github.com/rvm/rvm/issues/4259), 2.2.8, 2.3.5 and 2.4.2 [\#4161](https://github.com/rvm/rvm/issues/4161), 2.5.0 [\#4272](https://github.com/rvm/rvm/pull/4272) * Ubuntu 17.04 for Ruby 2.1.\*, 2.2.\* [\#4233](https://github.com/rvm/rvm/pull/4233) ## [1.29.3](https://github.com/rvm/rvm/releases/tag/1.29.3) 10 September 2017 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.2...1.29.3) #### New features: * Add RVM commands missing in bash shell completion [\#4078](https://github.com/rvm/rvm/pull/4078) * Railsexpress patches for 2.3.4, 2.3-head [\#4084](https://github.com/rvm/rvm/pull/4084), 2.2.5 and 2.2.6 [\#4153](https://github.com/rvm/rvm/pull/4153) * Update `gem-wrappers` to 1.3.0: Show warnings when the target binary is missing or is not executable [gem-wrappers \#9](https://github.com/rvm/gem-wrappers/issues/9) * Detect Zorin OS as Ubuntu [\#4140](https://github.com/rvm/rvm/issues/4140) #### Bug fixes: * Infinite loop in `gemset_create` [\#4102](https://github.com/rvm/rvm/issues/4102) * Command not found `__rvm_remote_version` error [\#4085](https://github.com/rvm/rvm/pull/4085) * Fix path of version script in `environment` [\#4117](https://github.com/rvm/rvm/pull/4117) * Define `cd()`, `pushd()` and `popd()` properly when using zsh [\#4132](https://github.com/rvm/rvm/pull/4132) * Update gem-wrappers to 1.3.1: Avoid warnings for missing ruby binaries [\#4104](https://github.com/rvm/rvm/issues/4104) * Handles :engine=> and :engine_version=> in Gemfile * Makes $rvm_ruby_string is not installed searchable by adding a fixed keyword * Correctly quotes suggested install command * Fix path to version script in rvm-installer [\#4134](https://github.com/rvm/rvm/pull/4134) * Fix rvm autolibs status, fix [\#4123](https://github.com/rvm/rvm/issues/4123) * Ruby 2.3.x and older are not compatible with OpenSSL 1.1.x on Arch [\#4006](https://github.com/rvm/rvm/issues/4006) * Allow comments after ruby directive in Gemfile [\#4056](https://github.com/rvm/rvm/issues/4056) * Ruby 2.3/4 compilation fix for GCC 7 [\#4080](https://github.com/rvm/rvm/issues/4080) [\#4115](https://github.com/rvm/rvm/issues/4115) * Add warning for sudo users [\#4009](https://github.com/rvm/rvm/issues/4009) * Allows running RVM shell function in Bash with `set -o nounset` [\#4013](https://github.com/rvm/rvm/issues/4013) diff --git a/config/known b/config/known index 000dea2..61fa3c3 100644 --- a/config/known +++ b/config/known @@ -1,81 +1,81 @@ # MRI Rubies [ruby-]1.8.6[-p420] [ruby-]1.8.7[-head] # security released on head [ruby-]1.9.1[-p431] [ruby-]1.9.2[-p330] [ruby-]1.9.3[-p551] [ruby-]2.0.0[-p648] [ruby-]2.1[.10] [ruby-]2.2[.10] [ruby-]2.3[.8] [ruby-]2.4[.10] [ruby-]2.5[.9] [ruby-]2.6[.10] [ruby-]2.7[.8] [ruby-]3.0[.7] -[ruby-]3.1[.5] -[ruby-]3.2[.7] +[ruby-]3.1[.7] +[ruby-]3.2[.8] [ruby-]3.3[.7] [ruby-]3[.4.2] ruby-head # for forks use: rvm install ruby-head-<name> --url https://github.com/github/ruby.git --branch 2.2 # JRuby jruby-1.6[.8] jruby-1.7[.27] jruby-9.1[.17.0] jruby-9.2[.21.0] jruby-9.3[.15.0] jruby[-9.4.12.0] jruby-head # Rubinius rbx-1[.4.3] rbx-2.3[.0] rbx-2.4[.1] rbx-2[.5.8] rbx-3[.107] rbx-4[.20] rbx-5[.0] rbx-head # TruffleRuby truffleruby[-24.2.0] # Opal opal # Minimalistic ruby implementation - ISO 30170:2012 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1[.4.1] mruby-2.0.1 mruby-2[.1.1] mruby[-head] # Ruby Enterprise Edition ree-1.8.6 ree[-1.8.7][-2012.02] # Topaz topaz # MagLev maglev-1.0.0 maglev-1.1[RC1] maglev[-1.2Alpha4] maglev-head # Mac OS X Snow Leopard Or Newer macruby-0.10 macruby-0.11 macruby[-0.12] macruby-nightly macruby-head # IronRuby ironruby[-1.1.3] ironruby-head diff --git a/config/known_strings b/config/known_strings index 8852b22..ae3848d 100644 --- a/config/known_strings +++ b/config/known_strings @@ -1,581 +1,584 @@ ironruby-1.0 ironruby-1.1.3 jruby-0.9.0 jruby-0.9.1 jruby-0.9.2 jruby-0.9.8 jruby-0.9.9 jruby-1.0.0RC1 jruby-1.0.0RC2 jruby-1.0.0RC3 jruby-1.0 jruby-1.0.1 jruby-1.0.2 jruby-1.0.3 jruby-1.1b1 jruby-1.1RC1 jruby-1.1RC2 jruby-1.1RC3 jruby-1.1 jruby-1.1.1 jruby-1.1.2 jruby-1.1.3 jruby-1.1.4 jruby-1.1.5 jruby-1.1.6RC1 jruby-1.1.6 jruby-1.2.0RC1 jruby-1.2.0RC2 jruby-1.2.0 jruby-1.3.0RC1 jruby-1.3.0RC2 jruby-1.3.0 jruby-1.3.1 jruby-1.4.0RC1 jruby-1.4.0RC2 jruby-1.4.0RC3 jruby-1.4.0 jruby-1.4.1 jruby-1.5.0.RC1 jruby-1.5.0.RC2 jruby-1.5.0.RC3 jruby-1.5.0 jruby-1.5.1 jruby-1.5.2 jruby-1.5.3 jruby-1.5.4 jruby-1.5.5 jruby-1.5.6 jruby-1.6.0.RC1 jruby-1.6.0.RC2 jruby-1.6.0.RC3 jruby-1.6.0 jruby-1.6.1 jruby-1.6.2 jruby-1.6.3 jruby-1.6.4 jruby-1.6.5 jruby-1.6.5.1 jruby-1.6.7 jruby-1.6.7.2 jruby-1.6.8 jruby-1.7.0.preview1 jruby-1.7.0.preview2 jruby-1.7.0.RC1 jruby-1.7.0.RC2 jruby-1.7.0 jruby-1.7.1 jruby-1.7.2 jruby-1.7.3 jruby-1.7.4 jruby-1.7.5 jruby-1.7.6 jruby-1.7.7 jruby-1.7.8 jruby-1.7.9 jruby-1.7.10 jruby-1.7.11 jruby-1.7.12 jruby-1.7.13 jruby-1.7.14 jruby-1.7.15 jruby-1.7.16 jruby-1.7.16.1 jruby-1.7.16.2 jruby-1.7.17 jruby-1.7.18 jruby-1.7.19 jruby-1.7.20 jruby-1.7.20.1 jruby-1.7.21 jruby-1.7.22 jruby-1.7.23 jruby-1.7.24 jruby-1.7.25 jruby-1.7.26 jruby-1.7.27 jruby-9.0.0.0.pre1 jruby-9.0.0.0.pre2 jruby-9.0.0.0.rc1 jruby-9.0.0.0.rc2 jruby-9.0.0.0 jruby-9.0.1.0 jruby-9.0.2.0 jruby-9.0.3.0 jruby-9.0.4.0 jruby-9.0.5.0 jruby-9.1.0.0 jruby-9.1.1.0 jruby-9.1.2.0 jruby-9.1.3.0 jruby-9.1.4.0 jruby-9.1.5.0 jruby-9.1.6.0 jruby-9.1.7.0 jruby-9.1.8.0 jruby-9.1.9.0 jruby-9.1.10.0 jruby-9.1.11.0 jruby-9.1.12.0 jruby-9.1.13.0 jruby-9.1.14.0 jruby-9.1.15.0 jruby-9.1.16.0 jruby-9.1.17.0 jruby-9.2.0.0 jruby-9.2.1.0 jruby-9.2.2.0 jruby-9.2.3.0 jruby-9.2.4.0 jruby-9.2.4.1 jruby-9.2.5.0 jruby-9.2.6.0 jruby-9.2.7.0 jruby-9.2.8.0 jruby-9.2.9.0 jruby-9.2.10.0 jruby-9.2.11.0 jruby-9.2.11.1 jruby-9.2.12.0 jruby-9.2.13.0 jruby-9.2.14.0 jruby-9.2.15.0 jruby-9.2.16.0 jruby-9.2.17.0 jruby-9.2.18.0 jruby-9.2.19.0 jruby-9.2.20.0 jruby-9.2.20.1 jruby-9.2.21.0 jruby-9.3.0.0 jruby-9.3.1.0 jruby-9.3.2.0 jruby-9.3.3.0 jruby-9.3.4.0 jruby-9.3.6.0 jruby-9.3.7.0 jruby-9.3.8.0 jruby-9.3.9.0 jruby-9.3.10.0 jruby-9.3.11.0 jruby-9.3.13.0 jruby-9.3.14.0 jruby-9.3.15.0 jruby-9.4.0.0 jruby-9.4.1.0 jruby-9.4.2.0 jruby-9.4.3.0 jruby-9.4.4.0 jruby-9.4.5.0 jruby-9.4.6.0 jruby-9.4.7.0 jruby-9.4.8.0 jruby-9.4.9.0 jruby-9.4.10.0 jruby-9.4.11.0 jruby-9.4.12.0 macruby-0.12 maglev-1.0.0 maglev-1.1beta maglev-1.1beta2 maglev-1.1RC1 maglev-1.2Alpha maglev-1.2Alpha2 maglev-1.2Alpha3 maglev-1.2Alpha4 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1.4.0 mruby-1.4.1 mruby-2.0.0 mruby-2.0.1 mruby-2.1.0-rc mruby-2.1.0 mruby-2.1.1-rc mruby-2.1.1-rc2 mruby-2.1.1 rbx-1.0.0-20100514 rbx-1.0.1-20100603 rbx-1.1.0-20100923 rbx-1.1.1-20101116 rbx-1.2.0-20101221 rbx-1.2.1-20110215 rbx-1.2.2-20110222 rbx-1.2.3-20110315 rbx-1.2.4-20110705 rbx-1.3.2 rbx-1.3.3 rbx-1.4.1 rbx-1.4.3 rbx-2.0.0 rbx-2.1.0 rbx-2.1.1 rbx-2.2.0 rbx-2.2.2 rbx-2.2.3 rbx-2.2.4 rbx-2.2.5 rbx-2.2.6 rbx-2.2.7 rbx-2.2.8 rbx-2.2.9 rbx-2.2.10 rbx-2.3.0 rbx-2.4.0 rbx-2.4.1 rbx-2.5.0 rbx-2.5.1 rbx-2.5.2 rbx-2.5.3 rbx-2.5.4 rbx-2.5.5 rbx-2.5.6 rbx-2.5.7 rbx-2.5.8 rbx-3.70 rbx-3.71 rbx-3.72 rbx-3.73 rbx-3.74 rbx-3.75 rbx-3.76 rbx-3.77 rbx-3.78 rbx-3.79 rbx-3.80 rbx-3.81 rbx-3.82 rbx-3.83 rbx-3.84 rbx-3.85 rbx-3.86 rbx-3.87 rbx-3.88 rbx-3.89 rbx-3.90 rbx-3.91 rbx-3.92 rbx-3.93 rbx-3.94 rbx-3.95 rbx-3.96 rbx-3.97 rbx-3.98 rbx-3.99 rbx-3.100 rbx-3.101 rbx-3.102 rbx-3.103 rbx-3.104 rbx-3.105 rbx-3.106 rbx-3.107 rbx-4.0 rbx-4.1 rbx-4.2 rbx-4.3 rbx-4.4 rbx-4.5 rbx-4.6 rbx-4.7 rbx-4.8 rbx-4.9 rbx-4.10 rbx-4.11 rbx-4.12 rbx-4.13 rbx-4.14 rbx-4.15 rbx-4.16 rbx-4.17 rbx-4.18 rbx-4.19 rbx-4.20 rbx-5.0 ree-1.8.6-20080507 ree-1.8.6-20080621 ree-1.8.6-20080623 ree-1.8.6-20080624 ree-1.8.6-20080709 ree-1.8.6-20080810 ree-1.8.6-20081205 ree-1.8.6-20081215 ree-1.8.6-20090113 ree-1.8.6-20090201 ree-1.8.6-20090421 ree-1.8.6-20090520 ree-1.8.6-20090610 ree-1.8.6-20090928 ree-1.8.7-2009.10 ree-1.8.7-2010.01 ree-1.8.7-2010.02 ree-1.8.7-2011.01 ree-1.8.7-2011.02 ree-1.8.7-2011.03 ree-1.8.7-2011.12 ree-1.8.7-2012.02 ruby-1.8.5-p115 ruby-1.8.5-p231 ruby-1.8.6-p286 ruby-1.8.6-p287 ruby-1.8.6-p369 ruby-1.8.6-p383 ruby-1.8.6-p398 ruby-1.8.6-p399 ruby-1.8.6-p420 ruby-1.8.7-p160 ruby-1.8.7-p174 ruby-1.8.7-p248 ruby-1.8.7-p249 ruby-1.8.7-p299 ruby-1.8.7-p302 ruby-1.8.7-p330 ruby-1.8.7-p334 ruby-1.8.7-p352 ruby-1.8.7-p357 ruby-1.8.7-p358 ruby-1.8.7-p370 ruby-1.8.7-p371 ruby-1.8.7-p374 ruby-1.9.0 ruby-1.9.1-p129 ruby-1.9.1-p243 ruby-1.9.1-p376 ruby-1.9.1-p378 ruby-1.9.1-p429 ruby-1.9.1-p431 ruby-1.9.2-p0 ruby-1.9.2-p136 ruby-1.9.2-p180 ruby-1.9.2-p290 ruby-1.9.2-p318 ruby-1.9.2-p320 ruby-1.9.2-p330 ruby-1.9.3-preview1 ruby-1.9.3-rc1 ruby-1.9.3-p0 ruby-1.9.3-p125 ruby-1.9.3-p194 ruby-1.9.3-p286 ruby-1.9.3-p327 ruby-1.9.3-p362 ruby-1.9.3-p374 ruby-1.9.3-p385 ruby-1.9.3-p392 ruby-1.9.3-p429 ruby-1.9.3-p448 ruby-1.9.3-p484 ruby-1.9.3-p545 ruby-1.9.3-p547 ruby-1.9.3-p550 ruby-1.9.3-p551 ruby-2.0.0-preview1 ruby-2.0.0-preview2 ruby-2.0.0-rc1 ruby-2.0.0-rc2 ruby-2.0.0-p0 ruby-2.0.0-p195 ruby-2.0.0-p247 ruby-2.0.0-p353 ruby-2.0.0-p451 ruby-2.0.0-p481 ruby-2.0.0-p576 ruby-2.0.0-p594 ruby-2.0.0-p598 ruby-2.0.0-p643 ruby-2.0.0-p645 ruby-2.0.0-p647 ruby-2.0.0-p648 ruby-2.1.0-preview1 ruby-2.1.0-preview2 ruby-2.1.0-rc1 ruby-2.1.0 ruby-2.1.1 ruby-2.1.2 ruby-2.1.3 ruby-2.1.4 ruby-2.1.5 ruby-2.1.6 ruby-2.1.7 ruby-2.1.8 ruby-2.1.9 ruby-2.1.10 ruby-2.2.0-preview1 ruby-2.2.0-preview2 ruby-2.2.0-rc1 ruby-2.2.0 ruby-2.2.1 ruby-2.2.2 ruby-2.2.3 ruby-2.2.4 ruby-2.2.5 ruby-2.2.6 ruby-2.2.7 ruby-2.2.8 ruby-2.2.9 ruby-2.2.10 ruby-2.3.0-preview1 ruby-2.3.0-preview2 ruby-2.3.0 ruby-2.3.1 ruby-2.3.2 ruby-2.3.3 ruby-2.3.4 ruby-2.3.5 ruby-2.3.6 ruby-2.3.7 ruby-2.3.8 ruby-2.4.0-preview1 ruby-2.4.0-preview2 ruby-2.4.0-preview3 ruby-2.4.0-rc1 ruby-2.4.0 ruby-2.4.1 ruby-2.4.2 ruby-2.4.3 ruby-2.4.4 ruby-2.4.5 ruby-2.4.6 ruby-2.4.7 ruby-2.4.8 ruby-2.4.9 ruby-2.4.10 ruby-2.5.0-preview1 ruby-2.5.0-rc1 ruby-2.5.0 ruby-2.5.1 ruby-2.5.2 ruby-2.5.3 ruby-2.5.4 ruby-2.5.5 ruby-2.5.6 ruby-2.5.7 ruby-2.5.8 ruby-2.5.9 ruby-2.6.0-preview1 ruby-2.6.0-preview2 ruby-2.6.0-preview3 ruby-2.6.0-rc1 ruby-2.6.0-rc2 ruby-2.6.0 ruby-2.6.1 ruby-2.6.2 ruby-2.6.3 ruby-2.6.4 ruby-2.6.5 ruby-2.6.6 ruby-2.6.7 ruby-2.6.8 ruby-2.6.9 ruby-2.6.10 ruby-2.7.0-preview1 ruby-2.7.0-preview2 ruby-2.7.0-preview3 ruby-2.7.0-rc1 ruby-2.7.0-rc2 ruby-2.7.0 ruby-2.7.1 ruby-2.7.2 ruby-2.7.3 ruby-2.7.4 ruby-2.7.5 ruby-2.7.6 ruby-2.7.7 ruby-2.7.8 ruby-3.0.0-preview1 ruby-3.0.0-preview2 ruby-3.0.0-rc1 ruby-3.0.0 ruby-3.0.1 ruby-3.0.2 ruby-3.0.3 ruby-3.0.4 ruby-3.0.5 ruby-3.0.6 ruby-3.0.7 ruby-3.1.0-preview1 ruby-3.1.0 ruby-3.1.1 ruby-3.1.2 ruby-3.1.3 ruby-3.1.4 ruby-3.1.5 +ruby-3.1.6 +ruby-3.1.7 ruby-3.2.0-preview1 ruby-3.2.0-preview2 ruby-3.2.0-preview3 ruby-3.2.0-rc1 ruby-3.2.0 ruby-3.2.1 ruby-3.2.2 ruby-3.2.3 ruby-3.2.4 ruby-3.2.5 ruby-3.2.6 ruby-3.2.7 +ruby-3.2.8 ruby-3.3.0-preview1 ruby-3.3.0-preview2 ruby-3.3.0-preview3 ruby-3.3.0 ruby-3.3.1 ruby-3.3.2 ruby-3.3.3 ruby-3.3.4 ruby-3.3.5 ruby-3.3.6 ruby-3.3.7 ruby-3.4.0-preview1 ruby-3.4.0 ruby-3.4.1 ruby-3.4.2 truffleruby-1.0.0-rc2 truffleruby-1.0.0-rc3 truffleruby-1.0.0-rc5 truffleruby-1.0.0-rc6 truffleruby-1.0.0-rc7 truffleruby-1.0.0-rc8 truffleruby-1.0.0-rc9 truffleruby-1.0.0-rc10 truffleruby-1.0.0-rc11 truffleruby-1.0.0-rc12 truffleruby-1.0.0-rc13 truffleruby-1.0.0-rc14 truffleruby-1.0.0-rc15 truffleruby-1.0.0-rc16 truffleruby-19.0.0 truffleruby-19.0.2 truffleruby-19.1.0 truffleruby-19.1.1 truffleruby-19.2.0 truffleruby-19.2.0.1 truffleruby-19.2.1 truffleruby-19.3.0 truffleruby-19.3.0.2 truffleruby-19.3.1 truffleruby-20.0.0 truffleruby-20.1.0 truffleruby-20.2.0 truffleruby-20.3.0 truffleruby-21.0.0 truffleruby-21.1.0 truffleruby-21.2.0 truffleruby-21.2.0.1 truffleruby-21.3.0 truffleruby-22.0.0.2 truffleruby-22.1.0 truffleruby-22.2.0 truffleruby-22.3.0 truffleruby-22.3.1 truffleruby-23.0.0-preview1 truffleruby-23.0.0 truffleruby-23.1.0 truffleruby-23.1.1 truffleruby-23.1.2 truffleruby-24.0.0 truffleruby-24.0.1 truffleruby-24.0.2 truffleruby-24.1.0 truffleruby-24.1.1 truffleruby-24.1.2 truffleruby-24.2.0 diff --git a/config/md5 b/config/md5 index 5f0c7dc..9e6d770 100644 --- a/config/md5 +++ b/config/md5 @@ -1268,802 +1268,805 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.7.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.8.tar.bz2=ab70a3ca42220b575d6beccf9e0bc25b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.9.tar.bz2=ff66ffe02c21d2163a4db3b4daeaa13d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.10.tar.bz2=5c4c43e0fd5435099adc86c9985dd4c4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.0.tar.bz2=c66bd4ed120999159fba088549c755cf https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.1.tar.bz2=5a8c6a0955be75e5d461624b596a08e2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.2.tar.bz2=0071aeae2ad582f89c4704531d0e7a5d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.3.tar.bz2=5da9cf19b005948398f3541a1ded7105 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.4.tar.bz2=a27a413146d903d258fe9fc907e60c1a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.5.tar.bz2=77794ae2fb09dca79bfb636198ccaaed https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.6.tar.bz2=565f3c0dbc3211c6f86ebcb60cbd5de7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.7.tar.bz2=5cc60a18ac4cca5322994c6d19753846 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.8.tar.bz2=45b547a987088761a88143e5fabef13e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.9.tar.bz2=e993696c73e6be0017d90ccdddbcc644 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.0.tar.bz2=032a73d5182d84cbbf20b6e7e310c7c2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.1.tar.bz2=07c61bc0c9e09fc87808f62985cbff25 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.2.tar.bz2=62745ec761a45826841002e72cfca795 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.3.tar.bz2=538383cc35e5710a2175f36416ca3b7c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.4.tar.bz2=8a17255fa833fe3ff9c0275db79bfbff https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar.bz2=66dc3fdf49b1371fd6d362f3ea9d019b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=873b63cc2e4abbb6ec5126ab07ce429a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=84658482a83ee3a4c80d145d0bd7ccb8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=d3af42a4fd701e0710d5f6a16e6bb9a3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c5f56b0149ab787d89c69056eb45e483 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=13f1011cc048aef7199ae8f14bc2ac62 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=fba1bf0b819f52561deab198fd36743d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=3ec8f383026889e2f3c328d86839a7b2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=9c3775365cab8e1e82aa19e87b9711dd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=cce17e87cc9bfcb6b995e5f1996c423c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=b80a93441133b85258d97085aeead20a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=74c45b08a2dc28871ff158b608cc8685 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=469b22a4b12f23e86ac25b3d797ff559 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=ea7767cbfacd744813ccaedd1b4e0013 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=0d9f69db1bd665c9e5c9592b483b31a1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=068f5c90b5b381cd58d8804ca2b3be64 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=6181192273efab4aabaa8628fc83c7be https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=fa690cb7132706fb25dfc625e949e96a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=c443f32cd4c91fb37ff79bd86906e1bc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=6fa3edab1bbacf7328074a7fba22be50 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=a950bc4af16446fce2f9266e95629bdb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=d9bce275c2f36dbde8a6c25f9fa10c2e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=6486c5ce9ec697039b0bb36d2bf18a0d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=79f0927984b8e6e7934b34bdb2a3e5e5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=214ac1e49a75291a68c63134bc246a8a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=94a39d1b226350362666f6305866b20b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=4db7d99d775a7f24bb55c6053d4eb864 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=c0db831a97b8427e0777adeaebf7a9d8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=830b4845fbfd45df75758e311a013ffc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=3fc39c824b2060a3a2766ca01037dd15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=0b395f3884c78c6938896ff253c5251b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=2be294a056a45a50262d1796906f8860 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=0270733b808489a91e41f73d9fe971e9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=33db4a687e4943faf6c2853179b67935 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=dea6663b2c113190e9b99a6dcedb3aa0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=835e563bfbe3c8311326660a51f3394c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=66e3c1e1140300c8236c13e3178cb8ab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=07b12bd2a7d8242c34d824882e654c22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=fe12c0e211f90076b51c7916c830971f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=65ab3105b0c6d5e8a2e9977a3ab7ed94 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=08547ad8e760e0776c74401ae5bbd8e5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=631b4ea065d18df96c6ccbc141904bb3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=03a67e234d886f3c698c1571e42cc7a6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=0ded0cb8ce18a846d71d7e04d24c2e78 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=5251aed0ba4d8349413d6bf4c261bea3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=f09694c4f23d7625f72606bce0efb710 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=340db3acb58829b51e4a7ac1c77246d4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1bd86cb46a9e6c40c285258879a3d59 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=d86b2a1e9721b9459e1283006e03fa92 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.2.6.tar.bz2=7d7e84912bb4d1f9915bb391fac54694 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.3.6.tar.bz2=3148fa25b5cd308156c567181ccf5ac3 ironruby-1.0.zip=7a92888837b3507355ed391dbfc0ab83 ironruby-1.1.3.zip=4f2af6253a459cc054d6c55956e514a9 jruby-bin-1.3.1.tar.gz=4a95db8fc93ed7219663fbede98b6117 jruby-bin-1.4.tar.gz=54dba9a88b2b3f99ac86a79828d0178b jruby-bin-1.4.0.tar.gz=f37322c18e9134e91e064aebb4baa4c7 jruby-bin-1.4.0.zip=3a9c8a5115a679da7d7a49a56d57d4c0 jruby-bin-1.4.1.tar.gz=a4aa8c43d1b9ffd9dbc6cb738d55a034 jruby-bin-1.5.0.tar.gz=ee2b4e326e8b87858e5dd0c8e94102e6 jruby-bin-1.5.1.tar.gz=74251383e08e8c339cacc35a7900d3af jruby-bin-1.5.2.tar.gz=d239deb9a108a6abbfbd6cb79cf8255b jruby-bin-1.5.3.tar.gz=ccb0b2dbc300d8dd4ad1bd4da48b8320 jruby-bin-1.5.5.tar.gz=8e00f7d40cbf221f733d6f7a15784e9a jruby-bin-1.5.6.tar.gz=94033a36517645b7a7ec781a3507c654 jruby-bin-1.6.0.tar.gz=f4d7e339dfc0fbaef5b878d1c0a66fbe jruby-bin-1.6.2.tar.gz=a46f978c24a208717023bb4b8995c678 jruby-bin-1.6.3.tar.gz=694b80e4eea784cdc1eb39fb1e3132c9 jruby-bin-1.6.4.tar.gz=0e96b6f4d1c6f12b5ac480cd7ab7da78 jruby-bin-1.6.5.tar.gz=54354082673bd115f945890dc6864413 jruby-bin-1.6.5.1.tar.gz=246a7aa2b7d7e6e9e8a0c2e282cbcfd0 jruby-bin-1.6.7.tar.gz=fd1b8d7389aa92da69ea6efb4782e40a jruby-bin-1.6.7.2.tar.gz=1e520f1b5130114464e5f1950cb24774 jruby-bin-1.6.8.tar.gz=a76ac5845640e4a1ebdfa74421efc935 jruby-bin-1.7.0.preview1.tar.gz=7b9e5e1cd0d818d0199086d948f948b4 jruby-bin-1.7.0.preview2.tar.gz=e8f1623759590aadbf49e4cc53f1cb61 jruby-bin-1.7.0.RC1.tar.gz=bdddcee3d126cddd9a85b5a066a7e25e jruby-bin-1.7.0.RC2.tar.gz=ffe2dd61711f4574fed344af151e5de5 jruby-bin-1.7.0.tar.gz=21861e0ecdbf48cda713c8ade82fdddb jruby-bin-1.7.1.tar.gz=86e659863541d8b987cb7bfbe3b4cfb0 jruby-bin-1.7.2.tar.gz=6ec9293b6dffd1e8ee57e9b7c6d18cbe jruby-bin-1.7.3.tar.gz=f0adf8ccee6f6777f7ab8e5e1d7a1f47 jruby-bin-1.7.4.tar.gz=c6a56eae78db28dddba911ccd0848c32 jruby-bin-1.7.5.tar.gz=c2a28c43c8095127d4a4aee0cf9b1439 jruby-bin-1.7.6.tar.gz=5d10011516a3d3bde10209b60cfcc0ef jruby-bin-1.7.7.tar.gz=9d6df2188fa57f12bf6fde4e4b2e3f09 jruby-bin-1.7.8.tar.gz=1e68f39d6dba7b6d9db81e24bb6b7d0a jruby-bin-1.7.9.tar.gz=b2e44f1f44837c07068ee453a89f4b55 jruby-bin-1.7.10.tar.gz=c84fe9245a73f9cd29f56343b7d2e39a jruby-bin-1.7.11.tar.gz=d6e6ab72426fa7fdc9ae55950980d877 jruby-bin-1.7.12.tar.gz=2073aa6dfc7c701ef7c3d3143d181582 jruby-bin-1.7.14.tar.gz=bc33284f27a3508a70d2ade100a2f6bd jruby-bin-1.7.15.tar.gz=92e63cffcb86842511aeeed95bdf96ed jruby-bin-1.7.16.tar.gz=92cb058d1a896257b5ac1c26dc433506 jruby-bin-1.7.16.1.tar.gz=eec2f0e03560bacf02a09c0096a99cad jruby-bin-1.7.16.2.tar.gz=cd31909b67239c5c6a795521fca5c239 jruby-bin-1.7.17.tar.gz=8b78ba1acdb718431f71c38287c07967 jruby-bin-1.7.18.tar.gz=aa7286140be0f6f60534ebffededc708 jruby-bin-1.7.19.tar.gz=bc38596757d8000d6ca4c4c3f8eacea6 jruby-bin-1.7.20.tar.gz=0c2adc160cb85c888b269e8ac4f886fc jruby-bin-1.7.21.tar.gz=bc91594072032023d146f330764d3274 jruby-bin-1.7.22.tar.gz=1da904bf41d362d0d0b366d9e781168f jruby-bin-1.7.23.tar.gz=41e3f45c28c94a275f9eeb22721da35d jruby-bin-1.7.25.tar.gz=fc43ead73f657f5261428923974fd605 jruby-bin-1.7.26.tar.gz=4ca60264a9560f37fdba8108543e72c2 jruby-bin-1.7.27.tar.gz=b98b0a2c52e885a868a2b60092e1cd3d jruby-bin-9.0.0.0.pre1.tar.gz=d5c8b30648348aa883f893d464d46bf1 jruby-bin-9.0.0.0.pre2.tar.gz=86994a9d7ed2cf318c75392623a3e6da jruby-bin-9.0.0.0.tar.gz=fe9036ea69bf23dc3b69cfc94adb5404 jruby-bin-9.0.1.0.tar.gz=a82bc640e0080b1d9a21d1477c8400e3 jruby-bin-9.0.3.0.tar.gz=828dd6c6dd18e5b186ccfd65753077bd jruby-bin-9.0.4.0.tar.gz=645bf4a1dcde3f19dc0fff75c8b4b685 jruby-bin-9.0.5.0.tar.gz=1d2dc649cbacbe26418ef3ba421018b1 jruby-bin-9.1.0.0.tar.gz=fe26e6308d006d35eb613cdd47d1dc99 jruby-bin-9.1.1.0.tar.gz=8356334270df07a214590d00a986837b jruby-bin-9.1.2.0.tar.gz=749bb917dde9666e365e12bbe776a5c2 jruby-bin-9.1.3.0.tar.gz=91c246cd623702032e88283565da5480 jruby-bin-9.1.4.0.tar.gz=5b80b78c09bf0cd4dcbcb9e1fe3e8b73 jruby-bin-9.1.5.0.tar.gz=e9b2cc44757db4cfbe7da79601d0169a jruby-bin-9.1.6.0.tar.gz=4092a89b01b55d1fb5498113f97ab0ca jruby-bin-9.1.7.0.tar.gz=b120c3eaeef7ff2aed3a57701e414e78 jruby-bin-9.1.8.0.tar.gz=0fdee002c56ec91dff1efffce205265c jruby-bin-9.1.9.0.tar.gz=170efc34297d7ac2a56bb1163e96b363 jruby-bin-9.1.10.0.tar.gz=b75e0d1a200e8f790d8bbc84f91e3002 jruby-bin-9.1.11.0.tar.gz=0502a14141da25a460ce197720bab4c3 jruby-bin-9.1.12.0.tar.gz=74bd7ae08c159fc62cb6f64845a868cc jruby-bin-9.1.13.0.tar.gz=6c642c8a2653a585779f453d8c843fd7 jruby-bin-9.1.14.0.tar.gz=a7e0ecd529690025d327c45744f60fa4 jruby-bin-9.1.15.0.tar.gz=01c29690324d7eb414fba66e4c009c9e jruby-bin-9.1.16.0.tar.gz=e64c3aa1310c272194fd1750b0b79fac jruby-bin-9.1.17.0.tar.gz=f28d1fcbb60e550f3abd839102ad0069 jruby-bin-9.2.0.0.tar.gz=bd476da4bed39ffcfff7116f448a5365 jruby-bin-9.2.1.0.tar.gz=4b78b0a40ca541556f5ee75a815e0be0 jruby-bin-9.2.2.0.tar.gz=be678559801be029fe233c33396e34d2 jruby-bin-9.2.3.0.tar.gz=79328ab1ed37d612da35271183e46bbd jruby-bin-9.2.4.0.tar.gz=f538f2be459f0f0e517a53446e78a354 jruby-bin-9.2.4.1.tar.gz=d373bbc2bd6caabfcc9914c4067e9d24 jruby-bin-9.2.5.0.tar.gz=14582fd6eee19610f0a7433ce5dd5ce4 jruby-bin-9.2.6.0.tar.gz=dba182ac9943b726b609ca61747c1835 jruby-bin-9.2.7.0.tar.gz=c0111b2cafa920df76284044e1aeedc7 jruby-bin-9.2.8.0.tar.gz=7d652b586a18f1c665289fd7e6edf4f5 jruby-bin-9.2.9.0.tar.gz=74b3451f79c13c2fc66c6dee69d46699 jruby-bin-9.2.10.0.tar.gz=e6ce97eae6e35b622c1b572f9297705b jruby-bin-9.2.11.0.tar.gz=22b003adfb03b253721cc85db248698f jruby-bin-9.2.11.1.tar.gz=687586132f7b649b1bdd7b823577c9d8 jruby-bin-9.2.12.0.tar.gz=cc7599837fbd0839cce7293577a34f2c jruby-bin-9.2.13.0.tar.gz=99df4eb89f88c7582bfe7c313daec7b4 jruby-bin-9.2.14.0.tar.gz=421c5b8146701177a738a0a691190018 jruby-bin-9.2.15.0.tar.gz=ba593f1de2c4e592a8ca9b9e903af457 jruby-bin-9.2.16.0.tar.gz=d8d954ee0ab6f4868c3fc63339660af9 jruby-bin-9.2.17.0.tar.gz=382fb3d9d2982efd5396f1a42e3fa6a1 jruby-bin-9.2.18.0.tar.gz=002ac95859a2176cb0a58d81d6e0fb14 jruby-bin-9.2.19.0.tar.gz=0961867a77838853f32ee72dbde7c00e jruby-bin-9.2.20.0.tar.gz=840876dd0ca0098452dd2667fe9dd7f4 jruby-bin-9.2.20.1.tar.gz=5856ed030f0d9e75d2384cf42f62a4de jruby-bin-9.2.21.0.tar.gz=9957c1d2bd9265144fe55f9f7093272a jruby-bin-9.3.0.0.tar.gz=501a3c975b3c9478b72d4b0cd37170b9 jruby-bin-9.3.1.0.tar.gz=201d3e483bf847f5c59f4b1f3bf594d5 jruby-bin-9.3.2.0.tar.gz=259c276f68a01495dda24407394a382d jruby-bin-9.3.3.0.tar.gz=cd49b81753048cee9c8ffdd2ce1cb3e2 jruby-bin-9.3.4.0.tar.gz=7292dd9a56155aa015ec08c03855b3fc jruby-bin-9.3.6.0.tar.gz=bc5a7b02be69fdf3f5584e8880fc7dcc jruby-bin-9.3.7.0.tar.gz=49b17b5cd7cf8bfb09d8f64147d992ef jruby-bin-9.3.8.0.tar.gz=6ea209b699a06944d0653d8048d8bfec jruby-bin-9.3.9.0.tar.gz=9a0f0a931346bc6ea34196a5c88002ec jruby-bin-9.3.10.0.tar.gz=83c9d776dfc8cf33bfa60f7e78077160 jruby-bin-9.3.11.0.tar.gz=6ccc04e658c49db19fc0c452db0f2931 jruby-bin-9.3.13.0.tar.gz=3f20268b494da900504e921507248183 jruby-bin-9.3.14.0.tar.gz=87a96fd3af448ec8fd5ca45c6469ecc9 jruby-bin-9.3.15.0.tar.gz=385fabe180b68fb8cd3743b315109e5f jruby-bin-9.4.0.0.tar.gz=d0136daa4910f6e6b21858260eb00fe2 jruby-bin-9.4.1.0.tar.gz=abe2669672ac973f1b41a4d3860eb7ae jruby-bin-9.4.2.0.tar.gz=486e50f3c74e7400e71631819fde91da jruby-bin-9.4.3.0.tar.gz=526006fefb3e5ffc5095ab5599cc38c6 jruby-bin-9.4.4.0.tar.gz=287b5c3a9b63ff93e49ae9dc0347263b jruby-bin-9.4.5.0.tar.gz=09c6fceb38d6c086af2e4d5f21f9fe65 jruby-bin-9.4.6.0.tar.gz=5e2fe4ed897d938332ee0d85d2aa60bc jruby-bin-9.4.7.0.tar.gz=a0633ca837efff62edca84ceae1f5515 jruby-bin-9.4.8.0.tar.gz=9f520a3a416b598b4e53916e7180b623 jruby-bin-9.4.9.0.tar.gz=b7a789e9ff1b87d0e8c7bda7fae31c16 jruby-bin-9.4.10.0.tar.gz=36d6d8d745e793580ec4b12caa257501 jruby-bin-9.4.11.0.tar.gz=46e632baba1068e17345c7d24fec4241 jruby-bin-9.4.12.0.tar.gz=c7a26b4bd2fde1064b1cc6bf67f2f645 libiconv-1.13.1.tar.gz=7ab33ebd26687c744a37264a330bbe9a MacRuby%200.5.zip=675454a8c7bc19d606d90a726e08427c MacRuby%200.6.zip=a80afd3700c88cf95c539fc63b272faf MacRuby%200.7.1.zip=e8245dcd03c0757dfae7e6fee913947a MacRuby%200.7.zip=0bb60588c9ec9b1517665743bb05132f MacRuby%200.8.zip=735ac0a70f539e00b5de6fbec09c2c5c MacRuby%200.9.zip=fa01345e8fbfee620bbac64743a45f69 MacRuby%200.10.zip=1662d13d2f73cfc26258598f6988dcbc MacRuby%200.11.zip=b0cc23d60484a07012bcad549cef6054 MacRuby%200.12.zip=e1c5fa1b007a1cdc38c527a47302bf5e MagLev-1.0.0.tar.gz=e02cb8ee04438451eb78df14f91a68a9 MagLev-1.1beta.tar.gz=d542c7af290ce3b588b57629906b19e9 MagLev-1.1beta2.tar.gz=0ef88d5d145611aef324cb51be0aaafd MagLev-1.1RC1.tar.gz=41f4a0994daf1e5271cbd0ebe57816f4 MagLev-1.2Alpha.tar.gz=5c7dd3acef9dbddc0829bb1daa087abb MagLev-1.2Alpha2.tar.gz=cbbeae109854a6bf107a747a93fd478b MagLev-1.2Alpha3.tar.gz=b7470518f2b697eb1a5a39eff9b6d749 MagLev-1.2Alpha4.tar.gz=d54f04a611ce838b9d7009627065b7ca mruby-1.0.0.tar.gz=d9aec6a20fc1add65ee07ff6cf0e1ef2 mruby-1.1.0.tar.gz=60d75ea704c9285f3c80b3ad1d2b68de mruby-1.2.0.tar.gz=b5a3b7962d9db8cb8fb8105aa914d16c mruby-1.3.0.tar.gz=9714dd2804064d0043e099b7211d72b9 mruby-1.4.0.tar.gz=25efc35511070454074b36863c4d5b5e mruby-1.4.1.tar.gz=b40bf09af3f4c6e2bc443b9ac803a3ad mruby-2.0.0.tar.gz=b86c6a1dd86cb4ebe51e3fe38964a830 mruby-2.0.1.tar.gz=15b426a8a94a610c45414578786d05e3 mruby-2.1.0-rc.tar.gz=58a85fcb102d72900a25190da670e01d mruby-2.1.0.tar.gz=c01a4bbf62e6f5765c70b8813e0ce7da mruby-2.1.1-rc.tar.gz=809edd80e680855e7c4cf3c569972f28 mruby-2.1.1-rc2.tar.gz=24879fa5eb587f9415f03f8f3701842e mruby-2.1.1.tar.gz=c0ee4a112695046b9e4f177e31096d6c ncurses.tar.gz=cce05daf61a64501ef6cd8da1f727ec6 openssl-0.9.8k.tar.gz=e555c6d58d276aec7fdc53363e338ab3 openssl-0.9.8n.tar.gz=076d8efc3ed93646bd01f04e23c07066 openssl-1.0.1c.tar.gz=ae412727c8c15b67880aef7bd2999b2e openssl-1.0.1i.tar.gz=c8dc151a671b9b92ff3e4c118b174972 pkg-config-0.23.tar.gz=d922a88782b64441d06547632fd85744 readline-5.2.tar.gz=e39331f32ad14009b9ff49cc10c5e751 readline-6.0.tar.gz=b7f65a48add447693be6e86f04a63019 readline-6.2.tar.gz=67948acb2ca081f23359d0256e9a271c release-2.0.0-rc1.zip=b05b5e3c2712a294e4b09ebf450c1bfe rubinius-1.0.0-20100514.tar.gz=b05f4e791d3712c5a50b3d210dac6eb0 rubinius-1.0.1-20100603.tar.gz=eb185703c7ae0c0210e8dcb7f783ee8e rubinius-1.1.0-20100923.tar.gz=e2ae16238b201de09975abe19da09ea9 rubinius-1.1.1-20101116.tar.gz=b39f618eeba37c3aff215da8bca55fd7 rubinius-1.2.0-20101221.tar.gz=4284c2660f1f648942de35d4fc871f70 rubinius-1.2.1-20110215.tar.gz=e4a5127480062fddddc7ce2860b3b813 rubinius-1.2.2-20110222.tar.gz=59124378fb7ee040e9ee4e4736d89fc0 rubinius-1.2.3-20110315.tar.gz=9782dab18c2dd440af6b76e8eb5bc0f0 rubinius-1.2.4-20110705.tar.gz=403c777d19b3553e9cb36701fe002c5e rubinius-1.3.2.tar.bz2=64801ad8dd4e5e4fcb74ff313fec0a69 rubinius-1.3.3.tar.bz2=79f1f860ed8242257bd7f3e88c81a197 rubinius-1.4.1.tar.bz2=76b840405d4b9303261c27cf15002386 rubinius-2.0.0.tar.bz2=62e379e044c822b81e7b20a27daf133e rubinius-2.1.0.tar.bz2=908053f38fd840c75a93aab7487c20a5 rubinius-2.1.1.tar.bz2=6b4df0caec5ea88373e113f97a3b4c72 rubinius-2.2.0.tar.bz2=f1fbc6f3baf1da5ad86b3858f30f3349 rubinius-2.2.2.tar.bz2=ac70d629ea43525d91e81f4ccf135299 rubinius-2.2.3.tar.bz2=d9978cf1a4e8f0310db63e49834f9837 rubinius-2.2.4.tar.bz2=c10699da85a8eb5861a37b29077213bd rubinius-2.2.5.tar.bz2=5996dc8529b2ffe5921c5e7020bee20e rubinius-2.2.6.tar.bz2=85339bb6dd525eee719edf0551868f56 rubinius-2.2.7.tar.bz2=de2e6f4c3bd9a90bcb89f2ea27ddee9e rubinius-2.2.8.tar.bz2=c4db1ffb8dbdf864240cabe8b7758b49 rubinius-2.2.9.tar.bz2=0bf87ba617fa989e47d20942410028af rubinius-2.2.10.tar.bz2=8680da7eb921e6f595a1d716915ca7e0 rubinius-2.3.0.tar.bz2=e003a30af6689c8198116b3405d09d8e rubinius-2.4.0.tar.bz2=62391a51f49820daa51463066c3ce007 rubinius-2.4.1.tar.bz2=7758721b6e848387c3943ddb9ebd9479 rubinius-2.5.0.tar.bz2=178baa1ad172df0801765ea93bc36d87 rubinius-2.5.1.tar.bz2=77e1b87dc357691ad44b561a5f45c188 rubinius-2.5.2.tar.bz2=e5973d6e0a16f0390dc2a7478db83ff5 rubinius-2.5.3.tar.bz2=b19709eb3fa9e05b3fa6a357b33e3b5b rubinius-2.5.4.tar.bz2=64587916e5d445ed9bc630017a04498e rubinius-2.5.5.tar.bz2=ef671bbab50cbe2f70f953c491311261 rubinius-2.5.6.tar.bz2=597e4b049f49966c646faf699856c1b9 rubinius-2.5.7.tar.bz2=9a7f404019bce9fc34a7af7feb7cbb74 rubinius-2.5.8.tar.bz2=a24520892cada1f660e719a25abf63e3 ruby-1.8.5-p115.tar.bz2=03955e3c367b9beb3efe144c9f00d689 ruby-1.8.5-p115.tar.gz=20ca6cc87eb077296806412feaac0356 ruby-1.8.5-p231.tar.bz2=327f5aa6573787432222e96195cffd1e ruby-1.8.5-p231.tar.gz=e900cf225d55414bffe878f00a85807c ruby-1.8.6-p286.tar.bz2=e6b6bf8f34370e433936adb7a7065e63 ruby-1.8.6-p286.tar.gz=797ea136fe43e4286c9362ee4516674e ruby-1.8.6-p287.tar.bz2=80b5f3db12531d36e6c81fac6d05dda9 ruby-1.8.6-p287.tar.gz=6ff3420094711266c3201a0c7c2faa38 ruby-1.8.6-p369.tar.bz2=c3c1f3dd0dfbd2e17a04e59c2f12cfc8 ruby-1.8.6-p369.tar.gz=8c140ae28b4c3947b92dfad69109d90b ruby-1.8.6-p383.tar.bz2=a48703cd982b9f0e3002700a50b0e88e ruby-1.8.6-p383.tar.gz=4f49544d4a4d0d34e9d86c41e853db2e ruby-1.8.6-p398.tar.bz2=fbd43dc44ee26be4d37e6bebbed6f8bd ruby-1.8.6-p398.tar.gz=736db5f56c2d9b0136e563d049249fa8 ruby-1.8.6-p399.tar.bz2=f77c307cb72fb8808b0e85af5d05cefc ruby-1.8.6-p399.tar.gz=c3d16cdd3c1ee8f3b7d1c399d4884e33 ruby-1.8.6-p420.tar.bz2=1c7a978e9ffd4f56dc2ad74bbd2c34f3 ruby-1.8.6-p420.tar.gz=ca1eee44f842e93b5098bc5a2bb9a40b ruby-1.8.7-p160.tar.bz2=f8ddb886b8a81cf005f53e9a9541091d ruby-1.8.7-p160.tar.gz=945398f97e2de6dd8ab6df68d10bb1a1 ruby-1.8.7-p174.tar.bz2=88c45aaf627b4404e5e4273cb03ba2ee ruby-1.8.7-p174.tar.gz=18dcdfef761a745ac7da45b61776afa5 ruby-1.8.7-p248.tar.bz2=37e19d46b7d4b845f57d3389084b94a6 ruby-1.8.7-p248.tar.gz=60a65374689ac8b90be54ca9c61c48e3 ruby-1.8.7-p249.tar.bz2=37200cc956a16996bbfd25bb4068f242 ruby-1.8.7-p249.tar.gz=d7db7763cffad279952eb7e9bbfc221c ruby-1.8.7-p299.tar.bz2=244439a87d75ab24170a9c2b451ce351 ruby-1.8.7-p299.tar.gz=43533980ee0ea57381040d4135cf9677 ruby-1.8.7-p302.tar.bz2=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p302.tar.gz=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p330.tar.bz2=2689719fb42c8cf0aa336f8c8933f413 ruby-1.8.7-p330.tar.gz=50a49edb787211598d08e756e733e42e ruby-1.8.7-p334.tar.bz2=2f14f604bf981bb938ab5fc8b09eb1a6 ruby-1.8.7-p334.tar.gz=aacb6ee5dfe2367682bba56af7f415b8 ruby-1.8.7-p352.tar.bz2=0c61ea41d1b1183b219b9afe97f18f52 ruby-1.8.7-p352.tar.gz=0c33f663a10a540ea65677bb755e57a7 ruby-1.8.7-p357.tar.bz2=3abd9e2a29f756a0d30c7bfca578cdeb ruby-1.8.7-p357.tar.gz=b2b8248ff5097cfd629f5b9768d1df82 ruby-1.8.7-p358.tar.bz2=de35f00997f4ccee3e22dff0f2d01b8a ruby-1.8.7-p370.tar.bz2=1e4c3194537dd8ff92e756993e55a29d ruby-1.8.7-p371.tar.bz2=c27526b298659a186bdb5107fcec2341 ruby-1.8.7-p371.tar.gz=653f07bb45f03d0bf3910491288764df ruby-1.8.7-p374.tar.bz2=83c92e2b57ea08f31187060098b2200b ruby-1.8.7-p374.tar.gz=b72a0bc5b824398537762e5272bbb8dc ruby-1.9.0.tar.bz2=17eb66ac3721340d21db352d8f5dec76 ruby-1.9.1-p129.tar.bz2=6fa62b20f72da471195830dec4eb2013 ruby-1.9.1-p129.tar.gz=c71f413514ee6341c627be2957023a5c ruby-1.9.1-p243.tar.bz2=66d4f8403d13623051091347764881a0 ruby-1.9.1-p243.tar.gz=515bfd965814e718c0943abf3dde5494 ruby-1.9.1-p376.tar.bz2=e019ae9c643c5efe91be49e29781fb94 ruby-1.9.1-p376.tar.gz=ebb20550a11e7f1a2fbd6fdec2a3e0a3 ruby-1.9.1-p378.tar.bz2=5922459622a23612eb9b68a3586cb5f8 ruby-1.9.1-p378.tar.gz=9fc5941bda150ac0a33b299e1e53654c ruby-1.9.1-p429.tar.bz2=09df32ae51b6337f7a2e3b1909b26213 ruby-1.9.1-p429.tar.gz=0f6d7630f26042e00bc59875755cf879 ruby-1.9.1-p431.tar.bz2=03179138ae95dbfae872ef49e9cc6da7 ruby-1.9.1-p431.tar.gz=23f28cffc007ed5ac72c8e9bec6837ce ruby-1.9.2-p0.tar.bz2=d8a02cadf57d2571cd4250e248ea7e4b ruby-1.9.2-p0.tar.gz=755aba44607c580fddc25e7c89260460 ruby-1.9.2-p136.tar.bz2=52958d35d1b437f5d9d225690de94c13 ruby-1.9.2-p136.tar.gz=6e17b200b907244478582b7d06cd512e ruby-1.9.2-p180.tar.bz2=68510eeb7511c403b91fe5476f250538 ruby-1.9.2-p180.tar.gz=0d6953820c9918820dd916e79f4bfde8 ruby-1.9.2-p290.tar.bz2=096758c3e853b839dc980b183227b182 ruby-1.9.2-p290.tar.gz=604da71839a6ae02b5b5b5e1b792d5eb ruby-1.9.2-p318.tar.bz2=be431c6cbfa27e3836a06c6315717747 ruby-1.9.2-p318.tar.gz=cc7bf1025128e1985882ae243f348802 ruby-1.9.2-p320.tar.bz2=b226dfe95d92750ee7163e899b33af00 ruby-1.9.2-p320.tar.gz=5ef5d9c07af207710bd9c2ad1cef4b42 ruby-1.9.2-p330.tar.bz2=8ba4aaf707023e76f80fc8f455c99858 ruby-1.9.2-p330.tar.gz=4b9330730491f96b402adc4a561e859a ruby-1.9.3-p0.tar.bz2=65401fb3194cdccd6c1175ab29b8fdb8 ruby-1.9.3-p0.tar.gz=8e2fef56185cfbaf29d0c8329fc77c05 ruby-1.9.3-p125.tar.bz2=702529a7f8417ed79f628b77d8061aa5 ruby-1.9.3-p125.tar.gz=e3ea86b9d3fc2d3ec867f66969ae3b92 ruby-1.9.3-p194.tar.bz2=2278eff4cfed3cbc0653bc73085caa34 ruby-1.9.3-p194.tar.gz=bc0c715c69da4d1d8bd57069c19f6c0e ruby-1.9.3-p286.tar.bz2=e76848a86606a4fd5dcf14fc4b4e755e ruby-1.9.3-p327.tar.bz2=7d602aba93f31ceef32800999855fbca ruby-1.9.3-p327.tar.gz=96118e856b502b5d7b3a4398e6c6e98c ruby-1.9.3-p362.tar.bz2=13c26ea368d88a560f07cc8c5eb4fa05 ruby-1.9.3-p374.tar.bz2=944e73eba9ee9e1f2647ff32ec0b14b2 ruby-1.9.3-p385.tar.bz2=5ec9aff670f4912b0f6f0e11e855ef6c ruby-1.9.3-p392.tar.bz2=a810d64e2255179d2f334eb61fb8519c ruby-1.9.3-p392.tar.gz=f689a7b61379f83cbbed3c7077d83859 ruby-1.9.3-p429.tar.bz2=c2b2de5ef15ea9b1aaa3152f9112af1b ruby-1.9.3-p429.tar.gz=993c72f7f805a9eb453f90b0b7fe0d2b ruby-1.9.3-p448.tar.bz2=aa710d386e5903f78f0231868255e6af ruby-1.9.3-p448.tar.gz=a893cff26bcf351b8975ebf2a63b1023 ruby-1.9.3-p484.tar.bz2=03f5b08804927ceabe5122cb90f5d0a9 ruby-1.9.3-p484.tar.gz=8ac0dee72fe12d75c8b2d0ef5d0c2968 ruby-1.9.3-p545.tar.bz2=4743c1dc48491070bae8fc8b423bc1a7 ruby-1.9.3-p545.tar.gz=8e8f6e4d7d0bb54e0edf8d9c4120f40c ruby-1.9.3-p547.tar.bz2=5363d399be7f827c77bf8ae5d1a69b38 ruby-1.9.3-p547.tar.gz=7531f9b1b35b16f3eb3d7bea786babfd ruby-1.9.3-p550.tar.bz2=c2169c8b14ccefd036081aba5ffa96da ruby-1.9.3-p551.tar.bz2=0d8b272b05c3449dc848bb7570f65bfe ruby-1.9.3-preview1.tar.bz2=7d93dc773c5824f05c6e6630d8c4bf9b ruby-1.9.3-preview1.tar.gz=0f0220be4cc7c51a82c1bd8f6a0969f3 ruby-1.9.3-rc1.tar.bz2=26f0dc51ad981e12c58b48380112fa4d ruby-1.9.3-rc1.tar.gz=46a2a481536ca0ca0b80ad2b091df68e ruby-2.0.0-p0.tar.bz2=895c1c581f8d28e8b3bb02472b2ccf6a ruby-2.0.0-p195.tar.bz2=2f54faea6ee1ca500632ec3c0cb59cb6 ruby-2.0.0-p247.tar.bz2=60913f3eec0c4071f44df42600be2604 ruby-2.0.0-p353.tar.bz2=20eb8f067d20f6b76b7e16cce2a85a55 ruby-2.0.0-p451.tar.bz2=908e4d1dbfe7362b15892f16af05adf8 ruby-2.0.0-p481.tar.bz2=ea406a8d415a1a5d8365596d4288f3da ruby-2.0.0-p576.tar.bz2=eccd42d43620544a085c5e3834572f37 ruby-2.0.0-p594.tar.bz2=58469c0daf5f3a892a70cc674ea59c7f ruby-2.0.0-p598.tar.bz2=a3f3908103a7d209d1d1cf4712e3953c ruby-2.0.0-p643.tar.bz2=1390888cac6cd175e6f164eff378cdde ruby-2.0.0-p645.tar.bz2=d576240c97cfcc3ed9bdc457eb1e8280 ruby-2.0.0-p647.tar.bz2=27a3ea1a8b8bca1a6de43a7d08e88b69 ruby-2.0.0-p648.tar.bz2=3544031334f4665aa2eb1414babc9345 ruby-2.0.0-preview1.tar.bz2=47a0f662f0e258aa1c5e429c310861b3 ruby-2.0.0-preview2.tar.bz2=a645a783c3302cc094a9963a5e700a4d ruby-2.0.0-rc1.tar.bz2=24cebdda11e01ff4889ac983cd7dc02c ruby-2.0.0-rc2.tar.bz2=e92420131bd7994513e0bf09a3e2a19b ruby-2.1.0-preview1.tar.bz2=d32d1ea23988399afadbd21c5a7a37fc ruby-2.1.0-preview2.tar.bz2=9d566a9b2d2e7e35ad6125e2a14ce672 ruby-2.1.0-rc1.tar.bz2=cae095b90349b5b0f7026060cc3dd2c5 ruby-2.1.0.tar.bz2=1546eeb763ac7754365664be763a1e8f ruby-2.1.1.tar.bz2=53edc33b2f590ecdd9f6a344b9d92d0d ruby-2.1.1.tar.gz=e57fdbb8ed56e70c43f39c79da1654b2 ruby-2.1.2.tar.bz2=ed9b8565bdeccb401d628ec8d54a0774 ruby-2.1.2.tar.gz=a5b5c83565f8bd954ee522bd287d2ca1 ruby-2.1.3.tar.bz2=02b7da3bb06037c777ca52e1194efccb ruby-2.1.4.tar.bz2=f4136e781d261e3cc20748005e1740b7 ruby-2.1.5.tar.bz2=a7c3e5fec47eff23091b566e9e1dac1b ruby-2.1.6.tar.bz2=e1a8e6c6bfbb09bb7f8d6be8f508e4a1 ruby-2.1.7.tar.bz2=3a878e98311d543e5de3533b82ef4a5a ruby-2.1.8.tar.bz2=b17130b5f02a61640ae3b629af931610 ruby-2.1.9.tar.bz2=62bd1cbfcbc22e4d137462bce992f6d1 ruby-2.1.10.tar.bz2=5155c624807ff2418a9e9f15202954d0 ruby-2.2.0-preview1.tar.bz2=767b132eec3e70b14afe5884a7a767b1 ruby-2.2.0-preview2.tar.bz2=d7abace25a8ffe861cb2807bef1c58a6 ruby-2.2.0-rc1.tar.bz2=7144732d30dd4547c0a59862b3345d54 ruby-2.2.0.tar.bz2=d03cd4690fec1fff81d096d1c1255fde ruby-2.2.1.tar.bz2=06973777736d8e6bdad8dcaa469a9da3 ruby-2.2.2.tar.bz2=af6eb4fa7247f1f7b2e19c8e6f3e3145 ruby-2.2.3.tar.bz2=f49a734729a71774d4a94a9a603114b2 ruby-2.2.4.tar.bz2=c3d65f6d2ebe90dda81a37885ea244f5 ruby-2.2.5.tar.bz2=0c7edd1ff3650c3b74da2efaf641bf34 ruby-2.2.6.tar.bz2=3d13cf447142b8a11cd9beb7bc63fee0 ruby-2.2.7.tar.bz2=ca7224d80c08b015bc3b8c226d0914c3 ruby-2.2.8.tar.bz2=054d2e2904d5175662293e29c3bdb927 ruby-2.2.9.tar.bz2=575adf8ede6b1ca7236a5341e73536b0 ruby-2.2.10.tar.bz2=bef1909a4c885157870ef69548cdad3a ruby-2.3.0-preview1.tar.bz2=776000d74ec6dd34bf355ff6921c8311 ruby-2.3.0-preview2.tar.bz2=3ad442ccb337e77e4acaa4113f25b76a ruby-2.3.0.tar.bz2=f0d9f9bbdc87372ca98988a571875819 ruby-2.3.1.tar.bz2=c194281f63d7fcd816747fe78474be5e ruby-2.3.2.tar.bz2=9d00f3772f1c8fa5eecdfea089e3032f ruby-2.3.3.tar.bz2=04b9c461a2bc1eec0535ad1947cad4fb ruby-2.3.4.tar.bz2=99961e97566aee6d63635e2da4cf73ac ruby-2.3.5.tar.bz2=e1efc3d5a948ca1f552005efe5925513 ruby-2.3.6.tar.bz2=b2443b11ee80319a119f7ec0c9b8d79a ruby-2.3.7.tar.bz2=5eb580d5cd13ffb5aacfb96580c0043d ruby-2.3.8.tar.bz2=78045332e298dfd859ceef9fe946950f ruby-2.4.0-preview1.tar.bz2=64b8983b5f53d053906e394f734aa296 ruby-2.4.0-preview2.tar.bz2=1074e8dea5baa89af7f7c2d1d2b9ebaa ruby-2.4.0-preview3.tar.bz2=9f767e6bc61830735ea7dc9cd5a63653 ruby-2.4.0-rc1.tar.bz2=0f8b665acf4e883334adc121a42a206f ruby-2.4.0.tar.bz2=98f29161860fe1b6c65396717847a358 ruby-2.4.1.tar.bz2=07b2ae5d2f46321c95b37066c8415900 ruby-2.4.2.tar.bz2=5ff3ad6ec816bcce8806a55090936ab6 ruby-2.4.3.tar.bz2=ac8215ba561cc7c79b4f61daee11b706 ruby-2.4.4.tar.bz2=d994274eaa95b82aa5d31ec2188253c6 ruby-2.4.5.tar.bz2=45d70a8bb9397d818795ffe992163d27 ruby-2.4.6.tar.bz2=4abd13c50c1fc273a0a81a0ae74ed39f ruby-2.4.7.tar.bz2=1ce166ced489908993d78e8bb68325e0 ruby-2.4.8.tar.bz2=396d35f1a2d1deaf303f59cb5245d4ae ruby-2.4.9.tar.bz2=0b3447370651df55a2014a170c0cb1d5 ruby-2.4.10.tar.bz2=b10a7d2fcaf218c98edbaf57efc36e58 ruby-2.5.0-preview1.tar.bz2=889454189f41e271ae5ba15382911b6a ruby-2.5.0-rc1.tar.bz2=f5acdeacf56aced3c00ae6a8fa816bbc ruby-2.5.0.tar.bz2=63a6cd49546783d62de25a0ffc4aecc3 ruby-2.5.1.tar.bz2=5aaaf2fb4893214fa316516f3ac43519 ruby-2.5.2.tar.bz2=e90ab127e2ac3ee1d8840835e8ba1f13 ruby-2.5.3.tar.bz2=49aea0bf56d25351ccaf938c642400df ruby-2.5.4.tar.bz2=0c923215470f1debe593fe21e66fd37b ruby-2.5.5.tar.bz2=8f41b5cb683d48b5cb6cdfe03d135d6b ruby-2.5.6.tar.bz2=f2a74416ab3016434896194120796f04 ruby-2.5.7.tar.bz2=65597b69aa54bdca8745502c10349f96 ruby-2.5.8.tar.bz2=9ec96e7a590ef801ede294b6184c9c0f ruby-2.5.9.tar.bz2=9e905a545a729af1f1620ddfc2976fe5 ruby-2.6.0-preview1.tar.bz2=1ce507e27fa02aeb36100dabcf1da94f ruby-2.6.0-preview2.tar.bz2=e45011116334d21857b9e1712a01e6b3 ruby-2.6.0-preview3.tar.bz2=b326ceee3d3756f892515009e148f4b2 ruby-2.6.0-rc1.tar.bz2=40457a72e36cbecd0c51d9f895347302 ruby-2.6.0-rc2.tar.bz2=9665e6d886a9da2d4076fa75836798f1 ruby-2.6.0.tar.bz2=d3372daec93f83e7a91c669821053014 ruby-2.6.1.tar.bz2=73d19ac478db1a178be5ae2f2fb8c9ec ruby-2.6.2.tar.bz2=658fcc0da15578c2420ded807b11cce1 ruby-2.6.3.tar.bz2=52e609b756735115814b9c8463f185e2 ruby-2.6.4.tar.bz2=d9b35753c65f54c745ab6b0094511839 ruby-2.6.5.tar.bz2=d1b89c88effb71d75cd7ef77c35e1985 ruby-2.6.6.tar.bz2=abc030870bfbe18ae9c356abebd95cb6 ruby-2.6.7.tar.bz2=46f24740181f91247c72f19d52334379 ruby-2.6.8.tar.bz2=c53761123d17e929cfe248f50429bcab ruby-2.6.9.tar.bz2=ddc24495adaf215c8ee40630b4a55041 ruby-2.6.10.tar.bz2=6ad76db639ab308e3b6c19408729a0cf ruby-2.7.0-preview1.tar.bz2=82fab0496947acd847a6b2eb758acfc6 ruby-2.7.0-preview2.tar.bz2=966a544ab59114591898403c23d91397 ruby-2.7.0-preview3.tar.bz2=2fa6c213774744b287e7e0212b43f626 ruby-2.7.0-rc1.tar.bz2=48a8837cb352f5b95e97a1ae0d62a9d0 ruby-2.7.0-rc2.tar.bz2=cca58fdb8c5e8be8273842d54199c42d ruby-2.7.0.tar.bz2=89347748b7414f5bc7aeb8f4a87ebef4 ruby-2.7.1.tar.bz2=4bb2b2b2f0c6953859e30af140cf249a ruby-2.7.2.tar.bz2=a8acc9c24708fe29dfc287823ecaae65 ruby-2.7.3.tar.bz2=604acb258b1d8228f55799e846cfe6d3 ruby-2.7.4.tar.bz2=52705d799ed851dd3bfd5634265cde46 ruby-2.7.5.tar.bz2=d97d4377eee18b0e790510c3afed648c ruby-2.7.6.tar.bz2=1b6efacb9f129d0253d8a9faa9c21f99 ruby-2.7.7.tar.bz2=63c55e75150251d3ba092b662138e4af ruby-2.7.8.tar.bz2=f44dedf51fdb7441a7dba592d6a4a14d ruby-3.0.0-preview1.tar.gz=991df063b86a8f8412ca07f548579f39 ruby-3.0.0-preview2.tar.gz=ce14b24e923f2e269fea6441791a7248 ruby-3.0.0-rc1.tar.gz=848a8628c8abde270b66e2474049a4a3 ruby-3.0.0.tar.gz=d6af36269a1b0bc278236d371543ad97 ruby-3.0.1.tar.gz=8d1c460a9a9d48a353de3eb0f338bbfd ruby-3.0.2.tar.gz=b973af486291a1e17ad50d88472bfa86 ruby-3.0.3.tar.gz=9ecae293da9547c1438a970f04f64655 ruby-3.0.4.tar.gz=ec9de9a15acc4f205b08816d94267415 ruby-3.0.5.tar.gz=cdff2395625dc1d632fc5400c8fec103 ruby-3.0.6.tar.gz=6b5a7b14505697e6fc2b40b345679f40 ruby-3.0.7.tar.gz=147a3467facc704b5d479e809c131603 ruby-3.1.0-preview1.tar.gz=d131b9bca700ee87ea276f8233ea4c0b ruby-3.1.0.tar.gz=1ca89d713f2c18a20104befed51b3b9a ruby-3.1.1.tar.gz=702778a0ef8b7a01ef7530a541002e19 ruby-3.1.2.tar.gz=9daf064899cccc32fd564117c7a7e0dd ruby-3.1.3.tar.gz=cce38a2b2c589d59f440f67c7d8cc697 ruby-3.1.4.tar.gz=3e601ae6db76a487219a1084e5cb4c9c ruby-3.1.5.tar.gz=ce1e92ddb1230fa2d4f4367882542555 +ruby-3.1.6.tar.gz=880923d0ce02717023683b522dbe92a5 +ruby-3.1.7.tar.gz=20b73ea8e850d7e12c226b3772b1d0ed ruby-3.2.0-preview1.tar.gz=a83c91d53e130fe232e4c27ecc8738da ruby-3.2.0-preview2.tar.gz=56e7801b37612b82285c9a09cfeb28ce ruby-3.2.0-preview3.tar.gz=0ed16faae50403b4e2ba2e85ec2314a1 ruby-3.2.0-rc1.tar.gz=4657d7013702adce21ca21dfe71ea4a0 ruby-3.2.0.tar.gz=76ca7e7d71898ab1e85155d69403754e ruby-3.2.1.tar.gz=055101c924538467c63fcbf42abddc75 ruby-3.2.2.tar.gz=eb6f18605e1e1be5dfb5b45f31bf6a93 ruby-3.2.3.tar.gz=e0ba90554f7ea41c587ffa7fcfd064ca ruby-3.2.4.tar.gz=c48283a23c72d7aae19b7f510b89444a ruby-3.2.5.tar.gz=3bd6f2b26918c8637abf56c2f208833e ruby-3.2.6.tar.gz=fa9bd65bc429a43a3e6dda8ff0b97022 ruby-3.2.7.tar.gz=c72e290d57080f828156b5c24fe8e4ad +ruby-3.2.8.tar.gz=aa16ae868ae1cb8810581ea604e4e0fa ruby-3.3.0-preview1.tar.gz=0833f555b1b8d5423953600fb4146639 ruby-3.3.0-preview2.tar.gz=4f82f4c9e512ec0a53baa1be8d35ebf7 ruby-3.3.0-preview3.tar.gz=a32ede198a9da50d4afc4421a4a993ad ruby-3.3.0.tar.gz=f57422a0f995cd5a93c726f6c42c310a ruby-3.3.1.tar.gz=368e331a35145ace4948390ed76cf1df ruby-3.3.2.tar.gz=9a7efebc6a0e4810c716ec6d401dc372 ruby-3.3.3.tar.gz=beb9773cc4d9d8da29463ab175e4db28 ruby-3.3.4.tar.gz=f2e16c1a56e07e185214e85c62657941 ruby-3.3.5.tar.gz=ccad73b02d942d1e6b4c27873d4c08e4 ruby-3.3.6.tar.gz=51bcf91da64e5889e2e59c7adc7189c5 ruby-3.3.7.tar.gz=5fa3e653657d868e2c8377d2f3adb335 ruby-3.4.0-preview1.tar.gz=93b9b1040a2dd7be7514a7870aa7da03 ruby-3.4.0.tar.gz=2acf769caa47f692fea932ab81e75639 ruby-3.4.1.tar.gz=43e587b9a6de2a51dd1fa2613615542b ruby-3.4.2.tar.gz=120907785ecc0a84521e924cbda66af9 ruby-enterprise-1.8.6-20080507.tar.gz=17e3c52e73e42809f57ad0000a6cb4ab ruby-enterprise-1.8.6-20080621.tar.gz=626fc3811eee2dc92ac27ea63d37a8b2 ruby-enterprise-1.8.6-20080623.tar.gz=0bf8a3a93c6b37bb1260cc09b05e81fd ruby-enterprise-1.8.6-20080624.tar.gz=de58b97128aa65209f291c66eab7c4a7 ruby-enterprise-1.8.6-20080709.tar.gz=f0ded08cec64959fa388ec6a237b9c47 ruby-enterprise-1.8.6-20080810.tar.gz=bfdcf06f437af825cd9f2d321f9d1896 ruby-enterprise-1.8.6-20081205.tar.gz=50206bec9be2e08a862e5ec2e70fa693 ruby-enterprise-1.8.6-20081215.tar.gz=aab57b7d5061c1980bec5dbe311ec9b2 ruby-enterprise-1.8.6-20090113.tar.gz=e8d796a5bae0ec1029a88ba95c5d901d ruby-enterprise-1.8.6-20090201.tar.gz=a965e6789b553efaed72191825b13713 ruby-enterprise-1.8.6-20090421.tar.gz=c777b361aadccda7988be16ede7ab15f ruby-enterprise-1.8.6-20090520.tar.gz=156572a8296bd0440970a6bb95018a13 ruby-enterprise-1.8.6-20090610.tar.gz=0bf66ee626918464a6eccdd83c99d63a ruby-enterprise-1.8.7-2009.10.tar.gz=3727eef7b6b1b2f31db7d091328d966e ruby-enterprise-1.8.7-2010.01.tar.gz=587aaea02c86ddbb87394a340a25e554 ruby-enterprise-1.8.7-2010.02.tar.gz=4df7b09c01adfd711b0ab76837611542 ruby-enterprise-1.8.7-2011.01.tar.gz=4640634347cd8e5469cb718853e2112e ruby-enterprise-1.8.7-2011.02.tar.gz=8c5faa11c1ddaed3f44b7294711980cc ruby-enterprise-1.8.7-2011.03.tar.gz=038604ce25349e54363c5df9cd535ec8 ruby-enterprise-1.8.7-2011.12.tar.gz=1e5f3059d52a67ab5d91d472b756de08 ruby-enterprise-1.8.7-2012.02.tar.gz=8d086d2fe68a4c57ba76228e97fb3116 ruby-enterprise-1.8.7-20090928.tar.gz=ae00018ce89d95419dfde370fcd485ac rubygems-0.4.0.tgz=86a64616548a793e1a5f825f0dd385b9 rubygems-0.5.0.tgz=80d151edd94a06bcd2452a7e272b4d96 rubygems-0.6.0.tgz=5df803f5a04654833690dd32283de741 rubygems-0.6.1.tgz=c4a0faa9f876ad805ae80d1396a29d97 rubygems-0.7.0.tgz=ede9b55343219e8b3491793aa12c46f3 rubygems-0.8.0.tgz=9ef6e3c34dcb54e295c8e57321ddc079 rubygems-0.8.1.tgz=6276d268b420c0d61796cdbf6d28dae4 rubygems-0.8.3.tgz=6e6da80f61d6e77d0ad9e531767f6fd5 rubygems-0.8.4.tgz=a2ad2d03dae8a98002c2a7cd6c3ed352 rubygems-0.8.5.tgz=b917c084e1e6e99d8e102af8dd687ddb rubygems-0.8.6.tgz=9de98d2f62e3f91521b0207a4dcdeb5b rubygems-0.8.7.tgz=7fc04b9f9acc0c18cbbe6222be8d0bd3 rubygems-0.8.8.tgz=a8535e9c35a4c215d6ef9268d4bc69ed rubygems-0.8.10.tgz=d26592e280c0fb24c51f2837c3f48e67 rubygems-0.8.11.tgz=aa363b428c4c1fc2e076a4ff77b957d7 rubygems-0.9.0.tgz=5d496e1f415b8b4033ab867f01d1161f rubygems-0.9.1.tgz=a62314cdb174ccc88a27b8924fa79e4a rubygems-0.9.2.tgz=cc525053dd465ab6e33af382166fa808 rubygems-0.9.3.tgz=600940a22ecd79e28e0fd37ad1f1d871 rubygems-0.9.4.tgz=b5680acaa019c80ea44fe87cc2e227da rubygems-0.9.5.tgz=91f7036a724e34cc66dd8d09348733d9 rubygems-1.0.0.tgz=b0b74eac0cbfc5a13f895ab6f803edc1 rubygems-1.0.1.tgz=0d5851084955c327ee1dc9cbd631aa5f rubygems-1.1.0.tgz=85f994904c5b4045f0a859b29d0be717 rubygems-1.1.1.tgz=1a77c5b6b293a3ccd5261dc120641ccc rubygems-1.2.0.tgz=b77a4234360735174d1692e6fc598402 rubygems-1.3.0.tgz=63d3dfc038710eaf532b6a133225115a rubygems-1.3.1.tgz=a04ee6f6897077c5b75f5fd1e134c5a9 rubygems-1.3.2.tgz=6204d0a4c526a1d8fdbce746647b179a rubygems-1.3.3.tgz=0e9697db44d812712350baf28016b4a7 rubygems-1.3.4.tgz=b17b398503253bf36a101c58f02a226f rubygems-1.3.5.tgz=6e317335898e73beab15623cdd5f8cff rubygems-1.3.6.tgz=789ca8e9ad1d4d3fe5f0534fcc038a0d rubygems-1.3.7.tgz=e85cfadd025ff6ab689375adbf344bbe rubygems-1.4.1.tgz=e915dbf79e22249d10c0fcf503a5adda rubygems-1.4.2.tgz=b5badb7c5adda38d9866fa21ae46bbcc rubygems-1.5.0.tgz=49bef7186bf3c0ca6ee7adf4b585bccc rubygems-1.5.1.tgz=47577a5e33c9c6f1e3a56aff7f51d0ff rubygems-1.5.2.tgz=3951f94c09c16c774c8bcebc94fa5374 rubygems-1.5.3.tgz=38bbbdc17aef923fb41f054cf8421116 rubygems-1.6.0.tgz=abd27b5a9002100ff74ddb398a1c9689 rubygems-1.6.1.tgz=a77c64896aaa10d64aaf34f5c1488173 rubygems-1.6.2.tgz=0c95a9869914ba1a45bf71d3b8048420 rubygems-1.8.6.tgz=8e95d0c5b377a003f3d54a49461e81d9 rubygems-1.8.9.tgz=fc399445d693c29778779e5828ee5e90 rubygems-1.8.10.tgz=5b08ee31740c9b0bd36f6c04d537e7d4 rubygems-1.8.23.1.tgz=5259ce3eb7988950fa3aff9051a5de91 rubygems-1.8.23.2.tgz=fb377c7fd387df14a33e529153adc316 rubygems-1.8.23.tgz=178b0ebae78dbb46963c51ad29bb6bd9 rubygems-1.8.24.tgz=3a555b9d579f6a1a1e110628f5110c6b rubygems-1.8.25.tgz=1376a258d43c53750a8df30e67853e10 rubygems-1.8.26.tgz=0ea47f1efd010f4c82b8a51a934f48dc rubygems-1.8.27.tgz=6686ad26735c21d0d6e58b6192c7da5d rubygems-1.8.28.tgz=2df78039f391fb1f71c02c2fc5671c94 rubygems-1.8.29.tgz=a57fec0af33e2e2e1dbb3a68f6cc7269 rubygems-2.0.0.tgz=89ce467eb2d55657e9965a46559acbcf rubygems-2.0.1.tgz=2652ab6f001a873b8933e2ca09505974 rubygems-2.0.2.tgz=3471f140a70bcd32a7495b545cfce790 rubygems-2.0.3.tgz=854691f145cea98b4100e5b0831b73ed rubygems-2.0.4.tgz=3ec32dbe783bab37a87f50758f8efe13 rubygems-2.0.5.tgz=641d82672937d40d664dbc18f49cdcec rubygems-2.0.6.tgz=0633f50db16112bf6c3cf9bfb9ceb9bd rubygems-2.0.7.tgz=9046700f1222712fedfb836fafa08c50 rubygems-2.0.8.tgz=5432214a740c0d13482e43a5328a6518 rubygems-2.0.9.tgz=bc55898247297ffa190223276b1b1bd7 rubygems-2.0.10.tgz=5457ba403cd9a5f4f5fb2ef4a2a1c03e rubygems-2.0.11.tgz=0f28e3fde3348c0f23ceecba73a6cbef rubygems-2.0.12.tgz=99c416517e2de1146d2c6fbb4c4c1441 rubygems-2.0.13.tgz=3970e66a670ddb6d1aade9c7b18033d4 rubygems-2.0.14.tgz=4a7aa0b144e465230ab5d7b59dfd7e8f rubygems-2.1.0.tgz=9a9d242baef5e58fbfe79ec5206cd316 rubygems-2.1.1.tgz=b34d6f4028b69a84123a6b7cb0ac8028 rubygems-2.1.2.tgz=b5c5c4430be60f911014216d41886ef3 rubygems-2.1.3.tgz=ac7bbdfecd49f9304756aa5ebeb51400 rubygems-2.1.4.tgz=aa502b1ea90fbdd14ca9b32634795c2b rubygems-2.1.5.tgz=60564b762d4e186815997653b1c876ab rubygems-2.1.6.tgz=e11237a8f87dbd8c085770551d64a8f8 rubygems-2.1.7.tgz=b721ed7d5fd57ed05f77eb21a3a592ee rubygems-2.1.8.tgz=cc4c84c0482840389a457740e8083ed9 rubygems-2.1.9.tgz=2636bf26c0a9ec889c7bd938887bd9a3 rubygems-2.1.10.tgz=6fa671d7d6605de73d16f529cf7bffb8 rubygems-2.1.11.tgz=b561b7aaa70d387e230688066e46e448 rubygems-2.2.0.rc.1.tgz=f7d80b612339169569f2675155c202f1 rubygems-2.2.0.tgz=3c16e50673adb99d1ce76d5231f764bd rubygems-2.4.8.tgz=dc77b51449dffe5b31776bff826bf559 rubygems-2.6.10.tgz=ab5a0028d2a0653691b29d7463bd0892 rubygems-2.6.11.tgz=8d514b836fcf3ae2c20b4fe8d5cdc3c5 rubygems-2.6.12.tgz=7c454ef88b716c1a123f62b26bb9612b rubygems-2.6.13.tgz=e6f19b51614055d826e431549a12a80b rubygems-2.6.14.tgz=e0a6914ce03b91dfc6d448ebf292f145 rubygems-2.7.0.tgz=771c40015538c0f225c5249e4bc7d441 rubygems-2.7.1.tgz=65646f28f3c36ccaa7f991c17e15b8a9 rubygems-2.7.2.tgz=312a238ed98a61d2b3d165b790b6062b rubygems-2.7.3.tgz=fb3a1927a1842b75677a24f48dd63ddc rubygems-2.7.4.tgz=e9bbf5a4cc9a74293884b91f49603ea0 rubygems-2.7.5.tgz=516a4f219976003feb4b4f797cbc66b0 rubygems-2.7.6.tgz=366cea352c2b1243db726013c3d76fc4 rubygems-2.7.7.tgz=b6721f6ce4af08f68c6f513bbddfe484 rubygems-2.7.8.tgz=a3ed89a34e1ae8f9da0c620a8aa35f12 rubygems-2.7.9.tgz=173272ed55405caf7f858b6981fff526 rubygems-2.7.10.tgz=464754059d8ca01c1121a1233d866e8c rubygems-3.0.0.tgz=3908105894e531f7ad3aceb8b41dcbcd rubygems-3.0.1.tgz=1e8af9b87a67f15841ad2be7d5725a5f rubygems-3.0.2.tgz=d8db1b516ae1e35b8f6f56cb526f879a rubygems-3.0.3.tgz=b7a7dd5f85485334a6cb61b7dac20cff rubygems-3.0.4.tgz=7d0c49077a2d19f48d88567cfa3cf17a rubygems-3.0.5.tgz=4664467d621d719688e4778d147c306a rubygems-3.0.6.tgz=60d84e843b131fb87c8fd67e8fac6470 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=3e9afdf72f153e2f66259fc2b6fca594 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=c30459287aec83548cfcb17340fa73d5 truffleruby-1.0.0-rc3-linux-amd64.tar.gz=138f6814451ce634b0fae3aca5579248 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=94ed54ecb65bea2166a2159431b0362b truffleruby-1.0.0-rc5-linux-amd64.tar.gz=9e5428611e22b093d05afebbe0ccbc2b truffleruby-1.0.0-rc5-macos-amd64.tar.gz=b32a254fed71434c3431fb2effb35c5a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=7f394a8c7fe356b7bd36683c57f74ebd truffleruby-1.0.0-rc6-macos-amd64.tar.gz=f033329d03f1f846d25728c2af9d7524 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=184e98f2d6939f63db4b915943ff60c6 truffleruby-1.0.0-rc7-macos-amd64.tar.gz=d19213b33011f7a55e0f32d25e19184f truffleruby-1.0.0-rc8-linux-amd64.tar.gz=a394167c0331c6d8c1123e1f992e5411 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=dc1bf0fcfdd5837ae0ca56d6d6e5f7b0 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=f6ec25bd532bf0551d35327d1aa4caf9 truffleruby-1.0.0-rc9-macos-amd64.tar.gz=c80a345f9071521cf1961ab75ebc7dd1 truffleruby-1.0.0-rc10-linux-amd64.tar.gz=3a889726efcdf33feb7ef3df13fd5f39 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=bba618b4483b79eebf9f0e7af4078502 truffleruby-1.0.0-rc11-linux-amd64.tar.gz=a25e179ca0be96a1bc737a600729c195 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=bb8d8f5525e1ba86bb039e56291c6c7c truffleruby-1.0.0-rc12-linux-amd64.tar.gz=872774837057489250527bf863192115 truffleruby-1.0.0-rc12-macos-amd64.tar.gz=bb4a64e6c4882fd0c5e412bf9c57720b truffleruby-1.0.0-rc13-linux-amd64.tar.gz=0f36eed2eb36846785fdd4eae24adfa0 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=1bd3087a0f2df4c006b87c9488ada6d4 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=9eddd1aa98c9649e7c01bb10bf28c471 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c93643f1d00b370411310ee7a1dd5330 truffleruby-1.0.0-rc15-linux-amd64.tar.gz=bc7339a6218ea991f2c72ce8759cb6e3 truffleruby-1.0.0-rc15-macos-amd64.tar.gz=1671d08dd2f5026d58b326fd55c9b7de truffleruby-1.0.0-rc16-linux-amd64.tar.gz=5564d17f19b8ee0edb96ab5b1bfbda98 truffleruby-1.0.0-rc16-macos-amd64.tar.gz=61583b529b6a1337398b0966db952d24 truffleruby-19.0.0-linux-amd64.tar.gz=006220c7bde7d0b5c72481133624a83f truffleruby-19.0.0-macos-amd64.tar.gz=9ef7f5a311465d35e54ac6e00ec3d169 truffleruby-19.0.2-linux-amd64.tar.gz=2f7fe574e0695fb6001f4f5282aa2f79 truffleruby-19.0.2-macos-amd64.tar.gz=aa20f76b3eac1f4976a507364201d1ad truffleruby-19.1.0-linux-amd64.tar.gz=71368f8371069017d911528f052b0a55 truffleruby-19.1.0-macos-amd64.tar.gz=7f086adbc89fdfaed35273394ac3ac66 truffleruby-19.1.1-linux-amd64.tar.gz=c1ad4d17bb40e214b124222f3a7c6db6 truffleruby-19.1.1-macos-amd64.tar.gz=f4e76b0612319b4a82480cbd1fc90210 truffleruby-19.2.0-linux-amd64.tar.gz=458ed5fec1a849ef5b00e19b0e25d5e9 truffleruby-19.2.0-macos-amd64.tar.gz=dc324575ad20e3054980835c24ea7161 truffleruby-19.2.0.1-linux-amd64.tar.gz=ad7444145550d89931199159163077c1 truffleruby-19.2.0.1-macos-amd64.tar.gz=b5bcfb0aaded1e2d1763089ab6c9a14d truffleruby-19.2.1-linux-amd64.tar.gz=fc4879d2b0cc22c152a8bf893a72c346 truffleruby-19.2.1-macos-amd64.tar.gz=71448ff3f8f1da086f222751d3f853bc truffleruby-19.3.0-linux-amd64.tar.gz=dd44ac30b5a1ef3a7d61172cda9b30b6 truffleruby-19.3.0-macos-amd64.tar.gz=41daa52f0f308abb77a2b91c1b7e0f3d truffleruby-19.3.0.2-linux-amd64.tar.gz=2db2cb5c29523c9bdb6f59dfa0bd74ce truffleruby-19.3.0.2-macos-amd64.tar.gz=edf1603643938686dce57139aadf7d3c truffleruby-19.3.1-linux-amd64.tar.gz=a14c028351f7a3965bcb56e9b22364de truffleruby-19.3.1-macos-amd64.tar.gz=a8707d0af3eda694ec07a5387d3443fb truffleruby-20.0.0-linux-amd64.tar.gz=b30110ecbc50c4fce402fdf44c45dad5 truffleruby-20.0.0-macos-amd64.tar.gz=0671e5909cefb9a2c12c473fc0110821 truffleruby-20.1.0-linux-amd64.tar.gz=4592b5fc3636d82fc998ab6fe0a43584 truffleruby-20.1.0-macos-amd64.tar.gz=3c0be43db86817c7037d3ff5053d322d truffleruby-20.2.0-linux-amd64.tar.gz=e9859decb24829f9a189d88b3c2e9b79 truffleruby-20.2.0-macos-amd64.tar.gz=49e7ccf8f9e60d6c59b3b07b854466cf truffleruby-20.3.0-linux-amd64.tar.gz=93a20845f7d9d39100761424dfc0a734 truffleruby-20.3.0-macos-amd64.tar.gz=b178b7a94fac58400450417612fe3441 truffleruby-21.0.0-linux-amd64.tar.gz=c03304a505c8699e697acecf5030d95f truffleruby-21.0.0-macos-amd64.tar.gz=019796be37a58ef8e186a625f2ff5d07 truffleruby-21.1.0-linux-amd64.tar.gz=065bfcc48f6925410e0da21e16428b64 truffleruby-21.1.0-macos-amd64.tar.gz=325f6854c10d8a3a114c80da582c469f truffleruby-21.2.0-linux-amd64.tar.gz=0aec44721a040845347f18c1f72ceb75 truffleruby-21.2.0-macos-amd64.tar.gz=76d27715b20902df5779f7a0c00852b1 truffleruby-21.2.0.1-linux-amd64.tar.gz=f68e9b8a9f9cae5efc5ac45a7d9e760d truffleruby-21.2.0.1-macos-amd64.tar.gz=b021e50fc94cab590b49d27f2ea821b0 truffleruby-21.3.0-linux-amd64.tar.gz=359aca79cba4e08f9955d9c6543c2189 truffleruby-21.3.0-macos-amd64.tar.gz=d9e2e2c6fcd3ac16f0c37b0ccffb4f41 truffleruby-22.0.0.2-linux-amd64.tar.gz=324327026e9b2963a8e5fb4ee3f4e216 truffleruby-22.0.0.2-macos-amd64.tar.gz=7029d0e291d498a264d9b413729a3e17 truffleruby-22.1.0-linux-amd64.tar.gz=9329cf507ba8ac529e93156cacc1425d truffleruby-22.1.0-macos-amd64.tar.gz=353242978b46cafc34b05e2c81206096 truffleruby-22.2.0-linux-amd64.tar.gz=5d676377056ae94fe847be721c20405b truffleruby-22.2.0-linux-aarch64.tar.gz=b774f4b7d330842521f1e6e56cb41db5 truffleruby-22.2.0-macos-amd64.tar.gz=e45fdd9a05aec6220a76fb707b0a5ae8 truffleruby-22.2.0-macos-aarch64.tar.gz=ebcbfe056d90d06de4bd0a9d699bad8f truffleruby-22.3.0-linux-amd64.tar.gz=ada8bc5dc52aca8317eaeab04d91e877 truffleruby-22.3.0-linux-aarch64.tar.gz=11493301d5519aa73e8f0e140cefb581 truffleruby-22.3.0-macos-amd64.tar.gz=9e27c677637b69b0460fb0a4569a5cca truffleruby-22.3.0-macos-aarch64.tar.gz=eaa1c9020b521226f8bb48b8c7e5c596 truffleruby-22.3.1-linux-amd64.tar.gz=243d926f038fd2220c03dfbe40ef58c3 truffleruby-22.3.1-linux-aarch64.tar.gz=01487fe680863381489bf2a0a2ac162b truffleruby-22.3.1-macos-amd64.tar.gz=b3d5a777d94856e51034d81076e8ef72 truffleruby-22.3.1-macos-aarch64.tar.gz=320ce75730a5b9f16f111eb7ef5e4e09 truffleruby-23.0.0-preview1-linux-amd64.tar.gz=76c1cb23ee63ba4de93a0c23784bfca9 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=eec3fc74565f08e9468982692f7f9010 truffleruby-23.0.0-preview1-macos-amd64.tar.gz=50e38f3cd548dfe78f397f76ed577bf1 truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=b769bcf9b843d9b2980def1e2139284f truffleruby-23.0.0-linux-amd64.tar.gz=6e1a491406c5dbf42de10fcb3ed7dc1c truffleruby-23.0.0-linux-aarch64.tar.gz=5c3663f64bee707173b2684355a9a42e truffleruby-23.0.0-macos-amd64.tar.gz=515a9a8a0f39ba9399e869cd418ebff5 truffleruby-23.0.0-macos-aarch64.tar.gz=57e5fa52270e692b82c445107fe6b6a6 truffleruby-23.1.0-linux-amd64.tar.gz=f7511c19045e57e72f9b5415bc17c8e8 truffleruby-23.1.0-linux-aarch64.tar.gz=e8a20dd919a2ff77b7cc5457e853d15d truffleruby-23.1.0-macos-amd64.tar.gz=d3b6a3cbc0a230ebae6f3a462a32ddd3 truffleruby-23.1.0-macos-aarch64.tar.gz=ee74fc5d192c2fb8afd0458d2d429c02 truffleruby-23.1.1-linux-amd64.tar.gz=d7e1c040da170aaa36b5f5a1d106d237 truffleruby-23.1.1-linux-aarch64.tar.gz=cf508ba3787be20c03bac690f3bdbac5 truffleruby-23.1.1-macos-amd64.tar.gz=a662a8672871524808500dddef3808c1 truffleruby-23.1.1-macos-aarch64.tar.gz=de543312024993a533e3caa63b396127 truffleruby-23.1.2-linux-amd64.tar.gz=e3e5b01b291d7fea61be2be842c7e8dc truffleruby-23.1.2-linux-aarch64.tar.gz=8fe26f643fa81eec6de3bde7024c858a truffleruby-23.1.2-macos-amd64.tar.gz=83bc41bf699fa847df7e60412bee2823 truffleruby-23.1.2-macos-aarch64.tar.gz=7dbd2e182cfec0cf2d2e37784721903f truffleruby-24.0.0-linux-amd64.tar.gz=202f05706d28faca75d5e3cd0f9bef78 truffleruby-24.0.0-linux-aarch64.tar.gz=4faaf4edde4f6a516246b7c2f4ee80b3 truffleruby-24.0.0-macos-amd64.tar.gz=d07f27e0e29398c6de836b0049105c12 truffleruby-24.0.0-macos-aarch64.tar.gz=10cf176718968893468caba617c02141 truffleruby-24.0.1-linux-amd64.tar.gz=2914bfb81b136cd1fb5736c0a40068e3 truffleruby-24.0.1-linux-aarch64.tar.gz=429e6ada9a95ea23ebb95d01f90eb0f4 truffleruby-24.0.1-macos-amd64.tar.gz=e3aa5ab128f5d169d93f2d6df98c4e77 truffleruby-24.0.1-macos-aarch64.tar.gz=6f81a1afe1b89a40f00c9bd4216ec45d truffleruby-24.0.2-linux-amd64.tar.gz=1a826ea6323a25becce5940d8e6c4642 truffleruby-24.0.2-linux-aarch64.tar.gz=45429f35653bd8cbc328eafe81d15e8a truffleruby-24.0.2-macos-amd64.tar.gz=f68aeb26783d048ae5f78e1c13739747 truffleruby-24.0.2-macos-aarch64.tar.gz=df05f94696b4f4584a259001a3d4d1d0 truffleruby-24.1.0-linux-amd64.tar.gz=14aa05250088f17491072e500c22c039 truffleruby-24.1.0-linux-aarch64.tar.gz=3e26495f8aa7b810ec5794a69e93483a truffleruby-24.1.0-macos-amd64.tar.gz=53b6251cdd359176f9e52fe05f05e949 truffleruby-24.1.0-macos-aarch64.tar.gz=28d61b8a1a307cbdf988313c8a1f77f1 truffleruby-24.1.1-linux-amd64.tar.gz=9ef530c2ac5f597100e69e4b374182c3 truffleruby-24.1.1-linux-aarch64.tar.gz=efcc6f5c51be84d2ec99e6cebccc586a truffleruby-24.1.1-macos-amd64.tar.gz=11e2f0f62c55fcc8330cd66393abb1fc truffleruby-24.1.1-macos-aarch64.tar.gz=eaba15df3e46cd3976bedaf6f086aae2 truffleruby-24.1.2-linux-amd64.tar.gz=ada406523c5cf80f7655a9314902e2b5 truffleruby-24.1.2-linux-aarch64.tar.gz=5a5dc457002a8a65b21264efd0387d5b truffleruby-24.1.2-macos-amd64.tar.gz=cb6142250e4b0b2b164ffa7ce47d5f29 truffleruby-24.1.2-macos-aarch64.tar.gz=f73e0af905cabe695b0fe6c73df699a1 truffleruby-24.2.0-linux-amd64.tar.gz=326d5bc6b5232c88e00837d30884ba52 truffleruby-24.2.0-linux-aarch64.tar.gz=391fa212eaff207df31860a291fee28e truffleruby-24.2.0-macos-amd64.tar.gz=0e21c5233ac4a20c4221900c79602496 truffleruby-24.2.0-macos-aarch64.tar.gz=9573cceaf4e1d6444cff0fda3695228a yaml-0.1.4.tar.gz=36c852831d02cf90508c29852361d01b zlib-1.2.3.tar.gz=debc62758716a169df9f62e6ab2bc634 zlib-1.2.5.tar.gz=c735eab2d659a96e5a594c9e8541ad63 diff --git a/config/sha512 b/config/sha512 index 470c999..8f928f0 100644 --- a/config/sha512 +++ b/config/sha512 @@ -1079,691 +1079,694 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/16.10/x86_64/ruby-2.2.5.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/16.10/x86_64/ruby-2.2.6.tar.bz2=3ced80471546c33775873c64b98cd924fc9386af0a7f8cdf462c133ea546e894190a0b040c64c33950c90b0f2e6a2acb54db9277716e8f885d14daba7a669fe7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/16.10/x86_64/ruby-2.3.0.tar.bz2=9e1e827b35dd75250b4c71c03f437b674d364d9b1b52990a897c742a07e86ec615878d87384871f15147fe05eb67cdc03c5df5f40ad189517b28c5889ca843c4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/16.10/x86_64/ruby-2.3.1.tar.bz2=399961f149c48fe687139ae247175ebcd58b6659a3b050cea523ac4d5351f2cb44670b2a7fa1c97efe852414f27a50213a8ecfecd36baf889bf9163c82babb71 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/16.10/x86_64/ruby-2.3.2.tar.bz2=4976f36f8c5291facc9553fdb2dd0c6a23d655461a8f8a7965e871edbb8cf9042df3e2292bf03ddeec455570835b834278f0beb32baef26fc159e4b4a86d6614 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/16.10/x86_64/ruby-2.3.3.tar.bz2=d77a51c0b1d0cfcf0b0385d32fd87adc57896f64729ca822f7c1bd7ecce79264b8b5e1799ebe0f7b079f4590e7740db97d027ef4fe5387556dce2c689630f118 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.1.6.tar.bz2=e80ebc162e44f407f5c830fb55f995ce29e28ed871d365631764db395860239bd570aff3092b18b169ef0b9b70495bf86600677c616cbd63c80f1ab50eddaadf https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.1.7.tar.bz2=af76486c65259084dcc3afbff212b7cd5d9e17d5ac6b496db37c6c28285b41f0a72523b92505df2c7efbf5e64ff7dd6d86610f84c5efa7452d2bd01908ca0390 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.1.8.tar.bz2=8f8829fda202863105c0453ad40e1f8806833446d44fa01f97e742e83cb086da7eeaf3349899c9120879395ede20a192ef4546a00062585e47b6b2fe2253c89d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.1.9.tar.bz2=3c249490017b902b43e58a199dc420b9dc038ec139949d9bc620f58a70c7f8dd093d12313f695899ad53ee314c4bdcfeaa50cb72c196b889f38faa22936137c3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.1.10.tar.bz2=6bcfe2a2983f6b476adfb7863c9b483aa0c7cd84abd70c59f4de427ee6274bed71200cd91269bc0b3cd418645aee6371cfd3cd77e93b98a2c6c64efac6e817d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.0.tar.bz2=e610c0029dd68d15b582f09086ac39a6e5d039ffa9c18e5fefaffe4b0279445258050327bf7c02c8ef672a7ec58a32f5850c044d9083694d0b55424f2b75e945 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.1.tar.bz2=d841aff173f5a0af71384b56e1430395b287a771f80131279e22647e368acb20b5c22e5c0d4858510525b9783da499b6f6fade081e1d37fac3fe7a50cb34cee0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.2.tar.bz2=17be6eea903f162178edae84c67f263b9532405c0cb5bb320fa51b019869d114e0dc4ad7fafd6cb2597e45b73d4777d3c4e0d4f22141de30bd2ad02ccdd41ee3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.3.tar.bz2=8dd4bb1cafb2d82586b199bf032edaf23fd9bcf8a05b7e2087de172b8a8c6c4fb96584fb15372033b97bbe11a7f8aab25057c03d71e5ee21ec4a647f95687413 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.4.tar.bz2=54f9fceb0496f647b3c59dd7411a583c74e7886d8f127aba10379de739c85e45d62c2688280ba5d21a45c5054f42a2645ac2a9d990ec1a16cbb2c533edd9eff4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.5.tar.bz2=1aee7aa974a08c6bb5a29b0782efa2950c1e530bc2100e018d66450e8e89701673a034a45adcf70bdc37f52d4027ae263d7e4410d64fc637b594ad624f10a25c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.6.tar.bz2=693173e4e235300cf30ce1592bada6aba5bb29a123157aa419ba8403757682cff31c9b2b0a4e97daed557953f52c26ebe0e49605e1d12f5e4247e0096d736630 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.7.tar.bz2=8af3b57425f7cac45e7bc61029f872facc87e9ffeb3243f8fb43407cbc0a581491f38091b0fa45c8c148b730fd8cd493aa5286177b68092d7944dd73ba585299 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.8.tar.bz2=f1a7801bd0116914a055ff4013840faeac0e432b55aaae4c0bb61eda3d812eb5b3093c2c536fd9e2e28eca81137300f84418d8bc8dd9e48ffe245ad90dd3eab7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.0.tar.bz2=e1fea7c85410615f76b02df366ee49f929cd3bf3e52c3fef8b848a8a6d2b982de03c325aac664c6550b216a11cde64ae571bd5a5467ddd4a8b61039d874b2955 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.1.tar.bz2=e8b6b5dafc4b46e97fd905a5396d09ee1cfd1c0b4b74b9c3bd9e1056684f05345ac1599817cd9cb1dcd410e4e3ea23d5f2fc86da12e01fd076434c1b2917f117 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.3.tar.bz2=8172c35a381adfdbf0f90fddf526e3a5c5d4590e133e041aeb339137c1c31f16a47b904c61048c29906dfd2245572dd69caec507432628bbc98bb3eb94891575 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.4.tar.bz2=fe9370f2f45c557fd24574219e9597826f4614a8c59f092bce54338a2e927d16bfd4abbcaf0203a60a35a11169310d45e79c4a33fa4d45916bd6e4eefcc7b888 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.5.tar.bz2=e42fe5b628b6a6cfc87abaadbd9140cbc5c0000993c3272740ee6e20d07d2bacffe5148213f9628d6bc6f97211c0905e55d7bd304763ae095d86df8c2b2d15fa https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.0.tar.bz2=baadb5c405fab06da091e75af6497370757cb694d50c9f76fb06bc0a281df13f4ae893df49657c7dd7e86dfbd052d2cb7297961f9739cda4089ed71e52ae7bed https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.1.tar.bz2=71ad68ef1317ce5ba51353cc226fc7b11923d9022770b355cb1180be7c2ba4bdd87b079a8dec15c09ef3ad42056018a41a603bd0a10b8124433f36b0930153d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.2.tar.bz2=440f27f682a7f9d2a99ff8c0687c1fecebd8bce494b9db48ab9d303250b8ea12dee51eed0f68d940f141d8e2699653fca7d2a6811eddc5c512a9fe39430fde3f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-1.9.3-p392.tar.bz2=3582744ce4a4ca8b497c918e129823167e80909367d65484c2a09a8e6fa185a38bfda8c1b6676742acb492472d0687fc5b6eb18965201e0f54268d835f618df4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-1.9.3-p551.tar.bz2=fc04b976fa02fc5c1cd4ccdd49948b5e289b3a5bba16ef99266b65fbb35f0c20a0ed02d5b147f2fc4469db6a7b6665d34e0373dba242ff04c95fa27642cfde1e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.0.0-p648.tar.bz2=7dd451549e9c1a43ef86be51eaa746344c424d1accbc9cfd360067c3aec20db8ffee277e1108d40c280f1b8ec0851c6e51bc448f25505508d9af153878d9b091 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.0.tar.bz2=cfe087a9daa6de2ef00a6501d568a25a3386da730304697e1bdb9fbb098617a143f073e58629876de4f09a1e8a60a48ec05864fcbccbd6733d9e1b3d309a1100 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.1.tar.bz2=b74cc64103a31b9b9545474fe202ab9f9b15569681262438056865e4dcad08419c44bb696c7dc8a18f72b3bd8e5e98201d0c3608ea652c907372c3c95cb7e16f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.2.tar.bz2=fafffbcd24eb3c55c89704e6e8ea48ad6be286bbb4e38f56c3b3d61f9bf4f6bec28882da2ff60f17f79516476ae50cc4cb8c6a8cf4a0f31b910d6153727caed2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.3.tar.bz2=4daaf8bba3a04d46e04720ff2af1469e1caa68168f5c27d1d3e0cab922055b1f9c0b26ee64c3cb46c17b6a9651ee7a11bad19e9414102455e96454f1a7929408 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.4.tar.bz2=988c13e900168b901a3a3deb4bb96e19b15205cf4c2793b56854b58924fff652946a083be6615b2053fb5285df0fd218d1f9f91562798f0386f0758973765dcd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.5.tar.bz2=c7396627e45d8df68b18c2491fa756085aeb4ec28c1cc707617cd903fcd47d4fdd3cd6ed225dccc14497afb14200b9bea5ba38f1e8dc621c4aea8b8f0f1ccc7d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.6.tar.bz2=389aa514d93d165fe299856a5348b1667f295aaeb49094bb5ff49e9c6861bac603e698c36bf81777797d05a1d3c405e37c1a00a4dbb85f262bf02c1b0e16ff04 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.7.tar.bz2=5a38bc1dd227658347114b935ad66e27fab67b8da9529a7f9083d6aac5743c40aea8c33ca95d4f10ed1d56f29bcc2c0747a3e88b87425a5786245792d8851301 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.8.tar.bz2=44e36e4918ab4c354cacdd20be30acf12f060aab808172184251186758f750ce688eef72f39ea110ab6429fbaaa5a792b1915a5c2d845b6e22a3cc4bc851c6b9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.9.tar.bz2=358f12ae2d4e177a080bbcde8b275691418884eae9a42c98161170c7b0f6029ffebf7ffad27961bfc8a50a393796934a2dd2c7f0ad2a35992c35dbd6c8c6349f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.10.tar.bz2=e7e98be6cf658eaab81486360f4d5d22f86805582feee4aa11a8e2fe6b461db69b850c7ea98840af0811910be7f534317ab5887bc48f47a9591b65fa7262feea https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.0.tar.bz2=307ee69b3051fcec2942fce075232a62f6adf6486239a89fab7bd63a9bf068e36371e67a5e42f86ed60e31b8219ff431c2d4bcf519b2c10393504942d2d90a9d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.1.tar.bz2=a0a30a805be9c43cfe52793d103e9f0dc6076d02b0c5af36d650564aa43958164a278958f7a7e1132ee5d3357cdcfaa8d59a4cc0bab027e288d935a44958b743 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.2.tar.bz2=d3218d01a18f5dbcdb65f216469a463215784170d32110f06372fda6325bc17e2c2aec1601a5bf3319ad753b123de056e6bee8aacdd7c64c4859570d40571ec6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.3.tar.bz2=4fb3bc10aa46a85cc37fb041d351b2a8f74d70c3de32fbceefebcd6e757cd8dffdfc86cd14fa6ae7d5273f875e1d4e13e6446b6dd1882c8fb015d1d34ab5ed2a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.4.tar.bz2=a008439e903b1e97eb5a66a88cf72c2e7438b12b78750411ba0ffa496c68beb8cacc2037763be1c8c8841fe9a248d4be0d0976420db0520b4b8456aed5480f3d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.5.tar.bz2=14573495aadfabb81b985aa485c0090a816f459a0db8e790a7d1bd948897cf650fef4e8aad7d2ab8232d2ebf56bf08363730dbbfbc2318625dcab04d3904b3dc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.6.tar.bz2=e915bc10ecd1129d7ed55a12fdefdd6b6fccc281cb3cc0790e5970978f17652068ccd7fdc160608cadc8556abb73a2c187d041899adfcfcb4a311285415145ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.7.tar.bz2=d80b934273b84d7ccc4e17fa07c9e0a0f95cb4a38224bd60ff73772ef7ecb3d1974e686bb10aa319642709e49789c0886f98f4fc1ccc5312a19ca19f03674e7e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.8.tar.bz2=9bf0cc35deab5f53900bc8e8264dc1b57f91a3477f241848df48109f4b5c97f3140470f523fa768a7543c61cdb7a93427866d871d09ebf8060a5cb75ac6d3790 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.9.tar.bz2=0cdefbcc88c5b9d34c08c8871c548772bd473dbaf54738f9855afddae8da5eecda607b36c546077efd0165114da385cd1f296433afe411f57a524fbff0a69291 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.10.tar.bz2=3aed1b12ca46e34fce66ac23bdd97ef815918275d91ca4723f9a6f2a2b93cb2b66f845747951593eaaf078bd0d982e06efa7641fc3e11d141b7605b086f93393 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.0.tar.bz2=ac6a699d5d08b33e7580a24c9357c0c8e8378208fc7385f5582f088a879f61e48a4654d72f03263a1dcf33fb0838b01c8c21fd39c5e2549d683466e0441381d5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.1.tar.bz2=77cb7698c66ccede33f558f6ab9ebe4be3b775a567d1d4dc12fd85d7b0f28d7bd446b18ef48ba1c879dadd76b50540b57f283e9f226e904e620afc3ba6585bae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.2.tar.bz2=9592c8e2fd9266f5d1cc780706f558e15d775cece995f5b6e933c54be7b7f2be2839b28ef1898b2072c5cdce36b830e72f967062ece4393765f8dbc88c6dff88 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.3.tar.bz2=8243575f30eb38409003b0450ddece621a589e29a4ffe219410820bc2afb97b7daec4c81d59d95dcfc83138414a2df707c925f0eb56907d565dac4bbd5a929d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.4.tar.bz2=ae16edab6e55d1b2506c4cb30d836639035a7fc153511125b578d6da8a8b40cd87650855fc6b4cf777c1fa0428c593325af88d9ad25d53acfbde0051a730eaa5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.5.tar.bz2=10f4aff595d12bdb425eb3268c868e0efb92059e6aed8683fefa5abedc1ef21d23a45e17802edd8e5e0924ba1c3277b653c0559ef4ad4c9dd2be2fee17226f8d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.6.tar.bz2=bc352df203155008da7a1099f7f7d26eb9f80e0d2e41c8adec5eb47f976529c6126bccc207563de87ccc2867d1e4c43797efbf295c9a7a4afce002ee19116074 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.7.tar.bz2=d71dc217011d154ef7b33780366bff07e4232ae77321ad6d16f19090f924ed3867c31f2af4aca4ffbc6a536b0320b676716ffb43e34b0323e81eafab13f17fa1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.8.tar.bz2=aae74010426e2a1288280f3611ba6aac842ff573f9b122fda9a4f1c514e09cb3d22281e6957b4acfcc753c94113852e083a9a80d0cae6b33682b83669c475eab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.0.tar.bz2=4a083c168d9facf3346b67dde02d9705109feef6fcd4e3c7c59c2bcb35c83597305e09ee143915fd993799a888d6d9ffffadb386bd57e9477312566dd6164deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.1.tar.bz2=58b30b00156691de2acc5d21d3255029fc3f9f2536e668298ab160d300fa0bf3eb0705aa524c9123ff09d770807cda0154bae012632b7e87120d7538f844560f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.2.tar.bz2=4c3c586765fd5afb55383d16eb9d0e7ffa5b1ff988a2b1d847e3f972a211b2401f035ff6c02d71de558cc161655438727079aafcc8ab80c97e07e16cd7fb1304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.3.tar.bz2=e66a4ca4b95496964ff4d77e36caf0894d913c1116f901c9b589da5a0e388302b64a79ad6acfe7eb1ca5917825bc0f866b482f074f1d5fed96d91e238f7ef454 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.4.tar.bz2=f95eee611be949327224b89942f4344e7d8e075b958ce3418b5874e9b23981113e4fd58254629fa9f6c2fdaf5840d44785ecf5f04433987f8fc4415df5c3e367 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.5.tar.bz2=447b28420be5b19f6b1381d232920e3c20bc894c2e0d1d2e394cc44e7859d02d177ec3ee09ce96e922f55b7fe2651918805f00fb783af3780e5f25c21f330195 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.6.tar.bz2=5f60bde5843fdc0b05bb852a2f1b30ce085dbcf7acaf105d5af951398b845c766113ff3740d44585ce3814b4953c004230eb4dc2ce8746b6236ea4b7a1d1cb10 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.7.tar.bz2=929a03725dba7de8d7eee3fe8987b858b9b9d6d377beee710af5c3e84b02501996444aa7b2c1db458aefc3e765da17cd17ac30fb0b4d77ab1e54239e72fa2a63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.8.tar.bz2=227849b5809072b3aee211125c2aad3e2e4984e9d9b4415dd8c01dbff70eb9c3758c3cf54f2b97fe282f7a42f205a2becf7b86e1e6ebb4a4d048ca32659603e1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.9.tar.bz2=c15a46ba1e89cc41523a21eec90d4e3af5b9739d27c2f2b51047f2c1db832e2773cbc04871a176f71e7124eb3f7b53262e40a1baab87262f8811a8d69d8e5358 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.10.tar.bz2=b83334e272e78995b699de28bff67accfc151cc7fb193d5c5746fcf06087643564b3a0b538cb64f50706642a620dba2cc54191357321852db42cc8c5648270df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.0.tar.bz2=82038a66827fbdaf60f404103b3956ead4e03c999893f0095109e7d853919992cab615f85cd96ba9158402b2de5a68fcbdb8b32e9d07c6f754e0591f72851b40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.1.tar.bz2=31e9f176ba61480b33b7761d2a19119a200ad61c8f85145f736eb196de50babaf278d023b274274c6a31f2173c5d022bb93e0f8d46a88223659d8ebcf6f5e278 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.2.tar.bz2=75d25fa6dc81ce8a62d02adc2e163e7c222c5946116c4880cec19460e2309457ee1a11a8eac94243ee8437514bfbba9ebee939218b6ccc7e5c1f15b673d432e7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.3.tar.bz2=84c93c85aa3733f2ac82e695c19e714ad4afd096edd6abda8a4915311d1f604453fc3fdc290c6ae1f9055d305ef400f8f8f152c5e15eb230baf7cfd5e192b7fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.4.tar.bz2=131b874ac376f42f3427dcbeb0adb0edd18ece834514ff5cc15f3b3e29b8f14697050051224d7ba2b509d428f780c653a4d7101149b8ded41ae373aab871e90a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.5.tar.bz2=f55d2ff7f2eae4d30fbc14226c928d1caff21db1f2cd559d3caeb0c07a7a3f034fa369d95f783e6f38cecb493d99aa1928def9d8574698e3edea3d33515749f4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.6.tar.bz2=06b12b2a1e85248311cf55620499806078b3b67110fb45dad9cb11cbaf1e230ce8a0da23c7de0a5abfccdeada8eb799f038b1a09980ee9572ec415e24fcf8c76 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.7.tar.bz2=49128b7845954f1f04502a484f17d5c0c6ecf8990047f5a383b2752ea9e09839e5994b210c2f60307d44ffa8b440472116fa1231ea899caf639e1b8a72f7f97c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.8.tar.bz2=24290aab4e0d48719659f8c1153d2b08020f17ae845e9ac6d6b6d3203e4a5b19061e907a214e8d4390277584ff4b46dd4a0113c6b201fa37e8a95c42fab5aea5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.9.tar.bz2=c2771d6b12f4240200926b2c40ec1bd3058c9ef213e2c6032e44799fa34b75b00f2564a0f7c0d9f972870d34c7742174310bfe3b15e2742a17ba2fa05e5a27cd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.0.tar.bz2=1be48c38da41f462c23d516f465ed34e2fe90c6fd53ee06f1efc9107077d9937413bee589d5d3384aee5c09da7087fa84864a50089bd1cf3c385ba3399e9b0a2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.1.tar.bz2=b7e1204e0e501312828ca0e30b77434b2d8d94581627196f0195ba93fb10a11046d44942393bd8a261585c564bc721313152a9087aa56b57b433ed14cc7922be https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.2.tar.bz2=e91a187a9e726ed26ddfaf09cc49473c8379545e2265934fcd1a1fa78ba99f9a119fe2c3c8247eab583389c3af7ec40a0e71da19f6ecc17ffc086759cebaaa15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.3.tar.bz2=77d9be5bbcd115131ec7c842a4449729d1515bf2106a6a235472dc96b58a56873c2d0fe6a3b824dd15ad00194b30e72a75813d8b4e10ee11cc793973130e2401 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.4.tar.bz2=a2e5409a1a88557bef747ca9b1ea65ac90e430500a8f9370023b4314cb5d1e0679a1b03761980ab2e933ac3521188e2151e521408e33cb4dde5f0bf802d81a41 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.5.tar.bz2=ed6288a4d81a740d722b43925db8f22f794cc704bf834a1f9c844e2072baceb8938547abb8f4fb1a50f92c34a8616904fc2679a44bf4adec4e78ce00e8456b45 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.6.tar.bz2=08cda5ff00b9297b46d1fb620301066b21240951924337b8b87d27526e55024e61121e51d9b35feea2ac5eed4027658b39ff487195140e7abe9158181c3349af https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.7.tar.bz2=3cc5695814c4ca49b6a0d7790093e85f5a359c5411618a12e60f4bda75c3635b94736762983e287cd04ce3ee3155d824bd9bb202aa929f85387a741d1685dd06 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.8.tar.bz2=91e371298a6dc1083c8b6265cc8d3d388d17a21d59e0103bba7e68640f80bdd12b98547584b1cd0feb7f8dad6ad530ef5660a154075960e1a76061d534609296 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.9.tar.bz2=7e3d0f7f42d644cf4eecfd88801afe088260d5fc8f490895378d5e4ede76b2bd67959b9803db59f7b19287801df43eba920885aa1bcd29f60d225745d67093c0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.10.tar.bz2=64683129da9a476d268ffde06bd7aa1c67b3c7c97b539d856833ffb127f458a55176d8b4a101e60b18ee923485097f3bd98e8216c3092c3d0527f6111cf7a051 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.0.tar.bz2=cada908be34428bc2f302bad6ebd778a2c7a8e979476e00e45c9444b65d7f48f397b838549d56ceb91f0e5593ffd663e9facc4ea5f5c6a4aecda85a5a1136496 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.1.tar.bz2=06cb5f2f0c0941802119dbdf34995446d6d69ee59eed9a5e9d7f9e7f0e14de440a9e77eee330357fa305e81ee39a6868651c740ebc91bb9a2085a74b33685f4c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.2.tar.bz2=23654c65e6e62354857f86098852af0ba50a15643df5e7f6fc8b710e35a3872f6eb7dc1bf9266375361f696d8ded0bcdb9ee9acdc8d0c975955d299292da7e21 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.3.tar.bz2=ac02a93a62c55a2a10dc260cd52749bd8f4bcf1a2d43dad3cfd2e5c0bf7800c51a5b00779526d84f759f6d50ce673c7f3e526392c4ab68322649f4fe980f2ac3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.4.tar.bz2=88651ffa2f1623ca3b93b60a591e828ea0dcfc73daf1eead2629531beef291331f8ed1a4a33d682828ca60bacfdd7fea77bcd67f1a0bdbfa9d1e4f173da53208 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.5.tar.bz2=001486271268cd1d2252f46b32001b25d493bbbc8ce981ecb608eaf8d2c2e6d6361f6d9bf052b9b2d7694e228bc302a1082689f2038564439705fbecc00de1ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.6.tar.bz2=a48c974f341cd10143eacf46a9d0eef45cfca3ed91ebc9f7fcbba73d408408eebc60c55e15dab391bc4a9ada6777e2be3ec4b9e849927c5782f4443a813a6ea9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.7.tar.bz2=b9e99d1df4a772441edf7fa4e05dd5aaa62efcc5a8c89fee68aa80c4bf1d17ad0e5ecae5682a10d2eb0ff78ee79c583f0cec46f5ac11ae874126082b9f8d76e4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.0-preview1.tar.bz2=8fe71fdb37955b031769359dadc5062b6c15e0618fd8961c932212a6a2610829aba8b1dbdcf4bdcc2e133665e043b29088f714874e3ef3a41d688b7beba78928 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.0.tar.bz2=c51f55af33e09ed425715dae0dd59dfa253e909bbd44b4bf3dc34452656438c23a754f6b2ccf0a3e878463519043361dc7ad8a757c87a3ae0e747599547dc7cc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.1.tar.bz2=fd09a4d721388c2b9f2fd09b68175dbd620e11df02ff7cea4e438d3205494a9883c25def06d6c1ae4207e7f82bc48fdd122fe12630bb9af9da451ce6be19d86a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.2.tar.bz2=2ade19f26f6e2eaf65a8ac3e9ca21cc8fe04252df58f9b14c6d0f92aba3c0eff27b1c68b1b05041496c367051e020dca7b0c64bf44fb07b4fbdee9e68b78fdf7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.3.tar.bz2=11d81f71ec3d293916bd6a00d28dfbcc93e721d12c6137fd58febb79e7399f8fd1ab5a66915863311db9539009dac06612a4b2daf0408fc1f1e84db8f8f4fdb8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.4.tar.bz2=bff3db8c69e85d503bb0686644f2d60b97c599e0cacbdb7cd4b18d630c50d04ed0dd90ea97be01c3b3220589abefc1e4dbef39246860e3c70993f0f2de738053 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.5.tar.bz2=32f69f0e33f7f7d41f4c0e5c5a1cd859a4c6032b0978c317ec3d333da42047b7f8f8dee9c4d72afe890b47b9f17901139142cfbbf228018d8ab5d02f7a01f0a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.0.tar.bz2=f7fb515855de32badd6e5ebbb03980312144b69dd8b696fb56320981e4f0964065cd13853a34dd321fca1ab160510dee8fc3b6c99f2a5e007e6974d70a564db5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.1.tar.bz2=de183d962dd4a8c95bea54f8740cc34931c2d856783fe7506f0252c5c71bb7125db00c9c7eaf8e80f8fa1c97208ba4b2a4d6c1a76e38d2b6251a92166749fb37 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.2.tar.bz2=7589f0292f72a2217e5024b51791f9a719ff0862bf39480f1460b5106f1c11172c72ccc1fe2a00b166d80610d76fcbefe64b7c9df0ed3a72c58964c2402982c0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.3.tar.bz2=d79cbc4812ebe9b308a145e96f6e7f64c2692b04370ecba0bcbaae5427afcc7e57ee83b4537914b6b90494fd45a11bbf2b27999a7a74c7fd569687a93c43961f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.2.0.tar.bz2=2d11ad1c89c1ce9873dcdc87c41cf38105b00e265277a173d721fce4bd350af73caf01fa4a5797e926f1a0cb180f1c6e969149d1d524c4df797939cdbbe9657f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.2.1.tar.bz2=cbfe8a92e732675ca1f7d51c04775dfdedec1b9f21b3b7f0760ef61b7c375cc4b0758a17302242087b55faac7c3f1217fab0f6a2e713a05dac082cd6a5d5df3c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.0.tar.bz2=172189c66b3c721e7413f0088f50e4eb8dd80d87779c3a4e74231f7036eeaacb8e373b7f5ff017f8aa274c1e1c872066f2f93485a2a369a7e9b442d157840bf2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.1.tar.bz2=829fcc1a3d878ee28e89a58a2f6d4221cec115d241a007b048953672d57548002c3a105ea4e65e344137091baaf5d5c54232a54c116afe03d0f3d61c07547c2c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.2.tar.bz2=ec2e7bd32e2d574773486e1c1d733611465765cf14895fa6b017b6ed6301ef40cd062496a3926788851e7ff3bdd62b488d03385aeacc66bed53aed18a6dec225 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.3.tar.bz2=79f822725d4e3bb7daf416e736d87f3b01c21d011423a2b3c65d9019a47ad4df256fd4a1f171961267ab8f20387019fec8f3f4ebfb6664f682bdf36914f6a329 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.4.tar.bz2=aba571bed773554b18863e6b942f2bca743729834657689a016938a34b7e4352e68d9fffc440b2fd4fcdd1bed4d1ba5dde689da535088d7ff8ae7dc364ac3b2a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.5.tar.bz2=0e46655028859f5abb64d71a5585db638d00edb9d20a487739d307bc1dfa2fca4ad196e04044dceab0e279286379e73110590c772a06786214c4eb23557324f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.6.tar.bz2=177e9f0a193f9dc45f8653306cf6a87bffba16780220fedbd8be67a3608a8f8d370011f3993590d58805a8ea4833d95196385fede4b513d908fd4263a82f113b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.7.tar.bz2=88bfad0d6258372d4e9739613a07352e954db3deb43c0e2d2a176f9cf55bc5e2df73e4cb04bda75e2dbb210799649f020a7284cd2acb5fb92d2b115a933a4f03 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.8.tar.bz2=3710f83ed7f3f30c9b5d3dd515c168534d01811cd33f20d3a54e654dfb5140afc8198f46dd823ac45072a83d844ad866af1e2b8265f54f9997356be88fa254a6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.9.tar.bz2=078ce0d7433e63d947fe4cb0cd5a14e6f5fca00b7309d7288359ed90989dbf618bd8c1f5f31b607f3ad6b0cf540d715dec2c38cfbf71cd170e572321598bde7e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.10.tar.bz2=f97f877f7afa604dfa7e8f1b399a4c034e79b616c95bd4e48927d88d1e8adf8e203901fa178f93c6af4511d26a38e2d8cced7225c2e75457bb02dc27b8feedad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.0.tar.bz2=ad619ccf77132166151e4982996e93135fb91d97701ef9aea12b6bd05e18e585dc4d5fc34883b3369ebba15474741db238fb90192eb273dd5428864429525d9b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.1.tar.bz2=9094c9bbda4c3d830382e89e4e1c24fe43cebd9d733b6878a43a34d679092bdb6c7b23cb3cc08d4efc6e15449c68862799713006703f95e2862bad1c0b0bb94a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.2.tar.bz2=54c8fc2f2a99f834292b83ef8e68e2b120f20fc4ff74856c13137065b95262f62188ed5c6ffea8fc4b0c1034d9f8a1b497878d6a581391d422994911f5fcb35d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.3.tar.bz2=b26daf1825cbc9cbe51e1abea84f3aae542beec7c26628201325026b4d4bdeeb46f8053a1c105973242ef532e66bd4eda5199dc1aa4faba1a6393f9cc126d856 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.4.tar.bz2=e5718fb13f2fe7f6b34fbc2b1a6db95576fcf9cbed481fea59fd4dd28d064104a912a1000533810221141ec09e9fd8d1e59850ae5a26ae441bb6d8878f42c418 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.5.tar.bz2=71ae2c5bac04a97694310daf76e896a1a02c245274e9c96ca96740f78a0e245302564bce757f1688d3e83b7c0c88989f702814c434101f8df786c1276a4f5a2d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.6.tar.bz2=1693ebd7cd3a452f51ce2ef32144aa36f6fa8121ec68cd0fff715db8981214ea9fc729099e4495e1e8bc346409551d4b93c6c3803fe187fc0c25360b80caab72 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.7.tar.bz2=53b05c51b970a239fab953dcf3bb433f59465fa0b4dfe58066132a1bf6247cbe4adcafe41b219ba453ea392f88a521349df14d58a91a855c53c9b9ba4cc16c4c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.8.tar.bz2=b9b0d99e590a48ceedbd1d6318c29b8fecc12b02ce5a6f1555593eb1b3e284c766f2f8800ee3070fb7a041593e4a3806d53590be760381268ef0f9588e127b08 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.0.tar.bz2=90491968190f4809fefb4068fcc37fb7e2ef179454f57c90bf2af308541f1ec175a72ded53202c1e86dbb63cb6b47678656f753574bf6ba525e982f3278a7602 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.1.tar.bz2=7f9ce1b6872352a6feb539948d26dbdfefb3d4225ba582ef8730be8fd85d5c350bd6f21346d43cfe26a8501c4ad145d733d94da5dbf25b15e7610ca037ad4227 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.2.tar.bz2=8544797f46d54cc4098227809561023bb7bd01eb2330724a94921c5a79ac64b44bd56069d7a77a3e6d2d3dbc504ec25157daf7fdf921c3acb3b4289ce1bbfb5c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.3.tar.bz2=fe086aad84ac7fe8009ea2bc16f0ccb7c60a5fc9034690af38fce1a05582a6226dc3d7b80d08d1952d03a9abcebd7b361f5fa2d506d71e1f5aae9b5f31ac22af https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.4.tar.bz2=ce06ce97ea1554972b00781332f126e767a3ab98f5023d3dc83195bb36b954b1b497961c74bf31340827d9a5de2e0bb34240accbadad550b2e692d26cb097d4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.5.tar.bz2=6fa248065a48cebd1e9950ae07f3e653b3e29e369fdd914908be0b215257fa2766b0182e392fb869af51cd498e258435f6d9b45a03452356dc08da0e96877ae4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.6.tar.bz2=ce912342033f395ba6298051b081c89832f656d61ecf2064e9568692552a938599c816d2cd1fd1f9bee721611f890b8329985c69f4d5b2bdbfa6635b48afe3b1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.0.tar.bz2=cbfc7a1cddff0385187a7bf2eb9dc71a8d14912cbbe4e9529b79414e49e681302ac9009b7c8e6fcf92a9f19a0ca5053a6ed25edfdb510e3e4e247474d471c58c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.1.tar.bz2=29b99b3e04325ceca89b64c7846aeadb412215270f6f7c390fb1e275ebe19b2faef811778c0615b2d4720ddd942a2cc209c72e623f559e6c04e78849cc1c1b1e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.2.tar.bz2=f67ab3ac13ae90622fb3664a869b0c584b97df0500384a28bda9c5c36cf2a27ac1f66afafea08bb29bbfbfc1e0ddc444427993ff4163987f5510c4158a90a96d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-3.0.0-preview1.tar.bz2=aaeeafee545dd1ba1c4df5b7e46e82f7e89e0dcf4fb10677b7e177e66f86e6825e85fa5ae3e74062363883768b3485495a3378f97693d45f675a6e547e989cba https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.0.tar.bz2=3e78b2a73167c3680aebb1ed015c583d4f6c58804d3b272253bee2cef37fd2d1cb3852fd2b408f4af1abca17725d923a1f28d40d2a33896e5cc21c4c6711d7ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.1.tar.bz2=14e7962e180b9ae16607347ba5360b9ec086eb8055b88d2f60b1c9284fafd93fea905aceb441f07d594a34b53647520f9dec38e4e9f6ad3e5a6850750d981a27 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.2.tar.bz2=5b7d88d4405cd45a6a720295cb0b7d3152dd757aac996c8d1a576c6ab2a45cf9ed0b0ac006423791cb038a14153048e96308ecc8ba1e761d4b7671dd6f880d15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.3.tar.bz2=320734a124e26de068457237b5f973278286d7e529e92405c1b856b6e57441b5e76c59d0f519fe43fbdd2c8c48c9dd37dc5094831c0e6a81d804e88888ab6237 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.4.tar.bz2=ca34ccbfc24adc4b2c6c5c0e3b27bd2754c2c5be61e9dfa7b919b4902174e351f45128d887c179c37ccd5163a7f51c213fae96be4d0c356e2d7f96acdd4f164b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.5.tar.bz2=fabb151c29ad7ef7432efd4d51ea1e20180006601617ba896f8b1379555f4088d398e96f7bddd7c9815b266acf5ea94527ef4acfad2446950da6fabc3770f788 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.6.tar.bz2=2728c38987d41169b7110fce2b507b5d3e971d5b043b60c9a3b8d6d385ec2a40d24e464f6cf081844282d6b9fadd4abce670e79f02e4606bdd5aeacd1b57f773 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.7.tar.bz2=f98f4dacd9d8c6c9515ddc2597da8b868c66897577cc5a76819db742f3649881ef5a7f85a880f1e359772b1ab08750dda6fa74ee826938e06b93a9848699b929 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.8.tar.bz2=47fb4b41e60b1e536b3a54e18e9ee92aefee7eef92d49716b46884b2a3d73a02e88e4815df64baedebff80e9e17ac7b0af6e65b406a2c53a4f90421dbc948415 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.9.tar.bz2=c81ad5e16aa18beb7c34eeee68ffa96da243f99ff69cf00932ad5ebe427c1f80e3f7fee31b15ec0d96c1be5c2007dfa6e96c38114f61e958c6b7ecc40270db4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.10.tar.bz2=856210b3eb2bf338c5da2668e830b95d48feb82c1c4407371b18c772df12878703a9eec948a2778acd098bcc8eb402ba6d57b2b935766847f3e652c3dadaf6f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.0.tar.bz2=6ea5e6338319e5d6861d420b10f93b5e6634a9925380c61acfbb258b6609ada76bf2a6b474b53a30b0a81f0dd81cfdd1e610b68698df73f69091f479ad39bc63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.1.tar.bz2=8e8e4ef137b9394ee34b760dbeaf4d23953bec083e5775a423ef6c16b75faf8bdfe99df975ab6b6d762509536b017f3510a9a5e9ab63060208edd4d2d96371eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.2.tar.bz2=756c9ecbe3c9801a0a364143478903318c524f7aba026239a1fb42d7390f74110805543a9ac2a9f8bbbeaee48bc867fd15d400d8bd46576bf4fd417d6136a3b2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.3.tar.bz2=594ff95e33d0f7af7be448a781ac68f895f8344ebb1c9a03898813baa5963024aa84b11baa405fa584070e4195fbfda9b908f1fe171f75f19e5e1d7879bdaaf9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.4.tar.bz2=a9703c6edcfa2ddb87bb73c070d963fc4d59599919865be9b1d93989906698c6f3b9c4fd7f2d597e5d710276555de0b5865676b92aa3aba1f1f41be4052bedc1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.5.tar.bz2=dbd91cccc0a00a1ca7e901d56f9840e62e4f139ff4dbae530169f41897d06523c7e8977138ffc6212e1b60589f3091a4e2f6b6714c0fad22fa65e442b248f61e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.6.tar.bz2=ec967415b5bec95154cd9ff8338a602a6d005fa647afb1e1cff54a0fd4e9c0697b9e952c2dfd8e4b30068a697f5391b9cd165d5d33f3b146fe35f2a8fdf9823c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.7.tar.bz2=b8786ef31db7d950b1309646f81e6a99d56b76223bb8d2d20ae045f09917332a869b14cee1bf235675c7d8eebc6942b5ebd6cf0cbd290ea75d9f9be1475352f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.8.tar.bz2=4d949a715a04cd45f6817b1b26093f7bbf03ca630aaa015972e7d0ca72bae094add18664e1489ebf8ade27c160d2fbcebdb105701d719461af13c4d5fcf2cd22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.9.tar.bz2=ec6cd8bd90ee99aa6470d9d524d89531f96f992efab8a9d6a709a3959ef4c314828276e67b84ed97d415cb3e0c837458d13732dc940c93d4d069d9b881d7f92c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.10.tar.bz2=1f60cae30581e3467c7ec07391de5045f238b61a49661ef0cf76d72ef78d220b7ae70b86b1e72625cf37085b6507fb1dfccfbe5554195f0c6eefaa996e199c16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.0.tar.bz2=343f5dd6703b6b58d61fabefc8a50ce5d02d98c32c8b4e52b8deacc9824369a9f0dc8faff69e90ca7585a194a4d742791765b16c3f5e2417b0f54e0e6f6220b4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.1.tar.bz2=aaf7f9e30b3998b8586764f61d09e434c32aba7479aa79fb6afa71ab11c067384ef3a4b9215a1a3639da807f4f642b9efc62b37b55e989b7ed7d75cedc7cab40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.2.tar.bz2=b834ef95d52abc1f0c224193391bded9b4d2089c694378dd5aa45f8b2b1ea41b1c300445f766841cbb8cdb1114491ffe0095f518e1600746f5f583dd0cff9c1f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.3.tar.bz2=9df5ba9423e0a8af9d825e59f8c69889c70af0f6d67f96708a02d7d61260c83474e2f7b2f240af399911bdfc56850255b4f34554f7013d0417a13bb782403aa4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.4.tar.bz2=1d4b55a6a34249e82880fbacfc1d97a093600005deb982c6b42ccb14bbd7bf1db14e0f6d73bc25f1addd72378850f7edcd63738f2b3cbab569e34e89d563188d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.5.tar.bz2=29a76dbb28d5b63ee0ce64cc2e7d022118350a550d3693b8e38d559bbc4f42fdb6b63af4bcc4ebfffc5c0fbabbf2e18db7228e655de3bb416e344a61737870c7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.6.tar.bz2=122322fb462f8fdcb065e6f9d9968027c320ba9be9ad6fba9011760a7296cec1892a0780d7436903cb7763f5d18cce11860c5c7fce82890eaa139a94d5e89428 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.7.tar.bz2=0c17f52a74b73041c588ed76f73862d179d7b9abf9de61279dc74ba7b7f170179e0db5672a403dcc209b6dec9a865a88a382f5df01f5e6ba4cfe0f66232b4a15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.8.tar.bz2=1a30bbda34fee311762a2f05ac7fbcfb4f373f8840f86b9762b0c07f1cd397e3eb3be83210221384333b625a243c7161ef4f368602a613760391265309e4f304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.0.tar.bz2=edf31b2dd02208c96be25c2f4f7d35e2b122e5d327133545e16038836b848b90f81079be4df47c5493bf4ead1d464fa72a8d0d405bb2509ab0db6335c58ff793 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.1.tar.bz2=91cc7a9cf493c7361f3d507cdbb8e258b7dd710100cca8053b77569c07c04fbc2f72fdceb9fd9a3a5d01f4c423a206da97730c356d017157bc2454041e1f1fd4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.2.tar.bz2=8ea603a27560ddde5fc639b86381a303f886ce80384d8edd0e7bc806f10649760d75a76dd5f2ee445371254e727544ec12df49d7fc8876890b73237f4eecea1c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.3.tar.bz2=c42f24668695be5c291836ae6f39b4366e0357c9bb63cf8be2ad36cefe0c6d19cb921a43159d49d4d062dccc15902ec1698a1a6842d13ccaec45c6cb628da4b7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.4.tar.bz2=3ac89131407faefde80bf2e1bed4baa51c371ab4bffc18c8dcf2624f4d1068c9f933eb66486a2bc7c6c67f674c5bd06747bddfe1f1f9dcd939458a08e1bc6108 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.5.tar.bz2=8ca9a9387b8cb434828fa36e5886bc8a28d70fa46d3e20df60389880477fa2ee54fe63c0c14611a2cb0168ef1149d205640c6003e6a507400ad5fc34fa641bd2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.6.tar.bz2=52795cd7d112ff437adf603f58130ce539209628d2224a685d060d67a07325717981fc6f91736d4abfe014ccc8057bb40a097fcf85f5046aabde0019d08bef16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.7.tar.bz2=bc179a31c746ac6e632ce08f57a8f403d4e463ad72285c0ce008d7fa39b88a22be3a43014c9eb019f6a39d022f9448ef151a8d03e89a4d2e767c4f77684e3750 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.8.tar.bz2=d693e3a800c2200c74b24c207425f41cef206a0b3f20625d18b1590e9891f409d6643ee0e7ab8fdb6e1e85de6fea52c6a307bf8f65324ee0f9ac33306ed1e876 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.9.tar.bz2=4b6cab99f6b7be7705efa5eb6f321b5eeb1d1c6e96d4113bf96b57378aaa4950b39f40ad555f630f17d216d235972f028617ea43c28b1970772ffd16be3d9a67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.10.tar.bz2=40bd90d231fcedbe34ec9963eb59645fdd1036b03056b9b8fa3b56900deb86d94e2a256f90e6aed297288d6797857a3ef9fc27bc6ed05c017b5c8e8ddc465df1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.0.tar.bz2=c1df39ae526da7ebf87510017d7694e6f78c59871baac4e9c5f2d13c22cbecc30925e2783ad93f741110b7c3802e9f25a6c3ff85160b33a4080b0f1fb02f7740 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.1.tar.bz2=930f6f7f654fa14076c84365fbc771d5b09679588c4c478d8f6944770c53fdd37213bdad159fd231efbc079b85ab7ab648b0a97fafd666c38d0e280046c6e2ef https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.2.tar.bz2=cb62ca82d57dfc0e21e532d4b523f49c559c4ed5f3d73adbd9d650bbf23c694d382f3cc25eed6a8630f23e4780db127b4b8b6ecf6fc24b0f6febc820dbc6af3e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.3.tar.bz2=708209a89a18cd99c02392307d2bc63e46bd38c72c8ab0e982b28285f8e006d4ed77e04da3900c880eff01c3350033cd00ffc3be1d3a12c4ee5b263282f0dd05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.4.tar.bz2=c94f5b3129ff41da1b07da1cf742592e9822febf6bcfd0e9eb7145c00b732fc66625056bddc72fe9b631742c70d0e731cc6a9a16a089c7b559ae963b072578eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.5.tar.bz2=b4d20f79eebc5496768fc6adb0735c6a23cffbb39ceaf9c2da42851ff7842dd2318c07877d89564176d206e22b8824d2a3c637b5ef02c5caed0b2b5276581032 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.6.tar.bz2=a09ab93c3d6936d30065236ff2abbd0295988a9359f5a76425cecab47af0ca5b6829530d1708e9ddc9e78d1fbb7c0359b9c7e90227870537d099ccc89c73844b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.7.tar.bz2=f6086c879f8737eaf6eef4461d23270e9e43811186a22f35ed69a8303eb933136e7a690bce2d9e18bcff730725292075e09db0f2384d0e26018b7f2a0df70b32 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.8.tar.bz2=62c631026560ee310a849483f1b48690075477942ce86e0564e92f5ca7834553c435a35a1d6d8dd957c3a7be24c63c32104518995eb3a96e61066a04887bb0d6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.9.tar.bz2=0f10741772d2498167c1eb2aa263292f99748518a4ec03dc19440eb5befa075fa69e68b08a09af6eb2e02e462ff20ab10e4121cfeea7bdc938c04762d81fbc4a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.0.tar.bz2=908132a47bd996f8c76bed54078e71abb154294f97dcba779b4cf0d3b82e31c4635dff89e97d5f6b4f1d797d854c6d020afdf9dc77b10c0e522755fa194a17c3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.1.tar.bz2=39c867ac0af48410c0bc6b01f1ecac00616a59cc07f3f5a3e7cfe8f786b70c7cacab65550dfee777d11b8b7a3ac173bb22c602df370eef6a04b40f8e539025ae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.2.tar.bz2=2f04566f6d778121281bc6ba23ec57ad408049e649b351585bc9a3184848c71873910e159f7fd3909c7372378152f5ed264070aefd45933b97980e80f6df4deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.3.tar.bz2=940375b11c525e3f0bf00e19013eeb886bf85b8d8b66d86d53740170b0ae16b14faa491dbcbec29238f875f84204cb0d52ade17c180d71e129cef5254f338f0c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.4.tar.bz2=1c9d41d7ab7bd69d7e3baa3c4149b1938cc147beb2a63923dadf2fd959732c8cc824e2add0946bcd62f44b0e1d509b80b4796a5929841cda8d28f3a8207b17df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar.bz2=f47443a53e3008cb7b7b7afcbbf1adf44887769e42b3defafceacc1e50e349c9000b98010f853c6b7cafdb54b85b640732a56a8e11ad8e58fedb5fa4724f68d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=fc1c9a08c48ad91edb4afcac5244f386d63940fa906dadaabe02a1eb025375443c8174a6ad1acd50f4583d6c57a88feae86e697ec15c8a25bb49f280b1357783 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=aa611f7c350374d2c5c8652a694022e038cb5a65fde795c43e927067f155d0ccb368b281b1575e679b84cd7ba6042216dc28149e138256faf62dd3060ec0a6a7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=ab04071b90ddb81b68f064fbc9f2bf726729220e4359113556d9b71f3549483f122b796b3b1e4dc8404e6f44a4bdd02e9db2c8066974acf190448c4d5a97dc6b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c769fd3814bf31728b83f2bcdaf0928e6423150609f3db903631f9db68ce0a0f9c87bfce5f93983cd962662148a66cc55f5f42bffc1a1b5a237e6938726629ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=c231f8ecd46760db49796519645bcb5cc9fa1c0582abbc419a2ca81805c81fe8912dc32dcc2c5192ca9ef0d502da8f61ce1ce7ecc87b29edad3a144a8a0c200e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=b41557c83084c8e5bb263aa944499932ce7d84457e4e307f1cffecf62aa44f8543a06299e38fee17ba64f8952048612f9289e24c35acfe2ba02b913c15dc1405 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=001d10af5833a03b42d9a254bde844731d3a796d98ce2efea90fc68e4638c7cc3be31a34fa163d4c5ac18c60e685e5cf2ccf88fac46ae6bc587a48ea35cfb09b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=0a8681afc19372ccd9409bb017967f86c2e6642e083ca47ec904cccc34242040f710392d916a69a327ae6a0bb287d97bc05bbe116a1d93478ae282b32e5fcfab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=e505ff2f00334870d07f4ec9348648b7f3b91dbbad1fddb2f60f7a38572a66a7bf081fc7b386f800d86113aac1ce3cb739c86cf0d6da2bab916a4432ad557c54 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=aee6000ac886cdd4e4044a7b43ab20d54d1e99f6b893af69d0d7e7a202f4ae861f939898580c60996b0bb7c6481eecad69a20acc83c75cc594dfbfde3a22c476 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=86f4e6948eaf2586e018570f09232b94f907766590eb75f00992531ef74676070ac5a2308e121ecc1c23388ece4dbe1ee8a4b2a7ab99ca00a28d6583d6df3d0a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=1bf867b0af84eae4e7996047727fbc7ef459afd3b2ca5885f658a74d62910d00eecddbf0c11b23265c625c26b420421ca5add40079438edca8eacd8b5c0149a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=92a3b217079f9d960cc4fbb5908f7fc7ef71cc3ec8e5e404341e2b8875534c0542167d03b61577776e0b0f049f9ba2e3235842be381b4d484845768adaa6e3f7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=608f0f9eafd72226fd1b39f6c92d0f1c6d3aa7ede096cc390fc4f8bee4326b0937767bc6de84fff536dea48cbf9bdb8ef5598670235e013ccd630b06c5b8fb05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=40cccacc66cc4b7891b01c35375ca913efe008157ae540308b649e14f5753f34f1827861c6e16b500c49ac95e1aa22e1c01444faca5dce71f981452a9e0f1b67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=5a33d600e55f7b8755725d7e2f2102cd76720d524d7b378d85fc21ea8d853166dd97e2e615ab18f9e44122e3404b439dd123f8e23d6ade5328982fe72db2af0b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=37e3a4011b3603807c6e0fd48818b256caf272b3720ee654f38c0ae202cffa21600f9cc751b5335b57905ce67db185b37f548ac9c84d6acfc567f0ef4866635f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=6648c1b6bd962e30e89eacdb6130b1788ccdf6ed05ea13eac32eefc222438a298de8121937262851cf5c4cdcc1a804d5d8bf19667819db6599bfcf79e57b0e17 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=ac690170a6801fd741efb88e67961c0c3d717029b3bd9c6e243074799641c940416fc9cde7b4ba2c56e79551d6cb7fe5f7977649404da0d20d1819d7d3ce0bd3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=e6edfed2dd9d6649c47b1dc1b102f933f76a148e6dd8441add2316073dd255cac851e972366e4821fcd665e55b375fac757d189b7552baaa0b49e82349c71b77 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=69c4895076690037199f2a9b98e622f6b5e3c23ea02de79bcade6193da2b1b88ed0c28006059f4ecc502298442275e7e7324232de04a2f0ce430665057410a05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=175777563303c6d6a04393938ffa7e36e0bc6db33f7d2cf1d42ec852b41ea26dd7d50569eee4cb00497e6bceae95592365ea6718a35451e5c929d8a085aa9649 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=b668f0cd853615fec38253b264115ef0fedd21a7879a663ba844f4c3fa8b87e5ccd8adffbaa12ffa3aa16b108a2a439cecf827e7d8e19ec8041d46e758abc391 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=2039b1fcf55cca35ed3c8446eea45819368016ec1a05a5fd4c6a761b54f5cd56cb3301d5d2674af1ff75bda41eba41b7156e71ac48b88ca7a6474f0e944efd89 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=b4bb324a53c316da488c5f60803933eade9ad5c59a6d58e76787d2dd89dc2d2f18016d2ac4ab0853a40976b4beab70864a9c2d23de194bcd63ad089b2159fa7a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=3a9b5868d707d6a4580a44ab7504cb46a2713f78918142b185f0d62c5b7e0dfebc1ff551b2a52e9726befb70abbde867d2802345a01fd3e4568b9f58ac83c168 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=39007e736b28ca599ea244bf4e54b52e86597c950c0ebd8f1696a02c8eef575a734d089b52c7013d00c02aeb261dd7e2facb45f24b34c75c4bbf14cb8bdc3ae2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=0fc4e39f7382c29fa2119119a78040c611fc8298bd4765025599d3018775cb2bb28f51d38efd4306e9f04eeea20e7c2365f2fbba1233e0494a8258c3c184278a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=5dfbcefa70f5b81887d34e776713bb9c6f7bcecbda8f1c9561daa3e235c725417ab0a930f594303723f226d36306e6a73f228abfa3533280659ab387708182da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=00936db899bca33dfa8d0e6ffd4bd6b0453ad5823a450e50e3a055ea696dcf94b317357732e26208a6f34224c33a8b4a6130e5613262d62381179a52cc8f3a1d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=15b816d190fd58382a2f6f6e087f358b54003f186462abf59dbef545af9044a2b9c65576119185adc6bfd9ebcdb49f03a2a268eed4fb0f0d37aa35fa18adc1fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=3a481c35668be459688a66e4e480e11b4e58c13aecc3751da9de8a3e3282bb4a152128528a804742aa0b4380eb537b666a2b29fd79be0d6968c4ff1fa428eb7b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=c604871b39f396c539c52dd4849d1d42f37530003601f60162860efc777c85e7e1a1ee88a77cfc9ca8ca20f0448a5dde4f39cbdae67470d8d2d283d6fbbf0239 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=12042b5c30179da275fcb6155142ff2787e86cf577caef44b7c4d8175ac671cd461814e9a19f4c9b1e78bbdf041fdd06bd463aa972e194caa91e80778a56bce0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=2bf1c13616b2e255b8c269bcb2f979a45009c079ffdcb10a13e238e5d13b0978e8a974bdc1e7bf8519e15264ed5f577cc8f85a5861b3ea3a4589eb78138a3f2f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=2e7876c8c8a1f4e3cd1913023c564d9e74972ce427e85765bbe9ddf237285d7b96017c1ed17868eb912509881e05aaf96e4a6b353a69989e61c733b346511715 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=06de4f6f2761bc58d94659f826c7c86be50192b7dfdb5c8b6710b384a50299ad161309e2a8c333fa5249d0e7112f74dd0c0b0faa2950a6e74bdba68833f68702 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=597374487d196abdfb389c79d7d09b81026fe3e8043f8811497646eaf47bfa432cfb96e2af9be1a35ad2d05f2f5c800afa3f9e5adb0ea2b2d31812d219232a00 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=ba56050ce3fdbb9117c6c9e767f818ce3d467030713b7693ebb039f6888bd5d7e5f7b1986ed117414037e56e550707c3625a88bfd5d00d7319d0c7ad642fc811 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=395facf2f7a15eecc94e554a60d87c269ba70c5063b24b7bc504f579c0d12a7d858eb0b98c502016ff8bf02aaf11ef765e2291b542759fc96affa186206ffe4f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=d1d527b2e95e3a16f521214c5352bcb379b946e8be1a943da872aff0ab4b8edd93a507d693abd7a8ef1cd5ea1ee6e6bf1f838683f5a447a6cb7992de61f744ad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=e47a50392c4f3ee13a565103e0c5f9474ba0a8f5ff60fc9fe7d290b7f5f9a9ddec962fcbb103a8d3b9c7765a28ba59237975f90aa3637a06a128802ede28b3da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=77fdbe62d1694732a7307c29b4f45d0dcab7e8a729f04f45b216345336c5820715bf3f8f7cab52175c4ca1a431d867c7feef7d802dec61c2cffa4abfa8746e90 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=24da0cfc93ac536c505dfaf2dbddc7b312a3cc5c72a9f47e28b3bba760a53b584422b73da8546ca01cc44d3906a31eed7f27a3dfc0bb574f01f9c08f7c589d20 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=aee8267c4855e95a55b7ab858ca6359d635049743b8e38d34ad1430522a0cd746cd572e77884f7e10af14a731ccd8ebb9cad6ea035b0fca4ae534913a38f43f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=ba3e66bd3dde28e7193b90c44194cf7732d294e592321c482deb3b31ddd9655630f5b04aa89a43eb9d1bc222da10884e9da332bc9da78e9e1b655300db52a444 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1df8a2ad9256985b4ffb3da5b545af4160ccebdd8265711d1b642cd2285a004a42cc2ea51ce3ee78854e599f5196c66448b8e0b043846ef6e6bf992828aefb6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=cc460b3d17d460abec27d77f734e1c1e7a649769c3374f02d32a4ad00f989ff3150dab926a203b209c92475100667dd524774fc37633d71f98737ea2d8868968 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.2.6.tar.bz2=335cddbfcf26c82cf9bf9c7ec6637c1c3e30e1b10d00553f5dcc60822d40b560e412d404fa65faefbd1c9022a2d7f0e4d93c25d054681d109c7cdb5968989005 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.3.6.tar.bz2=5531048adec175ad23e3bb050ba6295352cfe17ce27203c356145008434107831186a09c00ff158f4ce9109776f381661f3047e828a177906a52143096249dbc jruby-bin-1.7.0.tar.gz=1e466a3f8d52b553c9def09827fda4b8433576b0262c40ee505602754521a00defd821d5ead5052be52baf281c6cb080fd03a8b15c628a0ee67b4e417633e5e2 jruby-bin-1.7.1.tar.gz=ef28381ca30664cf450f9d3df9927530db771d30e86ebcf535af38e1a7e26724ae2bcfe8487cd2eb349bf609a733a25528aae14beab4d13d298b5604ac7353cc jruby-bin-1.7.2.tar.gz=8155c81eea6743951db7383bd9f6b1750614927c9c0b25a6574f6d64898bb3ada2f626c6e0df6c5486561a03cc7d472fc12fe804ce66a3972d2fe02e3f407100 jruby-bin-1.7.3.tar.gz=1d19be25bf4a7dbb0edad71008704377893d3967aa4204a0d59d6883aa04462ef6798c64d0c0fdd3f5129c16ccb42e8507f3fef38ed56054bf6e689de745935a jruby-bin-1.7.4.tar.gz=d7c0ee0316c50ae5413757e956c18ca68e9d99a25cf85be978da0787c13b8978d4ff2712a3effa564cfdf07144be4a56a0cb8acc794a01f43264fe8baeb125e5 jruby-bin-1.7.5.tar.gz=a4984591a3809330b93f4ce79fd1b9c24360f89d88a03bbc76351be623893c4bfc6441375bbea452ba4f24ca8b9357e03ac938fd6c065b3e2348c0f896b22a1b jruby-bin-1.7.6.tar.gz=98600a2d46bfce14111c7eebc62716352a4b685043afdd696b8fe51c6b205eb9569fc2860423a653b842b173198c76c59767156aa48e0d23482dff3358d884f3 jruby-bin-1.7.7.tar.gz=71da2e72c65899216fa15ec568b51aa7004e2ed7dff99ca376b332d3692c83a674c688dc21ee04d177a3961a2bb3973714509d88cc14d0ba9f79c864c6258a06 jruby-bin-1.7.8.tar.gz=42d54243653ec260abdafecce1143161be63fcc38a80f71ab70fcece4bf91545a2b12ed2319f9fd6f6b41916c398a9a8e89e7f0389f59da56f2739665e74522d jruby-bin-1.7.9.tar.gz=f519f53b1d9f57cfe28982ad70b892dc6fc20fe6601d98d65a1dca9f617a0eb8fff74d0fd82ddb858fe105d05ca7c7bbf3a987677ae0363caa2981bea358c096 jruby-bin-1.7.10.tar.gz=160b701f2f500dfab64beb635e5c4dc57760dd422d0fffe8d3cf8d84ee6ea17a877ef77a0087b4888ea9db64ce7750de01a73a51530aa6666a2efdcdccdb89e0 jruby-bin-1.7.11.tar.gz=a53b0fa327b98344cb4a8aad1ba537ddacb709a0e173b1e32656de8a610cb9896e9a4554d54d0d01d2361f8ff1539a0e2ee01308f670df2004225231b704065c jruby-bin-1.7.12.tar.gz=bf2be8a37b53d38c75712a6331f96b999fa6b0e87f453fac7b9d11eeb1b66098ea0778172f1a6a84345e1881f05d63012e28d4068a0bd31122bf2473bbdae5bf jruby-bin-1.7.14.tar.gz=f14e658da7f2abd469edcfd657dbc2505d6a2c04ba1e5f65f2164256f54625da154b338bd3d286ea6a18da61d04d90a61ad6b012bd9461182753483efcd0f603 jruby-bin-1.7.16.tar.gz=47ca714c3211c95c84e9c80ae4fbc894bfd7ee03e1bcc494cb48d839f8538db4aaca7029a4913b8d323e7227450e4e41bb943dc670f43df8a654eb127012033f jruby-bin-1.7.16.1.tar.gz=9bacdf6e212d08e46ac2c49183c8611873f6ecebfcb0e928b5110bdebfeb8751ac087cf8aba09afb9a8ccb58e59f3c3e06a241c1db445835d7a875b0c3deb4b5 jruby-bin-1.7.16.2.tar.gz=349283bb5344a62f282021ce39648a0c8d0b41ecf8f800ab5099b5ce161ff771e688f205a918324cef6ba0ded6b3694b8dd83f46f56be584202b8fee496b37e7 jruby-bin-1.7.17.tar.gz=a3b171df08e789f91c260c5a57ec842a5d62cc8d6b462b772905ec5284e394ed7b78f5b327ca1ff20f5deba8371a86cb03fade75b5f34f233df47bc3f08d469e jruby-bin-1.7.18.tar.gz=b259da2967e246a387687117eb13e8986b57de6ca8e570d6f8f8f07b8097db6e01cea8b0ec3a860b091fde14de535260dc6dbfc638f9e9b49d348f726e969642 jruby-bin-1.7.19.tar.gz=da91efcd51cfc833666f8b7cf949d3b5c41cd8da99ae1559c88a7358fb48df1245c66702c7cf23e7ca012cbefae98787c200352976d4e8aa3e9120057a89dc8c jruby-bin-1.7.20.tar.gz=77131afe46e72c406ab4250e43cd1f98e59a8351c494044ac89f97a7c9a81492f8a8194541055fcf1fc59569e99a577fd6a36a9f6a3952a99f399d4970e80e69 jruby-bin-1.7.21.tar.gz=111883df12a60d06e9924d33057ba72094fcffd44f7e3954d6c6d2190f8e6442804e739cc525a9e75159251a8dc1cc487570792b1b4f5773f4d0082f0eb360d0 jruby-bin-1.7.22.tar.gz=6ed6cbe7b81a8aee60906fdf965bc217b3db794698e2cb37559f36ac119a0cd2a1ae1a7a766535ab491d647e8b4e6b2f63e62011714b757f8691455831ef365c jruby-bin-1.7.23.tar.gz=6f4b97c4e08274f96195deb176e3126e8d047c981cb655cded9665624033fb905d60d5586704a3f91b2ca06d7e78918d9d31131c93e4c90c75a38182e309ac9c jruby-bin-1.7.25.tar.gz=a89ab8d539bff346ad56d345b6a205f74890b9aafe82a2c82e7c19cfc30b77fefde1003e8bd7ed15f141151bc0fd21946203219691383a64f2234fa586e1905b jruby-bin-1.7.26.tar.gz=feee03a50900e459d9ed7d2096056bef126c4551c02c335c4132e2307411f3fc4fd435e8fe44411184773c80f0630a7812b3d798b7e9be2818e1b5a712bc6995 jruby-bin-1.7.27.tar.gz=656f4313fbfe5db8d2d4fc2087a012c91efef848394c48aeaa0041e9a19b87ab74686702955413d2c51d6b4b11c758ba0555b30fdc42e86d66094411324139b6 jruby-bin-9.0.0.0.pre1.tar.gz=988c6a058336ab9ac8b27c7501ceccf3940837f9b9d3ed32a466b891bda1bc13f76199f5bc3baaa1240dd0dfdaee40775f721294d667f3b8b5bb9ac8206e2e83 jruby-bin-9.0.0.0.pre2.tar.gz=f207f9477a12d7ffacd92b1bb5154ba8101dda8f7b2eeadd4fa83eadec9a75727bc1831733d27fde63ba63322ec491201dd23cc6e2c2b5a4b8381a8fbe49e8f2 jruby-bin-9.0.0.0.tar.gz=33308a983533c129cffbf521bdb8c1996a10a6159a4a436248e645bda682c5a5395ac1aa767e971ae679c935f3b61573cb22d5b8c64af026752db3411a6356e1 jruby-bin-9.0.1.0.tar.gz=277dca63f3faad01c98a793f06bb4d558a970a10a66a38482e8372b25f4cf4fea85f1d5624fce7fb5b4310c42ea8aa360f24f6b9b6ef4bb0ebcb036736009ccd jruby-bin-9.0.3.0.tar.gz=d82f83e20ef17a0675843e306ec5e90993e5952cf5a53957a91e369d2c90d92306aa515b1e135c04b45844a81a0f4ae34289b966821ae5f46ea51fe012627352 jruby-bin-9.0.4.0.tar.gz=b9cd4f4a00da8152740b468914046633d5341b10aa26b0ac56835d5896531030c8afbc4c965b30c36923555ed5b145de8ada69e05ca38b01d43621914a331335 jruby-bin-9.0.5.0.tar.gz=7c61cf010fbae571cd6ba334aefcfd917f6de8224d014026297b840d0b890523e94b2fea20f154c82c25c4f9d5992b9481fb569646a7023e5ddb42db1baf5f34 jruby-bin-9.1.0.0.tar.gz=1ffdd352823436086ebfd37c03401a1f3a9cb8a8c5f75476af1f704c4764396a20f49ddb7fb7f0911e1608f7c88a332944330b8849d13e6badb170efb736dbe2 jruby-bin-9.1.1.0.tar.gz=475acda79ab8c54467ae70094aa86842959200127c1e92709f0a731014c469d3e52e4c48770b64ab1bf31e1b710ac4570b421077c85c08071c1356bee55a2900 jruby-bin-9.1.2.0.tar.gz=cc6b1e1a2907c128dd04edf9da11933a54bbed5e861ab6f0208505bca5aa2aa9d9acdd04bfde65824346fbb435584081fc8ec2e2e9a3aeea1bef8047915e0c61 jruby-bin-9.1.3.0.tar.gz=88339f4cc05f7f0ded21f100755156ade33f19873f49c0c64110916da8c0b059df541a77bb36e54fda9cebf042591450d2d6312ffaa879df926870806985e774 jruby-bin-9.1.4.0.tar.gz=ebe0e9d67cb91721d589461e93e26338e3e3a1f0f98de53f25906684140b49d989ca6d3704cd3f6cbf650f30aed9a3989f117bb4732c83ed870364ce4c31fa36 jruby-bin-9.1.5.0.tar.gz=f2a11e6fc88d37fc1b640ea8c9feda4607bea6da5e6520f61ff85e8d6a51543612ae267b45c033214f8fd0e2283153da02001cbc9fd90be4761b7544e1413b9f jruby-bin-9.1.6.0.tar.gz=ca59d199a0fe791efc57f05801ae26c6cf6402bdc0f1a795250b1a2dda39b233ed24c8cb005016e79727f4bcdceb1bad726a60c16935e76fc87e5d1a078fb5bd jruby-bin-9.1.7.0.tar.gz=f2569d4858a33280e90d984aac53662c25ef057ef9903bace6a2214aa2e6a537c9bc8fc76b08f846b3093cc4a12c70c98d725576a4ac771e640b95cfe3697c7d jruby-bin-9.1.8.0.tar.gz=dba3b41b65ff27dbaa203a5cfc78ac7cb9d952c52b452bc774f593383e4ef9389c0bc37549b798f48b63497ce7007b1ac2d2fa252d9a7c3e52146b4ae192ee49 jruby-bin-9.1.9.0.tar.gz=f8f6419be34aeb7b7577e946a62a094f5921d7319b51876c5e07322d99249b3a9f29fea4ee5c2b8184dfccbd5da8f8262fa97f5e93874887f3355dabfccfa0df jruby-bin-9.1.10.0.tar.gz=857783bb45fc5d62148bd687b43af9ce776099dfea75ec4b5d947a46ed270568bceba2a630a3277746a3a9c1fd3111caa9a4cd13493ea8824c1ee190e6d2abf1 jruby-bin-9.1.11.0.tar.gz=718ed3f5a39cd9f9b45c4e11ba44cd32e035f8d9f26fe59230dbaecb71adfb2513ee1bb86ff72e075b02f20151f3f30e53bfa30b6c4b011a93a138d4f479fbf7 jruby-bin-9.1.12.0.tar.gz=8a9f88d517d8002be570aa95aebb0063eb62a47efee191155f9fa4f045854910f78431514f857c438167ec42f4241faf74d4a8d236ae36feae58732312e4bbed jruby-bin-9.1.13.0.tar.gz=ef88f613ada2665d4f63b2e2f15594739de8ba501406e76de417821f44847b0e258524687b0ae0cf5b737520aa4dd9bb59d80a4b89a81408cda638f28bebbead jruby-bin-9.1.14.0.tar.gz=d15ae0c60421951b830524acd21a0f2a56f480e983b148a2722cd36afed8e99a41f518eb8a679bfa2cf87f08637e81c24ea88be40c0a5390e081322f1fc6f8da jruby-bin-9.1.15.0.tar.gz=74a411f42149510180706b2c70610caeea357f6fc3d2a12ff0227586862e6a9dedf09e752596d6c486af7a310a07241f311a1dfc73ead229d7225c09d4508605 jruby-bin-9.1.16.0.tar.gz=94e88dbeb2545250ba5bef50bbe0baa6f3851e9817f67f879ffaab50048bb0d41cd7a0e87ac9ef547e37c2b82cf1d7aae6b8caa43d03c6a9931b8ce0ad4b2afe jruby-bin-9.1.17.0.tar.gz=4c06b9674e20f48d3815b4084bb38e6994670eac804fbc56d717cde7abdb74d57e0ac17b7fa0b500318de405c187c3eaa01441c22621139dfdbeef62a5467a63 jruby-bin-9.2.0.0.tar.gz=79f5e8674089d2f6b260e033e3ceb4571f54cb5cedbca74ba76b52dd7cb30085a8c6c2676e9be57a8ecd9e962fbcb3682a8de38e1cdde2dc6e05bd179556edc3 jruby-bin-9.2.1.0.tar.gz=185e67da4964c9cf1d9142446efa77605e77894444bdc96bbd10fee22637f197aea9fbb0f60d3a42540e5f383d5b06fcf095d572f432544a40c2145deec81926 jruby-bin-9.2.2.0.tar.gz=85e16e38748b6ec5f237eabc8a17eb225c484c20f7ab6728f2a0f650061bc50c8a9601c04b0128e73c410ffe84dacd2b8bb37167aae5595728aa25e88c4c9b92 jruby-bin-9.2.3.0.tar.gz=97ee210157c451567946b38d33380051f82e7e8cb5f7649fffe050542ff6cd627e2c42f4c46739d1f0995c87e7338865b18844741285bf3f72364aa3c841c54c jruby-bin-9.2.4.0.tar.gz=9fe1506e862a17e261cf726e1bb70a9f612a6d7beda919a01405899660d1f4b79ee690ddf9aeed1d2b2f3cbd698be8df4f98d3815352772cc680e9646d721761 jruby-bin-9.2.4.1.tar.gz=2c41e7884cc54819da17ea9b2b773d05d3240d53a2ecb57ba430ab61308066eeb1bfbe6627e6c261f5f27ab5df7f5972656366a04a191a81b0379f620b74512d jruby-bin-9.2.5.0.tar.gz=d548eba8de420c80062021f5b6e6b203f8b7b36e3f11409919eeab87a028a18f9346f27d2cd8b1f33419adcc83fc804a36dbc3cee169ef1d93383b8f5835ba2c jruby-bin-9.2.6.0.tar.gz=20c7897da0d2b585616ea5848998fe8770517e24e16955797db2e5bff4622c348082628d304240a71a97e9551ef7aa63271cfb728eb5fb7e7d19bb48aff20d4c jruby-bin-9.2.7.0.tar.gz=8e71e27fdb149cb7470fb736e7ce858719d13ce6ff8a1e9ab1c1dc71fcc068fb601946bb28ed2feee3670b5e6ebfa8a655a6618d1badfc3763897912c41b1c82 jruby-bin-9.2.8.0.tar.gz=7f71fb5bc8c6c31b31b4c0430ae091871b21aa345777662f264c728c60212365dadb63a7a4b2fff31adbbf8a2e7cfa678d47486e28840f57b86cd45fe9354013 jruby-bin-9.2.9.0.tar.gz=7df33150858ddff586b3bd86120d4bdd80546c7f8e62245f61facbaa5527400a1aebbb33e4a1a8af52066487e3d29760eb96c7ecb9875eb9bc954ccbcb37a4d2 jruby-bin-9.2.10.0.tar.gz=f4ca024602ddab37154f5547132accb26e7c0ac2e913ebe1b5c7806727eb148249e76031ed4623ab53814beb8fb3f472e386f44d57adb5d2b3b00fb2773c8a63 jruby-bin-9.2.11.0.tar.gz=f736a9e139694c84d0a5ea42f36b972adc82c9be13e0b80bd61045c026e4fe31ccdd4be3dd3e94781c846f356e026465e41716fd2744ded2ab0ca39cd33bb46b jruby-bin-9.2.11.1.tar.gz=2f758fabf5910ea01e9c04c7600d9c666f2df3db8622f3eeb3534578075ce65013c42fe9ea6f95d4499945f795e6d566eed2b1545e149af823eb1d29167a1223 jruby-bin-9.2.12.0.tar.gz=1dbc5bb3814a6590f5e8ecf4889152684b5625fe81794a2c4064d598614a85129256002dcd239e294f209b98e3abaf9bfe70467fff48ef66b1531162dc6c3be6 jruby-bin-9.2.13.0.tar.gz=2cba016ad6a376252083122d51335610209d860c41de1902f5cd49ffc2f6b49c350b68df8fc4113c221255af4db7ec07980267b9888369811faf66db369e757c jruby-bin-9.2.14.0.tar.gz=ee3d17e875dd197f92744c7cba62320bfd3f166bbb2ca117f2910780a7c571779c0940e024351e9d4685ee9781dd207e773ace57a4a8a7011869c8b6209513c5 jruby-bin-9.2.15.0.tar.gz=678abfa7654b53b049e4103ae3647775d970c5a7192539378957c1731a3037c852e03f00a496c022c1c438d159a93be6e6f04d7563c811aeb7d261ced643d9e5 jruby-bin-9.2.16.0.tar.gz=f77e314d578a980071bddc25c65659d62e0644927ebc4e7d7d4523935b6c893e611d47ae7478a26ce7acff38b1525eac11b4a329188cdf76aeb07fab667d99d4 jruby-bin-9.2.17.0.tar.gz=e90ac1890a54a892b13adbbeab3cc5242889ff2a4b6cae535c0a3172072bda6ab01b960705ba608d6d7ebe9de5984d8384dbbb6399ab3b2e53a9e347e7849e1b jruby-bin-9.2.18.0.tar.gz=c5816ee0f7b0f559dac70ffc5277f85ae9c41ad176e43d277f820c2727387baba93998b915cadf9708fa78b5cdf3911a9c39c2ebb61a77a38dcff359f7d88a73 jruby-bin-9.2.19.0.tar.gz=3740674035e27cf7961b3570ad65536c30faab1c9a71a42a696b173379e79647411d57e0d1d06b5f9c9a970eb02a595a559191af08a083773dc4601dcfd07491 jruby-bin-9.2.20.0.tar.gz=1961f52f41e7eb9f50b0f382c8166ad988a6b3c0311c342658edb34486b073ed45c1ca5731aa319196db02cec208a4dfc86aa6b436959b80243bfa4f62629735 jruby-bin-9.2.20.1.tar.gz=598e28cbad682fbb30a9a9a9f708e6e1f4b7903300de2477e88a646c42ae594df5b768ff5379ed447f1a7168e93dbe35cc2d5db7087cb2228233a05bc4687908 jruby-bin-9.2.21.0.tar.gz=8f6cfc43ce3ebbd69781da71c5a70746ada090162bf6cb709dca41a6d968e6072ae62f657cb0bd471c648ff294044bfec3079828bdc410bd64758f76a93c3214 jruby-bin-9.3.0.0.tar.gz=06331ce32ee88aaad5e5bc0668d164ec3263f8ef3ed34bb32981b76ca33f8c817e3632550775706481094159f4feb43916ad1f9ec0f0775ad756b16cb7bd9417 jruby-bin-9.3.1.0.tar.gz=bfcbe6dc5ba736fc944af15eb387b545f6c5b987a7db88045913a02a1d30726c5d1255c4dd609aa7c2d2823ddf9d8360223b0575c93302aeef4c54eb37af9abe jruby-bin-9.3.2.0.tar.gz=b1777bfdf1964d7e527bb3dfc47b4b9e8c589cdb301c38ee8ee988bd0c392ca978ee3c1c24e4b5a65bdecff67d1bd96e2d8645e58ff7e891e3622097ea29e925 jruby-bin-9.3.3.0.tar.gz=648e70de0bda710e2dc70fd03c3dc6b798dd4c7b92584c54306c426f59ebe1168a595c4cf94328f6b44674f5507bee354efdb1cd73060b73b0171a3605051c9c jruby-bin-9.3.4.0.tar.gz=6b09decf412a76578179cefaabf01cc8740f70ab5324954e6aa43b1d8b81c37db7a99b1f94d6ced2b459f1c44c3086892b9a2c06b3ea838baf75a8fd5e0447c8 jruby-bin-9.3.6.0.tar.gz=f730522eff27462192808773cbd071cdaefae11f20bc808a8f22515a33960a730f3c87ec727ddfd9dc9b6b35acffeb50c31d75a4794a3f8daa75e1963ebd246b jruby-bin-9.3.7.0.tar.gz=265051c68d3b9dcce708b75f8267303ae84008859c88d7fe4f282395366c3f52fcf1bb161210555c0fd0a2427ff5a728ea9e337feea3d9b69559cadb2f300aed jruby-bin-9.3.8.0.tar.gz=12e795b7e1f14141bde68f52a29b0aa9f1db20515240dce83cffec351cefd25959579e01059d42dc8c8e4280493a70819d9beb1e0523e9bc10a72af16d9abd60 jruby-bin-9.3.9.0.tar.gz=f0b31d98f39a2bd4436764db0b0139433d6868bce7c30c5d6e3552616ba879c93478c499f3e4c884fd3728502916aed5c9ca1be150ae3e80ff47b36710c3f6df jruby-bin-9.3.10.0.tar.gz=aa36fd4c5de7b17f5fdcca1d1314d309e7b4470d46822c45baefbc0ad5180e5530a7054502b97b414352af485e7936659390690dc6198512ba6733d8f8d503ed jruby-bin-9.3.11.0.tar.gz=d9fd90bc64028dcc45687d2be51414b1561add20d20d1392525f4434cc684d505427f5e56827afffbbb0ce2c9cd7c1ef846b0bffa737679afb95d4c160232da5 jruby-bin-9.3.13.0.tar.gz=eb24641fb7a6b9d2039ec953388053e7333b306056f9a5bf745331b04cfc05dc4211a9b7780ce88bcee9184b8cbb219b574574d308bc2720547c116f4d4721dc jruby-bin-9.3.14.0.tar.gz=d9b02fc35133f71140cc7d891061f8190b61b3d1065f00092a2aa9a4beaf7d67297dfb0529691bd24d29607d698f39c62af9018e8307c1e6624c3104a61bb74c jruby-bin-9.3.15.0.tar.gz=e41521ebf453d6b6a9de937556fcaa972c60268285d0af4a41bfb95aad790eb47dd507e182958ca6f4889a0e03eedee0fa4bbc58e3d0407a2b6ba64a8b87a21a jruby-bin-9.4.0.0.tar.gz=fb72f8e087ea08653fa4e4225fa26694c3ff97c41f3deb8731cdb6571c6c9b21e0d8f69e2096f82ee81e2b5c283f912e2a5228c15873dbbd56de96a2ba35d59b jruby-bin-9.4.1.0.tar.gz=46003ef6192718a6372b79ebc89bee37957686224a08fe2f9a6be3c9e479784409d0269f0885c4d1f1351585c5d2cd31fd2ad45014e425bcaf2d44d66b98d299 jruby-bin-9.4.2.0.tar.gz=77e484ab73ece93e7d7283f876f0d541607c6080eee696b702b485be9794cf7e6d464f250a6d75387ee69aef3ba40ccf4f6d9fcfe324c5bc7a14376177ea2bb8 jruby-bin-9.4.3.0.tar.gz=2361f4bb2989f5951b0d3e9d49bf31e6805ce39bdc987ad3c6934daa98ab7c8e69763d40d7412ccef8adbbc198e52f4b83d00998ee12ac43fbfc6b5d88930c15 jruby-bin-9.4.4.0.tar.gz=e89dff0cc5b4a948daa95196d4bd4fee0c6901bb4aa023ae35b3679d9739967c2a74e8a4388b1835465dd39f1332a1f321b450b40c54ad2b81802645b4a31ca4 jruby-bin-9.4.5.0.tar.gz=06db948e5fa6f8559abd3b6891c7b4867b9f54b7bddf0e36d6f20cc1bfb394cdba8ea920213e545c927d1cb865e083cb1089c8e925bc608e0f8784a79b5d330f jruby-bin-9.4.6.0.tar.gz=ebdc671622baf3c42a988d6ebe24af6bfefa1f717f050f602a1b35909a3220316329aad080ee2cd9cd330da9428f8d736502573efa64bd70f093ccc123ab32b0 jruby-bin-9.4.7.0.tar.gz=4fc8b12deba7b8a53a523a41a31c248895adc9bd54a62664a27107e7205369af39c0eaa508a9a70611c3bb845524d8c5f39451c09b8b9cd87059ae15139703b9 jruby-bin-9.4.8.0.tar.gz=0d65fdfd63e2049ab3b8ccbcb4caaaab20aea5a63276aeb20ed4092191a8814f144425dd0d926aeed757ad6b4daa308a98fafe1bbd1647f3db44368066f61868 jruby-bin-9.4.9.0.tar.gz=1321e2ef5fdce909008ed764051d1bf9be0a4b8cb4a2515fa888c7c0ea48f0f4a2ab7b5c881633dba3d03449c6340255d9411a58836ed059f62d801d48565d1a jruby-bin-9.4.10.0.tar.gz=3396cdda4334552f2ca21c9123e709d72544e11b448d3091ec1a6e6f7beda2cde86ba4c15a4c0648135df34b558d254a96cb970f0a18d098126b7c5c2a2af019 jruby-bin-9.4.11.0.tar.gz=21ee47b4f6d1b6295f7f25cd74e559e6dbc8d98738d31f87c27ea657a740382e8c0e8156eafc8d270946311ebe22a7ce60d5c0499fb52cac7f9b120ed4495834 jruby-bin-9.4.12.0.tar.gz=01f74e4dad2d4357c0dd5dfa937400a3d3d3ebdc0485444359658f3e4b58c8af180ff66ce75b269afc75548cb832c4f75e891f506fb5e4004f9b12286991a8df MagLev-1.0.0.tar.gz=8da29f16e08f657b0d2f147b64f2202ac027db26f85da8dec29f926898f178ac8d11260fd6c0a539a9b9b15eb92d8c7ced86a8cab1861ae7f8a33b6fa468e5cb MagLev-1.1beta.tar.gz=7122af70530e76b9a4cee93244d6872b49616e78086bc8a5db0f32d2b846560b352c4831addbbecc72e0e3158bd52f26c2da14f5d83a515ead30efe7c538b62e MagLev-1.1beta2.tar.gz=43b4b831791074f6e8c12f6fbe6ccec2bd0446dae029d3e6717cde1e7adca8462a2d7dc49c14112cb568b5b3adc8cd051767044b41d57ae51f38aca035ff8597 MagLev-1.1RC1.tar.gz=942c1cf43f1a911230aa43bbac1cea2e2e61b5e19af755e29a6a71139d66d304efcc519072dcc3487a2da7462847530564aff4a2159d675e3270cc938a297dd9 MagLev-1.2Alpha.tar.gz=2672e3e5425df2d2ecc49f85df5845fdb083f74a7b242cac75e33d0c1837079ced8ec8b273807326d08e7bf6f95cb4f1d8351f37af8bb38c4150e6292fc553dc MagLev-1.2Alpha2.tar.gz=4492ed58b6c2b852502a2195836f1db5a80f0619467e4d7b44981a993a5e9a9ea5c9fecf1198de1891583e334bbc3c3a86648ce8afea1137ae9c73a4d76b0f4a MagLev-1.2Alpha3.tar.gz=6290895b22efb986ffd7305b7d651f20a051ab6869d51310bf891fa3eed48526a8617b69f72793e8ac0b57f99bc5de75f34235ef94de967bbdcd51857efc2af6 MagLev-1.2Alpha4.tar.gz=a621e9c615ffec503910540db770754f29bab1646d8e67650d5b82413bd551adfb0bbbb8155407ccb6f80933bfe8ae1bf9b688eb0defbc88710308bde1325683 mruby-1.0.0.tar.gz=4a0f2927da3401df23d5c19ba566995f76775def3badbb14f16510a271e7b40a833fc61841f89d8adc6d57b5b12cb453708961c16a22133c092fab8ecfcd1e3c mruby-1.1.0.tar.gz=afa99a973e9c1b72a5a418d709c4aca08dc7449c427cedef5f12db4ccefb15e11a4fd1c23ceb7e31e49d4d2e602c0b1f9dcf2e0f6cf8ea3466f0b9bee23b53df mruby-1.2.0.tar.gz=bd5de32ba52b6642358752755329fa45a954082122a8983012930056c286ac328fb52fbdd11f34ff7c80af2c0e9a6348abcd5214602aca1150f2e7ae25cad1f2 mruby-1.3.0.tar.gz=13a57306706d2d60693151919ae15bb3621e6e7ed3b5e9c6d3b1c8d44e52b898c1ad394b39946d730ff82a19f5e3b7c2a374f9dcc3b6c6f990581e504f1cb9cb mruby-1.4.0.tar.gz=d2dd6e17c7f8e890ef5b6887538cccdea08a2376ba8f9a478d7d5c4377fd4c31a4af6323b1fc73952ef80e5a4778ca22eac3d724ce7d50b76770f7e614df7da0 mruby-1.4.1.tar.gz=2cbf155ba7819211b6410ea606c4d0db3adf4f47a4018ac45285ab3e32b94f280aa0af0936ead7233411957cfca62979d14bbaaf0d8f40521cba5c12272f2af4 mruby-2.0.0.tar.gz=8379f76b7a06d280e2a2552eec2975ffa3fe85b99028f6f7c009cd908f95faf3cd36a9975f502a5779559baf3c45a4297da0b6bcc038d213a0fdee851f9d01ea mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.1.0-rc.tar.gz=f310b385cbf80c6b6ab67e2a41b931411149639c0bf778799e3358d6a9a59f508f42e3faf72fef9e8ef91088d6184c445af7933a47e4e2b2fe114362d579bac0 mruby-2.1.0.tar.gz=da28b5a078e121c75edf62fc68fad6d5810212bd53a3424d4f585ffe5bbd09f652393ffea0f4b3ddd802e5fe178554dc67040c39c9d5069bdfad4ef22ead7e8d mruby-2.1.1-rc.tar.gz=97c9cc2c79a5dbf2f634ea08532f0f512f8af6ffb99ab4eefd83fc336ca9d97b943e76643971047b4508aaddb5e40176d6cc8fa39a17022455aa15d774eb5b98 mruby-2.1.1-rc2.tar.gz=13aa32a35bd5d8f02a9bfd08d17818dbae78ce46c8b0224a029f9f191cb64ac330eddf3871f4396b9221b987a91e4cd6f8933f59814ac0018155ec8454abff18 mruby-2.1.1.tar.gz=66f9b4bebb5a7b19f5cb1be2bd8b9bc65e4dbb5d4350d238ad5f947c9195fd431f2069f7334036ea63a750e9257e59ae1aef16ac99c7e1f4e17724cd1cbe2e50 rubinius-1.3.3.tar.bz2=8b91baf429dac60663d0e4da3152a60ec6e007f5d6c17ffa430876ec88eb87ade44efae90f2e32e238fd74f1b3d54e27492315f08e7bb073220b402e1e2d3163 rubinius-1.4.1.tar.bz2=928d12aa01a1d0f6c80175d67d3b1f8b9840f69f045c8148786612316421223f4cea71e3c373ee18a3f686b1457557ae547645afe758a99d21c4818dff47b9d1 rubinius-2.0.0.tar.bz2=5c81a6b8cf7b59e08c3b9353b0eb37ce985aaf391f5064df65ffb10f6d12b668287e4d4e61e2c6b560d9234c10f0b64bba74259f2c06f1dac488928544d4131d rubinius-2.1.1.tar.bz2=154cfa93ed59835814b8b974f6d738b049942fcc2b75095d21c87647d002c879fd55aa3d1ec95414b5b66eb9926c25a5c6e3e19a7c0da7dec6edbf434acb9c68 rubinius-2.2.10.tar.bz2=c2168e676059c197123916dd948b83e39bb96e99786bdcaef2e690936b761fedb13740b9f19883f991f1b475f3249ea1696213e8448c41ae15dfc14b3d4e1fda rubinius-2.3.0.tar.bz2=d0f3dd5e3b891bff2eb79b7810c6041e15fbbf0606c379f89575cefd829ac7a394b0c12ed3c5a4d452730797bc0a2c6c82646a19a078b56dcac7acad015a4559 rubinius-2.4.1.tar.bz2=7bcea320006b8cd3d122c407d89c325973a74c32456ba0b649657ac848f4682f2eb7455c13e3007709c22932bc2e1b65e2dd43fda0d3c9f993ddf8a74d1e2cb1 rubinius-2.5.0.tar.bz2=ac94d5bc11524e715fc24c1de33f4d358c2cd65e92fbb64c850dc8151d2a712d268227733c99fcffe298c3bdd6ce080c5e9553e4e8f3238868323498a9d10cae rubinius-2.5.1.tar.bz2=9315f76126d0aa754ee63b190385c24cb084f36293a99aa30fc482fd880d5393aabce361e09ff5514bc2540dfede8e179b7e9212b2dd59bd14ca2aa69d209a83 rubinius-2.5.2.tar.bz2=b48bd8d54a450441a50904b07c75c8d31b59822830a74c952720d6f8d2d86e6a27a84775e975ff2bf55bf3346f34e69d742f308933a9d8476e5e78109cb525f6 rubinius-2.5.3.tar.bz2=b923446d325dc3ce5ad28af9ee527607fae3259b85e85aeff97c1bebbb4520daf70616957b1c0ded900ed19e59025826dee66977c19cd2a2d4e9a0296811eb20 rubinius-2.5.4.tar.bz2=75b7ddbe218e4c92210dbf5a06eb8b3c3aa028d16146982a4e813e3af10a90d33f3e239f4508469c6aba17f02cb8bd10e96a204839975e06519869cacd456c92 rubinius-2.5.5.tar.bz2=a862146ddbbdcd4439eb64e78bfe6d09ae4cca540d19869618426d3f451544658713fe8eb7d46493785eb0cc721077e624293cc44d68eea3ef584967b43a18d7 rubinius-2.5.6.tar.bz2=9a0bdb5d77f80f163925ce409d00be3cee34871baae8bcfdb34c3c7545b92fd14102fecb970e42b3012588d299e504b724025f397a5a00e181ab75f1448e426a rubinius-2.5.7.tar.bz2=8048110b3ba4e5ff8c3f35282896067e1b1b46dccaf9ef4f6c9b6098782f27591ff59ccae0234fd7e881e3aaf17a0b420286b1b52ecd2cb672249655795a6982 rubinius-2.5.8.tar.bz2=23fca2f9747d2b0e544af890c3baacfb7b3a009cc59cbe653762ccdd827a6c915dcc57902d317fa1f7a81f8c12682f6c3a93195331b6de0f705b118e2e8c13f1 ruby-1.9.3-p550.tar.bz2=38767e98df25484f7292437f3cb0f798b3a43e9a7414a5401677e96ad1cc367cb3fa23ac3abe568d5bf2b2ca553713469a8770d41b79bc63daf3fa59cb4e15c6 ruby-1.9.3-p551.tar.bz2=5ea40f8c40cf116030ffdedbe436c1fdbf9a50b7bb44bc890845c9c2a885c34da711bc1a9e9694788c2f4710f7e6e0adc4410aec1ab18a25a27168f25ac3d68c ruby-2.0.0-p576.tar.bz2=e089cca4867cd9c715f4f37e40a1db9af6ba0c74b47e79568121bb980476f8877a87ccb848b973381edb4667c0c73165f5e1761f60db839e67f6326302dbd864 ruby-2.0.0-p594.tar.bz2=8301a51c73fb63a8cfeb14af47d0c18b5bc3c45e3d62fc2ed56a673a1cd6b0015c41f275e70eb14a9e40036b1530977199321e05285e107a6adf58514bef1b3d ruby-2.0.0-p598.tar.bz2=10026a04e01a8ad14ea9c99bbdf4f7d04029b73ee0c01bbf6c2eb2817332d49adacf127b646693b67b5dd7010eaf3b696b23b6335cc0f7ee5a6b56dbba0f6f82 ruby-2.0.0-p643.tar.bz2=453117152e6facdcd5bedaa9c3b1e349382bc5bc1dd3d650ec58b398cb9d2519a2822d05da10bcc5dbbb4f513fc5fef310caa3529d176fa2d453befb28e4d83a ruby-2.0.0-p645.tar.bz2=e9ca186b1cf0877cdbecd43dcab2c5161a53103e926609d5e1b769a4980eab4571bfd0951788b4fc92dfd9d10175b0f5f36ea2c7289e575a9db9b62c02f93185 ruby-2.0.0-p647.tar.bz2=3416af771ebb0b27ceacf23d309bd2a1ede832c2edf48a5ca46f0b0b84b2ab94fb6362a0c7fe4f77b21253539db8161ae26d23a78d1ba729bf03812454d93d04 ruby-2.0.0-p648.tar.bz2=609acf6d6352c9746e21cd7f0e7d29f5eb522e6fff2d5fad0431d63c568cc084ed5b7141f84cd33512d8213200d2d1a22e8d7df71469a980a3a92886133fea38 ruby-2.1.3.tar.bz2=9b48adb161e5e4550a71f61252c8edf59944affb82250babcb64240749af4b672e4a54ccd0feac5b36ea447a358b350b5080125ef2d4acf6e9e8b1ab82612f48 ruby-2.1.4.tar.bz2=68db1567751166c5e7d24b6e5015124b8a15568c50556e1f429486395352fa56c4a195a74820ab135697924149d014b445b345a1b9755678aaf824fba79c606b ruby-2.1.5.tar.bz2=d4b1e3c2b6a0dc79846cce056043c48a2a2a97599c76e9a07af21a77fd10e04c8a34f3a60b6975181bff17b2c452af874fa073ad029549f3203e59095ab70196 ruby-2.1.6.tar.bz2=75d58120b5f387bcadbf6d19e85624f78c74f81b9018baef39207214673f7ebc0700ab31145acd88b4071c896ba8e1302a29c90955bcf5f8c863634125022aa6 ruby-2.1.7.tar.bz2=f610d2dd6a93f0a5e84e04ddedf847bbcea5dd3289b3164cdf60be64f67a80dfd5f9836ea5d169970cd0ce24a7e05ea6190699706567cb0d5cf450de6a70e445 ruby-2.1.8.tar.bz2=7129c012bca7f0e7cfa51c73ba0898697f7a9f31abd5ae57d38be5b6b646fd80ab33be9b262cd3e2486c66f65aaf4ec6e881ae6e5a82ec9df62f00fa072510fc ruby-2.1.9.tar.bz2=a86422132e4c64007a84a91696f4557bdcbc8716fbfe1962f1eef3754ee7f994f4de0b5b7e7231c25057515767040d5c4af33339750b6db15744662e9bd24f38 ruby-2.1.10.tar.bz2=4b7213695416876e4de3cbce912f61ac89db052c74f0daa8424477991cfc49b07300e960177ff576b634a97ee8afef3c5aded5d5806329dbd01d0ce7b42b9b63 ruby-2.2.0-preview1.tar.bz2=2f1190f5d8cd1fa9962d1ff416dae97759d032a96801d77bc6b10136eba59dde1a554ff8c0c2d9ce0d3c1361d4dd12ad573b1266fd53b90ab238d8ce39e6b862 ruby-2.2.0-preview2.tar.bz2=c654d4c047f9463a5fb81eaea0fa5ab7bf316962bc7fb0fb356861e6336ce8ce2162c7779d8b27f72d7bc0e9604b5e5af2910abcb0b0a1f197b3138eaddfd4a5 ruby-2.2.0-rc1.tar.bz2=181201168360bee37dceeef3481a69e8a333a5d329680031fd9d371d30ac64460bbdf4db07546133024f541774e51301f1630cfd988c5e5bf2464834f3abe6bf ruby-2.2.0.tar.bz2=04edc53e8cd1732c3ca61ebeb1d6133614beb10f77f9abb80d8d36352fe8aa205112068e460bf600b2c7e81e0ddcc3b311e7e027c320366f1bd992b3e378a6ad ruby-2.2.1.tar.bz2=af6a8e75a66b953ff33ecbca5111bcf1c6560b6b48b370b700820fcbe91363146c5ac8abd670a14e693b44343ae598bab472ed2902834304c03ffcd9550886d1 ruby-2.2.2.tar.bz2=d6693251296e9c6e8452786ce6b0447c8730aff7f92d0a92733444dbf298a1e7504b7bd29bb6ee4f2155ef94ccb63148311c3ed7ac3403b60120a3ab5c70a162 ruby-2.2.3.tar.bz2=795f1b66a6d4f0baef897068899c3a1a4370ce1268618e6a7d6d4720234444259f371d1ba2e174b2f7580265e9f18eda3f295fbb087447aa6e8fb7a0f07526ce ruby-2.2.4.tar.bz2=d27ca2f19c214ce87f906b57edd41f2f8af35b2871c191470facded9cfda15ba46e5c3bc7d5540225a38da6bd65050fcc8aaa4ffbadbb6bf7dc891c1821da0df ruby-2.2.5.tar.bz2=d3224814361c297bc36646c2e40f63c461ccf5a77fea5a3acdcb2c7ad1705bb229ac6abbd7ad1ae61cbe0fefd7a008c6102568d11366ad3107179302cd3e734e ruby-2.2.6.tar.bz2=7a93f72d236521ac28c8a0bc0c73cf805797a8813d22e02f42c5fc05dd39f6e422817272e0db6a24c245f6f97ad4b2b412a9a47ac50156ab186df596918a5f34 ruby-2.2.7.tar.bz2=83756cd1c91516962b83961e0de59d858618f7ed3e9795f930aab4f199d47a95ed8f867d8aa9b51d508be26d9babf2140117c88241168bac41e6ef702cfadf20 ruby-2.2.8.tar.bz2=aa1c65f76a51a57d9059a38a13a823112b53850a9e7d6f72c3f3e38d381412014521049f7065c1b00877501b3b554235135d0f308045c2a9da133c766f5b9e46 ruby-2.2.9.tar.bz2=2a8c8770fda20a22b79c9115b6f468f8e7ea1092c84a5089af7a3122163e5ad298b493e6637e4d93ba02d899d8a619c94064dda8ac98cf3b93f64f45d5401085 ruby-2.2.10.tar.bz2=f8ec96c2a5f4ecf22052ee0b1029989ded52d7bf5d41be24fef67e732e76f72119302240bca08f0547510a9cd29e941a32e263cad9c8a2bf80023d6bc97b2373 ruby-2.3.0-preview1.tar.bz2=ae6d46c87f59e1fd3703b76dfc45bfcf208625f95ab9f4559f0b9f7050e8681f1a6e419f5fa06b704c83e56879c3a9ff1337dba443bcfca76fadb49c97d97a93 ruby-2.3.0-preview2.tar.bz2=e397f321d4338edba8d005d871408775f03d975da90c8abcfdb457a1bc7e6c87efe58c53b2c3bc122e9f58f619767b271bcc8d5d9663ed4b4288c60556e8d288 ruby-2.3.0.tar.bz2=77b707359e754c3616699d21697752741497c719dc3d6fdfb55ed639e76d52560d293ae54cbe5c63be78dc73fbe60f1b8615d704d017bdfe1994aa9747d26a6c ruby-2.3.1.tar.bz2=a8659b96a3a481a3dbdbb6997eb18ff1f8cd926a9707a90d071e937315c21d372c89252f0d44732ae5007d2678fda8c8fbceafa4e4b4ff500d236fb796284d8d ruby-2.3.2.tar.bz2=78699bae5b0a2382a58f9d51f7d891341f00ad3a90d9ca06b68b1b245cf5acebc3a82133e39bf6a412ac999a5c0f778a0dab177c2569ffbee085ffff6f6ec38e ruby-2.3.3.tar.bz2=88f7782effd35bfe0b4c33140b5eb147d09b63fbb35b9c42d2200c010f387e2b70984ead1eca86569e8ec31f08b35289d440c0ca76b662dadb760f848e863d91 ruby-2.3.4.tar.bz2=ad1f16142615498232d0de85149585be1d2c5de2bc40ec160d272a09e098ef6f317d8b25026001735261fd1c5bc0d1f8513a8474e89f0d86eed5b2fe7338d64e ruby-2.3.5.tar.bz2=3ecc7c0ac10672166e1a58cfcd5ae45dfc637c22cec549a30975575cbe59ec39945d806e47661f45071962ef9404566007a982aedccb7d4241b4459cb88507df ruby-2.3.6.tar.bz2=bc3c7a115745a38e44bd91eb5637b1e412011c471d9749db7960185ef75737b944dd0e524f22432809649952ca7d93f46d458990e9cd2b0db5ca8abf4bc8ea99 ruby-2.3.7.tar.bz2=e72754f7703f0706c4b0bccd053035536053451fe069a55427984cc0bc5692b86bd51c243c5f62f78527c66b08300d2e4aa19b73e6ded13d6020aa2450e66a7d rubu-2.3.8.tar.bz2=6d79e0d25757fd37188a8db3e630a52539bce7927fcb779a2ce9a97b9e5f330753035c16843552f1a1fb6c9a1e5c0f916b3cc8b5c0bfe81e20f35f8442e40ae8 ruby-2.4.0-preview1.tar.bz2=c9873e8686eb54dbde61d6e23cd5197beebccd6cb31fd12c82763ebe1fde17095d7514d9d93c2c82b238032c98691df5479dc2d666a8a590e0fc54450ec29cb5 ruby-2.4.0-preview2.tar.bz2=0c9a59a2f57a99c4ee8539a30f41da1de7547566203f89d856e1be9dbb44365754e6c470145dc9336eb324e0feb2f53d9fef18a1564968ac21f9ee528905949f ruby-2.4.0-preview3.tar.bz2=6602c65a7b1e3bc680acc48217108f4335e84fdd74a9cf06f2e2f9ad00a2fccacf9fa035a912bc9d5cc3f0c7a5e21475971dfac37b0364311ef3645f25c7ddf9 ruby-2.4.0-rc1.tar.bz2=b43902ac7794487197df55a45256819d2e7540b77f1ed4eb68def3e0473ee98860a400862075bafadbde74f242e1dfe36a18cd6fe05ac42aae1ea6dddc9978ce ruby-2.4.0.tar.bz2=bef7bb53f63fb74073d071cc125fb67b273ed0779ef43c2d2969089b9ca21fff1bd012281c5b748f7a3c24dd26e71730d7248c05a01cb23ab2089eb4d02115fe ruby-2.4.1.tar.bz2=1c80d4c30ecb51758a193b26b76802a06d214de7f15570f1e85b5fae4cec81bda7237f086b81f6f2b5767f2e93d347ad1fa3f49d7b5c2e084d5f57c419503f74 ruby-2.4.2.tar.bz2=1a5302d2558089a6b91b815fff9b75a29e690f10861de5fdd48211f3f45025a70dad7495f216e6af9c62d72e69ed316f1a52fada704bdc7e6d8c094d141ea77c ruby-2.4.3.tar.bz2=fb4339e30c04d03b1422b6c32ede45902e072cd26325b36f3fc05c341d42eea6431d88718242dcc9ce24d9cad26f3d26772f2e806bd7d93f40be50268c318409 ruby-2.4.4.tar.bz2=ae632852a5f413561d8134e9ef3bb82adb37317696dd293ef92cb76709ecd45718f14116ecce35b12f1c2dd53ccae8dabc7a924a270072b697512d11f4922347 ruby-2.4.5.tar.bz2=7034fcaeaee41f14bc0ecce0d3d93bd1abe95310e1a0b95fac66eaba867adfb2bf7ba4d0d70d67a15ce8df16052dee405c38cdb18987602e64a2f701d37d3df0 ruby-2.4.6.tar.bz2=292802984e5cff6d526d817bde08216fe801d255c4cede0646e450f22d4a3a81ae612ec5d193dcc2a888e3e98b2531af845b6b863a2952bcf3fb863f95368bcf ruby-2.4.7.tar.bz2=2665bca5f55d4b37f100eec0e2e632d41158139b85fcb8d5806c6dc1699e64194f17b9fe757b5afd6aa2c6e7ccabba8710a9aa8182a2d697add11f2b76cf6958 ruby-2.4.8.tar.bz2=2d7e0f5ad766e2a12a1b53ff838e6bfe86244ffb7202196769c25e9df6f71f3ccdd8605e7ef35c53e54310bc82caf6b368ad5111dd0a3ad70a3aae1a7be93f08 ruby-2.4.9.tar.bz2=d485444dcd025a261a16bd740dae63c0aa23e4138a095584e7a83aec47af34415c7d9cbc1313e92da2ec416b11bfddf20bb1a7b60c80f12906d11ef27409b3e8 ruby-2.4.10.tar.bz2=4d730d2d7cb96b002167ee358258f2620862a5a6d8627cfa5b49bd43c6e59c50c0f437b959d4689b231d57706ec7d5910d9b144f4ca1c1ed56bc879ed92e8a59 ruby-2.5.0-preview1.tar.bz2=2d39ef64aaf7a52014905f4ad59b53e83b71433e50a9227f9f50cbb7a2c9a5db9cd69fa7dbe01234819f7edd2216b3d915f21676f07d12bb5f0f3276358bce7f ruby-2.5.0-rc1.tar.bz2=bf0eb114097f9e505ff846f25e7556a2fb393573b4e8b773f94cf5b47998e221f3962a291db15a3cdbdf4ced5a523812937f80d95f4ee3f7b13c4e37f178d7a7 ruby-2.5.0.tar.bz2=8f6fdf6708e7470f55bc009db2567cd8d4e633ad0678d83a015441ecf5b5d88bd7da8fb8533a42157ff83b74d00b6dc617d39bbb17fc2c6c12287a1d8eaa0f2c ruby-2.5.1.tar.bz2=82e799ecf7257a9f5fe8691c50a478b0f91bd4bdca50341c839634b0da5cd76c5556965cb9437264b66438434c94210c949fe9dab88cbc5b3b7fa34b5382659b ruby-2.5.2.tar.bz2=9f9388a162a3ae9c14ec8999fa3b12ff5397de14f55996cc8761d21c757113db37ace4d326b9606de7ad3a5875aa94fec900dd9b81b2fb0dff558c39422f4aa1 ruby-2.5.3.tar.bz2=6fe89fe9d406bb454457442f908774577369ab2501da4fd15725ccbab77675b88faad739a6c8ad1c7b6690b439a27de5e08035b7546406cdeca65c7b295e2c77 ruby-2.5.4.tar.bz2=3c4f54f38ee50914a44d07e4fd299e53dddd045f2d38da2140586b8a9c45d1172fec2ad5b0411c228a9b31f5e161214820903a65b98caf3b0dfeeaabf2cab6ad ruby-2.5.5.tar.bz2=1b56aa79569b818446440b9f2d13122bf7c2976ab9b2865f5fb62d247d7768dd4ac5b5e463709ffec0f757bff7088afd293c2a8c5349c3780763b6444bb354a8 ruby-2.5.6.tar.bz2=e4511d42d19a7bb39ea79f66bb4eca54b63c2a9d27addc035d6d670c1e59ee48a0c6e9c6bc7d082d1f1114b0668831dce3b7422034517f3c4a06ced0e47a7914 ruby-2.5.7.tar.bz2=7d6a7d41b4f3789f46be5f996099f3eb8321aa4778b2a8ff44142654e769ba4ba2df127dd0f267547e4c8cd6ff46364f18e79838df54fcd7e3fb714294ee0099 ruby-2.5.8.tar.bz2=037a5a0510d50b4da85f081d934b07bd6e1c9b5a1ab9b069b3d6eb131ee811351cf02b61988dda7d7aa248aec91612a58d00929d342f0b19ddd7302712caec58 ruby-2.5.9.tar.bz2=12f58e14cfa6337065b0e82941e39b167813920eb54cbdb4ac4a680dd0cb75d2684d341059e7b4d0da1292bfc4e53041443bd14891a66f50991858b440a835c8 ruby-2.6.0-preview1.tar.bz2=d9cb270529a97670d54f43a0236fab072714e715c39277dab70b7a1843ec818e6700e47e1384c7256f9e0ae41ab2c0b768a0de38a5ecf4f4fff5da6ef5ad4944 ruby-2.6.0-preview2.tar.bz2=3872227e9b1c97c206d19bf1e6ce15a38ee15a26c431b4436605dea67affcf16372358984df76b35e7abaa902c15c16f533ac7af47e3031dea9451bbe459b693 ruby-2.6.0-preview3.tar.bz2=d1693625723796e8902f3e4c4fae444f2912af9173489f7cf18c99db2a217afc971b082fce7089e39f8edd54d762d2b4e72843c8306ed29b05ccb15ac03dbb5b ruby-2.6.0-rc1.tar.bz2=cbd6281b2aab6fbce3f699c1ab57e5423304dca7a547a0b3cd4e8e980326dc7b85b2ca2bfaf3f3a648d40f4222fdf1740d81d422790ee7ae1ba1ed33eb11e3e8 ruby-2.6.0-rc2.tar.bz2=9bfbe83fd3699b71bae2350801d8c967eb128e79b62a9d36fc0f011b83c53cab28a280939f4cc9f0a28f9bf02dce8eea30866ca4d06480dc44289400abf580ba ruby-2.6.0.tar.bz2=ca3daf9acf11d3db2900af21b66231bd1f025427a9d2212b35f6137ca03f77f57171ddfdb99022c8c8bcd730ff92a7a4af54e8a2a770a67d8e16c5807aa391f1 ruby-2.6.1.tar.bz2=fc41429491935b89532733b95476ab9f8a4efc310aad8f4c2bd3b68fba08fd7b6e9ac84c6c88ca892022d1ba76435295f3299ea466f9b5453c07d41cb539af59 ruby-2.6.2.tar.bz2=cad678d2ced4085e99009e4fef83c067dd0e6ead27a8695bc212c0e5112a7fa09ceb27f82638faf91932ef8bdd090f844e0a878ffdf6845a891da4b858588aa0 ruby-2.6.3.tar.bz2=c63c3f527bef88922345f4abb4b9ad467117b63f2132e41722ea6b4234cec3446626c3338e673065a06d2894feee92472807c284cbe613a442c8fda234ea7f88 ruby-2.6.4.tar.bz2=a9fa2f51fb5f86cd8dcaa0925fe6f13d4f19f110b5d4c5fd251f199d16aaf920db39ad3bb50460eb94ab8d471ab2ac8bb54daea4a3bb080eaf45250aac3437fe ruby-2.6.5.tar.bz2=28e0b04ac8ca85203eb8939137b5e5de4850c933faf7f62fc69648fe1886faaabf6cdf48382f9d9585c1720876d10b41dafd33efaeb23341c309917fbd8a6e21 ruby-2.6.6.tar.bz2=001851cf55c4529287ca7cc132afc8c7af4293cdef71feb1922da4901ece255ec453d7697b102a9a90aef2a048fe3d09017ea9378ab4a4df998c21ec3890cdbb ruby-2.6.7.tar.bz2=311ec56d23d0de7a163f66c1ef4e5369b822f8409f8e1f3a25785c803f01c68dd13aa8ddcfb3a0fe6a97bf321950f8d6cd75b2babcb04158e791601914666f7a ruby-2.6.8.tar.bz2=51806d48187dfcce269ff904943dd008df800216ad4797f95481bdeecc2fbac40016bc02eabfff32414839ebb2087511d25eebfd6acead1a1d3813be6c10edf7 ruby-2.6.9.tar.bz2=ff067ebc059094c0a9a0debf54a37aad2c85f7ed47be59299041c9c03a7701529f5063ff32a1b8c56d48ee8585015acba63602ed0176b2797d263d43d67aa241 ruby-2.6.10.tar.bz2=275a0f329641e6c3d3d3c33ffabf585195187eb3baa4fb1dfd35999fa0a80bd5925943fa2711827ac00dffb6c9a1deeadabaf2e9ee401d56926fc167db5ae4a4 ruby-2.7.0-preview1.tar.bz2=a36b241fc1eccba121bb7c2cc5675b11609e0153e25a3a8961b67270c05414b1aa669ce5d4a5ebe4c6b2328ea2b8f8635fbba046b70de103320b3fdcb3d51248 ruby-2.7.0-preview2.tar.bz2=7066ececebbbba4b2933ba1a4f70cdef373169910802259a3e52b4fc144ba298f3cffda4be5fe8a7be8ef769ed43076fa046a9ac2c13bb733475b9852112c6f0 ruby-2.7.0-preview3.tar.bz2=5d8e99e3fd984c7d05c0bc483e1504e81ccdb920cbb2d78cad3c314e197b30316b692fd0199f836acac41246e3a713cb81dc6dd64c27cba56f807df4c193db1a ruby-2.7.0-rc1.tar.bz2=b5f96227775f8bdf19f944a555d0a83d7e84b37bd31fe4b8ac008a3272b1a28a4d94abbb1b5570ee32ec0690ba9d476b837a020a5194bee14bebf6f0e768bc79 ruby-2.7.0-rc2.tar.bz2=9010f72bb3f33b6cd3f515531e6e05198f295bb2a8a788e3a46cdfd776a9f6176b6ba8612f07f0236a11359302d2b77fdecca1dc6be33581edbb028069397a0a ruby-2.7.0.tar.bz2=8b8dd0ceba65bdde53b7c59e6a84bc6bf634c676bfeb2ff0b3604c362c663b465397f31ff6c936441b3daabb78fb7a619be5569480c95f113dd0453488761ce7 ruby-2.7.1.tar.bz2=4af568f5210379239531dbc54d35739f6ff7ab1d7ffcafc54fed2afeb2b30450d2df386504edf96a494465b3f5fd90cb030974668aa7a1fde5a6b042ea9ca858 ruby-2.7.2.tar.bz2=f07592cce4de3532c0fa1c84d53a134527d28ba95e310cd3487ac321c49ee680faeace285de544ee6db432a90aa7538a1d49ff10c72b235968ca362ef9be621d ruby-2.7.3.tar.bz2=e9236138be3e61380140f2e0d42f8fb82ad8f5219d454de2f6c2ec546bb208acc8b0f2020f23e6446660d2b3b9ae873cdd8298471f166a5f1efba8e80b05e746 ruby-2.7.4.tar.bz2=f144c32c9cb0006dfcfa7d297f83f88b881f68c94f0130346c74dfd8758583a68d22accfd0fc9f31db304ab5ff0bc135bfb2868145c0dec1ee6cec5ac6c3725d ruby-2.7.5.tar.bz2=0aa2ac44bc22859a39c43d08b7c7f457df05c2dc36b2574fd70ca399143ef1000dc5e496212db9eb055bc4258523d47d26db3c57a1a5a5d63cf1b3de9f81645a ruby-2.7.6.tar.bz2=4f7f3624afc43da25ebf0f01d5a2f92f72f94bab7423587cfd3920e089b479bf559b159adf2891b996f7e6a98c008a4f73a4a2170e2f8619417660ac1ab24bdc ruby-2.7.7.tar.bz2=24cc772ac1b56d3bb423f1b33716f221bf534f3717a506bf8235a698f8a454db7d79d94ae9a84067153c2f737b3f8f6085f34e36cc04be0d75ae2fdd57718870 ruby-2.7.8.tar.bz2=3a9db8d9e79318f869417f2ebf3365907febc0d1428116eabf3253c51d8420f255782b32fa30a54802b9f5f4187fad80dab0611cc80436feec84db87b0456ec6 ruby-3.0.0-preview1.tar.gz=b94892951f842a1538f4b99022606ac2c0b5031f1ede7eef3833a8caa9ed63e9b22868509173bfefb406f263c65211db75597b152b61f49e5ba2a875fce63a27 ruby-3.0.0-preview2.tar.gz=6fa4191425ae71e41894b60bd9c31d483a562ee8216886360ce18238ab48115b95be0367708612c45f634e7584fba8940a524ba0113ce0f36ce4df78a112d0b7 ruby-3.0.0-rc1.tar.gz=798926db82d27366b39be97556ac5cb322986b96df913c398449bd3ece533e484a3047fe35e7a6241dfbd0f7da803438f5b04b805b33f95c73e3e41d0bb51183 ruby-3.0.0.tar.gz=e62f4f63dc12cff424e8a09adc06477e1fa1ee2a9b2b6e28ca22fd52a211e8b8891c0045d47935014a83f2df2d6fc7c8a4fd87f01e63c585afc5ef753e1dd1c1 ruby-3.0.1.tar.gz=cb81db2c9b698cf8159b2ca6507f4c7f171e4eb387f5730c4b658ed632b7900a169808e6fbec0ee80598d937030ad5d9c56b63a2a339373ec5d9e1c06b7661d0 ruby-3.0.2.tar.gz=e1fba6f5429b5fca9c3f52a32535615fcf95fafa415efc71c46db4cce159f249112c01574c305026be5c50140335696042e47a74194caea045acbfaa4da738cd ruby-3.0.3.tar.gz=39dab51a0d784a38302372b99f96205817d466245202586d22123745761e9cb39db128ec2b984ebc3919b9faf2adf828d19c97d3fb1e56d44be0a81dc5d11b87 ruby-3.0.4.tar.gz=0dfded6826063c1b39bf625a6e13b46c109cb160c8648b78f0965f70e7c7a1a65f1c117fc8f2cf8bdb34d7cbf79fecf1f45d169d2323406d66ab27b18bde1d22 ruby-3.0.5.tar.gz=ea45fcd2ca53b87f18fd8696d00a1e340d2495443216aaf87d3f643cb5bd8bb614a1faacd82d07e7f2b72172397c728316a82d7c34a7b4566191268ea517ccf7 ruby-3.0.6.tar.gz=d596bfd374ae777717379b409afe8ee1655ade0c0539ada7a10af4780b818efe25a28aa50a2a7226741d1776d744e10ad916641f9d12fb31c7444b0a01d0e0cc ruby-3.0.7.tar.gz=66e5116ddd027ab1b27d466104a5b440889318b4f2f74b5fdf3099812bf5f7ef77be62fe1df37e0dc7cd5b2f5efe7fee5b9096910ce815ca4126577cb2abfaa7 ruby-3.1.0-preview1.tar.gz=63f528f20905827d03649ed9804e4a4e5c15078f9c6c8efcfb306baa7baafa17a406eb09a2c08b42e151e14af33b1aadbd9fb1cc84f9353d070b54bbf1ff950d ruby-3.1.0.tar.gz=76009d325e961e601d9a287e36490cbc1f3b5dbf4878fa6eab2c4daa5ff2fed78cbc7525cd87b09828f97cbe2beb30f528928bcc5647af745d03dffe7c5baaa9 ruby-3.1.1.tar.gz=a60d69d35d6d4ad8926b324a6092f962510183d9759b096ba4ce9db2e254e0f436030c2a62741352efe72aec5ca2329b45edd85cca8ad3254a9c57e3d8f66319 ruby-3.1.2.tar.gz=9155d1150398eaea7c9954af61ecf8dfdb885cfcf63a67bbcf6c92e282cd3ccac0ff9234d039286a9623297b65197441438c37f707e31d270ce2fe11e8f38a44 ruby-3.1.3.tar.gz=550cfda2ae492312009a58316e18fd77ea92852718b37443bcd76aac84ba6694fb841fe19bf23bee099f96f5aeed9d03e77c8c02fb194e414eca5f707adbbf90 ruby-3.1.4.tar.gz=41cf1561dd7eb249bb2c2f5ea958884880648cc1d11da9315f14158a2d0ff94b2c5c7d75291a67e57e1813d2ec7b618e5372a9f18ee93be6ed306f47b0d3199a ruby-3.1.5.tar.gz=23661cb1b61013d912b7433f8707bbcd723391694d91f413747c71428e74f8c7385c1304de7d08b70c9fa3bd649e4eb5e9acb472d89dc2ad5678cc54855a24ae +ruby-3.1.6.tar.gz=624555ab3681bd6663bca7cf3529a969b9f0f16928559cfb713c57f763506c8740410c9b460d946922994859189ef2b9956167bd31423cf2e3acbf5a30086fe1 +ruby-3.1.7.tar.gz=a8432aaeaee4f48027ab30b7870bc61350840761b9d72b0b399d8fdfa96acb3c8f1ebe63663bcd8d835dd89b21128a07ef8f0c0c47eb41b942c169954ccb7edd ruby-3.2.0-preview1.tar.gz=d24e77161996c2085f613a86d1ed5ef5c5bf0e18eb459f6a93a0014a5d2ce41079283b4283d24cb96448a0986c8c6c52a04584abd4e73911ea59cefeb786836e ruby-3.2.0-preview2.tar.gz=5e9ddcb1a43cff449b0062cc716bfb80a9ebbb14a1b063f34005e2998c2c5033badb44e882232db9b2fceda9376f6615986e983511fda2575d60894752b605cc ruby-3.2.0-preview3.tar.gz=860634d95e4b9c48f18d38146dfbdc3c389666d45454248a4ccdfc3a5d3cd0c71c73533aabf359558117de9add1472af228d8eaec989c9336b1a3a6f03f1ae88 ruby-3.2.0-rc1.tar.gz=798157d785ebae94cb128d3c134fa35e0e90c654972e531cb6562823042f3fb68a270226f7b1cf0c42572ef2b1488a1a3e44f88389ad2a6f9ca4b280a2a8e759 ruby-3.2.0.tar.gz=94203051d20475b95a66660016721a0457d7ea57656a9f16cdd4264d8aa6c4cd8ea2fab659082611bfbd7b00ebbcf0391e883e2ebf384e4fab91869e0a877d35 ruby-3.2.1.tar.gz=f8bbff5e237b501f4042ddc70a19ac1ce74f72f147c90daf7f3007a940136abde37c12a0f7444f713ede09ba847c2cc2897a1742823832e3dc8cce80073164e1 ruby-3.2.2.tar.gz=bcc68f3f24c1c8987d9c80b57332e5791f25b935ba38daf5addf60dbfe3a05f9dcaf21909681b88e862c67c6ed103150f73259c6e35c564f13a00f432e3c1e46 ruby-3.2.3.tar.gz=75aecd9cf87f1fa66b24ecda8837a53162071b4f8801dcfd79119a24c6e81df3e3e2ba478e1cc48c60103dfaab12a00cfa2039a621f8651298eba8bd8d576360 ruby-3.2.4.tar.gz=b695b98dac7bb2c8755a106d949cb1b1b91551092fad263765171ddf8a4d86585259ffab5f7cc9bace70143d645dbe5932cfc61c6dba7817177de391d76bcd79 ruby-3.2.5.tar.gz=d86c0151fabf21b418b007465e3f5b3fd0b2de0a9652057fd465b1f7e91b01d00f83a737e972ea994a5d9231e8cb27e64e576852390fe6c2ad502f0d099fe5f4 ruby-3.2.6.tar.gz=26ae9439043cf40e5eddde6b92ae51c9e1fa4e89c8ec6da36732c59c14873b022c683fb3007950d372f35de9b62a4fabbbc3ef1f4ef58cd53058bd56e1552cbe ruby-3.2.7.tar.gz=174e70ac20a21ea77e2c5055a9123a6812109fd7b54c0f7b948312b8159eedbfb11c06120390c158430ca8543e36893da6c809883c82757082d22e08004c5055 +ruby-3.2.8.tar.gz=342d9ce337936cdbaa5d63a4d393edf0594e431add8cec3b6f17b884075bfdc5aa7a843c03f4ee3bece01700dfa4707bba653715a628d9dcb230762dbd3e5ac8 ruby-3.3.0-preview1.tar.gz=0f891f140ddc6372aa7c4459f8784126e0c341db7b80e72c51e441c5153c43c2d7b965f7807c076862ac84b9b8b0c6a66bbf66fc341746016151397bb21c782a ruby-3.3.0-preview2.tar.gz=1c5a13e519e8487fd40d932b96d14fa729521925c288e7841ab5eada628e506ceca2605bae36eea1aa505d9253383d53cd933b7a4bff96e6de5b1130c7c558e6 ruby-3.3.0-preview3.tar.gz=94db07a6958c09809b2e5b597fa55a121074e8bacb3bf588c83cf0d35b07a8b070172035a49d1abf0d8ee364a9ace824f34e677f7327ffe1acdbab0938ac49c4 ruby-3.3.0.tar.gz=26074009b501fc793d71a74e419f34a6033c9353433919ca74ba2d24a3de432dbb11fd92c2bc285f0e4d951a6d6c74bf5b69a2ab36200c8c26e871746d6e0fc6 ruby-3.3.1.tar.gz=0c8ea922a79152ac7adbfb2541320565bce6a631692fd39d499a06f53ad6339c16fad8374d171351ed63f7bda3312b26d4f8c058c5b6df3d7548fde372c718f1 ruby-3.3.2.tar.gz=a15ba8d6c2830fcd1f2b36f671acf9028c303ec78608fd268da0585db8e95ddd971666e8029bcfa2584da2184a6534e1f2f2da07fa7ca4494e8d842eed206f00 ruby-3.3.3.tar.gz=0388a96127eb6e53b836f7954af51ff62b84cdb7abeab823cb1349993d805b151204e426b9ac04ca8333fbd5e01c386d58bc37d34c4e9286b219dcda7542a150 ruby-3.3.4.tar.gz=56a0b88954a4efd0236626e49cc90cdb15d9bfd42b27d7fc34efae61f500058e58cb32c73fdef5f1505a36602f4632d6148bf3bd1df539cb5581ae157c78c22b ruby-3.3.5.tar.gz=5c482059628ef9de5d8a6ad4751f8043f2fc2b159b768265be7f3ee0574ad51d9500ee4fc9146c5978fbd51313039c3de39e7b7a4dedc9bcd5d09a41a713f1a7 ruby-3.3.6.tar.gz=4ae22f5c2a1f7ed84aab7587ff04ce4d9933cffe4347deaef0ab88d22c9780f274c1664a4ee1dd8235bc3cc749be828ffa8db7cb5f5002339a59a599acf3c729 ruby-3.3.7.tar.gz=9b48be05d1210e9194c8a6d77dfc3227599bff2b55fc9bb2049b11547927deef530ece9a2a505600cdc492c8517b1bef7ab5f2520ebd79ffcf76f0a734fa763d ruby-3.4.0-preview1.tar.gz=29c0e32179f7b823b6708f5328e495cd333fe8dd88f7df7d9051deab47add67b14d899bba565bba1a77e1b04c9693d9708541445c112925777bb6891cb7b2b62 ruby-3.4.0.tar.gz=bc70ecba27d1cdea00879f03487cad137a7d9ab2ad376cfb7a65780ad14da637fa3944eeeede2c04ab31eeafb970c64ccfeeb854c99c1093937ecc1165731562 ruby-3.4.1.tar.gz=93acc262e3b7cf86aeddebdad5b8938c187b9c44a73b0c252b6f873745964001459ae45ece7376745916e317c24895596a42b4544e836670fc6e90058e6f0de4 ruby-3.4.2.tar.gz=edc3aede0aadcaa62343f38ea6cab7adacedba810d883f1d9c3e6e24e28e24e0e27a7df2c8e517cc2aab940168fc4872ab8cad000598aab5940aa79072ac190b rubygems-2.6.11.tgz=3b0dd38c0aaf313c59e299dcf54f7bfb6e6d84b8b739573ddaf599e584da45ed7b1465f6521131b32f237e31a4796d9ef455b8be685064b3fd77a0355dfff13e rubygems-2.6.12.tgz=ebb672488b50f5fc988eab66ab14ce8e887dcc635f71239a85e32fbf1e919ca70196eb4d3f2fee3486cace7064bab0b8b08339c754b723198e1b0b0a0984ab54 rubygems-2.6.13.tgz=c952b6061a9a0778db304c3aa5bea693e71ae2564abfb19f8b123eef66eb1e3877fc7c36f4f1527da97bb320870cbfd4574ac57ad88e850a44fadd67ebdac152 rubygems-2.6.14.tgz=7743845bc5265df3782f85a23896cbb250d8a2bbc9934a27f274b001afa7aa62f7f00f616296f74747ea612d2cb37dd7f533c931aa72550d84c64d2a73d60daf rubygems-2.7.0.tgz=0bd08fbabcc33687c98365ffe6794ca2a5e82160b0297479d4f19bd899d176b7f4efb95248898b26d873f9fc7d86c10cada6e40cdc48738b0bac261c3aad261f rubygems-2.7.1.tgz=fa4ea123760b03b8b8e8ececc55c9dc34249073fb267d310bd903aa7a613267e5d27990bbf28e32c9a746bf884af8a84a0dc202297272f9d477f7710c21bfb60 rubygems-2.7.2.tgz=0f48c6e46663780a571c7ee0e6e772f2e18a755031e7dd8ede7870f238c214b9e3e38153b1ae8f1f78a9aad63c1a079b86573b3a25c57a600d842bdf92b9c4d1 rubygems-2.7.3.tgz=2782331b31947a23f85b285a3d5e7b66e34fe5847bc84dca4f1e6bfe33ce187ab0cbc814229de8111aa19490b656ca78b7c821e4ea6b425449991c01371b7565 rubygems-2.7.4.tgz=90f72a46709ef847666a6a23eecf24521abd5c294b2da8a246bb4c7f85daf4af39a0634fc8093c7bb7ded2ac137ea27fac5ed94af3b70c49e78594285c7a40ce rubygems-2.7.5.tgz=86957f1c438070135df527a15102e40487fcee93a55251463095e4c8794a8616d16ed9bdead0e0ef83c44806bd5016ecd9e178bef608b66af2e68e2c9c49e941 rubygems-2.7.6.tgz=bc168afc40c974dbc7c37eb5678432ba2ed7469c3f007a159699467ff2cff5205c508237193ee8becaa6eb555b043969cc5f92b2aaa6bf7c958dd7c187e258a7 rubygems-2.7.7.tgz=f93b7eacf5ef8725c40d618daf9deabc7e9eed74b3b7f13ecd16f89205fe24958e782314c52f8a8fe3205b93e20b830b4fbf7ff8944ff1cf56feb7de2d773252 rubygems-2.7.8.tgz=3d1cf68377dfcf102028342258aaff5a7257d2d2b34a80508c85aa258d810add46e65a157f902c271b0b7b568c437372d17246e89cd88f8500e47c008d17f1a6 rubygems-2.7.9.tgz=5f699f47bc24d8ffd4f8f44a509a9df71fcd945ca2574dc9d5050bfe06a44830a368f45d204112d7a4f1877e1600a6fe4d1b6b68f9a55288664667b4220a7d72 rubygems-2.7.10.tgz=48a18c0f202f463c38cf5dafecfbc7cc39245e63c7a059ef2cefadda478483794a929ea6b7e0ef062dd4423230746f1f09d7bec06a97fe3ceccc3325397a3e71 rubygems-3.0.0.tgz=047f4d446aae414e4803517088ef47d5cc66319ff08a3795c6d69e83eee9f3e7c3b05419858f7e5b6a8ec224990ca01178a9259961ef2d7ab737bac352a0f18d rubygems-3.0.1.tgz=dc29ad51ec67b1dca82a23973ea92153482788964d0755bdcd3c650116915c461c6e5fb1c826be3ee04a497fec4ac2826904bd406f24611e77cd8c9eaf4d8729 rubygems-3.0.2.tgz=90b46c2cd4f8baee74eb488a40691cc00e754cefc42029d485163d6ad7782df78ba5cbeab08eec6a4f71febe0f6e635e12a9381393008c58eb5e16396df93fbe rubygems-3.0.3.tgz=1dd585243341901c7b4cc60a4902000c10ce57fe2cc9c28e27e274a2e6029f936cde1c99d7097c93c2c5b2c8bcee5d692c8fe5cc00c996a040e4954b674e330e rubygems-3.0.4.tgz=887c64226ec0b32d33f2ea331936683406d54dc74d19e658a23521e25ab50aa23534fe9eecaf696154247ad1df1d24c233d8900b9aabc79096eebd6afef3f775 rubygems-3.0.5.tgz=f5a97cf67d7d043afba7c1aed014f1b64ff6376ea74d3d6533496bc5ca9742e0ccce1a157e6f67d8fcbe59d8e34bbfbcf4ed8be97acf2970603de6381043cb78 rubygems-3.0.6.tgz=1ef1822a2b19790a36a6d242b7d4584222617baa27787ec58961a9cfeb2733f19f9085490ffc72ee375d3153c7114e050c42e68fc8039e727fe5961b09365ee5 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=5dfb040b746e462c297ebcdf84e0f07cd74b86852055dcf0a7cf1814112099bc674bcccd94b03726aee76b253c9345a45d046cbfea230647644f0fd6b1c1ec96 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=17983c442c54d19196be3626e25c64f5474139c0b973624832ba8730efb047bc747c02e59c82f38397bf012c63ab83f79a9c1b64311cab796f08fe96d7d12a1a truffleruby-1.0.0-rc3-linux-amd64.tar.gz=b0b57082d61317911f101da617333d81ee6bede6b6e18f9bed86544dc413339c830198d90cad7ac94c0c8fb690adcfc559dd9f530abb70507ff6a76eee552b61 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=18f9782de56269389320ddad779ec69c168909198d4572e2ea4c18bc8082a539569a76760a6a6da58722fe08d77d83904aaba14baf4075a2833cbd2efc45dff3 truffleruby-1.0.0-rc5-linux-amd64.tar.gz=134d9ba5db7b8a1960d3a88390cd6f7503a0e8565094fb127333d122cd773bfbf9dc976c659029007e6fb68e93486293bac2ee29ab21dae9cb0c06ba57dd2c72 truffleruby-1.0.0-rc5-macos-amd64.tar.gz=5804f1f27916176f5a270de8aac85bc48c38ba37c4e719b09f5777e5c42429271819378cfe096c3cc33d406cd0726f2e37658020f97a438fd53751019831569a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=2597b375f590755b851d3b8cbad3eeab4c965eb02d0c944044f57e39f6c3db1e2f513e2aa55db789e4a885c697f81ce5c8bdbe9a7e44ee30fc09d234e44fb512 truffleruby-1.0.0-rc6-macos-amd64.tar.gz=2eb177190de0408dfdaf30264132955d1db7783ddfb63880d97d5933f66c5662794c3bb6198edf230fbff348674203e61f7f5481e74ac875974467f2f128e939 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=ab3a3dc19f903e68e36b135729693fa025a7c1950139277255e48c972387ef8399beceb3252ac37cc70c0df92838f8a0ba8c45f53665ac4286ef23f9b240806a truffleruby-1.0.0-rc7-macos-amd64.tar.gz=b8423f50a5292e211db7ebd7e2b987fd5c9eaaf34eba86b0644d2716a7f068f2e56deb4357c516b87b437e64fd5ce8515bc181165cc1042c6763f27d71baa59d truffleruby-1.0.0-rc8-linux-amd64.tar.gz=bcd05d304ee9b4da97193575fb1ad78041a0c7710bb444af6aef12ab4261b1873f472175ec51a187a5e99da481d66b81a132fb691643b793e87d655f31d54657 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=2c758221793c38ca8af1831a5d9f3abd555c406569508ac3a86d3c1ea5baeeacf65abb6e904ed3b1e58f555f51bc85ab171135ff4c3d0e08cdae994a861cbda4 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=42e60b69957f77a8623e0dccb7d215e800c27c622364fa76b9c574e8b1d3a4056a058b61ed91eac2375ecf4e51e482a6e17550aa2894a44d1db70687958033da truffleruby-1.0.0-rc9-macos-amd64.tar.gz=18556ee8d2fdec6907fbc8fc33d8b32ea0c58d40ee3df084ffb233e2fcd3a514a553f97c31dcc25dda3f86b1b805ca5fe3c9bf8cb078b92325515f09db6b88ba truffleruby-1.0.0-rc10-linux-amd64.tar.gz=10a7cb1be6214347469d5797091f73c3d7824bfb32a47c13566573a383380b1df9b79b7901ce0fa3af1c97285c90afac21e2de7a66ed88d9495846743b3b25e2 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=53f0939d9d8c3470cb79316d865b765816032528d77a3cf497134f3aa667a6253ae037410801261a8e7d0628198ac5f6aea5ecf9b7313f06ccc1d5e9f94e74ea truffleruby-1.0.0-rc11-linux-amd64.tar.gz=f89bc9a3310634d39f68006307da0b0ddafae036089bdd663e8372777a9562d201a4e69b2e1a602cff5fba6c78a8d4861b6d1020679bd0c72c71b938a4f36a27 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=3f461c12fa9fa57a55cc390eb9887df88f404661a77bffb44f82b4c7e9021513a6df9f6d5f332a36ce0c28ae7e3d5afbbe15cc4b814bc7f86dac2e5ec280f947 truffleruby-1.0.0-rc12-linux-amd64.tar.gz=85f042c308ccdfbeb318cec37056d8d970cab51cb0779425b85b8f76b0a1dd9cdec3191ae2b6b9b6be6e95767db814496450ed20076addd9bd495742f9de3c8c truffleruby-1.0.0-rc12-macos-amd64.tar.gz=067a0f63bbaaed4c8d4120f758c8ecf8c52afd1d30ea9d41489e26289d57a574d2d4ae29e29655378510adfb3f4a07b04b403d6ee98ee6b3d3aa8bff9c8d718f truffleruby-1.0.0-rc13-linux-amd64.tar.gz=1eb6b80cb05133d253f20629a11ed9ec3f37da002d5668cdc6577b2a20524e0cdd4d739d3f1aa2e8c518e2f7ebfd519ec1c647293714a1133ad4d569375c0e69 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=e3cddb0d0ae48f7d5ee4dd094ddb5a13f6a7aff1521b1adf25710971664b235cf67144e3b81525fd710dc49b6f6f6ba06e10eee1df5dc08119e9494c6be86934 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=c982194675b66a0433bd5517fc6f1564db669f595f8c7ba4819bf37e0599474d49a0c606577a898c27fa5ba40ab793c62d8211e7ea398d6b3e2bcc31eb5d55f4 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c14e396396385644333fb4c4aa1fb4b934a3f4e46312146821e5dcdaa097cb5b1efbf397c1dd6117d909803fd27ba8d835904672e98d43dc565e907fed752e1b truffleruby-1.0.0-rc15-linux-amd64.tar.gz=f27a75f929a6e945e49ceaad12f484fdaa918469a2f639b572fc4737b78e1cde0881697057e13a58b2fab7ac64c3a71bc9951561c3a8728e3dec814ef5e95fee truffleruby-1.0.0-rc15-macos-amd64.tar.gz=7aa029c4999d4608c9bcc491771b0434267032dbe9dbf504728079f87ce93e6a90e0fa839295b88c00e5a025186ed0fcc42361428b7874c05e222edb108d6c02 truffleruby-1.0.0-rc16-linux-amd64.tar.gz=e8c508dede11d4f54cf0b15cf92b50caad93076a6065bd2d6784c5ca739f5923ea2b894c6b2b52131f62187c8b305cd11a960fb5a670789802d59b6b2999f0af truffleruby-1.0.0-rc16-macos-amd64.tar.gz=841eff077c38bf594b101edb15942f601ba0dada2122b21b016f53251aa2a635b8d0b63b49bdfb50259b2545d1f498bca95d5f771a15a28edb0dd07216c9b709 truffleruby-19.0.0-linux-amd64.tar.gz=8ec6c7829351e0dc2cce57305947cd540734fe5a0b95b9501d4179993727ab2c331e9fb639b9865c0fed596df3906adf3dcf2efb22c4cfdd23a3dc2137025fd4 truffleruby-19.0.0-macos-amd64.tar.gz=912e0c15d32e40c884b2caaaf9a86a71450d441c960ef98a63dfce80353619073b146dcfe03d9af4273b2811d0899eebe922cc84a51d6f5e6826cc436d793f78 truffleruby-19.0.2-linux-amd64.tar.gz=eec92bfbd776acd61709a428b90b1029c5ea83e5ea839304d23cae3a541dd4fab3b387691fa76643f55d5939c9cac0cbe70dc0b5786e5e0e5d20f3fcd9a21356 truffleruby-19.0.2-macos-amd64.tar.gz=ce647b76c9931feac55baa5acd2c87d8335c606bc5cd7e462bd92ba1b09f4bab5db927f021e3119abfd85c33377003d060f36cf64eb121954fce8878112f01b5 truffleruby-19.1.0-linux-amd64.tar.gz=db01e6dc09fc5f39ca466aa94f725023d49a8f52343f129bf8c32b7f5f76ccf2d573ee3344fce3d5aff9983bc9af618cc5ca6e1dbba93b3f604e4f33f8a69b3f truffleruby-19.1.0-macos-amd64.tar.gz=f002bc0b6efca11eb97c4aa6df33d2e0fcc1de3443efd39d912b028df9dd8954cb76ef3ca7fbe140f4e922d6ae4c1a6a20853490ef1ea0749293e2fcd4ffe8fc truffleruby-19.1.1-linux-amd64.tar.gz=ec031e8c216e31f034d97aaccd6441869221d6946e18f375b44a866550b8e8eb4b2fb923f9ce1a62853bdcd5b9201e0f5d2732ca6525d80171d5732ef522bd25 truffleruby-19.1.1-macos-amd64.tar.gz=1c15918af939a8fe1779b71d9e53d2ce09ca7353173a3b357905d9fe1981ff013cf0f90c6b47e1ca66dd168c2f2d742f28a5fb134cc0231d36146da99f91c3cc truffleruby-19.2.0-linux-amd64.tar.gz=1248bdde9cd3651d7042fe4cecff4ad35534868d543fe2e6f3a5bfc3bc9d10d57b4139fc070f0a03861436a1aabc9a8ebdf3356f39b77a4b8f6a1dcf492f70a4 truffleruby-19.2.0-macos-amd64.tar.gz=92c3154ed229a115cf392826494745aae06dd9228dd0996c2c44c550552f13f9c254367d068452fa4a84eef79c19601c79b87e10f3121fd7b83b803514a41cfd truffleruby-19.2.0.1-linux-amd64.tar.gz=53c78cd1f255f2b7031a70a42b65c0bf80c510b9254f5d7ba82b4787f55f5b09cfa9544c424a90f4619a74179fed07c168bd501e34772ef836a773e89c467cc5 truffleruby-19.2.0.1-macos-amd64.tar.gz=ac11523cd49fac50de1e441039e429fb8cd6c7051d537e5083b64fa68eaa19c9f0a966b269da906c367985f229af82a4811282dbfd0a76ef6565162e1081a659 truffleruby-19.2.1-linux-amd64.tar.gz=c5ffc1b592a74e836a4f6ec75b0e103150a4a40d3183ae853ead38c951a85378163111cf0bd2b81e44548c0a7aeaded3ae8a7ae558d5a02dc9e2cce992b79b58 truffleruby-19.2.1-macos-amd64.tar.gz=bb467b91f66eb7d1e6f1a54a7bc0a3d9503bcbd935e8a02da9ea0b749a51e354b1140d4a4dad6fc05312b560bb9ccdcce4f6583bccd19bb5afee19bf494102fe truffleruby-19.3.0-linux-amd64.tar.gz=0e94777a3feabbf0107ed40847e20dd4e3696ff2b7c3f6ceddf3a53ccd812bd003c84c62a750e8fac9d2490374bf792d69174b48c3ed36b593485d86729136c1 truffleruby-19.3.0-macos-amd64.tar.gz=95470c389e24c865ecdc3d299005cd98f8221a128f3cd75f899b6b7ae5d6dc07962443ce0ff38dfd014589d5aaf08b718dc870a72eb7ea6ced18ec2b2db63095 truffleruby-19.3.0.2-linux-amd64.tar.gz=dc5309b71980657f750b4dd4f8b3bc4e191bc305b638b1e562ff5b0ad7fbba40079ba674caf46226a46b5ca58c10f812354786696264742f351b129fb088a672 truffleruby-19.3.0.2-macos-amd64.tar.gz=ff1c37485ebeff3edcc7081ce09bebe5541012dedff6997662c7f8a064e0ab10bef9a5cdf834263a06ae04ca0391743948bcdea6e6c9d7e1cfef9f21523c2bdb truffleruby-19.3.1-linux-amd64.tar.gz=c724547a9eacfdd135ce05eac9dcfe74e58a5e77c97f88103f83b8513c15c975a0ecf623f623a425ec81fad1b64d3b5e135660d6943608ad08048cda00eace79 truffleruby-19.3.1-macos-amd64.tar.gz=d746b2ad410c15d145d36c676a070ae454ba8e5ec6c594d5ebcf54b1fc719f98e8b8f71b6fd504c3d38df286bd11c5114f73b5ba39be312b11d42d4ca1a17d02 truffleruby-20.0.0-linux-amd64.tar.gz=4efea5ded5fcc6886befba3a3720fe1e5b2e376d46738565e8871a1ce0201a33ed52e78b8af2fb389618bdea99466d126d8537dd0919b0c13f8ff1940cb3e52e truffleruby-20.0.0-macos-amd64.tar.gz=b36488330514b77c7115689042cf2482a0beb9f72a0b05fb4c7a6ecb0835a3da47c3b15c41abd6ffced023e65ecf7eabcfbcc6e41901dcddd0fb3dfed46564c6 truffleruby-20.1.0-linux-amd64.tar.gz=116d57404540b85c15b321793a6f985624a2044af544e659b3607e50159703af5d445e22bff28ae2182dfa752f7500d420e250f6deccc98a2f01e89adba8ac3a truffleruby-20.1.0-macos-amd64.tar.gz=9b1267101dfe78b85c79f7528eb4de96b16933e66d5771efa6272372dac0fb35b199bb9d42773d61f4fa7a15d6cbd18b5753c148f7c3e477c7c4b21633f12b88 truffleruby-20.2.0-linux-amd64.tar.gz=a37eaf8475364b74d948979ac13dc6e6423bf11949ad1d0f2925f78a4495e80de9767001ccdb777c8cfd7f545839fad4d842522620c3acad179404bc4ce6752c truffleruby-20.2.0-macos-amd64.tar.gz=964c1e02cc53e1646060334a9911771e679a8344d811a0f77d5cae3529dfefff259c45505ac84b7debb958514cd5d2276ffd435802085494e0229dd140ce8f00 truffleruby-20.3.0-linux-amd64.tar.gz=ec2d8ff6a5d45fd7091e26430c67cbbdc0f8ffa41e9ac574d48802766fcd144e1f446db807700247ad6d8046b7ed070b5da70ef667e576d6fea60cc64ea5484f truffleruby-20.3.0-macos-amd64.tar.gz=1878f94e05a3c40484bf944a72412b179aa5415a16a7ebc1610cb512a1e1c4a2ce0e98685257ad6e5c14745245c35bb5b28205fb687292c4f17193cbfb3bb606 truffleruby-21.0.0-linux-amd64.tar.gz=b7d1b76cc015d136dbd74515431f4447730850475f81b00885b71b95819134db2656d941736048db42d519f03e1f2df066226513b77208adbdbbeda1f49cab11 truffleruby-21.0.0-macos-amd64.tar.gz=7677b827a9c1758d5f941c512cb0fe8daaa19c3db77b485d7dfa43940151d6b9094c4d9271e18ef5014630142dffb93d168c7ac631a3b5eef6fc61b2f9eecf88 truffleruby-21.1.0-linux-amd64.tar.gz=010e9fb78cab12486641780392be0f284da08dfd955f3a0d1ef72adb52e1c9024b54dc880173645aea2af680b3670a6bb01409198b757239edda4cd9bf2b1e90 truffleruby-21.1.0-macos-amd64.tar.gz=96ef8481faef1bfa7f01bb4d396818ef6f0943d19c6a23dedb68f8346740b72bf06efc707bdd29158cf991cc7073c97f429a07b02c2a48050512b46369850058 truffleruby-21.2.0-linux-amd64.tar.gz=c20af04909a852cb676c90403d852fb367d56eac0f9cf8ba42caa4cad1013ba393cc4611e434614ad132b7b0ed61160aadd887001b08de0767cf58f5e149efe7 truffleruby-21.2.0-macos-amd64.tar.gz=0b8d9633fde53aad78f0baf52858cd5a5716f53ff21698baab17da4a625b4369b88dbd664193e3f0d1b40e64c88699ab4f04bbe40f54189a588c93678962a7be truffleruby-21.2.0.1-linux-amd64.tar.gz=15ceeee383114f974aed5f16c99131d56947e13cfe248b97e55d61263ccd51aa56fc3e0df215196ef7f80ccba9e7f19e7f261d7a91d54bde2d9992caba682d82 truffleruby-21.2.0.1-macos-amd64.tar.gz=8a8762d90c19db4f48433ce0e3f3339e290685d79c6ee9bb7d4359c741edfa6a7360ff65124433d964730ac25b2cc6d8b581191b0a51479f11c2a80031a6c1c8 truffleruby-21.3.0-linux-amd64.tar.gz=b0c07b1ea797de92447a81b350d460c125a2efaff3c290637c4bcf1c216b5abd11148cfb143ad397062a96f36beade8234d0785c42f58fceac0011f629a5220b truffleruby-21.3.0-macos-amd64.tar.gz=42e607fa52a534123989ad232691ede65aa1c615f39320d93aa8ab9c21924eea7bc0aa49aef1a540ec972e2b3dc775d22a99eca3e0c9bc450c525f9020fbb975 truffleruby-22.0.0.2-linux-amd64.tar.gz=2231a0cfd27238c34ea0bbad27ba387453e48f39032607cbb829b347ea6ac804df15eb3f84d50b09248782d6202284498e7bc9aaa2060f0ce81bb83a84d700ad truffleruby-22.0.0.2-macos-amd64.tar.gz=1d7ac44f0862ad23cf17a7bba73d23dfd4727aadd9a3aa9633361e9bcd19655d163e160eae9c8db8ec9892f8fbf82d7a38b1cd689475bf41609a828208098623 truffleruby-22.1.0-linux-amd64.tar.gz=c4c2f9bf4236118c8ea62c08bad89e1034ecdfa0c4815693961c4d2b1b30ca043fe958abfec9cf36a8638aa2e005e71fcc244ebffd9ce11eb68cf48bd98c29d3 truffleruby-22.1.0-macos-amd64.tar.gz=507004ade838e614955e23331845839be656aaeae7869ed3d989c10e6491775a12313ac9ef03e14945f20f5e76d46ce6f7bb860af68a627c48065399cea3c567 truffleruby-22.2.0-linux-amd64.tar.gz=37c09249ef387df3e0614f646abb444cb5b7b2751538ab0432e703abe92a81b82e0d15f89d5ad7cd58afe5f30d9a92dc8471d19f1c1ce10b50478ac74f247739 truffleruby-22.2.0-linux-aarch64.tar.gz=49a7cfb4c81980d9c7a1588ef9f76a9bfb759d4b1925ab11f230d99c15a62e162a08249d23cf5646e2d38ecc2005e27103f2e5d92b83b0a182a4e64319b70c0d truffleruby-22.2.0-macos-amd64.tar.gz=d4c206fb0a5e63c5b7f61f2e62de854e4d0817075ef9ded237d98cd821c286e88d7b150d140d9907a957209f39be96c7025560e3908c89aa337925d2fba690af truffleruby-22.2.0-macos-aarch64.tar.gz=a01c18803777a74717ad699b6ee51eb759d881fb436d24338b557c52d4a693079d7b55f108394ccad0dd69c974cb895f4a36854355e84fecb67e41bf9eb18514 truffleruby-22.3.0-linux-amd64.tar.gz=d53472ae892dadc81c6fe63a597ccfb67e133958431b11716db4d920c78fc86f7496e4b10322d041c900bed77d27e02850da20aa95b297d63a9de2e72cdf3c76 truffleruby-22.3.0-linux-aarch64.tar.gz=dab63d49db4722f0c174ce8b882413102520ff649182946ba332ef5ba0fc6b58913595539a20b59e460faab2fba36f762dc8eb66aa729d4a6bb90feb2a95f053 truffleruby-22.3.0-macos-amd64.tar.gz=15c91d25fd6fb1d9f3f2a0b36676da5c8a76d62be86cff463ebe6c7e6aed2d9b6de9062021ab1b9b29cfb7a92b5682c860939acd71d12dba7e4a6bf3964fef3d truffleruby-22.3.0-macos-aarch64.tar.gz=7c44d0dd07e4ecd84a92f6dd574dc185906121b8eb75f6fe097b9d4738aa30751664d70e9027e072eeaa1dffa05fe7bcfc06be0c2dc950142f60664baf5eac69 truffleruby-22.3.1-linux-amd64.tar.gz=f41d3bd22500b7291121368169f8558df4563c840a01b70ff7feea3593f0152d8d77d4437af362bad62f25b79bce1ce8ddaa1bd8172a2a7ef8b61cdb6e478c9e truffleruby-22.3.1-linux-aarch64.tar.gz=1ca5221f0dc5ae3e0bd9545be474e115b2e62737701df95c6ee6cdaae5d82815acbe6af961ff23afee64dc26e655c7786d4347e3694c140773f065534322ee59 truffleruby-22.3.1-macos-amd64.tar.gz=bae16cc04c6018703833121f4258c3f18fa5062309d0600458be3c51c838bc63976a026db0f28d23005df9b640ccad0a9cafc56610a5ca9c24951c66b62097d9 truffleruby-22.3.1-macos-aarch64.tar.gz=b56e230d8fbc95d19364e695aaf1e552238b02ace7056f636808a7d7510777cddfde572ace5238ea1e314351bdd1a053ab3912d0889f51f55c722797c83eaaee truffleruby-23.0.0-preview1-linux-amd64.tar.gz=d538412f12d5ce743c351acbaa483b8b85dd2cf84fe06b3e90ca21f3c2fc0465df9c1773b3515fe4296d599f45e9cbb935dc5a69fe45668321e5639d58608ef4 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=f10b5ac749b11f93c2469f2c8a713ad090cb653761ae0a3e1ba4c19b0c96bd61c5e8da74d8944f9487c2d327d268a188f2cb56028d2beaca2a7816e63123600b truffleruby-23.0.0-preview1-macos-amd64.tar.gz=cd9db49c4253bd66cad6f9ae111c83d3befd0102a7ccb72a2407d22dc576ba7f3a26a90cd479f26dee3565d2f893a2b7c8b549e2351336f35d2632e57966657c truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=28b77d9943cd1617e0445633a9fea8911cfa975f5c581192439cd0944d2a17c2b0558e3e4112588b5fc77b57c48d857ad68ac51fcb867250625ad85406d87acc truffleruby-23.0.0-linux-amd64.tar.gz=da702de2e8c994f2646a3de5b44824210dbd37129cd2f91c3bdd990a1b0d0b05dee4443ad0f6cf98fdb4e489c9f4cde64f3561baf486dc642d4981a1a1812925 truffleruby-23.0.0-linux-aarch64.tar.gz=808254a154adcfd1bbd6e22bcdafebb6169c6f8cfd1c55382d446bb66002384ee844dcd8b5f642703ef440f7566645d190081f45e04a7d8d59bf87571cb4430a truffleruby-23.0.0-macos-amd64.tar.gz=f775d57e63c606eef424a1115408ed8539ef47d6bea0125ad1de7ee4fd5971e96747cb7f5d22d91d2f004edbd6ed6b9b5bd014127dc1abe7821a3a987a72d9dc truffleruby-23.0.0-macos-aarch64.tar.gz=000069854458f81d97eefe14123fbb69937942825e77d35602d55fa279123808177a34f252aec9dcfa48b93feacbee81ae0f0e7043c2d8a9ace2a4bb61ab253f truffleruby-23.1.0-linux-amd64.tar.gz=1868799d989c51798cf07b5243457af7ae2436dd19805fd634c98b2f1885266b5c3ec81dde668c2e5a290e9028f6f9fd223d153489df6ffcc74d45240aa020ad truffleruby-23.1.0-linux-aarch64.tar.gz=2766621877996ad35fddb94f978feed531307e8abf601dcf863754c96782b8149c3ac512dfe6dd2bdef0fe0e8a968bdd77608c41020434aaef4e7250c09edd74 truffleruby-23.1.0-macos-amd64.tar.gz=06c5a1d6ad644fd81737f0a1fd24c1529f712abe2a4485ad597aca7c35ca2af898121bb5883552cf518e2afdcb4221c8ad013759b46a69e34249e7c5ebe2b170 truffleruby-23.1.0-macos-aarch64.tar.gz=496cacc5cf413a48b60184e097a962ab5d2236c539f07cc0a9a2d9ef57dfc911a26b125cc3ad9408f6170c6f93c7562f35729c8313be0301972be21c10097942 truffleruby-23.1.1-linux-amd64.tar.gz=dbca85e281bf2484371a0bbcc202ca700acc704304d966b9202cf3835e82f6eb502e43522355f4c9e5a743877d93f5609006fbba2c5e6343a89de130e5209f6a truffleruby-23.1.1-linux-aarch64.tar.gz=6a58842d79247d8a64c513d68db9d53ea5640c02f71a1bc45f103baaaca67bb224939ae5f21ef55daa9d9b9697404052d39a3c382768ca366ab7892b8bf1abbe truffleruby-23.1.1-macos-amd64.tar.gz=7cc6bc957b7ffa42e9fbfe2f6e3014bf1e7996f2754e9e74377078c2c7bc7ac8e10598f1e1452839fc5b9583c823a2a735731ca193a6af2814a02566cc4cd9e4 truffleruby-23.1.1-macos-aarch64.tar.gz=a85b8189ef8a280f6a27d4c1c93893f844266dbdc15b8c4988cdf581613a353508fae4872ac9380efcc47f36357e137861521712c00ce8548041762a8987a9b2 truffleruby-23.1.2-linux-amd64.tar.gz=6307fd71fb1431fb12346d1f13dee4b3afe53947e8a9c1f3e3aa0baae5f9fc9e1496ede0a7d86b169d912ffef9625af998b4e698dc57a2a649140150e3fae28a truffleruby-23.1.2-linux-aarch64.tar.gz=0f0c5e4aa4e9fbc9b9f91d2b3d3fbfe26e78c5bc5b369fc78dd54775a7582b8c084a64f02848058bec79387fd80b09a5a5594ecfb268635fe76e1f9d957c2e92 truffleruby-23.1.2-macos-amd64.tar.gz=648401a73b29c28862a1fa077c2e1bf8fff65015c8bc690ff883a00a3dfd99389ffdb71f39ad85a4f16c531470f4cc891ae51ec927a426b0fa05fa85c9c6a2f9 truffleruby-23.1.2-macos-aarch64.tar.gz=4ec88684c09aacfa1d8bfed9a17243579ededacecd869e98e12841710bae29ed6e5f080611e53fc217a853f730bb2a9cb3d47ef15443eb8a1ad76a120118c8a5 truffleruby-24.0.0-linux-amd64.tar.gz=3a59a4dc58ad03549d8e63db1485767757715fc9aec21b2b67b1440b13871a04541abeff9bc8201b3088e1865360b1667459e536d3cfb09687dbffca95deafeb truffleruby-24.0.0-linux-aarch64.tar.gz=50f3993b7362bb6e7da80f7327df3d079bb02f98b67012e2135005d77e61648e4f3268f767d8ca245ec5889ff934fbcccb94fd5ecbd55bb0cd9cca900fe10509 truffleruby-24.0.0-macos-amd64.tar.gz=9ec8bb340b15e29550448e123e3ab0f183edb9bbe7e052743cb2306cbd1956a5789c5a367c80c5e8d913dce2b804448dd6815e4d3421515166daf8db51d37c7d truffleruby-24.0.0-macos-aarch64.tar.gz=499f83bf65dcb6ecc92414a3550673e6a0baaddfe3ab13c0bd7aa1bdde1ae2a61d9d0ca8001c0d12688d9e09f98f9e2946a651220fe7d200bb0ec6f285394701 truffleruby-24.0.1-linux-amd64.tar.gz=62b4e8508eba8cdaac70e99ac9cb0b33a663b4195d79b2dad3d771ef538c6c41d1d91bb7bb07fbbafbcbbcaf17814ffaf6d6bdbafd474ba6a8ecdac30315a8c9 truffleruby-24.0.1-linux-aarch64.tar.gz=817d877848ea4bb55658ce34bbda52926be12426a8a5e1c4588bc0ec1896018b06dce176336b382f80a7c6d073d4331b20694a7797ee8fdf0177e973053bf929 truffleruby-24.0.1-macos-amd64.tar.gz=2ea65bea154aa38cce3f00f24fc9a4aab5e7478fafd070d0cc966878371c070d5a1776b7405e2c9e4cfa14e5c51219ed0fa988294eb4708690983b348886f439 truffleruby-24.0.1-macos-aarch64.tar.gz=bc1923e21768d34779c1bcd7850456a01ddc01acd1ccf20f4fb4a446fb847f8c51b1ff4a7c0cdc317ef8ce057ac24f18f25b778a02a6e2b185e0055d946ecaf2 truffleruby-24.0.2-linux-amd64.tar.gz=5d111beb862b618c4e6a7f8aea1d3d6476740513efdd59bf980a2b6d525a017f46fe02017b075962a4919a001b60bd9a070e69fedfa8a85533c0adbad2a8d86b truffleruby-24.0.2-linux-aarch64.tar.gz=8e3ba19df4e5509c4719bc3bb621f70ca6a0e683d48a296703649b88abd83a165e8a64ad2d7dc45394b6de0b214a95a395fa449f5393dd9e67deab9e149cf494 truffleruby-24.0.2-macos-amd64.tar.gz=06d3b5533c4e26aa1356e602c672efad99208aaee96110904216e16dcfb1d99a7535c3ef275f9a14635dd2f05110798b3c75d71199f6010f23c92c6990492cef truffleruby-24.0.2-macos-aarch64.tar.gz=ba36d3f1680112e6623b14a4bb902a5f65f11e9827f44462161b1c79ee344ca340566289aa1f841c1e213daef5608c159343cc203d07f41c2a55eaeb25db0987 truffleruby-24.1.0-linux-amd64.tar.gz=9a93fd61086fabcb6c4f3a0fcb16e81f42b0203a24a04209fe446eb5f88d78e2ac59ab54d42cc30ef5417199a88b452973eecdfafc57c7877e11edf0a3d42b13 truffleruby-24.1.0-linux-aarch64.tar.gz=ca23edf279ee9b4693630df9596c6e269bb544e06bfd02620447f51108d9e9b4dc8b3ecbcc7a8ba1280560c0eb4b59474e75acead81799e4c51365acb5676d24 truffleruby-24.1.0-macos-amd64.tar.gz=65b661b3bf497bbb090a2cb49607aa00c3e5bfe95eb19c7736d798715d55fe07ddb4e8d8c25c1ec4b7b304b37205c7de9d8ac2d56005c9fc43e4dc81ae699c9b truffleruby-24.1.0-macos-aarch64.tar.gz=ab665d995bd63839c0bf6ed1171875cce7974d49ed79953a05ecdcf13d815c0a5cd471f40839f3f51a1b3128b40a4ed34d9b89e4c3f343b38c78276aed667956 truffleruby-24.1.1-linux-amd64.tar.gz=78e4e8bd910e4b3b41e927f6158cf8cfc74da5187969727d5c5303416310c5b7f72fde239993ecd5ab51724785cd80b2bb9a422a0475320fca57ad40b26d2786 truffleruby-24.1.1-linux-aarch64.tar.gz=c4e3aa72433622f96216b053862beb65861ab20ab28cfc50f51452720173f0a836ee69335281c4c89c6289ffa6f42517b9487d1b6fe16926aecfd9180d6f8195 truffleruby-24.1.1-macos-amd64.tar.gz=099d1abaa8677ecfd298e974fbb37e21bff2ad45313090cecf9a2799b79b74223ca4f95fb873cb7148bb2754ea3f923cfb553dd1dbdf6f1c088a3793bd991871 truffleruby-24.1.1-macos-aarch64.tar.gz=8980a71fc423c454ceaa16b46ba085a0164bf22e3e2040e960623148f09fea4c467b304774afc2ea37d9e072905eab3ad65b3c4acdc7b01ba238e24829cc16d2 truffleruby-24.1.2-linux-amd64.tar.gz=93e4ebdfb9c6a89681d8913a0e175b46c53124c37b0c15c6e032bcbf423def9205a6b288977772e50ba68c8fd06308c9478f22dc7c0385b41fc9989f68a86083 truffleruby-24.1.2-linux-aarch64.tar.gz=63a212ab48704376c1f6e6792da231f6b4ed8ffe1f77eff56b0f58ae8030866da6fcc19cd7068ec158c6e11840b13f47d2d12ba65b6a7f06ba1de6cb1b582fc4 truffleruby-24.1.2-macos-amd64.tar.gz=6cb535ce7fface14bdef86ad322992931ff809fbe781c0715774f279842b5f65d5e8ff4885858cf7a3ba345071509127f473381655f50d000e60c90a88eb11a0 truffleruby-24.1.2-macos-aarch64.tar.gz=a146c8000468c977fc48d8069e938ad6d32fd257d23133c2125f5bb86598d00283c654fc553d5de31ff9a79224f34b3b064bb223ff7766f9f2e25fcf7e263947 truffleruby-24.2.0-linux-amd64.tar.gz=ef5268859169ce3c584a7865a39928005dfa264e15dd84031a9ce874deaa31af067b1ef53712011911e7816da18bb085c783a10a4b2e45d3820e1b82d4855f86 truffleruby-24.2.0-linux-aarch64.tar.gz=7c9b29eae0d6db96c8106f286cb376dadfc0e93ded75b7eb333f0919f50edaf7b0b1e2c8634ae9bcb671611cd1084b75b598a8fbc1c79600b59e98964d1fd7a8 truffleruby-24.2.0-macos-amd64.tar.gz=7d54e9b475a2ba18bc78466c75dadf12514090fae74716358a310a339722c5425fb462eb30bfc1e4264e3586717a9647d91f4e07c6250dfb8e3d2de9004f48f5 truffleruby-24.2.0-macos-aarch64.tar.gz=81df31324c5f51650d8d321e3119672c90bd19c6abf61ded977e978cee387a69ee0eeb1ed6dcec6ca371baefe3df64e09bf1fb5eb06c61725557d7bdc62d6a5b
rvm/rvm
6d0ae86a9f4bbb0b2fcfbc78566fc6589314c7d7
Add TruffleRuby 24.2.0 (#5557)
diff --git a/CHANGELOG.md b/CHANGELOG.md index 744546f..5301631 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,600 +1,600 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Use OpenSSL 3 for Ruby 3.2 and 3.3 [\#5480](https://github.com/rvm/rvm/pull/5480) * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) * Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) * Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) * Install `libncurses-dev` instead of `libncurses5-dev` on newer Debian and Ubuntu versions [\#5477](https://github.com/rvm/rvm/pull/5477) * Use `zlib-ng-compat` packages for Fedora 40+ [\#5479](https://github.com/rvm/rvm/pull/5479) * Detect core count on ARM-based machines [\#5498](https://github.com/rvm/rvm/pull/5498) * Fix requirement check for Ubuntu [\#5500](https://github.com/rvm/rvm/pull/5500) * Update location of homebrew install script on osx [\#5505](https://github.com/rvm/rvm/pull/5505) * Fix detection of Homebrew's write permissions when using Workbrew [\#5528](https://github.com/rvm/rvm/pull/5528) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) * 3.3.3 [\#5474](https://github.com/rvm/rvm/pull/5474) * 3.3.4 [\#5488](https://github.com/rvm/rvm/pull/5488) * 3.2.5 [\#5490](https://github.com/rvm/rvm/pull/5490) * 3.3.5 [\#5499](https://github.com/rvm/rvm/pull/5499) * 3.2.6, 3.3.6 [\#5513](https://github.com/rvm/rvm/pull/5513) * 3.4.0, 3.4.1 [\#5533](https://github.com/rvm/rvm/pull/5533) * 3.3.7 [\#5540](https://github.com/rvm/rvm/pull/5540) * 3.2.7 [\#5544](https://github.com/rvm/rvm/pull/5544) * 3.4.2 [\#5549](https://github.com/rvm/rvm/pull/5549) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) -* 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1, 24.0.2, 24.1.0, 24.1.1, 24.1.2 +* 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1, 24.0.2, 24.1.0, 24.1.1, 24.1.2, 24.2.0 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.3.15.0 [\#5482](https://github.com/rvm/rvm/pull/5482) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) * 9.4.8.0 [\#5484](https://github.com/rvm/rvm/pull/5484) * 9.4.9.0 [\#5512](https://github.com/rvm/rvm/pull/5512) * 9.4.10.0 [\#5538](https://github.com/rvm/rvm/pull/5538) * 9.4.11.0 [\#5541](https://github.com/rvm/rvm/pull/5541) * 9.4.12.0 [\#5548](https://github.com/rvm/rvm/pull/5548) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) * 3.1.6, 3.2.5, 3.3.2, 3.3.3 and 3.3.4 [\#5491](https://github.com/rvm/rvm/pull/5491) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 24.04 (Noble Numbat) x64 binaries * 3.2.6 and 3.3.6 [\#5529](https://github.com/rvm/rvm/pull/5529) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) #### Upgraded Ruby interpreters: * Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159), 2.5.0-preview1 [\#4204](https://github.com/rvm/rvm/pull/4204), 2.2.9, 2.3.6, 2.4.3 and 2.5.0-rc1 [\#4261](https://github.com/rvm/rvm/pull/4261), 2.5.0 [\#4265](https://github.com/rvm/rvm/pull/4265), 2.6.0-preview1 [\#4317](https://github.com/rvm/rvm/pull/4317), 2.2.10, 2.3.7, 2.4.4, 2.5.1 [\#4340](https://github.com/rvm/rvm/pull/4340) and 2.6.0-preview2[\#4395](https://github.com/rvm/rvm/pull/4395) * Add support for Rubinius 3.85-3.100 * Add support for JRuby 9.1.14.0 [\#4224](https://github.com/rvm/rvm/pull/4224), 9.1.15.0 [\#4258](https://github.com/rvm/rvm/pull/4258), 9.1.16.0 [\#4316](https://github.com/rvm/rvm/pull/4316), 9.1.17.0 [\#4366](https://github.com/rvm/rvm/pull/4366), 9.2.0.0 [\#4390](https://github.com/rvm/rvm/pull/4390) * Add support for mruby 1.4.0 [\#4286](https://github.com/rvm/rvm/pull/4286) * Add support for MagLev 1.1* and 1.2Alpha-1.2Alpha4 [\#4289](https://github.com/rvm/rvm/pull/4289) * Add support for RubyGems 2.6.14 [\#4205](https://github.com/rvm/rvm/pull/4205), 2.7.0-2.7.4 [\#4276](https://github.com/rvm/rvm/issues/4276) and 2.7.5-6 #### Binaries: * Ubuntu 16.04 x64 binaries for Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4362](https://github.com/rvm/rvm/issues/4362), 2.2.9, 2.3.6 and 2.4.3 [\#4259](https://github.com/rvm/rvm/issues/4259), 2.2.8, 2.3.5 and 2.4.2 [\#4161](https://github.com/rvm/rvm/issues/4161), 2.5.0 [\#4272](https://github.com/rvm/rvm/pull/4272) * Ubuntu 17.04 for Ruby 2.1.\*, 2.2.\* [\#4233](https://github.com/rvm/rvm/pull/4233) ## [1.29.3](https://github.com/rvm/rvm/releases/tag/1.29.3) 10 September 2017 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.2...1.29.3) #### New features: * Add RVM commands missing in bash shell completion [\#4078](https://github.com/rvm/rvm/pull/4078) * Railsexpress patches for 2.3.4, 2.3-head [\#4084](https://github.com/rvm/rvm/pull/4084), 2.2.5 and 2.2.6 [\#4153](https://github.com/rvm/rvm/pull/4153) * Update `gem-wrappers` to 1.3.0: Show warnings when the target binary is missing or is not executable [gem-wrappers \#9](https://github.com/rvm/gem-wrappers/issues/9) * Detect Zorin OS as Ubuntu [\#4140](https://github.com/rvm/rvm/issues/4140) #### Bug fixes: * Infinite loop in `gemset_create` [\#4102](https://github.com/rvm/rvm/issues/4102) * Command not found `__rvm_remote_version` error [\#4085](https://github.com/rvm/rvm/pull/4085) * Fix path of version script in `environment` [\#4117](https://github.com/rvm/rvm/pull/4117) * Define `cd()`, `pushd()` and `popd()` properly when using zsh [\#4132](https://github.com/rvm/rvm/pull/4132) * Update gem-wrappers to 1.3.1: Avoid warnings for missing ruby binaries [\#4104](https://github.com/rvm/rvm/issues/4104) * Handles :engine=> and :engine_version=> in Gemfile * Makes $rvm_ruby_string is not installed searchable by adding a fixed keyword * Correctly quotes suggested install command * Fix path to version script in rvm-installer [\#4134](https://github.com/rvm/rvm/pull/4134) * Fix rvm autolibs status, fix [\#4123](https://github.com/rvm/rvm/issues/4123) * Ruby 2.3.x and older are not compatible with OpenSSL 1.1.x on Arch [\#4006](https://github.com/rvm/rvm/issues/4006) * Allow comments after ruby directive in Gemfile [\#4056](https://github.com/rvm/rvm/issues/4056) * Ruby 2.3/4 compilation fix for GCC 7 [\#4080](https://github.com/rvm/rvm/issues/4080) [\#4115](https://github.com/rvm/rvm/issues/4115) * Add warning for sudo users [\#4009](https://github.com/rvm/rvm/issues/4009) * Allows running RVM shell function in Bash with `set -o nounset` [\#4013](https://github.com/rvm/rvm/issues/4013) * Ensure `rvm_hooks_path` is set [\#3902](https://github.com/rvm/rvm/issues/3902) * Allow building static ruby with `--disbale-shared` [\#4091](https://github.com/rvm/rvm/issues/4091) * Restore detection of `gpg` command for veryfication of signatures [\#4059](https://github.com/rvm/rvm/issues/4059) * Update `gem-wrappers` to 1.3.2: Avoid nested chdir warnings [gem-wrappers \#11](https://github.com/rvm/gem-wrappers/pull/11) * Fix RVM folder cleanup during installation [\#4333](https://github.com/rvm/rvm/issues/4333) * Fix found project file reject reasons for bash -e [\#4314](https://github.com/rvm/rvm/pull/4314) #### Upgraded Ruby interpreters: * Add support for Rubinius 3.82, 3.83, 3.84 diff --git a/config/db b/config/db index 53c98fd..e75db65 100644 --- a/config/db +++ b/config/db @@ -1,154 +1,154 @@ # General default_ruby=ruby interpreter=ruby niceness=0 # # RVM # rvm_remote_server_path1=maven2/org/jruby/jruby-dist rvm_remote_server_url1=https://repo1.maven.org rvm_remote_server_url2=https://rubies.travis-ci.org rvm_remote_server_url=https://rvm-io.global.ssl.fastly.net/binaries # # RubyGems # gem_gem-empty_version=>=1.1.2 gem_gem-wrappers_version=>=1.4.0 gem_rdoc_version=>=4.1.1 gem_rvm_version=>=1.11.3.9 rubygems_repo_url=https://github.com/rubygems/rubygems.git rubygems_url=https://rubygems.org/rubygems rubygems_url_fallback_1=https://github.com/rubygems/rubygems/archive/v\1.tar.gz rubygems_url_fallback_1_pattern=https://rubygems.org/rubygems/rubygems-([[:digit:]\.]+).tgz rubygems_version=latest-3.0 # # Packages # autoconf_url=https://ftp.gnu.org/gnu/autoconf curl_url=https://github.com/bagder/curl/archive gettext_url=https://ftp.gnu.org/pub/gnu/gettext glib_url=http://ftp.gnome.org/pub/gnome/sources/glib/2.23 libiconv_url=https://ftp.gnu.org/pub/gnu/libiconv libxml2_url=ftp://xmlsoft.org/libxml2 libxslt_url=ftp://xmlsoft.org/libxslt llvm_url=https://llvm.org/svn/llvm-project/llvm/trunk mono_url=http://ftp.novell.com/pub/mono/sources/mono ncurses_url=https://ftp.gnu.org/pub/gnu/ncurses openssl_url=https://www.openssl.org/source/old/1.0.1 openssl_version=1.0.1i pkg-config_url=http://pkgconfig.freedesktop.org/releases readline_url=https://ftp.gnu.org/gnu/readline yaml_url=http://pyyaml.org/download/libyaml yaml_version=0.1.6 zlib_url=https://prdownloads.sourceforge.net/libpng # # CentOS / Fedora EPEL # epel5_i386_rpm=https://dl.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm epel5_key=https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-5 epel5_x86_64_rpm=https://dl.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm epel6_i386_rpm=https://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm epel6_key=https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-6 epel6_x86_64_rpm=https://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm epel7_key=https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-7 epel7_x86_64_rpm=https://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-8.noarch.rpm # # MRI Ruby # CentOS_5_ruby_1.8.7_patch_level=p374 CentOS_5_ruby_1.8.7_patch_level_warn=Warning, Centos 5 can not build head version of ruby, falling back to latest patchlevel, your ruby will be less secure because of this. CentOS_5_ruby_1.9.2_patch_level=p320 CentOS_5_ruby_1.9.2_patch_level_warn=Warning, Centos 5 can not build head version of ruby, falling back to latest patchlevel, your ruby will be less secure because of this. ruby_1.8.4_rubygems_version=1.3.5 ruby_1.8.5_patch_level=p231 ruby_1.8.5_rubygems_version=1.3.5 ruby_1.8.6_patch_level=p420 ruby_1.8.6_rubygems_version=1.3.7 ruby_1.8.7_patch_level=head ruby_1.8.7_rubygems_version=latest-2.0 ruby_1.9.1_patch_level=p431 ruby_1.9.1_rubygems_version=latest-1.8 ruby_1.9.2_patch_level=p330 ruby_1.9.3_patch_level=p551 ruby_2.0.0_patch_level=p648 ruby_head_rubygems_version=ignore ruby_repo_url=https://github.com/ruby/ruby.git ruby_unmaintained_date=2017-04-01 ruby_unmaintained_version=2.1.0 ruby_url=https://cache.ruby-lang.org/pub/ruby ruby_url_fallback_1=https://ftp.ruby-lang.org/pub/ruby ruby_version=3.4.1 # # REE # ree_1.8.6_patch_level=20090610 ree_1.8.6_repo_url=https://github.com/FooBarWidget/rubyenterpriseedition.git ree_1.8.6_rubygems_version=1.3.7 ree_1.8.6_url=http://rubyforge.org/frs/download.php/58677 ree_1.8.7_2010.02_url=https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/rubyenterpriseedition/ruby-enterprise-1.8.7-2012.02.tar.gz ree_1.8.7_patch_level=2012.02 ree_1.8.7_repo_url=https://github.com/FooBarWidget/rubyenterpriseedition187-330 ree_1.8.7_rubygems_version=latest-2.0 ree_1.8.7_url=https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/rubyenterpriseedition ree_configure_flags=--dont-install-useful-gems ree_version=1.8.7 # # Rubinius # rbx_1.0.0_patch_level=20100514 rbx_1.0.1_patch_level=20100603 rbx_1.1.0_patch_level=20100923 rbx_1.1.1_patch_level=20101116 rbx_1.2.0_patch_level=20101221 rbx_1.2.1_patch_level=20110215 rbx_1.2.2_patch_level=20110222 rbx_1.2.3_patch_level=20110315 rbx_1.2.4_patch_level=20110705 rbx_repo_url=https://github.com/rubinius/rubinius.git rbx_url=https://s3.amazonaws.com/asset.rubini.us rbx_url_2.0_and_newer=https://rubinius-releases-rubinius-com.s3.amazonaws.com rbx_version=4.1 # # MRuby # mruby_repo_url=https://github.com/mruby/mruby.git mruby_url=https://github.com/mruby/mruby/archive mruby_version=2.0.1 # # JRuby # jruby_repo_url=https://github.com/jruby/jruby.git jruby_url=https://repo1.maven.org/maven2/org/jruby/jruby-dist jruby_version=9.4.12.0 maven_version=3.5.0 # # TruffleRuby # truffleruby_url=https://github.com/oracle/truffleruby/releases/download -truffleruby_version=24.1.2 +truffleruby_version=24.2.0 # # MacRuby # macruby_0.10_url=http://macruby.macosforge.org/files macruby_nightly_url=http://macruby.jp/files/nightlies macruby_repo_url=https://github.com/MacRuby/MacRuby.git macruby_url=https://github.com/downloads/MacRuby/MacRuby macruby_version=0.12 # # Maglev # maglev_repo_url=https://github.com/MagLev/maglev.git maglev_url=http://seaside.gemtalksystems.com/maglev maglev_version=1.2Alpha4 # # IronRuby # ironruby_1.1.3_url=https://download-codeplex.sec.s-msft.com/Download/Release?ProjectName=ironruby&DownloadId=217153&FileTime=129445296766130000&Build=19727 ironruby_repo_url=https://github.com/ironruby/ironruby.git ironruby_version=1.1.3 # # Topaz # topaz_repo_url=https://github.com/topazproject/topaz.git topaz_url=https://d3sgc2zfsedosj.cloudfront.net topaz_version=head diff --git a/config/known b/config/known index 55acb88..000dea2 100644 --- a/config/known +++ b/config/known @@ -1,81 +1,81 @@ # MRI Rubies [ruby-]1.8.6[-p420] [ruby-]1.8.7[-head] # security released on head [ruby-]1.9.1[-p431] [ruby-]1.9.2[-p330] [ruby-]1.9.3[-p551] [ruby-]2.0.0[-p648] [ruby-]2.1[.10] [ruby-]2.2[.10] [ruby-]2.3[.8] [ruby-]2.4[.10] [ruby-]2.5[.9] [ruby-]2.6[.10] [ruby-]2.7[.8] [ruby-]3.0[.7] [ruby-]3.1[.5] [ruby-]3.2[.7] [ruby-]3.3[.7] [ruby-]3[.4.2] ruby-head # for forks use: rvm install ruby-head-<name> --url https://github.com/github/ruby.git --branch 2.2 # JRuby jruby-1.6[.8] jruby-1.7[.27] jruby-9.1[.17.0] jruby-9.2[.21.0] jruby-9.3[.15.0] jruby[-9.4.12.0] jruby-head # Rubinius rbx-1[.4.3] rbx-2.3[.0] rbx-2.4[.1] rbx-2[.5.8] rbx-3[.107] rbx-4[.20] rbx-5[.0] rbx-head # TruffleRuby -truffleruby[-24.1.2] +truffleruby[-24.2.0] # Opal opal # Minimalistic ruby implementation - ISO 30170:2012 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1[.4.1] mruby-2.0.1 mruby-2[.1.1] mruby[-head] # Ruby Enterprise Edition ree-1.8.6 ree[-1.8.7][-2012.02] # Topaz topaz # MagLev maglev-1.0.0 maglev-1.1[RC1] maglev[-1.2Alpha4] maglev-head # Mac OS X Snow Leopard Or Newer macruby-0.10 macruby-0.11 macruby[-0.12] macruby-nightly macruby-head # IronRuby ironruby[-1.1.3] ironruby-head diff --git a/config/known_strings b/config/known_strings index 671a92a..8852b22 100644 --- a/config/known_strings +++ b/config/known_strings @@ -69,512 +69,513 @@ jruby-1.7.2 jruby-1.7.3 jruby-1.7.4 jruby-1.7.5 jruby-1.7.6 jruby-1.7.7 jruby-1.7.8 jruby-1.7.9 jruby-1.7.10 jruby-1.7.11 jruby-1.7.12 jruby-1.7.13 jruby-1.7.14 jruby-1.7.15 jruby-1.7.16 jruby-1.7.16.1 jruby-1.7.16.2 jruby-1.7.17 jruby-1.7.18 jruby-1.7.19 jruby-1.7.20 jruby-1.7.20.1 jruby-1.7.21 jruby-1.7.22 jruby-1.7.23 jruby-1.7.24 jruby-1.7.25 jruby-1.7.26 jruby-1.7.27 jruby-9.0.0.0.pre1 jruby-9.0.0.0.pre2 jruby-9.0.0.0.rc1 jruby-9.0.0.0.rc2 jruby-9.0.0.0 jruby-9.0.1.0 jruby-9.0.2.0 jruby-9.0.3.0 jruby-9.0.4.0 jruby-9.0.5.0 jruby-9.1.0.0 jruby-9.1.1.0 jruby-9.1.2.0 jruby-9.1.3.0 jruby-9.1.4.0 jruby-9.1.5.0 jruby-9.1.6.0 jruby-9.1.7.0 jruby-9.1.8.0 jruby-9.1.9.0 jruby-9.1.10.0 jruby-9.1.11.0 jruby-9.1.12.0 jruby-9.1.13.0 jruby-9.1.14.0 jruby-9.1.15.0 jruby-9.1.16.0 jruby-9.1.17.0 jruby-9.2.0.0 jruby-9.2.1.0 jruby-9.2.2.0 jruby-9.2.3.0 jruby-9.2.4.0 jruby-9.2.4.1 jruby-9.2.5.0 jruby-9.2.6.0 jruby-9.2.7.0 jruby-9.2.8.0 jruby-9.2.9.0 jruby-9.2.10.0 jruby-9.2.11.0 jruby-9.2.11.1 jruby-9.2.12.0 jruby-9.2.13.0 jruby-9.2.14.0 jruby-9.2.15.0 jruby-9.2.16.0 jruby-9.2.17.0 jruby-9.2.18.0 jruby-9.2.19.0 jruby-9.2.20.0 jruby-9.2.20.1 jruby-9.2.21.0 jruby-9.3.0.0 jruby-9.3.1.0 jruby-9.3.2.0 jruby-9.3.3.0 jruby-9.3.4.0 jruby-9.3.6.0 jruby-9.3.7.0 jruby-9.3.8.0 jruby-9.3.9.0 jruby-9.3.10.0 jruby-9.3.11.0 jruby-9.3.13.0 jruby-9.3.14.0 jruby-9.3.15.0 jruby-9.4.0.0 jruby-9.4.1.0 jruby-9.4.2.0 jruby-9.4.3.0 jruby-9.4.4.0 jruby-9.4.5.0 jruby-9.4.6.0 jruby-9.4.7.0 jruby-9.4.8.0 jruby-9.4.9.0 jruby-9.4.10.0 jruby-9.4.11.0 jruby-9.4.12.0 macruby-0.12 maglev-1.0.0 maglev-1.1beta maglev-1.1beta2 maglev-1.1RC1 maglev-1.2Alpha maglev-1.2Alpha2 maglev-1.2Alpha3 maglev-1.2Alpha4 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1.4.0 mruby-1.4.1 mruby-2.0.0 mruby-2.0.1 mruby-2.1.0-rc mruby-2.1.0 mruby-2.1.1-rc mruby-2.1.1-rc2 mruby-2.1.1 rbx-1.0.0-20100514 rbx-1.0.1-20100603 rbx-1.1.0-20100923 rbx-1.1.1-20101116 rbx-1.2.0-20101221 rbx-1.2.1-20110215 rbx-1.2.2-20110222 rbx-1.2.3-20110315 rbx-1.2.4-20110705 rbx-1.3.2 rbx-1.3.3 rbx-1.4.1 rbx-1.4.3 rbx-2.0.0 rbx-2.1.0 rbx-2.1.1 rbx-2.2.0 rbx-2.2.2 rbx-2.2.3 rbx-2.2.4 rbx-2.2.5 rbx-2.2.6 rbx-2.2.7 rbx-2.2.8 rbx-2.2.9 rbx-2.2.10 rbx-2.3.0 rbx-2.4.0 rbx-2.4.1 rbx-2.5.0 rbx-2.5.1 rbx-2.5.2 rbx-2.5.3 rbx-2.5.4 rbx-2.5.5 rbx-2.5.6 rbx-2.5.7 rbx-2.5.8 rbx-3.70 rbx-3.71 rbx-3.72 rbx-3.73 rbx-3.74 rbx-3.75 rbx-3.76 rbx-3.77 rbx-3.78 rbx-3.79 rbx-3.80 rbx-3.81 rbx-3.82 rbx-3.83 rbx-3.84 rbx-3.85 rbx-3.86 rbx-3.87 rbx-3.88 rbx-3.89 rbx-3.90 rbx-3.91 rbx-3.92 rbx-3.93 rbx-3.94 rbx-3.95 rbx-3.96 rbx-3.97 rbx-3.98 rbx-3.99 rbx-3.100 rbx-3.101 rbx-3.102 rbx-3.103 rbx-3.104 rbx-3.105 rbx-3.106 rbx-3.107 rbx-4.0 rbx-4.1 rbx-4.2 rbx-4.3 rbx-4.4 rbx-4.5 rbx-4.6 rbx-4.7 rbx-4.8 rbx-4.9 rbx-4.10 rbx-4.11 rbx-4.12 rbx-4.13 rbx-4.14 rbx-4.15 rbx-4.16 rbx-4.17 rbx-4.18 rbx-4.19 rbx-4.20 rbx-5.0 ree-1.8.6-20080507 ree-1.8.6-20080621 ree-1.8.6-20080623 ree-1.8.6-20080624 ree-1.8.6-20080709 ree-1.8.6-20080810 ree-1.8.6-20081205 ree-1.8.6-20081215 ree-1.8.6-20090113 ree-1.8.6-20090201 ree-1.8.6-20090421 ree-1.8.6-20090520 ree-1.8.6-20090610 ree-1.8.6-20090928 ree-1.8.7-2009.10 ree-1.8.7-2010.01 ree-1.8.7-2010.02 ree-1.8.7-2011.01 ree-1.8.7-2011.02 ree-1.8.7-2011.03 ree-1.8.7-2011.12 ree-1.8.7-2012.02 ruby-1.8.5-p115 ruby-1.8.5-p231 ruby-1.8.6-p286 ruby-1.8.6-p287 ruby-1.8.6-p369 ruby-1.8.6-p383 ruby-1.8.6-p398 ruby-1.8.6-p399 ruby-1.8.6-p420 ruby-1.8.7-p160 ruby-1.8.7-p174 ruby-1.8.7-p248 ruby-1.8.7-p249 ruby-1.8.7-p299 ruby-1.8.7-p302 ruby-1.8.7-p330 ruby-1.8.7-p334 ruby-1.8.7-p352 ruby-1.8.7-p357 ruby-1.8.7-p358 ruby-1.8.7-p370 ruby-1.8.7-p371 ruby-1.8.7-p374 ruby-1.9.0 ruby-1.9.1-p129 ruby-1.9.1-p243 ruby-1.9.1-p376 ruby-1.9.1-p378 ruby-1.9.1-p429 ruby-1.9.1-p431 ruby-1.9.2-p0 ruby-1.9.2-p136 ruby-1.9.2-p180 ruby-1.9.2-p290 ruby-1.9.2-p318 ruby-1.9.2-p320 ruby-1.9.2-p330 ruby-1.9.3-preview1 ruby-1.9.3-rc1 ruby-1.9.3-p0 ruby-1.9.3-p125 ruby-1.9.3-p194 ruby-1.9.3-p286 ruby-1.9.3-p327 ruby-1.9.3-p362 ruby-1.9.3-p374 ruby-1.9.3-p385 ruby-1.9.3-p392 ruby-1.9.3-p429 ruby-1.9.3-p448 ruby-1.9.3-p484 ruby-1.9.3-p545 ruby-1.9.3-p547 ruby-1.9.3-p550 ruby-1.9.3-p551 ruby-2.0.0-preview1 ruby-2.0.0-preview2 ruby-2.0.0-rc1 ruby-2.0.0-rc2 ruby-2.0.0-p0 ruby-2.0.0-p195 ruby-2.0.0-p247 ruby-2.0.0-p353 ruby-2.0.0-p451 ruby-2.0.0-p481 ruby-2.0.0-p576 ruby-2.0.0-p594 ruby-2.0.0-p598 ruby-2.0.0-p643 ruby-2.0.0-p645 ruby-2.0.0-p647 ruby-2.0.0-p648 ruby-2.1.0-preview1 ruby-2.1.0-preview2 ruby-2.1.0-rc1 ruby-2.1.0 ruby-2.1.1 ruby-2.1.2 ruby-2.1.3 ruby-2.1.4 ruby-2.1.5 ruby-2.1.6 ruby-2.1.7 ruby-2.1.8 ruby-2.1.9 ruby-2.1.10 ruby-2.2.0-preview1 ruby-2.2.0-preview2 ruby-2.2.0-rc1 ruby-2.2.0 ruby-2.2.1 ruby-2.2.2 ruby-2.2.3 ruby-2.2.4 ruby-2.2.5 ruby-2.2.6 ruby-2.2.7 ruby-2.2.8 ruby-2.2.9 ruby-2.2.10 ruby-2.3.0-preview1 ruby-2.3.0-preview2 ruby-2.3.0 ruby-2.3.1 ruby-2.3.2 ruby-2.3.3 ruby-2.3.4 ruby-2.3.5 ruby-2.3.6 ruby-2.3.7 ruby-2.3.8 ruby-2.4.0-preview1 ruby-2.4.0-preview2 ruby-2.4.0-preview3 ruby-2.4.0-rc1 ruby-2.4.0 ruby-2.4.1 ruby-2.4.2 ruby-2.4.3 ruby-2.4.4 ruby-2.4.5 ruby-2.4.6 ruby-2.4.7 ruby-2.4.8 ruby-2.4.9 ruby-2.4.10 ruby-2.5.0-preview1 ruby-2.5.0-rc1 ruby-2.5.0 ruby-2.5.1 ruby-2.5.2 ruby-2.5.3 ruby-2.5.4 ruby-2.5.5 ruby-2.5.6 ruby-2.5.7 ruby-2.5.8 ruby-2.5.9 ruby-2.6.0-preview1 ruby-2.6.0-preview2 ruby-2.6.0-preview3 ruby-2.6.0-rc1 ruby-2.6.0-rc2 ruby-2.6.0 ruby-2.6.1 ruby-2.6.2 ruby-2.6.3 ruby-2.6.4 ruby-2.6.5 ruby-2.6.6 ruby-2.6.7 ruby-2.6.8 ruby-2.6.9 ruby-2.6.10 ruby-2.7.0-preview1 ruby-2.7.0-preview2 ruby-2.7.0-preview3 ruby-2.7.0-rc1 ruby-2.7.0-rc2 ruby-2.7.0 ruby-2.7.1 ruby-2.7.2 ruby-2.7.3 ruby-2.7.4 ruby-2.7.5 ruby-2.7.6 ruby-2.7.7 ruby-2.7.8 ruby-3.0.0-preview1 ruby-3.0.0-preview2 ruby-3.0.0-rc1 ruby-3.0.0 ruby-3.0.1 ruby-3.0.2 ruby-3.0.3 ruby-3.0.4 ruby-3.0.5 ruby-3.0.6 ruby-3.0.7 ruby-3.1.0-preview1 ruby-3.1.0 ruby-3.1.1 ruby-3.1.2 ruby-3.1.3 ruby-3.1.4 ruby-3.1.5 ruby-3.2.0-preview1 ruby-3.2.0-preview2 ruby-3.2.0-preview3 ruby-3.2.0-rc1 ruby-3.2.0 ruby-3.2.1 ruby-3.2.2 ruby-3.2.3 ruby-3.2.4 ruby-3.2.5 ruby-3.2.6 ruby-3.2.7 ruby-3.3.0-preview1 ruby-3.3.0-preview2 ruby-3.3.0-preview3 ruby-3.3.0 ruby-3.3.1 ruby-3.3.2 ruby-3.3.3 ruby-3.3.4 ruby-3.3.5 ruby-3.3.6 ruby-3.3.7 ruby-3.4.0-preview1 ruby-3.4.0 ruby-3.4.1 ruby-3.4.2 truffleruby-1.0.0-rc2 truffleruby-1.0.0-rc3 truffleruby-1.0.0-rc5 truffleruby-1.0.0-rc6 truffleruby-1.0.0-rc7 truffleruby-1.0.0-rc8 truffleruby-1.0.0-rc9 truffleruby-1.0.0-rc10 truffleruby-1.0.0-rc11 truffleruby-1.0.0-rc12 truffleruby-1.0.0-rc13 truffleruby-1.0.0-rc14 truffleruby-1.0.0-rc15 truffleruby-1.0.0-rc16 truffleruby-19.0.0 truffleruby-19.0.2 truffleruby-19.1.0 truffleruby-19.1.1 truffleruby-19.2.0 truffleruby-19.2.0.1 truffleruby-19.2.1 truffleruby-19.3.0 truffleruby-19.3.0.2 truffleruby-19.3.1 truffleruby-20.0.0 truffleruby-20.1.0 truffleruby-20.2.0 truffleruby-20.3.0 truffleruby-21.0.0 truffleruby-21.1.0 truffleruby-21.2.0 truffleruby-21.2.0.1 truffleruby-21.3.0 truffleruby-22.0.0.2 truffleruby-22.1.0 truffleruby-22.2.0 truffleruby-22.3.0 truffleruby-22.3.1 truffleruby-23.0.0-preview1 truffleruby-23.0.0 truffleruby-23.1.0 truffleruby-23.1.1 truffleruby-23.1.2 truffleruby-24.0.0 truffleruby-24.0.1 truffleruby-24.0.2 truffleruby-24.1.0 truffleruby-24.1.1 truffleruby-24.1.2 +truffleruby-24.2.0 diff --git a/config/md5 b/config/md5 index 5095539..5f0c7dc 100644 --- a/config/md5 +++ b/config/md5 @@ -1551,515 +1551,519 @@ ruby-1.8.6-p286.tar.bz2=e6b6bf8f34370e433936adb7a7065e63 ruby-1.8.6-p286.tar.gz=797ea136fe43e4286c9362ee4516674e ruby-1.8.6-p287.tar.bz2=80b5f3db12531d36e6c81fac6d05dda9 ruby-1.8.6-p287.tar.gz=6ff3420094711266c3201a0c7c2faa38 ruby-1.8.6-p369.tar.bz2=c3c1f3dd0dfbd2e17a04e59c2f12cfc8 ruby-1.8.6-p369.tar.gz=8c140ae28b4c3947b92dfad69109d90b ruby-1.8.6-p383.tar.bz2=a48703cd982b9f0e3002700a50b0e88e ruby-1.8.6-p383.tar.gz=4f49544d4a4d0d34e9d86c41e853db2e ruby-1.8.6-p398.tar.bz2=fbd43dc44ee26be4d37e6bebbed6f8bd ruby-1.8.6-p398.tar.gz=736db5f56c2d9b0136e563d049249fa8 ruby-1.8.6-p399.tar.bz2=f77c307cb72fb8808b0e85af5d05cefc ruby-1.8.6-p399.tar.gz=c3d16cdd3c1ee8f3b7d1c399d4884e33 ruby-1.8.6-p420.tar.bz2=1c7a978e9ffd4f56dc2ad74bbd2c34f3 ruby-1.8.6-p420.tar.gz=ca1eee44f842e93b5098bc5a2bb9a40b ruby-1.8.7-p160.tar.bz2=f8ddb886b8a81cf005f53e9a9541091d ruby-1.8.7-p160.tar.gz=945398f97e2de6dd8ab6df68d10bb1a1 ruby-1.8.7-p174.tar.bz2=88c45aaf627b4404e5e4273cb03ba2ee ruby-1.8.7-p174.tar.gz=18dcdfef761a745ac7da45b61776afa5 ruby-1.8.7-p248.tar.bz2=37e19d46b7d4b845f57d3389084b94a6 ruby-1.8.7-p248.tar.gz=60a65374689ac8b90be54ca9c61c48e3 ruby-1.8.7-p249.tar.bz2=37200cc956a16996bbfd25bb4068f242 ruby-1.8.7-p249.tar.gz=d7db7763cffad279952eb7e9bbfc221c ruby-1.8.7-p299.tar.bz2=244439a87d75ab24170a9c2b451ce351 ruby-1.8.7-p299.tar.gz=43533980ee0ea57381040d4135cf9677 ruby-1.8.7-p302.tar.bz2=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p302.tar.gz=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p330.tar.bz2=2689719fb42c8cf0aa336f8c8933f413 ruby-1.8.7-p330.tar.gz=50a49edb787211598d08e756e733e42e ruby-1.8.7-p334.tar.bz2=2f14f604bf981bb938ab5fc8b09eb1a6 ruby-1.8.7-p334.tar.gz=aacb6ee5dfe2367682bba56af7f415b8 ruby-1.8.7-p352.tar.bz2=0c61ea41d1b1183b219b9afe97f18f52 ruby-1.8.7-p352.tar.gz=0c33f663a10a540ea65677bb755e57a7 ruby-1.8.7-p357.tar.bz2=3abd9e2a29f756a0d30c7bfca578cdeb ruby-1.8.7-p357.tar.gz=b2b8248ff5097cfd629f5b9768d1df82 ruby-1.8.7-p358.tar.bz2=de35f00997f4ccee3e22dff0f2d01b8a ruby-1.8.7-p370.tar.bz2=1e4c3194537dd8ff92e756993e55a29d ruby-1.8.7-p371.tar.bz2=c27526b298659a186bdb5107fcec2341 ruby-1.8.7-p371.tar.gz=653f07bb45f03d0bf3910491288764df ruby-1.8.7-p374.tar.bz2=83c92e2b57ea08f31187060098b2200b ruby-1.8.7-p374.tar.gz=b72a0bc5b824398537762e5272bbb8dc ruby-1.9.0.tar.bz2=17eb66ac3721340d21db352d8f5dec76 ruby-1.9.1-p129.tar.bz2=6fa62b20f72da471195830dec4eb2013 ruby-1.9.1-p129.tar.gz=c71f413514ee6341c627be2957023a5c ruby-1.9.1-p243.tar.bz2=66d4f8403d13623051091347764881a0 ruby-1.9.1-p243.tar.gz=515bfd965814e718c0943abf3dde5494 ruby-1.9.1-p376.tar.bz2=e019ae9c643c5efe91be49e29781fb94 ruby-1.9.1-p376.tar.gz=ebb20550a11e7f1a2fbd6fdec2a3e0a3 ruby-1.9.1-p378.tar.bz2=5922459622a23612eb9b68a3586cb5f8 ruby-1.9.1-p378.tar.gz=9fc5941bda150ac0a33b299e1e53654c ruby-1.9.1-p429.tar.bz2=09df32ae51b6337f7a2e3b1909b26213 ruby-1.9.1-p429.tar.gz=0f6d7630f26042e00bc59875755cf879 ruby-1.9.1-p431.tar.bz2=03179138ae95dbfae872ef49e9cc6da7 ruby-1.9.1-p431.tar.gz=23f28cffc007ed5ac72c8e9bec6837ce ruby-1.9.2-p0.tar.bz2=d8a02cadf57d2571cd4250e248ea7e4b ruby-1.9.2-p0.tar.gz=755aba44607c580fddc25e7c89260460 ruby-1.9.2-p136.tar.bz2=52958d35d1b437f5d9d225690de94c13 ruby-1.9.2-p136.tar.gz=6e17b200b907244478582b7d06cd512e ruby-1.9.2-p180.tar.bz2=68510eeb7511c403b91fe5476f250538 ruby-1.9.2-p180.tar.gz=0d6953820c9918820dd916e79f4bfde8 ruby-1.9.2-p290.tar.bz2=096758c3e853b839dc980b183227b182 ruby-1.9.2-p290.tar.gz=604da71839a6ae02b5b5b5e1b792d5eb ruby-1.9.2-p318.tar.bz2=be431c6cbfa27e3836a06c6315717747 ruby-1.9.2-p318.tar.gz=cc7bf1025128e1985882ae243f348802 ruby-1.9.2-p320.tar.bz2=b226dfe95d92750ee7163e899b33af00 ruby-1.9.2-p320.tar.gz=5ef5d9c07af207710bd9c2ad1cef4b42 ruby-1.9.2-p330.tar.bz2=8ba4aaf707023e76f80fc8f455c99858 ruby-1.9.2-p330.tar.gz=4b9330730491f96b402adc4a561e859a ruby-1.9.3-p0.tar.bz2=65401fb3194cdccd6c1175ab29b8fdb8 ruby-1.9.3-p0.tar.gz=8e2fef56185cfbaf29d0c8329fc77c05 ruby-1.9.3-p125.tar.bz2=702529a7f8417ed79f628b77d8061aa5 ruby-1.9.3-p125.tar.gz=e3ea86b9d3fc2d3ec867f66969ae3b92 ruby-1.9.3-p194.tar.bz2=2278eff4cfed3cbc0653bc73085caa34 ruby-1.9.3-p194.tar.gz=bc0c715c69da4d1d8bd57069c19f6c0e ruby-1.9.3-p286.tar.bz2=e76848a86606a4fd5dcf14fc4b4e755e ruby-1.9.3-p327.tar.bz2=7d602aba93f31ceef32800999855fbca ruby-1.9.3-p327.tar.gz=96118e856b502b5d7b3a4398e6c6e98c ruby-1.9.3-p362.tar.bz2=13c26ea368d88a560f07cc8c5eb4fa05 ruby-1.9.3-p374.tar.bz2=944e73eba9ee9e1f2647ff32ec0b14b2 ruby-1.9.3-p385.tar.bz2=5ec9aff670f4912b0f6f0e11e855ef6c ruby-1.9.3-p392.tar.bz2=a810d64e2255179d2f334eb61fb8519c ruby-1.9.3-p392.tar.gz=f689a7b61379f83cbbed3c7077d83859 ruby-1.9.3-p429.tar.bz2=c2b2de5ef15ea9b1aaa3152f9112af1b ruby-1.9.3-p429.tar.gz=993c72f7f805a9eb453f90b0b7fe0d2b ruby-1.9.3-p448.tar.bz2=aa710d386e5903f78f0231868255e6af ruby-1.9.3-p448.tar.gz=a893cff26bcf351b8975ebf2a63b1023 ruby-1.9.3-p484.tar.bz2=03f5b08804927ceabe5122cb90f5d0a9 ruby-1.9.3-p484.tar.gz=8ac0dee72fe12d75c8b2d0ef5d0c2968 ruby-1.9.3-p545.tar.bz2=4743c1dc48491070bae8fc8b423bc1a7 ruby-1.9.3-p545.tar.gz=8e8f6e4d7d0bb54e0edf8d9c4120f40c ruby-1.9.3-p547.tar.bz2=5363d399be7f827c77bf8ae5d1a69b38 ruby-1.9.3-p547.tar.gz=7531f9b1b35b16f3eb3d7bea786babfd ruby-1.9.3-p550.tar.bz2=c2169c8b14ccefd036081aba5ffa96da ruby-1.9.3-p551.tar.bz2=0d8b272b05c3449dc848bb7570f65bfe ruby-1.9.3-preview1.tar.bz2=7d93dc773c5824f05c6e6630d8c4bf9b ruby-1.9.3-preview1.tar.gz=0f0220be4cc7c51a82c1bd8f6a0969f3 ruby-1.9.3-rc1.tar.bz2=26f0dc51ad981e12c58b48380112fa4d ruby-1.9.3-rc1.tar.gz=46a2a481536ca0ca0b80ad2b091df68e ruby-2.0.0-p0.tar.bz2=895c1c581f8d28e8b3bb02472b2ccf6a ruby-2.0.0-p195.tar.bz2=2f54faea6ee1ca500632ec3c0cb59cb6 ruby-2.0.0-p247.tar.bz2=60913f3eec0c4071f44df42600be2604 ruby-2.0.0-p353.tar.bz2=20eb8f067d20f6b76b7e16cce2a85a55 ruby-2.0.0-p451.tar.bz2=908e4d1dbfe7362b15892f16af05adf8 ruby-2.0.0-p481.tar.bz2=ea406a8d415a1a5d8365596d4288f3da ruby-2.0.0-p576.tar.bz2=eccd42d43620544a085c5e3834572f37 ruby-2.0.0-p594.tar.bz2=58469c0daf5f3a892a70cc674ea59c7f ruby-2.0.0-p598.tar.bz2=a3f3908103a7d209d1d1cf4712e3953c ruby-2.0.0-p643.tar.bz2=1390888cac6cd175e6f164eff378cdde ruby-2.0.0-p645.tar.bz2=d576240c97cfcc3ed9bdc457eb1e8280 ruby-2.0.0-p647.tar.bz2=27a3ea1a8b8bca1a6de43a7d08e88b69 ruby-2.0.0-p648.tar.bz2=3544031334f4665aa2eb1414babc9345 ruby-2.0.0-preview1.tar.bz2=47a0f662f0e258aa1c5e429c310861b3 ruby-2.0.0-preview2.tar.bz2=a645a783c3302cc094a9963a5e700a4d ruby-2.0.0-rc1.tar.bz2=24cebdda11e01ff4889ac983cd7dc02c ruby-2.0.0-rc2.tar.bz2=e92420131bd7994513e0bf09a3e2a19b ruby-2.1.0-preview1.tar.bz2=d32d1ea23988399afadbd21c5a7a37fc ruby-2.1.0-preview2.tar.bz2=9d566a9b2d2e7e35ad6125e2a14ce672 ruby-2.1.0-rc1.tar.bz2=cae095b90349b5b0f7026060cc3dd2c5 ruby-2.1.0.tar.bz2=1546eeb763ac7754365664be763a1e8f ruby-2.1.1.tar.bz2=53edc33b2f590ecdd9f6a344b9d92d0d ruby-2.1.1.tar.gz=e57fdbb8ed56e70c43f39c79da1654b2 ruby-2.1.2.tar.bz2=ed9b8565bdeccb401d628ec8d54a0774 ruby-2.1.2.tar.gz=a5b5c83565f8bd954ee522bd287d2ca1 ruby-2.1.3.tar.bz2=02b7da3bb06037c777ca52e1194efccb ruby-2.1.4.tar.bz2=f4136e781d261e3cc20748005e1740b7 ruby-2.1.5.tar.bz2=a7c3e5fec47eff23091b566e9e1dac1b ruby-2.1.6.tar.bz2=e1a8e6c6bfbb09bb7f8d6be8f508e4a1 ruby-2.1.7.tar.bz2=3a878e98311d543e5de3533b82ef4a5a ruby-2.1.8.tar.bz2=b17130b5f02a61640ae3b629af931610 ruby-2.1.9.tar.bz2=62bd1cbfcbc22e4d137462bce992f6d1 ruby-2.1.10.tar.bz2=5155c624807ff2418a9e9f15202954d0 ruby-2.2.0-preview1.tar.bz2=767b132eec3e70b14afe5884a7a767b1 ruby-2.2.0-preview2.tar.bz2=d7abace25a8ffe861cb2807bef1c58a6 ruby-2.2.0-rc1.tar.bz2=7144732d30dd4547c0a59862b3345d54 ruby-2.2.0.tar.bz2=d03cd4690fec1fff81d096d1c1255fde ruby-2.2.1.tar.bz2=06973777736d8e6bdad8dcaa469a9da3 ruby-2.2.2.tar.bz2=af6eb4fa7247f1f7b2e19c8e6f3e3145 ruby-2.2.3.tar.bz2=f49a734729a71774d4a94a9a603114b2 ruby-2.2.4.tar.bz2=c3d65f6d2ebe90dda81a37885ea244f5 ruby-2.2.5.tar.bz2=0c7edd1ff3650c3b74da2efaf641bf34 ruby-2.2.6.tar.bz2=3d13cf447142b8a11cd9beb7bc63fee0 ruby-2.2.7.tar.bz2=ca7224d80c08b015bc3b8c226d0914c3 ruby-2.2.8.tar.bz2=054d2e2904d5175662293e29c3bdb927 ruby-2.2.9.tar.bz2=575adf8ede6b1ca7236a5341e73536b0 ruby-2.2.10.tar.bz2=bef1909a4c885157870ef69548cdad3a ruby-2.3.0-preview1.tar.bz2=776000d74ec6dd34bf355ff6921c8311 ruby-2.3.0-preview2.tar.bz2=3ad442ccb337e77e4acaa4113f25b76a ruby-2.3.0.tar.bz2=f0d9f9bbdc87372ca98988a571875819 ruby-2.3.1.tar.bz2=c194281f63d7fcd816747fe78474be5e ruby-2.3.2.tar.bz2=9d00f3772f1c8fa5eecdfea089e3032f ruby-2.3.3.tar.bz2=04b9c461a2bc1eec0535ad1947cad4fb ruby-2.3.4.tar.bz2=99961e97566aee6d63635e2da4cf73ac ruby-2.3.5.tar.bz2=e1efc3d5a948ca1f552005efe5925513 ruby-2.3.6.tar.bz2=b2443b11ee80319a119f7ec0c9b8d79a ruby-2.3.7.tar.bz2=5eb580d5cd13ffb5aacfb96580c0043d ruby-2.3.8.tar.bz2=78045332e298dfd859ceef9fe946950f ruby-2.4.0-preview1.tar.bz2=64b8983b5f53d053906e394f734aa296 ruby-2.4.0-preview2.tar.bz2=1074e8dea5baa89af7f7c2d1d2b9ebaa ruby-2.4.0-preview3.tar.bz2=9f767e6bc61830735ea7dc9cd5a63653 ruby-2.4.0-rc1.tar.bz2=0f8b665acf4e883334adc121a42a206f ruby-2.4.0.tar.bz2=98f29161860fe1b6c65396717847a358 ruby-2.4.1.tar.bz2=07b2ae5d2f46321c95b37066c8415900 ruby-2.4.2.tar.bz2=5ff3ad6ec816bcce8806a55090936ab6 ruby-2.4.3.tar.bz2=ac8215ba561cc7c79b4f61daee11b706 ruby-2.4.4.tar.bz2=d994274eaa95b82aa5d31ec2188253c6 ruby-2.4.5.tar.bz2=45d70a8bb9397d818795ffe992163d27 ruby-2.4.6.tar.bz2=4abd13c50c1fc273a0a81a0ae74ed39f ruby-2.4.7.tar.bz2=1ce166ced489908993d78e8bb68325e0 ruby-2.4.8.tar.bz2=396d35f1a2d1deaf303f59cb5245d4ae ruby-2.4.9.tar.bz2=0b3447370651df55a2014a170c0cb1d5 ruby-2.4.10.tar.bz2=b10a7d2fcaf218c98edbaf57efc36e58 ruby-2.5.0-preview1.tar.bz2=889454189f41e271ae5ba15382911b6a ruby-2.5.0-rc1.tar.bz2=f5acdeacf56aced3c00ae6a8fa816bbc ruby-2.5.0.tar.bz2=63a6cd49546783d62de25a0ffc4aecc3 ruby-2.5.1.tar.bz2=5aaaf2fb4893214fa316516f3ac43519 ruby-2.5.2.tar.bz2=e90ab127e2ac3ee1d8840835e8ba1f13 ruby-2.5.3.tar.bz2=49aea0bf56d25351ccaf938c642400df ruby-2.5.4.tar.bz2=0c923215470f1debe593fe21e66fd37b ruby-2.5.5.tar.bz2=8f41b5cb683d48b5cb6cdfe03d135d6b ruby-2.5.6.tar.bz2=f2a74416ab3016434896194120796f04 ruby-2.5.7.tar.bz2=65597b69aa54bdca8745502c10349f96 ruby-2.5.8.tar.bz2=9ec96e7a590ef801ede294b6184c9c0f ruby-2.5.9.tar.bz2=9e905a545a729af1f1620ddfc2976fe5 ruby-2.6.0-preview1.tar.bz2=1ce507e27fa02aeb36100dabcf1da94f ruby-2.6.0-preview2.tar.bz2=e45011116334d21857b9e1712a01e6b3 ruby-2.6.0-preview3.tar.bz2=b326ceee3d3756f892515009e148f4b2 ruby-2.6.0-rc1.tar.bz2=40457a72e36cbecd0c51d9f895347302 ruby-2.6.0-rc2.tar.bz2=9665e6d886a9da2d4076fa75836798f1 ruby-2.6.0.tar.bz2=d3372daec93f83e7a91c669821053014 ruby-2.6.1.tar.bz2=73d19ac478db1a178be5ae2f2fb8c9ec ruby-2.6.2.tar.bz2=658fcc0da15578c2420ded807b11cce1 ruby-2.6.3.tar.bz2=52e609b756735115814b9c8463f185e2 ruby-2.6.4.tar.bz2=d9b35753c65f54c745ab6b0094511839 ruby-2.6.5.tar.bz2=d1b89c88effb71d75cd7ef77c35e1985 ruby-2.6.6.tar.bz2=abc030870bfbe18ae9c356abebd95cb6 ruby-2.6.7.tar.bz2=46f24740181f91247c72f19d52334379 ruby-2.6.8.tar.bz2=c53761123d17e929cfe248f50429bcab ruby-2.6.9.tar.bz2=ddc24495adaf215c8ee40630b4a55041 ruby-2.6.10.tar.bz2=6ad76db639ab308e3b6c19408729a0cf ruby-2.7.0-preview1.tar.bz2=82fab0496947acd847a6b2eb758acfc6 ruby-2.7.0-preview2.tar.bz2=966a544ab59114591898403c23d91397 ruby-2.7.0-preview3.tar.bz2=2fa6c213774744b287e7e0212b43f626 ruby-2.7.0-rc1.tar.bz2=48a8837cb352f5b95e97a1ae0d62a9d0 ruby-2.7.0-rc2.tar.bz2=cca58fdb8c5e8be8273842d54199c42d ruby-2.7.0.tar.bz2=89347748b7414f5bc7aeb8f4a87ebef4 ruby-2.7.1.tar.bz2=4bb2b2b2f0c6953859e30af140cf249a ruby-2.7.2.tar.bz2=a8acc9c24708fe29dfc287823ecaae65 ruby-2.7.3.tar.bz2=604acb258b1d8228f55799e846cfe6d3 ruby-2.7.4.tar.bz2=52705d799ed851dd3bfd5634265cde46 ruby-2.7.5.tar.bz2=d97d4377eee18b0e790510c3afed648c ruby-2.7.6.tar.bz2=1b6efacb9f129d0253d8a9faa9c21f99 ruby-2.7.7.tar.bz2=63c55e75150251d3ba092b662138e4af ruby-2.7.8.tar.bz2=f44dedf51fdb7441a7dba592d6a4a14d ruby-3.0.0-preview1.tar.gz=991df063b86a8f8412ca07f548579f39 ruby-3.0.0-preview2.tar.gz=ce14b24e923f2e269fea6441791a7248 ruby-3.0.0-rc1.tar.gz=848a8628c8abde270b66e2474049a4a3 ruby-3.0.0.tar.gz=d6af36269a1b0bc278236d371543ad97 ruby-3.0.1.tar.gz=8d1c460a9a9d48a353de3eb0f338bbfd ruby-3.0.2.tar.gz=b973af486291a1e17ad50d88472bfa86 ruby-3.0.3.tar.gz=9ecae293da9547c1438a970f04f64655 ruby-3.0.4.tar.gz=ec9de9a15acc4f205b08816d94267415 ruby-3.0.5.tar.gz=cdff2395625dc1d632fc5400c8fec103 ruby-3.0.6.tar.gz=6b5a7b14505697e6fc2b40b345679f40 ruby-3.0.7.tar.gz=147a3467facc704b5d479e809c131603 ruby-3.1.0-preview1.tar.gz=d131b9bca700ee87ea276f8233ea4c0b ruby-3.1.0.tar.gz=1ca89d713f2c18a20104befed51b3b9a ruby-3.1.1.tar.gz=702778a0ef8b7a01ef7530a541002e19 ruby-3.1.2.tar.gz=9daf064899cccc32fd564117c7a7e0dd ruby-3.1.3.tar.gz=cce38a2b2c589d59f440f67c7d8cc697 ruby-3.1.4.tar.gz=3e601ae6db76a487219a1084e5cb4c9c ruby-3.1.5.tar.gz=ce1e92ddb1230fa2d4f4367882542555 ruby-3.2.0-preview1.tar.gz=a83c91d53e130fe232e4c27ecc8738da ruby-3.2.0-preview2.tar.gz=56e7801b37612b82285c9a09cfeb28ce ruby-3.2.0-preview3.tar.gz=0ed16faae50403b4e2ba2e85ec2314a1 ruby-3.2.0-rc1.tar.gz=4657d7013702adce21ca21dfe71ea4a0 ruby-3.2.0.tar.gz=76ca7e7d71898ab1e85155d69403754e ruby-3.2.1.tar.gz=055101c924538467c63fcbf42abddc75 ruby-3.2.2.tar.gz=eb6f18605e1e1be5dfb5b45f31bf6a93 ruby-3.2.3.tar.gz=e0ba90554f7ea41c587ffa7fcfd064ca ruby-3.2.4.tar.gz=c48283a23c72d7aae19b7f510b89444a ruby-3.2.5.tar.gz=3bd6f2b26918c8637abf56c2f208833e ruby-3.2.6.tar.gz=fa9bd65bc429a43a3e6dda8ff0b97022 ruby-3.2.7.tar.gz=c72e290d57080f828156b5c24fe8e4ad ruby-3.3.0-preview1.tar.gz=0833f555b1b8d5423953600fb4146639 ruby-3.3.0-preview2.tar.gz=4f82f4c9e512ec0a53baa1be8d35ebf7 ruby-3.3.0-preview3.tar.gz=a32ede198a9da50d4afc4421a4a993ad ruby-3.3.0.tar.gz=f57422a0f995cd5a93c726f6c42c310a ruby-3.3.1.tar.gz=368e331a35145ace4948390ed76cf1df ruby-3.3.2.tar.gz=9a7efebc6a0e4810c716ec6d401dc372 ruby-3.3.3.tar.gz=beb9773cc4d9d8da29463ab175e4db28 ruby-3.3.4.tar.gz=f2e16c1a56e07e185214e85c62657941 ruby-3.3.5.tar.gz=ccad73b02d942d1e6b4c27873d4c08e4 ruby-3.3.6.tar.gz=51bcf91da64e5889e2e59c7adc7189c5 ruby-3.3.7.tar.gz=5fa3e653657d868e2c8377d2f3adb335 ruby-3.4.0-preview1.tar.gz=93b9b1040a2dd7be7514a7870aa7da03 ruby-3.4.0.tar.gz=2acf769caa47f692fea932ab81e75639 ruby-3.4.1.tar.gz=43e587b9a6de2a51dd1fa2613615542b ruby-3.4.2.tar.gz=120907785ecc0a84521e924cbda66af9 ruby-enterprise-1.8.6-20080507.tar.gz=17e3c52e73e42809f57ad0000a6cb4ab ruby-enterprise-1.8.6-20080621.tar.gz=626fc3811eee2dc92ac27ea63d37a8b2 ruby-enterprise-1.8.6-20080623.tar.gz=0bf8a3a93c6b37bb1260cc09b05e81fd ruby-enterprise-1.8.6-20080624.tar.gz=de58b97128aa65209f291c66eab7c4a7 ruby-enterprise-1.8.6-20080709.tar.gz=f0ded08cec64959fa388ec6a237b9c47 ruby-enterprise-1.8.6-20080810.tar.gz=bfdcf06f437af825cd9f2d321f9d1896 ruby-enterprise-1.8.6-20081205.tar.gz=50206bec9be2e08a862e5ec2e70fa693 ruby-enterprise-1.8.6-20081215.tar.gz=aab57b7d5061c1980bec5dbe311ec9b2 ruby-enterprise-1.8.6-20090113.tar.gz=e8d796a5bae0ec1029a88ba95c5d901d ruby-enterprise-1.8.6-20090201.tar.gz=a965e6789b553efaed72191825b13713 ruby-enterprise-1.8.6-20090421.tar.gz=c777b361aadccda7988be16ede7ab15f ruby-enterprise-1.8.6-20090520.tar.gz=156572a8296bd0440970a6bb95018a13 ruby-enterprise-1.8.6-20090610.tar.gz=0bf66ee626918464a6eccdd83c99d63a ruby-enterprise-1.8.7-2009.10.tar.gz=3727eef7b6b1b2f31db7d091328d966e ruby-enterprise-1.8.7-2010.01.tar.gz=587aaea02c86ddbb87394a340a25e554 ruby-enterprise-1.8.7-2010.02.tar.gz=4df7b09c01adfd711b0ab76837611542 ruby-enterprise-1.8.7-2011.01.tar.gz=4640634347cd8e5469cb718853e2112e ruby-enterprise-1.8.7-2011.02.tar.gz=8c5faa11c1ddaed3f44b7294711980cc ruby-enterprise-1.8.7-2011.03.tar.gz=038604ce25349e54363c5df9cd535ec8 ruby-enterprise-1.8.7-2011.12.tar.gz=1e5f3059d52a67ab5d91d472b756de08 ruby-enterprise-1.8.7-2012.02.tar.gz=8d086d2fe68a4c57ba76228e97fb3116 ruby-enterprise-1.8.7-20090928.tar.gz=ae00018ce89d95419dfde370fcd485ac rubygems-0.4.0.tgz=86a64616548a793e1a5f825f0dd385b9 rubygems-0.5.0.tgz=80d151edd94a06bcd2452a7e272b4d96 rubygems-0.6.0.tgz=5df803f5a04654833690dd32283de741 rubygems-0.6.1.tgz=c4a0faa9f876ad805ae80d1396a29d97 rubygems-0.7.0.tgz=ede9b55343219e8b3491793aa12c46f3 rubygems-0.8.0.tgz=9ef6e3c34dcb54e295c8e57321ddc079 rubygems-0.8.1.tgz=6276d268b420c0d61796cdbf6d28dae4 rubygems-0.8.3.tgz=6e6da80f61d6e77d0ad9e531767f6fd5 rubygems-0.8.4.tgz=a2ad2d03dae8a98002c2a7cd6c3ed352 rubygems-0.8.5.tgz=b917c084e1e6e99d8e102af8dd687ddb rubygems-0.8.6.tgz=9de98d2f62e3f91521b0207a4dcdeb5b rubygems-0.8.7.tgz=7fc04b9f9acc0c18cbbe6222be8d0bd3 rubygems-0.8.8.tgz=a8535e9c35a4c215d6ef9268d4bc69ed rubygems-0.8.10.tgz=d26592e280c0fb24c51f2837c3f48e67 rubygems-0.8.11.tgz=aa363b428c4c1fc2e076a4ff77b957d7 rubygems-0.9.0.tgz=5d496e1f415b8b4033ab867f01d1161f rubygems-0.9.1.tgz=a62314cdb174ccc88a27b8924fa79e4a rubygems-0.9.2.tgz=cc525053dd465ab6e33af382166fa808 rubygems-0.9.3.tgz=600940a22ecd79e28e0fd37ad1f1d871 rubygems-0.9.4.tgz=b5680acaa019c80ea44fe87cc2e227da rubygems-0.9.5.tgz=91f7036a724e34cc66dd8d09348733d9 rubygems-1.0.0.tgz=b0b74eac0cbfc5a13f895ab6f803edc1 rubygems-1.0.1.tgz=0d5851084955c327ee1dc9cbd631aa5f rubygems-1.1.0.tgz=85f994904c5b4045f0a859b29d0be717 rubygems-1.1.1.tgz=1a77c5b6b293a3ccd5261dc120641ccc rubygems-1.2.0.tgz=b77a4234360735174d1692e6fc598402 rubygems-1.3.0.tgz=63d3dfc038710eaf532b6a133225115a rubygems-1.3.1.tgz=a04ee6f6897077c5b75f5fd1e134c5a9 rubygems-1.3.2.tgz=6204d0a4c526a1d8fdbce746647b179a rubygems-1.3.3.tgz=0e9697db44d812712350baf28016b4a7 rubygems-1.3.4.tgz=b17b398503253bf36a101c58f02a226f rubygems-1.3.5.tgz=6e317335898e73beab15623cdd5f8cff rubygems-1.3.6.tgz=789ca8e9ad1d4d3fe5f0534fcc038a0d rubygems-1.3.7.tgz=e85cfadd025ff6ab689375adbf344bbe rubygems-1.4.1.tgz=e915dbf79e22249d10c0fcf503a5adda rubygems-1.4.2.tgz=b5badb7c5adda38d9866fa21ae46bbcc rubygems-1.5.0.tgz=49bef7186bf3c0ca6ee7adf4b585bccc rubygems-1.5.1.tgz=47577a5e33c9c6f1e3a56aff7f51d0ff rubygems-1.5.2.tgz=3951f94c09c16c774c8bcebc94fa5374 rubygems-1.5.3.tgz=38bbbdc17aef923fb41f054cf8421116 rubygems-1.6.0.tgz=abd27b5a9002100ff74ddb398a1c9689 rubygems-1.6.1.tgz=a77c64896aaa10d64aaf34f5c1488173 rubygems-1.6.2.tgz=0c95a9869914ba1a45bf71d3b8048420 rubygems-1.8.6.tgz=8e95d0c5b377a003f3d54a49461e81d9 rubygems-1.8.9.tgz=fc399445d693c29778779e5828ee5e90 rubygems-1.8.10.tgz=5b08ee31740c9b0bd36f6c04d537e7d4 rubygems-1.8.23.1.tgz=5259ce3eb7988950fa3aff9051a5de91 rubygems-1.8.23.2.tgz=fb377c7fd387df14a33e529153adc316 rubygems-1.8.23.tgz=178b0ebae78dbb46963c51ad29bb6bd9 rubygems-1.8.24.tgz=3a555b9d579f6a1a1e110628f5110c6b rubygems-1.8.25.tgz=1376a258d43c53750a8df30e67853e10 rubygems-1.8.26.tgz=0ea47f1efd010f4c82b8a51a934f48dc rubygems-1.8.27.tgz=6686ad26735c21d0d6e58b6192c7da5d rubygems-1.8.28.tgz=2df78039f391fb1f71c02c2fc5671c94 rubygems-1.8.29.tgz=a57fec0af33e2e2e1dbb3a68f6cc7269 rubygems-2.0.0.tgz=89ce467eb2d55657e9965a46559acbcf rubygems-2.0.1.tgz=2652ab6f001a873b8933e2ca09505974 rubygems-2.0.2.tgz=3471f140a70bcd32a7495b545cfce790 rubygems-2.0.3.tgz=854691f145cea98b4100e5b0831b73ed rubygems-2.0.4.tgz=3ec32dbe783bab37a87f50758f8efe13 rubygems-2.0.5.tgz=641d82672937d40d664dbc18f49cdcec rubygems-2.0.6.tgz=0633f50db16112bf6c3cf9bfb9ceb9bd rubygems-2.0.7.tgz=9046700f1222712fedfb836fafa08c50 rubygems-2.0.8.tgz=5432214a740c0d13482e43a5328a6518 rubygems-2.0.9.tgz=bc55898247297ffa190223276b1b1bd7 rubygems-2.0.10.tgz=5457ba403cd9a5f4f5fb2ef4a2a1c03e rubygems-2.0.11.tgz=0f28e3fde3348c0f23ceecba73a6cbef rubygems-2.0.12.tgz=99c416517e2de1146d2c6fbb4c4c1441 rubygems-2.0.13.tgz=3970e66a670ddb6d1aade9c7b18033d4 rubygems-2.0.14.tgz=4a7aa0b144e465230ab5d7b59dfd7e8f rubygems-2.1.0.tgz=9a9d242baef5e58fbfe79ec5206cd316 rubygems-2.1.1.tgz=b34d6f4028b69a84123a6b7cb0ac8028 rubygems-2.1.2.tgz=b5c5c4430be60f911014216d41886ef3 rubygems-2.1.3.tgz=ac7bbdfecd49f9304756aa5ebeb51400 rubygems-2.1.4.tgz=aa502b1ea90fbdd14ca9b32634795c2b rubygems-2.1.5.tgz=60564b762d4e186815997653b1c876ab rubygems-2.1.6.tgz=e11237a8f87dbd8c085770551d64a8f8 rubygems-2.1.7.tgz=b721ed7d5fd57ed05f77eb21a3a592ee rubygems-2.1.8.tgz=cc4c84c0482840389a457740e8083ed9 rubygems-2.1.9.tgz=2636bf26c0a9ec889c7bd938887bd9a3 rubygems-2.1.10.tgz=6fa671d7d6605de73d16f529cf7bffb8 rubygems-2.1.11.tgz=b561b7aaa70d387e230688066e46e448 rubygems-2.2.0.rc.1.tgz=f7d80b612339169569f2675155c202f1 rubygems-2.2.0.tgz=3c16e50673adb99d1ce76d5231f764bd rubygems-2.4.8.tgz=dc77b51449dffe5b31776bff826bf559 rubygems-2.6.10.tgz=ab5a0028d2a0653691b29d7463bd0892 rubygems-2.6.11.tgz=8d514b836fcf3ae2c20b4fe8d5cdc3c5 rubygems-2.6.12.tgz=7c454ef88b716c1a123f62b26bb9612b rubygems-2.6.13.tgz=e6f19b51614055d826e431549a12a80b rubygems-2.6.14.tgz=e0a6914ce03b91dfc6d448ebf292f145 rubygems-2.7.0.tgz=771c40015538c0f225c5249e4bc7d441 rubygems-2.7.1.tgz=65646f28f3c36ccaa7f991c17e15b8a9 rubygems-2.7.2.tgz=312a238ed98a61d2b3d165b790b6062b rubygems-2.7.3.tgz=fb3a1927a1842b75677a24f48dd63ddc rubygems-2.7.4.tgz=e9bbf5a4cc9a74293884b91f49603ea0 rubygems-2.7.5.tgz=516a4f219976003feb4b4f797cbc66b0 rubygems-2.7.6.tgz=366cea352c2b1243db726013c3d76fc4 rubygems-2.7.7.tgz=b6721f6ce4af08f68c6f513bbddfe484 rubygems-2.7.8.tgz=a3ed89a34e1ae8f9da0c620a8aa35f12 rubygems-2.7.9.tgz=173272ed55405caf7f858b6981fff526 rubygems-2.7.10.tgz=464754059d8ca01c1121a1233d866e8c rubygems-3.0.0.tgz=3908105894e531f7ad3aceb8b41dcbcd rubygems-3.0.1.tgz=1e8af9b87a67f15841ad2be7d5725a5f rubygems-3.0.2.tgz=d8db1b516ae1e35b8f6f56cb526f879a rubygems-3.0.3.tgz=b7a7dd5f85485334a6cb61b7dac20cff rubygems-3.0.4.tgz=7d0c49077a2d19f48d88567cfa3cf17a rubygems-3.0.5.tgz=4664467d621d719688e4778d147c306a rubygems-3.0.6.tgz=60d84e843b131fb87c8fd67e8fac6470 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=3e9afdf72f153e2f66259fc2b6fca594 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=c30459287aec83548cfcb17340fa73d5 truffleruby-1.0.0-rc3-linux-amd64.tar.gz=138f6814451ce634b0fae3aca5579248 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=94ed54ecb65bea2166a2159431b0362b truffleruby-1.0.0-rc5-linux-amd64.tar.gz=9e5428611e22b093d05afebbe0ccbc2b truffleruby-1.0.0-rc5-macos-amd64.tar.gz=b32a254fed71434c3431fb2effb35c5a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=7f394a8c7fe356b7bd36683c57f74ebd truffleruby-1.0.0-rc6-macos-amd64.tar.gz=f033329d03f1f846d25728c2af9d7524 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=184e98f2d6939f63db4b915943ff60c6 truffleruby-1.0.0-rc7-macos-amd64.tar.gz=d19213b33011f7a55e0f32d25e19184f truffleruby-1.0.0-rc8-linux-amd64.tar.gz=a394167c0331c6d8c1123e1f992e5411 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=dc1bf0fcfdd5837ae0ca56d6d6e5f7b0 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=f6ec25bd532bf0551d35327d1aa4caf9 truffleruby-1.0.0-rc9-macos-amd64.tar.gz=c80a345f9071521cf1961ab75ebc7dd1 truffleruby-1.0.0-rc10-linux-amd64.tar.gz=3a889726efcdf33feb7ef3df13fd5f39 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=bba618b4483b79eebf9f0e7af4078502 truffleruby-1.0.0-rc11-linux-amd64.tar.gz=a25e179ca0be96a1bc737a600729c195 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=bb8d8f5525e1ba86bb039e56291c6c7c truffleruby-1.0.0-rc12-linux-amd64.tar.gz=872774837057489250527bf863192115 truffleruby-1.0.0-rc12-macos-amd64.tar.gz=bb4a64e6c4882fd0c5e412bf9c57720b truffleruby-1.0.0-rc13-linux-amd64.tar.gz=0f36eed2eb36846785fdd4eae24adfa0 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=1bd3087a0f2df4c006b87c9488ada6d4 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=9eddd1aa98c9649e7c01bb10bf28c471 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c93643f1d00b370411310ee7a1dd5330 truffleruby-1.0.0-rc15-linux-amd64.tar.gz=bc7339a6218ea991f2c72ce8759cb6e3 truffleruby-1.0.0-rc15-macos-amd64.tar.gz=1671d08dd2f5026d58b326fd55c9b7de truffleruby-1.0.0-rc16-linux-amd64.tar.gz=5564d17f19b8ee0edb96ab5b1bfbda98 truffleruby-1.0.0-rc16-macos-amd64.tar.gz=61583b529b6a1337398b0966db952d24 truffleruby-19.0.0-linux-amd64.tar.gz=006220c7bde7d0b5c72481133624a83f truffleruby-19.0.0-macos-amd64.tar.gz=9ef7f5a311465d35e54ac6e00ec3d169 truffleruby-19.0.2-linux-amd64.tar.gz=2f7fe574e0695fb6001f4f5282aa2f79 truffleruby-19.0.2-macos-amd64.tar.gz=aa20f76b3eac1f4976a507364201d1ad truffleruby-19.1.0-linux-amd64.tar.gz=71368f8371069017d911528f052b0a55 truffleruby-19.1.0-macos-amd64.tar.gz=7f086adbc89fdfaed35273394ac3ac66 truffleruby-19.1.1-linux-amd64.tar.gz=c1ad4d17bb40e214b124222f3a7c6db6 truffleruby-19.1.1-macos-amd64.tar.gz=f4e76b0612319b4a82480cbd1fc90210 truffleruby-19.2.0-linux-amd64.tar.gz=458ed5fec1a849ef5b00e19b0e25d5e9 truffleruby-19.2.0-macos-amd64.tar.gz=dc324575ad20e3054980835c24ea7161 truffleruby-19.2.0.1-linux-amd64.tar.gz=ad7444145550d89931199159163077c1 truffleruby-19.2.0.1-macos-amd64.tar.gz=b5bcfb0aaded1e2d1763089ab6c9a14d truffleruby-19.2.1-linux-amd64.tar.gz=fc4879d2b0cc22c152a8bf893a72c346 truffleruby-19.2.1-macos-amd64.tar.gz=71448ff3f8f1da086f222751d3f853bc truffleruby-19.3.0-linux-amd64.tar.gz=dd44ac30b5a1ef3a7d61172cda9b30b6 truffleruby-19.3.0-macos-amd64.tar.gz=41daa52f0f308abb77a2b91c1b7e0f3d truffleruby-19.3.0.2-linux-amd64.tar.gz=2db2cb5c29523c9bdb6f59dfa0bd74ce truffleruby-19.3.0.2-macos-amd64.tar.gz=edf1603643938686dce57139aadf7d3c truffleruby-19.3.1-linux-amd64.tar.gz=a14c028351f7a3965bcb56e9b22364de truffleruby-19.3.1-macos-amd64.tar.gz=a8707d0af3eda694ec07a5387d3443fb truffleruby-20.0.0-linux-amd64.tar.gz=b30110ecbc50c4fce402fdf44c45dad5 truffleruby-20.0.0-macos-amd64.tar.gz=0671e5909cefb9a2c12c473fc0110821 truffleruby-20.1.0-linux-amd64.tar.gz=4592b5fc3636d82fc998ab6fe0a43584 truffleruby-20.1.0-macos-amd64.tar.gz=3c0be43db86817c7037d3ff5053d322d truffleruby-20.2.0-linux-amd64.tar.gz=e9859decb24829f9a189d88b3c2e9b79 truffleruby-20.2.0-macos-amd64.tar.gz=49e7ccf8f9e60d6c59b3b07b854466cf truffleruby-20.3.0-linux-amd64.tar.gz=93a20845f7d9d39100761424dfc0a734 truffleruby-20.3.0-macos-amd64.tar.gz=b178b7a94fac58400450417612fe3441 truffleruby-21.0.0-linux-amd64.tar.gz=c03304a505c8699e697acecf5030d95f truffleruby-21.0.0-macos-amd64.tar.gz=019796be37a58ef8e186a625f2ff5d07 truffleruby-21.1.0-linux-amd64.tar.gz=065bfcc48f6925410e0da21e16428b64 truffleruby-21.1.0-macos-amd64.tar.gz=325f6854c10d8a3a114c80da582c469f truffleruby-21.2.0-linux-amd64.tar.gz=0aec44721a040845347f18c1f72ceb75 truffleruby-21.2.0-macos-amd64.tar.gz=76d27715b20902df5779f7a0c00852b1 truffleruby-21.2.0.1-linux-amd64.tar.gz=f68e9b8a9f9cae5efc5ac45a7d9e760d truffleruby-21.2.0.1-macos-amd64.tar.gz=b021e50fc94cab590b49d27f2ea821b0 truffleruby-21.3.0-linux-amd64.tar.gz=359aca79cba4e08f9955d9c6543c2189 truffleruby-21.3.0-macos-amd64.tar.gz=d9e2e2c6fcd3ac16f0c37b0ccffb4f41 truffleruby-22.0.0.2-linux-amd64.tar.gz=324327026e9b2963a8e5fb4ee3f4e216 truffleruby-22.0.0.2-macos-amd64.tar.gz=7029d0e291d498a264d9b413729a3e17 truffleruby-22.1.0-linux-amd64.tar.gz=9329cf507ba8ac529e93156cacc1425d truffleruby-22.1.0-macos-amd64.tar.gz=353242978b46cafc34b05e2c81206096 truffleruby-22.2.0-linux-amd64.tar.gz=5d676377056ae94fe847be721c20405b truffleruby-22.2.0-linux-aarch64.tar.gz=b774f4b7d330842521f1e6e56cb41db5 truffleruby-22.2.0-macos-amd64.tar.gz=e45fdd9a05aec6220a76fb707b0a5ae8 truffleruby-22.2.0-macos-aarch64.tar.gz=ebcbfe056d90d06de4bd0a9d699bad8f truffleruby-22.3.0-linux-amd64.tar.gz=ada8bc5dc52aca8317eaeab04d91e877 truffleruby-22.3.0-linux-aarch64.tar.gz=11493301d5519aa73e8f0e140cefb581 truffleruby-22.3.0-macos-amd64.tar.gz=9e27c677637b69b0460fb0a4569a5cca truffleruby-22.3.0-macos-aarch64.tar.gz=eaa1c9020b521226f8bb48b8c7e5c596 truffleruby-22.3.1-linux-amd64.tar.gz=243d926f038fd2220c03dfbe40ef58c3 truffleruby-22.3.1-linux-aarch64.tar.gz=01487fe680863381489bf2a0a2ac162b truffleruby-22.3.1-macos-amd64.tar.gz=b3d5a777d94856e51034d81076e8ef72 truffleruby-22.3.1-macos-aarch64.tar.gz=320ce75730a5b9f16f111eb7ef5e4e09 truffleruby-23.0.0-preview1-linux-amd64.tar.gz=76c1cb23ee63ba4de93a0c23784bfca9 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=eec3fc74565f08e9468982692f7f9010 truffleruby-23.0.0-preview1-macos-amd64.tar.gz=50e38f3cd548dfe78f397f76ed577bf1 truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=b769bcf9b843d9b2980def1e2139284f truffleruby-23.0.0-linux-amd64.tar.gz=6e1a491406c5dbf42de10fcb3ed7dc1c truffleruby-23.0.0-linux-aarch64.tar.gz=5c3663f64bee707173b2684355a9a42e truffleruby-23.0.0-macos-amd64.tar.gz=515a9a8a0f39ba9399e869cd418ebff5 truffleruby-23.0.0-macos-aarch64.tar.gz=57e5fa52270e692b82c445107fe6b6a6 truffleruby-23.1.0-linux-amd64.tar.gz=f7511c19045e57e72f9b5415bc17c8e8 truffleruby-23.1.0-linux-aarch64.tar.gz=e8a20dd919a2ff77b7cc5457e853d15d truffleruby-23.1.0-macos-amd64.tar.gz=d3b6a3cbc0a230ebae6f3a462a32ddd3 truffleruby-23.1.0-macos-aarch64.tar.gz=ee74fc5d192c2fb8afd0458d2d429c02 truffleruby-23.1.1-linux-amd64.tar.gz=d7e1c040da170aaa36b5f5a1d106d237 truffleruby-23.1.1-linux-aarch64.tar.gz=cf508ba3787be20c03bac690f3bdbac5 truffleruby-23.1.1-macos-amd64.tar.gz=a662a8672871524808500dddef3808c1 truffleruby-23.1.1-macos-aarch64.tar.gz=de543312024993a533e3caa63b396127 truffleruby-23.1.2-linux-amd64.tar.gz=e3e5b01b291d7fea61be2be842c7e8dc truffleruby-23.1.2-linux-aarch64.tar.gz=8fe26f643fa81eec6de3bde7024c858a truffleruby-23.1.2-macos-amd64.tar.gz=83bc41bf699fa847df7e60412bee2823 truffleruby-23.1.2-macos-aarch64.tar.gz=7dbd2e182cfec0cf2d2e37784721903f truffleruby-24.0.0-linux-amd64.tar.gz=202f05706d28faca75d5e3cd0f9bef78 truffleruby-24.0.0-linux-aarch64.tar.gz=4faaf4edde4f6a516246b7c2f4ee80b3 truffleruby-24.0.0-macos-amd64.tar.gz=d07f27e0e29398c6de836b0049105c12 truffleruby-24.0.0-macos-aarch64.tar.gz=10cf176718968893468caba617c02141 truffleruby-24.0.1-linux-amd64.tar.gz=2914bfb81b136cd1fb5736c0a40068e3 truffleruby-24.0.1-linux-aarch64.tar.gz=429e6ada9a95ea23ebb95d01f90eb0f4 truffleruby-24.0.1-macos-amd64.tar.gz=e3aa5ab128f5d169d93f2d6df98c4e77 truffleruby-24.0.1-macos-aarch64.tar.gz=6f81a1afe1b89a40f00c9bd4216ec45d truffleruby-24.0.2-linux-amd64.tar.gz=1a826ea6323a25becce5940d8e6c4642 truffleruby-24.0.2-linux-aarch64.tar.gz=45429f35653bd8cbc328eafe81d15e8a truffleruby-24.0.2-macos-amd64.tar.gz=f68aeb26783d048ae5f78e1c13739747 truffleruby-24.0.2-macos-aarch64.tar.gz=df05f94696b4f4584a259001a3d4d1d0 truffleruby-24.1.0-linux-amd64.tar.gz=14aa05250088f17491072e500c22c039 truffleruby-24.1.0-linux-aarch64.tar.gz=3e26495f8aa7b810ec5794a69e93483a truffleruby-24.1.0-macos-amd64.tar.gz=53b6251cdd359176f9e52fe05f05e949 truffleruby-24.1.0-macos-aarch64.tar.gz=28d61b8a1a307cbdf988313c8a1f77f1 truffleruby-24.1.1-linux-amd64.tar.gz=9ef530c2ac5f597100e69e4b374182c3 truffleruby-24.1.1-linux-aarch64.tar.gz=efcc6f5c51be84d2ec99e6cebccc586a truffleruby-24.1.1-macos-amd64.tar.gz=11e2f0f62c55fcc8330cd66393abb1fc truffleruby-24.1.1-macos-aarch64.tar.gz=eaba15df3e46cd3976bedaf6f086aae2 truffleruby-24.1.2-linux-amd64.tar.gz=ada406523c5cf80f7655a9314902e2b5 truffleruby-24.1.2-linux-aarch64.tar.gz=5a5dc457002a8a65b21264efd0387d5b truffleruby-24.1.2-macos-amd64.tar.gz=cb6142250e4b0b2b164ffa7ce47d5f29 truffleruby-24.1.2-macos-aarch64.tar.gz=f73e0af905cabe695b0fe6c73df699a1 +truffleruby-24.2.0-linux-amd64.tar.gz=326d5bc6b5232c88e00837d30884ba52 +truffleruby-24.2.0-linux-aarch64.tar.gz=391fa212eaff207df31860a291fee28e +truffleruby-24.2.0-macos-amd64.tar.gz=0e21c5233ac4a20c4221900c79602496 +truffleruby-24.2.0-macos-aarch64.tar.gz=9573cceaf4e1d6444cff0fda3695228a yaml-0.1.4.tar.gz=36c852831d02cf90508c29852361d01b zlib-1.2.3.tar.gz=debc62758716a169df9f62e6ab2bc634 zlib-1.2.5.tar.gz=c735eab2d659a96e5a594c9e8541ad63 diff --git a/config/sha512 b/config/sha512 index 730b804..470c999 100644 --- a/config/sha512 +++ b/config/sha512 @@ -1254,512 +1254,516 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.7.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.8.tar.bz2=1a30bbda34fee311762a2f05ac7fbcfb4f373f8840f86b9762b0c07f1cd397e3eb3be83210221384333b625a243c7161ef4f368602a613760391265309e4f304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.0.tar.bz2=edf31b2dd02208c96be25c2f4f7d35e2b122e5d327133545e16038836b848b90f81079be4df47c5493bf4ead1d464fa72a8d0d405bb2509ab0db6335c58ff793 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.1.tar.bz2=91cc7a9cf493c7361f3d507cdbb8e258b7dd710100cca8053b77569c07c04fbc2f72fdceb9fd9a3a5d01f4c423a206da97730c356d017157bc2454041e1f1fd4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.2.tar.bz2=8ea603a27560ddde5fc639b86381a303f886ce80384d8edd0e7bc806f10649760d75a76dd5f2ee445371254e727544ec12df49d7fc8876890b73237f4eecea1c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.3.tar.bz2=c42f24668695be5c291836ae6f39b4366e0357c9bb63cf8be2ad36cefe0c6d19cb921a43159d49d4d062dccc15902ec1698a1a6842d13ccaec45c6cb628da4b7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.4.tar.bz2=3ac89131407faefde80bf2e1bed4baa51c371ab4bffc18c8dcf2624f4d1068c9f933eb66486a2bc7c6c67f674c5bd06747bddfe1f1f9dcd939458a08e1bc6108 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.5.tar.bz2=8ca9a9387b8cb434828fa36e5886bc8a28d70fa46d3e20df60389880477fa2ee54fe63c0c14611a2cb0168ef1149d205640c6003e6a507400ad5fc34fa641bd2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.6.tar.bz2=52795cd7d112ff437adf603f58130ce539209628d2224a685d060d67a07325717981fc6f91736d4abfe014ccc8057bb40a097fcf85f5046aabde0019d08bef16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.7.tar.bz2=bc179a31c746ac6e632ce08f57a8f403d4e463ad72285c0ce008d7fa39b88a22be3a43014c9eb019f6a39d022f9448ef151a8d03e89a4d2e767c4f77684e3750 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.8.tar.bz2=d693e3a800c2200c74b24c207425f41cef206a0b3f20625d18b1590e9891f409d6643ee0e7ab8fdb6e1e85de6fea52c6a307bf8f65324ee0f9ac33306ed1e876 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.9.tar.bz2=4b6cab99f6b7be7705efa5eb6f321b5eeb1d1c6e96d4113bf96b57378aaa4950b39f40ad555f630f17d216d235972f028617ea43c28b1970772ffd16be3d9a67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.10.tar.bz2=40bd90d231fcedbe34ec9963eb59645fdd1036b03056b9b8fa3b56900deb86d94e2a256f90e6aed297288d6797857a3ef9fc27bc6ed05c017b5c8e8ddc465df1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.0.tar.bz2=c1df39ae526da7ebf87510017d7694e6f78c59871baac4e9c5f2d13c22cbecc30925e2783ad93f741110b7c3802e9f25a6c3ff85160b33a4080b0f1fb02f7740 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.1.tar.bz2=930f6f7f654fa14076c84365fbc771d5b09679588c4c478d8f6944770c53fdd37213bdad159fd231efbc079b85ab7ab648b0a97fafd666c38d0e280046c6e2ef https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.2.tar.bz2=cb62ca82d57dfc0e21e532d4b523f49c559c4ed5f3d73adbd9d650bbf23c694d382f3cc25eed6a8630f23e4780db127b4b8b6ecf6fc24b0f6febc820dbc6af3e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.3.tar.bz2=708209a89a18cd99c02392307d2bc63e46bd38c72c8ab0e982b28285f8e006d4ed77e04da3900c880eff01c3350033cd00ffc3be1d3a12c4ee5b263282f0dd05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.4.tar.bz2=c94f5b3129ff41da1b07da1cf742592e9822febf6bcfd0e9eb7145c00b732fc66625056bddc72fe9b631742c70d0e731cc6a9a16a089c7b559ae963b072578eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.5.tar.bz2=b4d20f79eebc5496768fc6adb0735c6a23cffbb39ceaf9c2da42851ff7842dd2318c07877d89564176d206e22b8824d2a3c637b5ef02c5caed0b2b5276581032 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.6.tar.bz2=a09ab93c3d6936d30065236ff2abbd0295988a9359f5a76425cecab47af0ca5b6829530d1708e9ddc9e78d1fbb7c0359b9c7e90227870537d099ccc89c73844b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.7.tar.bz2=f6086c879f8737eaf6eef4461d23270e9e43811186a22f35ed69a8303eb933136e7a690bce2d9e18bcff730725292075e09db0f2384d0e26018b7f2a0df70b32 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.8.tar.bz2=62c631026560ee310a849483f1b48690075477942ce86e0564e92f5ca7834553c435a35a1d6d8dd957c3a7be24c63c32104518995eb3a96e61066a04887bb0d6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.9.tar.bz2=0f10741772d2498167c1eb2aa263292f99748518a4ec03dc19440eb5befa075fa69e68b08a09af6eb2e02e462ff20ab10e4121cfeea7bdc938c04762d81fbc4a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.0.tar.bz2=908132a47bd996f8c76bed54078e71abb154294f97dcba779b4cf0d3b82e31c4635dff89e97d5f6b4f1d797d854c6d020afdf9dc77b10c0e522755fa194a17c3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.1.tar.bz2=39c867ac0af48410c0bc6b01f1ecac00616a59cc07f3f5a3e7cfe8f786b70c7cacab65550dfee777d11b8b7a3ac173bb22c602df370eef6a04b40f8e539025ae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.2.tar.bz2=2f04566f6d778121281bc6ba23ec57ad408049e649b351585bc9a3184848c71873910e159f7fd3909c7372378152f5ed264070aefd45933b97980e80f6df4deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.3.tar.bz2=940375b11c525e3f0bf00e19013eeb886bf85b8d8b66d86d53740170b0ae16b14faa491dbcbec29238f875f84204cb0d52ade17c180d71e129cef5254f338f0c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.4.tar.bz2=1c9d41d7ab7bd69d7e3baa3c4149b1938cc147beb2a63923dadf2fd959732c8cc824e2add0946bcd62f44b0e1d509b80b4796a5929841cda8d28f3a8207b17df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar.bz2=f47443a53e3008cb7b7b7afcbbf1adf44887769e42b3defafceacc1e50e349c9000b98010f853c6b7cafdb54b85b640732a56a8e11ad8e58fedb5fa4724f68d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=fc1c9a08c48ad91edb4afcac5244f386d63940fa906dadaabe02a1eb025375443c8174a6ad1acd50f4583d6c57a88feae86e697ec15c8a25bb49f280b1357783 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=aa611f7c350374d2c5c8652a694022e038cb5a65fde795c43e927067f155d0ccb368b281b1575e679b84cd7ba6042216dc28149e138256faf62dd3060ec0a6a7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=ab04071b90ddb81b68f064fbc9f2bf726729220e4359113556d9b71f3549483f122b796b3b1e4dc8404e6f44a4bdd02e9db2c8066974acf190448c4d5a97dc6b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c769fd3814bf31728b83f2bcdaf0928e6423150609f3db903631f9db68ce0a0f9c87bfce5f93983cd962662148a66cc55f5f42bffc1a1b5a237e6938726629ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=c231f8ecd46760db49796519645bcb5cc9fa1c0582abbc419a2ca81805c81fe8912dc32dcc2c5192ca9ef0d502da8f61ce1ce7ecc87b29edad3a144a8a0c200e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=b41557c83084c8e5bb263aa944499932ce7d84457e4e307f1cffecf62aa44f8543a06299e38fee17ba64f8952048612f9289e24c35acfe2ba02b913c15dc1405 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=001d10af5833a03b42d9a254bde844731d3a796d98ce2efea90fc68e4638c7cc3be31a34fa163d4c5ac18c60e685e5cf2ccf88fac46ae6bc587a48ea35cfb09b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=0a8681afc19372ccd9409bb017967f86c2e6642e083ca47ec904cccc34242040f710392d916a69a327ae6a0bb287d97bc05bbe116a1d93478ae282b32e5fcfab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=e505ff2f00334870d07f4ec9348648b7f3b91dbbad1fddb2f60f7a38572a66a7bf081fc7b386f800d86113aac1ce3cb739c86cf0d6da2bab916a4432ad557c54 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=aee6000ac886cdd4e4044a7b43ab20d54d1e99f6b893af69d0d7e7a202f4ae861f939898580c60996b0bb7c6481eecad69a20acc83c75cc594dfbfde3a22c476 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=86f4e6948eaf2586e018570f09232b94f907766590eb75f00992531ef74676070ac5a2308e121ecc1c23388ece4dbe1ee8a4b2a7ab99ca00a28d6583d6df3d0a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=1bf867b0af84eae4e7996047727fbc7ef459afd3b2ca5885f658a74d62910d00eecddbf0c11b23265c625c26b420421ca5add40079438edca8eacd8b5c0149a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=92a3b217079f9d960cc4fbb5908f7fc7ef71cc3ec8e5e404341e2b8875534c0542167d03b61577776e0b0f049f9ba2e3235842be381b4d484845768adaa6e3f7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=608f0f9eafd72226fd1b39f6c92d0f1c6d3aa7ede096cc390fc4f8bee4326b0937767bc6de84fff536dea48cbf9bdb8ef5598670235e013ccd630b06c5b8fb05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=40cccacc66cc4b7891b01c35375ca913efe008157ae540308b649e14f5753f34f1827861c6e16b500c49ac95e1aa22e1c01444faca5dce71f981452a9e0f1b67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=5a33d600e55f7b8755725d7e2f2102cd76720d524d7b378d85fc21ea8d853166dd97e2e615ab18f9e44122e3404b439dd123f8e23d6ade5328982fe72db2af0b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=37e3a4011b3603807c6e0fd48818b256caf272b3720ee654f38c0ae202cffa21600f9cc751b5335b57905ce67db185b37f548ac9c84d6acfc567f0ef4866635f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=6648c1b6bd962e30e89eacdb6130b1788ccdf6ed05ea13eac32eefc222438a298de8121937262851cf5c4cdcc1a804d5d8bf19667819db6599bfcf79e57b0e17 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=ac690170a6801fd741efb88e67961c0c3d717029b3bd9c6e243074799641c940416fc9cde7b4ba2c56e79551d6cb7fe5f7977649404da0d20d1819d7d3ce0bd3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=e6edfed2dd9d6649c47b1dc1b102f933f76a148e6dd8441add2316073dd255cac851e972366e4821fcd665e55b375fac757d189b7552baaa0b49e82349c71b77 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=69c4895076690037199f2a9b98e622f6b5e3c23ea02de79bcade6193da2b1b88ed0c28006059f4ecc502298442275e7e7324232de04a2f0ce430665057410a05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=175777563303c6d6a04393938ffa7e36e0bc6db33f7d2cf1d42ec852b41ea26dd7d50569eee4cb00497e6bceae95592365ea6718a35451e5c929d8a085aa9649 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=b668f0cd853615fec38253b264115ef0fedd21a7879a663ba844f4c3fa8b87e5ccd8adffbaa12ffa3aa16b108a2a439cecf827e7d8e19ec8041d46e758abc391 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=2039b1fcf55cca35ed3c8446eea45819368016ec1a05a5fd4c6a761b54f5cd56cb3301d5d2674af1ff75bda41eba41b7156e71ac48b88ca7a6474f0e944efd89 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=b4bb324a53c316da488c5f60803933eade9ad5c59a6d58e76787d2dd89dc2d2f18016d2ac4ab0853a40976b4beab70864a9c2d23de194bcd63ad089b2159fa7a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=3a9b5868d707d6a4580a44ab7504cb46a2713f78918142b185f0d62c5b7e0dfebc1ff551b2a52e9726befb70abbde867d2802345a01fd3e4568b9f58ac83c168 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=39007e736b28ca599ea244bf4e54b52e86597c950c0ebd8f1696a02c8eef575a734d089b52c7013d00c02aeb261dd7e2facb45f24b34c75c4bbf14cb8bdc3ae2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=0fc4e39f7382c29fa2119119a78040c611fc8298bd4765025599d3018775cb2bb28f51d38efd4306e9f04eeea20e7c2365f2fbba1233e0494a8258c3c184278a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=5dfbcefa70f5b81887d34e776713bb9c6f7bcecbda8f1c9561daa3e235c725417ab0a930f594303723f226d36306e6a73f228abfa3533280659ab387708182da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=00936db899bca33dfa8d0e6ffd4bd6b0453ad5823a450e50e3a055ea696dcf94b317357732e26208a6f34224c33a8b4a6130e5613262d62381179a52cc8f3a1d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=15b816d190fd58382a2f6f6e087f358b54003f186462abf59dbef545af9044a2b9c65576119185adc6bfd9ebcdb49f03a2a268eed4fb0f0d37aa35fa18adc1fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=3a481c35668be459688a66e4e480e11b4e58c13aecc3751da9de8a3e3282bb4a152128528a804742aa0b4380eb537b666a2b29fd79be0d6968c4ff1fa428eb7b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=c604871b39f396c539c52dd4849d1d42f37530003601f60162860efc777c85e7e1a1ee88a77cfc9ca8ca20f0448a5dde4f39cbdae67470d8d2d283d6fbbf0239 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=12042b5c30179da275fcb6155142ff2787e86cf577caef44b7c4d8175ac671cd461814e9a19f4c9b1e78bbdf041fdd06bd463aa972e194caa91e80778a56bce0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=2bf1c13616b2e255b8c269bcb2f979a45009c079ffdcb10a13e238e5d13b0978e8a974bdc1e7bf8519e15264ed5f577cc8f85a5861b3ea3a4589eb78138a3f2f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=2e7876c8c8a1f4e3cd1913023c564d9e74972ce427e85765bbe9ddf237285d7b96017c1ed17868eb912509881e05aaf96e4a6b353a69989e61c733b346511715 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=06de4f6f2761bc58d94659f826c7c86be50192b7dfdb5c8b6710b384a50299ad161309e2a8c333fa5249d0e7112f74dd0c0b0faa2950a6e74bdba68833f68702 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=597374487d196abdfb389c79d7d09b81026fe3e8043f8811497646eaf47bfa432cfb96e2af9be1a35ad2d05f2f5c800afa3f9e5adb0ea2b2d31812d219232a00 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=ba56050ce3fdbb9117c6c9e767f818ce3d467030713b7693ebb039f6888bd5d7e5f7b1986ed117414037e56e550707c3625a88bfd5d00d7319d0c7ad642fc811 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=395facf2f7a15eecc94e554a60d87c269ba70c5063b24b7bc504f579c0d12a7d858eb0b98c502016ff8bf02aaf11ef765e2291b542759fc96affa186206ffe4f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=d1d527b2e95e3a16f521214c5352bcb379b946e8be1a943da872aff0ab4b8edd93a507d693abd7a8ef1cd5ea1ee6e6bf1f838683f5a447a6cb7992de61f744ad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=e47a50392c4f3ee13a565103e0c5f9474ba0a8f5ff60fc9fe7d290b7f5f9a9ddec962fcbb103a8d3b9c7765a28ba59237975f90aa3637a06a128802ede28b3da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=77fdbe62d1694732a7307c29b4f45d0dcab7e8a729f04f45b216345336c5820715bf3f8f7cab52175c4ca1a431d867c7feef7d802dec61c2cffa4abfa8746e90 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=24da0cfc93ac536c505dfaf2dbddc7b312a3cc5c72a9f47e28b3bba760a53b584422b73da8546ca01cc44d3906a31eed7f27a3dfc0bb574f01f9c08f7c589d20 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=aee8267c4855e95a55b7ab858ca6359d635049743b8e38d34ad1430522a0cd746cd572e77884f7e10af14a731ccd8ebb9cad6ea035b0fca4ae534913a38f43f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=ba3e66bd3dde28e7193b90c44194cf7732d294e592321c482deb3b31ddd9655630f5b04aa89a43eb9d1bc222da10884e9da332bc9da78e9e1b655300db52a444 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1df8a2ad9256985b4ffb3da5b545af4160ccebdd8265711d1b642cd2285a004a42cc2ea51ce3ee78854e599f5196c66448b8e0b043846ef6e6bf992828aefb6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=cc460b3d17d460abec27d77f734e1c1e7a649769c3374f02d32a4ad00f989ff3150dab926a203b209c92475100667dd524774fc37633d71f98737ea2d8868968 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.2.6.tar.bz2=335cddbfcf26c82cf9bf9c7ec6637c1c3e30e1b10d00553f5dcc60822d40b560e412d404fa65faefbd1c9022a2d7f0e4d93c25d054681d109c7cdb5968989005 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.3.6.tar.bz2=5531048adec175ad23e3bb050ba6295352cfe17ce27203c356145008434107831186a09c00ff158f4ce9109776f381661f3047e828a177906a52143096249dbc jruby-bin-1.7.0.tar.gz=1e466a3f8d52b553c9def09827fda4b8433576b0262c40ee505602754521a00defd821d5ead5052be52baf281c6cb080fd03a8b15c628a0ee67b4e417633e5e2 jruby-bin-1.7.1.tar.gz=ef28381ca30664cf450f9d3df9927530db771d30e86ebcf535af38e1a7e26724ae2bcfe8487cd2eb349bf609a733a25528aae14beab4d13d298b5604ac7353cc jruby-bin-1.7.2.tar.gz=8155c81eea6743951db7383bd9f6b1750614927c9c0b25a6574f6d64898bb3ada2f626c6e0df6c5486561a03cc7d472fc12fe804ce66a3972d2fe02e3f407100 jruby-bin-1.7.3.tar.gz=1d19be25bf4a7dbb0edad71008704377893d3967aa4204a0d59d6883aa04462ef6798c64d0c0fdd3f5129c16ccb42e8507f3fef38ed56054bf6e689de745935a jruby-bin-1.7.4.tar.gz=d7c0ee0316c50ae5413757e956c18ca68e9d99a25cf85be978da0787c13b8978d4ff2712a3effa564cfdf07144be4a56a0cb8acc794a01f43264fe8baeb125e5 jruby-bin-1.7.5.tar.gz=a4984591a3809330b93f4ce79fd1b9c24360f89d88a03bbc76351be623893c4bfc6441375bbea452ba4f24ca8b9357e03ac938fd6c065b3e2348c0f896b22a1b jruby-bin-1.7.6.tar.gz=98600a2d46bfce14111c7eebc62716352a4b685043afdd696b8fe51c6b205eb9569fc2860423a653b842b173198c76c59767156aa48e0d23482dff3358d884f3 jruby-bin-1.7.7.tar.gz=71da2e72c65899216fa15ec568b51aa7004e2ed7dff99ca376b332d3692c83a674c688dc21ee04d177a3961a2bb3973714509d88cc14d0ba9f79c864c6258a06 jruby-bin-1.7.8.tar.gz=42d54243653ec260abdafecce1143161be63fcc38a80f71ab70fcece4bf91545a2b12ed2319f9fd6f6b41916c398a9a8e89e7f0389f59da56f2739665e74522d jruby-bin-1.7.9.tar.gz=f519f53b1d9f57cfe28982ad70b892dc6fc20fe6601d98d65a1dca9f617a0eb8fff74d0fd82ddb858fe105d05ca7c7bbf3a987677ae0363caa2981bea358c096 jruby-bin-1.7.10.tar.gz=160b701f2f500dfab64beb635e5c4dc57760dd422d0fffe8d3cf8d84ee6ea17a877ef77a0087b4888ea9db64ce7750de01a73a51530aa6666a2efdcdccdb89e0 jruby-bin-1.7.11.tar.gz=a53b0fa327b98344cb4a8aad1ba537ddacb709a0e173b1e32656de8a610cb9896e9a4554d54d0d01d2361f8ff1539a0e2ee01308f670df2004225231b704065c jruby-bin-1.7.12.tar.gz=bf2be8a37b53d38c75712a6331f96b999fa6b0e87f453fac7b9d11eeb1b66098ea0778172f1a6a84345e1881f05d63012e28d4068a0bd31122bf2473bbdae5bf jruby-bin-1.7.14.tar.gz=f14e658da7f2abd469edcfd657dbc2505d6a2c04ba1e5f65f2164256f54625da154b338bd3d286ea6a18da61d04d90a61ad6b012bd9461182753483efcd0f603 jruby-bin-1.7.16.tar.gz=47ca714c3211c95c84e9c80ae4fbc894bfd7ee03e1bcc494cb48d839f8538db4aaca7029a4913b8d323e7227450e4e41bb943dc670f43df8a654eb127012033f jruby-bin-1.7.16.1.tar.gz=9bacdf6e212d08e46ac2c49183c8611873f6ecebfcb0e928b5110bdebfeb8751ac087cf8aba09afb9a8ccb58e59f3c3e06a241c1db445835d7a875b0c3deb4b5 jruby-bin-1.7.16.2.tar.gz=349283bb5344a62f282021ce39648a0c8d0b41ecf8f800ab5099b5ce161ff771e688f205a918324cef6ba0ded6b3694b8dd83f46f56be584202b8fee496b37e7 jruby-bin-1.7.17.tar.gz=a3b171df08e789f91c260c5a57ec842a5d62cc8d6b462b772905ec5284e394ed7b78f5b327ca1ff20f5deba8371a86cb03fade75b5f34f233df47bc3f08d469e jruby-bin-1.7.18.tar.gz=b259da2967e246a387687117eb13e8986b57de6ca8e570d6f8f8f07b8097db6e01cea8b0ec3a860b091fde14de535260dc6dbfc638f9e9b49d348f726e969642 jruby-bin-1.7.19.tar.gz=da91efcd51cfc833666f8b7cf949d3b5c41cd8da99ae1559c88a7358fb48df1245c66702c7cf23e7ca012cbefae98787c200352976d4e8aa3e9120057a89dc8c jruby-bin-1.7.20.tar.gz=77131afe46e72c406ab4250e43cd1f98e59a8351c494044ac89f97a7c9a81492f8a8194541055fcf1fc59569e99a577fd6a36a9f6a3952a99f399d4970e80e69 jruby-bin-1.7.21.tar.gz=111883df12a60d06e9924d33057ba72094fcffd44f7e3954d6c6d2190f8e6442804e739cc525a9e75159251a8dc1cc487570792b1b4f5773f4d0082f0eb360d0 jruby-bin-1.7.22.tar.gz=6ed6cbe7b81a8aee60906fdf965bc217b3db794698e2cb37559f36ac119a0cd2a1ae1a7a766535ab491d647e8b4e6b2f63e62011714b757f8691455831ef365c jruby-bin-1.7.23.tar.gz=6f4b97c4e08274f96195deb176e3126e8d047c981cb655cded9665624033fb905d60d5586704a3f91b2ca06d7e78918d9d31131c93e4c90c75a38182e309ac9c jruby-bin-1.7.25.tar.gz=a89ab8d539bff346ad56d345b6a205f74890b9aafe82a2c82e7c19cfc30b77fefde1003e8bd7ed15f141151bc0fd21946203219691383a64f2234fa586e1905b jruby-bin-1.7.26.tar.gz=feee03a50900e459d9ed7d2096056bef126c4551c02c335c4132e2307411f3fc4fd435e8fe44411184773c80f0630a7812b3d798b7e9be2818e1b5a712bc6995 jruby-bin-1.7.27.tar.gz=656f4313fbfe5db8d2d4fc2087a012c91efef848394c48aeaa0041e9a19b87ab74686702955413d2c51d6b4b11c758ba0555b30fdc42e86d66094411324139b6 jruby-bin-9.0.0.0.pre1.tar.gz=988c6a058336ab9ac8b27c7501ceccf3940837f9b9d3ed32a466b891bda1bc13f76199f5bc3baaa1240dd0dfdaee40775f721294d667f3b8b5bb9ac8206e2e83 jruby-bin-9.0.0.0.pre2.tar.gz=f207f9477a12d7ffacd92b1bb5154ba8101dda8f7b2eeadd4fa83eadec9a75727bc1831733d27fde63ba63322ec491201dd23cc6e2c2b5a4b8381a8fbe49e8f2 jruby-bin-9.0.0.0.tar.gz=33308a983533c129cffbf521bdb8c1996a10a6159a4a436248e645bda682c5a5395ac1aa767e971ae679c935f3b61573cb22d5b8c64af026752db3411a6356e1 jruby-bin-9.0.1.0.tar.gz=277dca63f3faad01c98a793f06bb4d558a970a10a66a38482e8372b25f4cf4fea85f1d5624fce7fb5b4310c42ea8aa360f24f6b9b6ef4bb0ebcb036736009ccd jruby-bin-9.0.3.0.tar.gz=d82f83e20ef17a0675843e306ec5e90993e5952cf5a53957a91e369d2c90d92306aa515b1e135c04b45844a81a0f4ae34289b966821ae5f46ea51fe012627352 jruby-bin-9.0.4.0.tar.gz=b9cd4f4a00da8152740b468914046633d5341b10aa26b0ac56835d5896531030c8afbc4c965b30c36923555ed5b145de8ada69e05ca38b01d43621914a331335 jruby-bin-9.0.5.0.tar.gz=7c61cf010fbae571cd6ba334aefcfd917f6de8224d014026297b840d0b890523e94b2fea20f154c82c25c4f9d5992b9481fb569646a7023e5ddb42db1baf5f34 jruby-bin-9.1.0.0.tar.gz=1ffdd352823436086ebfd37c03401a1f3a9cb8a8c5f75476af1f704c4764396a20f49ddb7fb7f0911e1608f7c88a332944330b8849d13e6badb170efb736dbe2 jruby-bin-9.1.1.0.tar.gz=475acda79ab8c54467ae70094aa86842959200127c1e92709f0a731014c469d3e52e4c48770b64ab1bf31e1b710ac4570b421077c85c08071c1356bee55a2900 jruby-bin-9.1.2.0.tar.gz=cc6b1e1a2907c128dd04edf9da11933a54bbed5e861ab6f0208505bca5aa2aa9d9acdd04bfde65824346fbb435584081fc8ec2e2e9a3aeea1bef8047915e0c61 jruby-bin-9.1.3.0.tar.gz=88339f4cc05f7f0ded21f100755156ade33f19873f49c0c64110916da8c0b059df541a77bb36e54fda9cebf042591450d2d6312ffaa879df926870806985e774 jruby-bin-9.1.4.0.tar.gz=ebe0e9d67cb91721d589461e93e26338e3e3a1f0f98de53f25906684140b49d989ca6d3704cd3f6cbf650f30aed9a3989f117bb4732c83ed870364ce4c31fa36 jruby-bin-9.1.5.0.tar.gz=f2a11e6fc88d37fc1b640ea8c9feda4607bea6da5e6520f61ff85e8d6a51543612ae267b45c033214f8fd0e2283153da02001cbc9fd90be4761b7544e1413b9f jruby-bin-9.1.6.0.tar.gz=ca59d199a0fe791efc57f05801ae26c6cf6402bdc0f1a795250b1a2dda39b233ed24c8cb005016e79727f4bcdceb1bad726a60c16935e76fc87e5d1a078fb5bd jruby-bin-9.1.7.0.tar.gz=f2569d4858a33280e90d984aac53662c25ef057ef9903bace6a2214aa2e6a537c9bc8fc76b08f846b3093cc4a12c70c98d725576a4ac771e640b95cfe3697c7d jruby-bin-9.1.8.0.tar.gz=dba3b41b65ff27dbaa203a5cfc78ac7cb9d952c52b452bc774f593383e4ef9389c0bc37549b798f48b63497ce7007b1ac2d2fa252d9a7c3e52146b4ae192ee49 jruby-bin-9.1.9.0.tar.gz=f8f6419be34aeb7b7577e946a62a094f5921d7319b51876c5e07322d99249b3a9f29fea4ee5c2b8184dfccbd5da8f8262fa97f5e93874887f3355dabfccfa0df jruby-bin-9.1.10.0.tar.gz=857783bb45fc5d62148bd687b43af9ce776099dfea75ec4b5d947a46ed270568bceba2a630a3277746a3a9c1fd3111caa9a4cd13493ea8824c1ee190e6d2abf1 jruby-bin-9.1.11.0.tar.gz=718ed3f5a39cd9f9b45c4e11ba44cd32e035f8d9f26fe59230dbaecb71adfb2513ee1bb86ff72e075b02f20151f3f30e53bfa30b6c4b011a93a138d4f479fbf7 jruby-bin-9.1.12.0.tar.gz=8a9f88d517d8002be570aa95aebb0063eb62a47efee191155f9fa4f045854910f78431514f857c438167ec42f4241faf74d4a8d236ae36feae58732312e4bbed jruby-bin-9.1.13.0.tar.gz=ef88f613ada2665d4f63b2e2f15594739de8ba501406e76de417821f44847b0e258524687b0ae0cf5b737520aa4dd9bb59d80a4b89a81408cda638f28bebbead jruby-bin-9.1.14.0.tar.gz=d15ae0c60421951b830524acd21a0f2a56f480e983b148a2722cd36afed8e99a41f518eb8a679bfa2cf87f08637e81c24ea88be40c0a5390e081322f1fc6f8da jruby-bin-9.1.15.0.tar.gz=74a411f42149510180706b2c70610caeea357f6fc3d2a12ff0227586862e6a9dedf09e752596d6c486af7a310a07241f311a1dfc73ead229d7225c09d4508605 jruby-bin-9.1.16.0.tar.gz=94e88dbeb2545250ba5bef50bbe0baa6f3851e9817f67f879ffaab50048bb0d41cd7a0e87ac9ef547e37c2b82cf1d7aae6b8caa43d03c6a9931b8ce0ad4b2afe jruby-bin-9.1.17.0.tar.gz=4c06b9674e20f48d3815b4084bb38e6994670eac804fbc56d717cde7abdb74d57e0ac17b7fa0b500318de405c187c3eaa01441c22621139dfdbeef62a5467a63 jruby-bin-9.2.0.0.tar.gz=79f5e8674089d2f6b260e033e3ceb4571f54cb5cedbca74ba76b52dd7cb30085a8c6c2676e9be57a8ecd9e962fbcb3682a8de38e1cdde2dc6e05bd179556edc3 jruby-bin-9.2.1.0.tar.gz=185e67da4964c9cf1d9142446efa77605e77894444bdc96bbd10fee22637f197aea9fbb0f60d3a42540e5f383d5b06fcf095d572f432544a40c2145deec81926 jruby-bin-9.2.2.0.tar.gz=85e16e38748b6ec5f237eabc8a17eb225c484c20f7ab6728f2a0f650061bc50c8a9601c04b0128e73c410ffe84dacd2b8bb37167aae5595728aa25e88c4c9b92 jruby-bin-9.2.3.0.tar.gz=97ee210157c451567946b38d33380051f82e7e8cb5f7649fffe050542ff6cd627e2c42f4c46739d1f0995c87e7338865b18844741285bf3f72364aa3c841c54c jruby-bin-9.2.4.0.tar.gz=9fe1506e862a17e261cf726e1bb70a9f612a6d7beda919a01405899660d1f4b79ee690ddf9aeed1d2b2f3cbd698be8df4f98d3815352772cc680e9646d721761 jruby-bin-9.2.4.1.tar.gz=2c41e7884cc54819da17ea9b2b773d05d3240d53a2ecb57ba430ab61308066eeb1bfbe6627e6c261f5f27ab5df7f5972656366a04a191a81b0379f620b74512d jruby-bin-9.2.5.0.tar.gz=d548eba8de420c80062021f5b6e6b203f8b7b36e3f11409919eeab87a028a18f9346f27d2cd8b1f33419adcc83fc804a36dbc3cee169ef1d93383b8f5835ba2c jruby-bin-9.2.6.0.tar.gz=20c7897da0d2b585616ea5848998fe8770517e24e16955797db2e5bff4622c348082628d304240a71a97e9551ef7aa63271cfb728eb5fb7e7d19bb48aff20d4c jruby-bin-9.2.7.0.tar.gz=8e71e27fdb149cb7470fb736e7ce858719d13ce6ff8a1e9ab1c1dc71fcc068fb601946bb28ed2feee3670b5e6ebfa8a655a6618d1badfc3763897912c41b1c82 jruby-bin-9.2.8.0.tar.gz=7f71fb5bc8c6c31b31b4c0430ae091871b21aa345777662f264c728c60212365dadb63a7a4b2fff31adbbf8a2e7cfa678d47486e28840f57b86cd45fe9354013 jruby-bin-9.2.9.0.tar.gz=7df33150858ddff586b3bd86120d4bdd80546c7f8e62245f61facbaa5527400a1aebbb33e4a1a8af52066487e3d29760eb96c7ecb9875eb9bc954ccbcb37a4d2 jruby-bin-9.2.10.0.tar.gz=f4ca024602ddab37154f5547132accb26e7c0ac2e913ebe1b5c7806727eb148249e76031ed4623ab53814beb8fb3f472e386f44d57adb5d2b3b00fb2773c8a63 jruby-bin-9.2.11.0.tar.gz=f736a9e139694c84d0a5ea42f36b972adc82c9be13e0b80bd61045c026e4fe31ccdd4be3dd3e94781c846f356e026465e41716fd2744ded2ab0ca39cd33bb46b jruby-bin-9.2.11.1.tar.gz=2f758fabf5910ea01e9c04c7600d9c666f2df3db8622f3eeb3534578075ce65013c42fe9ea6f95d4499945f795e6d566eed2b1545e149af823eb1d29167a1223 jruby-bin-9.2.12.0.tar.gz=1dbc5bb3814a6590f5e8ecf4889152684b5625fe81794a2c4064d598614a85129256002dcd239e294f209b98e3abaf9bfe70467fff48ef66b1531162dc6c3be6 jruby-bin-9.2.13.0.tar.gz=2cba016ad6a376252083122d51335610209d860c41de1902f5cd49ffc2f6b49c350b68df8fc4113c221255af4db7ec07980267b9888369811faf66db369e757c jruby-bin-9.2.14.0.tar.gz=ee3d17e875dd197f92744c7cba62320bfd3f166bbb2ca117f2910780a7c571779c0940e024351e9d4685ee9781dd207e773ace57a4a8a7011869c8b6209513c5 jruby-bin-9.2.15.0.tar.gz=678abfa7654b53b049e4103ae3647775d970c5a7192539378957c1731a3037c852e03f00a496c022c1c438d159a93be6e6f04d7563c811aeb7d261ced643d9e5 jruby-bin-9.2.16.0.tar.gz=f77e314d578a980071bddc25c65659d62e0644927ebc4e7d7d4523935b6c893e611d47ae7478a26ce7acff38b1525eac11b4a329188cdf76aeb07fab667d99d4 jruby-bin-9.2.17.0.tar.gz=e90ac1890a54a892b13adbbeab3cc5242889ff2a4b6cae535c0a3172072bda6ab01b960705ba608d6d7ebe9de5984d8384dbbb6399ab3b2e53a9e347e7849e1b jruby-bin-9.2.18.0.tar.gz=c5816ee0f7b0f559dac70ffc5277f85ae9c41ad176e43d277f820c2727387baba93998b915cadf9708fa78b5cdf3911a9c39c2ebb61a77a38dcff359f7d88a73 jruby-bin-9.2.19.0.tar.gz=3740674035e27cf7961b3570ad65536c30faab1c9a71a42a696b173379e79647411d57e0d1d06b5f9c9a970eb02a595a559191af08a083773dc4601dcfd07491 jruby-bin-9.2.20.0.tar.gz=1961f52f41e7eb9f50b0f382c8166ad988a6b3c0311c342658edb34486b073ed45c1ca5731aa319196db02cec208a4dfc86aa6b436959b80243bfa4f62629735 jruby-bin-9.2.20.1.tar.gz=598e28cbad682fbb30a9a9a9f708e6e1f4b7903300de2477e88a646c42ae594df5b768ff5379ed447f1a7168e93dbe35cc2d5db7087cb2228233a05bc4687908 jruby-bin-9.2.21.0.tar.gz=8f6cfc43ce3ebbd69781da71c5a70746ada090162bf6cb709dca41a6d968e6072ae62f657cb0bd471c648ff294044bfec3079828bdc410bd64758f76a93c3214 jruby-bin-9.3.0.0.tar.gz=06331ce32ee88aaad5e5bc0668d164ec3263f8ef3ed34bb32981b76ca33f8c817e3632550775706481094159f4feb43916ad1f9ec0f0775ad756b16cb7bd9417 jruby-bin-9.3.1.0.tar.gz=bfcbe6dc5ba736fc944af15eb387b545f6c5b987a7db88045913a02a1d30726c5d1255c4dd609aa7c2d2823ddf9d8360223b0575c93302aeef4c54eb37af9abe jruby-bin-9.3.2.0.tar.gz=b1777bfdf1964d7e527bb3dfc47b4b9e8c589cdb301c38ee8ee988bd0c392ca978ee3c1c24e4b5a65bdecff67d1bd96e2d8645e58ff7e891e3622097ea29e925 jruby-bin-9.3.3.0.tar.gz=648e70de0bda710e2dc70fd03c3dc6b798dd4c7b92584c54306c426f59ebe1168a595c4cf94328f6b44674f5507bee354efdb1cd73060b73b0171a3605051c9c jruby-bin-9.3.4.0.tar.gz=6b09decf412a76578179cefaabf01cc8740f70ab5324954e6aa43b1d8b81c37db7a99b1f94d6ced2b459f1c44c3086892b9a2c06b3ea838baf75a8fd5e0447c8 jruby-bin-9.3.6.0.tar.gz=f730522eff27462192808773cbd071cdaefae11f20bc808a8f22515a33960a730f3c87ec727ddfd9dc9b6b35acffeb50c31d75a4794a3f8daa75e1963ebd246b jruby-bin-9.3.7.0.tar.gz=265051c68d3b9dcce708b75f8267303ae84008859c88d7fe4f282395366c3f52fcf1bb161210555c0fd0a2427ff5a728ea9e337feea3d9b69559cadb2f300aed jruby-bin-9.3.8.0.tar.gz=12e795b7e1f14141bde68f52a29b0aa9f1db20515240dce83cffec351cefd25959579e01059d42dc8c8e4280493a70819d9beb1e0523e9bc10a72af16d9abd60 jruby-bin-9.3.9.0.tar.gz=f0b31d98f39a2bd4436764db0b0139433d6868bce7c30c5d6e3552616ba879c93478c499f3e4c884fd3728502916aed5c9ca1be150ae3e80ff47b36710c3f6df jruby-bin-9.3.10.0.tar.gz=aa36fd4c5de7b17f5fdcca1d1314d309e7b4470d46822c45baefbc0ad5180e5530a7054502b97b414352af485e7936659390690dc6198512ba6733d8f8d503ed jruby-bin-9.3.11.0.tar.gz=d9fd90bc64028dcc45687d2be51414b1561add20d20d1392525f4434cc684d505427f5e56827afffbbb0ce2c9cd7c1ef846b0bffa737679afb95d4c160232da5 jruby-bin-9.3.13.0.tar.gz=eb24641fb7a6b9d2039ec953388053e7333b306056f9a5bf745331b04cfc05dc4211a9b7780ce88bcee9184b8cbb219b574574d308bc2720547c116f4d4721dc jruby-bin-9.3.14.0.tar.gz=d9b02fc35133f71140cc7d891061f8190b61b3d1065f00092a2aa9a4beaf7d67297dfb0529691bd24d29607d698f39c62af9018e8307c1e6624c3104a61bb74c jruby-bin-9.3.15.0.tar.gz=e41521ebf453d6b6a9de937556fcaa972c60268285d0af4a41bfb95aad790eb47dd507e182958ca6f4889a0e03eedee0fa4bbc58e3d0407a2b6ba64a8b87a21a jruby-bin-9.4.0.0.tar.gz=fb72f8e087ea08653fa4e4225fa26694c3ff97c41f3deb8731cdb6571c6c9b21e0d8f69e2096f82ee81e2b5c283f912e2a5228c15873dbbd56de96a2ba35d59b jruby-bin-9.4.1.0.tar.gz=46003ef6192718a6372b79ebc89bee37957686224a08fe2f9a6be3c9e479784409d0269f0885c4d1f1351585c5d2cd31fd2ad45014e425bcaf2d44d66b98d299 jruby-bin-9.4.2.0.tar.gz=77e484ab73ece93e7d7283f876f0d541607c6080eee696b702b485be9794cf7e6d464f250a6d75387ee69aef3ba40ccf4f6d9fcfe324c5bc7a14376177ea2bb8 jruby-bin-9.4.3.0.tar.gz=2361f4bb2989f5951b0d3e9d49bf31e6805ce39bdc987ad3c6934daa98ab7c8e69763d40d7412ccef8adbbc198e52f4b83d00998ee12ac43fbfc6b5d88930c15 jruby-bin-9.4.4.0.tar.gz=e89dff0cc5b4a948daa95196d4bd4fee0c6901bb4aa023ae35b3679d9739967c2a74e8a4388b1835465dd39f1332a1f321b450b40c54ad2b81802645b4a31ca4 jruby-bin-9.4.5.0.tar.gz=06db948e5fa6f8559abd3b6891c7b4867b9f54b7bddf0e36d6f20cc1bfb394cdba8ea920213e545c927d1cb865e083cb1089c8e925bc608e0f8784a79b5d330f jruby-bin-9.4.6.0.tar.gz=ebdc671622baf3c42a988d6ebe24af6bfefa1f717f050f602a1b35909a3220316329aad080ee2cd9cd330da9428f8d736502573efa64bd70f093ccc123ab32b0 jruby-bin-9.4.7.0.tar.gz=4fc8b12deba7b8a53a523a41a31c248895adc9bd54a62664a27107e7205369af39c0eaa508a9a70611c3bb845524d8c5f39451c09b8b9cd87059ae15139703b9 jruby-bin-9.4.8.0.tar.gz=0d65fdfd63e2049ab3b8ccbcb4caaaab20aea5a63276aeb20ed4092191a8814f144425dd0d926aeed757ad6b4daa308a98fafe1bbd1647f3db44368066f61868 jruby-bin-9.4.9.0.tar.gz=1321e2ef5fdce909008ed764051d1bf9be0a4b8cb4a2515fa888c7c0ea48f0f4a2ab7b5c881633dba3d03449c6340255d9411a58836ed059f62d801d48565d1a jruby-bin-9.4.10.0.tar.gz=3396cdda4334552f2ca21c9123e709d72544e11b448d3091ec1a6e6f7beda2cde86ba4c15a4c0648135df34b558d254a96cb970f0a18d098126b7c5c2a2af019 jruby-bin-9.4.11.0.tar.gz=21ee47b4f6d1b6295f7f25cd74e559e6dbc8d98738d31f87c27ea657a740382e8c0e8156eafc8d270946311ebe22a7ce60d5c0499fb52cac7f9b120ed4495834 jruby-bin-9.4.12.0.tar.gz=01f74e4dad2d4357c0dd5dfa937400a3d3d3ebdc0485444359658f3e4b58c8af180ff66ce75b269afc75548cb832c4f75e891f506fb5e4004f9b12286991a8df MagLev-1.0.0.tar.gz=8da29f16e08f657b0d2f147b64f2202ac027db26f85da8dec29f926898f178ac8d11260fd6c0a539a9b9b15eb92d8c7ced86a8cab1861ae7f8a33b6fa468e5cb MagLev-1.1beta.tar.gz=7122af70530e76b9a4cee93244d6872b49616e78086bc8a5db0f32d2b846560b352c4831addbbecc72e0e3158bd52f26c2da14f5d83a515ead30efe7c538b62e MagLev-1.1beta2.tar.gz=43b4b831791074f6e8c12f6fbe6ccec2bd0446dae029d3e6717cde1e7adca8462a2d7dc49c14112cb568b5b3adc8cd051767044b41d57ae51f38aca035ff8597 MagLev-1.1RC1.tar.gz=942c1cf43f1a911230aa43bbac1cea2e2e61b5e19af755e29a6a71139d66d304efcc519072dcc3487a2da7462847530564aff4a2159d675e3270cc938a297dd9 MagLev-1.2Alpha.tar.gz=2672e3e5425df2d2ecc49f85df5845fdb083f74a7b242cac75e33d0c1837079ced8ec8b273807326d08e7bf6f95cb4f1d8351f37af8bb38c4150e6292fc553dc MagLev-1.2Alpha2.tar.gz=4492ed58b6c2b852502a2195836f1db5a80f0619467e4d7b44981a993a5e9a9ea5c9fecf1198de1891583e334bbc3c3a86648ce8afea1137ae9c73a4d76b0f4a MagLev-1.2Alpha3.tar.gz=6290895b22efb986ffd7305b7d651f20a051ab6869d51310bf891fa3eed48526a8617b69f72793e8ac0b57f99bc5de75f34235ef94de967bbdcd51857efc2af6 MagLev-1.2Alpha4.tar.gz=a621e9c615ffec503910540db770754f29bab1646d8e67650d5b82413bd551adfb0bbbb8155407ccb6f80933bfe8ae1bf9b688eb0defbc88710308bde1325683 mruby-1.0.0.tar.gz=4a0f2927da3401df23d5c19ba566995f76775def3badbb14f16510a271e7b40a833fc61841f89d8adc6d57b5b12cb453708961c16a22133c092fab8ecfcd1e3c mruby-1.1.0.tar.gz=afa99a973e9c1b72a5a418d709c4aca08dc7449c427cedef5f12db4ccefb15e11a4fd1c23ceb7e31e49d4d2e602c0b1f9dcf2e0f6cf8ea3466f0b9bee23b53df mruby-1.2.0.tar.gz=bd5de32ba52b6642358752755329fa45a954082122a8983012930056c286ac328fb52fbdd11f34ff7c80af2c0e9a6348abcd5214602aca1150f2e7ae25cad1f2 mruby-1.3.0.tar.gz=13a57306706d2d60693151919ae15bb3621e6e7ed3b5e9c6d3b1c8d44e52b898c1ad394b39946d730ff82a19f5e3b7c2a374f9dcc3b6c6f990581e504f1cb9cb mruby-1.4.0.tar.gz=d2dd6e17c7f8e890ef5b6887538cccdea08a2376ba8f9a478d7d5c4377fd4c31a4af6323b1fc73952ef80e5a4778ca22eac3d724ce7d50b76770f7e614df7da0 mruby-1.4.1.tar.gz=2cbf155ba7819211b6410ea606c4d0db3adf4f47a4018ac45285ab3e32b94f280aa0af0936ead7233411957cfca62979d14bbaaf0d8f40521cba5c12272f2af4 mruby-2.0.0.tar.gz=8379f76b7a06d280e2a2552eec2975ffa3fe85b99028f6f7c009cd908f95faf3cd36a9975f502a5779559baf3c45a4297da0b6bcc038d213a0fdee851f9d01ea mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.1.0-rc.tar.gz=f310b385cbf80c6b6ab67e2a41b931411149639c0bf778799e3358d6a9a59f508f42e3faf72fef9e8ef91088d6184c445af7933a47e4e2b2fe114362d579bac0 mruby-2.1.0.tar.gz=da28b5a078e121c75edf62fc68fad6d5810212bd53a3424d4f585ffe5bbd09f652393ffea0f4b3ddd802e5fe178554dc67040c39c9d5069bdfad4ef22ead7e8d mruby-2.1.1-rc.tar.gz=97c9cc2c79a5dbf2f634ea08532f0f512f8af6ffb99ab4eefd83fc336ca9d97b943e76643971047b4508aaddb5e40176d6cc8fa39a17022455aa15d774eb5b98 mruby-2.1.1-rc2.tar.gz=13aa32a35bd5d8f02a9bfd08d17818dbae78ce46c8b0224a029f9f191cb64ac330eddf3871f4396b9221b987a91e4cd6f8933f59814ac0018155ec8454abff18 mruby-2.1.1.tar.gz=66f9b4bebb5a7b19f5cb1be2bd8b9bc65e4dbb5d4350d238ad5f947c9195fd431f2069f7334036ea63a750e9257e59ae1aef16ac99c7e1f4e17724cd1cbe2e50 rubinius-1.3.3.tar.bz2=8b91baf429dac60663d0e4da3152a60ec6e007f5d6c17ffa430876ec88eb87ade44efae90f2e32e238fd74f1b3d54e27492315f08e7bb073220b402e1e2d3163 rubinius-1.4.1.tar.bz2=928d12aa01a1d0f6c80175d67d3b1f8b9840f69f045c8148786612316421223f4cea71e3c373ee18a3f686b1457557ae547645afe758a99d21c4818dff47b9d1 rubinius-2.0.0.tar.bz2=5c81a6b8cf7b59e08c3b9353b0eb37ce985aaf391f5064df65ffb10f6d12b668287e4d4e61e2c6b560d9234c10f0b64bba74259f2c06f1dac488928544d4131d rubinius-2.1.1.tar.bz2=154cfa93ed59835814b8b974f6d738b049942fcc2b75095d21c87647d002c879fd55aa3d1ec95414b5b66eb9926c25a5c6e3e19a7c0da7dec6edbf434acb9c68 rubinius-2.2.10.tar.bz2=c2168e676059c197123916dd948b83e39bb96e99786bdcaef2e690936b761fedb13740b9f19883f991f1b475f3249ea1696213e8448c41ae15dfc14b3d4e1fda rubinius-2.3.0.tar.bz2=d0f3dd5e3b891bff2eb79b7810c6041e15fbbf0606c379f89575cefd829ac7a394b0c12ed3c5a4d452730797bc0a2c6c82646a19a078b56dcac7acad015a4559 rubinius-2.4.1.tar.bz2=7bcea320006b8cd3d122c407d89c325973a74c32456ba0b649657ac848f4682f2eb7455c13e3007709c22932bc2e1b65e2dd43fda0d3c9f993ddf8a74d1e2cb1 rubinius-2.5.0.tar.bz2=ac94d5bc11524e715fc24c1de33f4d358c2cd65e92fbb64c850dc8151d2a712d268227733c99fcffe298c3bdd6ce080c5e9553e4e8f3238868323498a9d10cae rubinius-2.5.1.tar.bz2=9315f76126d0aa754ee63b190385c24cb084f36293a99aa30fc482fd880d5393aabce361e09ff5514bc2540dfede8e179b7e9212b2dd59bd14ca2aa69d209a83 rubinius-2.5.2.tar.bz2=b48bd8d54a450441a50904b07c75c8d31b59822830a74c952720d6f8d2d86e6a27a84775e975ff2bf55bf3346f34e69d742f308933a9d8476e5e78109cb525f6 rubinius-2.5.3.tar.bz2=b923446d325dc3ce5ad28af9ee527607fae3259b85e85aeff97c1bebbb4520daf70616957b1c0ded900ed19e59025826dee66977c19cd2a2d4e9a0296811eb20 rubinius-2.5.4.tar.bz2=75b7ddbe218e4c92210dbf5a06eb8b3c3aa028d16146982a4e813e3af10a90d33f3e239f4508469c6aba17f02cb8bd10e96a204839975e06519869cacd456c92 rubinius-2.5.5.tar.bz2=a862146ddbbdcd4439eb64e78bfe6d09ae4cca540d19869618426d3f451544658713fe8eb7d46493785eb0cc721077e624293cc44d68eea3ef584967b43a18d7 rubinius-2.5.6.tar.bz2=9a0bdb5d77f80f163925ce409d00be3cee34871baae8bcfdb34c3c7545b92fd14102fecb970e42b3012588d299e504b724025f397a5a00e181ab75f1448e426a rubinius-2.5.7.tar.bz2=8048110b3ba4e5ff8c3f35282896067e1b1b46dccaf9ef4f6c9b6098782f27591ff59ccae0234fd7e881e3aaf17a0b420286b1b52ecd2cb672249655795a6982 rubinius-2.5.8.tar.bz2=23fca2f9747d2b0e544af890c3baacfb7b3a009cc59cbe653762ccdd827a6c915dcc57902d317fa1f7a81f8c12682f6c3a93195331b6de0f705b118e2e8c13f1 ruby-1.9.3-p550.tar.bz2=38767e98df25484f7292437f3cb0f798b3a43e9a7414a5401677e96ad1cc367cb3fa23ac3abe568d5bf2b2ca553713469a8770d41b79bc63daf3fa59cb4e15c6 ruby-1.9.3-p551.tar.bz2=5ea40f8c40cf116030ffdedbe436c1fdbf9a50b7bb44bc890845c9c2a885c34da711bc1a9e9694788c2f4710f7e6e0adc4410aec1ab18a25a27168f25ac3d68c ruby-2.0.0-p576.tar.bz2=e089cca4867cd9c715f4f37e40a1db9af6ba0c74b47e79568121bb980476f8877a87ccb848b973381edb4667c0c73165f5e1761f60db839e67f6326302dbd864 ruby-2.0.0-p594.tar.bz2=8301a51c73fb63a8cfeb14af47d0c18b5bc3c45e3d62fc2ed56a673a1cd6b0015c41f275e70eb14a9e40036b1530977199321e05285e107a6adf58514bef1b3d ruby-2.0.0-p598.tar.bz2=10026a04e01a8ad14ea9c99bbdf4f7d04029b73ee0c01bbf6c2eb2817332d49adacf127b646693b67b5dd7010eaf3b696b23b6335cc0f7ee5a6b56dbba0f6f82 ruby-2.0.0-p643.tar.bz2=453117152e6facdcd5bedaa9c3b1e349382bc5bc1dd3d650ec58b398cb9d2519a2822d05da10bcc5dbbb4f513fc5fef310caa3529d176fa2d453befb28e4d83a ruby-2.0.0-p645.tar.bz2=e9ca186b1cf0877cdbecd43dcab2c5161a53103e926609d5e1b769a4980eab4571bfd0951788b4fc92dfd9d10175b0f5f36ea2c7289e575a9db9b62c02f93185 ruby-2.0.0-p647.tar.bz2=3416af771ebb0b27ceacf23d309bd2a1ede832c2edf48a5ca46f0b0b84b2ab94fb6362a0c7fe4f77b21253539db8161ae26d23a78d1ba729bf03812454d93d04 ruby-2.0.0-p648.tar.bz2=609acf6d6352c9746e21cd7f0e7d29f5eb522e6fff2d5fad0431d63c568cc084ed5b7141f84cd33512d8213200d2d1a22e8d7df71469a980a3a92886133fea38 ruby-2.1.3.tar.bz2=9b48adb161e5e4550a71f61252c8edf59944affb82250babcb64240749af4b672e4a54ccd0feac5b36ea447a358b350b5080125ef2d4acf6e9e8b1ab82612f48 ruby-2.1.4.tar.bz2=68db1567751166c5e7d24b6e5015124b8a15568c50556e1f429486395352fa56c4a195a74820ab135697924149d014b445b345a1b9755678aaf824fba79c606b ruby-2.1.5.tar.bz2=d4b1e3c2b6a0dc79846cce056043c48a2a2a97599c76e9a07af21a77fd10e04c8a34f3a60b6975181bff17b2c452af874fa073ad029549f3203e59095ab70196 ruby-2.1.6.tar.bz2=75d58120b5f387bcadbf6d19e85624f78c74f81b9018baef39207214673f7ebc0700ab31145acd88b4071c896ba8e1302a29c90955bcf5f8c863634125022aa6 ruby-2.1.7.tar.bz2=f610d2dd6a93f0a5e84e04ddedf847bbcea5dd3289b3164cdf60be64f67a80dfd5f9836ea5d169970cd0ce24a7e05ea6190699706567cb0d5cf450de6a70e445 ruby-2.1.8.tar.bz2=7129c012bca7f0e7cfa51c73ba0898697f7a9f31abd5ae57d38be5b6b646fd80ab33be9b262cd3e2486c66f65aaf4ec6e881ae6e5a82ec9df62f00fa072510fc ruby-2.1.9.tar.bz2=a86422132e4c64007a84a91696f4557bdcbc8716fbfe1962f1eef3754ee7f994f4de0b5b7e7231c25057515767040d5c4af33339750b6db15744662e9bd24f38 ruby-2.1.10.tar.bz2=4b7213695416876e4de3cbce912f61ac89db052c74f0daa8424477991cfc49b07300e960177ff576b634a97ee8afef3c5aded5d5806329dbd01d0ce7b42b9b63 ruby-2.2.0-preview1.tar.bz2=2f1190f5d8cd1fa9962d1ff416dae97759d032a96801d77bc6b10136eba59dde1a554ff8c0c2d9ce0d3c1361d4dd12ad573b1266fd53b90ab238d8ce39e6b862 ruby-2.2.0-preview2.tar.bz2=c654d4c047f9463a5fb81eaea0fa5ab7bf316962bc7fb0fb356861e6336ce8ce2162c7779d8b27f72d7bc0e9604b5e5af2910abcb0b0a1f197b3138eaddfd4a5 ruby-2.2.0-rc1.tar.bz2=181201168360bee37dceeef3481a69e8a333a5d329680031fd9d371d30ac64460bbdf4db07546133024f541774e51301f1630cfd988c5e5bf2464834f3abe6bf ruby-2.2.0.tar.bz2=04edc53e8cd1732c3ca61ebeb1d6133614beb10f77f9abb80d8d36352fe8aa205112068e460bf600b2c7e81e0ddcc3b311e7e027c320366f1bd992b3e378a6ad ruby-2.2.1.tar.bz2=af6a8e75a66b953ff33ecbca5111bcf1c6560b6b48b370b700820fcbe91363146c5ac8abd670a14e693b44343ae598bab472ed2902834304c03ffcd9550886d1 ruby-2.2.2.tar.bz2=d6693251296e9c6e8452786ce6b0447c8730aff7f92d0a92733444dbf298a1e7504b7bd29bb6ee4f2155ef94ccb63148311c3ed7ac3403b60120a3ab5c70a162 ruby-2.2.3.tar.bz2=795f1b66a6d4f0baef897068899c3a1a4370ce1268618e6a7d6d4720234444259f371d1ba2e174b2f7580265e9f18eda3f295fbb087447aa6e8fb7a0f07526ce ruby-2.2.4.tar.bz2=d27ca2f19c214ce87f906b57edd41f2f8af35b2871c191470facded9cfda15ba46e5c3bc7d5540225a38da6bd65050fcc8aaa4ffbadbb6bf7dc891c1821da0df ruby-2.2.5.tar.bz2=d3224814361c297bc36646c2e40f63c461ccf5a77fea5a3acdcb2c7ad1705bb229ac6abbd7ad1ae61cbe0fefd7a008c6102568d11366ad3107179302cd3e734e ruby-2.2.6.tar.bz2=7a93f72d236521ac28c8a0bc0c73cf805797a8813d22e02f42c5fc05dd39f6e422817272e0db6a24c245f6f97ad4b2b412a9a47ac50156ab186df596918a5f34 ruby-2.2.7.tar.bz2=83756cd1c91516962b83961e0de59d858618f7ed3e9795f930aab4f199d47a95ed8f867d8aa9b51d508be26d9babf2140117c88241168bac41e6ef702cfadf20 ruby-2.2.8.tar.bz2=aa1c65f76a51a57d9059a38a13a823112b53850a9e7d6f72c3f3e38d381412014521049f7065c1b00877501b3b554235135d0f308045c2a9da133c766f5b9e46 ruby-2.2.9.tar.bz2=2a8c8770fda20a22b79c9115b6f468f8e7ea1092c84a5089af7a3122163e5ad298b493e6637e4d93ba02d899d8a619c94064dda8ac98cf3b93f64f45d5401085 ruby-2.2.10.tar.bz2=f8ec96c2a5f4ecf22052ee0b1029989ded52d7bf5d41be24fef67e732e76f72119302240bca08f0547510a9cd29e941a32e263cad9c8a2bf80023d6bc97b2373 ruby-2.3.0-preview1.tar.bz2=ae6d46c87f59e1fd3703b76dfc45bfcf208625f95ab9f4559f0b9f7050e8681f1a6e419f5fa06b704c83e56879c3a9ff1337dba443bcfca76fadb49c97d97a93 ruby-2.3.0-preview2.tar.bz2=e397f321d4338edba8d005d871408775f03d975da90c8abcfdb457a1bc7e6c87efe58c53b2c3bc122e9f58f619767b271bcc8d5d9663ed4b4288c60556e8d288 ruby-2.3.0.tar.bz2=77b707359e754c3616699d21697752741497c719dc3d6fdfb55ed639e76d52560d293ae54cbe5c63be78dc73fbe60f1b8615d704d017bdfe1994aa9747d26a6c ruby-2.3.1.tar.bz2=a8659b96a3a481a3dbdbb6997eb18ff1f8cd926a9707a90d071e937315c21d372c89252f0d44732ae5007d2678fda8c8fbceafa4e4b4ff500d236fb796284d8d ruby-2.3.2.tar.bz2=78699bae5b0a2382a58f9d51f7d891341f00ad3a90d9ca06b68b1b245cf5acebc3a82133e39bf6a412ac999a5c0f778a0dab177c2569ffbee085ffff6f6ec38e ruby-2.3.3.tar.bz2=88f7782effd35bfe0b4c33140b5eb147d09b63fbb35b9c42d2200c010f387e2b70984ead1eca86569e8ec31f08b35289d440c0ca76b662dadb760f848e863d91 ruby-2.3.4.tar.bz2=ad1f16142615498232d0de85149585be1d2c5de2bc40ec160d272a09e098ef6f317d8b25026001735261fd1c5bc0d1f8513a8474e89f0d86eed5b2fe7338d64e ruby-2.3.5.tar.bz2=3ecc7c0ac10672166e1a58cfcd5ae45dfc637c22cec549a30975575cbe59ec39945d806e47661f45071962ef9404566007a982aedccb7d4241b4459cb88507df ruby-2.3.6.tar.bz2=bc3c7a115745a38e44bd91eb5637b1e412011c471d9749db7960185ef75737b944dd0e524f22432809649952ca7d93f46d458990e9cd2b0db5ca8abf4bc8ea99 ruby-2.3.7.tar.bz2=e72754f7703f0706c4b0bccd053035536053451fe069a55427984cc0bc5692b86bd51c243c5f62f78527c66b08300d2e4aa19b73e6ded13d6020aa2450e66a7d rubu-2.3.8.tar.bz2=6d79e0d25757fd37188a8db3e630a52539bce7927fcb779a2ce9a97b9e5f330753035c16843552f1a1fb6c9a1e5c0f916b3cc8b5c0bfe81e20f35f8442e40ae8 ruby-2.4.0-preview1.tar.bz2=c9873e8686eb54dbde61d6e23cd5197beebccd6cb31fd12c82763ebe1fde17095d7514d9d93c2c82b238032c98691df5479dc2d666a8a590e0fc54450ec29cb5 ruby-2.4.0-preview2.tar.bz2=0c9a59a2f57a99c4ee8539a30f41da1de7547566203f89d856e1be9dbb44365754e6c470145dc9336eb324e0feb2f53d9fef18a1564968ac21f9ee528905949f ruby-2.4.0-preview3.tar.bz2=6602c65a7b1e3bc680acc48217108f4335e84fdd74a9cf06f2e2f9ad00a2fccacf9fa035a912bc9d5cc3f0c7a5e21475971dfac37b0364311ef3645f25c7ddf9 ruby-2.4.0-rc1.tar.bz2=b43902ac7794487197df55a45256819d2e7540b77f1ed4eb68def3e0473ee98860a400862075bafadbde74f242e1dfe36a18cd6fe05ac42aae1ea6dddc9978ce ruby-2.4.0.tar.bz2=bef7bb53f63fb74073d071cc125fb67b273ed0779ef43c2d2969089b9ca21fff1bd012281c5b748f7a3c24dd26e71730d7248c05a01cb23ab2089eb4d02115fe ruby-2.4.1.tar.bz2=1c80d4c30ecb51758a193b26b76802a06d214de7f15570f1e85b5fae4cec81bda7237f086b81f6f2b5767f2e93d347ad1fa3f49d7b5c2e084d5f57c419503f74 ruby-2.4.2.tar.bz2=1a5302d2558089a6b91b815fff9b75a29e690f10861de5fdd48211f3f45025a70dad7495f216e6af9c62d72e69ed316f1a52fada704bdc7e6d8c094d141ea77c ruby-2.4.3.tar.bz2=fb4339e30c04d03b1422b6c32ede45902e072cd26325b36f3fc05c341d42eea6431d88718242dcc9ce24d9cad26f3d26772f2e806bd7d93f40be50268c318409 ruby-2.4.4.tar.bz2=ae632852a5f413561d8134e9ef3bb82adb37317696dd293ef92cb76709ecd45718f14116ecce35b12f1c2dd53ccae8dabc7a924a270072b697512d11f4922347 ruby-2.4.5.tar.bz2=7034fcaeaee41f14bc0ecce0d3d93bd1abe95310e1a0b95fac66eaba867adfb2bf7ba4d0d70d67a15ce8df16052dee405c38cdb18987602e64a2f701d37d3df0 ruby-2.4.6.tar.bz2=292802984e5cff6d526d817bde08216fe801d255c4cede0646e450f22d4a3a81ae612ec5d193dcc2a888e3e98b2531af845b6b863a2952bcf3fb863f95368bcf ruby-2.4.7.tar.bz2=2665bca5f55d4b37f100eec0e2e632d41158139b85fcb8d5806c6dc1699e64194f17b9fe757b5afd6aa2c6e7ccabba8710a9aa8182a2d697add11f2b76cf6958 ruby-2.4.8.tar.bz2=2d7e0f5ad766e2a12a1b53ff838e6bfe86244ffb7202196769c25e9df6f71f3ccdd8605e7ef35c53e54310bc82caf6b368ad5111dd0a3ad70a3aae1a7be93f08 ruby-2.4.9.tar.bz2=d485444dcd025a261a16bd740dae63c0aa23e4138a095584e7a83aec47af34415c7d9cbc1313e92da2ec416b11bfddf20bb1a7b60c80f12906d11ef27409b3e8 ruby-2.4.10.tar.bz2=4d730d2d7cb96b002167ee358258f2620862a5a6d8627cfa5b49bd43c6e59c50c0f437b959d4689b231d57706ec7d5910d9b144f4ca1c1ed56bc879ed92e8a59 ruby-2.5.0-preview1.tar.bz2=2d39ef64aaf7a52014905f4ad59b53e83b71433e50a9227f9f50cbb7a2c9a5db9cd69fa7dbe01234819f7edd2216b3d915f21676f07d12bb5f0f3276358bce7f ruby-2.5.0-rc1.tar.bz2=bf0eb114097f9e505ff846f25e7556a2fb393573b4e8b773f94cf5b47998e221f3962a291db15a3cdbdf4ced5a523812937f80d95f4ee3f7b13c4e37f178d7a7 ruby-2.5.0.tar.bz2=8f6fdf6708e7470f55bc009db2567cd8d4e633ad0678d83a015441ecf5b5d88bd7da8fb8533a42157ff83b74d00b6dc617d39bbb17fc2c6c12287a1d8eaa0f2c ruby-2.5.1.tar.bz2=82e799ecf7257a9f5fe8691c50a478b0f91bd4bdca50341c839634b0da5cd76c5556965cb9437264b66438434c94210c949fe9dab88cbc5b3b7fa34b5382659b ruby-2.5.2.tar.bz2=9f9388a162a3ae9c14ec8999fa3b12ff5397de14f55996cc8761d21c757113db37ace4d326b9606de7ad3a5875aa94fec900dd9b81b2fb0dff558c39422f4aa1 ruby-2.5.3.tar.bz2=6fe89fe9d406bb454457442f908774577369ab2501da4fd15725ccbab77675b88faad739a6c8ad1c7b6690b439a27de5e08035b7546406cdeca65c7b295e2c77 ruby-2.5.4.tar.bz2=3c4f54f38ee50914a44d07e4fd299e53dddd045f2d38da2140586b8a9c45d1172fec2ad5b0411c228a9b31f5e161214820903a65b98caf3b0dfeeaabf2cab6ad ruby-2.5.5.tar.bz2=1b56aa79569b818446440b9f2d13122bf7c2976ab9b2865f5fb62d247d7768dd4ac5b5e463709ffec0f757bff7088afd293c2a8c5349c3780763b6444bb354a8 ruby-2.5.6.tar.bz2=e4511d42d19a7bb39ea79f66bb4eca54b63c2a9d27addc035d6d670c1e59ee48a0c6e9c6bc7d082d1f1114b0668831dce3b7422034517f3c4a06ced0e47a7914 ruby-2.5.7.tar.bz2=7d6a7d41b4f3789f46be5f996099f3eb8321aa4778b2a8ff44142654e769ba4ba2df127dd0f267547e4c8cd6ff46364f18e79838df54fcd7e3fb714294ee0099 ruby-2.5.8.tar.bz2=037a5a0510d50b4da85f081d934b07bd6e1c9b5a1ab9b069b3d6eb131ee811351cf02b61988dda7d7aa248aec91612a58d00929d342f0b19ddd7302712caec58 ruby-2.5.9.tar.bz2=12f58e14cfa6337065b0e82941e39b167813920eb54cbdb4ac4a680dd0cb75d2684d341059e7b4d0da1292bfc4e53041443bd14891a66f50991858b440a835c8 ruby-2.6.0-preview1.tar.bz2=d9cb270529a97670d54f43a0236fab072714e715c39277dab70b7a1843ec818e6700e47e1384c7256f9e0ae41ab2c0b768a0de38a5ecf4f4fff5da6ef5ad4944 ruby-2.6.0-preview2.tar.bz2=3872227e9b1c97c206d19bf1e6ce15a38ee15a26c431b4436605dea67affcf16372358984df76b35e7abaa902c15c16f533ac7af47e3031dea9451bbe459b693 ruby-2.6.0-preview3.tar.bz2=d1693625723796e8902f3e4c4fae444f2912af9173489f7cf18c99db2a217afc971b082fce7089e39f8edd54d762d2b4e72843c8306ed29b05ccb15ac03dbb5b ruby-2.6.0-rc1.tar.bz2=cbd6281b2aab6fbce3f699c1ab57e5423304dca7a547a0b3cd4e8e980326dc7b85b2ca2bfaf3f3a648d40f4222fdf1740d81d422790ee7ae1ba1ed33eb11e3e8 ruby-2.6.0-rc2.tar.bz2=9bfbe83fd3699b71bae2350801d8c967eb128e79b62a9d36fc0f011b83c53cab28a280939f4cc9f0a28f9bf02dce8eea30866ca4d06480dc44289400abf580ba ruby-2.6.0.tar.bz2=ca3daf9acf11d3db2900af21b66231bd1f025427a9d2212b35f6137ca03f77f57171ddfdb99022c8c8bcd730ff92a7a4af54e8a2a770a67d8e16c5807aa391f1 ruby-2.6.1.tar.bz2=fc41429491935b89532733b95476ab9f8a4efc310aad8f4c2bd3b68fba08fd7b6e9ac84c6c88ca892022d1ba76435295f3299ea466f9b5453c07d41cb539af59 ruby-2.6.2.tar.bz2=cad678d2ced4085e99009e4fef83c067dd0e6ead27a8695bc212c0e5112a7fa09ceb27f82638faf91932ef8bdd090f844e0a878ffdf6845a891da4b858588aa0 ruby-2.6.3.tar.bz2=c63c3f527bef88922345f4abb4b9ad467117b63f2132e41722ea6b4234cec3446626c3338e673065a06d2894feee92472807c284cbe613a442c8fda234ea7f88 ruby-2.6.4.tar.bz2=a9fa2f51fb5f86cd8dcaa0925fe6f13d4f19f110b5d4c5fd251f199d16aaf920db39ad3bb50460eb94ab8d471ab2ac8bb54daea4a3bb080eaf45250aac3437fe ruby-2.6.5.tar.bz2=28e0b04ac8ca85203eb8939137b5e5de4850c933faf7f62fc69648fe1886faaabf6cdf48382f9d9585c1720876d10b41dafd33efaeb23341c309917fbd8a6e21 ruby-2.6.6.tar.bz2=001851cf55c4529287ca7cc132afc8c7af4293cdef71feb1922da4901ece255ec453d7697b102a9a90aef2a048fe3d09017ea9378ab4a4df998c21ec3890cdbb ruby-2.6.7.tar.bz2=311ec56d23d0de7a163f66c1ef4e5369b822f8409f8e1f3a25785c803f01c68dd13aa8ddcfb3a0fe6a97bf321950f8d6cd75b2babcb04158e791601914666f7a ruby-2.6.8.tar.bz2=51806d48187dfcce269ff904943dd008df800216ad4797f95481bdeecc2fbac40016bc02eabfff32414839ebb2087511d25eebfd6acead1a1d3813be6c10edf7 ruby-2.6.9.tar.bz2=ff067ebc059094c0a9a0debf54a37aad2c85f7ed47be59299041c9c03a7701529f5063ff32a1b8c56d48ee8585015acba63602ed0176b2797d263d43d67aa241 ruby-2.6.10.tar.bz2=275a0f329641e6c3d3d3c33ffabf585195187eb3baa4fb1dfd35999fa0a80bd5925943fa2711827ac00dffb6c9a1deeadabaf2e9ee401d56926fc167db5ae4a4 ruby-2.7.0-preview1.tar.bz2=a36b241fc1eccba121bb7c2cc5675b11609e0153e25a3a8961b67270c05414b1aa669ce5d4a5ebe4c6b2328ea2b8f8635fbba046b70de103320b3fdcb3d51248 ruby-2.7.0-preview2.tar.bz2=7066ececebbbba4b2933ba1a4f70cdef373169910802259a3e52b4fc144ba298f3cffda4be5fe8a7be8ef769ed43076fa046a9ac2c13bb733475b9852112c6f0 ruby-2.7.0-preview3.tar.bz2=5d8e99e3fd984c7d05c0bc483e1504e81ccdb920cbb2d78cad3c314e197b30316b692fd0199f836acac41246e3a713cb81dc6dd64c27cba56f807df4c193db1a ruby-2.7.0-rc1.tar.bz2=b5f96227775f8bdf19f944a555d0a83d7e84b37bd31fe4b8ac008a3272b1a28a4d94abbb1b5570ee32ec0690ba9d476b837a020a5194bee14bebf6f0e768bc79 ruby-2.7.0-rc2.tar.bz2=9010f72bb3f33b6cd3f515531e6e05198f295bb2a8a788e3a46cdfd776a9f6176b6ba8612f07f0236a11359302d2b77fdecca1dc6be33581edbb028069397a0a ruby-2.7.0.tar.bz2=8b8dd0ceba65bdde53b7c59e6a84bc6bf634c676bfeb2ff0b3604c362c663b465397f31ff6c936441b3daabb78fb7a619be5569480c95f113dd0453488761ce7 ruby-2.7.1.tar.bz2=4af568f5210379239531dbc54d35739f6ff7ab1d7ffcafc54fed2afeb2b30450d2df386504edf96a494465b3f5fd90cb030974668aa7a1fde5a6b042ea9ca858 ruby-2.7.2.tar.bz2=f07592cce4de3532c0fa1c84d53a134527d28ba95e310cd3487ac321c49ee680faeace285de544ee6db432a90aa7538a1d49ff10c72b235968ca362ef9be621d ruby-2.7.3.tar.bz2=e9236138be3e61380140f2e0d42f8fb82ad8f5219d454de2f6c2ec546bb208acc8b0f2020f23e6446660d2b3b9ae873cdd8298471f166a5f1efba8e80b05e746 ruby-2.7.4.tar.bz2=f144c32c9cb0006dfcfa7d297f83f88b881f68c94f0130346c74dfd8758583a68d22accfd0fc9f31db304ab5ff0bc135bfb2868145c0dec1ee6cec5ac6c3725d ruby-2.7.5.tar.bz2=0aa2ac44bc22859a39c43d08b7c7f457df05c2dc36b2574fd70ca399143ef1000dc5e496212db9eb055bc4258523d47d26db3c57a1a5a5d63cf1b3de9f81645a ruby-2.7.6.tar.bz2=4f7f3624afc43da25ebf0f01d5a2f92f72f94bab7423587cfd3920e089b479bf559b159adf2891b996f7e6a98c008a4f73a4a2170e2f8619417660ac1ab24bdc ruby-2.7.7.tar.bz2=24cc772ac1b56d3bb423f1b33716f221bf534f3717a506bf8235a698f8a454db7d79d94ae9a84067153c2f737b3f8f6085f34e36cc04be0d75ae2fdd57718870 ruby-2.7.8.tar.bz2=3a9db8d9e79318f869417f2ebf3365907febc0d1428116eabf3253c51d8420f255782b32fa30a54802b9f5f4187fad80dab0611cc80436feec84db87b0456ec6 ruby-3.0.0-preview1.tar.gz=b94892951f842a1538f4b99022606ac2c0b5031f1ede7eef3833a8caa9ed63e9b22868509173bfefb406f263c65211db75597b152b61f49e5ba2a875fce63a27 ruby-3.0.0-preview2.tar.gz=6fa4191425ae71e41894b60bd9c31d483a562ee8216886360ce18238ab48115b95be0367708612c45f634e7584fba8940a524ba0113ce0f36ce4df78a112d0b7 ruby-3.0.0-rc1.tar.gz=798926db82d27366b39be97556ac5cb322986b96df913c398449bd3ece533e484a3047fe35e7a6241dfbd0f7da803438f5b04b805b33f95c73e3e41d0bb51183 ruby-3.0.0.tar.gz=e62f4f63dc12cff424e8a09adc06477e1fa1ee2a9b2b6e28ca22fd52a211e8b8891c0045d47935014a83f2df2d6fc7c8a4fd87f01e63c585afc5ef753e1dd1c1 ruby-3.0.1.tar.gz=cb81db2c9b698cf8159b2ca6507f4c7f171e4eb387f5730c4b658ed632b7900a169808e6fbec0ee80598d937030ad5d9c56b63a2a339373ec5d9e1c06b7661d0 ruby-3.0.2.tar.gz=e1fba6f5429b5fca9c3f52a32535615fcf95fafa415efc71c46db4cce159f249112c01574c305026be5c50140335696042e47a74194caea045acbfaa4da738cd ruby-3.0.3.tar.gz=39dab51a0d784a38302372b99f96205817d466245202586d22123745761e9cb39db128ec2b984ebc3919b9faf2adf828d19c97d3fb1e56d44be0a81dc5d11b87 ruby-3.0.4.tar.gz=0dfded6826063c1b39bf625a6e13b46c109cb160c8648b78f0965f70e7c7a1a65f1c117fc8f2cf8bdb34d7cbf79fecf1f45d169d2323406d66ab27b18bde1d22 ruby-3.0.5.tar.gz=ea45fcd2ca53b87f18fd8696d00a1e340d2495443216aaf87d3f643cb5bd8bb614a1faacd82d07e7f2b72172397c728316a82d7c34a7b4566191268ea517ccf7 ruby-3.0.6.tar.gz=d596bfd374ae777717379b409afe8ee1655ade0c0539ada7a10af4780b818efe25a28aa50a2a7226741d1776d744e10ad916641f9d12fb31c7444b0a01d0e0cc ruby-3.0.7.tar.gz=66e5116ddd027ab1b27d466104a5b440889318b4f2f74b5fdf3099812bf5f7ef77be62fe1df37e0dc7cd5b2f5efe7fee5b9096910ce815ca4126577cb2abfaa7 ruby-3.1.0-preview1.tar.gz=63f528f20905827d03649ed9804e4a4e5c15078f9c6c8efcfb306baa7baafa17a406eb09a2c08b42e151e14af33b1aadbd9fb1cc84f9353d070b54bbf1ff950d ruby-3.1.0.tar.gz=76009d325e961e601d9a287e36490cbc1f3b5dbf4878fa6eab2c4daa5ff2fed78cbc7525cd87b09828f97cbe2beb30f528928bcc5647af745d03dffe7c5baaa9 ruby-3.1.1.tar.gz=a60d69d35d6d4ad8926b324a6092f962510183d9759b096ba4ce9db2e254e0f436030c2a62741352efe72aec5ca2329b45edd85cca8ad3254a9c57e3d8f66319 ruby-3.1.2.tar.gz=9155d1150398eaea7c9954af61ecf8dfdb885cfcf63a67bbcf6c92e282cd3ccac0ff9234d039286a9623297b65197441438c37f707e31d270ce2fe11e8f38a44 ruby-3.1.3.tar.gz=550cfda2ae492312009a58316e18fd77ea92852718b37443bcd76aac84ba6694fb841fe19bf23bee099f96f5aeed9d03e77c8c02fb194e414eca5f707adbbf90 ruby-3.1.4.tar.gz=41cf1561dd7eb249bb2c2f5ea958884880648cc1d11da9315f14158a2d0ff94b2c5c7d75291a67e57e1813d2ec7b618e5372a9f18ee93be6ed306f47b0d3199a ruby-3.1.5.tar.gz=23661cb1b61013d912b7433f8707bbcd723391694d91f413747c71428e74f8c7385c1304de7d08b70c9fa3bd649e4eb5e9acb472d89dc2ad5678cc54855a24ae ruby-3.2.0-preview1.tar.gz=d24e77161996c2085f613a86d1ed5ef5c5bf0e18eb459f6a93a0014a5d2ce41079283b4283d24cb96448a0986c8c6c52a04584abd4e73911ea59cefeb786836e ruby-3.2.0-preview2.tar.gz=5e9ddcb1a43cff449b0062cc716bfb80a9ebbb14a1b063f34005e2998c2c5033badb44e882232db9b2fceda9376f6615986e983511fda2575d60894752b605cc ruby-3.2.0-preview3.tar.gz=860634d95e4b9c48f18d38146dfbdc3c389666d45454248a4ccdfc3a5d3cd0c71c73533aabf359558117de9add1472af228d8eaec989c9336b1a3a6f03f1ae88 ruby-3.2.0-rc1.tar.gz=798157d785ebae94cb128d3c134fa35e0e90c654972e531cb6562823042f3fb68a270226f7b1cf0c42572ef2b1488a1a3e44f88389ad2a6f9ca4b280a2a8e759 ruby-3.2.0.tar.gz=94203051d20475b95a66660016721a0457d7ea57656a9f16cdd4264d8aa6c4cd8ea2fab659082611bfbd7b00ebbcf0391e883e2ebf384e4fab91869e0a877d35 ruby-3.2.1.tar.gz=f8bbff5e237b501f4042ddc70a19ac1ce74f72f147c90daf7f3007a940136abde37c12a0f7444f713ede09ba847c2cc2897a1742823832e3dc8cce80073164e1 ruby-3.2.2.tar.gz=bcc68f3f24c1c8987d9c80b57332e5791f25b935ba38daf5addf60dbfe3a05f9dcaf21909681b88e862c67c6ed103150f73259c6e35c564f13a00f432e3c1e46 ruby-3.2.3.tar.gz=75aecd9cf87f1fa66b24ecda8837a53162071b4f8801dcfd79119a24c6e81df3e3e2ba478e1cc48c60103dfaab12a00cfa2039a621f8651298eba8bd8d576360 ruby-3.2.4.tar.gz=b695b98dac7bb2c8755a106d949cb1b1b91551092fad263765171ddf8a4d86585259ffab5f7cc9bace70143d645dbe5932cfc61c6dba7817177de391d76bcd79 ruby-3.2.5.tar.gz=d86c0151fabf21b418b007465e3f5b3fd0b2de0a9652057fd465b1f7e91b01d00f83a737e972ea994a5d9231e8cb27e64e576852390fe6c2ad502f0d099fe5f4 ruby-3.2.6.tar.gz=26ae9439043cf40e5eddde6b92ae51c9e1fa4e89c8ec6da36732c59c14873b022c683fb3007950d372f35de9b62a4fabbbc3ef1f4ef58cd53058bd56e1552cbe ruby-3.2.7.tar.gz=174e70ac20a21ea77e2c5055a9123a6812109fd7b54c0f7b948312b8159eedbfb11c06120390c158430ca8543e36893da6c809883c82757082d22e08004c5055 ruby-3.3.0-preview1.tar.gz=0f891f140ddc6372aa7c4459f8784126e0c341db7b80e72c51e441c5153c43c2d7b965f7807c076862ac84b9b8b0c6a66bbf66fc341746016151397bb21c782a ruby-3.3.0-preview2.tar.gz=1c5a13e519e8487fd40d932b96d14fa729521925c288e7841ab5eada628e506ceca2605bae36eea1aa505d9253383d53cd933b7a4bff96e6de5b1130c7c558e6 ruby-3.3.0-preview3.tar.gz=94db07a6958c09809b2e5b597fa55a121074e8bacb3bf588c83cf0d35b07a8b070172035a49d1abf0d8ee364a9ace824f34e677f7327ffe1acdbab0938ac49c4 ruby-3.3.0.tar.gz=26074009b501fc793d71a74e419f34a6033c9353433919ca74ba2d24a3de432dbb11fd92c2bc285f0e4d951a6d6c74bf5b69a2ab36200c8c26e871746d6e0fc6 ruby-3.3.1.tar.gz=0c8ea922a79152ac7adbfb2541320565bce6a631692fd39d499a06f53ad6339c16fad8374d171351ed63f7bda3312b26d4f8c058c5b6df3d7548fde372c718f1 ruby-3.3.2.tar.gz=a15ba8d6c2830fcd1f2b36f671acf9028c303ec78608fd268da0585db8e95ddd971666e8029bcfa2584da2184a6534e1f2f2da07fa7ca4494e8d842eed206f00 ruby-3.3.3.tar.gz=0388a96127eb6e53b836f7954af51ff62b84cdb7abeab823cb1349993d805b151204e426b9ac04ca8333fbd5e01c386d58bc37d34c4e9286b219dcda7542a150 ruby-3.3.4.tar.gz=56a0b88954a4efd0236626e49cc90cdb15d9bfd42b27d7fc34efae61f500058e58cb32c73fdef5f1505a36602f4632d6148bf3bd1df539cb5581ae157c78c22b ruby-3.3.5.tar.gz=5c482059628ef9de5d8a6ad4751f8043f2fc2b159b768265be7f3ee0574ad51d9500ee4fc9146c5978fbd51313039c3de39e7b7a4dedc9bcd5d09a41a713f1a7 ruby-3.3.6.tar.gz=4ae22f5c2a1f7ed84aab7587ff04ce4d9933cffe4347deaef0ab88d22c9780f274c1664a4ee1dd8235bc3cc749be828ffa8db7cb5f5002339a59a599acf3c729 ruby-3.3.7.tar.gz=9b48be05d1210e9194c8a6d77dfc3227599bff2b55fc9bb2049b11547927deef530ece9a2a505600cdc492c8517b1bef7ab5f2520ebd79ffcf76f0a734fa763d ruby-3.4.0-preview1.tar.gz=29c0e32179f7b823b6708f5328e495cd333fe8dd88f7df7d9051deab47add67b14d899bba565bba1a77e1b04c9693d9708541445c112925777bb6891cb7b2b62 ruby-3.4.0.tar.gz=bc70ecba27d1cdea00879f03487cad137a7d9ab2ad376cfb7a65780ad14da637fa3944eeeede2c04ab31eeafb970c64ccfeeb854c99c1093937ecc1165731562 ruby-3.4.1.tar.gz=93acc262e3b7cf86aeddebdad5b8938c187b9c44a73b0c252b6f873745964001459ae45ece7376745916e317c24895596a42b4544e836670fc6e90058e6f0de4 ruby-3.4.2.tar.gz=edc3aede0aadcaa62343f38ea6cab7adacedba810d883f1d9c3e6e24e28e24e0e27a7df2c8e517cc2aab940168fc4872ab8cad000598aab5940aa79072ac190b rubygems-2.6.11.tgz=3b0dd38c0aaf313c59e299dcf54f7bfb6e6d84b8b739573ddaf599e584da45ed7b1465f6521131b32f237e31a4796d9ef455b8be685064b3fd77a0355dfff13e rubygems-2.6.12.tgz=ebb672488b50f5fc988eab66ab14ce8e887dcc635f71239a85e32fbf1e919ca70196eb4d3f2fee3486cace7064bab0b8b08339c754b723198e1b0b0a0984ab54 rubygems-2.6.13.tgz=c952b6061a9a0778db304c3aa5bea693e71ae2564abfb19f8b123eef66eb1e3877fc7c36f4f1527da97bb320870cbfd4574ac57ad88e850a44fadd67ebdac152 rubygems-2.6.14.tgz=7743845bc5265df3782f85a23896cbb250d8a2bbc9934a27f274b001afa7aa62f7f00f616296f74747ea612d2cb37dd7f533c931aa72550d84c64d2a73d60daf rubygems-2.7.0.tgz=0bd08fbabcc33687c98365ffe6794ca2a5e82160b0297479d4f19bd899d176b7f4efb95248898b26d873f9fc7d86c10cada6e40cdc48738b0bac261c3aad261f rubygems-2.7.1.tgz=fa4ea123760b03b8b8e8ececc55c9dc34249073fb267d310bd903aa7a613267e5d27990bbf28e32c9a746bf884af8a84a0dc202297272f9d477f7710c21bfb60 rubygems-2.7.2.tgz=0f48c6e46663780a571c7ee0e6e772f2e18a755031e7dd8ede7870f238c214b9e3e38153b1ae8f1f78a9aad63c1a079b86573b3a25c57a600d842bdf92b9c4d1 rubygems-2.7.3.tgz=2782331b31947a23f85b285a3d5e7b66e34fe5847bc84dca4f1e6bfe33ce187ab0cbc814229de8111aa19490b656ca78b7c821e4ea6b425449991c01371b7565 rubygems-2.7.4.tgz=90f72a46709ef847666a6a23eecf24521abd5c294b2da8a246bb4c7f85daf4af39a0634fc8093c7bb7ded2ac137ea27fac5ed94af3b70c49e78594285c7a40ce rubygems-2.7.5.tgz=86957f1c438070135df527a15102e40487fcee93a55251463095e4c8794a8616d16ed9bdead0e0ef83c44806bd5016ecd9e178bef608b66af2e68e2c9c49e941 rubygems-2.7.6.tgz=bc168afc40c974dbc7c37eb5678432ba2ed7469c3f007a159699467ff2cff5205c508237193ee8becaa6eb555b043969cc5f92b2aaa6bf7c958dd7c187e258a7 rubygems-2.7.7.tgz=f93b7eacf5ef8725c40d618daf9deabc7e9eed74b3b7f13ecd16f89205fe24958e782314c52f8a8fe3205b93e20b830b4fbf7ff8944ff1cf56feb7de2d773252 rubygems-2.7.8.tgz=3d1cf68377dfcf102028342258aaff5a7257d2d2b34a80508c85aa258d810add46e65a157f902c271b0b7b568c437372d17246e89cd88f8500e47c008d17f1a6 rubygems-2.7.9.tgz=5f699f47bc24d8ffd4f8f44a509a9df71fcd945ca2574dc9d5050bfe06a44830a368f45d204112d7a4f1877e1600a6fe4d1b6b68f9a55288664667b4220a7d72 rubygems-2.7.10.tgz=48a18c0f202f463c38cf5dafecfbc7cc39245e63c7a059ef2cefadda478483794a929ea6b7e0ef062dd4423230746f1f09d7bec06a97fe3ceccc3325397a3e71 rubygems-3.0.0.tgz=047f4d446aae414e4803517088ef47d5cc66319ff08a3795c6d69e83eee9f3e7c3b05419858f7e5b6a8ec224990ca01178a9259961ef2d7ab737bac352a0f18d rubygems-3.0.1.tgz=dc29ad51ec67b1dca82a23973ea92153482788964d0755bdcd3c650116915c461c6e5fb1c826be3ee04a497fec4ac2826904bd406f24611e77cd8c9eaf4d8729 rubygems-3.0.2.tgz=90b46c2cd4f8baee74eb488a40691cc00e754cefc42029d485163d6ad7782df78ba5cbeab08eec6a4f71febe0f6e635e12a9381393008c58eb5e16396df93fbe rubygems-3.0.3.tgz=1dd585243341901c7b4cc60a4902000c10ce57fe2cc9c28e27e274a2e6029f936cde1c99d7097c93c2c5b2c8bcee5d692c8fe5cc00c996a040e4954b674e330e rubygems-3.0.4.tgz=887c64226ec0b32d33f2ea331936683406d54dc74d19e658a23521e25ab50aa23534fe9eecaf696154247ad1df1d24c233d8900b9aabc79096eebd6afef3f775 rubygems-3.0.5.tgz=f5a97cf67d7d043afba7c1aed014f1b64ff6376ea74d3d6533496bc5ca9742e0ccce1a157e6f67d8fcbe59d8e34bbfbcf4ed8be97acf2970603de6381043cb78 rubygems-3.0.6.tgz=1ef1822a2b19790a36a6d242b7d4584222617baa27787ec58961a9cfeb2733f19f9085490ffc72ee375d3153c7114e050c42e68fc8039e727fe5961b09365ee5 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=5dfb040b746e462c297ebcdf84e0f07cd74b86852055dcf0a7cf1814112099bc674bcccd94b03726aee76b253c9345a45d046cbfea230647644f0fd6b1c1ec96 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=17983c442c54d19196be3626e25c64f5474139c0b973624832ba8730efb047bc747c02e59c82f38397bf012c63ab83f79a9c1b64311cab796f08fe96d7d12a1a truffleruby-1.0.0-rc3-linux-amd64.tar.gz=b0b57082d61317911f101da617333d81ee6bede6b6e18f9bed86544dc413339c830198d90cad7ac94c0c8fb690adcfc559dd9f530abb70507ff6a76eee552b61 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=18f9782de56269389320ddad779ec69c168909198d4572e2ea4c18bc8082a539569a76760a6a6da58722fe08d77d83904aaba14baf4075a2833cbd2efc45dff3 truffleruby-1.0.0-rc5-linux-amd64.tar.gz=134d9ba5db7b8a1960d3a88390cd6f7503a0e8565094fb127333d122cd773bfbf9dc976c659029007e6fb68e93486293bac2ee29ab21dae9cb0c06ba57dd2c72 truffleruby-1.0.0-rc5-macos-amd64.tar.gz=5804f1f27916176f5a270de8aac85bc48c38ba37c4e719b09f5777e5c42429271819378cfe096c3cc33d406cd0726f2e37658020f97a438fd53751019831569a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=2597b375f590755b851d3b8cbad3eeab4c965eb02d0c944044f57e39f6c3db1e2f513e2aa55db789e4a885c697f81ce5c8bdbe9a7e44ee30fc09d234e44fb512 truffleruby-1.0.0-rc6-macos-amd64.tar.gz=2eb177190de0408dfdaf30264132955d1db7783ddfb63880d97d5933f66c5662794c3bb6198edf230fbff348674203e61f7f5481e74ac875974467f2f128e939 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=ab3a3dc19f903e68e36b135729693fa025a7c1950139277255e48c972387ef8399beceb3252ac37cc70c0df92838f8a0ba8c45f53665ac4286ef23f9b240806a truffleruby-1.0.0-rc7-macos-amd64.tar.gz=b8423f50a5292e211db7ebd7e2b987fd5c9eaaf34eba86b0644d2716a7f068f2e56deb4357c516b87b437e64fd5ce8515bc181165cc1042c6763f27d71baa59d truffleruby-1.0.0-rc8-linux-amd64.tar.gz=bcd05d304ee9b4da97193575fb1ad78041a0c7710bb444af6aef12ab4261b1873f472175ec51a187a5e99da481d66b81a132fb691643b793e87d655f31d54657 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=2c758221793c38ca8af1831a5d9f3abd555c406569508ac3a86d3c1ea5baeeacf65abb6e904ed3b1e58f555f51bc85ab171135ff4c3d0e08cdae994a861cbda4 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=42e60b69957f77a8623e0dccb7d215e800c27c622364fa76b9c574e8b1d3a4056a058b61ed91eac2375ecf4e51e482a6e17550aa2894a44d1db70687958033da truffleruby-1.0.0-rc9-macos-amd64.tar.gz=18556ee8d2fdec6907fbc8fc33d8b32ea0c58d40ee3df084ffb233e2fcd3a514a553f97c31dcc25dda3f86b1b805ca5fe3c9bf8cb078b92325515f09db6b88ba truffleruby-1.0.0-rc10-linux-amd64.tar.gz=10a7cb1be6214347469d5797091f73c3d7824bfb32a47c13566573a383380b1df9b79b7901ce0fa3af1c97285c90afac21e2de7a66ed88d9495846743b3b25e2 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=53f0939d9d8c3470cb79316d865b765816032528d77a3cf497134f3aa667a6253ae037410801261a8e7d0628198ac5f6aea5ecf9b7313f06ccc1d5e9f94e74ea truffleruby-1.0.0-rc11-linux-amd64.tar.gz=f89bc9a3310634d39f68006307da0b0ddafae036089bdd663e8372777a9562d201a4e69b2e1a602cff5fba6c78a8d4861b6d1020679bd0c72c71b938a4f36a27 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=3f461c12fa9fa57a55cc390eb9887df88f404661a77bffb44f82b4c7e9021513a6df9f6d5f332a36ce0c28ae7e3d5afbbe15cc4b814bc7f86dac2e5ec280f947 truffleruby-1.0.0-rc12-linux-amd64.tar.gz=85f042c308ccdfbeb318cec37056d8d970cab51cb0779425b85b8f76b0a1dd9cdec3191ae2b6b9b6be6e95767db814496450ed20076addd9bd495742f9de3c8c truffleruby-1.0.0-rc12-macos-amd64.tar.gz=067a0f63bbaaed4c8d4120f758c8ecf8c52afd1d30ea9d41489e26289d57a574d2d4ae29e29655378510adfb3f4a07b04b403d6ee98ee6b3d3aa8bff9c8d718f truffleruby-1.0.0-rc13-linux-amd64.tar.gz=1eb6b80cb05133d253f20629a11ed9ec3f37da002d5668cdc6577b2a20524e0cdd4d739d3f1aa2e8c518e2f7ebfd519ec1c647293714a1133ad4d569375c0e69 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=e3cddb0d0ae48f7d5ee4dd094ddb5a13f6a7aff1521b1adf25710971664b235cf67144e3b81525fd710dc49b6f6f6ba06e10eee1df5dc08119e9494c6be86934 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=c982194675b66a0433bd5517fc6f1564db669f595f8c7ba4819bf37e0599474d49a0c606577a898c27fa5ba40ab793c62d8211e7ea398d6b3e2bcc31eb5d55f4 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c14e396396385644333fb4c4aa1fb4b934a3f4e46312146821e5dcdaa097cb5b1efbf397c1dd6117d909803fd27ba8d835904672e98d43dc565e907fed752e1b truffleruby-1.0.0-rc15-linux-amd64.tar.gz=f27a75f929a6e945e49ceaad12f484fdaa918469a2f639b572fc4737b78e1cde0881697057e13a58b2fab7ac64c3a71bc9951561c3a8728e3dec814ef5e95fee truffleruby-1.0.0-rc15-macos-amd64.tar.gz=7aa029c4999d4608c9bcc491771b0434267032dbe9dbf504728079f87ce93e6a90e0fa839295b88c00e5a025186ed0fcc42361428b7874c05e222edb108d6c02 truffleruby-1.0.0-rc16-linux-amd64.tar.gz=e8c508dede11d4f54cf0b15cf92b50caad93076a6065bd2d6784c5ca739f5923ea2b894c6b2b52131f62187c8b305cd11a960fb5a670789802d59b6b2999f0af truffleruby-1.0.0-rc16-macos-amd64.tar.gz=841eff077c38bf594b101edb15942f601ba0dada2122b21b016f53251aa2a635b8d0b63b49bdfb50259b2545d1f498bca95d5f771a15a28edb0dd07216c9b709 truffleruby-19.0.0-linux-amd64.tar.gz=8ec6c7829351e0dc2cce57305947cd540734fe5a0b95b9501d4179993727ab2c331e9fb639b9865c0fed596df3906adf3dcf2efb22c4cfdd23a3dc2137025fd4 truffleruby-19.0.0-macos-amd64.tar.gz=912e0c15d32e40c884b2caaaf9a86a71450d441c960ef98a63dfce80353619073b146dcfe03d9af4273b2811d0899eebe922cc84a51d6f5e6826cc436d793f78 truffleruby-19.0.2-linux-amd64.tar.gz=eec92bfbd776acd61709a428b90b1029c5ea83e5ea839304d23cae3a541dd4fab3b387691fa76643f55d5939c9cac0cbe70dc0b5786e5e0e5d20f3fcd9a21356 truffleruby-19.0.2-macos-amd64.tar.gz=ce647b76c9931feac55baa5acd2c87d8335c606bc5cd7e462bd92ba1b09f4bab5db927f021e3119abfd85c33377003d060f36cf64eb121954fce8878112f01b5 truffleruby-19.1.0-linux-amd64.tar.gz=db01e6dc09fc5f39ca466aa94f725023d49a8f52343f129bf8c32b7f5f76ccf2d573ee3344fce3d5aff9983bc9af618cc5ca6e1dbba93b3f604e4f33f8a69b3f truffleruby-19.1.0-macos-amd64.tar.gz=f002bc0b6efca11eb97c4aa6df33d2e0fcc1de3443efd39d912b028df9dd8954cb76ef3ca7fbe140f4e922d6ae4c1a6a20853490ef1ea0749293e2fcd4ffe8fc truffleruby-19.1.1-linux-amd64.tar.gz=ec031e8c216e31f034d97aaccd6441869221d6946e18f375b44a866550b8e8eb4b2fb923f9ce1a62853bdcd5b9201e0f5d2732ca6525d80171d5732ef522bd25 truffleruby-19.1.1-macos-amd64.tar.gz=1c15918af939a8fe1779b71d9e53d2ce09ca7353173a3b357905d9fe1981ff013cf0f90c6b47e1ca66dd168c2f2d742f28a5fb134cc0231d36146da99f91c3cc truffleruby-19.2.0-linux-amd64.tar.gz=1248bdde9cd3651d7042fe4cecff4ad35534868d543fe2e6f3a5bfc3bc9d10d57b4139fc070f0a03861436a1aabc9a8ebdf3356f39b77a4b8f6a1dcf492f70a4 truffleruby-19.2.0-macos-amd64.tar.gz=92c3154ed229a115cf392826494745aae06dd9228dd0996c2c44c550552f13f9c254367d068452fa4a84eef79c19601c79b87e10f3121fd7b83b803514a41cfd truffleruby-19.2.0.1-linux-amd64.tar.gz=53c78cd1f255f2b7031a70a42b65c0bf80c510b9254f5d7ba82b4787f55f5b09cfa9544c424a90f4619a74179fed07c168bd501e34772ef836a773e89c467cc5 truffleruby-19.2.0.1-macos-amd64.tar.gz=ac11523cd49fac50de1e441039e429fb8cd6c7051d537e5083b64fa68eaa19c9f0a966b269da906c367985f229af82a4811282dbfd0a76ef6565162e1081a659 truffleruby-19.2.1-linux-amd64.tar.gz=c5ffc1b592a74e836a4f6ec75b0e103150a4a40d3183ae853ead38c951a85378163111cf0bd2b81e44548c0a7aeaded3ae8a7ae558d5a02dc9e2cce992b79b58 truffleruby-19.2.1-macos-amd64.tar.gz=bb467b91f66eb7d1e6f1a54a7bc0a3d9503bcbd935e8a02da9ea0b749a51e354b1140d4a4dad6fc05312b560bb9ccdcce4f6583bccd19bb5afee19bf494102fe truffleruby-19.3.0-linux-amd64.tar.gz=0e94777a3feabbf0107ed40847e20dd4e3696ff2b7c3f6ceddf3a53ccd812bd003c84c62a750e8fac9d2490374bf792d69174b48c3ed36b593485d86729136c1 truffleruby-19.3.0-macos-amd64.tar.gz=95470c389e24c865ecdc3d299005cd98f8221a128f3cd75f899b6b7ae5d6dc07962443ce0ff38dfd014589d5aaf08b718dc870a72eb7ea6ced18ec2b2db63095 truffleruby-19.3.0.2-linux-amd64.tar.gz=dc5309b71980657f750b4dd4f8b3bc4e191bc305b638b1e562ff5b0ad7fbba40079ba674caf46226a46b5ca58c10f812354786696264742f351b129fb088a672 truffleruby-19.3.0.2-macos-amd64.tar.gz=ff1c37485ebeff3edcc7081ce09bebe5541012dedff6997662c7f8a064e0ab10bef9a5cdf834263a06ae04ca0391743948bcdea6e6c9d7e1cfef9f21523c2bdb truffleruby-19.3.1-linux-amd64.tar.gz=c724547a9eacfdd135ce05eac9dcfe74e58a5e77c97f88103f83b8513c15c975a0ecf623f623a425ec81fad1b64d3b5e135660d6943608ad08048cda00eace79 truffleruby-19.3.1-macos-amd64.tar.gz=d746b2ad410c15d145d36c676a070ae454ba8e5ec6c594d5ebcf54b1fc719f98e8b8f71b6fd504c3d38df286bd11c5114f73b5ba39be312b11d42d4ca1a17d02 truffleruby-20.0.0-linux-amd64.tar.gz=4efea5ded5fcc6886befba3a3720fe1e5b2e376d46738565e8871a1ce0201a33ed52e78b8af2fb389618bdea99466d126d8537dd0919b0c13f8ff1940cb3e52e truffleruby-20.0.0-macos-amd64.tar.gz=b36488330514b77c7115689042cf2482a0beb9f72a0b05fb4c7a6ecb0835a3da47c3b15c41abd6ffced023e65ecf7eabcfbcc6e41901dcddd0fb3dfed46564c6 truffleruby-20.1.0-linux-amd64.tar.gz=116d57404540b85c15b321793a6f985624a2044af544e659b3607e50159703af5d445e22bff28ae2182dfa752f7500d420e250f6deccc98a2f01e89adba8ac3a truffleruby-20.1.0-macos-amd64.tar.gz=9b1267101dfe78b85c79f7528eb4de96b16933e66d5771efa6272372dac0fb35b199bb9d42773d61f4fa7a15d6cbd18b5753c148f7c3e477c7c4b21633f12b88 truffleruby-20.2.0-linux-amd64.tar.gz=a37eaf8475364b74d948979ac13dc6e6423bf11949ad1d0f2925f78a4495e80de9767001ccdb777c8cfd7f545839fad4d842522620c3acad179404bc4ce6752c truffleruby-20.2.0-macos-amd64.tar.gz=964c1e02cc53e1646060334a9911771e679a8344d811a0f77d5cae3529dfefff259c45505ac84b7debb958514cd5d2276ffd435802085494e0229dd140ce8f00 truffleruby-20.3.0-linux-amd64.tar.gz=ec2d8ff6a5d45fd7091e26430c67cbbdc0f8ffa41e9ac574d48802766fcd144e1f446db807700247ad6d8046b7ed070b5da70ef667e576d6fea60cc64ea5484f truffleruby-20.3.0-macos-amd64.tar.gz=1878f94e05a3c40484bf944a72412b179aa5415a16a7ebc1610cb512a1e1c4a2ce0e98685257ad6e5c14745245c35bb5b28205fb687292c4f17193cbfb3bb606 truffleruby-21.0.0-linux-amd64.tar.gz=b7d1b76cc015d136dbd74515431f4447730850475f81b00885b71b95819134db2656d941736048db42d519f03e1f2df066226513b77208adbdbbeda1f49cab11 truffleruby-21.0.0-macos-amd64.tar.gz=7677b827a9c1758d5f941c512cb0fe8daaa19c3db77b485d7dfa43940151d6b9094c4d9271e18ef5014630142dffb93d168c7ac631a3b5eef6fc61b2f9eecf88 truffleruby-21.1.0-linux-amd64.tar.gz=010e9fb78cab12486641780392be0f284da08dfd955f3a0d1ef72adb52e1c9024b54dc880173645aea2af680b3670a6bb01409198b757239edda4cd9bf2b1e90 truffleruby-21.1.0-macos-amd64.tar.gz=96ef8481faef1bfa7f01bb4d396818ef6f0943d19c6a23dedb68f8346740b72bf06efc707bdd29158cf991cc7073c97f429a07b02c2a48050512b46369850058 truffleruby-21.2.0-linux-amd64.tar.gz=c20af04909a852cb676c90403d852fb367d56eac0f9cf8ba42caa4cad1013ba393cc4611e434614ad132b7b0ed61160aadd887001b08de0767cf58f5e149efe7 truffleruby-21.2.0-macos-amd64.tar.gz=0b8d9633fde53aad78f0baf52858cd5a5716f53ff21698baab17da4a625b4369b88dbd664193e3f0d1b40e64c88699ab4f04bbe40f54189a588c93678962a7be truffleruby-21.2.0.1-linux-amd64.tar.gz=15ceeee383114f974aed5f16c99131d56947e13cfe248b97e55d61263ccd51aa56fc3e0df215196ef7f80ccba9e7f19e7f261d7a91d54bde2d9992caba682d82 truffleruby-21.2.0.1-macos-amd64.tar.gz=8a8762d90c19db4f48433ce0e3f3339e290685d79c6ee9bb7d4359c741edfa6a7360ff65124433d964730ac25b2cc6d8b581191b0a51479f11c2a80031a6c1c8 truffleruby-21.3.0-linux-amd64.tar.gz=b0c07b1ea797de92447a81b350d460c125a2efaff3c290637c4bcf1c216b5abd11148cfb143ad397062a96f36beade8234d0785c42f58fceac0011f629a5220b truffleruby-21.3.0-macos-amd64.tar.gz=42e607fa52a534123989ad232691ede65aa1c615f39320d93aa8ab9c21924eea7bc0aa49aef1a540ec972e2b3dc775d22a99eca3e0c9bc450c525f9020fbb975 truffleruby-22.0.0.2-linux-amd64.tar.gz=2231a0cfd27238c34ea0bbad27ba387453e48f39032607cbb829b347ea6ac804df15eb3f84d50b09248782d6202284498e7bc9aaa2060f0ce81bb83a84d700ad truffleruby-22.0.0.2-macos-amd64.tar.gz=1d7ac44f0862ad23cf17a7bba73d23dfd4727aadd9a3aa9633361e9bcd19655d163e160eae9c8db8ec9892f8fbf82d7a38b1cd689475bf41609a828208098623 truffleruby-22.1.0-linux-amd64.tar.gz=c4c2f9bf4236118c8ea62c08bad89e1034ecdfa0c4815693961c4d2b1b30ca043fe958abfec9cf36a8638aa2e005e71fcc244ebffd9ce11eb68cf48bd98c29d3 truffleruby-22.1.0-macos-amd64.tar.gz=507004ade838e614955e23331845839be656aaeae7869ed3d989c10e6491775a12313ac9ef03e14945f20f5e76d46ce6f7bb860af68a627c48065399cea3c567 truffleruby-22.2.0-linux-amd64.tar.gz=37c09249ef387df3e0614f646abb444cb5b7b2751538ab0432e703abe92a81b82e0d15f89d5ad7cd58afe5f30d9a92dc8471d19f1c1ce10b50478ac74f247739 truffleruby-22.2.0-linux-aarch64.tar.gz=49a7cfb4c81980d9c7a1588ef9f76a9bfb759d4b1925ab11f230d99c15a62e162a08249d23cf5646e2d38ecc2005e27103f2e5d92b83b0a182a4e64319b70c0d truffleruby-22.2.0-macos-amd64.tar.gz=d4c206fb0a5e63c5b7f61f2e62de854e4d0817075ef9ded237d98cd821c286e88d7b150d140d9907a957209f39be96c7025560e3908c89aa337925d2fba690af truffleruby-22.2.0-macos-aarch64.tar.gz=a01c18803777a74717ad699b6ee51eb759d881fb436d24338b557c52d4a693079d7b55f108394ccad0dd69c974cb895f4a36854355e84fecb67e41bf9eb18514 truffleruby-22.3.0-linux-amd64.tar.gz=d53472ae892dadc81c6fe63a597ccfb67e133958431b11716db4d920c78fc86f7496e4b10322d041c900bed77d27e02850da20aa95b297d63a9de2e72cdf3c76 truffleruby-22.3.0-linux-aarch64.tar.gz=dab63d49db4722f0c174ce8b882413102520ff649182946ba332ef5ba0fc6b58913595539a20b59e460faab2fba36f762dc8eb66aa729d4a6bb90feb2a95f053 truffleruby-22.3.0-macos-amd64.tar.gz=15c91d25fd6fb1d9f3f2a0b36676da5c8a76d62be86cff463ebe6c7e6aed2d9b6de9062021ab1b9b29cfb7a92b5682c860939acd71d12dba7e4a6bf3964fef3d truffleruby-22.3.0-macos-aarch64.tar.gz=7c44d0dd07e4ecd84a92f6dd574dc185906121b8eb75f6fe097b9d4738aa30751664d70e9027e072eeaa1dffa05fe7bcfc06be0c2dc950142f60664baf5eac69 truffleruby-22.3.1-linux-amd64.tar.gz=f41d3bd22500b7291121368169f8558df4563c840a01b70ff7feea3593f0152d8d77d4437af362bad62f25b79bce1ce8ddaa1bd8172a2a7ef8b61cdb6e478c9e truffleruby-22.3.1-linux-aarch64.tar.gz=1ca5221f0dc5ae3e0bd9545be474e115b2e62737701df95c6ee6cdaae5d82815acbe6af961ff23afee64dc26e655c7786d4347e3694c140773f065534322ee59 truffleruby-22.3.1-macos-amd64.tar.gz=bae16cc04c6018703833121f4258c3f18fa5062309d0600458be3c51c838bc63976a026db0f28d23005df9b640ccad0a9cafc56610a5ca9c24951c66b62097d9 truffleruby-22.3.1-macos-aarch64.tar.gz=b56e230d8fbc95d19364e695aaf1e552238b02ace7056f636808a7d7510777cddfde572ace5238ea1e314351bdd1a053ab3912d0889f51f55c722797c83eaaee truffleruby-23.0.0-preview1-linux-amd64.tar.gz=d538412f12d5ce743c351acbaa483b8b85dd2cf84fe06b3e90ca21f3c2fc0465df9c1773b3515fe4296d599f45e9cbb935dc5a69fe45668321e5639d58608ef4 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=f10b5ac749b11f93c2469f2c8a713ad090cb653761ae0a3e1ba4c19b0c96bd61c5e8da74d8944f9487c2d327d268a188f2cb56028d2beaca2a7816e63123600b truffleruby-23.0.0-preview1-macos-amd64.tar.gz=cd9db49c4253bd66cad6f9ae111c83d3befd0102a7ccb72a2407d22dc576ba7f3a26a90cd479f26dee3565d2f893a2b7c8b549e2351336f35d2632e57966657c truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=28b77d9943cd1617e0445633a9fea8911cfa975f5c581192439cd0944d2a17c2b0558e3e4112588b5fc77b57c48d857ad68ac51fcb867250625ad85406d87acc truffleruby-23.0.0-linux-amd64.tar.gz=da702de2e8c994f2646a3de5b44824210dbd37129cd2f91c3bdd990a1b0d0b05dee4443ad0f6cf98fdb4e489c9f4cde64f3561baf486dc642d4981a1a1812925 truffleruby-23.0.0-linux-aarch64.tar.gz=808254a154adcfd1bbd6e22bcdafebb6169c6f8cfd1c55382d446bb66002384ee844dcd8b5f642703ef440f7566645d190081f45e04a7d8d59bf87571cb4430a truffleruby-23.0.0-macos-amd64.tar.gz=f775d57e63c606eef424a1115408ed8539ef47d6bea0125ad1de7ee4fd5971e96747cb7f5d22d91d2f004edbd6ed6b9b5bd014127dc1abe7821a3a987a72d9dc truffleruby-23.0.0-macos-aarch64.tar.gz=000069854458f81d97eefe14123fbb69937942825e77d35602d55fa279123808177a34f252aec9dcfa48b93feacbee81ae0f0e7043c2d8a9ace2a4bb61ab253f truffleruby-23.1.0-linux-amd64.tar.gz=1868799d989c51798cf07b5243457af7ae2436dd19805fd634c98b2f1885266b5c3ec81dde668c2e5a290e9028f6f9fd223d153489df6ffcc74d45240aa020ad truffleruby-23.1.0-linux-aarch64.tar.gz=2766621877996ad35fddb94f978feed531307e8abf601dcf863754c96782b8149c3ac512dfe6dd2bdef0fe0e8a968bdd77608c41020434aaef4e7250c09edd74 truffleruby-23.1.0-macos-amd64.tar.gz=06c5a1d6ad644fd81737f0a1fd24c1529f712abe2a4485ad597aca7c35ca2af898121bb5883552cf518e2afdcb4221c8ad013759b46a69e34249e7c5ebe2b170 truffleruby-23.1.0-macos-aarch64.tar.gz=496cacc5cf413a48b60184e097a962ab5d2236c539f07cc0a9a2d9ef57dfc911a26b125cc3ad9408f6170c6f93c7562f35729c8313be0301972be21c10097942 truffleruby-23.1.1-linux-amd64.tar.gz=dbca85e281bf2484371a0bbcc202ca700acc704304d966b9202cf3835e82f6eb502e43522355f4c9e5a743877d93f5609006fbba2c5e6343a89de130e5209f6a truffleruby-23.1.1-linux-aarch64.tar.gz=6a58842d79247d8a64c513d68db9d53ea5640c02f71a1bc45f103baaaca67bb224939ae5f21ef55daa9d9b9697404052d39a3c382768ca366ab7892b8bf1abbe truffleruby-23.1.1-macos-amd64.tar.gz=7cc6bc957b7ffa42e9fbfe2f6e3014bf1e7996f2754e9e74377078c2c7bc7ac8e10598f1e1452839fc5b9583c823a2a735731ca193a6af2814a02566cc4cd9e4 truffleruby-23.1.1-macos-aarch64.tar.gz=a85b8189ef8a280f6a27d4c1c93893f844266dbdc15b8c4988cdf581613a353508fae4872ac9380efcc47f36357e137861521712c00ce8548041762a8987a9b2 truffleruby-23.1.2-linux-amd64.tar.gz=6307fd71fb1431fb12346d1f13dee4b3afe53947e8a9c1f3e3aa0baae5f9fc9e1496ede0a7d86b169d912ffef9625af998b4e698dc57a2a649140150e3fae28a truffleruby-23.1.2-linux-aarch64.tar.gz=0f0c5e4aa4e9fbc9b9f91d2b3d3fbfe26e78c5bc5b369fc78dd54775a7582b8c084a64f02848058bec79387fd80b09a5a5594ecfb268635fe76e1f9d957c2e92 truffleruby-23.1.2-macos-amd64.tar.gz=648401a73b29c28862a1fa077c2e1bf8fff65015c8bc690ff883a00a3dfd99389ffdb71f39ad85a4f16c531470f4cc891ae51ec927a426b0fa05fa85c9c6a2f9 truffleruby-23.1.2-macos-aarch64.tar.gz=4ec88684c09aacfa1d8bfed9a17243579ededacecd869e98e12841710bae29ed6e5f080611e53fc217a853f730bb2a9cb3d47ef15443eb8a1ad76a120118c8a5 truffleruby-24.0.0-linux-amd64.tar.gz=3a59a4dc58ad03549d8e63db1485767757715fc9aec21b2b67b1440b13871a04541abeff9bc8201b3088e1865360b1667459e536d3cfb09687dbffca95deafeb truffleruby-24.0.0-linux-aarch64.tar.gz=50f3993b7362bb6e7da80f7327df3d079bb02f98b67012e2135005d77e61648e4f3268f767d8ca245ec5889ff934fbcccb94fd5ecbd55bb0cd9cca900fe10509 truffleruby-24.0.0-macos-amd64.tar.gz=9ec8bb340b15e29550448e123e3ab0f183edb9bbe7e052743cb2306cbd1956a5789c5a367c80c5e8d913dce2b804448dd6815e4d3421515166daf8db51d37c7d truffleruby-24.0.0-macos-aarch64.tar.gz=499f83bf65dcb6ecc92414a3550673e6a0baaddfe3ab13c0bd7aa1bdde1ae2a61d9d0ca8001c0d12688d9e09f98f9e2946a651220fe7d200bb0ec6f285394701 truffleruby-24.0.1-linux-amd64.tar.gz=62b4e8508eba8cdaac70e99ac9cb0b33a663b4195d79b2dad3d771ef538c6c41d1d91bb7bb07fbbafbcbbcaf17814ffaf6d6bdbafd474ba6a8ecdac30315a8c9 truffleruby-24.0.1-linux-aarch64.tar.gz=817d877848ea4bb55658ce34bbda52926be12426a8a5e1c4588bc0ec1896018b06dce176336b382f80a7c6d073d4331b20694a7797ee8fdf0177e973053bf929 truffleruby-24.0.1-macos-amd64.tar.gz=2ea65bea154aa38cce3f00f24fc9a4aab5e7478fafd070d0cc966878371c070d5a1776b7405e2c9e4cfa14e5c51219ed0fa988294eb4708690983b348886f439 truffleruby-24.0.1-macos-aarch64.tar.gz=bc1923e21768d34779c1bcd7850456a01ddc01acd1ccf20f4fb4a446fb847f8c51b1ff4a7c0cdc317ef8ce057ac24f18f25b778a02a6e2b185e0055d946ecaf2 truffleruby-24.0.2-linux-amd64.tar.gz=5d111beb862b618c4e6a7f8aea1d3d6476740513efdd59bf980a2b6d525a017f46fe02017b075962a4919a001b60bd9a070e69fedfa8a85533c0adbad2a8d86b truffleruby-24.0.2-linux-aarch64.tar.gz=8e3ba19df4e5509c4719bc3bb621f70ca6a0e683d48a296703649b88abd83a165e8a64ad2d7dc45394b6de0b214a95a395fa449f5393dd9e67deab9e149cf494 truffleruby-24.0.2-macos-amd64.tar.gz=06d3b5533c4e26aa1356e602c672efad99208aaee96110904216e16dcfb1d99a7535c3ef275f9a14635dd2f05110798b3c75d71199f6010f23c92c6990492cef truffleruby-24.0.2-macos-aarch64.tar.gz=ba36d3f1680112e6623b14a4bb902a5f65f11e9827f44462161b1c79ee344ca340566289aa1f841c1e213daef5608c159343cc203d07f41c2a55eaeb25db0987 truffleruby-24.1.0-linux-amd64.tar.gz=9a93fd61086fabcb6c4f3a0fcb16e81f42b0203a24a04209fe446eb5f88d78e2ac59ab54d42cc30ef5417199a88b452973eecdfafc57c7877e11edf0a3d42b13 truffleruby-24.1.0-linux-aarch64.tar.gz=ca23edf279ee9b4693630df9596c6e269bb544e06bfd02620447f51108d9e9b4dc8b3ecbcc7a8ba1280560c0eb4b59474e75acead81799e4c51365acb5676d24 truffleruby-24.1.0-macos-amd64.tar.gz=65b661b3bf497bbb090a2cb49607aa00c3e5bfe95eb19c7736d798715d55fe07ddb4e8d8c25c1ec4b7b304b37205c7de9d8ac2d56005c9fc43e4dc81ae699c9b truffleruby-24.1.0-macos-aarch64.tar.gz=ab665d995bd63839c0bf6ed1171875cce7974d49ed79953a05ecdcf13d815c0a5cd471f40839f3f51a1b3128b40a4ed34d9b89e4c3f343b38c78276aed667956 truffleruby-24.1.1-linux-amd64.tar.gz=78e4e8bd910e4b3b41e927f6158cf8cfc74da5187969727d5c5303416310c5b7f72fde239993ecd5ab51724785cd80b2bb9a422a0475320fca57ad40b26d2786 truffleruby-24.1.1-linux-aarch64.tar.gz=c4e3aa72433622f96216b053862beb65861ab20ab28cfc50f51452720173f0a836ee69335281c4c89c6289ffa6f42517b9487d1b6fe16926aecfd9180d6f8195 truffleruby-24.1.1-macos-amd64.tar.gz=099d1abaa8677ecfd298e974fbb37e21bff2ad45313090cecf9a2799b79b74223ca4f95fb873cb7148bb2754ea3f923cfb553dd1dbdf6f1c088a3793bd991871 truffleruby-24.1.1-macos-aarch64.tar.gz=8980a71fc423c454ceaa16b46ba085a0164bf22e3e2040e960623148f09fea4c467b304774afc2ea37d9e072905eab3ad65b3c4acdc7b01ba238e24829cc16d2 truffleruby-24.1.2-linux-amd64.tar.gz=93e4ebdfb9c6a89681d8913a0e175b46c53124c37b0c15c6e032bcbf423def9205a6b288977772e50ba68c8fd06308c9478f22dc7c0385b41fc9989f68a86083 truffleruby-24.1.2-linux-aarch64.tar.gz=63a212ab48704376c1f6e6792da231f6b4ed8ffe1f77eff56b0f58ae8030866da6fcc19cd7068ec158c6e11840b13f47d2d12ba65b6a7f06ba1de6cb1b582fc4 truffleruby-24.1.2-macos-amd64.tar.gz=6cb535ce7fface14bdef86ad322992931ff809fbe781c0715774f279842b5f65d5e8ff4885858cf7a3ba345071509127f473381655f50d000e60c90a88eb11a0 truffleruby-24.1.2-macos-aarch64.tar.gz=a146c8000468c977fc48d8069e938ad6d32fd257d23133c2125f5bb86598d00283c654fc553d5de31ff9a79224f34b3b064bb223ff7766f9f2e25fcf7e263947 +truffleruby-24.2.0-linux-amd64.tar.gz=ef5268859169ce3c584a7865a39928005dfa264e15dd84031a9ce874deaa31af067b1ef53712011911e7816da18bb085c783a10a4b2e45d3820e1b82d4855f86 +truffleruby-24.2.0-linux-aarch64.tar.gz=7c9b29eae0d6db96c8106f286cb376dadfc0e93ded75b7eb333f0919f50edaf7b0b1e2c8634ae9bcb671611cd1084b75b598a8fbc1c79600b59e98964d1fd7a8 +truffleruby-24.2.0-macos-amd64.tar.gz=7d54e9b475a2ba18bc78466c75dadf12514090fae74716358a310a339722c5425fb462eb30bfc1e4264e3586717a9647d91f4e07c6250dfb8e3d2de9004f48f5 +truffleruby-24.2.0-macos-aarch64.tar.gz=81df31324c5f51650d8d321e3119672c90bd19c6abf61ded977e978cee387a69ee0eeb1ed6dcec6ca371baefe3df64e09bf1fb5eb06c61725557d7bdc62d6a5b
rvm/rvm
d370f800b75124c49548176cbfe5d362f6fe9b86
Add Ruby 3.4.2 (#5549)
diff --git a/CHANGELOG.md b/CHANGELOG.md index bf7b798..744546f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,590 +1,591 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Use OpenSSL 3 for Ruby 3.2 and 3.3 [\#5480](https://github.com/rvm/rvm/pull/5480) * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) * Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) * Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) * Install `libncurses-dev` instead of `libncurses5-dev` on newer Debian and Ubuntu versions [\#5477](https://github.com/rvm/rvm/pull/5477) * Use `zlib-ng-compat` packages for Fedora 40+ [\#5479](https://github.com/rvm/rvm/pull/5479) * Detect core count on ARM-based machines [\#5498](https://github.com/rvm/rvm/pull/5498) * Fix requirement check for Ubuntu [\#5500](https://github.com/rvm/rvm/pull/5500) * Update location of homebrew install script on osx [\#5505](https://github.com/rvm/rvm/pull/5505) * Fix detection of Homebrew's write permissions when using Workbrew [\#5528](https://github.com/rvm/rvm/pull/5528) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) * 3.3.3 [\#5474](https://github.com/rvm/rvm/pull/5474) * 3.3.4 [\#5488](https://github.com/rvm/rvm/pull/5488) * 3.2.5 [\#5490](https://github.com/rvm/rvm/pull/5490) * 3.3.5 [\#5499](https://github.com/rvm/rvm/pull/5499) * 3.2.6, 3.3.6 [\#5513](https://github.com/rvm/rvm/pull/5513) * 3.4.0, 3.4.1 [\#5533](https://github.com/rvm/rvm/pull/5533) * 3.3.7 [\#5540](https://github.com/rvm/rvm/pull/5540) * 3.2.7 [\#5544](https://github.com/rvm/rvm/pull/5544) +* 3.4.2 [\#5549](https://github.com/rvm/rvm/pull/5549) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) * 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1, 24.0.2, 24.1.0, 24.1.1, 24.1.2 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.3.15.0 [\#5482](https://github.com/rvm/rvm/pull/5482) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) * 9.4.8.0 [\#5484](https://github.com/rvm/rvm/pull/5484) * 9.4.9.0 [\#5512](https://github.com/rvm/rvm/pull/5512) * 9.4.10.0 [\#5538](https://github.com/rvm/rvm/pull/5538) * 9.4.11.0 [\#5541](https://github.com/rvm/rvm/pull/5541) * 9.4.12.0 [\#5548](https://github.com/rvm/rvm/pull/5548) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) * 3.1.6, 3.2.5, 3.3.2, 3.3.3 and 3.3.4 [\#5491](https://github.com/rvm/rvm/pull/5491) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 24.04 (Noble Numbat) x64 binaries * 3.2.6 and 3.3.6 [\#5529](https://github.com/rvm/rvm/pull/5529) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) #### Upgraded Ruby interpreters: * Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159), 2.5.0-preview1 [\#4204](https://github.com/rvm/rvm/pull/4204), 2.2.9, 2.3.6, 2.4.3 and 2.5.0-rc1 [\#4261](https://github.com/rvm/rvm/pull/4261), 2.5.0 [\#4265](https://github.com/rvm/rvm/pull/4265), 2.6.0-preview1 [\#4317](https://github.com/rvm/rvm/pull/4317), 2.2.10, 2.3.7, 2.4.4, 2.5.1 [\#4340](https://github.com/rvm/rvm/pull/4340) and 2.6.0-preview2[\#4395](https://github.com/rvm/rvm/pull/4395) * Add support for Rubinius 3.85-3.100 * Add support for JRuby 9.1.14.0 [\#4224](https://github.com/rvm/rvm/pull/4224), 9.1.15.0 [\#4258](https://github.com/rvm/rvm/pull/4258), 9.1.16.0 [\#4316](https://github.com/rvm/rvm/pull/4316), 9.1.17.0 [\#4366](https://github.com/rvm/rvm/pull/4366), 9.2.0.0 [\#4390](https://github.com/rvm/rvm/pull/4390) * Add support for mruby 1.4.0 [\#4286](https://github.com/rvm/rvm/pull/4286) * Add support for MagLev 1.1* and 1.2Alpha-1.2Alpha4 [\#4289](https://github.com/rvm/rvm/pull/4289) * Add support for RubyGems 2.6.14 [\#4205](https://github.com/rvm/rvm/pull/4205), 2.7.0-2.7.4 [\#4276](https://github.com/rvm/rvm/issues/4276) and 2.7.5-6 #### Binaries: * Ubuntu 16.04 x64 binaries for Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4362](https://github.com/rvm/rvm/issues/4362), 2.2.9, 2.3.6 and 2.4.3 [\#4259](https://github.com/rvm/rvm/issues/4259), 2.2.8, 2.3.5 and 2.4.2 [\#4161](https://github.com/rvm/rvm/issues/4161), 2.5.0 [\#4272](https://github.com/rvm/rvm/pull/4272) * Ubuntu 17.04 for Ruby 2.1.\*, 2.2.\* [\#4233](https://github.com/rvm/rvm/pull/4233) ## [1.29.3](https://github.com/rvm/rvm/releases/tag/1.29.3) 10 September 2017 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.2...1.29.3) #### New features: * Add RVM commands missing in bash shell completion [\#4078](https://github.com/rvm/rvm/pull/4078) * Railsexpress patches for 2.3.4, 2.3-head [\#4084](https://github.com/rvm/rvm/pull/4084), 2.2.5 and 2.2.6 [\#4153](https://github.com/rvm/rvm/pull/4153) * Update `gem-wrappers` to 1.3.0: Show warnings when the target binary is missing or is not executable [gem-wrappers \#9](https://github.com/rvm/gem-wrappers/issues/9) * Detect Zorin OS as Ubuntu [\#4140](https://github.com/rvm/rvm/issues/4140) #### Bug fixes: * Infinite loop in `gemset_create` [\#4102](https://github.com/rvm/rvm/issues/4102) * Command not found `__rvm_remote_version` error [\#4085](https://github.com/rvm/rvm/pull/4085) * Fix path of version script in `environment` [\#4117](https://github.com/rvm/rvm/pull/4117) * Define `cd()`, `pushd()` and `popd()` properly when using zsh [\#4132](https://github.com/rvm/rvm/pull/4132) * Update gem-wrappers to 1.3.1: Avoid warnings for missing ruby binaries [\#4104](https://github.com/rvm/rvm/issues/4104) * Handles :engine=> and :engine_version=> in Gemfile * Makes $rvm_ruby_string is not installed searchable by adding a fixed keyword * Correctly quotes suggested install command * Fix path to version script in rvm-installer [\#4134](https://github.com/rvm/rvm/pull/4134) * Fix rvm autolibs status, fix [\#4123](https://github.com/rvm/rvm/issues/4123) * Ruby 2.3.x and older are not compatible with OpenSSL 1.1.x on Arch [\#4006](https://github.com/rvm/rvm/issues/4006) * Allow comments after ruby directive in Gemfile [\#4056](https://github.com/rvm/rvm/issues/4056) * Ruby 2.3/4 compilation fix for GCC 7 [\#4080](https://github.com/rvm/rvm/issues/4080) [\#4115](https://github.com/rvm/rvm/issues/4115) * Add warning for sudo users [\#4009](https://github.com/rvm/rvm/issues/4009) * Allows running RVM shell function in Bash with `set -o nounset` [\#4013](https://github.com/rvm/rvm/issues/4013) diff --git a/config/known b/config/known index ca0f85b..55acb88 100644 --- a/config/known +++ b/config/known @@ -1,81 +1,81 @@ # MRI Rubies [ruby-]1.8.6[-p420] [ruby-]1.8.7[-head] # security released on head [ruby-]1.9.1[-p431] [ruby-]1.9.2[-p330] [ruby-]1.9.3[-p551] [ruby-]2.0.0[-p648] [ruby-]2.1[.10] [ruby-]2.2[.10] [ruby-]2.3[.8] [ruby-]2.4[.10] [ruby-]2.5[.9] [ruby-]2.6[.10] [ruby-]2.7[.8] [ruby-]3.0[.7] [ruby-]3.1[.5] [ruby-]3.2[.7] [ruby-]3.3[.7] -[ruby-]3[.4.1] +[ruby-]3[.4.2] ruby-head # for forks use: rvm install ruby-head-<name> --url https://github.com/github/ruby.git --branch 2.2 # JRuby jruby-1.6[.8] jruby-1.7[.27] jruby-9.1[.17.0] jruby-9.2[.21.0] jruby-9.3[.15.0] jruby[-9.4.12.0] jruby-head # Rubinius rbx-1[.4.3] rbx-2.3[.0] rbx-2.4[.1] rbx-2[.5.8] rbx-3[.107] rbx-4[.20] rbx-5[.0] rbx-head # TruffleRuby truffleruby[-24.1.2] # Opal opal # Minimalistic ruby implementation - ISO 30170:2012 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1[.4.1] mruby-2.0.1 mruby-2[.1.1] mruby[-head] # Ruby Enterprise Edition ree-1.8.6 ree[-1.8.7][-2012.02] # Topaz topaz # MagLev maglev-1.0.0 maglev-1.1[RC1] maglev[-1.2Alpha4] maglev-head # Mac OS X Snow Leopard Or Newer macruby-0.10 macruby-0.11 macruby[-0.12] macruby-nightly macruby-head # IronRuby ironruby[-1.1.3] ironruby-head diff --git a/config/known_strings b/config/known_strings index 33819d0..671a92a 100644 --- a/config/known_strings +++ b/config/known_strings @@ -19,561 +19,562 @@ jruby-1.1RC3 jruby-1.1 jruby-1.1.1 jruby-1.1.2 jruby-1.1.3 jruby-1.1.4 jruby-1.1.5 jruby-1.1.6RC1 jruby-1.1.6 jruby-1.2.0RC1 jruby-1.2.0RC2 jruby-1.2.0 jruby-1.3.0RC1 jruby-1.3.0RC2 jruby-1.3.0 jruby-1.3.1 jruby-1.4.0RC1 jruby-1.4.0RC2 jruby-1.4.0RC3 jruby-1.4.0 jruby-1.4.1 jruby-1.5.0.RC1 jruby-1.5.0.RC2 jruby-1.5.0.RC3 jruby-1.5.0 jruby-1.5.1 jruby-1.5.2 jruby-1.5.3 jruby-1.5.4 jruby-1.5.5 jruby-1.5.6 jruby-1.6.0.RC1 jruby-1.6.0.RC2 jruby-1.6.0.RC3 jruby-1.6.0 jruby-1.6.1 jruby-1.6.2 jruby-1.6.3 jruby-1.6.4 jruby-1.6.5 jruby-1.6.5.1 jruby-1.6.7 jruby-1.6.7.2 jruby-1.6.8 jruby-1.7.0.preview1 jruby-1.7.0.preview2 jruby-1.7.0.RC1 jruby-1.7.0.RC2 jruby-1.7.0 jruby-1.7.1 jruby-1.7.2 jruby-1.7.3 jruby-1.7.4 jruby-1.7.5 jruby-1.7.6 jruby-1.7.7 jruby-1.7.8 jruby-1.7.9 jruby-1.7.10 jruby-1.7.11 jruby-1.7.12 jruby-1.7.13 jruby-1.7.14 jruby-1.7.15 jruby-1.7.16 jruby-1.7.16.1 jruby-1.7.16.2 jruby-1.7.17 jruby-1.7.18 jruby-1.7.19 jruby-1.7.20 jruby-1.7.20.1 jruby-1.7.21 jruby-1.7.22 jruby-1.7.23 jruby-1.7.24 jruby-1.7.25 jruby-1.7.26 jruby-1.7.27 jruby-9.0.0.0.pre1 jruby-9.0.0.0.pre2 jruby-9.0.0.0.rc1 jruby-9.0.0.0.rc2 jruby-9.0.0.0 jruby-9.0.1.0 jruby-9.0.2.0 jruby-9.0.3.0 jruby-9.0.4.0 jruby-9.0.5.0 jruby-9.1.0.0 jruby-9.1.1.0 jruby-9.1.2.0 jruby-9.1.3.0 jruby-9.1.4.0 jruby-9.1.5.0 jruby-9.1.6.0 jruby-9.1.7.0 jruby-9.1.8.0 jruby-9.1.9.0 jruby-9.1.10.0 jruby-9.1.11.0 jruby-9.1.12.0 jruby-9.1.13.0 jruby-9.1.14.0 jruby-9.1.15.0 jruby-9.1.16.0 jruby-9.1.17.0 jruby-9.2.0.0 jruby-9.2.1.0 jruby-9.2.2.0 jruby-9.2.3.0 jruby-9.2.4.0 jruby-9.2.4.1 jruby-9.2.5.0 jruby-9.2.6.0 jruby-9.2.7.0 jruby-9.2.8.0 jruby-9.2.9.0 jruby-9.2.10.0 jruby-9.2.11.0 jruby-9.2.11.1 jruby-9.2.12.0 jruby-9.2.13.0 jruby-9.2.14.0 jruby-9.2.15.0 jruby-9.2.16.0 jruby-9.2.17.0 jruby-9.2.18.0 jruby-9.2.19.0 jruby-9.2.20.0 jruby-9.2.20.1 jruby-9.2.21.0 jruby-9.3.0.0 jruby-9.3.1.0 jruby-9.3.2.0 jruby-9.3.3.0 jruby-9.3.4.0 jruby-9.3.6.0 jruby-9.3.7.0 jruby-9.3.8.0 jruby-9.3.9.0 jruby-9.3.10.0 jruby-9.3.11.0 jruby-9.3.13.0 jruby-9.3.14.0 jruby-9.3.15.0 jruby-9.4.0.0 jruby-9.4.1.0 jruby-9.4.2.0 jruby-9.4.3.0 jruby-9.4.4.0 jruby-9.4.5.0 jruby-9.4.6.0 jruby-9.4.7.0 jruby-9.4.8.0 jruby-9.4.9.0 jruby-9.4.10.0 jruby-9.4.11.0 jruby-9.4.12.0 macruby-0.12 maglev-1.0.0 maglev-1.1beta maglev-1.1beta2 maglev-1.1RC1 maglev-1.2Alpha maglev-1.2Alpha2 maglev-1.2Alpha3 maglev-1.2Alpha4 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1.4.0 mruby-1.4.1 mruby-2.0.0 mruby-2.0.1 mruby-2.1.0-rc mruby-2.1.0 mruby-2.1.1-rc mruby-2.1.1-rc2 mruby-2.1.1 rbx-1.0.0-20100514 rbx-1.0.1-20100603 rbx-1.1.0-20100923 rbx-1.1.1-20101116 rbx-1.2.0-20101221 rbx-1.2.1-20110215 rbx-1.2.2-20110222 rbx-1.2.3-20110315 rbx-1.2.4-20110705 rbx-1.3.2 rbx-1.3.3 rbx-1.4.1 rbx-1.4.3 rbx-2.0.0 rbx-2.1.0 rbx-2.1.1 rbx-2.2.0 rbx-2.2.2 rbx-2.2.3 rbx-2.2.4 rbx-2.2.5 rbx-2.2.6 rbx-2.2.7 rbx-2.2.8 rbx-2.2.9 rbx-2.2.10 rbx-2.3.0 rbx-2.4.0 rbx-2.4.1 rbx-2.5.0 rbx-2.5.1 rbx-2.5.2 rbx-2.5.3 rbx-2.5.4 rbx-2.5.5 rbx-2.5.6 rbx-2.5.7 rbx-2.5.8 rbx-3.70 rbx-3.71 rbx-3.72 rbx-3.73 rbx-3.74 rbx-3.75 rbx-3.76 rbx-3.77 rbx-3.78 rbx-3.79 rbx-3.80 rbx-3.81 rbx-3.82 rbx-3.83 rbx-3.84 rbx-3.85 rbx-3.86 rbx-3.87 rbx-3.88 rbx-3.89 rbx-3.90 rbx-3.91 rbx-3.92 rbx-3.93 rbx-3.94 rbx-3.95 rbx-3.96 rbx-3.97 rbx-3.98 rbx-3.99 rbx-3.100 rbx-3.101 rbx-3.102 rbx-3.103 rbx-3.104 rbx-3.105 rbx-3.106 rbx-3.107 rbx-4.0 rbx-4.1 rbx-4.2 rbx-4.3 rbx-4.4 rbx-4.5 rbx-4.6 rbx-4.7 rbx-4.8 rbx-4.9 rbx-4.10 rbx-4.11 rbx-4.12 rbx-4.13 rbx-4.14 rbx-4.15 rbx-4.16 rbx-4.17 rbx-4.18 rbx-4.19 rbx-4.20 rbx-5.0 ree-1.8.6-20080507 ree-1.8.6-20080621 ree-1.8.6-20080623 ree-1.8.6-20080624 ree-1.8.6-20080709 ree-1.8.6-20080810 ree-1.8.6-20081205 ree-1.8.6-20081215 ree-1.8.6-20090113 ree-1.8.6-20090201 ree-1.8.6-20090421 ree-1.8.6-20090520 ree-1.8.6-20090610 ree-1.8.6-20090928 ree-1.8.7-2009.10 ree-1.8.7-2010.01 ree-1.8.7-2010.02 ree-1.8.7-2011.01 ree-1.8.7-2011.02 ree-1.8.7-2011.03 ree-1.8.7-2011.12 ree-1.8.7-2012.02 ruby-1.8.5-p115 ruby-1.8.5-p231 ruby-1.8.6-p286 ruby-1.8.6-p287 ruby-1.8.6-p369 ruby-1.8.6-p383 ruby-1.8.6-p398 ruby-1.8.6-p399 ruby-1.8.6-p420 ruby-1.8.7-p160 ruby-1.8.7-p174 ruby-1.8.7-p248 ruby-1.8.7-p249 ruby-1.8.7-p299 ruby-1.8.7-p302 ruby-1.8.7-p330 ruby-1.8.7-p334 ruby-1.8.7-p352 ruby-1.8.7-p357 ruby-1.8.7-p358 ruby-1.8.7-p370 ruby-1.8.7-p371 ruby-1.8.7-p374 ruby-1.9.0 ruby-1.9.1-p129 ruby-1.9.1-p243 ruby-1.9.1-p376 ruby-1.9.1-p378 ruby-1.9.1-p429 ruby-1.9.1-p431 ruby-1.9.2-p0 ruby-1.9.2-p136 ruby-1.9.2-p180 ruby-1.9.2-p290 ruby-1.9.2-p318 ruby-1.9.2-p320 ruby-1.9.2-p330 ruby-1.9.3-preview1 ruby-1.9.3-rc1 ruby-1.9.3-p0 ruby-1.9.3-p125 ruby-1.9.3-p194 ruby-1.9.3-p286 ruby-1.9.3-p327 ruby-1.9.3-p362 ruby-1.9.3-p374 ruby-1.9.3-p385 ruby-1.9.3-p392 ruby-1.9.3-p429 ruby-1.9.3-p448 ruby-1.9.3-p484 ruby-1.9.3-p545 ruby-1.9.3-p547 ruby-1.9.3-p550 ruby-1.9.3-p551 ruby-2.0.0-preview1 ruby-2.0.0-preview2 ruby-2.0.0-rc1 ruby-2.0.0-rc2 ruby-2.0.0-p0 ruby-2.0.0-p195 ruby-2.0.0-p247 ruby-2.0.0-p353 ruby-2.0.0-p451 ruby-2.0.0-p481 ruby-2.0.0-p576 ruby-2.0.0-p594 ruby-2.0.0-p598 ruby-2.0.0-p643 ruby-2.0.0-p645 ruby-2.0.0-p647 ruby-2.0.0-p648 ruby-2.1.0-preview1 ruby-2.1.0-preview2 ruby-2.1.0-rc1 ruby-2.1.0 ruby-2.1.1 ruby-2.1.2 ruby-2.1.3 ruby-2.1.4 ruby-2.1.5 ruby-2.1.6 ruby-2.1.7 ruby-2.1.8 ruby-2.1.9 ruby-2.1.10 ruby-2.2.0-preview1 ruby-2.2.0-preview2 ruby-2.2.0-rc1 ruby-2.2.0 ruby-2.2.1 ruby-2.2.2 ruby-2.2.3 ruby-2.2.4 ruby-2.2.5 ruby-2.2.6 ruby-2.2.7 ruby-2.2.8 ruby-2.2.9 ruby-2.2.10 ruby-2.3.0-preview1 ruby-2.3.0-preview2 ruby-2.3.0 ruby-2.3.1 ruby-2.3.2 ruby-2.3.3 ruby-2.3.4 ruby-2.3.5 ruby-2.3.6 ruby-2.3.7 ruby-2.3.8 ruby-2.4.0-preview1 ruby-2.4.0-preview2 ruby-2.4.0-preview3 ruby-2.4.0-rc1 ruby-2.4.0 ruby-2.4.1 ruby-2.4.2 ruby-2.4.3 ruby-2.4.4 ruby-2.4.5 ruby-2.4.6 ruby-2.4.7 ruby-2.4.8 ruby-2.4.9 ruby-2.4.10 ruby-2.5.0-preview1 ruby-2.5.0-rc1 ruby-2.5.0 ruby-2.5.1 ruby-2.5.2 ruby-2.5.3 ruby-2.5.4 ruby-2.5.5 ruby-2.5.6 ruby-2.5.7 ruby-2.5.8 ruby-2.5.9 ruby-2.6.0-preview1 ruby-2.6.0-preview2 ruby-2.6.0-preview3 ruby-2.6.0-rc1 ruby-2.6.0-rc2 ruby-2.6.0 ruby-2.6.1 ruby-2.6.2 ruby-2.6.3 ruby-2.6.4 ruby-2.6.5 ruby-2.6.6 ruby-2.6.7 ruby-2.6.8 ruby-2.6.9 ruby-2.6.10 ruby-2.7.0-preview1 ruby-2.7.0-preview2 ruby-2.7.0-preview3 ruby-2.7.0-rc1 ruby-2.7.0-rc2 ruby-2.7.0 ruby-2.7.1 ruby-2.7.2 ruby-2.7.3 ruby-2.7.4 ruby-2.7.5 ruby-2.7.6 ruby-2.7.7 ruby-2.7.8 ruby-3.0.0-preview1 ruby-3.0.0-preview2 ruby-3.0.0-rc1 ruby-3.0.0 ruby-3.0.1 ruby-3.0.2 ruby-3.0.3 ruby-3.0.4 ruby-3.0.5 ruby-3.0.6 ruby-3.0.7 ruby-3.1.0-preview1 ruby-3.1.0 ruby-3.1.1 ruby-3.1.2 ruby-3.1.3 ruby-3.1.4 ruby-3.1.5 ruby-3.2.0-preview1 ruby-3.2.0-preview2 ruby-3.2.0-preview3 ruby-3.2.0-rc1 ruby-3.2.0 ruby-3.2.1 ruby-3.2.2 ruby-3.2.3 ruby-3.2.4 ruby-3.2.5 ruby-3.2.6 ruby-3.2.7 ruby-3.3.0-preview1 ruby-3.3.0-preview2 ruby-3.3.0-preview3 ruby-3.3.0 ruby-3.3.1 ruby-3.3.2 ruby-3.3.3 ruby-3.3.4 ruby-3.3.5 ruby-3.3.6 ruby-3.3.7 ruby-3.4.0-preview1 ruby-3.4.0 ruby-3.4.1 +ruby-3.4.2 truffleruby-1.0.0-rc2 truffleruby-1.0.0-rc3 truffleruby-1.0.0-rc5 truffleruby-1.0.0-rc6 truffleruby-1.0.0-rc7 truffleruby-1.0.0-rc8 truffleruby-1.0.0-rc9 truffleruby-1.0.0-rc10 truffleruby-1.0.0-rc11 truffleruby-1.0.0-rc12 truffleruby-1.0.0-rc13 truffleruby-1.0.0-rc14 truffleruby-1.0.0-rc15 truffleruby-1.0.0-rc16 truffleruby-19.0.0 truffleruby-19.0.2 truffleruby-19.1.0 truffleruby-19.1.1 truffleruby-19.2.0 truffleruby-19.2.0.1 truffleruby-19.2.1 truffleruby-19.3.0 truffleruby-19.3.0.2 truffleruby-19.3.1 truffleruby-20.0.0 truffleruby-20.1.0 truffleruby-20.2.0 truffleruby-20.3.0 truffleruby-21.0.0 truffleruby-21.1.0 truffleruby-21.2.0 truffleruby-21.2.0.1 truffleruby-21.3.0 truffleruby-22.0.0.2 truffleruby-22.1.0 truffleruby-22.2.0 truffleruby-22.3.0 truffleruby-22.3.1 truffleruby-23.0.0-preview1 truffleruby-23.0.0 truffleruby-23.1.0 truffleruby-23.1.1 truffleruby-23.1.2 truffleruby-24.0.0 truffleruby-24.0.1 truffleruby-24.0.2 truffleruby-24.1.0 truffleruby-24.1.1 truffleruby-24.1.2 diff --git a/config/md5 b/config/md5 index 6ce4959..5095539 100644 --- a/config/md5 +++ b/config/md5 @@ -1294,771 +1294,772 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=9c3775365cab8e1e82aa19e87b9711dd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=cce17e87cc9bfcb6b995e5f1996c423c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=b80a93441133b85258d97085aeead20a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=74c45b08a2dc28871ff158b608cc8685 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=469b22a4b12f23e86ac25b3d797ff559 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=ea7767cbfacd744813ccaedd1b4e0013 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=0d9f69db1bd665c9e5c9592b483b31a1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=068f5c90b5b381cd58d8804ca2b3be64 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=6181192273efab4aabaa8628fc83c7be https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=fa690cb7132706fb25dfc625e949e96a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=c443f32cd4c91fb37ff79bd86906e1bc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=6fa3edab1bbacf7328074a7fba22be50 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=a950bc4af16446fce2f9266e95629bdb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=d9bce275c2f36dbde8a6c25f9fa10c2e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=6486c5ce9ec697039b0bb36d2bf18a0d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=79f0927984b8e6e7934b34bdb2a3e5e5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=214ac1e49a75291a68c63134bc246a8a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=94a39d1b226350362666f6305866b20b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=4db7d99d775a7f24bb55c6053d4eb864 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=c0db831a97b8427e0777adeaebf7a9d8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=830b4845fbfd45df75758e311a013ffc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=3fc39c824b2060a3a2766ca01037dd15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=0b395f3884c78c6938896ff253c5251b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=2be294a056a45a50262d1796906f8860 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=0270733b808489a91e41f73d9fe971e9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=33db4a687e4943faf6c2853179b67935 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=dea6663b2c113190e9b99a6dcedb3aa0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=835e563bfbe3c8311326660a51f3394c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=66e3c1e1140300c8236c13e3178cb8ab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=07b12bd2a7d8242c34d824882e654c22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=fe12c0e211f90076b51c7916c830971f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=65ab3105b0c6d5e8a2e9977a3ab7ed94 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=08547ad8e760e0776c74401ae5bbd8e5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=631b4ea065d18df96c6ccbc141904bb3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=03a67e234d886f3c698c1571e42cc7a6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=0ded0cb8ce18a846d71d7e04d24c2e78 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=5251aed0ba4d8349413d6bf4c261bea3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=f09694c4f23d7625f72606bce0efb710 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=340db3acb58829b51e4a7ac1c77246d4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1bd86cb46a9e6c40c285258879a3d59 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=d86b2a1e9721b9459e1283006e03fa92 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.2.6.tar.bz2=7d7e84912bb4d1f9915bb391fac54694 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.3.6.tar.bz2=3148fa25b5cd308156c567181ccf5ac3 ironruby-1.0.zip=7a92888837b3507355ed391dbfc0ab83 ironruby-1.1.3.zip=4f2af6253a459cc054d6c55956e514a9 jruby-bin-1.3.1.tar.gz=4a95db8fc93ed7219663fbede98b6117 jruby-bin-1.4.tar.gz=54dba9a88b2b3f99ac86a79828d0178b jruby-bin-1.4.0.tar.gz=f37322c18e9134e91e064aebb4baa4c7 jruby-bin-1.4.0.zip=3a9c8a5115a679da7d7a49a56d57d4c0 jruby-bin-1.4.1.tar.gz=a4aa8c43d1b9ffd9dbc6cb738d55a034 jruby-bin-1.5.0.tar.gz=ee2b4e326e8b87858e5dd0c8e94102e6 jruby-bin-1.5.1.tar.gz=74251383e08e8c339cacc35a7900d3af jruby-bin-1.5.2.tar.gz=d239deb9a108a6abbfbd6cb79cf8255b jruby-bin-1.5.3.tar.gz=ccb0b2dbc300d8dd4ad1bd4da48b8320 jruby-bin-1.5.5.tar.gz=8e00f7d40cbf221f733d6f7a15784e9a jruby-bin-1.5.6.tar.gz=94033a36517645b7a7ec781a3507c654 jruby-bin-1.6.0.tar.gz=f4d7e339dfc0fbaef5b878d1c0a66fbe jruby-bin-1.6.2.tar.gz=a46f978c24a208717023bb4b8995c678 jruby-bin-1.6.3.tar.gz=694b80e4eea784cdc1eb39fb1e3132c9 jruby-bin-1.6.4.tar.gz=0e96b6f4d1c6f12b5ac480cd7ab7da78 jruby-bin-1.6.5.tar.gz=54354082673bd115f945890dc6864413 jruby-bin-1.6.5.1.tar.gz=246a7aa2b7d7e6e9e8a0c2e282cbcfd0 jruby-bin-1.6.7.tar.gz=fd1b8d7389aa92da69ea6efb4782e40a jruby-bin-1.6.7.2.tar.gz=1e520f1b5130114464e5f1950cb24774 jruby-bin-1.6.8.tar.gz=a76ac5845640e4a1ebdfa74421efc935 jruby-bin-1.7.0.preview1.tar.gz=7b9e5e1cd0d818d0199086d948f948b4 jruby-bin-1.7.0.preview2.tar.gz=e8f1623759590aadbf49e4cc53f1cb61 jruby-bin-1.7.0.RC1.tar.gz=bdddcee3d126cddd9a85b5a066a7e25e jruby-bin-1.7.0.RC2.tar.gz=ffe2dd61711f4574fed344af151e5de5 jruby-bin-1.7.0.tar.gz=21861e0ecdbf48cda713c8ade82fdddb jruby-bin-1.7.1.tar.gz=86e659863541d8b987cb7bfbe3b4cfb0 jruby-bin-1.7.2.tar.gz=6ec9293b6dffd1e8ee57e9b7c6d18cbe jruby-bin-1.7.3.tar.gz=f0adf8ccee6f6777f7ab8e5e1d7a1f47 jruby-bin-1.7.4.tar.gz=c6a56eae78db28dddba911ccd0848c32 jruby-bin-1.7.5.tar.gz=c2a28c43c8095127d4a4aee0cf9b1439 jruby-bin-1.7.6.tar.gz=5d10011516a3d3bde10209b60cfcc0ef jruby-bin-1.7.7.tar.gz=9d6df2188fa57f12bf6fde4e4b2e3f09 jruby-bin-1.7.8.tar.gz=1e68f39d6dba7b6d9db81e24bb6b7d0a jruby-bin-1.7.9.tar.gz=b2e44f1f44837c07068ee453a89f4b55 jruby-bin-1.7.10.tar.gz=c84fe9245a73f9cd29f56343b7d2e39a jruby-bin-1.7.11.tar.gz=d6e6ab72426fa7fdc9ae55950980d877 jruby-bin-1.7.12.tar.gz=2073aa6dfc7c701ef7c3d3143d181582 jruby-bin-1.7.14.tar.gz=bc33284f27a3508a70d2ade100a2f6bd jruby-bin-1.7.15.tar.gz=92e63cffcb86842511aeeed95bdf96ed jruby-bin-1.7.16.tar.gz=92cb058d1a896257b5ac1c26dc433506 jruby-bin-1.7.16.1.tar.gz=eec2f0e03560bacf02a09c0096a99cad jruby-bin-1.7.16.2.tar.gz=cd31909b67239c5c6a795521fca5c239 jruby-bin-1.7.17.tar.gz=8b78ba1acdb718431f71c38287c07967 jruby-bin-1.7.18.tar.gz=aa7286140be0f6f60534ebffededc708 jruby-bin-1.7.19.tar.gz=bc38596757d8000d6ca4c4c3f8eacea6 jruby-bin-1.7.20.tar.gz=0c2adc160cb85c888b269e8ac4f886fc jruby-bin-1.7.21.tar.gz=bc91594072032023d146f330764d3274 jruby-bin-1.7.22.tar.gz=1da904bf41d362d0d0b366d9e781168f jruby-bin-1.7.23.tar.gz=41e3f45c28c94a275f9eeb22721da35d jruby-bin-1.7.25.tar.gz=fc43ead73f657f5261428923974fd605 jruby-bin-1.7.26.tar.gz=4ca60264a9560f37fdba8108543e72c2 jruby-bin-1.7.27.tar.gz=b98b0a2c52e885a868a2b60092e1cd3d jruby-bin-9.0.0.0.pre1.tar.gz=d5c8b30648348aa883f893d464d46bf1 jruby-bin-9.0.0.0.pre2.tar.gz=86994a9d7ed2cf318c75392623a3e6da jruby-bin-9.0.0.0.tar.gz=fe9036ea69bf23dc3b69cfc94adb5404 jruby-bin-9.0.1.0.tar.gz=a82bc640e0080b1d9a21d1477c8400e3 jruby-bin-9.0.3.0.tar.gz=828dd6c6dd18e5b186ccfd65753077bd jruby-bin-9.0.4.0.tar.gz=645bf4a1dcde3f19dc0fff75c8b4b685 jruby-bin-9.0.5.0.tar.gz=1d2dc649cbacbe26418ef3ba421018b1 jruby-bin-9.1.0.0.tar.gz=fe26e6308d006d35eb613cdd47d1dc99 jruby-bin-9.1.1.0.tar.gz=8356334270df07a214590d00a986837b jruby-bin-9.1.2.0.tar.gz=749bb917dde9666e365e12bbe776a5c2 jruby-bin-9.1.3.0.tar.gz=91c246cd623702032e88283565da5480 jruby-bin-9.1.4.0.tar.gz=5b80b78c09bf0cd4dcbcb9e1fe3e8b73 jruby-bin-9.1.5.0.tar.gz=e9b2cc44757db4cfbe7da79601d0169a jruby-bin-9.1.6.0.tar.gz=4092a89b01b55d1fb5498113f97ab0ca jruby-bin-9.1.7.0.tar.gz=b120c3eaeef7ff2aed3a57701e414e78 jruby-bin-9.1.8.0.tar.gz=0fdee002c56ec91dff1efffce205265c jruby-bin-9.1.9.0.tar.gz=170efc34297d7ac2a56bb1163e96b363 jruby-bin-9.1.10.0.tar.gz=b75e0d1a200e8f790d8bbc84f91e3002 jruby-bin-9.1.11.0.tar.gz=0502a14141da25a460ce197720bab4c3 jruby-bin-9.1.12.0.tar.gz=74bd7ae08c159fc62cb6f64845a868cc jruby-bin-9.1.13.0.tar.gz=6c642c8a2653a585779f453d8c843fd7 jruby-bin-9.1.14.0.tar.gz=a7e0ecd529690025d327c45744f60fa4 jruby-bin-9.1.15.0.tar.gz=01c29690324d7eb414fba66e4c009c9e jruby-bin-9.1.16.0.tar.gz=e64c3aa1310c272194fd1750b0b79fac jruby-bin-9.1.17.0.tar.gz=f28d1fcbb60e550f3abd839102ad0069 jruby-bin-9.2.0.0.tar.gz=bd476da4bed39ffcfff7116f448a5365 jruby-bin-9.2.1.0.tar.gz=4b78b0a40ca541556f5ee75a815e0be0 jruby-bin-9.2.2.0.tar.gz=be678559801be029fe233c33396e34d2 jruby-bin-9.2.3.0.tar.gz=79328ab1ed37d612da35271183e46bbd jruby-bin-9.2.4.0.tar.gz=f538f2be459f0f0e517a53446e78a354 jruby-bin-9.2.4.1.tar.gz=d373bbc2bd6caabfcc9914c4067e9d24 jruby-bin-9.2.5.0.tar.gz=14582fd6eee19610f0a7433ce5dd5ce4 jruby-bin-9.2.6.0.tar.gz=dba182ac9943b726b609ca61747c1835 jruby-bin-9.2.7.0.tar.gz=c0111b2cafa920df76284044e1aeedc7 jruby-bin-9.2.8.0.tar.gz=7d652b586a18f1c665289fd7e6edf4f5 jruby-bin-9.2.9.0.tar.gz=74b3451f79c13c2fc66c6dee69d46699 jruby-bin-9.2.10.0.tar.gz=e6ce97eae6e35b622c1b572f9297705b jruby-bin-9.2.11.0.tar.gz=22b003adfb03b253721cc85db248698f jruby-bin-9.2.11.1.tar.gz=687586132f7b649b1bdd7b823577c9d8 jruby-bin-9.2.12.0.tar.gz=cc7599837fbd0839cce7293577a34f2c jruby-bin-9.2.13.0.tar.gz=99df4eb89f88c7582bfe7c313daec7b4 jruby-bin-9.2.14.0.tar.gz=421c5b8146701177a738a0a691190018 jruby-bin-9.2.15.0.tar.gz=ba593f1de2c4e592a8ca9b9e903af457 jruby-bin-9.2.16.0.tar.gz=d8d954ee0ab6f4868c3fc63339660af9 jruby-bin-9.2.17.0.tar.gz=382fb3d9d2982efd5396f1a42e3fa6a1 jruby-bin-9.2.18.0.tar.gz=002ac95859a2176cb0a58d81d6e0fb14 jruby-bin-9.2.19.0.tar.gz=0961867a77838853f32ee72dbde7c00e jruby-bin-9.2.20.0.tar.gz=840876dd0ca0098452dd2667fe9dd7f4 jruby-bin-9.2.20.1.tar.gz=5856ed030f0d9e75d2384cf42f62a4de jruby-bin-9.2.21.0.tar.gz=9957c1d2bd9265144fe55f9f7093272a jruby-bin-9.3.0.0.tar.gz=501a3c975b3c9478b72d4b0cd37170b9 jruby-bin-9.3.1.0.tar.gz=201d3e483bf847f5c59f4b1f3bf594d5 jruby-bin-9.3.2.0.tar.gz=259c276f68a01495dda24407394a382d jruby-bin-9.3.3.0.tar.gz=cd49b81753048cee9c8ffdd2ce1cb3e2 jruby-bin-9.3.4.0.tar.gz=7292dd9a56155aa015ec08c03855b3fc jruby-bin-9.3.6.0.tar.gz=bc5a7b02be69fdf3f5584e8880fc7dcc jruby-bin-9.3.7.0.tar.gz=49b17b5cd7cf8bfb09d8f64147d992ef jruby-bin-9.3.8.0.tar.gz=6ea209b699a06944d0653d8048d8bfec jruby-bin-9.3.9.0.tar.gz=9a0f0a931346bc6ea34196a5c88002ec jruby-bin-9.3.10.0.tar.gz=83c9d776dfc8cf33bfa60f7e78077160 jruby-bin-9.3.11.0.tar.gz=6ccc04e658c49db19fc0c452db0f2931 jruby-bin-9.3.13.0.tar.gz=3f20268b494da900504e921507248183 jruby-bin-9.3.14.0.tar.gz=87a96fd3af448ec8fd5ca45c6469ecc9 jruby-bin-9.3.15.0.tar.gz=385fabe180b68fb8cd3743b315109e5f jruby-bin-9.4.0.0.tar.gz=d0136daa4910f6e6b21858260eb00fe2 jruby-bin-9.4.1.0.tar.gz=abe2669672ac973f1b41a4d3860eb7ae jruby-bin-9.4.2.0.tar.gz=486e50f3c74e7400e71631819fde91da jruby-bin-9.4.3.0.tar.gz=526006fefb3e5ffc5095ab5599cc38c6 jruby-bin-9.4.4.0.tar.gz=287b5c3a9b63ff93e49ae9dc0347263b jruby-bin-9.4.5.0.tar.gz=09c6fceb38d6c086af2e4d5f21f9fe65 jruby-bin-9.4.6.0.tar.gz=5e2fe4ed897d938332ee0d85d2aa60bc jruby-bin-9.4.7.0.tar.gz=a0633ca837efff62edca84ceae1f5515 jruby-bin-9.4.8.0.tar.gz=9f520a3a416b598b4e53916e7180b623 jruby-bin-9.4.9.0.tar.gz=b7a789e9ff1b87d0e8c7bda7fae31c16 jruby-bin-9.4.10.0.tar.gz=36d6d8d745e793580ec4b12caa257501 jruby-bin-9.4.11.0.tar.gz=46e632baba1068e17345c7d24fec4241 jruby-bin-9.4.12.0.tar.gz=c7a26b4bd2fde1064b1cc6bf67f2f645 libiconv-1.13.1.tar.gz=7ab33ebd26687c744a37264a330bbe9a MacRuby%200.5.zip=675454a8c7bc19d606d90a726e08427c MacRuby%200.6.zip=a80afd3700c88cf95c539fc63b272faf MacRuby%200.7.1.zip=e8245dcd03c0757dfae7e6fee913947a MacRuby%200.7.zip=0bb60588c9ec9b1517665743bb05132f MacRuby%200.8.zip=735ac0a70f539e00b5de6fbec09c2c5c MacRuby%200.9.zip=fa01345e8fbfee620bbac64743a45f69 MacRuby%200.10.zip=1662d13d2f73cfc26258598f6988dcbc MacRuby%200.11.zip=b0cc23d60484a07012bcad549cef6054 MacRuby%200.12.zip=e1c5fa1b007a1cdc38c527a47302bf5e MagLev-1.0.0.tar.gz=e02cb8ee04438451eb78df14f91a68a9 MagLev-1.1beta.tar.gz=d542c7af290ce3b588b57629906b19e9 MagLev-1.1beta2.tar.gz=0ef88d5d145611aef324cb51be0aaafd MagLev-1.1RC1.tar.gz=41f4a0994daf1e5271cbd0ebe57816f4 MagLev-1.2Alpha.tar.gz=5c7dd3acef9dbddc0829bb1daa087abb MagLev-1.2Alpha2.tar.gz=cbbeae109854a6bf107a747a93fd478b MagLev-1.2Alpha3.tar.gz=b7470518f2b697eb1a5a39eff9b6d749 MagLev-1.2Alpha4.tar.gz=d54f04a611ce838b9d7009627065b7ca mruby-1.0.0.tar.gz=d9aec6a20fc1add65ee07ff6cf0e1ef2 mruby-1.1.0.tar.gz=60d75ea704c9285f3c80b3ad1d2b68de mruby-1.2.0.tar.gz=b5a3b7962d9db8cb8fb8105aa914d16c mruby-1.3.0.tar.gz=9714dd2804064d0043e099b7211d72b9 mruby-1.4.0.tar.gz=25efc35511070454074b36863c4d5b5e mruby-1.4.1.tar.gz=b40bf09af3f4c6e2bc443b9ac803a3ad mruby-2.0.0.tar.gz=b86c6a1dd86cb4ebe51e3fe38964a830 mruby-2.0.1.tar.gz=15b426a8a94a610c45414578786d05e3 mruby-2.1.0-rc.tar.gz=58a85fcb102d72900a25190da670e01d mruby-2.1.0.tar.gz=c01a4bbf62e6f5765c70b8813e0ce7da mruby-2.1.1-rc.tar.gz=809edd80e680855e7c4cf3c569972f28 mruby-2.1.1-rc2.tar.gz=24879fa5eb587f9415f03f8f3701842e mruby-2.1.1.tar.gz=c0ee4a112695046b9e4f177e31096d6c ncurses.tar.gz=cce05daf61a64501ef6cd8da1f727ec6 openssl-0.9.8k.tar.gz=e555c6d58d276aec7fdc53363e338ab3 openssl-0.9.8n.tar.gz=076d8efc3ed93646bd01f04e23c07066 openssl-1.0.1c.tar.gz=ae412727c8c15b67880aef7bd2999b2e openssl-1.0.1i.tar.gz=c8dc151a671b9b92ff3e4c118b174972 pkg-config-0.23.tar.gz=d922a88782b64441d06547632fd85744 readline-5.2.tar.gz=e39331f32ad14009b9ff49cc10c5e751 readline-6.0.tar.gz=b7f65a48add447693be6e86f04a63019 readline-6.2.tar.gz=67948acb2ca081f23359d0256e9a271c release-2.0.0-rc1.zip=b05b5e3c2712a294e4b09ebf450c1bfe rubinius-1.0.0-20100514.tar.gz=b05f4e791d3712c5a50b3d210dac6eb0 rubinius-1.0.1-20100603.tar.gz=eb185703c7ae0c0210e8dcb7f783ee8e rubinius-1.1.0-20100923.tar.gz=e2ae16238b201de09975abe19da09ea9 rubinius-1.1.1-20101116.tar.gz=b39f618eeba37c3aff215da8bca55fd7 rubinius-1.2.0-20101221.tar.gz=4284c2660f1f648942de35d4fc871f70 rubinius-1.2.1-20110215.tar.gz=e4a5127480062fddddc7ce2860b3b813 rubinius-1.2.2-20110222.tar.gz=59124378fb7ee040e9ee4e4736d89fc0 rubinius-1.2.3-20110315.tar.gz=9782dab18c2dd440af6b76e8eb5bc0f0 rubinius-1.2.4-20110705.tar.gz=403c777d19b3553e9cb36701fe002c5e rubinius-1.3.2.tar.bz2=64801ad8dd4e5e4fcb74ff313fec0a69 rubinius-1.3.3.tar.bz2=79f1f860ed8242257bd7f3e88c81a197 rubinius-1.4.1.tar.bz2=76b840405d4b9303261c27cf15002386 rubinius-2.0.0.tar.bz2=62e379e044c822b81e7b20a27daf133e rubinius-2.1.0.tar.bz2=908053f38fd840c75a93aab7487c20a5 rubinius-2.1.1.tar.bz2=6b4df0caec5ea88373e113f97a3b4c72 rubinius-2.2.0.tar.bz2=f1fbc6f3baf1da5ad86b3858f30f3349 rubinius-2.2.2.tar.bz2=ac70d629ea43525d91e81f4ccf135299 rubinius-2.2.3.tar.bz2=d9978cf1a4e8f0310db63e49834f9837 rubinius-2.2.4.tar.bz2=c10699da85a8eb5861a37b29077213bd rubinius-2.2.5.tar.bz2=5996dc8529b2ffe5921c5e7020bee20e rubinius-2.2.6.tar.bz2=85339bb6dd525eee719edf0551868f56 rubinius-2.2.7.tar.bz2=de2e6f4c3bd9a90bcb89f2ea27ddee9e rubinius-2.2.8.tar.bz2=c4db1ffb8dbdf864240cabe8b7758b49 rubinius-2.2.9.tar.bz2=0bf87ba617fa989e47d20942410028af rubinius-2.2.10.tar.bz2=8680da7eb921e6f595a1d716915ca7e0 rubinius-2.3.0.tar.bz2=e003a30af6689c8198116b3405d09d8e rubinius-2.4.0.tar.bz2=62391a51f49820daa51463066c3ce007 rubinius-2.4.1.tar.bz2=7758721b6e848387c3943ddb9ebd9479 rubinius-2.5.0.tar.bz2=178baa1ad172df0801765ea93bc36d87 rubinius-2.5.1.tar.bz2=77e1b87dc357691ad44b561a5f45c188 rubinius-2.5.2.tar.bz2=e5973d6e0a16f0390dc2a7478db83ff5 rubinius-2.5.3.tar.bz2=b19709eb3fa9e05b3fa6a357b33e3b5b rubinius-2.5.4.tar.bz2=64587916e5d445ed9bc630017a04498e rubinius-2.5.5.tar.bz2=ef671bbab50cbe2f70f953c491311261 rubinius-2.5.6.tar.bz2=597e4b049f49966c646faf699856c1b9 rubinius-2.5.7.tar.bz2=9a7f404019bce9fc34a7af7feb7cbb74 rubinius-2.5.8.tar.bz2=a24520892cada1f660e719a25abf63e3 ruby-1.8.5-p115.tar.bz2=03955e3c367b9beb3efe144c9f00d689 ruby-1.8.5-p115.tar.gz=20ca6cc87eb077296806412feaac0356 ruby-1.8.5-p231.tar.bz2=327f5aa6573787432222e96195cffd1e ruby-1.8.5-p231.tar.gz=e900cf225d55414bffe878f00a85807c ruby-1.8.6-p286.tar.bz2=e6b6bf8f34370e433936adb7a7065e63 ruby-1.8.6-p286.tar.gz=797ea136fe43e4286c9362ee4516674e ruby-1.8.6-p287.tar.bz2=80b5f3db12531d36e6c81fac6d05dda9 ruby-1.8.6-p287.tar.gz=6ff3420094711266c3201a0c7c2faa38 ruby-1.8.6-p369.tar.bz2=c3c1f3dd0dfbd2e17a04e59c2f12cfc8 ruby-1.8.6-p369.tar.gz=8c140ae28b4c3947b92dfad69109d90b ruby-1.8.6-p383.tar.bz2=a48703cd982b9f0e3002700a50b0e88e ruby-1.8.6-p383.tar.gz=4f49544d4a4d0d34e9d86c41e853db2e ruby-1.8.6-p398.tar.bz2=fbd43dc44ee26be4d37e6bebbed6f8bd ruby-1.8.6-p398.tar.gz=736db5f56c2d9b0136e563d049249fa8 ruby-1.8.6-p399.tar.bz2=f77c307cb72fb8808b0e85af5d05cefc ruby-1.8.6-p399.tar.gz=c3d16cdd3c1ee8f3b7d1c399d4884e33 ruby-1.8.6-p420.tar.bz2=1c7a978e9ffd4f56dc2ad74bbd2c34f3 ruby-1.8.6-p420.tar.gz=ca1eee44f842e93b5098bc5a2bb9a40b ruby-1.8.7-p160.tar.bz2=f8ddb886b8a81cf005f53e9a9541091d ruby-1.8.7-p160.tar.gz=945398f97e2de6dd8ab6df68d10bb1a1 ruby-1.8.7-p174.tar.bz2=88c45aaf627b4404e5e4273cb03ba2ee ruby-1.8.7-p174.tar.gz=18dcdfef761a745ac7da45b61776afa5 ruby-1.8.7-p248.tar.bz2=37e19d46b7d4b845f57d3389084b94a6 ruby-1.8.7-p248.tar.gz=60a65374689ac8b90be54ca9c61c48e3 ruby-1.8.7-p249.tar.bz2=37200cc956a16996bbfd25bb4068f242 ruby-1.8.7-p249.tar.gz=d7db7763cffad279952eb7e9bbfc221c ruby-1.8.7-p299.tar.bz2=244439a87d75ab24170a9c2b451ce351 ruby-1.8.7-p299.tar.gz=43533980ee0ea57381040d4135cf9677 ruby-1.8.7-p302.tar.bz2=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p302.tar.gz=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p330.tar.bz2=2689719fb42c8cf0aa336f8c8933f413 ruby-1.8.7-p330.tar.gz=50a49edb787211598d08e756e733e42e ruby-1.8.7-p334.tar.bz2=2f14f604bf981bb938ab5fc8b09eb1a6 ruby-1.8.7-p334.tar.gz=aacb6ee5dfe2367682bba56af7f415b8 ruby-1.8.7-p352.tar.bz2=0c61ea41d1b1183b219b9afe97f18f52 ruby-1.8.7-p352.tar.gz=0c33f663a10a540ea65677bb755e57a7 ruby-1.8.7-p357.tar.bz2=3abd9e2a29f756a0d30c7bfca578cdeb ruby-1.8.7-p357.tar.gz=b2b8248ff5097cfd629f5b9768d1df82 ruby-1.8.7-p358.tar.bz2=de35f00997f4ccee3e22dff0f2d01b8a ruby-1.8.7-p370.tar.bz2=1e4c3194537dd8ff92e756993e55a29d ruby-1.8.7-p371.tar.bz2=c27526b298659a186bdb5107fcec2341 ruby-1.8.7-p371.tar.gz=653f07bb45f03d0bf3910491288764df ruby-1.8.7-p374.tar.bz2=83c92e2b57ea08f31187060098b2200b ruby-1.8.7-p374.tar.gz=b72a0bc5b824398537762e5272bbb8dc ruby-1.9.0.tar.bz2=17eb66ac3721340d21db352d8f5dec76 ruby-1.9.1-p129.tar.bz2=6fa62b20f72da471195830dec4eb2013 ruby-1.9.1-p129.tar.gz=c71f413514ee6341c627be2957023a5c ruby-1.9.1-p243.tar.bz2=66d4f8403d13623051091347764881a0 ruby-1.9.1-p243.tar.gz=515bfd965814e718c0943abf3dde5494 ruby-1.9.1-p376.tar.bz2=e019ae9c643c5efe91be49e29781fb94 ruby-1.9.1-p376.tar.gz=ebb20550a11e7f1a2fbd6fdec2a3e0a3 ruby-1.9.1-p378.tar.bz2=5922459622a23612eb9b68a3586cb5f8 ruby-1.9.1-p378.tar.gz=9fc5941bda150ac0a33b299e1e53654c ruby-1.9.1-p429.tar.bz2=09df32ae51b6337f7a2e3b1909b26213 ruby-1.9.1-p429.tar.gz=0f6d7630f26042e00bc59875755cf879 ruby-1.9.1-p431.tar.bz2=03179138ae95dbfae872ef49e9cc6da7 ruby-1.9.1-p431.tar.gz=23f28cffc007ed5ac72c8e9bec6837ce ruby-1.9.2-p0.tar.bz2=d8a02cadf57d2571cd4250e248ea7e4b ruby-1.9.2-p0.tar.gz=755aba44607c580fddc25e7c89260460 ruby-1.9.2-p136.tar.bz2=52958d35d1b437f5d9d225690de94c13 ruby-1.9.2-p136.tar.gz=6e17b200b907244478582b7d06cd512e ruby-1.9.2-p180.tar.bz2=68510eeb7511c403b91fe5476f250538 ruby-1.9.2-p180.tar.gz=0d6953820c9918820dd916e79f4bfde8 ruby-1.9.2-p290.tar.bz2=096758c3e853b839dc980b183227b182 ruby-1.9.2-p290.tar.gz=604da71839a6ae02b5b5b5e1b792d5eb ruby-1.9.2-p318.tar.bz2=be431c6cbfa27e3836a06c6315717747 ruby-1.9.2-p318.tar.gz=cc7bf1025128e1985882ae243f348802 ruby-1.9.2-p320.tar.bz2=b226dfe95d92750ee7163e899b33af00 ruby-1.9.2-p320.tar.gz=5ef5d9c07af207710bd9c2ad1cef4b42 ruby-1.9.2-p330.tar.bz2=8ba4aaf707023e76f80fc8f455c99858 ruby-1.9.2-p330.tar.gz=4b9330730491f96b402adc4a561e859a ruby-1.9.3-p0.tar.bz2=65401fb3194cdccd6c1175ab29b8fdb8 ruby-1.9.3-p0.tar.gz=8e2fef56185cfbaf29d0c8329fc77c05 ruby-1.9.3-p125.tar.bz2=702529a7f8417ed79f628b77d8061aa5 ruby-1.9.3-p125.tar.gz=e3ea86b9d3fc2d3ec867f66969ae3b92 ruby-1.9.3-p194.tar.bz2=2278eff4cfed3cbc0653bc73085caa34 ruby-1.9.3-p194.tar.gz=bc0c715c69da4d1d8bd57069c19f6c0e ruby-1.9.3-p286.tar.bz2=e76848a86606a4fd5dcf14fc4b4e755e ruby-1.9.3-p327.tar.bz2=7d602aba93f31ceef32800999855fbca ruby-1.9.3-p327.tar.gz=96118e856b502b5d7b3a4398e6c6e98c ruby-1.9.3-p362.tar.bz2=13c26ea368d88a560f07cc8c5eb4fa05 ruby-1.9.3-p374.tar.bz2=944e73eba9ee9e1f2647ff32ec0b14b2 ruby-1.9.3-p385.tar.bz2=5ec9aff670f4912b0f6f0e11e855ef6c ruby-1.9.3-p392.tar.bz2=a810d64e2255179d2f334eb61fb8519c ruby-1.9.3-p392.tar.gz=f689a7b61379f83cbbed3c7077d83859 ruby-1.9.3-p429.tar.bz2=c2b2de5ef15ea9b1aaa3152f9112af1b ruby-1.9.3-p429.tar.gz=993c72f7f805a9eb453f90b0b7fe0d2b ruby-1.9.3-p448.tar.bz2=aa710d386e5903f78f0231868255e6af ruby-1.9.3-p448.tar.gz=a893cff26bcf351b8975ebf2a63b1023 ruby-1.9.3-p484.tar.bz2=03f5b08804927ceabe5122cb90f5d0a9 ruby-1.9.3-p484.tar.gz=8ac0dee72fe12d75c8b2d0ef5d0c2968 ruby-1.9.3-p545.tar.bz2=4743c1dc48491070bae8fc8b423bc1a7 ruby-1.9.3-p545.tar.gz=8e8f6e4d7d0bb54e0edf8d9c4120f40c ruby-1.9.3-p547.tar.bz2=5363d399be7f827c77bf8ae5d1a69b38 ruby-1.9.3-p547.tar.gz=7531f9b1b35b16f3eb3d7bea786babfd ruby-1.9.3-p550.tar.bz2=c2169c8b14ccefd036081aba5ffa96da ruby-1.9.3-p551.tar.bz2=0d8b272b05c3449dc848bb7570f65bfe ruby-1.9.3-preview1.tar.bz2=7d93dc773c5824f05c6e6630d8c4bf9b ruby-1.9.3-preview1.tar.gz=0f0220be4cc7c51a82c1bd8f6a0969f3 ruby-1.9.3-rc1.tar.bz2=26f0dc51ad981e12c58b48380112fa4d ruby-1.9.3-rc1.tar.gz=46a2a481536ca0ca0b80ad2b091df68e ruby-2.0.0-p0.tar.bz2=895c1c581f8d28e8b3bb02472b2ccf6a ruby-2.0.0-p195.tar.bz2=2f54faea6ee1ca500632ec3c0cb59cb6 ruby-2.0.0-p247.tar.bz2=60913f3eec0c4071f44df42600be2604 ruby-2.0.0-p353.tar.bz2=20eb8f067d20f6b76b7e16cce2a85a55 ruby-2.0.0-p451.tar.bz2=908e4d1dbfe7362b15892f16af05adf8 ruby-2.0.0-p481.tar.bz2=ea406a8d415a1a5d8365596d4288f3da ruby-2.0.0-p576.tar.bz2=eccd42d43620544a085c5e3834572f37 ruby-2.0.0-p594.tar.bz2=58469c0daf5f3a892a70cc674ea59c7f ruby-2.0.0-p598.tar.bz2=a3f3908103a7d209d1d1cf4712e3953c ruby-2.0.0-p643.tar.bz2=1390888cac6cd175e6f164eff378cdde ruby-2.0.0-p645.tar.bz2=d576240c97cfcc3ed9bdc457eb1e8280 ruby-2.0.0-p647.tar.bz2=27a3ea1a8b8bca1a6de43a7d08e88b69 ruby-2.0.0-p648.tar.bz2=3544031334f4665aa2eb1414babc9345 ruby-2.0.0-preview1.tar.bz2=47a0f662f0e258aa1c5e429c310861b3 ruby-2.0.0-preview2.tar.bz2=a645a783c3302cc094a9963a5e700a4d ruby-2.0.0-rc1.tar.bz2=24cebdda11e01ff4889ac983cd7dc02c ruby-2.0.0-rc2.tar.bz2=e92420131bd7994513e0bf09a3e2a19b ruby-2.1.0-preview1.tar.bz2=d32d1ea23988399afadbd21c5a7a37fc ruby-2.1.0-preview2.tar.bz2=9d566a9b2d2e7e35ad6125e2a14ce672 ruby-2.1.0-rc1.tar.bz2=cae095b90349b5b0f7026060cc3dd2c5 ruby-2.1.0.tar.bz2=1546eeb763ac7754365664be763a1e8f ruby-2.1.1.tar.bz2=53edc33b2f590ecdd9f6a344b9d92d0d ruby-2.1.1.tar.gz=e57fdbb8ed56e70c43f39c79da1654b2 ruby-2.1.2.tar.bz2=ed9b8565bdeccb401d628ec8d54a0774 ruby-2.1.2.tar.gz=a5b5c83565f8bd954ee522bd287d2ca1 ruby-2.1.3.tar.bz2=02b7da3bb06037c777ca52e1194efccb ruby-2.1.4.tar.bz2=f4136e781d261e3cc20748005e1740b7 ruby-2.1.5.tar.bz2=a7c3e5fec47eff23091b566e9e1dac1b ruby-2.1.6.tar.bz2=e1a8e6c6bfbb09bb7f8d6be8f508e4a1 ruby-2.1.7.tar.bz2=3a878e98311d543e5de3533b82ef4a5a ruby-2.1.8.tar.bz2=b17130b5f02a61640ae3b629af931610 ruby-2.1.9.tar.bz2=62bd1cbfcbc22e4d137462bce992f6d1 ruby-2.1.10.tar.bz2=5155c624807ff2418a9e9f15202954d0 ruby-2.2.0-preview1.tar.bz2=767b132eec3e70b14afe5884a7a767b1 ruby-2.2.0-preview2.tar.bz2=d7abace25a8ffe861cb2807bef1c58a6 ruby-2.2.0-rc1.tar.bz2=7144732d30dd4547c0a59862b3345d54 ruby-2.2.0.tar.bz2=d03cd4690fec1fff81d096d1c1255fde ruby-2.2.1.tar.bz2=06973777736d8e6bdad8dcaa469a9da3 ruby-2.2.2.tar.bz2=af6eb4fa7247f1f7b2e19c8e6f3e3145 ruby-2.2.3.tar.bz2=f49a734729a71774d4a94a9a603114b2 ruby-2.2.4.tar.bz2=c3d65f6d2ebe90dda81a37885ea244f5 ruby-2.2.5.tar.bz2=0c7edd1ff3650c3b74da2efaf641bf34 ruby-2.2.6.tar.bz2=3d13cf447142b8a11cd9beb7bc63fee0 ruby-2.2.7.tar.bz2=ca7224d80c08b015bc3b8c226d0914c3 ruby-2.2.8.tar.bz2=054d2e2904d5175662293e29c3bdb927 ruby-2.2.9.tar.bz2=575adf8ede6b1ca7236a5341e73536b0 ruby-2.2.10.tar.bz2=bef1909a4c885157870ef69548cdad3a ruby-2.3.0-preview1.tar.bz2=776000d74ec6dd34bf355ff6921c8311 ruby-2.3.0-preview2.tar.bz2=3ad442ccb337e77e4acaa4113f25b76a ruby-2.3.0.tar.bz2=f0d9f9bbdc87372ca98988a571875819 ruby-2.3.1.tar.bz2=c194281f63d7fcd816747fe78474be5e ruby-2.3.2.tar.bz2=9d00f3772f1c8fa5eecdfea089e3032f ruby-2.3.3.tar.bz2=04b9c461a2bc1eec0535ad1947cad4fb ruby-2.3.4.tar.bz2=99961e97566aee6d63635e2da4cf73ac ruby-2.3.5.tar.bz2=e1efc3d5a948ca1f552005efe5925513 ruby-2.3.6.tar.bz2=b2443b11ee80319a119f7ec0c9b8d79a ruby-2.3.7.tar.bz2=5eb580d5cd13ffb5aacfb96580c0043d ruby-2.3.8.tar.bz2=78045332e298dfd859ceef9fe946950f ruby-2.4.0-preview1.tar.bz2=64b8983b5f53d053906e394f734aa296 ruby-2.4.0-preview2.tar.bz2=1074e8dea5baa89af7f7c2d1d2b9ebaa ruby-2.4.0-preview3.tar.bz2=9f767e6bc61830735ea7dc9cd5a63653 ruby-2.4.0-rc1.tar.bz2=0f8b665acf4e883334adc121a42a206f ruby-2.4.0.tar.bz2=98f29161860fe1b6c65396717847a358 ruby-2.4.1.tar.bz2=07b2ae5d2f46321c95b37066c8415900 ruby-2.4.2.tar.bz2=5ff3ad6ec816bcce8806a55090936ab6 ruby-2.4.3.tar.bz2=ac8215ba561cc7c79b4f61daee11b706 ruby-2.4.4.tar.bz2=d994274eaa95b82aa5d31ec2188253c6 ruby-2.4.5.tar.bz2=45d70a8bb9397d818795ffe992163d27 ruby-2.4.6.tar.bz2=4abd13c50c1fc273a0a81a0ae74ed39f ruby-2.4.7.tar.bz2=1ce166ced489908993d78e8bb68325e0 ruby-2.4.8.tar.bz2=396d35f1a2d1deaf303f59cb5245d4ae ruby-2.4.9.tar.bz2=0b3447370651df55a2014a170c0cb1d5 ruby-2.4.10.tar.bz2=b10a7d2fcaf218c98edbaf57efc36e58 ruby-2.5.0-preview1.tar.bz2=889454189f41e271ae5ba15382911b6a ruby-2.5.0-rc1.tar.bz2=f5acdeacf56aced3c00ae6a8fa816bbc ruby-2.5.0.tar.bz2=63a6cd49546783d62de25a0ffc4aecc3 ruby-2.5.1.tar.bz2=5aaaf2fb4893214fa316516f3ac43519 ruby-2.5.2.tar.bz2=e90ab127e2ac3ee1d8840835e8ba1f13 ruby-2.5.3.tar.bz2=49aea0bf56d25351ccaf938c642400df ruby-2.5.4.tar.bz2=0c923215470f1debe593fe21e66fd37b ruby-2.5.5.tar.bz2=8f41b5cb683d48b5cb6cdfe03d135d6b ruby-2.5.6.tar.bz2=f2a74416ab3016434896194120796f04 ruby-2.5.7.tar.bz2=65597b69aa54bdca8745502c10349f96 ruby-2.5.8.tar.bz2=9ec96e7a590ef801ede294b6184c9c0f ruby-2.5.9.tar.bz2=9e905a545a729af1f1620ddfc2976fe5 ruby-2.6.0-preview1.tar.bz2=1ce507e27fa02aeb36100dabcf1da94f ruby-2.6.0-preview2.tar.bz2=e45011116334d21857b9e1712a01e6b3 ruby-2.6.0-preview3.tar.bz2=b326ceee3d3756f892515009e148f4b2 ruby-2.6.0-rc1.tar.bz2=40457a72e36cbecd0c51d9f895347302 ruby-2.6.0-rc2.tar.bz2=9665e6d886a9da2d4076fa75836798f1 ruby-2.6.0.tar.bz2=d3372daec93f83e7a91c669821053014 ruby-2.6.1.tar.bz2=73d19ac478db1a178be5ae2f2fb8c9ec ruby-2.6.2.tar.bz2=658fcc0da15578c2420ded807b11cce1 ruby-2.6.3.tar.bz2=52e609b756735115814b9c8463f185e2 ruby-2.6.4.tar.bz2=d9b35753c65f54c745ab6b0094511839 ruby-2.6.5.tar.bz2=d1b89c88effb71d75cd7ef77c35e1985 ruby-2.6.6.tar.bz2=abc030870bfbe18ae9c356abebd95cb6 ruby-2.6.7.tar.bz2=46f24740181f91247c72f19d52334379 ruby-2.6.8.tar.bz2=c53761123d17e929cfe248f50429bcab ruby-2.6.9.tar.bz2=ddc24495adaf215c8ee40630b4a55041 ruby-2.6.10.tar.bz2=6ad76db639ab308e3b6c19408729a0cf ruby-2.7.0-preview1.tar.bz2=82fab0496947acd847a6b2eb758acfc6 ruby-2.7.0-preview2.tar.bz2=966a544ab59114591898403c23d91397 ruby-2.7.0-preview3.tar.bz2=2fa6c213774744b287e7e0212b43f626 ruby-2.7.0-rc1.tar.bz2=48a8837cb352f5b95e97a1ae0d62a9d0 ruby-2.7.0-rc2.tar.bz2=cca58fdb8c5e8be8273842d54199c42d ruby-2.7.0.tar.bz2=89347748b7414f5bc7aeb8f4a87ebef4 ruby-2.7.1.tar.bz2=4bb2b2b2f0c6953859e30af140cf249a ruby-2.7.2.tar.bz2=a8acc9c24708fe29dfc287823ecaae65 ruby-2.7.3.tar.bz2=604acb258b1d8228f55799e846cfe6d3 ruby-2.7.4.tar.bz2=52705d799ed851dd3bfd5634265cde46 ruby-2.7.5.tar.bz2=d97d4377eee18b0e790510c3afed648c ruby-2.7.6.tar.bz2=1b6efacb9f129d0253d8a9faa9c21f99 ruby-2.7.7.tar.bz2=63c55e75150251d3ba092b662138e4af ruby-2.7.8.tar.bz2=f44dedf51fdb7441a7dba592d6a4a14d ruby-3.0.0-preview1.tar.gz=991df063b86a8f8412ca07f548579f39 ruby-3.0.0-preview2.tar.gz=ce14b24e923f2e269fea6441791a7248 ruby-3.0.0-rc1.tar.gz=848a8628c8abde270b66e2474049a4a3 ruby-3.0.0.tar.gz=d6af36269a1b0bc278236d371543ad97 ruby-3.0.1.tar.gz=8d1c460a9a9d48a353de3eb0f338bbfd ruby-3.0.2.tar.gz=b973af486291a1e17ad50d88472bfa86 ruby-3.0.3.tar.gz=9ecae293da9547c1438a970f04f64655 ruby-3.0.4.tar.gz=ec9de9a15acc4f205b08816d94267415 ruby-3.0.5.tar.gz=cdff2395625dc1d632fc5400c8fec103 ruby-3.0.6.tar.gz=6b5a7b14505697e6fc2b40b345679f40 ruby-3.0.7.tar.gz=147a3467facc704b5d479e809c131603 ruby-3.1.0-preview1.tar.gz=d131b9bca700ee87ea276f8233ea4c0b ruby-3.1.0.tar.gz=1ca89d713f2c18a20104befed51b3b9a ruby-3.1.1.tar.gz=702778a0ef8b7a01ef7530a541002e19 ruby-3.1.2.tar.gz=9daf064899cccc32fd564117c7a7e0dd ruby-3.1.3.tar.gz=cce38a2b2c589d59f440f67c7d8cc697 ruby-3.1.4.tar.gz=3e601ae6db76a487219a1084e5cb4c9c ruby-3.1.5.tar.gz=ce1e92ddb1230fa2d4f4367882542555 ruby-3.2.0-preview1.tar.gz=a83c91d53e130fe232e4c27ecc8738da ruby-3.2.0-preview2.tar.gz=56e7801b37612b82285c9a09cfeb28ce ruby-3.2.0-preview3.tar.gz=0ed16faae50403b4e2ba2e85ec2314a1 ruby-3.2.0-rc1.tar.gz=4657d7013702adce21ca21dfe71ea4a0 ruby-3.2.0.tar.gz=76ca7e7d71898ab1e85155d69403754e ruby-3.2.1.tar.gz=055101c924538467c63fcbf42abddc75 ruby-3.2.2.tar.gz=eb6f18605e1e1be5dfb5b45f31bf6a93 ruby-3.2.3.tar.gz=e0ba90554f7ea41c587ffa7fcfd064ca ruby-3.2.4.tar.gz=c48283a23c72d7aae19b7f510b89444a ruby-3.2.5.tar.gz=3bd6f2b26918c8637abf56c2f208833e ruby-3.2.6.tar.gz=fa9bd65bc429a43a3e6dda8ff0b97022 ruby-3.2.7.tar.gz=c72e290d57080f828156b5c24fe8e4ad ruby-3.3.0-preview1.tar.gz=0833f555b1b8d5423953600fb4146639 ruby-3.3.0-preview2.tar.gz=4f82f4c9e512ec0a53baa1be8d35ebf7 ruby-3.3.0-preview3.tar.gz=a32ede198a9da50d4afc4421a4a993ad ruby-3.3.0.tar.gz=f57422a0f995cd5a93c726f6c42c310a ruby-3.3.1.tar.gz=368e331a35145ace4948390ed76cf1df ruby-3.3.2.tar.gz=9a7efebc6a0e4810c716ec6d401dc372 ruby-3.3.3.tar.gz=beb9773cc4d9d8da29463ab175e4db28 ruby-3.3.4.tar.gz=f2e16c1a56e07e185214e85c62657941 ruby-3.3.5.tar.gz=ccad73b02d942d1e6b4c27873d4c08e4 ruby-3.3.6.tar.gz=51bcf91da64e5889e2e59c7adc7189c5 ruby-3.3.7.tar.gz=5fa3e653657d868e2c8377d2f3adb335 ruby-3.4.0-preview1.tar.gz=93b9b1040a2dd7be7514a7870aa7da03 ruby-3.4.0.tar.gz=2acf769caa47f692fea932ab81e75639 ruby-3.4.1.tar.gz=43e587b9a6de2a51dd1fa2613615542b +ruby-3.4.2.tar.gz=120907785ecc0a84521e924cbda66af9 ruby-enterprise-1.8.6-20080507.tar.gz=17e3c52e73e42809f57ad0000a6cb4ab ruby-enterprise-1.8.6-20080621.tar.gz=626fc3811eee2dc92ac27ea63d37a8b2 ruby-enterprise-1.8.6-20080623.tar.gz=0bf8a3a93c6b37bb1260cc09b05e81fd ruby-enterprise-1.8.6-20080624.tar.gz=de58b97128aa65209f291c66eab7c4a7 ruby-enterprise-1.8.6-20080709.tar.gz=f0ded08cec64959fa388ec6a237b9c47 ruby-enterprise-1.8.6-20080810.tar.gz=bfdcf06f437af825cd9f2d321f9d1896 ruby-enterprise-1.8.6-20081205.tar.gz=50206bec9be2e08a862e5ec2e70fa693 ruby-enterprise-1.8.6-20081215.tar.gz=aab57b7d5061c1980bec5dbe311ec9b2 ruby-enterprise-1.8.6-20090113.tar.gz=e8d796a5bae0ec1029a88ba95c5d901d ruby-enterprise-1.8.6-20090201.tar.gz=a965e6789b553efaed72191825b13713 ruby-enterprise-1.8.6-20090421.tar.gz=c777b361aadccda7988be16ede7ab15f ruby-enterprise-1.8.6-20090520.tar.gz=156572a8296bd0440970a6bb95018a13 ruby-enterprise-1.8.6-20090610.tar.gz=0bf66ee626918464a6eccdd83c99d63a ruby-enterprise-1.8.7-2009.10.tar.gz=3727eef7b6b1b2f31db7d091328d966e ruby-enterprise-1.8.7-2010.01.tar.gz=587aaea02c86ddbb87394a340a25e554 ruby-enterprise-1.8.7-2010.02.tar.gz=4df7b09c01adfd711b0ab76837611542 ruby-enterprise-1.8.7-2011.01.tar.gz=4640634347cd8e5469cb718853e2112e ruby-enterprise-1.8.7-2011.02.tar.gz=8c5faa11c1ddaed3f44b7294711980cc ruby-enterprise-1.8.7-2011.03.tar.gz=038604ce25349e54363c5df9cd535ec8 ruby-enterprise-1.8.7-2011.12.tar.gz=1e5f3059d52a67ab5d91d472b756de08 ruby-enterprise-1.8.7-2012.02.tar.gz=8d086d2fe68a4c57ba76228e97fb3116 ruby-enterprise-1.8.7-20090928.tar.gz=ae00018ce89d95419dfde370fcd485ac rubygems-0.4.0.tgz=86a64616548a793e1a5f825f0dd385b9 rubygems-0.5.0.tgz=80d151edd94a06bcd2452a7e272b4d96 rubygems-0.6.0.tgz=5df803f5a04654833690dd32283de741 rubygems-0.6.1.tgz=c4a0faa9f876ad805ae80d1396a29d97 rubygems-0.7.0.tgz=ede9b55343219e8b3491793aa12c46f3 rubygems-0.8.0.tgz=9ef6e3c34dcb54e295c8e57321ddc079 rubygems-0.8.1.tgz=6276d268b420c0d61796cdbf6d28dae4 rubygems-0.8.3.tgz=6e6da80f61d6e77d0ad9e531767f6fd5 rubygems-0.8.4.tgz=a2ad2d03dae8a98002c2a7cd6c3ed352 rubygems-0.8.5.tgz=b917c084e1e6e99d8e102af8dd687ddb rubygems-0.8.6.tgz=9de98d2f62e3f91521b0207a4dcdeb5b rubygems-0.8.7.tgz=7fc04b9f9acc0c18cbbe6222be8d0bd3 rubygems-0.8.8.tgz=a8535e9c35a4c215d6ef9268d4bc69ed rubygems-0.8.10.tgz=d26592e280c0fb24c51f2837c3f48e67 rubygems-0.8.11.tgz=aa363b428c4c1fc2e076a4ff77b957d7 rubygems-0.9.0.tgz=5d496e1f415b8b4033ab867f01d1161f rubygems-0.9.1.tgz=a62314cdb174ccc88a27b8924fa79e4a rubygems-0.9.2.tgz=cc525053dd465ab6e33af382166fa808 rubygems-0.9.3.tgz=600940a22ecd79e28e0fd37ad1f1d871 rubygems-0.9.4.tgz=b5680acaa019c80ea44fe87cc2e227da rubygems-0.9.5.tgz=91f7036a724e34cc66dd8d09348733d9 rubygems-1.0.0.tgz=b0b74eac0cbfc5a13f895ab6f803edc1 rubygems-1.0.1.tgz=0d5851084955c327ee1dc9cbd631aa5f rubygems-1.1.0.tgz=85f994904c5b4045f0a859b29d0be717 rubygems-1.1.1.tgz=1a77c5b6b293a3ccd5261dc120641ccc rubygems-1.2.0.tgz=b77a4234360735174d1692e6fc598402 rubygems-1.3.0.tgz=63d3dfc038710eaf532b6a133225115a rubygems-1.3.1.tgz=a04ee6f6897077c5b75f5fd1e134c5a9 rubygems-1.3.2.tgz=6204d0a4c526a1d8fdbce746647b179a rubygems-1.3.3.tgz=0e9697db44d812712350baf28016b4a7 rubygems-1.3.4.tgz=b17b398503253bf36a101c58f02a226f rubygems-1.3.5.tgz=6e317335898e73beab15623cdd5f8cff rubygems-1.3.6.tgz=789ca8e9ad1d4d3fe5f0534fcc038a0d rubygems-1.3.7.tgz=e85cfadd025ff6ab689375adbf344bbe rubygems-1.4.1.tgz=e915dbf79e22249d10c0fcf503a5adda rubygems-1.4.2.tgz=b5badb7c5adda38d9866fa21ae46bbcc rubygems-1.5.0.tgz=49bef7186bf3c0ca6ee7adf4b585bccc rubygems-1.5.1.tgz=47577a5e33c9c6f1e3a56aff7f51d0ff rubygems-1.5.2.tgz=3951f94c09c16c774c8bcebc94fa5374 rubygems-1.5.3.tgz=38bbbdc17aef923fb41f054cf8421116 rubygems-1.6.0.tgz=abd27b5a9002100ff74ddb398a1c9689 rubygems-1.6.1.tgz=a77c64896aaa10d64aaf34f5c1488173 rubygems-1.6.2.tgz=0c95a9869914ba1a45bf71d3b8048420 rubygems-1.8.6.tgz=8e95d0c5b377a003f3d54a49461e81d9 rubygems-1.8.9.tgz=fc399445d693c29778779e5828ee5e90 rubygems-1.8.10.tgz=5b08ee31740c9b0bd36f6c04d537e7d4 rubygems-1.8.23.1.tgz=5259ce3eb7988950fa3aff9051a5de91 rubygems-1.8.23.2.tgz=fb377c7fd387df14a33e529153adc316 rubygems-1.8.23.tgz=178b0ebae78dbb46963c51ad29bb6bd9 rubygems-1.8.24.tgz=3a555b9d579f6a1a1e110628f5110c6b rubygems-1.8.25.tgz=1376a258d43c53750a8df30e67853e10 rubygems-1.8.26.tgz=0ea47f1efd010f4c82b8a51a934f48dc rubygems-1.8.27.tgz=6686ad26735c21d0d6e58b6192c7da5d rubygems-1.8.28.tgz=2df78039f391fb1f71c02c2fc5671c94 rubygems-1.8.29.tgz=a57fec0af33e2e2e1dbb3a68f6cc7269 rubygems-2.0.0.tgz=89ce467eb2d55657e9965a46559acbcf rubygems-2.0.1.tgz=2652ab6f001a873b8933e2ca09505974 rubygems-2.0.2.tgz=3471f140a70bcd32a7495b545cfce790 rubygems-2.0.3.tgz=854691f145cea98b4100e5b0831b73ed rubygems-2.0.4.tgz=3ec32dbe783bab37a87f50758f8efe13 rubygems-2.0.5.tgz=641d82672937d40d664dbc18f49cdcec rubygems-2.0.6.tgz=0633f50db16112bf6c3cf9bfb9ceb9bd rubygems-2.0.7.tgz=9046700f1222712fedfb836fafa08c50 rubygems-2.0.8.tgz=5432214a740c0d13482e43a5328a6518 rubygems-2.0.9.tgz=bc55898247297ffa190223276b1b1bd7 rubygems-2.0.10.tgz=5457ba403cd9a5f4f5fb2ef4a2a1c03e rubygems-2.0.11.tgz=0f28e3fde3348c0f23ceecba73a6cbef rubygems-2.0.12.tgz=99c416517e2de1146d2c6fbb4c4c1441 rubygems-2.0.13.tgz=3970e66a670ddb6d1aade9c7b18033d4 rubygems-2.0.14.tgz=4a7aa0b144e465230ab5d7b59dfd7e8f rubygems-2.1.0.tgz=9a9d242baef5e58fbfe79ec5206cd316 rubygems-2.1.1.tgz=b34d6f4028b69a84123a6b7cb0ac8028 rubygems-2.1.2.tgz=b5c5c4430be60f911014216d41886ef3 rubygems-2.1.3.tgz=ac7bbdfecd49f9304756aa5ebeb51400 rubygems-2.1.4.tgz=aa502b1ea90fbdd14ca9b32634795c2b rubygems-2.1.5.tgz=60564b762d4e186815997653b1c876ab rubygems-2.1.6.tgz=e11237a8f87dbd8c085770551d64a8f8 rubygems-2.1.7.tgz=b721ed7d5fd57ed05f77eb21a3a592ee rubygems-2.1.8.tgz=cc4c84c0482840389a457740e8083ed9 rubygems-2.1.9.tgz=2636bf26c0a9ec889c7bd938887bd9a3 rubygems-2.1.10.tgz=6fa671d7d6605de73d16f529cf7bffb8 rubygems-2.1.11.tgz=b561b7aaa70d387e230688066e46e448 rubygems-2.2.0.rc.1.tgz=f7d80b612339169569f2675155c202f1 rubygems-2.2.0.tgz=3c16e50673adb99d1ce76d5231f764bd rubygems-2.4.8.tgz=dc77b51449dffe5b31776bff826bf559 rubygems-2.6.10.tgz=ab5a0028d2a0653691b29d7463bd0892 rubygems-2.6.11.tgz=8d514b836fcf3ae2c20b4fe8d5cdc3c5 rubygems-2.6.12.tgz=7c454ef88b716c1a123f62b26bb9612b rubygems-2.6.13.tgz=e6f19b51614055d826e431549a12a80b rubygems-2.6.14.tgz=e0a6914ce03b91dfc6d448ebf292f145 rubygems-2.7.0.tgz=771c40015538c0f225c5249e4bc7d441 rubygems-2.7.1.tgz=65646f28f3c36ccaa7f991c17e15b8a9 rubygems-2.7.2.tgz=312a238ed98a61d2b3d165b790b6062b rubygems-2.7.3.tgz=fb3a1927a1842b75677a24f48dd63ddc rubygems-2.7.4.tgz=e9bbf5a4cc9a74293884b91f49603ea0 rubygems-2.7.5.tgz=516a4f219976003feb4b4f797cbc66b0 rubygems-2.7.6.tgz=366cea352c2b1243db726013c3d76fc4 rubygems-2.7.7.tgz=b6721f6ce4af08f68c6f513bbddfe484 rubygems-2.7.8.tgz=a3ed89a34e1ae8f9da0c620a8aa35f12 rubygems-2.7.9.tgz=173272ed55405caf7f858b6981fff526 rubygems-2.7.10.tgz=464754059d8ca01c1121a1233d866e8c rubygems-3.0.0.tgz=3908105894e531f7ad3aceb8b41dcbcd rubygems-3.0.1.tgz=1e8af9b87a67f15841ad2be7d5725a5f rubygems-3.0.2.tgz=d8db1b516ae1e35b8f6f56cb526f879a rubygems-3.0.3.tgz=b7a7dd5f85485334a6cb61b7dac20cff rubygems-3.0.4.tgz=7d0c49077a2d19f48d88567cfa3cf17a rubygems-3.0.5.tgz=4664467d621d719688e4778d147c306a rubygems-3.0.6.tgz=60d84e843b131fb87c8fd67e8fac6470 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=3e9afdf72f153e2f66259fc2b6fca594 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=c30459287aec83548cfcb17340fa73d5 truffleruby-1.0.0-rc3-linux-amd64.tar.gz=138f6814451ce634b0fae3aca5579248 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=94ed54ecb65bea2166a2159431b0362b truffleruby-1.0.0-rc5-linux-amd64.tar.gz=9e5428611e22b093d05afebbe0ccbc2b truffleruby-1.0.0-rc5-macos-amd64.tar.gz=b32a254fed71434c3431fb2effb35c5a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=7f394a8c7fe356b7bd36683c57f74ebd truffleruby-1.0.0-rc6-macos-amd64.tar.gz=f033329d03f1f846d25728c2af9d7524 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=184e98f2d6939f63db4b915943ff60c6 truffleruby-1.0.0-rc7-macos-amd64.tar.gz=d19213b33011f7a55e0f32d25e19184f truffleruby-1.0.0-rc8-linux-amd64.tar.gz=a394167c0331c6d8c1123e1f992e5411 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=dc1bf0fcfdd5837ae0ca56d6d6e5f7b0 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=f6ec25bd532bf0551d35327d1aa4caf9 truffleruby-1.0.0-rc9-macos-amd64.tar.gz=c80a345f9071521cf1961ab75ebc7dd1 truffleruby-1.0.0-rc10-linux-amd64.tar.gz=3a889726efcdf33feb7ef3df13fd5f39 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=bba618b4483b79eebf9f0e7af4078502 truffleruby-1.0.0-rc11-linux-amd64.tar.gz=a25e179ca0be96a1bc737a600729c195 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=bb8d8f5525e1ba86bb039e56291c6c7c truffleruby-1.0.0-rc12-linux-amd64.tar.gz=872774837057489250527bf863192115 truffleruby-1.0.0-rc12-macos-amd64.tar.gz=bb4a64e6c4882fd0c5e412bf9c57720b truffleruby-1.0.0-rc13-linux-amd64.tar.gz=0f36eed2eb36846785fdd4eae24adfa0 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=1bd3087a0f2df4c006b87c9488ada6d4 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=9eddd1aa98c9649e7c01bb10bf28c471 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c93643f1d00b370411310ee7a1dd5330 truffleruby-1.0.0-rc15-linux-amd64.tar.gz=bc7339a6218ea991f2c72ce8759cb6e3 truffleruby-1.0.0-rc15-macos-amd64.tar.gz=1671d08dd2f5026d58b326fd55c9b7de truffleruby-1.0.0-rc16-linux-amd64.tar.gz=5564d17f19b8ee0edb96ab5b1bfbda98 truffleruby-1.0.0-rc16-macos-amd64.tar.gz=61583b529b6a1337398b0966db952d24 truffleruby-19.0.0-linux-amd64.tar.gz=006220c7bde7d0b5c72481133624a83f truffleruby-19.0.0-macos-amd64.tar.gz=9ef7f5a311465d35e54ac6e00ec3d169 truffleruby-19.0.2-linux-amd64.tar.gz=2f7fe574e0695fb6001f4f5282aa2f79 truffleruby-19.0.2-macos-amd64.tar.gz=aa20f76b3eac1f4976a507364201d1ad truffleruby-19.1.0-linux-amd64.tar.gz=71368f8371069017d911528f052b0a55 truffleruby-19.1.0-macos-amd64.tar.gz=7f086adbc89fdfaed35273394ac3ac66 truffleruby-19.1.1-linux-amd64.tar.gz=c1ad4d17bb40e214b124222f3a7c6db6 truffleruby-19.1.1-macos-amd64.tar.gz=f4e76b0612319b4a82480cbd1fc90210 truffleruby-19.2.0-linux-amd64.tar.gz=458ed5fec1a849ef5b00e19b0e25d5e9 truffleruby-19.2.0-macos-amd64.tar.gz=dc324575ad20e3054980835c24ea7161 truffleruby-19.2.0.1-linux-amd64.tar.gz=ad7444145550d89931199159163077c1 truffleruby-19.2.0.1-macos-amd64.tar.gz=b5bcfb0aaded1e2d1763089ab6c9a14d truffleruby-19.2.1-linux-amd64.tar.gz=fc4879d2b0cc22c152a8bf893a72c346 truffleruby-19.2.1-macos-amd64.tar.gz=71448ff3f8f1da086f222751d3f853bc truffleruby-19.3.0-linux-amd64.tar.gz=dd44ac30b5a1ef3a7d61172cda9b30b6 truffleruby-19.3.0-macos-amd64.tar.gz=41daa52f0f308abb77a2b91c1b7e0f3d truffleruby-19.3.0.2-linux-amd64.tar.gz=2db2cb5c29523c9bdb6f59dfa0bd74ce truffleruby-19.3.0.2-macos-amd64.tar.gz=edf1603643938686dce57139aadf7d3c truffleruby-19.3.1-linux-amd64.tar.gz=a14c028351f7a3965bcb56e9b22364de truffleruby-19.3.1-macos-amd64.tar.gz=a8707d0af3eda694ec07a5387d3443fb truffleruby-20.0.0-linux-amd64.tar.gz=b30110ecbc50c4fce402fdf44c45dad5 truffleruby-20.0.0-macos-amd64.tar.gz=0671e5909cefb9a2c12c473fc0110821 truffleruby-20.1.0-linux-amd64.tar.gz=4592b5fc3636d82fc998ab6fe0a43584 truffleruby-20.1.0-macos-amd64.tar.gz=3c0be43db86817c7037d3ff5053d322d truffleruby-20.2.0-linux-amd64.tar.gz=e9859decb24829f9a189d88b3c2e9b79 truffleruby-20.2.0-macos-amd64.tar.gz=49e7ccf8f9e60d6c59b3b07b854466cf truffleruby-20.3.0-linux-amd64.tar.gz=93a20845f7d9d39100761424dfc0a734 truffleruby-20.3.0-macos-amd64.tar.gz=b178b7a94fac58400450417612fe3441 truffleruby-21.0.0-linux-amd64.tar.gz=c03304a505c8699e697acecf5030d95f truffleruby-21.0.0-macos-amd64.tar.gz=019796be37a58ef8e186a625f2ff5d07 truffleruby-21.1.0-linux-amd64.tar.gz=065bfcc48f6925410e0da21e16428b64 truffleruby-21.1.0-macos-amd64.tar.gz=325f6854c10d8a3a114c80da582c469f truffleruby-21.2.0-linux-amd64.tar.gz=0aec44721a040845347f18c1f72ceb75 truffleruby-21.2.0-macos-amd64.tar.gz=76d27715b20902df5779f7a0c00852b1 truffleruby-21.2.0.1-linux-amd64.tar.gz=f68e9b8a9f9cae5efc5ac45a7d9e760d truffleruby-21.2.0.1-macos-amd64.tar.gz=b021e50fc94cab590b49d27f2ea821b0 truffleruby-21.3.0-linux-amd64.tar.gz=359aca79cba4e08f9955d9c6543c2189 truffleruby-21.3.0-macos-amd64.tar.gz=d9e2e2c6fcd3ac16f0c37b0ccffb4f41 truffleruby-22.0.0.2-linux-amd64.tar.gz=324327026e9b2963a8e5fb4ee3f4e216 truffleruby-22.0.0.2-macos-amd64.tar.gz=7029d0e291d498a264d9b413729a3e17 truffleruby-22.1.0-linux-amd64.tar.gz=9329cf507ba8ac529e93156cacc1425d truffleruby-22.1.0-macos-amd64.tar.gz=353242978b46cafc34b05e2c81206096 truffleruby-22.2.0-linux-amd64.tar.gz=5d676377056ae94fe847be721c20405b truffleruby-22.2.0-linux-aarch64.tar.gz=b774f4b7d330842521f1e6e56cb41db5 truffleruby-22.2.0-macos-amd64.tar.gz=e45fdd9a05aec6220a76fb707b0a5ae8 truffleruby-22.2.0-macos-aarch64.tar.gz=ebcbfe056d90d06de4bd0a9d699bad8f truffleruby-22.3.0-linux-amd64.tar.gz=ada8bc5dc52aca8317eaeab04d91e877 truffleruby-22.3.0-linux-aarch64.tar.gz=11493301d5519aa73e8f0e140cefb581 truffleruby-22.3.0-macos-amd64.tar.gz=9e27c677637b69b0460fb0a4569a5cca truffleruby-22.3.0-macos-aarch64.tar.gz=eaa1c9020b521226f8bb48b8c7e5c596 truffleruby-22.3.1-linux-amd64.tar.gz=243d926f038fd2220c03dfbe40ef58c3 truffleruby-22.3.1-linux-aarch64.tar.gz=01487fe680863381489bf2a0a2ac162b truffleruby-22.3.1-macos-amd64.tar.gz=b3d5a777d94856e51034d81076e8ef72 truffleruby-22.3.1-macos-aarch64.tar.gz=320ce75730a5b9f16f111eb7ef5e4e09 truffleruby-23.0.0-preview1-linux-amd64.tar.gz=76c1cb23ee63ba4de93a0c23784bfca9 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=eec3fc74565f08e9468982692f7f9010 truffleruby-23.0.0-preview1-macos-amd64.tar.gz=50e38f3cd548dfe78f397f76ed577bf1 truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=b769bcf9b843d9b2980def1e2139284f truffleruby-23.0.0-linux-amd64.tar.gz=6e1a491406c5dbf42de10fcb3ed7dc1c truffleruby-23.0.0-linux-aarch64.tar.gz=5c3663f64bee707173b2684355a9a42e truffleruby-23.0.0-macos-amd64.tar.gz=515a9a8a0f39ba9399e869cd418ebff5 truffleruby-23.0.0-macos-aarch64.tar.gz=57e5fa52270e692b82c445107fe6b6a6 truffleruby-23.1.0-linux-amd64.tar.gz=f7511c19045e57e72f9b5415bc17c8e8 truffleruby-23.1.0-linux-aarch64.tar.gz=e8a20dd919a2ff77b7cc5457e853d15d truffleruby-23.1.0-macos-amd64.tar.gz=d3b6a3cbc0a230ebae6f3a462a32ddd3 truffleruby-23.1.0-macos-aarch64.tar.gz=ee74fc5d192c2fb8afd0458d2d429c02 truffleruby-23.1.1-linux-amd64.tar.gz=d7e1c040da170aaa36b5f5a1d106d237 truffleruby-23.1.1-linux-aarch64.tar.gz=cf508ba3787be20c03bac690f3bdbac5 truffleruby-23.1.1-macos-amd64.tar.gz=a662a8672871524808500dddef3808c1 truffleruby-23.1.1-macos-aarch64.tar.gz=de543312024993a533e3caa63b396127 truffleruby-23.1.2-linux-amd64.tar.gz=e3e5b01b291d7fea61be2be842c7e8dc truffleruby-23.1.2-linux-aarch64.tar.gz=8fe26f643fa81eec6de3bde7024c858a truffleruby-23.1.2-macos-amd64.tar.gz=83bc41bf699fa847df7e60412bee2823 truffleruby-23.1.2-macos-aarch64.tar.gz=7dbd2e182cfec0cf2d2e37784721903f truffleruby-24.0.0-linux-amd64.tar.gz=202f05706d28faca75d5e3cd0f9bef78 truffleruby-24.0.0-linux-aarch64.tar.gz=4faaf4edde4f6a516246b7c2f4ee80b3 truffleruby-24.0.0-macos-amd64.tar.gz=d07f27e0e29398c6de836b0049105c12 truffleruby-24.0.0-macos-aarch64.tar.gz=10cf176718968893468caba617c02141 truffleruby-24.0.1-linux-amd64.tar.gz=2914bfb81b136cd1fb5736c0a40068e3 truffleruby-24.0.1-linux-aarch64.tar.gz=429e6ada9a95ea23ebb95d01f90eb0f4 truffleruby-24.0.1-macos-amd64.tar.gz=e3aa5ab128f5d169d93f2d6df98c4e77 truffleruby-24.0.1-macos-aarch64.tar.gz=6f81a1afe1b89a40f00c9bd4216ec45d truffleruby-24.0.2-linux-amd64.tar.gz=1a826ea6323a25becce5940d8e6c4642 truffleruby-24.0.2-linux-aarch64.tar.gz=45429f35653bd8cbc328eafe81d15e8a truffleruby-24.0.2-macos-amd64.tar.gz=f68aeb26783d048ae5f78e1c13739747 truffleruby-24.0.2-macos-aarch64.tar.gz=df05f94696b4f4584a259001a3d4d1d0 truffleruby-24.1.0-linux-amd64.tar.gz=14aa05250088f17491072e500c22c039 truffleruby-24.1.0-linux-aarch64.tar.gz=3e26495f8aa7b810ec5794a69e93483a truffleruby-24.1.0-macos-amd64.tar.gz=53b6251cdd359176f9e52fe05f05e949 truffleruby-24.1.0-macos-aarch64.tar.gz=28d61b8a1a307cbdf988313c8a1f77f1 truffleruby-24.1.1-linux-amd64.tar.gz=9ef530c2ac5f597100e69e4b374182c3 truffleruby-24.1.1-linux-aarch64.tar.gz=efcc6f5c51be84d2ec99e6cebccc586a truffleruby-24.1.1-macos-amd64.tar.gz=11e2f0f62c55fcc8330cd66393abb1fc truffleruby-24.1.1-macos-aarch64.tar.gz=eaba15df3e46cd3976bedaf6f086aae2 truffleruby-24.1.2-linux-amd64.tar.gz=ada406523c5cf80f7655a9314902e2b5 truffleruby-24.1.2-linux-aarch64.tar.gz=5a5dc457002a8a65b21264efd0387d5b truffleruby-24.1.2-macos-amd64.tar.gz=cb6142250e4b0b2b164ffa7ce47d5f29 truffleruby-24.1.2-macos-aarch64.tar.gz=f73e0af905cabe695b0fe6c73df699a1 yaml-0.1.4.tar.gz=36c852831d02cf90508c29852361d01b zlib-1.2.3.tar.gz=debc62758716a169df9f62e6ab2bc634 zlib-1.2.5.tar.gz=c735eab2d659a96e5a594c9e8541ad63 diff --git a/config/sha512 b/config/sha512 index 3a49344..730b804 100644 --- a/config/sha512 +++ b/config/sha512 @@ -1105,660 +1105,661 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.1.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.2.tar.bz2=440f27f682a7f9d2a99ff8c0687c1fecebd8bce494b9db48ab9d303250b8ea12dee51eed0f68d940f141d8e2699653fca7d2a6811eddc5c512a9fe39430fde3f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-1.9.3-p392.tar.bz2=3582744ce4a4ca8b497c918e129823167e80909367d65484c2a09a8e6fa185a38bfda8c1b6676742acb492472d0687fc5b6eb18965201e0f54268d835f618df4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-1.9.3-p551.tar.bz2=fc04b976fa02fc5c1cd4ccdd49948b5e289b3a5bba16ef99266b65fbb35f0c20a0ed02d5b147f2fc4469db6a7b6665d34e0373dba242ff04c95fa27642cfde1e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.0.0-p648.tar.bz2=7dd451549e9c1a43ef86be51eaa746344c424d1accbc9cfd360067c3aec20db8ffee277e1108d40c280f1b8ec0851c6e51bc448f25505508d9af153878d9b091 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.0.tar.bz2=cfe087a9daa6de2ef00a6501d568a25a3386da730304697e1bdb9fbb098617a143f073e58629876de4f09a1e8a60a48ec05864fcbccbd6733d9e1b3d309a1100 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.1.tar.bz2=b74cc64103a31b9b9545474fe202ab9f9b15569681262438056865e4dcad08419c44bb696c7dc8a18f72b3bd8e5e98201d0c3608ea652c907372c3c95cb7e16f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.2.tar.bz2=fafffbcd24eb3c55c89704e6e8ea48ad6be286bbb4e38f56c3b3d61f9bf4f6bec28882da2ff60f17f79516476ae50cc4cb8c6a8cf4a0f31b910d6153727caed2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.3.tar.bz2=4daaf8bba3a04d46e04720ff2af1469e1caa68168f5c27d1d3e0cab922055b1f9c0b26ee64c3cb46c17b6a9651ee7a11bad19e9414102455e96454f1a7929408 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.4.tar.bz2=988c13e900168b901a3a3deb4bb96e19b15205cf4c2793b56854b58924fff652946a083be6615b2053fb5285df0fd218d1f9f91562798f0386f0758973765dcd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.5.tar.bz2=c7396627e45d8df68b18c2491fa756085aeb4ec28c1cc707617cd903fcd47d4fdd3cd6ed225dccc14497afb14200b9bea5ba38f1e8dc621c4aea8b8f0f1ccc7d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.6.tar.bz2=389aa514d93d165fe299856a5348b1667f295aaeb49094bb5ff49e9c6861bac603e698c36bf81777797d05a1d3c405e37c1a00a4dbb85f262bf02c1b0e16ff04 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.7.tar.bz2=5a38bc1dd227658347114b935ad66e27fab67b8da9529a7f9083d6aac5743c40aea8c33ca95d4f10ed1d56f29bcc2c0747a3e88b87425a5786245792d8851301 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.8.tar.bz2=44e36e4918ab4c354cacdd20be30acf12f060aab808172184251186758f750ce688eef72f39ea110ab6429fbaaa5a792b1915a5c2d845b6e22a3cc4bc851c6b9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.9.tar.bz2=358f12ae2d4e177a080bbcde8b275691418884eae9a42c98161170c7b0f6029ffebf7ffad27961bfc8a50a393796934a2dd2c7f0ad2a35992c35dbd6c8c6349f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.10.tar.bz2=e7e98be6cf658eaab81486360f4d5d22f86805582feee4aa11a8e2fe6b461db69b850c7ea98840af0811910be7f534317ab5887bc48f47a9591b65fa7262feea https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.0.tar.bz2=307ee69b3051fcec2942fce075232a62f6adf6486239a89fab7bd63a9bf068e36371e67a5e42f86ed60e31b8219ff431c2d4bcf519b2c10393504942d2d90a9d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.1.tar.bz2=a0a30a805be9c43cfe52793d103e9f0dc6076d02b0c5af36d650564aa43958164a278958f7a7e1132ee5d3357cdcfaa8d59a4cc0bab027e288d935a44958b743 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.2.tar.bz2=d3218d01a18f5dbcdb65f216469a463215784170d32110f06372fda6325bc17e2c2aec1601a5bf3319ad753b123de056e6bee8aacdd7c64c4859570d40571ec6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.3.tar.bz2=4fb3bc10aa46a85cc37fb041d351b2a8f74d70c3de32fbceefebcd6e757cd8dffdfc86cd14fa6ae7d5273f875e1d4e13e6446b6dd1882c8fb015d1d34ab5ed2a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.4.tar.bz2=a008439e903b1e97eb5a66a88cf72c2e7438b12b78750411ba0ffa496c68beb8cacc2037763be1c8c8841fe9a248d4be0d0976420db0520b4b8456aed5480f3d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.5.tar.bz2=14573495aadfabb81b985aa485c0090a816f459a0db8e790a7d1bd948897cf650fef4e8aad7d2ab8232d2ebf56bf08363730dbbfbc2318625dcab04d3904b3dc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.6.tar.bz2=e915bc10ecd1129d7ed55a12fdefdd6b6fccc281cb3cc0790e5970978f17652068ccd7fdc160608cadc8556abb73a2c187d041899adfcfcb4a311285415145ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.7.tar.bz2=d80b934273b84d7ccc4e17fa07c9e0a0f95cb4a38224bd60ff73772ef7ecb3d1974e686bb10aa319642709e49789c0886f98f4fc1ccc5312a19ca19f03674e7e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.8.tar.bz2=9bf0cc35deab5f53900bc8e8264dc1b57f91a3477f241848df48109f4b5c97f3140470f523fa768a7543c61cdb7a93427866d871d09ebf8060a5cb75ac6d3790 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.9.tar.bz2=0cdefbcc88c5b9d34c08c8871c548772bd473dbaf54738f9855afddae8da5eecda607b36c546077efd0165114da385cd1f296433afe411f57a524fbff0a69291 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.10.tar.bz2=3aed1b12ca46e34fce66ac23bdd97ef815918275d91ca4723f9a6f2a2b93cb2b66f845747951593eaaf078bd0d982e06efa7641fc3e11d141b7605b086f93393 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.0.tar.bz2=ac6a699d5d08b33e7580a24c9357c0c8e8378208fc7385f5582f088a879f61e48a4654d72f03263a1dcf33fb0838b01c8c21fd39c5e2549d683466e0441381d5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.1.tar.bz2=77cb7698c66ccede33f558f6ab9ebe4be3b775a567d1d4dc12fd85d7b0f28d7bd446b18ef48ba1c879dadd76b50540b57f283e9f226e904e620afc3ba6585bae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.2.tar.bz2=9592c8e2fd9266f5d1cc780706f558e15d775cece995f5b6e933c54be7b7f2be2839b28ef1898b2072c5cdce36b830e72f967062ece4393765f8dbc88c6dff88 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.3.tar.bz2=8243575f30eb38409003b0450ddece621a589e29a4ffe219410820bc2afb97b7daec4c81d59d95dcfc83138414a2df707c925f0eb56907d565dac4bbd5a929d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.4.tar.bz2=ae16edab6e55d1b2506c4cb30d836639035a7fc153511125b578d6da8a8b40cd87650855fc6b4cf777c1fa0428c593325af88d9ad25d53acfbde0051a730eaa5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.5.tar.bz2=10f4aff595d12bdb425eb3268c868e0efb92059e6aed8683fefa5abedc1ef21d23a45e17802edd8e5e0924ba1c3277b653c0559ef4ad4c9dd2be2fee17226f8d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.6.tar.bz2=bc352df203155008da7a1099f7f7d26eb9f80e0d2e41c8adec5eb47f976529c6126bccc207563de87ccc2867d1e4c43797efbf295c9a7a4afce002ee19116074 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.7.tar.bz2=d71dc217011d154ef7b33780366bff07e4232ae77321ad6d16f19090f924ed3867c31f2af4aca4ffbc6a536b0320b676716ffb43e34b0323e81eafab13f17fa1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.8.tar.bz2=aae74010426e2a1288280f3611ba6aac842ff573f9b122fda9a4f1c514e09cb3d22281e6957b4acfcc753c94113852e083a9a80d0cae6b33682b83669c475eab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.0.tar.bz2=4a083c168d9facf3346b67dde02d9705109feef6fcd4e3c7c59c2bcb35c83597305e09ee143915fd993799a888d6d9ffffadb386bd57e9477312566dd6164deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.1.tar.bz2=58b30b00156691de2acc5d21d3255029fc3f9f2536e668298ab160d300fa0bf3eb0705aa524c9123ff09d770807cda0154bae012632b7e87120d7538f844560f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.2.tar.bz2=4c3c586765fd5afb55383d16eb9d0e7ffa5b1ff988a2b1d847e3f972a211b2401f035ff6c02d71de558cc161655438727079aafcc8ab80c97e07e16cd7fb1304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.3.tar.bz2=e66a4ca4b95496964ff4d77e36caf0894d913c1116f901c9b589da5a0e388302b64a79ad6acfe7eb1ca5917825bc0f866b482f074f1d5fed96d91e238f7ef454 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.4.tar.bz2=f95eee611be949327224b89942f4344e7d8e075b958ce3418b5874e9b23981113e4fd58254629fa9f6c2fdaf5840d44785ecf5f04433987f8fc4415df5c3e367 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.5.tar.bz2=447b28420be5b19f6b1381d232920e3c20bc894c2e0d1d2e394cc44e7859d02d177ec3ee09ce96e922f55b7fe2651918805f00fb783af3780e5f25c21f330195 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.6.tar.bz2=5f60bde5843fdc0b05bb852a2f1b30ce085dbcf7acaf105d5af951398b845c766113ff3740d44585ce3814b4953c004230eb4dc2ce8746b6236ea4b7a1d1cb10 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.7.tar.bz2=929a03725dba7de8d7eee3fe8987b858b9b9d6d377beee710af5c3e84b02501996444aa7b2c1db458aefc3e765da17cd17ac30fb0b4d77ab1e54239e72fa2a63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.8.tar.bz2=227849b5809072b3aee211125c2aad3e2e4984e9d9b4415dd8c01dbff70eb9c3758c3cf54f2b97fe282f7a42f205a2becf7b86e1e6ebb4a4d048ca32659603e1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.9.tar.bz2=c15a46ba1e89cc41523a21eec90d4e3af5b9739d27c2f2b51047f2c1db832e2773cbc04871a176f71e7124eb3f7b53262e40a1baab87262f8811a8d69d8e5358 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.10.tar.bz2=b83334e272e78995b699de28bff67accfc151cc7fb193d5c5746fcf06087643564b3a0b538cb64f50706642a620dba2cc54191357321852db42cc8c5648270df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.0.tar.bz2=82038a66827fbdaf60f404103b3956ead4e03c999893f0095109e7d853919992cab615f85cd96ba9158402b2de5a68fcbdb8b32e9d07c6f754e0591f72851b40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.1.tar.bz2=31e9f176ba61480b33b7761d2a19119a200ad61c8f85145f736eb196de50babaf278d023b274274c6a31f2173c5d022bb93e0f8d46a88223659d8ebcf6f5e278 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.2.tar.bz2=75d25fa6dc81ce8a62d02adc2e163e7c222c5946116c4880cec19460e2309457ee1a11a8eac94243ee8437514bfbba9ebee939218b6ccc7e5c1f15b673d432e7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.3.tar.bz2=84c93c85aa3733f2ac82e695c19e714ad4afd096edd6abda8a4915311d1f604453fc3fdc290c6ae1f9055d305ef400f8f8f152c5e15eb230baf7cfd5e192b7fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.4.tar.bz2=131b874ac376f42f3427dcbeb0adb0edd18ece834514ff5cc15f3b3e29b8f14697050051224d7ba2b509d428f780c653a4d7101149b8ded41ae373aab871e90a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.5.tar.bz2=f55d2ff7f2eae4d30fbc14226c928d1caff21db1f2cd559d3caeb0c07a7a3f034fa369d95f783e6f38cecb493d99aa1928def9d8574698e3edea3d33515749f4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.6.tar.bz2=06b12b2a1e85248311cf55620499806078b3b67110fb45dad9cb11cbaf1e230ce8a0da23c7de0a5abfccdeada8eb799f038b1a09980ee9572ec415e24fcf8c76 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.7.tar.bz2=49128b7845954f1f04502a484f17d5c0c6ecf8990047f5a383b2752ea9e09839e5994b210c2f60307d44ffa8b440472116fa1231ea899caf639e1b8a72f7f97c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.8.tar.bz2=24290aab4e0d48719659f8c1153d2b08020f17ae845e9ac6d6b6d3203e4a5b19061e907a214e8d4390277584ff4b46dd4a0113c6b201fa37e8a95c42fab5aea5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.9.tar.bz2=c2771d6b12f4240200926b2c40ec1bd3058c9ef213e2c6032e44799fa34b75b00f2564a0f7c0d9f972870d34c7742174310bfe3b15e2742a17ba2fa05e5a27cd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.0.tar.bz2=1be48c38da41f462c23d516f465ed34e2fe90c6fd53ee06f1efc9107077d9937413bee589d5d3384aee5c09da7087fa84864a50089bd1cf3c385ba3399e9b0a2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.1.tar.bz2=b7e1204e0e501312828ca0e30b77434b2d8d94581627196f0195ba93fb10a11046d44942393bd8a261585c564bc721313152a9087aa56b57b433ed14cc7922be https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.2.tar.bz2=e91a187a9e726ed26ddfaf09cc49473c8379545e2265934fcd1a1fa78ba99f9a119fe2c3c8247eab583389c3af7ec40a0e71da19f6ecc17ffc086759cebaaa15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.3.tar.bz2=77d9be5bbcd115131ec7c842a4449729d1515bf2106a6a235472dc96b58a56873c2d0fe6a3b824dd15ad00194b30e72a75813d8b4e10ee11cc793973130e2401 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.4.tar.bz2=a2e5409a1a88557bef747ca9b1ea65ac90e430500a8f9370023b4314cb5d1e0679a1b03761980ab2e933ac3521188e2151e521408e33cb4dde5f0bf802d81a41 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.5.tar.bz2=ed6288a4d81a740d722b43925db8f22f794cc704bf834a1f9c844e2072baceb8938547abb8f4fb1a50f92c34a8616904fc2679a44bf4adec4e78ce00e8456b45 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.6.tar.bz2=08cda5ff00b9297b46d1fb620301066b21240951924337b8b87d27526e55024e61121e51d9b35feea2ac5eed4027658b39ff487195140e7abe9158181c3349af https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.7.tar.bz2=3cc5695814c4ca49b6a0d7790093e85f5a359c5411618a12e60f4bda75c3635b94736762983e287cd04ce3ee3155d824bd9bb202aa929f85387a741d1685dd06 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.8.tar.bz2=91e371298a6dc1083c8b6265cc8d3d388d17a21d59e0103bba7e68640f80bdd12b98547584b1cd0feb7f8dad6ad530ef5660a154075960e1a76061d534609296 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.9.tar.bz2=7e3d0f7f42d644cf4eecfd88801afe088260d5fc8f490895378d5e4ede76b2bd67959b9803db59f7b19287801df43eba920885aa1bcd29f60d225745d67093c0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.10.tar.bz2=64683129da9a476d268ffde06bd7aa1c67b3c7c97b539d856833ffb127f458a55176d8b4a101e60b18ee923485097f3bd98e8216c3092c3d0527f6111cf7a051 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.0.tar.bz2=cada908be34428bc2f302bad6ebd778a2c7a8e979476e00e45c9444b65d7f48f397b838549d56ceb91f0e5593ffd663e9facc4ea5f5c6a4aecda85a5a1136496 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.1.tar.bz2=06cb5f2f0c0941802119dbdf34995446d6d69ee59eed9a5e9d7f9e7f0e14de440a9e77eee330357fa305e81ee39a6868651c740ebc91bb9a2085a74b33685f4c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.2.tar.bz2=23654c65e6e62354857f86098852af0ba50a15643df5e7f6fc8b710e35a3872f6eb7dc1bf9266375361f696d8ded0bcdb9ee9acdc8d0c975955d299292da7e21 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.3.tar.bz2=ac02a93a62c55a2a10dc260cd52749bd8f4bcf1a2d43dad3cfd2e5c0bf7800c51a5b00779526d84f759f6d50ce673c7f3e526392c4ab68322649f4fe980f2ac3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.4.tar.bz2=88651ffa2f1623ca3b93b60a591e828ea0dcfc73daf1eead2629531beef291331f8ed1a4a33d682828ca60bacfdd7fea77bcd67f1a0bdbfa9d1e4f173da53208 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.5.tar.bz2=001486271268cd1d2252f46b32001b25d493bbbc8ce981ecb608eaf8d2c2e6d6361f6d9bf052b9b2d7694e228bc302a1082689f2038564439705fbecc00de1ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.6.tar.bz2=a48c974f341cd10143eacf46a9d0eef45cfca3ed91ebc9f7fcbba73d408408eebc60c55e15dab391bc4a9ada6777e2be3ec4b9e849927c5782f4443a813a6ea9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.7.tar.bz2=b9e99d1df4a772441edf7fa4e05dd5aaa62efcc5a8c89fee68aa80c4bf1d17ad0e5ecae5682a10d2eb0ff78ee79c583f0cec46f5ac11ae874126082b9f8d76e4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.0-preview1.tar.bz2=8fe71fdb37955b031769359dadc5062b6c15e0618fd8961c932212a6a2610829aba8b1dbdcf4bdcc2e133665e043b29088f714874e3ef3a41d688b7beba78928 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.0.tar.bz2=c51f55af33e09ed425715dae0dd59dfa253e909bbd44b4bf3dc34452656438c23a754f6b2ccf0a3e878463519043361dc7ad8a757c87a3ae0e747599547dc7cc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.1.tar.bz2=fd09a4d721388c2b9f2fd09b68175dbd620e11df02ff7cea4e438d3205494a9883c25def06d6c1ae4207e7f82bc48fdd122fe12630bb9af9da451ce6be19d86a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.2.tar.bz2=2ade19f26f6e2eaf65a8ac3e9ca21cc8fe04252df58f9b14c6d0f92aba3c0eff27b1c68b1b05041496c367051e020dca7b0c64bf44fb07b4fbdee9e68b78fdf7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.3.tar.bz2=11d81f71ec3d293916bd6a00d28dfbcc93e721d12c6137fd58febb79e7399f8fd1ab5a66915863311db9539009dac06612a4b2daf0408fc1f1e84db8f8f4fdb8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.4.tar.bz2=bff3db8c69e85d503bb0686644f2d60b97c599e0cacbdb7cd4b18d630c50d04ed0dd90ea97be01c3b3220589abefc1e4dbef39246860e3c70993f0f2de738053 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.5.tar.bz2=32f69f0e33f7f7d41f4c0e5c5a1cd859a4c6032b0978c317ec3d333da42047b7f8f8dee9c4d72afe890b47b9f17901139142cfbbf228018d8ab5d02f7a01f0a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.0.tar.bz2=f7fb515855de32badd6e5ebbb03980312144b69dd8b696fb56320981e4f0964065cd13853a34dd321fca1ab160510dee8fc3b6c99f2a5e007e6974d70a564db5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.1.tar.bz2=de183d962dd4a8c95bea54f8740cc34931c2d856783fe7506f0252c5c71bb7125db00c9c7eaf8e80f8fa1c97208ba4b2a4d6c1a76e38d2b6251a92166749fb37 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.2.tar.bz2=7589f0292f72a2217e5024b51791f9a719ff0862bf39480f1460b5106f1c11172c72ccc1fe2a00b166d80610d76fcbefe64b7c9df0ed3a72c58964c2402982c0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.3.tar.bz2=d79cbc4812ebe9b308a145e96f6e7f64c2692b04370ecba0bcbaae5427afcc7e57ee83b4537914b6b90494fd45a11bbf2b27999a7a74c7fd569687a93c43961f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.2.0.tar.bz2=2d11ad1c89c1ce9873dcdc87c41cf38105b00e265277a173d721fce4bd350af73caf01fa4a5797e926f1a0cb180f1c6e969149d1d524c4df797939cdbbe9657f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.2.1.tar.bz2=cbfe8a92e732675ca1f7d51c04775dfdedec1b9f21b3b7f0760ef61b7c375cc4b0758a17302242087b55faac7c3f1217fab0f6a2e713a05dac082cd6a5d5df3c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.0.tar.bz2=172189c66b3c721e7413f0088f50e4eb8dd80d87779c3a4e74231f7036eeaacb8e373b7f5ff017f8aa274c1e1c872066f2f93485a2a369a7e9b442d157840bf2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.1.tar.bz2=829fcc1a3d878ee28e89a58a2f6d4221cec115d241a007b048953672d57548002c3a105ea4e65e344137091baaf5d5c54232a54c116afe03d0f3d61c07547c2c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.2.tar.bz2=ec2e7bd32e2d574773486e1c1d733611465765cf14895fa6b017b6ed6301ef40cd062496a3926788851e7ff3bdd62b488d03385aeacc66bed53aed18a6dec225 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.3.tar.bz2=79f822725d4e3bb7daf416e736d87f3b01c21d011423a2b3c65d9019a47ad4df256fd4a1f171961267ab8f20387019fec8f3f4ebfb6664f682bdf36914f6a329 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.4.tar.bz2=aba571bed773554b18863e6b942f2bca743729834657689a016938a34b7e4352e68d9fffc440b2fd4fcdd1bed4d1ba5dde689da535088d7ff8ae7dc364ac3b2a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.5.tar.bz2=0e46655028859f5abb64d71a5585db638d00edb9d20a487739d307bc1dfa2fca4ad196e04044dceab0e279286379e73110590c772a06786214c4eb23557324f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.6.tar.bz2=177e9f0a193f9dc45f8653306cf6a87bffba16780220fedbd8be67a3608a8f8d370011f3993590d58805a8ea4833d95196385fede4b513d908fd4263a82f113b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.7.tar.bz2=88bfad0d6258372d4e9739613a07352e954db3deb43c0e2d2a176f9cf55bc5e2df73e4cb04bda75e2dbb210799649f020a7284cd2acb5fb92d2b115a933a4f03 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.8.tar.bz2=3710f83ed7f3f30c9b5d3dd515c168534d01811cd33f20d3a54e654dfb5140afc8198f46dd823ac45072a83d844ad866af1e2b8265f54f9997356be88fa254a6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.9.tar.bz2=078ce0d7433e63d947fe4cb0cd5a14e6f5fca00b7309d7288359ed90989dbf618bd8c1f5f31b607f3ad6b0cf540d715dec2c38cfbf71cd170e572321598bde7e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.10.tar.bz2=f97f877f7afa604dfa7e8f1b399a4c034e79b616c95bd4e48927d88d1e8adf8e203901fa178f93c6af4511d26a38e2d8cced7225c2e75457bb02dc27b8feedad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.0.tar.bz2=ad619ccf77132166151e4982996e93135fb91d97701ef9aea12b6bd05e18e585dc4d5fc34883b3369ebba15474741db238fb90192eb273dd5428864429525d9b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.1.tar.bz2=9094c9bbda4c3d830382e89e4e1c24fe43cebd9d733b6878a43a34d679092bdb6c7b23cb3cc08d4efc6e15449c68862799713006703f95e2862bad1c0b0bb94a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.2.tar.bz2=54c8fc2f2a99f834292b83ef8e68e2b120f20fc4ff74856c13137065b95262f62188ed5c6ffea8fc4b0c1034d9f8a1b497878d6a581391d422994911f5fcb35d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.3.tar.bz2=b26daf1825cbc9cbe51e1abea84f3aae542beec7c26628201325026b4d4bdeeb46f8053a1c105973242ef532e66bd4eda5199dc1aa4faba1a6393f9cc126d856 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.4.tar.bz2=e5718fb13f2fe7f6b34fbc2b1a6db95576fcf9cbed481fea59fd4dd28d064104a912a1000533810221141ec09e9fd8d1e59850ae5a26ae441bb6d8878f42c418 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.5.tar.bz2=71ae2c5bac04a97694310daf76e896a1a02c245274e9c96ca96740f78a0e245302564bce757f1688d3e83b7c0c88989f702814c434101f8df786c1276a4f5a2d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.6.tar.bz2=1693ebd7cd3a452f51ce2ef32144aa36f6fa8121ec68cd0fff715db8981214ea9fc729099e4495e1e8bc346409551d4b93c6c3803fe187fc0c25360b80caab72 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.7.tar.bz2=53b05c51b970a239fab953dcf3bb433f59465fa0b4dfe58066132a1bf6247cbe4adcafe41b219ba453ea392f88a521349df14d58a91a855c53c9b9ba4cc16c4c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.8.tar.bz2=b9b0d99e590a48ceedbd1d6318c29b8fecc12b02ce5a6f1555593eb1b3e284c766f2f8800ee3070fb7a041593e4a3806d53590be760381268ef0f9588e127b08 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.0.tar.bz2=90491968190f4809fefb4068fcc37fb7e2ef179454f57c90bf2af308541f1ec175a72ded53202c1e86dbb63cb6b47678656f753574bf6ba525e982f3278a7602 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.1.tar.bz2=7f9ce1b6872352a6feb539948d26dbdfefb3d4225ba582ef8730be8fd85d5c350bd6f21346d43cfe26a8501c4ad145d733d94da5dbf25b15e7610ca037ad4227 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.2.tar.bz2=8544797f46d54cc4098227809561023bb7bd01eb2330724a94921c5a79ac64b44bd56069d7a77a3e6d2d3dbc504ec25157daf7fdf921c3acb3b4289ce1bbfb5c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.3.tar.bz2=fe086aad84ac7fe8009ea2bc16f0ccb7c60a5fc9034690af38fce1a05582a6226dc3d7b80d08d1952d03a9abcebd7b361f5fa2d506d71e1f5aae9b5f31ac22af https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.4.tar.bz2=ce06ce97ea1554972b00781332f126e767a3ab98f5023d3dc83195bb36b954b1b497961c74bf31340827d9a5de2e0bb34240accbadad550b2e692d26cb097d4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.5.tar.bz2=6fa248065a48cebd1e9950ae07f3e653b3e29e369fdd914908be0b215257fa2766b0182e392fb869af51cd498e258435f6d9b45a03452356dc08da0e96877ae4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.6.tar.bz2=ce912342033f395ba6298051b081c89832f656d61ecf2064e9568692552a938599c816d2cd1fd1f9bee721611f890b8329985c69f4d5b2bdbfa6635b48afe3b1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.0.tar.bz2=cbfc7a1cddff0385187a7bf2eb9dc71a8d14912cbbe4e9529b79414e49e681302ac9009b7c8e6fcf92a9f19a0ca5053a6ed25edfdb510e3e4e247474d471c58c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.1.tar.bz2=29b99b3e04325ceca89b64c7846aeadb412215270f6f7c390fb1e275ebe19b2faef811778c0615b2d4720ddd942a2cc209c72e623f559e6c04e78849cc1c1b1e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.2.tar.bz2=f67ab3ac13ae90622fb3664a869b0c584b97df0500384a28bda9c5c36cf2a27ac1f66afafea08bb29bbfbfc1e0ddc444427993ff4163987f5510c4158a90a96d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-3.0.0-preview1.tar.bz2=aaeeafee545dd1ba1c4df5b7e46e82f7e89e0dcf4fb10677b7e177e66f86e6825e85fa5ae3e74062363883768b3485495a3378f97693d45f675a6e547e989cba https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.0.tar.bz2=3e78b2a73167c3680aebb1ed015c583d4f6c58804d3b272253bee2cef37fd2d1cb3852fd2b408f4af1abca17725d923a1f28d40d2a33896e5cc21c4c6711d7ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.1.tar.bz2=14e7962e180b9ae16607347ba5360b9ec086eb8055b88d2f60b1c9284fafd93fea905aceb441f07d594a34b53647520f9dec38e4e9f6ad3e5a6850750d981a27 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.2.tar.bz2=5b7d88d4405cd45a6a720295cb0b7d3152dd757aac996c8d1a576c6ab2a45cf9ed0b0ac006423791cb038a14153048e96308ecc8ba1e761d4b7671dd6f880d15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.3.tar.bz2=320734a124e26de068457237b5f973278286d7e529e92405c1b856b6e57441b5e76c59d0f519fe43fbdd2c8c48c9dd37dc5094831c0e6a81d804e88888ab6237 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.4.tar.bz2=ca34ccbfc24adc4b2c6c5c0e3b27bd2754c2c5be61e9dfa7b919b4902174e351f45128d887c179c37ccd5163a7f51c213fae96be4d0c356e2d7f96acdd4f164b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.5.tar.bz2=fabb151c29ad7ef7432efd4d51ea1e20180006601617ba896f8b1379555f4088d398e96f7bddd7c9815b266acf5ea94527ef4acfad2446950da6fabc3770f788 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.6.tar.bz2=2728c38987d41169b7110fce2b507b5d3e971d5b043b60c9a3b8d6d385ec2a40d24e464f6cf081844282d6b9fadd4abce670e79f02e4606bdd5aeacd1b57f773 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.7.tar.bz2=f98f4dacd9d8c6c9515ddc2597da8b868c66897577cc5a76819db742f3649881ef5a7f85a880f1e359772b1ab08750dda6fa74ee826938e06b93a9848699b929 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.8.tar.bz2=47fb4b41e60b1e536b3a54e18e9ee92aefee7eef92d49716b46884b2a3d73a02e88e4815df64baedebff80e9e17ac7b0af6e65b406a2c53a4f90421dbc948415 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.9.tar.bz2=c81ad5e16aa18beb7c34eeee68ffa96da243f99ff69cf00932ad5ebe427c1f80e3f7fee31b15ec0d96c1be5c2007dfa6e96c38114f61e958c6b7ecc40270db4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.10.tar.bz2=856210b3eb2bf338c5da2668e830b95d48feb82c1c4407371b18c772df12878703a9eec948a2778acd098bcc8eb402ba6d57b2b935766847f3e652c3dadaf6f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.0.tar.bz2=6ea5e6338319e5d6861d420b10f93b5e6634a9925380c61acfbb258b6609ada76bf2a6b474b53a30b0a81f0dd81cfdd1e610b68698df73f69091f479ad39bc63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.1.tar.bz2=8e8e4ef137b9394ee34b760dbeaf4d23953bec083e5775a423ef6c16b75faf8bdfe99df975ab6b6d762509536b017f3510a9a5e9ab63060208edd4d2d96371eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.2.tar.bz2=756c9ecbe3c9801a0a364143478903318c524f7aba026239a1fb42d7390f74110805543a9ac2a9f8bbbeaee48bc867fd15d400d8bd46576bf4fd417d6136a3b2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.3.tar.bz2=594ff95e33d0f7af7be448a781ac68f895f8344ebb1c9a03898813baa5963024aa84b11baa405fa584070e4195fbfda9b908f1fe171f75f19e5e1d7879bdaaf9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.4.tar.bz2=a9703c6edcfa2ddb87bb73c070d963fc4d59599919865be9b1d93989906698c6f3b9c4fd7f2d597e5d710276555de0b5865676b92aa3aba1f1f41be4052bedc1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.5.tar.bz2=dbd91cccc0a00a1ca7e901d56f9840e62e4f139ff4dbae530169f41897d06523c7e8977138ffc6212e1b60589f3091a4e2f6b6714c0fad22fa65e442b248f61e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.6.tar.bz2=ec967415b5bec95154cd9ff8338a602a6d005fa647afb1e1cff54a0fd4e9c0697b9e952c2dfd8e4b30068a697f5391b9cd165d5d33f3b146fe35f2a8fdf9823c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.7.tar.bz2=b8786ef31db7d950b1309646f81e6a99d56b76223bb8d2d20ae045f09917332a869b14cee1bf235675c7d8eebc6942b5ebd6cf0cbd290ea75d9f9be1475352f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.8.tar.bz2=4d949a715a04cd45f6817b1b26093f7bbf03ca630aaa015972e7d0ca72bae094add18664e1489ebf8ade27c160d2fbcebdb105701d719461af13c4d5fcf2cd22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.9.tar.bz2=ec6cd8bd90ee99aa6470d9d524d89531f96f992efab8a9d6a709a3959ef4c314828276e67b84ed97d415cb3e0c837458d13732dc940c93d4d069d9b881d7f92c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.10.tar.bz2=1f60cae30581e3467c7ec07391de5045f238b61a49661ef0cf76d72ef78d220b7ae70b86b1e72625cf37085b6507fb1dfccfbe5554195f0c6eefaa996e199c16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.0.tar.bz2=343f5dd6703b6b58d61fabefc8a50ce5d02d98c32c8b4e52b8deacc9824369a9f0dc8faff69e90ca7585a194a4d742791765b16c3f5e2417b0f54e0e6f6220b4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.1.tar.bz2=aaf7f9e30b3998b8586764f61d09e434c32aba7479aa79fb6afa71ab11c067384ef3a4b9215a1a3639da807f4f642b9efc62b37b55e989b7ed7d75cedc7cab40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.2.tar.bz2=b834ef95d52abc1f0c224193391bded9b4d2089c694378dd5aa45f8b2b1ea41b1c300445f766841cbb8cdb1114491ffe0095f518e1600746f5f583dd0cff9c1f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.3.tar.bz2=9df5ba9423e0a8af9d825e59f8c69889c70af0f6d67f96708a02d7d61260c83474e2f7b2f240af399911bdfc56850255b4f34554f7013d0417a13bb782403aa4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.4.tar.bz2=1d4b55a6a34249e82880fbacfc1d97a093600005deb982c6b42ccb14bbd7bf1db14e0f6d73bc25f1addd72378850f7edcd63738f2b3cbab569e34e89d563188d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.5.tar.bz2=29a76dbb28d5b63ee0ce64cc2e7d022118350a550d3693b8e38d559bbc4f42fdb6b63af4bcc4ebfffc5c0fbabbf2e18db7228e655de3bb416e344a61737870c7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.6.tar.bz2=122322fb462f8fdcb065e6f9d9968027c320ba9be9ad6fba9011760a7296cec1892a0780d7436903cb7763f5d18cce11860c5c7fce82890eaa139a94d5e89428 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.7.tar.bz2=0c17f52a74b73041c588ed76f73862d179d7b9abf9de61279dc74ba7b7f170179e0db5672a403dcc209b6dec9a865a88a382f5df01f5e6ba4cfe0f66232b4a15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.8.tar.bz2=1a30bbda34fee311762a2f05ac7fbcfb4f373f8840f86b9762b0c07f1cd397e3eb3be83210221384333b625a243c7161ef4f368602a613760391265309e4f304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.0.tar.bz2=edf31b2dd02208c96be25c2f4f7d35e2b122e5d327133545e16038836b848b90f81079be4df47c5493bf4ead1d464fa72a8d0d405bb2509ab0db6335c58ff793 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.1.tar.bz2=91cc7a9cf493c7361f3d507cdbb8e258b7dd710100cca8053b77569c07c04fbc2f72fdceb9fd9a3a5d01f4c423a206da97730c356d017157bc2454041e1f1fd4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.2.tar.bz2=8ea603a27560ddde5fc639b86381a303f886ce80384d8edd0e7bc806f10649760d75a76dd5f2ee445371254e727544ec12df49d7fc8876890b73237f4eecea1c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.3.tar.bz2=c42f24668695be5c291836ae6f39b4366e0357c9bb63cf8be2ad36cefe0c6d19cb921a43159d49d4d062dccc15902ec1698a1a6842d13ccaec45c6cb628da4b7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.4.tar.bz2=3ac89131407faefde80bf2e1bed4baa51c371ab4bffc18c8dcf2624f4d1068c9f933eb66486a2bc7c6c67f674c5bd06747bddfe1f1f9dcd939458a08e1bc6108 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.5.tar.bz2=8ca9a9387b8cb434828fa36e5886bc8a28d70fa46d3e20df60389880477fa2ee54fe63c0c14611a2cb0168ef1149d205640c6003e6a507400ad5fc34fa641bd2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.6.tar.bz2=52795cd7d112ff437adf603f58130ce539209628d2224a685d060d67a07325717981fc6f91736d4abfe014ccc8057bb40a097fcf85f5046aabde0019d08bef16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.7.tar.bz2=bc179a31c746ac6e632ce08f57a8f403d4e463ad72285c0ce008d7fa39b88a22be3a43014c9eb019f6a39d022f9448ef151a8d03e89a4d2e767c4f77684e3750 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.8.tar.bz2=d693e3a800c2200c74b24c207425f41cef206a0b3f20625d18b1590e9891f409d6643ee0e7ab8fdb6e1e85de6fea52c6a307bf8f65324ee0f9ac33306ed1e876 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.9.tar.bz2=4b6cab99f6b7be7705efa5eb6f321b5eeb1d1c6e96d4113bf96b57378aaa4950b39f40ad555f630f17d216d235972f028617ea43c28b1970772ffd16be3d9a67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.10.tar.bz2=40bd90d231fcedbe34ec9963eb59645fdd1036b03056b9b8fa3b56900deb86d94e2a256f90e6aed297288d6797857a3ef9fc27bc6ed05c017b5c8e8ddc465df1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.0.tar.bz2=c1df39ae526da7ebf87510017d7694e6f78c59871baac4e9c5f2d13c22cbecc30925e2783ad93f741110b7c3802e9f25a6c3ff85160b33a4080b0f1fb02f7740 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.1.tar.bz2=930f6f7f654fa14076c84365fbc771d5b09679588c4c478d8f6944770c53fdd37213bdad159fd231efbc079b85ab7ab648b0a97fafd666c38d0e280046c6e2ef https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.2.tar.bz2=cb62ca82d57dfc0e21e532d4b523f49c559c4ed5f3d73adbd9d650bbf23c694d382f3cc25eed6a8630f23e4780db127b4b8b6ecf6fc24b0f6febc820dbc6af3e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.3.tar.bz2=708209a89a18cd99c02392307d2bc63e46bd38c72c8ab0e982b28285f8e006d4ed77e04da3900c880eff01c3350033cd00ffc3be1d3a12c4ee5b263282f0dd05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.4.tar.bz2=c94f5b3129ff41da1b07da1cf742592e9822febf6bcfd0e9eb7145c00b732fc66625056bddc72fe9b631742c70d0e731cc6a9a16a089c7b559ae963b072578eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.5.tar.bz2=b4d20f79eebc5496768fc6adb0735c6a23cffbb39ceaf9c2da42851ff7842dd2318c07877d89564176d206e22b8824d2a3c637b5ef02c5caed0b2b5276581032 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.6.tar.bz2=a09ab93c3d6936d30065236ff2abbd0295988a9359f5a76425cecab47af0ca5b6829530d1708e9ddc9e78d1fbb7c0359b9c7e90227870537d099ccc89c73844b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.7.tar.bz2=f6086c879f8737eaf6eef4461d23270e9e43811186a22f35ed69a8303eb933136e7a690bce2d9e18bcff730725292075e09db0f2384d0e26018b7f2a0df70b32 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.8.tar.bz2=62c631026560ee310a849483f1b48690075477942ce86e0564e92f5ca7834553c435a35a1d6d8dd957c3a7be24c63c32104518995eb3a96e61066a04887bb0d6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.9.tar.bz2=0f10741772d2498167c1eb2aa263292f99748518a4ec03dc19440eb5befa075fa69e68b08a09af6eb2e02e462ff20ab10e4121cfeea7bdc938c04762d81fbc4a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.0.tar.bz2=908132a47bd996f8c76bed54078e71abb154294f97dcba779b4cf0d3b82e31c4635dff89e97d5f6b4f1d797d854c6d020afdf9dc77b10c0e522755fa194a17c3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.1.tar.bz2=39c867ac0af48410c0bc6b01f1ecac00616a59cc07f3f5a3e7cfe8f786b70c7cacab65550dfee777d11b8b7a3ac173bb22c602df370eef6a04b40f8e539025ae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.2.tar.bz2=2f04566f6d778121281bc6ba23ec57ad408049e649b351585bc9a3184848c71873910e159f7fd3909c7372378152f5ed264070aefd45933b97980e80f6df4deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.3.tar.bz2=940375b11c525e3f0bf00e19013eeb886bf85b8d8b66d86d53740170b0ae16b14faa491dbcbec29238f875f84204cb0d52ade17c180d71e129cef5254f338f0c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.4.tar.bz2=1c9d41d7ab7bd69d7e3baa3c4149b1938cc147beb2a63923dadf2fd959732c8cc824e2add0946bcd62f44b0e1d509b80b4796a5929841cda8d28f3a8207b17df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar.bz2=f47443a53e3008cb7b7b7afcbbf1adf44887769e42b3defafceacc1e50e349c9000b98010f853c6b7cafdb54b85b640732a56a8e11ad8e58fedb5fa4724f68d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=fc1c9a08c48ad91edb4afcac5244f386d63940fa906dadaabe02a1eb025375443c8174a6ad1acd50f4583d6c57a88feae86e697ec15c8a25bb49f280b1357783 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=aa611f7c350374d2c5c8652a694022e038cb5a65fde795c43e927067f155d0ccb368b281b1575e679b84cd7ba6042216dc28149e138256faf62dd3060ec0a6a7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=ab04071b90ddb81b68f064fbc9f2bf726729220e4359113556d9b71f3549483f122b796b3b1e4dc8404e6f44a4bdd02e9db2c8066974acf190448c4d5a97dc6b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c769fd3814bf31728b83f2bcdaf0928e6423150609f3db903631f9db68ce0a0f9c87bfce5f93983cd962662148a66cc55f5f42bffc1a1b5a237e6938726629ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=c231f8ecd46760db49796519645bcb5cc9fa1c0582abbc419a2ca81805c81fe8912dc32dcc2c5192ca9ef0d502da8f61ce1ce7ecc87b29edad3a144a8a0c200e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=b41557c83084c8e5bb263aa944499932ce7d84457e4e307f1cffecf62aa44f8543a06299e38fee17ba64f8952048612f9289e24c35acfe2ba02b913c15dc1405 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=001d10af5833a03b42d9a254bde844731d3a796d98ce2efea90fc68e4638c7cc3be31a34fa163d4c5ac18c60e685e5cf2ccf88fac46ae6bc587a48ea35cfb09b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=0a8681afc19372ccd9409bb017967f86c2e6642e083ca47ec904cccc34242040f710392d916a69a327ae6a0bb287d97bc05bbe116a1d93478ae282b32e5fcfab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=e505ff2f00334870d07f4ec9348648b7f3b91dbbad1fddb2f60f7a38572a66a7bf081fc7b386f800d86113aac1ce3cb739c86cf0d6da2bab916a4432ad557c54 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=aee6000ac886cdd4e4044a7b43ab20d54d1e99f6b893af69d0d7e7a202f4ae861f939898580c60996b0bb7c6481eecad69a20acc83c75cc594dfbfde3a22c476 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=86f4e6948eaf2586e018570f09232b94f907766590eb75f00992531ef74676070ac5a2308e121ecc1c23388ece4dbe1ee8a4b2a7ab99ca00a28d6583d6df3d0a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=1bf867b0af84eae4e7996047727fbc7ef459afd3b2ca5885f658a74d62910d00eecddbf0c11b23265c625c26b420421ca5add40079438edca8eacd8b5c0149a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=92a3b217079f9d960cc4fbb5908f7fc7ef71cc3ec8e5e404341e2b8875534c0542167d03b61577776e0b0f049f9ba2e3235842be381b4d484845768adaa6e3f7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=608f0f9eafd72226fd1b39f6c92d0f1c6d3aa7ede096cc390fc4f8bee4326b0937767bc6de84fff536dea48cbf9bdb8ef5598670235e013ccd630b06c5b8fb05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=40cccacc66cc4b7891b01c35375ca913efe008157ae540308b649e14f5753f34f1827861c6e16b500c49ac95e1aa22e1c01444faca5dce71f981452a9e0f1b67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=5a33d600e55f7b8755725d7e2f2102cd76720d524d7b378d85fc21ea8d853166dd97e2e615ab18f9e44122e3404b439dd123f8e23d6ade5328982fe72db2af0b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=37e3a4011b3603807c6e0fd48818b256caf272b3720ee654f38c0ae202cffa21600f9cc751b5335b57905ce67db185b37f548ac9c84d6acfc567f0ef4866635f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=6648c1b6bd962e30e89eacdb6130b1788ccdf6ed05ea13eac32eefc222438a298de8121937262851cf5c4cdcc1a804d5d8bf19667819db6599bfcf79e57b0e17 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=ac690170a6801fd741efb88e67961c0c3d717029b3bd9c6e243074799641c940416fc9cde7b4ba2c56e79551d6cb7fe5f7977649404da0d20d1819d7d3ce0bd3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=e6edfed2dd9d6649c47b1dc1b102f933f76a148e6dd8441add2316073dd255cac851e972366e4821fcd665e55b375fac757d189b7552baaa0b49e82349c71b77 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=69c4895076690037199f2a9b98e622f6b5e3c23ea02de79bcade6193da2b1b88ed0c28006059f4ecc502298442275e7e7324232de04a2f0ce430665057410a05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=175777563303c6d6a04393938ffa7e36e0bc6db33f7d2cf1d42ec852b41ea26dd7d50569eee4cb00497e6bceae95592365ea6718a35451e5c929d8a085aa9649 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=b668f0cd853615fec38253b264115ef0fedd21a7879a663ba844f4c3fa8b87e5ccd8adffbaa12ffa3aa16b108a2a439cecf827e7d8e19ec8041d46e758abc391 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=2039b1fcf55cca35ed3c8446eea45819368016ec1a05a5fd4c6a761b54f5cd56cb3301d5d2674af1ff75bda41eba41b7156e71ac48b88ca7a6474f0e944efd89 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=b4bb324a53c316da488c5f60803933eade9ad5c59a6d58e76787d2dd89dc2d2f18016d2ac4ab0853a40976b4beab70864a9c2d23de194bcd63ad089b2159fa7a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=3a9b5868d707d6a4580a44ab7504cb46a2713f78918142b185f0d62c5b7e0dfebc1ff551b2a52e9726befb70abbde867d2802345a01fd3e4568b9f58ac83c168 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=39007e736b28ca599ea244bf4e54b52e86597c950c0ebd8f1696a02c8eef575a734d089b52c7013d00c02aeb261dd7e2facb45f24b34c75c4bbf14cb8bdc3ae2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=0fc4e39f7382c29fa2119119a78040c611fc8298bd4765025599d3018775cb2bb28f51d38efd4306e9f04eeea20e7c2365f2fbba1233e0494a8258c3c184278a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=5dfbcefa70f5b81887d34e776713bb9c6f7bcecbda8f1c9561daa3e235c725417ab0a930f594303723f226d36306e6a73f228abfa3533280659ab387708182da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=00936db899bca33dfa8d0e6ffd4bd6b0453ad5823a450e50e3a055ea696dcf94b317357732e26208a6f34224c33a8b4a6130e5613262d62381179a52cc8f3a1d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=15b816d190fd58382a2f6f6e087f358b54003f186462abf59dbef545af9044a2b9c65576119185adc6bfd9ebcdb49f03a2a268eed4fb0f0d37aa35fa18adc1fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=3a481c35668be459688a66e4e480e11b4e58c13aecc3751da9de8a3e3282bb4a152128528a804742aa0b4380eb537b666a2b29fd79be0d6968c4ff1fa428eb7b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=c604871b39f396c539c52dd4849d1d42f37530003601f60162860efc777c85e7e1a1ee88a77cfc9ca8ca20f0448a5dde4f39cbdae67470d8d2d283d6fbbf0239 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=12042b5c30179da275fcb6155142ff2787e86cf577caef44b7c4d8175ac671cd461814e9a19f4c9b1e78bbdf041fdd06bd463aa972e194caa91e80778a56bce0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=2bf1c13616b2e255b8c269bcb2f979a45009c079ffdcb10a13e238e5d13b0978e8a974bdc1e7bf8519e15264ed5f577cc8f85a5861b3ea3a4589eb78138a3f2f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=2e7876c8c8a1f4e3cd1913023c564d9e74972ce427e85765bbe9ddf237285d7b96017c1ed17868eb912509881e05aaf96e4a6b353a69989e61c733b346511715 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=06de4f6f2761bc58d94659f826c7c86be50192b7dfdb5c8b6710b384a50299ad161309e2a8c333fa5249d0e7112f74dd0c0b0faa2950a6e74bdba68833f68702 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=597374487d196abdfb389c79d7d09b81026fe3e8043f8811497646eaf47bfa432cfb96e2af9be1a35ad2d05f2f5c800afa3f9e5adb0ea2b2d31812d219232a00 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=ba56050ce3fdbb9117c6c9e767f818ce3d467030713b7693ebb039f6888bd5d7e5f7b1986ed117414037e56e550707c3625a88bfd5d00d7319d0c7ad642fc811 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=395facf2f7a15eecc94e554a60d87c269ba70c5063b24b7bc504f579c0d12a7d858eb0b98c502016ff8bf02aaf11ef765e2291b542759fc96affa186206ffe4f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=d1d527b2e95e3a16f521214c5352bcb379b946e8be1a943da872aff0ab4b8edd93a507d693abd7a8ef1cd5ea1ee6e6bf1f838683f5a447a6cb7992de61f744ad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=e47a50392c4f3ee13a565103e0c5f9474ba0a8f5ff60fc9fe7d290b7f5f9a9ddec962fcbb103a8d3b9c7765a28ba59237975f90aa3637a06a128802ede28b3da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=77fdbe62d1694732a7307c29b4f45d0dcab7e8a729f04f45b216345336c5820715bf3f8f7cab52175c4ca1a431d867c7feef7d802dec61c2cffa4abfa8746e90 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=24da0cfc93ac536c505dfaf2dbddc7b312a3cc5c72a9f47e28b3bba760a53b584422b73da8546ca01cc44d3906a31eed7f27a3dfc0bb574f01f9c08f7c589d20 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=aee8267c4855e95a55b7ab858ca6359d635049743b8e38d34ad1430522a0cd746cd572e77884f7e10af14a731ccd8ebb9cad6ea035b0fca4ae534913a38f43f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=ba3e66bd3dde28e7193b90c44194cf7732d294e592321c482deb3b31ddd9655630f5b04aa89a43eb9d1bc222da10884e9da332bc9da78e9e1b655300db52a444 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1df8a2ad9256985b4ffb3da5b545af4160ccebdd8265711d1b642cd2285a004a42cc2ea51ce3ee78854e599f5196c66448b8e0b043846ef6e6bf992828aefb6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=cc460b3d17d460abec27d77f734e1c1e7a649769c3374f02d32a4ad00f989ff3150dab926a203b209c92475100667dd524774fc37633d71f98737ea2d8868968 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.2.6.tar.bz2=335cddbfcf26c82cf9bf9c7ec6637c1c3e30e1b10d00553f5dcc60822d40b560e412d404fa65faefbd1c9022a2d7f0e4d93c25d054681d109c7cdb5968989005 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.3.6.tar.bz2=5531048adec175ad23e3bb050ba6295352cfe17ce27203c356145008434107831186a09c00ff158f4ce9109776f381661f3047e828a177906a52143096249dbc jruby-bin-1.7.0.tar.gz=1e466a3f8d52b553c9def09827fda4b8433576b0262c40ee505602754521a00defd821d5ead5052be52baf281c6cb080fd03a8b15c628a0ee67b4e417633e5e2 jruby-bin-1.7.1.tar.gz=ef28381ca30664cf450f9d3df9927530db771d30e86ebcf535af38e1a7e26724ae2bcfe8487cd2eb349bf609a733a25528aae14beab4d13d298b5604ac7353cc jruby-bin-1.7.2.tar.gz=8155c81eea6743951db7383bd9f6b1750614927c9c0b25a6574f6d64898bb3ada2f626c6e0df6c5486561a03cc7d472fc12fe804ce66a3972d2fe02e3f407100 jruby-bin-1.7.3.tar.gz=1d19be25bf4a7dbb0edad71008704377893d3967aa4204a0d59d6883aa04462ef6798c64d0c0fdd3f5129c16ccb42e8507f3fef38ed56054bf6e689de745935a jruby-bin-1.7.4.tar.gz=d7c0ee0316c50ae5413757e956c18ca68e9d99a25cf85be978da0787c13b8978d4ff2712a3effa564cfdf07144be4a56a0cb8acc794a01f43264fe8baeb125e5 jruby-bin-1.7.5.tar.gz=a4984591a3809330b93f4ce79fd1b9c24360f89d88a03bbc76351be623893c4bfc6441375bbea452ba4f24ca8b9357e03ac938fd6c065b3e2348c0f896b22a1b jruby-bin-1.7.6.tar.gz=98600a2d46bfce14111c7eebc62716352a4b685043afdd696b8fe51c6b205eb9569fc2860423a653b842b173198c76c59767156aa48e0d23482dff3358d884f3 jruby-bin-1.7.7.tar.gz=71da2e72c65899216fa15ec568b51aa7004e2ed7dff99ca376b332d3692c83a674c688dc21ee04d177a3961a2bb3973714509d88cc14d0ba9f79c864c6258a06 jruby-bin-1.7.8.tar.gz=42d54243653ec260abdafecce1143161be63fcc38a80f71ab70fcece4bf91545a2b12ed2319f9fd6f6b41916c398a9a8e89e7f0389f59da56f2739665e74522d jruby-bin-1.7.9.tar.gz=f519f53b1d9f57cfe28982ad70b892dc6fc20fe6601d98d65a1dca9f617a0eb8fff74d0fd82ddb858fe105d05ca7c7bbf3a987677ae0363caa2981bea358c096 jruby-bin-1.7.10.tar.gz=160b701f2f500dfab64beb635e5c4dc57760dd422d0fffe8d3cf8d84ee6ea17a877ef77a0087b4888ea9db64ce7750de01a73a51530aa6666a2efdcdccdb89e0 jruby-bin-1.7.11.tar.gz=a53b0fa327b98344cb4a8aad1ba537ddacb709a0e173b1e32656de8a610cb9896e9a4554d54d0d01d2361f8ff1539a0e2ee01308f670df2004225231b704065c jruby-bin-1.7.12.tar.gz=bf2be8a37b53d38c75712a6331f96b999fa6b0e87f453fac7b9d11eeb1b66098ea0778172f1a6a84345e1881f05d63012e28d4068a0bd31122bf2473bbdae5bf jruby-bin-1.7.14.tar.gz=f14e658da7f2abd469edcfd657dbc2505d6a2c04ba1e5f65f2164256f54625da154b338bd3d286ea6a18da61d04d90a61ad6b012bd9461182753483efcd0f603 jruby-bin-1.7.16.tar.gz=47ca714c3211c95c84e9c80ae4fbc894bfd7ee03e1bcc494cb48d839f8538db4aaca7029a4913b8d323e7227450e4e41bb943dc670f43df8a654eb127012033f jruby-bin-1.7.16.1.tar.gz=9bacdf6e212d08e46ac2c49183c8611873f6ecebfcb0e928b5110bdebfeb8751ac087cf8aba09afb9a8ccb58e59f3c3e06a241c1db445835d7a875b0c3deb4b5 jruby-bin-1.7.16.2.tar.gz=349283bb5344a62f282021ce39648a0c8d0b41ecf8f800ab5099b5ce161ff771e688f205a918324cef6ba0ded6b3694b8dd83f46f56be584202b8fee496b37e7 jruby-bin-1.7.17.tar.gz=a3b171df08e789f91c260c5a57ec842a5d62cc8d6b462b772905ec5284e394ed7b78f5b327ca1ff20f5deba8371a86cb03fade75b5f34f233df47bc3f08d469e jruby-bin-1.7.18.tar.gz=b259da2967e246a387687117eb13e8986b57de6ca8e570d6f8f8f07b8097db6e01cea8b0ec3a860b091fde14de535260dc6dbfc638f9e9b49d348f726e969642 jruby-bin-1.7.19.tar.gz=da91efcd51cfc833666f8b7cf949d3b5c41cd8da99ae1559c88a7358fb48df1245c66702c7cf23e7ca012cbefae98787c200352976d4e8aa3e9120057a89dc8c jruby-bin-1.7.20.tar.gz=77131afe46e72c406ab4250e43cd1f98e59a8351c494044ac89f97a7c9a81492f8a8194541055fcf1fc59569e99a577fd6a36a9f6a3952a99f399d4970e80e69 jruby-bin-1.7.21.tar.gz=111883df12a60d06e9924d33057ba72094fcffd44f7e3954d6c6d2190f8e6442804e739cc525a9e75159251a8dc1cc487570792b1b4f5773f4d0082f0eb360d0 jruby-bin-1.7.22.tar.gz=6ed6cbe7b81a8aee60906fdf965bc217b3db794698e2cb37559f36ac119a0cd2a1ae1a7a766535ab491d647e8b4e6b2f63e62011714b757f8691455831ef365c jruby-bin-1.7.23.tar.gz=6f4b97c4e08274f96195deb176e3126e8d047c981cb655cded9665624033fb905d60d5586704a3f91b2ca06d7e78918d9d31131c93e4c90c75a38182e309ac9c jruby-bin-1.7.25.tar.gz=a89ab8d539bff346ad56d345b6a205f74890b9aafe82a2c82e7c19cfc30b77fefde1003e8bd7ed15f141151bc0fd21946203219691383a64f2234fa586e1905b jruby-bin-1.7.26.tar.gz=feee03a50900e459d9ed7d2096056bef126c4551c02c335c4132e2307411f3fc4fd435e8fe44411184773c80f0630a7812b3d798b7e9be2818e1b5a712bc6995 jruby-bin-1.7.27.tar.gz=656f4313fbfe5db8d2d4fc2087a012c91efef848394c48aeaa0041e9a19b87ab74686702955413d2c51d6b4b11c758ba0555b30fdc42e86d66094411324139b6 jruby-bin-9.0.0.0.pre1.tar.gz=988c6a058336ab9ac8b27c7501ceccf3940837f9b9d3ed32a466b891bda1bc13f76199f5bc3baaa1240dd0dfdaee40775f721294d667f3b8b5bb9ac8206e2e83 jruby-bin-9.0.0.0.pre2.tar.gz=f207f9477a12d7ffacd92b1bb5154ba8101dda8f7b2eeadd4fa83eadec9a75727bc1831733d27fde63ba63322ec491201dd23cc6e2c2b5a4b8381a8fbe49e8f2 jruby-bin-9.0.0.0.tar.gz=33308a983533c129cffbf521bdb8c1996a10a6159a4a436248e645bda682c5a5395ac1aa767e971ae679c935f3b61573cb22d5b8c64af026752db3411a6356e1 jruby-bin-9.0.1.0.tar.gz=277dca63f3faad01c98a793f06bb4d558a970a10a66a38482e8372b25f4cf4fea85f1d5624fce7fb5b4310c42ea8aa360f24f6b9b6ef4bb0ebcb036736009ccd jruby-bin-9.0.3.0.tar.gz=d82f83e20ef17a0675843e306ec5e90993e5952cf5a53957a91e369d2c90d92306aa515b1e135c04b45844a81a0f4ae34289b966821ae5f46ea51fe012627352 jruby-bin-9.0.4.0.tar.gz=b9cd4f4a00da8152740b468914046633d5341b10aa26b0ac56835d5896531030c8afbc4c965b30c36923555ed5b145de8ada69e05ca38b01d43621914a331335 jruby-bin-9.0.5.0.tar.gz=7c61cf010fbae571cd6ba334aefcfd917f6de8224d014026297b840d0b890523e94b2fea20f154c82c25c4f9d5992b9481fb569646a7023e5ddb42db1baf5f34 jruby-bin-9.1.0.0.tar.gz=1ffdd352823436086ebfd37c03401a1f3a9cb8a8c5f75476af1f704c4764396a20f49ddb7fb7f0911e1608f7c88a332944330b8849d13e6badb170efb736dbe2 jruby-bin-9.1.1.0.tar.gz=475acda79ab8c54467ae70094aa86842959200127c1e92709f0a731014c469d3e52e4c48770b64ab1bf31e1b710ac4570b421077c85c08071c1356bee55a2900 jruby-bin-9.1.2.0.tar.gz=cc6b1e1a2907c128dd04edf9da11933a54bbed5e861ab6f0208505bca5aa2aa9d9acdd04bfde65824346fbb435584081fc8ec2e2e9a3aeea1bef8047915e0c61 jruby-bin-9.1.3.0.tar.gz=88339f4cc05f7f0ded21f100755156ade33f19873f49c0c64110916da8c0b059df541a77bb36e54fda9cebf042591450d2d6312ffaa879df926870806985e774 jruby-bin-9.1.4.0.tar.gz=ebe0e9d67cb91721d589461e93e26338e3e3a1f0f98de53f25906684140b49d989ca6d3704cd3f6cbf650f30aed9a3989f117bb4732c83ed870364ce4c31fa36 jruby-bin-9.1.5.0.tar.gz=f2a11e6fc88d37fc1b640ea8c9feda4607bea6da5e6520f61ff85e8d6a51543612ae267b45c033214f8fd0e2283153da02001cbc9fd90be4761b7544e1413b9f jruby-bin-9.1.6.0.tar.gz=ca59d199a0fe791efc57f05801ae26c6cf6402bdc0f1a795250b1a2dda39b233ed24c8cb005016e79727f4bcdceb1bad726a60c16935e76fc87e5d1a078fb5bd jruby-bin-9.1.7.0.tar.gz=f2569d4858a33280e90d984aac53662c25ef057ef9903bace6a2214aa2e6a537c9bc8fc76b08f846b3093cc4a12c70c98d725576a4ac771e640b95cfe3697c7d jruby-bin-9.1.8.0.tar.gz=dba3b41b65ff27dbaa203a5cfc78ac7cb9d952c52b452bc774f593383e4ef9389c0bc37549b798f48b63497ce7007b1ac2d2fa252d9a7c3e52146b4ae192ee49 jruby-bin-9.1.9.0.tar.gz=f8f6419be34aeb7b7577e946a62a094f5921d7319b51876c5e07322d99249b3a9f29fea4ee5c2b8184dfccbd5da8f8262fa97f5e93874887f3355dabfccfa0df jruby-bin-9.1.10.0.tar.gz=857783bb45fc5d62148bd687b43af9ce776099dfea75ec4b5d947a46ed270568bceba2a630a3277746a3a9c1fd3111caa9a4cd13493ea8824c1ee190e6d2abf1 jruby-bin-9.1.11.0.tar.gz=718ed3f5a39cd9f9b45c4e11ba44cd32e035f8d9f26fe59230dbaecb71adfb2513ee1bb86ff72e075b02f20151f3f30e53bfa30b6c4b011a93a138d4f479fbf7 jruby-bin-9.1.12.0.tar.gz=8a9f88d517d8002be570aa95aebb0063eb62a47efee191155f9fa4f045854910f78431514f857c438167ec42f4241faf74d4a8d236ae36feae58732312e4bbed jruby-bin-9.1.13.0.tar.gz=ef88f613ada2665d4f63b2e2f15594739de8ba501406e76de417821f44847b0e258524687b0ae0cf5b737520aa4dd9bb59d80a4b89a81408cda638f28bebbead jruby-bin-9.1.14.0.tar.gz=d15ae0c60421951b830524acd21a0f2a56f480e983b148a2722cd36afed8e99a41f518eb8a679bfa2cf87f08637e81c24ea88be40c0a5390e081322f1fc6f8da jruby-bin-9.1.15.0.tar.gz=74a411f42149510180706b2c70610caeea357f6fc3d2a12ff0227586862e6a9dedf09e752596d6c486af7a310a07241f311a1dfc73ead229d7225c09d4508605 jruby-bin-9.1.16.0.tar.gz=94e88dbeb2545250ba5bef50bbe0baa6f3851e9817f67f879ffaab50048bb0d41cd7a0e87ac9ef547e37c2b82cf1d7aae6b8caa43d03c6a9931b8ce0ad4b2afe jruby-bin-9.1.17.0.tar.gz=4c06b9674e20f48d3815b4084bb38e6994670eac804fbc56d717cde7abdb74d57e0ac17b7fa0b500318de405c187c3eaa01441c22621139dfdbeef62a5467a63 jruby-bin-9.2.0.0.tar.gz=79f5e8674089d2f6b260e033e3ceb4571f54cb5cedbca74ba76b52dd7cb30085a8c6c2676e9be57a8ecd9e962fbcb3682a8de38e1cdde2dc6e05bd179556edc3 jruby-bin-9.2.1.0.tar.gz=185e67da4964c9cf1d9142446efa77605e77894444bdc96bbd10fee22637f197aea9fbb0f60d3a42540e5f383d5b06fcf095d572f432544a40c2145deec81926 jruby-bin-9.2.2.0.tar.gz=85e16e38748b6ec5f237eabc8a17eb225c484c20f7ab6728f2a0f650061bc50c8a9601c04b0128e73c410ffe84dacd2b8bb37167aae5595728aa25e88c4c9b92 jruby-bin-9.2.3.0.tar.gz=97ee210157c451567946b38d33380051f82e7e8cb5f7649fffe050542ff6cd627e2c42f4c46739d1f0995c87e7338865b18844741285bf3f72364aa3c841c54c jruby-bin-9.2.4.0.tar.gz=9fe1506e862a17e261cf726e1bb70a9f612a6d7beda919a01405899660d1f4b79ee690ddf9aeed1d2b2f3cbd698be8df4f98d3815352772cc680e9646d721761 jruby-bin-9.2.4.1.tar.gz=2c41e7884cc54819da17ea9b2b773d05d3240d53a2ecb57ba430ab61308066eeb1bfbe6627e6c261f5f27ab5df7f5972656366a04a191a81b0379f620b74512d jruby-bin-9.2.5.0.tar.gz=d548eba8de420c80062021f5b6e6b203f8b7b36e3f11409919eeab87a028a18f9346f27d2cd8b1f33419adcc83fc804a36dbc3cee169ef1d93383b8f5835ba2c jruby-bin-9.2.6.0.tar.gz=20c7897da0d2b585616ea5848998fe8770517e24e16955797db2e5bff4622c348082628d304240a71a97e9551ef7aa63271cfb728eb5fb7e7d19bb48aff20d4c jruby-bin-9.2.7.0.tar.gz=8e71e27fdb149cb7470fb736e7ce858719d13ce6ff8a1e9ab1c1dc71fcc068fb601946bb28ed2feee3670b5e6ebfa8a655a6618d1badfc3763897912c41b1c82 jruby-bin-9.2.8.0.tar.gz=7f71fb5bc8c6c31b31b4c0430ae091871b21aa345777662f264c728c60212365dadb63a7a4b2fff31adbbf8a2e7cfa678d47486e28840f57b86cd45fe9354013 jruby-bin-9.2.9.0.tar.gz=7df33150858ddff586b3bd86120d4bdd80546c7f8e62245f61facbaa5527400a1aebbb33e4a1a8af52066487e3d29760eb96c7ecb9875eb9bc954ccbcb37a4d2 jruby-bin-9.2.10.0.tar.gz=f4ca024602ddab37154f5547132accb26e7c0ac2e913ebe1b5c7806727eb148249e76031ed4623ab53814beb8fb3f472e386f44d57adb5d2b3b00fb2773c8a63 jruby-bin-9.2.11.0.tar.gz=f736a9e139694c84d0a5ea42f36b972adc82c9be13e0b80bd61045c026e4fe31ccdd4be3dd3e94781c846f356e026465e41716fd2744ded2ab0ca39cd33bb46b jruby-bin-9.2.11.1.tar.gz=2f758fabf5910ea01e9c04c7600d9c666f2df3db8622f3eeb3534578075ce65013c42fe9ea6f95d4499945f795e6d566eed2b1545e149af823eb1d29167a1223 jruby-bin-9.2.12.0.tar.gz=1dbc5bb3814a6590f5e8ecf4889152684b5625fe81794a2c4064d598614a85129256002dcd239e294f209b98e3abaf9bfe70467fff48ef66b1531162dc6c3be6 jruby-bin-9.2.13.0.tar.gz=2cba016ad6a376252083122d51335610209d860c41de1902f5cd49ffc2f6b49c350b68df8fc4113c221255af4db7ec07980267b9888369811faf66db369e757c jruby-bin-9.2.14.0.tar.gz=ee3d17e875dd197f92744c7cba62320bfd3f166bbb2ca117f2910780a7c571779c0940e024351e9d4685ee9781dd207e773ace57a4a8a7011869c8b6209513c5 jruby-bin-9.2.15.0.tar.gz=678abfa7654b53b049e4103ae3647775d970c5a7192539378957c1731a3037c852e03f00a496c022c1c438d159a93be6e6f04d7563c811aeb7d261ced643d9e5 jruby-bin-9.2.16.0.tar.gz=f77e314d578a980071bddc25c65659d62e0644927ebc4e7d7d4523935b6c893e611d47ae7478a26ce7acff38b1525eac11b4a329188cdf76aeb07fab667d99d4 jruby-bin-9.2.17.0.tar.gz=e90ac1890a54a892b13adbbeab3cc5242889ff2a4b6cae535c0a3172072bda6ab01b960705ba608d6d7ebe9de5984d8384dbbb6399ab3b2e53a9e347e7849e1b jruby-bin-9.2.18.0.tar.gz=c5816ee0f7b0f559dac70ffc5277f85ae9c41ad176e43d277f820c2727387baba93998b915cadf9708fa78b5cdf3911a9c39c2ebb61a77a38dcff359f7d88a73 jruby-bin-9.2.19.0.tar.gz=3740674035e27cf7961b3570ad65536c30faab1c9a71a42a696b173379e79647411d57e0d1d06b5f9c9a970eb02a595a559191af08a083773dc4601dcfd07491 jruby-bin-9.2.20.0.tar.gz=1961f52f41e7eb9f50b0f382c8166ad988a6b3c0311c342658edb34486b073ed45c1ca5731aa319196db02cec208a4dfc86aa6b436959b80243bfa4f62629735 jruby-bin-9.2.20.1.tar.gz=598e28cbad682fbb30a9a9a9f708e6e1f4b7903300de2477e88a646c42ae594df5b768ff5379ed447f1a7168e93dbe35cc2d5db7087cb2228233a05bc4687908 jruby-bin-9.2.21.0.tar.gz=8f6cfc43ce3ebbd69781da71c5a70746ada090162bf6cb709dca41a6d968e6072ae62f657cb0bd471c648ff294044bfec3079828bdc410bd64758f76a93c3214 jruby-bin-9.3.0.0.tar.gz=06331ce32ee88aaad5e5bc0668d164ec3263f8ef3ed34bb32981b76ca33f8c817e3632550775706481094159f4feb43916ad1f9ec0f0775ad756b16cb7bd9417 jruby-bin-9.3.1.0.tar.gz=bfcbe6dc5ba736fc944af15eb387b545f6c5b987a7db88045913a02a1d30726c5d1255c4dd609aa7c2d2823ddf9d8360223b0575c93302aeef4c54eb37af9abe jruby-bin-9.3.2.0.tar.gz=b1777bfdf1964d7e527bb3dfc47b4b9e8c589cdb301c38ee8ee988bd0c392ca978ee3c1c24e4b5a65bdecff67d1bd96e2d8645e58ff7e891e3622097ea29e925 jruby-bin-9.3.3.0.tar.gz=648e70de0bda710e2dc70fd03c3dc6b798dd4c7b92584c54306c426f59ebe1168a595c4cf94328f6b44674f5507bee354efdb1cd73060b73b0171a3605051c9c jruby-bin-9.3.4.0.tar.gz=6b09decf412a76578179cefaabf01cc8740f70ab5324954e6aa43b1d8b81c37db7a99b1f94d6ced2b459f1c44c3086892b9a2c06b3ea838baf75a8fd5e0447c8 jruby-bin-9.3.6.0.tar.gz=f730522eff27462192808773cbd071cdaefae11f20bc808a8f22515a33960a730f3c87ec727ddfd9dc9b6b35acffeb50c31d75a4794a3f8daa75e1963ebd246b jruby-bin-9.3.7.0.tar.gz=265051c68d3b9dcce708b75f8267303ae84008859c88d7fe4f282395366c3f52fcf1bb161210555c0fd0a2427ff5a728ea9e337feea3d9b69559cadb2f300aed jruby-bin-9.3.8.0.tar.gz=12e795b7e1f14141bde68f52a29b0aa9f1db20515240dce83cffec351cefd25959579e01059d42dc8c8e4280493a70819d9beb1e0523e9bc10a72af16d9abd60 jruby-bin-9.3.9.0.tar.gz=f0b31d98f39a2bd4436764db0b0139433d6868bce7c30c5d6e3552616ba879c93478c499f3e4c884fd3728502916aed5c9ca1be150ae3e80ff47b36710c3f6df jruby-bin-9.3.10.0.tar.gz=aa36fd4c5de7b17f5fdcca1d1314d309e7b4470d46822c45baefbc0ad5180e5530a7054502b97b414352af485e7936659390690dc6198512ba6733d8f8d503ed jruby-bin-9.3.11.0.tar.gz=d9fd90bc64028dcc45687d2be51414b1561add20d20d1392525f4434cc684d505427f5e56827afffbbb0ce2c9cd7c1ef846b0bffa737679afb95d4c160232da5 jruby-bin-9.3.13.0.tar.gz=eb24641fb7a6b9d2039ec953388053e7333b306056f9a5bf745331b04cfc05dc4211a9b7780ce88bcee9184b8cbb219b574574d308bc2720547c116f4d4721dc jruby-bin-9.3.14.0.tar.gz=d9b02fc35133f71140cc7d891061f8190b61b3d1065f00092a2aa9a4beaf7d67297dfb0529691bd24d29607d698f39c62af9018e8307c1e6624c3104a61bb74c jruby-bin-9.3.15.0.tar.gz=e41521ebf453d6b6a9de937556fcaa972c60268285d0af4a41bfb95aad790eb47dd507e182958ca6f4889a0e03eedee0fa4bbc58e3d0407a2b6ba64a8b87a21a jruby-bin-9.4.0.0.tar.gz=fb72f8e087ea08653fa4e4225fa26694c3ff97c41f3deb8731cdb6571c6c9b21e0d8f69e2096f82ee81e2b5c283f912e2a5228c15873dbbd56de96a2ba35d59b jruby-bin-9.4.1.0.tar.gz=46003ef6192718a6372b79ebc89bee37957686224a08fe2f9a6be3c9e479784409d0269f0885c4d1f1351585c5d2cd31fd2ad45014e425bcaf2d44d66b98d299 jruby-bin-9.4.2.0.tar.gz=77e484ab73ece93e7d7283f876f0d541607c6080eee696b702b485be9794cf7e6d464f250a6d75387ee69aef3ba40ccf4f6d9fcfe324c5bc7a14376177ea2bb8 jruby-bin-9.4.3.0.tar.gz=2361f4bb2989f5951b0d3e9d49bf31e6805ce39bdc987ad3c6934daa98ab7c8e69763d40d7412ccef8adbbc198e52f4b83d00998ee12ac43fbfc6b5d88930c15 jruby-bin-9.4.4.0.tar.gz=e89dff0cc5b4a948daa95196d4bd4fee0c6901bb4aa023ae35b3679d9739967c2a74e8a4388b1835465dd39f1332a1f321b450b40c54ad2b81802645b4a31ca4 jruby-bin-9.4.5.0.tar.gz=06db948e5fa6f8559abd3b6891c7b4867b9f54b7bddf0e36d6f20cc1bfb394cdba8ea920213e545c927d1cb865e083cb1089c8e925bc608e0f8784a79b5d330f jruby-bin-9.4.6.0.tar.gz=ebdc671622baf3c42a988d6ebe24af6bfefa1f717f050f602a1b35909a3220316329aad080ee2cd9cd330da9428f8d736502573efa64bd70f093ccc123ab32b0 jruby-bin-9.4.7.0.tar.gz=4fc8b12deba7b8a53a523a41a31c248895adc9bd54a62664a27107e7205369af39c0eaa508a9a70611c3bb845524d8c5f39451c09b8b9cd87059ae15139703b9 jruby-bin-9.4.8.0.tar.gz=0d65fdfd63e2049ab3b8ccbcb4caaaab20aea5a63276aeb20ed4092191a8814f144425dd0d926aeed757ad6b4daa308a98fafe1bbd1647f3db44368066f61868 jruby-bin-9.4.9.0.tar.gz=1321e2ef5fdce909008ed764051d1bf9be0a4b8cb4a2515fa888c7c0ea48f0f4a2ab7b5c881633dba3d03449c6340255d9411a58836ed059f62d801d48565d1a jruby-bin-9.4.10.0.tar.gz=3396cdda4334552f2ca21c9123e709d72544e11b448d3091ec1a6e6f7beda2cde86ba4c15a4c0648135df34b558d254a96cb970f0a18d098126b7c5c2a2af019 jruby-bin-9.4.11.0.tar.gz=21ee47b4f6d1b6295f7f25cd74e559e6dbc8d98738d31f87c27ea657a740382e8c0e8156eafc8d270946311ebe22a7ce60d5c0499fb52cac7f9b120ed4495834 jruby-bin-9.4.12.0.tar.gz=01f74e4dad2d4357c0dd5dfa937400a3d3d3ebdc0485444359658f3e4b58c8af180ff66ce75b269afc75548cb832c4f75e891f506fb5e4004f9b12286991a8df MagLev-1.0.0.tar.gz=8da29f16e08f657b0d2f147b64f2202ac027db26f85da8dec29f926898f178ac8d11260fd6c0a539a9b9b15eb92d8c7ced86a8cab1861ae7f8a33b6fa468e5cb MagLev-1.1beta.tar.gz=7122af70530e76b9a4cee93244d6872b49616e78086bc8a5db0f32d2b846560b352c4831addbbecc72e0e3158bd52f26c2da14f5d83a515ead30efe7c538b62e MagLev-1.1beta2.tar.gz=43b4b831791074f6e8c12f6fbe6ccec2bd0446dae029d3e6717cde1e7adca8462a2d7dc49c14112cb568b5b3adc8cd051767044b41d57ae51f38aca035ff8597 MagLev-1.1RC1.tar.gz=942c1cf43f1a911230aa43bbac1cea2e2e61b5e19af755e29a6a71139d66d304efcc519072dcc3487a2da7462847530564aff4a2159d675e3270cc938a297dd9 MagLev-1.2Alpha.tar.gz=2672e3e5425df2d2ecc49f85df5845fdb083f74a7b242cac75e33d0c1837079ced8ec8b273807326d08e7bf6f95cb4f1d8351f37af8bb38c4150e6292fc553dc MagLev-1.2Alpha2.tar.gz=4492ed58b6c2b852502a2195836f1db5a80f0619467e4d7b44981a993a5e9a9ea5c9fecf1198de1891583e334bbc3c3a86648ce8afea1137ae9c73a4d76b0f4a MagLev-1.2Alpha3.tar.gz=6290895b22efb986ffd7305b7d651f20a051ab6869d51310bf891fa3eed48526a8617b69f72793e8ac0b57f99bc5de75f34235ef94de967bbdcd51857efc2af6 MagLev-1.2Alpha4.tar.gz=a621e9c615ffec503910540db770754f29bab1646d8e67650d5b82413bd551adfb0bbbb8155407ccb6f80933bfe8ae1bf9b688eb0defbc88710308bde1325683 mruby-1.0.0.tar.gz=4a0f2927da3401df23d5c19ba566995f76775def3badbb14f16510a271e7b40a833fc61841f89d8adc6d57b5b12cb453708961c16a22133c092fab8ecfcd1e3c mruby-1.1.0.tar.gz=afa99a973e9c1b72a5a418d709c4aca08dc7449c427cedef5f12db4ccefb15e11a4fd1c23ceb7e31e49d4d2e602c0b1f9dcf2e0f6cf8ea3466f0b9bee23b53df mruby-1.2.0.tar.gz=bd5de32ba52b6642358752755329fa45a954082122a8983012930056c286ac328fb52fbdd11f34ff7c80af2c0e9a6348abcd5214602aca1150f2e7ae25cad1f2 mruby-1.3.0.tar.gz=13a57306706d2d60693151919ae15bb3621e6e7ed3b5e9c6d3b1c8d44e52b898c1ad394b39946d730ff82a19f5e3b7c2a374f9dcc3b6c6f990581e504f1cb9cb mruby-1.4.0.tar.gz=d2dd6e17c7f8e890ef5b6887538cccdea08a2376ba8f9a478d7d5c4377fd4c31a4af6323b1fc73952ef80e5a4778ca22eac3d724ce7d50b76770f7e614df7da0 mruby-1.4.1.tar.gz=2cbf155ba7819211b6410ea606c4d0db3adf4f47a4018ac45285ab3e32b94f280aa0af0936ead7233411957cfca62979d14bbaaf0d8f40521cba5c12272f2af4 mruby-2.0.0.tar.gz=8379f76b7a06d280e2a2552eec2975ffa3fe85b99028f6f7c009cd908f95faf3cd36a9975f502a5779559baf3c45a4297da0b6bcc038d213a0fdee851f9d01ea mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.1.0-rc.tar.gz=f310b385cbf80c6b6ab67e2a41b931411149639c0bf778799e3358d6a9a59f508f42e3faf72fef9e8ef91088d6184c445af7933a47e4e2b2fe114362d579bac0 mruby-2.1.0.tar.gz=da28b5a078e121c75edf62fc68fad6d5810212bd53a3424d4f585ffe5bbd09f652393ffea0f4b3ddd802e5fe178554dc67040c39c9d5069bdfad4ef22ead7e8d mruby-2.1.1-rc.tar.gz=97c9cc2c79a5dbf2f634ea08532f0f512f8af6ffb99ab4eefd83fc336ca9d97b943e76643971047b4508aaddb5e40176d6cc8fa39a17022455aa15d774eb5b98 mruby-2.1.1-rc2.tar.gz=13aa32a35bd5d8f02a9bfd08d17818dbae78ce46c8b0224a029f9f191cb64ac330eddf3871f4396b9221b987a91e4cd6f8933f59814ac0018155ec8454abff18 mruby-2.1.1.tar.gz=66f9b4bebb5a7b19f5cb1be2bd8b9bc65e4dbb5d4350d238ad5f947c9195fd431f2069f7334036ea63a750e9257e59ae1aef16ac99c7e1f4e17724cd1cbe2e50 rubinius-1.3.3.tar.bz2=8b91baf429dac60663d0e4da3152a60ec6e007f5d6c17ffa430876ec88eb87ade44efae90f2e32e238fd74f1b3d54e27492315f08e7bb073220b402e1e2d3163 rubinius-1.4.1.tar.bz2=928d12aa01a1d0f6c80175d67d3b1f8b9840f69f045c8148786612316421223f4cea71e3c373ee18a3f686b1457557ae547645afe758a99d21c4818dff47b9d1 rubinius-2.0.0.tar.bz2=5c81a6b8cf7b59e08c3b9353b0eb37ce985aaf391f5064df65ffb10f6d12b668287e4d4e61e2c6b560d9234c10f0b64bba74259f2c06f1dac488928544d4131d rubinius-2.1.1.tar.bz2=154cfa93ed59835814b8b974f6d738b049942fcc2b75095d21c87647d002c879fd55aa3d1ec95414b5b66eb9926c25a5c6e3e19a7c0da7dec6edbf434acb9c68 rubinius-2.2.10.tar.bz2=c2168e676059c197123916dd948b83e39bb96e99786bdcaef2e690936b761fedb13740b9f19883f991f1b475f3249ea1696213e8448c41ae15dfc14b3d4e1fda rubinius-2.3.0.tar.bz2=d0f3dd5e3b891bff2eb79b7810c6041e15fbbf0606c379f89575cefd829ac7a394b0c12ed3c5a4d452730797bc0a2c6c82646a19a078b56dcac7acad015a4559 rubinius-2.4.1.tar.bz2=7bcea320006b8cd3d122c407d89c325973a74c32456ba0b649657ac848f4682f2eb7455c13e3007709c22932bc2e1b65e2dd43fda0d3c9f993ddf8a74d1e2cb1 rubinius-2.5.0.tar.bz2=ac94d5bc11524e715fc24c1de33f4d358c2cd65e92fbb64c850dc8151d2a712d268227733c99fcffe298c3bdd6ce080c5e9553e4e8f3238868323498a9d10cae rubinius-2.5.1.tar.bz2=9315f76126d0aa754ee63b190385c24cb084f36293a99aa30fc482fd880d5393aabce361e09ff5514bc2540dfede8e179b7e9212b2dd59bd14ca2aa69d209a83 rubinius-2.5.2.tar.bz2=b48bd8d54a450441a50904b07c75c8d31b59822830a74c952720d6f8d2d86e6a27a84775e975ff2bf55bf3346f34e69d742f308933a9d8476e5e78109cb525f6 rubinius-2.5.3.tar.bz2=b923446d325dc3ce5ad28af9ee527607fae3259b85e85aeff97c1bebbb4520daf70616957b1c0ded900ed19e59025826dee66977c19cd2a2d4e9a0296811eb20 rubinius-2.5.4.tar.bz2=75b7ddbe218e4c92210dbf5a06eb8b3c3aa028d16146982a4e813e3af10a90d33f3e239f4508469c6aba17f02cb8bd10e96a204839975e06519869cacd456c92 rubinius-2.5.5.tar.bz2=a862146ddbbdcd4439eb64e78bfe6d09ae4cca540d19869618426d3f451544658713fe8eb7d46493785eb0cc721077e624293cc44d68eea3ef584967b43a18d7 rubinius-2.5.6.tar.bz2=9a0bdb5d77f80f163925ce409d00be3cee34871baae8bcfdb34c3c7545b92fd14102fecb970e42b3012588d299e504b724025f397a5a00e181ab75f1448e426a rubinius-2.5.7.tar.bz2=8048110b3ba4e5ff8c3f35282896067e1b1b46dccaf9ef4f6c9b6098782f27591ff59ccae0234fd7e881e3aaf17a0b420286b1b52ecd2cb672249655795a6982 rubinius-2.5.8.tar.bz2=23fca2f9747d2b0e544af890c3baacfb7b3a009cc59cbe653762ccdd827a6c915dcc57902d317fa1f7a81f8c12682f6c3a93195331b6de0f705b118e2e8c13f1 ruby-1.9.3-p550.tar.bz2=38767e98df25484f7292437f3cb0f798b3a43e9a7414a5401677e96ad1cc367cb3fa23ac3abe568d5bf2b2ca553713469a8770d41b79bc63daf3fa59cb4e15c6 ruby-1.9.3-p551.tar.bz2=5ea40f8c40cf116030ffdedbe436c1fdbf9a50b7bb44bc890845c9c2a885c34da711bc1a9e9694788c2f4710f7e6e0adc4410aec1ab18a25a27168f25ac3d68c ruby-2.0.0-p576.tar.bz2=e089cca4867cd9c715f4f37e40a1db9af6ba0c74b47e79568121bb980476f8877a87ccb848b973381edb4667c0c73165f5e1761f60db839e67f6326302dbd864 ruby-2.0.0-p594.tar.bz2=8301a51c73fb63a8cfeb14af47d0c18b5bc3c45e3d62fc2ed56a673a1cd6b0015c41f275e70eb14a9e40036b1530977199321e05285e107a6adf58514bef1b3d ruby-2.0.0-p598.tar.bz2=10026a04e01a8ad14ea9c99bbdf4f7d04029b73ee0c01bbf6c2eb2817332d49adacf127b646693b67b5dd7010eaf3b696b23b6335cc0f7ee5a6b56dbba0f6f82 ruby-2.0.0-p643.tar.bz2=453117152e6facdcd5bedaa9c3b1e349382bc5bc1dd3d650ec58b398cb9d2519a2822d05da10bcc5dbbb4f513fc5fef310caa3529d176fa2d453befb28e4d83a ruby-2.0.0-p645.tar.bz2=e9ca186b1cf0877cdbecd43dcab2c5161a53103e926609d5e1b769a4980eab4571bfd0951788b4fc92dfd9d10175b0f5f36ea2c7289e575a9db9b62c02f93185 ruby-2.0.0-p647.tar.bz2=3416af771ebb0b27ceacf23d309bd2a1ede832c2edf48a5ca46f0b0b84b2ab94fb6362a0c7fe4f77b21253539db8161ae26d23a78d1ba729bf03812454d93d04 ruby-2.0.0-p648.tar.bz2=609acf6d6352c9746e21cd7f0e7d29f5eb522e6fff2d5fad0431d63c568cc084ed5b7141f84cd33512d8213200d2d1a22e8d7df71469a980a3a92886133fea38 ruby-2.1.3.tar.bz2=9b48adb161e5e4550a71f61252c8edf59944affb82250babcb64240749af4b672e4a54ccd0feac5b36ea447a358b350b5080125ef2d4acf6e9e8b1ab82612f48 ruby-2.1.4.tar.bz2=68db1567751166c5e7d24b6e5015124b8a15568c50556e1f429486395352fa56c4a195a74820ab135697924149d014b445b345a1b9755678aaf824fba79c606b ruby-2.1.5.tar.bz2=d4b1e3c2b6a0dc79846cce056043c48a2a2a97599c76e9a07af21a77fd10e04c8a34f3a60b6975181bff17b2c452af874fa073ad029549f3203e59095ab70196 ruby-2.1.6.tar.bz2=75d58120b5f387bcadbf6d19e85624f78c74f81b9018baef39207214673f7ebc0700ab31145acd88b4071c896ba8e1302a29c90955bcf5f8c863634125022aa6 ruby-2.1.7.tar.bz2=f610d2dd6a93f0a5e84e04ddedf847bbcea5dd3289b3164cdf60be64f67a80dfd5f9836ea5d169970cd0ce24a7e05ea6190699706567cb0d5cf450de6a70e445 ruby-2.1.8.tar.bz2=7129c012bca7f0e7cfa51c73ba0898697f7a9f31abd5ae57d38be5b6b646fd80ab33be9b262cd3e2486c66f65aaf4ec6e881ae6e5a82ec9df62f00fa072510fc ruby-2.1.9.tar.bz2=a86422132e4c64007a84a91696f4557bdcbc8716fbfe1962f1eef3754ee7f994f4de0b5b7e7231c25057515767040d5c4af33339750b6db15744662e9bd24f38 ruby-2.1.10.tar.bz2=4b7213695416876e4de3cbce912f61ac89db052c74f0daa8424477991cfc49b07300e960177ff576b634a97ee8afef3c5aded5d5806329dbd01d0ce7b42b9b63 ruby-2.2.0-preview1.tar.bz2=2f1190f5d8cd1fa9962d1ff416dae97759d032a96801d77bc6b10136eba59dde1a554ff8c0c2d9ce0d3c1361d4dd12ad573b1266fd53b90ab238d8ce39e6b862 ruby-2.2.0-preview2.tar.bz2=c654d4c047f9463a5fb81eaea0fa5ab7bf316962bc7fb0fb356861e6336ce8ce2162c7779d8b27f72d7bc0e9604b5e5af2910abcb0b0a1f197b3138eaddfd4a5 ruby-2.2.0-rc1.tar.bz2=181201168360bee37dceeef3481a69e8a333a5d329680031fd9d371d30ac64460bbdf4db07546133024f541774e51301f1630cfd988c5e5bf2464834f3abe6bf ruby-2.2.0.tar.bz2=04edc53e8cd1732c3ca61ebeb1d6133614beb10f77f9abb80d8d36352fe8aa205112068e460bf600b2c7e81e0ddcc3b311e7e027c320366f1bd992b3e378a6ad ruby-2.2.1.tar.bz2=af6a8e75a66b953ff33ecbca5111bcf1c6560b6b48b370b700820fcbe91363146c5ac8abd670a14e693b44343ae598bab472ed2902834304c03ffcd9550886d1 ruby-2.2.2.tar.bz2=d6693251296e9c6e8452786ce6b0447c8730aff7f92d0a92733444dbf298a1e7504b7bd29bb6ee4f2155ef94ccb63148311c3ed7ac3403b60120a3ab5c70a162 ruby-2.2.3.tar.bz2=795f1b66a6d4f0baef897068899c3a1a4370ce1268618e6a7d6d4720234444259f371d1ba2e174b2f7580265e9f18eda3f295fbb087447aa6e8fb7a0f07526ce ruby-2.2.4.tar.bz2=d27ca2f19c214ce87f906b57edd41f2f8af35b2871c191470facded9cfda15ba46e5c3bc7d5540225a38da6bd65050fcc8aaa4ffbadbb6bf7dc891c1821da0df ruby-2.2.5.tar.bz2=d3224814361c297bc36646c2e40f63c461ccf5a77fea5a3acdcb2c7ad1705bb229ac6abbd7ad1ae61cbe0fefd7a008c6102568d11366ad3107179302cd3e734e ruby-2.2.6.tar.bz2=7a93f72d236521ac28c8a0bc0c73cf805797a8813d22e02f42c5fc05dd39f6e422817272e0db6a24c245f6f97ad4b2b412a9a47ac50156ab186df596918a5f34 ruby-2.2.7.tar.bz2=83756cd1c91516962b83961e0de59d858618f7ed3e9795f930aab4f199d47a95ed8f867d8aa9b51d508be26d9babf2140117c88241168bac41e6ef702cfadf20 ruby-2.2.8.tar.bz2=aa1c65f76a51a57d9059a38a13a823112b53850a9e7d6f72c3f3e38d381412014521049f7065c1b00877501b3b554235135d0f308045c2a9da133c766f5b9e46 ruby-2.2.9.tar.bz2=2a8c8770fda20a22b79c9115b6f468f8e7ea1092c84a5089af7a3122163e5ad298b493e6637e4d93ba02d899d8a619c94064dda8ac98cf3b93f64f45d5401085 ruby-2.2.10.tar.bz2=f8ec96c2a5f4ecf22052ee0b1029989ded52d7bf5d41be24fef67e732e76f72119302240bca08f0547510a9cd29e941a32e263cad9c8a2bf80023d6bc97b2373 ruby-2.3.0-preview1.tar.bz2=ae6d46c87f59e1fd3703b76dfc45bfcf208625f95ab9f4559f0b9f7050e8681f1a6e419f5fa06b704c83e56879c3a9ff1337dba443bcfca76fadb49c97d97a93 ruby-2.3.0-preview2.tar.bz2=e397f321d4338edba8d005d871408775f03d975da90c8abcfdb457a1bc7e6c87efe58c53b2c3bc122e9f58f619767b271bcc8d5d9663ed4b4288c60556e8d288 ruby-2.3.0.tar.bz2=77b707359e754c3616699d21697752741497c719dc3d6fdfb55ed639e76d52560d293ae54cbe5c63be78dc73fbe60f1b8615d704d017bdfe1994aa9747d26a6c ruby-2.3.1.tar.bz2=a8659b96a3a481a3dbdbb6997eb18ff1f8cd926a9707a90d071e937315c21d372c89252f0d44732ae5007d2678fda8c8fbceafa4e4b4ff500d236fb796284d8d ruby-2.3.2.tar.bz2=78699bae5b0a2382a58f9d51f7d891341f00ad3a90d9ca06b68b1b245cf5acebc3a82133e39bf6a412ac999a5c0f778a0dab177c2569ffbee085ffff6f6ec38e ruby-2.3.3.tar.bz2=88f7782effd35bfe0b4c33140b5eb147d09b63fbb35b9c42d2200c010f387e2b70984ead1eca86569e8ec31f08b35289d440c0ca76b662dadb760f848e863d91 ruby-2.3.4.tar.bz2=ad1f16142615498232d0de85149585be1d2c5de2bc40ec160d272a09e098ef6f317d8b25026001735261fd1c5bc0d1f8513a8474e89f0d86eed5b2fe7338d64e ruby-2.3.5.tar.bz2=3ecc7c0ac10672166e1a58cfcd5ae45dfc637c22cec549a30975575cbe59ec39945d806e47661f45071962ef9404566007a982aedccb7d4241b4459cb88507df ruby-2.3.6.tar.bz2=bc3c7a115745a38e44bd91eb5637b1e412011c471d9749db7960185ef75737b944dd0e524f22432809649952ca7d93f46d458990e9cd2b0db5ca8abf4bc8ea99 ruby-2.3.7.tar.bz2=e72754f7703f0706c4b0bccd053035536053451fe069a55427984cc0bc5692b86bd51c243c5f62f78527c66b08300d2e4aa19b73e6ded13d6020aa2450e66a7d rubu-2.3.8.tar.bz2=6d79e0d25757fd37188a8db3e630a52539bce7927fcb779a2ce9a97b9e5f330753035c16843552f1a1fb6c9a1e5c0f916b3cc8b5c0bfe81e20f35f8442e40ae8 ruby-2.4.0-preview1.tar.bz2=c9873e8686eb54dbde61d6e23cd5197beebccd6cb31fd12c82763ebe1fde17095d7514d9d93c2c82b238032c98691df5479dc2d666a8a590e0fc54450ec29cb5 ruby-2.4.0-preview2.tar.bz2=0c9a59a2f57a99c4ee8539a30f41da1de7547566203f89d856e1be9dbb44365754e6c470145dc9336eb324e0feb2f53d9fef18a1564968ac21f9ee528905949f ruby-2.4.0-preview3.tar.bz2=6602c65a7b1e3bc680acc48217108f4335e84fdd74a9cf06f2e2f9ad00a2fccacf9fa035a912bc9d5cc3f0c7a5e21475971dfac37b0364311ef3645f25c7ddf9 ruby-2.4.0-rc1.tar.bz2=b43902ac7794487197df55a45256819d2e7540b77f1ed4eb68def3e0473ee98860a400862075bafadbde74f242e1dfe36a18cd6fe05ac42aae1ea6dddc9978ce ruby-2.4.0.tar.bz2=bef7bb53f63fb74073d071cc125fb67b273ed0779ef43c2d2969089b9ca21fff1bd012281c5b748f7a3c24dd26e71730d7248c05a01cb23ab2089eb4d02115fe ruby-2.4.1.tar.bz2=1c80d4c30ecb51758a193b26b76802a06d214de7f15570f1e85b5fae4cec81bda7237f086b81f6f2b5767f2e93d347ad1fa3f49d7b5c2e084d5f57c419503f74 ruby-2.4.2.tar.bz2=1a5302d2558089a6b91b815fff9b75a29e690f10861de5fdd48211f3f45025a70dad7495f216e6af9c62d72e69ed316f1a52fada704bdc7e6d8c094d141ea77c ruby-2.4.3.tar.bz2=fb4339e30c04d03b1422b6c32ede45902e072cd26325b36f3fc05c341d42eea6431d88718242dcc9ce24d9cad26f3d26772f2e806bd7d93f40be50268c318409 ruby-2.4.4.tar.bz2=ae632852a5f413561d8134e9ef3bb82adb37317696dd293ef92cb76709ecd45718f14116ecce35b12f1c2dd53ccae8dabc7a924a270072b697512d11f4922347 ruby-2.4.5.tar.bz2=7034fcaeaee41f14bc0ecce0d3d93bd1abe95310e1a0b95fac66eaba867adfb2bf7ba4d0d70d67a15ce8df16052dee405c38cdb18987602e64a2f701d37d3df0 ruby-2.4.6.tar.bz2=292802984e5cff6d526d817bde08216fe801d255c4cede0646e450f22d4a3a81ae612ec5d193dcc2a888e3e98b2531af845b6b863a2952bcf3fb863f95368bcf ruby-2.4.7.tar.bz2=2665bca5f55d4b37f100eec0e2e632d41158139b85fcb8d5806c6dc1699e64194f17b9fe757b5afd6aa2c6e7ccabba8710a9aa8182a2d697add11f2b76cf6958 ruby-2.4.8.tar.bz2=2d7e0f5ad766e2a12a1b53ff838e6bfe86244ffb7202196769c25e9df6f71f3ccdd8605e7ef35c53e54310bc82caf6b368ad5111dd0a3ad70a3aae1a7be93f08 ruby-2.4.9.tar.bz2=d485444dcd025a261a16bd740dae63c0aa23e4138a095584e7a83aec47af34415c7d9cbc1313e92da2ec416b11bfddf20bb1a7b60c80f12906d11ef27409b3e8 ruby-2.4.10.tar.bz2=4d730d2d7cb96b002167ee358258f2620862a5a6d8627cfa5b49bd43c6e59c50c0f437b959d4689b231d57706ec7d5910d9b144f4ca1c1ed56bc879ed92e8a59 ruby-2.5.0-preview1.tar.bz2=2d39ef64aaf7a52014905f4ad59b53e83b71433e50a9227f9f50cbb7a2c9a5db9cd69fa7dbe01234819f7edd2216b3d915f21676f07d12bb5f0f3276358bce7f ruby-2.5.0-rc1.tar.bz2=bf0eb114097f9e505ff846f25e7556a2fb393573b4e8b773f94cf5b47998e221f3962a291db15a3cdbdf4ced5a523812937f80d95f4ee3f7b13c4e37f178d7a7 ruby-2.5.0.tar.bz2=8f6fdf6708e7470f55bc009db2567cd8d4e633ad0678d83a015441ecf5b5d88bd7da8fb8533a42157ff83b74d00b6dc617d39bbb17fc2c6c12287a1d8eaa0f2c ruby-2.5.1.tar.bz2=82e799ecf7257a9f5fe8691c50a478b0f91bd4bdca50341c839634b0da5cd76c5556965cb9437264b66438434c94210c949fe9dab88cbc5b3b7fa34b5382659b ruby-2.5.2.tar.bz2=9f9388a162a3ae9c14ec8999fa3b12ff5397de14f55996cc8761d21c757113db37ace4d326b9606de7ad3a5875aa94fec900dd9b81b2fb0dff558c39422f4aa1 ruby-2.5.3.tar.bz2=6fe89fe9d406bb454457442f908774577369ab2501da4fd15725ccbab77675b88faad739a6c8ad1c7b6690b439a27de5e08035b7546406cdeca65c7b295e2c77 ruby-2.5.4.tar.bz2=3c4f54f38ee50914a44d07e4fd299e53dddd045f2d38da2140586b8a9c45d1172fec2ad5b0411c228a9b31f5e161214820903a65b98caf3b0dfeeaabf2cab6ad ruby-2.5.5.tar.bz2=1b56aa79569b818446440b9f2d13122bf7c2976ab9b2865f5fb62d247d7768dd4ac5b5e463709ffec0f757bff7088afd293c2a8c5349c3780763b6444bb354a8 ruby-2.5.6.tar.bz2=e4511d42d19a7bb39ea79f66bb4eca54b63c2a9d27addc035d6d670c1e59ee48a0c6e9c6bc7d082d1f1114b0668831dce3b7422034517f3c4a06ced0e47a7914 ruby-2.5.7.tar.bz2=7d6a7d41b4f3789f46be5f996099f3eb8321aa4778b2a8ff44142654e769ba4ba2df127dd0f267547e4c8cd6ff46364f18e79838df54fcd7e3fb714294ee0099 ruby-2.5.8.tar.bz2=037a5a0510d50b4da85f081d934b07bd6e1c9b5a1ab9b069b3d6eb131ee811351cf02b61988dda7d7aa248aec91612a58d00929d342f0b19ddd7302712caec58 ruby-2.5.9.tar.bz2=12f58e14cfa6337065b0e82941e39b167813920eb54cbdb4ac4a680dd0cb75d2684d341059e7b4d0da1292bfc4e53041443bd14891a66f50991858b440a835c8 ruby-2.6.0-preview1.tar.bz2=d9cb270529a97670d54f43a0236fab072714e715c39277dab70b7a1843ec818e6700e47e1384c7256f9e0ae41ab2c0b768a0de38a5ecf4f4fff5da6ef5ad4944 ruby-2.6.0-preview2.tar.bz2=3872227e9b1c97c206d19bf1e6ce15a38ee15a26c431b4436605dea67affcf16372358984df76b35e7abaa902c15c16f533ac7af47e3031dea9451bbe459b693 ruby-2.6.0-preview3.tar.bz2=d1693625723796e8902f3e4c4fae444f2912af9173489f7cf18c99db2a217afc971b082fce7089e39f8edd54d762d2b4e72843c8306ed29b05ccb15ac03dbb5b ruby-2.6.0-rc1.tar.bz2=cbd6281b2aab6fbce3f699c1ab57e5423304dca7a547a0b3cd4e8e980326dc7b85b2ca2bfaf3f3a648d40f4222fdf1740d81d422790ee7ae1ba1ed33eb11e3e8 ruby-2.6.0-rc2.tar.bz2=9bfbe83fd3699b71bae2350801d8c967eb128e79b62a9d36fc0f011b83c53cab28a280939f4cc9f0a28f9bf02dce8eea30866ca4d06480dc44289400abf580ba ruby-2.6.0.tar.bz2=ca3daf9acf11d3db2900af21b66231bd1f025427a9d2212b35f6137ca03f77f57171ddfdb99022c8c8bcd730ff92a7a4af54e8a2a770a67d8e16c5807aa391f1 ruby-2.6.1.tar.bz2=fc41429491935b89532733b95476ab9f8a4efc310aad8f4c2bd3b68fba08fd7b6e9ac84c6c88ca892022d1ba76435295f3299ea466f9b5453c07d41cb539af59 ruby-2.6.2.tar.bz2=cad678d2ced4085e99009e4fef83c067dd0e6ead27a8695bc212c0e5112a7fa09ceb27f82638faf91932ef8bdd090f844e0a878ffdf6845a891da4b858588aa0 ruby-2.6.3.tar.bz2=c63c3f527bef88922345f4abb4b9ad467117b63f2132e41722ea6b4234cec3446626c3338e673065a06d2894feee92472807c284cbe613a442c8fda234ea7f88 ruby-2.6.4.tar.bz2=a9fa2f51fb5f86cd8dcaa0925fe6f13d4f19f110b5d4c5fd251f199d16aaf920db39ad3bb50460eb94ab8d471ab2ac8bb54daea4a3bb080eaf45250aac3437fe ruby-2.6.5.tar.bz2=28e0b04ac8ca85203eb8939137b5e5de4850c933faf7f62fc69648fe1886faaabf6cdf48382f9d9585c1720876d10b41dafd33efaeb23341c309917fbd8a6e21 ruby-2.6.6.tar.bz2=001851cf55c4529287ca7cc132afc8c7af4293cdef71feb1922da4901ece255ec453d7697b102a9a90aef2a048fe3d09017ea9378ab4a4df998c21ec3890cdbb ruby-2.6.7.tar.bz2=311ec56d23d0de7a163f66c1ef4e5369b822f8409f8e1f3a25785c803f01c68dd13aa8ddcfb3a0fe6a97bf321950f8d6cd75b2babcb04158e791601914666f7a ruby-2.6.8.tar.bz2=51806d48187dfcce269ff904943dd008df800216ad4797f95481bdeecc2fbac40016bc02eabfff32414839ebb2087511d25eebfd6acead1a1d3813be6c10edf7 ruby-2.6.9.tar.bz2=ff067ebc059094c0a9a0debf54a37aad2c85f7ed47be59299041c9c03a7701529f5063ff32a1b8c56d48ee8585015acba63602ed0176b2797d263d43d67aa241 ruby-2.6.10.tar.bz2=275a0f329641e6c3d3d3c33ffabf585195187eb3baa4fb1dfd35999fa0a80bd5925943fa2711827ac00dffb6c9a1deeadabaf2e9ee401d56926fc167db5ae4a4 ruby-2.7.0-preview1.tar.bz2=a36b241fc1eccba121bb7c2cc5675b11609e0153e25a3a8961b67270c05414b1aa669ce5d4a5ebe4c6b2328ea2b8f8635fbba046b70de103320b3fdcb3d51248 ruby-2.7.0-preview2.tar.bz2=7066ececebbbba4b2933ba1a4f70cdef373169910802259a3e52b4fc144ba298f3cffda4be5fe8a7be8ef769ed43076fa046a9ac2c13bb733475b9852112c6f0 ruby-2.7.0-preview3.tar.bz2=5d8e99e3fd984c7d05c0bc483e1504e81ccdb920cbb2d78cad3c314e197b30316b692fd0199f836acac41246e3a713cb81dc6dd64c27cba56f807df4c193db1a ruby-2.7.0-rc1.tar.bz2=b5f96227775f8bdf19f944a555d0a83d7e84b37bd31fe4b8ac008a3272b1a28a4d94abbb1b5570ee32ec0690ba9d476b837a020a5194bee14bebf6f0e768bc79 ruby-2.7.0-rc2.tar.bz2=9010f72bb3f33b6cd3f515531e6e05198f295bb2a8a788e3a46cdfd776a9f6176b6ba8612f07f0236a11359302d2b77fdecca1dc6be33581edbb028069397a0a ruby-2.7.0.tar.bz2=8b8dd0ceba65bdde53b7c59e6a84bc6bf634c676bfeb2ff0b3604c362c663b465397f31ff6c936441b3daabb78fb7a619be5569480c95f113dd0453488761ce7 ruby-2.7.1.tar.bz2=4af568f5210379239531dbc54d35739f6ff7ab1d7ffcafc54fed2afeb2b30450d2df386504edf96a494465b3f5fd90cb030974668aa7a1fde5a6b042ea9ca858 ruby-2.7.2.tar.bz2=f07592cce4de3532c0fa1c84d53a134527d28ba95e310cd3487ac321c49ee680faeace285de544ee6db432a90aa7538a1d49ff10c72b235968ca362ef9be621d ruby-2.7.3.tar.bz2=e9236138be3e61380140f2e0d42f8fb82ad8f5219d454de2f6c2ec546bb208acc8b0f2020f23e6446660d2b3b9ae873cdd8298471f166a5f1efba8e80b05e746 ruby-2.7.4.tar.bz2=f144c32c9cb0006dfcfa7d297f83f88b881f68c94f0130346c74dfd8758583a68d22accfd0fc9f31db304ab5ff0bc135bfb2868145c0dec1ee6cec5ac6c3725d ruby-2.7.5.tar.bz2=0aa2ac44bc22859a39c43d08b7c7f457df05c2dc36b2574fd70ca399143ef1000dc5e496212db9eb055bc4258523d47d26db3c57a1a5a5d63cf1b3de9f81645a ruby-2.7.6.tar.bz2=4f7f3624afc43da25ebf0f01d5a2f92f72f94bab7423587cfd3920e089b479bf559b159adf2891b996f7e6a98c008a4f73a4a2170e2f8619417660ac1ab24bdc ruby-2.7.7.tar.bz2=24cc772ac1b56d3bb423f1b33716f221bf534f3717a506bf8235a698f8a454db7d79d94ae9a84067153c2f737b3f8f6085f34e36cc04be0d75ae2fdd57718870 ruby-2.7.8.tar.bz2=3a9db8d9e79318f869417f2ebf3365907febc0d1428116eabf3253c51d8420f255782b32fa30a54802b9f5f4187fad80dab0611cc80436feec84db87b0456ec6 ruby-3.0.0-preview1.tar.gz=b94892951f842a1538f4b99022606ac2c0b5031f1ede7eef3833a8caa9ed63e9b22868509173bfefb406f263c65211db75597b152b61f49e5ba2a875fce63a27 ruby-3.0.0-preview2.tar.gz=6fa4191425ae71e41894b60bd9c31d483a562ee8216886360ce18238ab48115b95be0367708612c45f634e7584fba8940a524ba0113ce0f36ce4df78a112d0b7 ruby-3.0.0-rc1.tar.gz=798926db82d27366b39be97556ac5cb322986b96df913c398449bd3ece533e484a3047fe35e7a6241dfbd0f7da803438f5b04b805b33f95c73e3e41d0bb51183 ruby-3.0.0.tar.gz=e62f4f63dc12cff424e8a09adc06477e1fa1ee2a9b2b6e28ca22fd52a211e8b8891c0045d47935014a83f2df2d6fc7c8a4fd87f01e63c585afc5ef753e1dd1c1 ruby-3.0.1.tar.gz=cb81db2c9b698cf8159b2ca6507f4c7f171e4eb387f5730c4b658ed632b7900a169808e6fbec0ee80598d937030ad5d9c56b63a2a339373ec5d9e1c06b7661d0 ruby-3.0.2.tar.gz=e1fba6f5429b5fca9c3f52a32535615fcf95fafa415efc71c46db4cce159f249112c01574c305026be5c50140335696042e47a74194caea045acbfaa4da738cd ruby-3.0.3.tar.gz=39dab51a0d784a38302372b99f96205817d466245202586d22123745761e9cb39db128ec2b984ebc3919b9faf2adf828d19c97d3fb1e56d44be0a81dc5d11b87 ruby-3.0.4.tar.gz=0dfded6826063c1b39bf625a6e13b46c109cb160c8648b78f0965f70e7c7a1a65f1c117fc8f2cf8bdb34d7cbf79fecf1f45d169d2323406d66ab27b18bde1d22 ruby-3.0.5.tar.gz=ea45fcd2ca53b87f18fd8696d00a1e340d2495443216aaf87d3f643cb5bd8bb614a1faacd82d07e7f2b72172397c728316a82d7c34a7b4566191268ea517ccf7 ruby-3.0.6.tar.gz=d596bfd374ae777717379b409afe8ee1655ade0c0539ada7a10af4780b818efe25a28aa50a2a7226741d1776d744e10ad916641f9d12fb31c7444b0a01d0e0cc ruby-3.0.7.tar.gz=66e5116ddd027ab1b27d466104a5b440889318b4f2f74b5fdf3099812bf5f7ef77be62fe1df37e0dc7cd5b2f5efe7fee5b9096910ce815ca4126577cb2abfaa7 ruby-3.1.0-preview1.tar.gz=63f528f20905827d03649ed9804e4a4e5c15078f9c6c8efcfb306baa7baafa17a406eb09a2c08b42e151e14af33b1aadbd9fb1cc84f9353d070b54bbf1ff950d ruby-3.1.0.tar.gz=76009d325e961e601d9a287e36490cbc1f3b5dbf4878fa6eab2c4daa5ff2fed78cbc7525cd87b09828f97cbe2beb30f528928bcc5647af745d03dffe7c5baaa9 ruby-3.1.1.tar.gz=a60d69d35d6d4ad8926b324a6092f962510183d9759b096ba4ce9db2e254e0f436030c2a62741352efe72aec5ca2329b45edd85cca8ad3254a9c57e3d8f66319 ruby-3.1.2.tar.gz=9155d1150398eaea7c9954af61ecf8dfdb885cfcf63a67bbcf6c92e282cd3ccac0ff9234d039286a9623297b65197441438c37f707e31d270ce2fe11e8f38a44 ruby-3.1.3.tar.gz=550cfda2ae492312009a58316e18fd77ea92852718b37443bcd76aac84ba6694fb841fe19bf23bee099f96f5aeed9d03e77c8c02fb194e414eca5f707adbbf90 ruby-3.1.4.tar.gz=41cf1561dd7eb249bb2c2f5ea958884880648cc1d11da9315f14158a2d0ff94b2c5c7d75291a67e57e1813d2ec7b618e5372a9f18ee93be6ed306f47b0d3199a ruby-3.1.5.tar.gz=23661cb1b61013d912b7433f8707bbcd723391694d91f413747c71428e74f8c7385c1304de7d08b70c9fa3bd649e4eb5e9acb472d89dc2ad5678cc54855a24ae ruby-3.2.0-preview1.tar.gz=d24e77161996c2085f613a86d1ed5ef5c5bf0e18eb459f6a93a0014a5d2ce41079283b4283d24cb96448a0986c8c6c52a04584abd4e73911ea59cefeb786836e ruby-3.2.0-preview2.tar.gz=5e9ddcb1a43cff449b0062cc716bfb80a9ebbb14a1b063f34005e2998c2c5033badb44e882232db9b2fceda9376f6615986e983511fda2575d60894752b605cc ruby-3.2.0-preview3.tar.gz=860634d95e4b9c48f18d38146dfbdc3c389666d45454248a4ccdfc3a5d3cd0c71c73533aabf359558117de9add1472af228d8eaec989c9336b1a3a6f03f1ae88 ruby-3.2.0-rc1.tar.gz=798157d785ebae94cb128d3c134fa35e0e90c654972e531cb6562823042f3fb68a270226f7b1cf0c42572ef2b1488a1a3e44f88389ad2a6f9ca4b280a2a8e759 ruby-3.2.0.tar.gz=94203051d20475b95a66660016721a0457d7ea57656a9f16cdd4264d8aa6c4cd8ea2fab659082611bfbd7b00ebbcf0391e883e2ebf384e4fab91869e0a877d35 ruby-3.2.1.tar.gz=f8bbff5e237b501f4042ddc70a19ac1ce74f72f147c90daf7f3007a940136abde37c12a0f7444f713ede09ba847c2cc2897a1742823832e3dc8cce80073164e1 ruby-3.2.2.tar.gz=bcc68f3f24c1c8987d9c80b57332e5791f25b935ba38daf5addf60dbfe3a05f9dcaf21909681b88e862c67c6ed103150f73259c6e35c564f13a00f432e3c1e46 ruby-3.2.3.tar.gz=75aecd9cf87f1fa66b24ecda8837a53162071b4f8801dcfd79119a24c6e81df3e3e2ba478e1cc48c60103dfaab12a00cfa2039a621f8651298eba8bd8d576360 ruby-3.2.4.tar.gz=b695b98dac7bb2c8755a106d949cb1b1b91551092fad263765171ddf8a4d86585259ffab5f7cc9bace70143d645dbe5932cfc61c6dba7817177de391d76bcd79 ruby-3.2.5.tar.gz=d86c0151fabf21b418b007465e3f5b3fd0b2de0a9652057fd465b1f7e91b01d00f83a737e972ea994a5d9231e8cb27e64e576852390fe6c2ad502f0d099fe5f4 ruby-3.2.6.tar.gz=26ae9439043cf40e5eddde6b92ae51c9e1fa4e89c8ec6da36732c59c14873b022c683fb3007950d372f35de9b62a4fabbbc3ef1f4ef58cd53058bd56e1552cbe ruby-3.2.7.tar.gz=174e70ac20a21ea77e2c5055a9123a6812109fd7b54c0f7b948312b8159eedbfb11c06120390c158430ca8543e36893da6c809883c82757082d22e08004c5055 ruby-3.3.0-preview1.tar.gz=0f891f140ddc6372aa7c4459f8784126e0c341db7b80e72c51e441c5153c43c2d7b965f7807c076862ac84b9b8b0c6a66bbf66fc341746016151397bb21c782a ruby-3.3.0-preview2.tar.gz=1c5a13e519e8487fd40d932b96d14fa729521925c288e7841ab5eada628e506ceca2605bae36eea1aa505d9253383d53cd933b7a4bff96e6de5b1130c7c558e6 ruby-3.3.0-preview3.tar.gz=94db07a6958c09809b2e5b597fa55a121074e8bacb3bf588c83cf0d35b07a8b070172035a49d1abf0d8ee364a9ace824f34e677f7327ffe1acdbab0938ac49c4 ruby-3.3.0.tar.gz=26074009b501fc793d71a74e419f34a6033c9353433919ca74ba2d24a3de432dbb11fd92c2bc285f0e4d951a6d6c74bf5b69a2ab36200c8c26e871746d6e0fc6 ruby-3.3.1.tar.gz=0c8ea922a79152ac7adbfb2541320565bce6a631692fd39d499a06f53ad6339c16fad8374d171351ed63f7bda3312b26d4f8c058c5b6df3d7548fde372c718f1 ruby-3.3.2.tar.gz=a15ba8d6c2830fcd1f2b36f671acf9028c303ec78608fd268da0585db8e95ddd971666e8029bcfa2584da2184a6534e1f2f2da07fa7ca4494e8d842eed206f00 ruby-3.3.3.tar.gz=0388a96127eb6e53b836f7954af51ff62b84cdb7abeab823cb1349993d805b151204e426b9ac04ca8333fbd5e01c386d58bc37d34c4e9286b219dcda7542a150 ruby-3.3.4.tar.gz=56a0b88954a4efd0236626e49cc90cdb15d9bfd42b27d7fc34efae61f500058e58cb32c73fdef5f1505a36602f4632d6148bf3bd1df539cb5581ae157c78c22b ruby-3.3.5.tar.gz=5c482059628ef9de5d8a6ad4751f8043f2fc2b159b768265be7f3ee0574ad51d9500ee4fc9146c5978fbd51313039c3de39e7b7a4dedc9bcd5d09a41a713f1a7 ruby-3.3.6.tar.gz=4ae22f5c2a1f7ed84aab7587ff04ce4d9933cffe4347deaef0ab88d22c9780f274c1664a4ee1dd8235bc3cc749be828ffa8db7cb5f5002339a59a599acf3c729 ruby-3.3.7.tar.gz=9b48be05d1210e9194c8a6d77dfc3227599bff2b55fc9bb2049b11547927deef530ece9a2a505600cdc492c8517b1bef7ab5f2520ebd79ffcf76f0a734fa763d ruby-3.4.0-preview1.tar.gz=29c0e32179f7b823b6708f5328e495cd333fe8dd88f7df7d9051deab47add67b14d899bba565bba1a77e1b04c9693d9708541445c112925777bb6891cb7b2b62 ruby-3.4.0.tar.gz=bc70ecba27d1cdea00879f03487cad137a7d9ab2ad376cfb7a65780ad14da637fa3944eeeede2c04ab31eeafb970c64ccfeeb854c99c1093937ecc1165731562 ruby-3.4.1.tar.gz=93acc262e3b7cf86aeddebdad5b8938c187b9c44a73b0c252b6f873745964001459ae45ece7376745916e317c24895596a42b4544e836670fc6e90058e6f0de4 +ruby-3.4.2.tar.gz=edc3aede0aadcaa62343f38ea6cab7adacedba810d883f1d9c3e6e24e28e24e0e27a7df2c8e517cc2aab940168fc4872ab8cad000598aab5940aa79072ac190b rubygems-2.6.11.tgz=3b0dd38c0aaf313c59e299dcf54f7bfb6e6d84b8b739573ddaf599e584da45ed7b1465f6521131b32f237e31a4796d9ef455b8be685064b3fd77a0355dfff13e rubygems-2.6.12.tgz=ebb672488b50f5fc988eab66ab14ce8e887dcc635f71239a85e32fbf1e919ca70196eb4d3f2fee3486cace7064bab0b8b08339c754b723198e1b0b0a0984ab54 rubygems-2.6.13.tgz=c952b6061a9a0778db304c3aa5bea693e71ae2564abfb19f8b123eef66eb1e3877fc7c36f4f1527da97bb320870cbfd4574ac57ad88e850a44fadd67ebdac152 rubygems-2.6.14.tgz=7743845bc5265df3782f85a23896cbb250d8a2bbc9934a27f274b001afa7aa62f7f00f616296f74747ea612d2cb37dd7f533c931aa72550d84c64d2a73d60daf rubygems-2.7.0.tgz=0bd08fbabcc33687c98365ffe6794ca2a5e82160b0297479d4f19bd899d176b7f4efb95248898b26d873f9fc7d86c10cada6e40cdc48738b0bac261c3aad261f rubygems-2.7.1.tgz=fa4ea123760b03b8b8e8ececc55c9dc34249073fb267d310bd903aa7a613267e5d27990bbf28e32c9a746bf884af8a84a0dc202297272f9d477f7710c21bfb60 rubygems-2.7.2.tgz=0f48c6e46663780a571c7ee0e6e772f2e18a755031e7dd8ede7870f238c214b9e3e38153b1ae8f1f78a9aad63c1a079b86573b3a25c57a600d842bdf92b9c4d1 rubygems-2.7.3.tgz=2782331b31947a23f85b285a3d5e7b66e34fe5847bc84dca4f1e6bfe33ce187ab0cbc814229de8111aa19490b656ca78b7c821e4ea6b425449991c01371b7565 rubygems-2.7.4.tgz=90f72a46709ef847666a6a23eecf24521abd5c294b2da8a246bb4c7f85daf4af39a0634fc8093c7bb7ded2ac137ea27fac5ed94af3b70c49e78594285c7a40ce rubygems-2.7.5.tgz=86957f1c438070135df527a15102e40487fcee93a55251463095e4c8794a8616d16ed9bdead0e0ef83c44806bd5016ecd9e178bef608b66af2e68e2c9c49e941 rubygems-2.7.6.tgz=bc168afc40c974dbc7c37eb5678432ba2ed7469c3f007a159699467ff2cff5205c508237193ee8becaa6eb555b043969cc5f92b2aaa6bf7c958dd7c187e258a7 rubygems-2.7.7.tgz=f93b7eacf5ef8725c40d618daf9deabc7e9eed74b3b7f13ecd16f89205fe24958e782314c52f8a8fe3205b93e20b830b4fbf7ff8944ff1cf56feb7de2d773252 rubygems-2.7.8.tgz=3d1cf68377dfcf102028342258aaff5a7257d2d2b34a80508c85aa258d810add46e65a157f902c271b0b7b568c437372d17246e89cd88f8500e47c008d17f1a6 rubygems-2.7.9.tgz=5f699f47bc24d8ffd4f8f44a509a9df71fcd945ca2574dc9d5050bfe06a44830a368f45d204112d7a4f1877e1600a6fe4d1b6b68f9a55288664667b4220a7d72 rubygems-2.7.10.tgz=48a18c0f202f463c38cf5dafecfbc7cc39245e63c7a059ef2cefadda478483794a929ea6b7e0ef062dd4423230746f1f09d7bec06a97fe3ceccc3325397a3e71 rubygems-3.0.0.tgz=047f4d446aae414e4803517088ef47d5cc66319ff08a3795c6d69e83eee9f3e7c3b05419858f7e5b6a8ec224990ca01178a9259961ef2d7ab737bac352a0f18d rubygems-3.0.1.tgz=dc29ad51ec67b1dca82a23973ea92153482788964d0755bdcd3c650116915c461c6e5fb1c826be3ee04a497fec4ac2826904bd406f24611e77cd8c9eaf4d8729 rubygems-3.0.2.tgz=90b46c2cd4f8baee74eb488a40691cc00e754cefc42029d485163d6ad7782df78ba5cbeab08eec6a4f71febe0f6e635e12a9381393008c58eb5e16396df93fbe rubygems-3.0.3.tgz=1dd585243341901c7b4cc60a4902000c10ce57fe2cc9c28e27e274a2e6029f936cde1c99d7097c93c2c5b2c8bcee5d692c8fe5cc00c996a040e4954b674e330e rubygems-3.0.4.tgz=887c64226ec0b32d33f2ea331936683406d54dc74d19e658a23521e25ab50aa23534fe9eecaf696154247ad1df1d24c233d8900b9aabc79096eebd6afef3f775 rubygems-3.0.5.tgz=f5a97cf67d7d043afba7c1aed014f1b64ff6376ea74d3d6533496bc5ca9742e0ccce1a157e6f67d8fcbe59d8e34bbfbcf4ed8be97acf2970603de6381043cb78 rubygems-3.0.6.tgz=1ef1822a2b19790a36a6d242b7d4584222617baa27787ec58961a9cfeb2733f19f9085490ffc72ee375d3153c7114e050c42e68fc8039e727fe5961b09365ee5 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=5dfb040b746e462c297ebcdf84e0f07cd74b86852055dcf0a7cf1814112099bc674bcccd94b03726aee76b253c9345a45d046cbfea230647644f0fd6b1c1ec96 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=17983c442c54d19196be3626e25c64f5474139c0b973624832ba8730efb047bc747c02e59c82f38397bf012c63ab83f79a9c1b64311cab796f08fe96d7d12a1a truffleruby-1.0.0-rc3-linux-amd64.tar.gz=b0b57082d61317911f101da617333d81ee6bede6b6e18f9bed86544dc413339c830198d90cad7ac94c0c8fb690adcfc559dd9f530abb70507ff6a76eee552b61 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=18f9782de56269389320ddad779ec69c168909198d4572e2ea4c18bc8082a539569a76760a6a6da58722fe08d77d83904aaba14baf4075a2833cbd2efc45dff3 truffleruby-1.0.0-rc5-linux-amd64.tar.gz=134d9ba5db7b8a1960d3a88390cd6f7503a0e8565094fb127333d122cd773bfbf9dc976c659029007e6fb68e93486293bac2ee29ab21dae9cb0c06ba57dd2c72 truffleruby-1.0.0-rc5-macos-amd64.tar.gz=5804f1f27916176f5a270de8aac85bc48c38ba37c4e719b09f5777e5c42429271819378cfe096c3cc33d406cd0726f2e37658020f97a438fd53751019831569a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=2597b375f590755b851d3b8cbad3eeab4c965eb02d0c944044f57e39f6c3db1e2f513e2aa55db789e4a885c697f81ce5c8bdbe9a7e44ee30fc09d234e44fb512 truffleruby-1.0.0-rc6-macos-amd64.tar.gz=2eb177190de0408dfdaf30264132955d1db7783ddfb63880d97d5933f66c5662794c3bb6198edf230fbff348674203e61f7f5481e74ac875974467f2f128e939 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=ab3a3dc19f903e68e36b135729693fa025a7c1950139277255e48c972387ef8399beceb3252ac37cc70c0df92838f8a0ba8c45f53665ac4286ef23f9b240806a truffleruby-1.0.0-rc7-macos-amd64.tar.gz=b8423f50a5292e211db7ebd7e2b987fd5c9eaaf34eba86b0644d2716a7f068f2e56deb4357c516b87b437e64fd5ce8515bc181165cc1042c6763f27d71baa59d truffleruby-1.0.0-rc8-linux-amd64.tar.gz=bcd05d304ee9b4da97193575fb1ad78041a0c7710bb444af6aef12ab4261b1873f472175ec51a187a5e99da481d66b81a132fb691643b793e87d655f31d54657 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=2c758221793c38ca8af1831a5d9f3abd555c406569508ac3a86d3c1ea5baeeacf65abb6e904ed3b1e58f555f51bc85ab171135ff4c3d0e08cdae994a861cbda4 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=42e60b69957f77a8623e0dccb7d215e800c27c622364fa76b9c574e8b1d3a4056a058b61ed91eac2375ecf4e51e482a6e17550aa2894a44d1db70687958033da truffleruby-1.0.0-rc9-macos-amd64.tar.gz=18556ee8d2fdec6907fbc8fc33d8b32ea0c58d40ee3df084ffb233e2fcd3a514a553f97c31dcc25dda3f86b1b805ca5fe3c9bf8cb078b92325515f09db6b88ba truffleruby-1.0.0-rc10-linux-amd64.tar.gz=10a7cb1be6214347469d5797091f73c3d7824bfb32a47c13566573a383380b1df9b79b7901ce0fa3af1c97285c90afac21e2de7a66ed88d9495846743b3b25e2 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=53f0939d9d8c3470cb79316d865b765816032528d77a3cf497134f3aa667a6253ae037410801261a8e7d0628198ac5f6aea5ecf9b7313f06ccc1d5e9f94e74ea truffleruby-1.0.0-rc11-linux-amd64.tar.gz=f89bc9a3310634d39f68006307da0b0ddafae036089bdd663e8372777a9562d201a4e69b2e1a602cff5fba6c78a8d4861b6d1020679bd0c72c71b938a4f36a27 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=3f461c12fa9fa57a55cc390eb9887df88f404661a77bffb44f82b4c7e9021513a6df9f6d5f332a36ce0c28ae7e3d5afbbe15cc4b814bc7f86dac2e5ec280f947 truffleruby-1.0.0-rc12-linux-amd64.tar.gz=85f042c308ccdfbeb318cec37056d8d970cab51cb0779425b85b8f76b0a1dd9cdec3191ae2b6b9b6be6e95767db814496450ed20076addd9bd495742f9de3c8c truffleruby-1.0.0-rc12-macos-amd64.tar.gz=067a0f63bbaaed4c8d4120f758c8ecf8c52afd1d30ea9d41489e26289d57a574d2d4ae29e29655378510adfb3f4a07b04b403d6ee98ee6b3d3aa8bff9c8d718f truffleruby-1.0.0-rc13-linux-amd64.tar.gz=1eb6b80cb05133d253f20629a11ed9ec3f37da002d5668cdc6577b2a20524e0cdd4d739d3f1aa2e8c518e2f7ebfd519ec1c647293714a1133ad4d569375c0e69 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=e3cddb0d0ae48f7d5ee4dd094ddb5a13f6a7aff1521b1adf25710971664b235cf67144e3b81525fd710dc49b6f6f6ba06e10eee1df5dc08119e9494c6be86934 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=c982194675b66a0433bd5517fc6f1564db669f595f8c7ba4819bf37e0599474d49a0c606577a898c27fa5ba40ab793c62d8211e7ea398d6b3e2bcc31eb5d55f4 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c14e396396385644333fb4c4aa1fb4b934a3f4e46312146821e5dcdaa097cb5b1efbf397c1dd6117d909803fd27ba8d835904672e98d43dc565e907fed752e1b truffleruby-1.0.0-rc15-linux-amd64.tar.gz=f27a75f929a6e945e49ceaad12f484fdaa918469a2f639b572fc4737b78e1cde0881697057e13a58b2fab7ac64c3a71bc9951561c3a8728e3dec814ef5e95fee truffleruby-1.0.0-rc15-macos-amd64.tar.gz=7aa029c4999d4608c9bcc491771b0434267032dbe9dbf504728079f87ce93e6a90e0fa839295b88c00e5a025186ed0fcc42361428b7874c05e222edb108d6c02 truffleruby-1.0.0-rc16-linux-amd64.tar.gz=e8c508dede11d4f54cf0b15cf92b50caad93076a6065bd2d6784c5ca739f5923ea2b894c6b2b52131f62187c8b305cd11a960fb5a670789802d59b6b2999f0af truffleruby-1.0.0-rc16-macos-amd64.tar.gz=841eff077c38bf594b101edb15942f601ba0dada2122b21b016f53251aa2a635b8d0b63b49bdfb50259b2545d1f498bca95d5f771a15a28edb0dd07216c9b709 truffleruby-19.0.0-linux-amd64.tar.gz=8ec6c7829351e0dc2cce57305947cd540734fe5a0b95b9501d4179993727ab2c331e9fb639b9865c0fed596df3906adf3dcf2efb22c4cfdd23a3dc2137025fd4 truffleruby-19.0.0-macos-amd64.tar.gz=912e0c15d32e40c884b2caaaf9a86a71450d441c960ef98a63dfce80353619073b146dcfe03d9af4273b2811d0899eebe922cc84a51d6f5e6826cc436d793f78 truffleruby-19.0.2-linux-amd64.tar.gz=eec92bfbd776acd61709a428b90b1029c5ea83e5ea839304d23cae3a541dd4fab3b387691fa76643f55d5939c9cac0cbe70dc0b5786e5e0e5d20f3fcd9a21356 truffleruby-19.0.2-macos-amd64.tar.gz=ce647b76c9931feac55baa5acd2c87d8335c606bc5cd7e462bd92ba1b09f4bab5db927f021e3119abfd85c33377003d060f36cf64eb121954fce8878112f01b5 truffleruby-19.1.0-linux-amd64.tar.gz=db01e6dc09fc5f39ca466aa94f725023d49a8f52343f129bf8c32b7f5f76ccf2d573ee3344fce3d5aff9983bc9af618cc5ca6e1dbba93b3f604e4f33f8a69b3f truffleruby-19.1.0-macos-amd64.tar.gz=f002bc0b6efca11eb97c4aa6df33d2e0fcc1de3443efd39d912b028df9dd8954cb76ef3ca7fbe140f4e922d6ae4c1a6a20853490ef1ea0749293e2fcd4ffe8fc truffleruby-19.1.1-linux-amd64.tar.gz=ec031e8c216e31f034d97aaccd6441869221d6946e18f375b44a866550b8e8eb4b2fb923f9ce1a62853bdcd5b9201e0f5d2732ca6525d80171d5732ef522bd25 truffleruby-19.1.1-macos-amd64.tar.gz=1c15918af939a8fe1779b71d9e53d2ce09ca7353173a3b357905d9fe1981ff013cf0f90c6b47e1ca66dd168c2f2d742f28a5fb134cc0231d36146da99f91c3cc truffleruby-19.2.0-linux-amd64.tar.gz=1248bdde9cd3651d7042fe4cecff4ad35534868d543fe2e6f3a5bfc3bc9d10d57b4139fc070f0a03861436a1aabc9a8ebdf3356f39b77a4b8f6a1dcf492f70a4 truffleruby-19.2.0-macos-amd64.tar.gz=92c3154ed229a115cf392826494745aae06dd9228dd0996c2c44c550552f13f9c254367d068452fa4a84eef79c19601c79b87e10f3121fd7b83b803514a41cfd truffleruby-19.2.0.1-linux-amd64.tar.gz=53c78cd1f255f2b7031a70a42b65c0bf80c510b9254f5d7ba82b4787f55f5b09cfa9544c424a90f4619a74179fed07c168bd501e34772ef836a773e89c467cc5 truffleruby-19.2.0.1-macos-amd64.tar.gz=ac11523cd49fac50de1e441039e429fb8cd6c7051d537e5083b64fa68eaa19c9f0a966b269da906c367985f229af82a4811282dbfd0a76ef6565162e1081a659 truffleruby-19.2.1-linux-amd64.tar.gz=c5ffc1b592a74e836a4f6ec75b0e103150a4a40d3183ae853ead38c951a85378163111cf0bd2b81e44548c0a7aeaded3ae8a7ae558d5a02dc9e2cce992b79b58 truffleruby-19.2.1-macos-amd64.tar.gz=bb467b91f66eb7d1e6f1a54a7bc0a3d9503bcbd935e8a02da9ea0b749a51e354b1140d4a4dad6fc05312b560bb9ccdcce4f6583bccd19bb5afee19bf494102fe truffleruby-19.3.0-linux-amd64.tar.gz=0e94777a3feabbf0107ed40847e20dd4e3696ff2b7c3f6ceddf3a53ccd812bd003c84c62a750e8fac9d2490374bf792d69174b48c3ed36b593485d86729136c1 truffleruby-19.3.0-macos-amd64.tar.gz=95470c389e24c865ecdc3d299005cd98f8221a128f3cd75f899b6b7ae5d6dc07962443ce0ff38dfd014589d5aaf08b718dc870a72eb7ea6ced18ec2b2db63095 truffleruby-19.3.0.2-linux-amd64.tar.gz=dc5309b71980657f750b4dd4f8b3bc4e191bc305b638b1e562ff5b0ad7fbba40079ba674caf46226a46b5ca58c10f812354786696264742f351b129fb088a672 truffleruby-19.3.0.2-macos-amd64.tar.gz=ff1c37485ebeff3edcc7081ce09bebe5541012dedff6997662c7f8a064e0ab10bef9a5cdf834263a06ae04ca0391743948bcdea6e6c9d7e1cfef9f21523c2bdb truffleruby-19.3.1-linux-amd64.tar.gz=c724547a9eacfdd135ce05eac9dcfe74e58a5e77c97f88103f83b8513c15c975a0ecf623f623a425ec81fad1b64d3b5e135660d6943608ad08048cda00eace79 truffleruby-19.3.1-macos-amd64.tar.gz=d746b2ad410c15d145d36c676a070ae454ba8e5ec6c594d5ebcf54b1fc719f98e8b8f71b6fd504c3d38df286bd11c5114f73b5ba39be312b11d42d4ca1a17d02 truffleruby-20.0.0-linux-amd64.tar.gz=4efea5ded5fcc6886befba3a3720fe1e5b2e376d46738565e8871a1ce0201a33ed52e78b8af2fb389618bdea99466d126d8537dd0919b0c13f8ff1940cb3e52e truffleruby-20.0.0-macos-amd64.tar.gz=b36488330514b77c7115689042cf2482a0beb9f72a0b05fb4c7a6ecb0835a3da47c3b15c41abd6ffced023e65ecf7eabcfbcc6e41901dcddd0fb3dfed46564c6 truffleruby-20.1.0-linux-amd64.tar.gz=116d57404540b85c15b321793a6f985624a2044af544e659b3607e50159703af5d445e22bff28ae2182dfa752f7500d420e250f6deccc98a2f01e89adba8ac3a truffleruby-20.1.0-macos-amd64.tar.gz=9b1267101dfe78b85c79f7528eb4de96b16933e66d5771efa6272372dac0fb35b199bb9d42773d61f4fa7a15d6cbd18b5753c148f7c3e477c7c4b21633f12b88 truffleruby-20.2.0-linux-amd64.tar.gz=a37eaf8475364b74d948979ac13dc6e6423bf11949ad1d0f2925f78a4495e80de9767001ccdb777c8cfd7f545839fad4d842522620c3acad179404bc4ce6752c truffleruby-20.2.0-macos-amd64.tar.gz=964c1e02cc53e1646060334a9911771e679a8344d811a0f77d5cae3529dfefff259c45505ac84b7debb958514cd5d2276ffd435802085494e0229dd140ce8f00 truffleruby-20.3.0-linux-amd64.tar.gz=ec2d8ff6a5d45fd7091e26430c67cbbdc0f8ffa41e9ac574d48802766fcd144e1f446db807700247ad6d8046b7ed070b5da70ef667e576d6fea60cc64ea5484f truffleruby-20.3.0-macos-amd64.tar.gz=1878f94e05a3c40484bf944a72412b179aa5415a16a7ebc1610cb512a1e1c4a2ce0e98685257ad6e5c14745245c35bb5b28205fb687292c4f17193cbfb3bb606 truffleruby-21.0.0-linux-amd64.tar.gz=b7d1b76cc015d136dbd74515431f4447730850475f81b00885b71b95819134db2656d941736048db42d519f03e1f2df066226513b77208adbdbbeda1f49cab11 truffleruby-21.0.0-macos-amd64.tar.gz=7677b827a9c1758d5f941c512cb0fe8daaa19c3db77b485d7dfa43940151d6b9094c4d9271e18ef5014630142dffb93d168c7ac631a3b5eef6fc61b2f9eecf88 truffleruby-21.1.0-linux-amd64.tar.gz=010e9fb78cab12486641780392be0f284da08dfd955f3a0d1ef72adb52e1c9024b54dc880173645aea2af680b3670a6bb01409198b757239edda4cd9bf2b1e90 truffleruby-21.1.0-macos-amd64.tar.gz=96ef8481faef1bfa7f01bb4d396818ef6f0943d19c6a23dedb68f8346740b72bf06efc707bdd29158cf991cc7073c97f429a07b02c2a48050512b46369850058 truffleruby-21.2.0-linux-amd64.tar.gz=c20af04909a852cb676c90403d852fb367d56eac0f9cf8ba42caa4cad1013ba393cc4611e434614ad132b7b0ed61160aadd887001b08de0767cf58f5e149efe7 truffleruby-21.2.0-macos-amd64.tar.gz=0b8d9633fde53aad78f0baf52858cd5a5716f53ff21698baab17da4a625b4369b88dbd664193e3f0d1b40e64c88699ab4f04bbe40f54189a588c93678962a7be truffleruby-21.2.0.1-linux-amd64.tar.gz=15ceeee383114f974aed5f16c99131d56947e13cfe248b97e55d61263ccd51aa56fc3e0df215196ef7f80ccba9e7f19e7f261d7a91d54bde2d9992caba682d82 truffleruby-21.2.0.1-macos-amd64.tar.gz=8a8762d90c19db4f48433ce0e3f3339e290685d79c6ee9bb7d4359c741edfa6a7360ff65124433d964730ac25b2cc6d8b581191b0a51479f11c2a80031a6c1c8 truffleruby-21.3.0-linux-amd64.tar.gz=b0c07b1ea797de92447a81b350d460c125a2efaff3c290637c4bcf1c216b5abd11148cfb143ad397062a96f36beade8234d0785c42f58fceac0011f629a5220b truffleruby-21.3.0-macos-amd64.tar.gz=42e607fa52a534123989ad232691ede65aa1c615f39320d93aa8ab9c21924eea7bc0aa49aef1a540ec972e2b3dc775d22a99eca3e0c9bc450c525f9020fbb975 truffleruby-22.0.0.2-linux-amd64.tar.gz=2231a0cfd27238c34ea0bbad27ba387453e48f39032607cbb829b347ea6ac804df15eb3f84d50b09248782d6202284498e7bc9aaa2060f0ce81bb83a84d700ad truffleruby-22.0.0.2-macos-amd64.tar.gz=1d7ac44f0862ad23cf17a7bba73d23dfd4727aadd9a3aa9633361e9bcd19655d163e160eae9c8db8ec9892f8fbf82d7a38b1cd689475bf41609a828208098623 truffleruby-22.1.0-linux-amd64.tar.gz=c4c2f9bf4236118c8ea62c08bad89e1034ecdfa0c4815693961c4d2b1b30ca043fe958abfec9cf36a8638aa2e005e71fcc244ebffd9ce11eb68cf48bd98c29d3 truffleruby-22.1.0-macos-amd64.tar.gz=507004ade838e614955e23331845839be656aaeae7869ed3d989c10e6491775a12313ac9ef03e14945f20f5e76d46ce6f7bb860af68a627c48065399cea3c567 truffleruby-22.2.0-linux-amd64.tar.gz=37c09249ef387df3e0614f646abb444cb5b7b2751538ab0432e703abe92a81b82e0d15f89d5ad7cd58afe5f30d9a92dc8471d19f1c1ce10b50478ac74f247739 truffleruby-22.2.0-linux-aarch64.tar.gz=49a7cfb4c81980d9c7a1588ef9f76a9bfb759d4b1925ab11f230d99c15a62e162a08249d23cf5646e2d38ecc2005e27103f2e5d92b83b0a182a4e64319b70c0d truffleruby-22.2.0-macos-amd64.tar.gz=d4c206fb0a5e63c5b7f61f2e62de854e4d0817075ef9ded237d98cd821c286e88d7b150d140d9907a957209f39be96c7025560e3908c89aa337925d2fba690af truffleruby-22.2.0-macos-aarch64.tar.gz=a01c18803777a74717ad699b6ee51eb759d881fb436d24338b557c52d4a693079d7b55f108394ccad0dd69c974cb895f4a36854355e84fecb67e41bf9eb18514 truffleruby-22.3.0-linux-amd64.tar.gz=d53472ae892dadc81c6fe63a597ccfb67e133958431b11716db4d920c78fc86f7496e4b10322d041c900bed77d27e02850da20aa95b297d63a9de2e72cdf3c76 truffleruby-22.3.0-linux-aarch64.tar.gz=dab63d49db4722f0c174ce8b882413102520ff649182946ba332ef5ba0fc6b58913595539a20b59e460faab2fba36f762dc8eb66aa729d4a6bb90feb2a95f053 truffleruby-22.3.0-macos-amd64.tar.gz=15c91d25fd6fb1d9f3f2a0b36676da5c8a76d62be86cff463ebe6c7e6aed2d9b6de9062021ab1b9b29cfb7a92b5682c860939acd71d12dba7e4a6bf3964fef3d truffleruby-22.3.0-macos-aarch64.tar.gz=7c44d0dd07e4ecd84a92f6dd574dc185906121b8eb75f6fe097b9d4738aa30751664d70e9027e072eeaa1dffa05fe7bcfc06be0c2dc950142f60664baf5eac69 truffleruby-22.3.1-linux-amd64.tar.gz=f41d3bd22500b7291121368169f8558df4563c840a01b70ff7feea3593f0152d8d77d4437af362bad62f25b79bce1ce8ddaa1bd8172a2a7ef8b61cdb6e478c9e truffleruby-22.3.1-linux-aarch64.tar.gz=1ca5221f0dc5ae3e0bd9545be474e115b2e62737701df95c6ee6cdaae5d82815acbe6af961ff23afee64dc26e655c7786d4347e3694c140773f065534322ee59 truffleruby-22.3.1-macos-amd64.tar.gz=bae16cc04c6018703833121f4258c3f18fa5062309d0600458be3c51c838bc63976a026db0f28d23005df9b640ccad0a9cafc56610a5ca9c24951c66b62097d9 truffleruby-22.3.1-macos-aarch64.tar.gz=b56e230d8fbc95d19364e695aaf1e552238b02ace7056f636808a7d7510777cddfde572ace5238ea1e314351bdd1a053ab3912d0889f51f55c722797c83eaaee truffleruby-23.0.0-preview1-linux-amd64.tar.gz=d538412f12d5ce743c351acbaa483b8b85dd2cf84fe06b3e90ca21f3c2fc0465df9c1773b3515fe4296d599f45e9cbb935dc5a69fe45668321e5639d58608ef4 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=f10b5ac749b11f93c2469f2c8a713ad090cb653761ae0a3e1ba4c19b0c96bd61c5e8da74d8944f9487c2d327d268a188f2cb56028d2beaca2a7816e63123600b truffleruby-23.0.0-preview1-macos-amd64.tar.gz=cd9db49c4253bd66cad6f9ae111c83d3befd0102a7ccb72a2407d22dc576ba7f3a26a90cd479f26dee3565d2f893a2b7c8b549e2351336f35d2632e57966657c truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=28b77d9943cd1617e0445633a9fea8911cfa975f5c581192439cd0944d2a17c2b0558e3e4112588b5fc77b57c48d857ad68ac51fcb867250625ad85406d87acc truffleruby-23.0.0-linux-amd64.tar.gz=da702de2e8c994f2646a3de5b44824210dbd37129cd2f91c3bdd990a1b0d0b05dee4443ad0f6cf98fdb4e489c9f4cde64f3561baf486dc642d4981a1a1812925 truffleruby-23.0.0-linux-aarch64.tar.gz=808254a154adcfd1bbd6e22bcdafebb6169c6f8cfd1c55382d446bb66002384ee844dcd8b5f642703ef440f7566645d190081f45e04a7d8d59bf87571cb4430a truffleruby-23.0.0-macos-amd64.tar.gz=f775d57e63c606eef424a1115408ed8539ef47d6bea0125ad1de7ee4fd5971e96747cb7f5d22d91d2f004edbd6ed6b9b5bd014127dc1abe7821a3a987a72d9dc truffleruby-23.0.0-macos-aarch64.tar.gz=000069854458f81d97eefe14123fbb69937942825e77d35602d55fa279123808177a34f252aec9dcfa48b93feacbee81ae0f0e7043c2d8a9ace2a4bb61ab253f truffleruby-23.1.0-linux-amd64.tar.gz=1868799d989c51798cf07b5243457af7ae2436dd19805fd634c98b2f1885266b5c3ec81dde668c2e5a290e9028f6f9fd223d153489df6ffcc74d45240aa020ad truffleruby-23.1.0-linux-aarch64.tar.gz=2766621877996ad35fddb94f978feed531307e8abf601dcf863754c96782b8149c3ac512dfe6dd2bdef0fe0e8a968bdd77608c41020434aaef4e7250c09edd74 truffleruby-23.1.0-macos-amd64.tar.gz=06c5a1d6ad644fd81737f0a1fd24c1529f712abe2a4485ad597aca7c35ca2af898121bb5883552cf518e2afdcb4221c8ad013759b46a69e34249e7c5ebe2b170 truffleruby-23.1.0-macos-aarch64.tar.gz=496cacc5cf413a48b60184e097a962ab5d2236c539f07cc0a9a2d9ef57dfc911a26b125cc3ad9408f6170c6f93c7562f35729c8313be0301972be21c10097942 truffleruby-23.1.1-linux-amd64.tar.gz=dbca85e281bf2484371a0bbcc202ca700acc704304d966b9202cf3835e82f6eb502e43522355f4c9e5a743877d93f5609006fbba2c5e6343a89de130e5209f6a truffleruby-23.1.1-linux-aarch64.tar.gz=6a58842d79247d8a64c513d68db9d53ea5640c02f71a1bc45f103baaaca67bb224939ae5f21ef55daa9d9b9697404052d39a3c382768ca366ab7892b8bf1abbe truffleruby-23.1.1-macos-amd64.tar.gz=7cc6bc957b7ffa42e9fbfe2f6e3014bf1e7996f2754e9e74377078c2c7bc7ac8e10598f1e1452839fc5b9583c823a2a735731ca193a6af2814a02566cc4cd9e4 truffleruby-23.1.1-macos-aarch64.tar.gz=a85b8189ef8a280f6a27d4c1c93893f844266dbdc15b8c4988cdf581613a353508fae4872ac9380efcc47f36357e137861521712c00ce8548041762a8987a9b2 truffleruby-23.1.2-linux-amd64.tar.gz=6307fd71fb1431fb12346d1f13dee4b3afe53947e8a9c1f3e3aa0baae5f9fc9e1496ede0a7d86b169d912ffef9625af998b4e698dc57a2a649140150e3fae28a truffleruby-23.1.2-linux-aarch64.tar.gz=0f0c5e4aa4e9fbc9b9f91d2b3d3fbfe26e78c5bc5b369fc78dd54775a7582b8c084a64f02848058bec79387fd80b09a5a5594ecfb268635fe76e1f9d957c2e92 truffleruby-23.1.2-macos-amd64.tar.gz=648401a73b29c28862a1fa077c2e1bf8fff65015c8bc690ff883a00a3dfd99389ffdb71f39ad85a4f16c531470f4cc891ae51ec927a426b0fa05fa85c9c6a2f9 truffleruby-23.1.2-macos-aarch64.tar.gz=4ec88684c09aacfa1d8bfed9a17243579ededacecd869e98e12841710bae29ed6e5f080611e53fc217a853f730bb2a9cb3d47ef15443eb8a1ad76a120118c8a5 truffleruby-24.0.0-linux-amd64.tar.gz=3a59a4dc58ad03549d8e63db1485767757715fc9aec21b2b67b1440b13871a04541abeff9bc8201b3088e1865360b1667459e536d3cfb09687dbffca95deafeb truffleruby-24.0.0-linux-aarch64.tar.gz=50f3993b7362bb6e7da80f7327df3d079bb02f98b67012e2135005d77e61648e4f3268f767d8ca245ec5889ff934fbcccb94fd5ecbd55bb0cd9cca900fe10509 truffleruby-24.0.0-macos-amd64.tar.gz=9ec8bb340b15e29550448e123e3ab0f183edb9bbe7e052743cb2306cbd1956a5789c5a367c80c5e8d913dce2b804448dd6815e4d3421515166daf8db51d37c7d truffleruby-24.0.0-macos-aarch64.tar.gz=499f83bf65dcb6ecc92414a3550673e6a0baaddfe3ab13c0bd7aa1bdde1ae2a61d9d0ca8001c0d12688d9e09f98f9e2946a651220fe7d200bb0ec6f285394701 truffleruby-24.0.1-linux-amd64.tar.gz=62b4e8508eba8cdaac70e99ac9cb0b33a663b4195d79b2dad3d771ef538c6c41d1d91bb7bb07fbbafbcbbcaf17814ffaf6d6bdbafd474ba6a8ecdac30315a8c9 truffleruby-24.0.1-linux-aarch64.tar.gz=817d877848ea4bb55658ce34bbda52926be12426a8a5e1c4588bc0ec1896018b06dce176336b382f80a7c6d073d4331b20694a7797ee8fdf0177e973053bf929 truffleruby-24.0.1-macos-amd64.tar.gz=2ea65bea154aa38cce3f00f24fc9a4aab5e7478fafd070d0cc966878371c070d5a1776b7405e2c9e4cfa14e5c51219ed0fa988294eb4708690983b348886f439 truffleruby-24.0.1-macos-aarch64.tar.gz=bc1923e21768d34779c1bcd7850456a01ddc01acd1ccf20f4fb4a446fb847f8c51b1ff4a7c0cdc317ef8ce057ac24f18f25b778a02a6e2b185e0055d946ecaf2 truffleruby-24.0.2-linux-amd64.tar.gz=5d111beb862b618c4e6a7f8aea1d3d6476740513efdd59bf980a2b6d525a017f46fe02017b075962a4919a001b60bd9a070e69fedfa8a85533c0adbad2a8d86b truffleruby-24.0.2-linux-aarch64.tar.gz=8e3ba19df4e5509c4719bc3bb621f70ca6a0e683d48a296703649b88abd83a165e8a64ad2d7dc45394b6de0b214a95a395fa449f5393dd9e67deab9e149cf494 truffleruby-24.0.2-macos-amd64.tar.gz=06d3b5533c4e26aa1356e602c672efad99208aaee96110904216e16dcfb1d99a7535c3ef275f9a14635dd2f05110798b3c75d71199f6010f23c92c6990492cef truffleruby-24.0.2-macos-aarch64.tar.gz=ba36d3f1680112e6623b14a4bb902a5f65f11e9827f44462161b1c79ee344ca340566289aa1f841c1e213daef5608c159343cc203d07f41c2a55eaeb25db0987 truffleruby-24.1.0-linux-amd64.tar.gz=9a93fd61086fabcb6c4f3a0fcb16e81f42b0203a24a04209fe446eb5f88d78e2ac59ab54d42cc30ef5417199a88b452973eecdfafc57c7877e11edf0a3d42b13 truffleruby-24.1.0-linux-aarch64.tar.gz=ca23edf279ee9b4693630df9596c6e269bb544e06bfd02620447f51108d9e9b4dc8b3ecbcc7a8ba1280560c0eb4b59474e75acead81799e4c51365acb5676d24 truffleruby-24.1.0-macos-amd64.tar.gz=65b661b3bf497bbb090a2cb49607aa00c3e5bfe95eb19c7736d798715d55fe07ddb4e8d8c25c1ec4b7b304b37205c7de9d8ac2d56005c9fc43e4dc81ae699c9b truffleruby-24.1.0-macos-aarch64.tar.gz=ab665d995bd63839c0bf6ed1171875cce7974d49ed79953a05ecdcf13d815c0a5cd471f40839f3f51a1b3128b40a4ed34d9b89e4c3f343b38c78276aed667956 truffleruby-24.1.1-linux-amd64.tar.gz=78e4e8bd910e4b3b41e927f6158cf8cfc74da5187969727d5c5303416310c5b7f72fde239993ecd5ab51724785cd80b2bb9a422a0475320fca57ad40b26d2786 truffleruby-24.1.1-linux-aarch64.tar.gz=c4e3aa72433622f96216b053862beb65861ab20ab28cfc50f51452720173f0a836ee69335281c4c89c6289ffa6f42517b9487d1b6fe16926aecfd9180d6f8195 truffleruby-24.1.1-macos-amd64.tar.gz=099d1abaa8677ecfd298e974fbb37e21bff2ad45313090cecf9a2799b79b74223ca4f95fb873cb7148bb2754ea3f923cfb553dd1dbdf6f1c088a3793bd991871 truffleruby-24.1.1-macos-aarch64.tar.gz=8980a71fc423c454ceaa16b46ba085a0164bf22e3e2040e960623148f09fea4c467b304774afc2ea37d9e072905eab3ad65b3c4acdc7b01ba238e24829cc16d2 truffleruby-24.1.2-linux-amd64.tar.gz=93e4ebdfb9c6a89681d8913a0e175b46c53124c37b0c15c6e032bcbf423def9205a6b288977772e50ba68c8fd06308c9478f22dc7c0385b41fc9989f68a86083 truffleruby-24.1.2-linux-aarch64.tar.gz=63a212ab48704376c1f6e6792da231f6b4ed8ffe1f77eff56b0f58ae8030866da6fcc19cd7068ec158c6e11840b13f47d2d12ba65b6a7f06ba1de6cb1b582fc4 truffleruby-24.1.2-macos-amd64.tar.gz=6cb535ce7fface14bdef86ad322992931ff809fbe781c0715774f279842b5f65d5e8ff4885858cf7a3ba345071509127f473381655f50d000e60c90a88eb11a0 truffleruby-24.1.2-macos-aarch64.tar.gz=a146c8000468c977fc48d8069e938ad6d32fd257d23133c2125f5bb86598d00283c654fc553d5de31ff9a79224f34b3b064bb223ff7766f9f2e25fcf7e263947
rvm/rvm
70b317c2464f0bdd206a8903f832c0c4e26cd8d7
Add Ruby 3.2.7 (#5544)
diff --git a/CHANGELOG.md b/CHANGELOG.md index 5cc1c6f..003c518 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,589 +1,590 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Use OpenSSL 3 for Ruby 3.2 and 3.3 [\#5480](https://github.com/rvm/rvm/pull/5480) * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) * Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) * Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) * Install `libncurses-dev` instead of `libncurses5-dev` on newer Debian and Ubuntu versions [\#5477](https://github.com/rvm/rvm/pull/5477) * Use `zlib-ng-compat` packages for Fedora 40+ [\#5479](https://github.com/rvm/rvm/pull/5479) * Detect core count on ARM-based machines [\#5498](https://github.com/rvm/rvm/pull/5498) * Fix requirement check for Ubuntu [\#5500](https://github.com/rvm/rvm/pull/5500) * Update location of homebrew install script on osx [\#5505](https://github.com/rvm/rvm/pull/5505) * Fix detection of Homebrew's write permissions when using Workbrew [\#5528](https://github.com/rvm/rvm/pull/5528) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) * 3.3.3 [\#5474](https://github.com/rvm/rvm/pull/5474) * 3.3.4 [\#5488](https://github.com/rvm/rvm/pull/5488) * 3.2.5 [\#5490](https://github.com/rvm/rvm/pull/5490) * 3.3.5 [\#5499](https://github.com/rvm/rvm/pull/5499) * 3.2.6, 3.3.6 [\#5513](https://github.com/rvm/rvm/pull/5513) * 3.4.0, 3.4.1 [\#5533](https://github.com/rvm/rvm/pull/5533) * 3.3.7 [\#5540](https://github.com/rvm/rvm/pull/5540) +* 3.2.7 [\#5544](https://github.com/rvm/rvm/pull/5544) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) * 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1, 24.0.2, 24.1.0, 24.1.1, 24.1.2 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.3.15.0 [\#5482](https://github.com/rvm/rvm/pull/5482) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) * 9.4.8.0 [\#5484](https://github.com/rvm/rvm/pull/5484) * 9.4.9.0 [\#5512](https://github.com/rvm/rvm/pull/5512) * 9.4.10.0 [\#5538](https://github.com/rvm/rvm/pull/5538) * 9.4.11.0 [\#5541](https://github.com/rvm/rvm/pull/5541) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) * 3.1.6, 3.2.5, 3.3.2, 3.3.3 and 3.3.4 [\#5491](https://github.com/rvm/rvm/pull/5491) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 24.04 (Noble Numbat) x64 binaries * 3.2.6 and 3.3.6 [\#5529](https://github.com/rvm/rvm/pull/5529) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) #### Upgraded Ruby interpreters: * Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159), 2.5.0-preview1 [\#4204](https://github.com/rvm/rvm/pull/4204), 2.2.9, 2.3.6, 2.4.3 and 2.5.0-rc1 [\#4261](https://github.com/rvm/rvm/pull/4261), 2.5.0 [\#4265](https://github.com/rvm/rvm/pull/4265), 2.6.0-preview1 [\#4317](https://github.com/rvm/rvm/pull/4317), 2.2.10, 2.3.7, 2.4.4, 2.5.1 [\#4340](https://github.com/rvm/rvm/pull/4340) and 2.6.0-preview2[\#4395](https://github.com/rvm/rvm/pull/4395) * Add support for Rubinius 3.85-3.100 * Add support for JRuby 9.1.14.0 [\#4224](https://github.com/rvm/rvm/pull/4224), 9.1.15.0 [\#4258](https://github.com/rvm/rvm/pull/4258), 9.1.16.0 [\#4316](https://github.com/rvm/rvm/pull/4316), 9.1.17.0 [\#4366](https://github.com/rvm/rvm/pull/4366), 9.2.0.0 [\#4390](https://github.com/rvm/rvm/pull/4390) * Add support for mruby 1.4.0 [\#4286](https://github.com/rvm/rvm/pull/4286) * Add support for MagLev 1.1* and 1.2Alpha-1.2Alpha4 [\#4289](https://github.com/rvm/rvm/pull/4289) * Add support for RubyGems 2.6.14 [\#4205](https://github.com/rvm/rvm/pull/4205), 2.7.0-2.7.4 [\#4276](https://github.com/rvm/rvm/issues/4276) and 2.7.5-6 #### Binaries: * Ubuntu 16.04 x64 binaries for Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4362](https://github.com/rvm/rvm/issues/4362), 2.2.9, 2.3.6 and 2.4.3 [\#4259](https://github.com/rvm/rvm/issues/4259), 2.2.8, 2.3.5 and 2.4.2 [\#4161](https://github.com/rvm/rvm/issues/4161), 2.5.0 [\#4272](https://github.com/rvm/rvm/pull/4272) * Ubuntu 17.04 for Ruby 2.1.\*, 2.2.\* [\#4233](https://github.com/rvm/rvm/pull/4233) ## [1.29.3](https://github.com/rvm/rvm/releases/tag/1.29.3) 10 September 2017 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.2...1.29.3) #### New features: * Add RVM commands missing in bash shell completion [\#4078](https://github.com/rvm/rvm/pull/4078) * Railsexpress patches for 2.3.4, 2.3-head [\#4084](https://github.com/rvm/rvm/pull/4084), 2.2.5 and 2.2.6 [\#4153](https://github.com/rvm/rvm/pull/4153) * Update `gem-wrappers` to 1.3.0: Show warnings when the target binary is missing or is not executable [gem-wrappers \#9](https://github.com/rvm/gem-wrappers/issues/9) * Detect Zorin OS as Ubuntu [\#4140](https://github.com/rvm/rvm/issues/4140) #### Bug fixes: * Infinite loop in `gemset_create` [\#4102](https://github.com/rvm/rvm/issues/4102) * Command not found `__rvm_remote_version` error [\#4085](https://github.com/rvm/rvm/pull/4085) * Fix path of version script in `environment` [\#4117](https://github.com/rvm/rvm/pull/4117) * Define `cd()`, `pushd()` and `popd()` properly when using zsh [\#4132](https://github.com/rvm/rvm/pull/4132) * Update gem-wrappers to 1.3.1: Avoid warnings for missing ruby binaries [\#4104](https://github.com/rvm/rvm/issues/4104) * Handles :engine=> and :engine_version=> in Gemfile * Makes $rvm_ruby_string is not installed searchable by adding a fixed keyword * Correctly quotes suggested install command * Fix path to version script in rvm-installer [\#4134](https://github.com/rvm/rvm/pull/4134) * Fix rvm autolibs status, fix [\#4123](https://github.com/rvm/rvm/issues/4123) * Ruby 2.3.x and older are not compatible with OpenSSL 1.1.x on Arch [\#4006](https://github.com/rvm/rvm/issues/4006) * Allow comments after ruby directive in Gemfile [\#4056](https://github.com/rvm/rvm/issues/4056) * Ruby 2.3/4 compilation fix for GCC 7 [\#4080](https://github.com/rvm/rvm/issues/4080) [\#4115](https://github.com/rvm/rvm/issues/4115) * Add warning for sudo users [\#4009](https://github.com/rvm/rvm/issues/4009) * Allows running RVM shell function in Bash with `set -o nounset` [\#4013](https://github.com/rvm/rvm/issues/4013) * Ensure `rvm_hooks_path` is set [\#3902](https://github.com/rvm/rvm/issues/3902) diff --git a/config/known b/config/known index 9c7a22a..332b4a8 100644 --- a/config/known +++ b/config/known @@ -1,81 +1,81 @@ # MRI Rubies [ruby-]1.8.6[-p420] [ruby-]1.8.7[-head] # security released on head [ruby-]1.9.1[-p431] [ruby-]1.9.2[-p330] [ruby-]1.9.3[-p551] [ruby-]2.0.0[-p648] [ruby-]2.1[.10] [ruby-]2.2[.10] [ruby-]2.3[.8] [ruby-]2.4[.10] [ruby-]2.5[.9] [ruby-]2.6[.10] [ruby-]2.7[.8] [ruby-]3.0[.7] [ruby-]3.1[.5] -[ruby-]3.2[.6] +[ruby-]3.2[.7] [ruby-]3.3[.7] [ruby-]3[.4.1] ruby-head # for forks use: rvm install ruby-head-<name> --url https://github.com/github/ruby.git --branch 2.2 # JRuby jruby-1.6[.8] jruby-1.7[.27] jruby-9.1[.17.0] jruby-9.2[.21.0] jruby-9.3[.15.0] jruby[-9.4.11.0] jruby-head # Rubinius rbx-1[.4.3] rbx-2.3[.0] rbx-2.4[.1] rbx-2[.5.8] rbx-3[.107] rbx-4[.20] rbx-5[.0] rbx-head # TruffleRuby truffleruby[-24.1.2] # Opal opal # Minimalistic ruby implementation - ISO 30170:2012 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1[.4.1] mruby-2.0.1 mruby-2[.1.1] mruby[-head] # Ruby Enterprise Edition ree-1.8.6 ree[-1.8.7][-2012.02] # Topaz topaz # MagLev maglev-1.0.0 maglev-1.1[RC1] maglev[-1.2Alpha4] maglev-head # Mac OS X Snow Leopard Or Newer macruby-0.10 macruby-0.11 macruby[-0.12] macruby-nightly macruby-head # IronRuby ironruby[-1.1.3] ironruby-head diff --git a/config/known_strings b/config/known_strings index c2d0f34..d42390a 100644 --- a/config/known_strings +++ b/config/known_strings @@ -3,575 +3,576 @@ ironruby-1.1.3 jruby-0.9.0 jruby-0.9.1 jruby-0.9.2 jruby-0.9.8 jruby-0.9.9 jruby-1.0.0RC1 jruby-1.0.0RC2 jruby-1.0.0RC3 jruby-1.0 jruby-1.0.1 jruby-1.0.2 jruby-1.0.3 jruby-1.1b1 jruby-1.1RC1 jruby-1.1RC2 jruby-1.1RC3 jruby-1.1 jruby-1.1.1 jruby-1.1.2 jruby-1.1.3 jruby-1.1.4 jruby-1.1.5 jruby-1.1.6RC1 jruby-1.1.6 jruby-1.2.0RC1 jruby-1.2.0RC2 jruby-1.2.0 jruby-1.3.0RC1 jruby-1.3.0RC2 jruby-1.3.0 jruby-1.3.1 jruby-1.4.0RC1 jruby-1.4.0RC2 jruby-1.4.0RC3 jruby-1.4.0 jruby-1.4.1 jruby-1.5.0.RC1 jruby-1.5.0.RC2 jruby-1.5.0.RC3 jruby-1.5.0 jruby-1.5.1 jruby-1.5.2 jruby-1.5.3 jruby-1.5.4 jruby-1.5.5 jruby-1.5.6 jruby-1.6.0.RC1 jruby-1.6.0.RC2 jruby-1.6.0.RC3 jruby-1.6.0 jruby-1.6.1 jruby-1.6.2 jruby-1.6.3 jruby-1.6.4 jruby-1.6.5 jruby-1.6.5.1 jruby-1.6.7 jruby-1.6.7.2 jruby-1.6.8 jruby-1.7.0.preview1 jruby-1.7.0.preview2 jruby-1.7.0.RC1 jruby-1.7.0.RC2 jruby-1.7.0 jruby-1.7.1 jruby-1.7.2 jruby-1.7.3 jruby-1.7.4 jruby-1.7.5 jruby-1.7.6 jruby-1.7.7 jruby-1.7.8 jruby-1.7.9 jruby-1.7.10 jruby-1.7.11 jruby-1.7.12 jruby-1.7.13 jruby-1.7.14 jruby-1.7.15 jruby-1.7.16 jruby-1.7.16.1 jruby-1.7.16.2 jruby-1.7.17 jruby-1.7.18 jruby-1.7.19 jruby-1.7.20 jruby-1.7.20.1 jruby-1.7.21 jruby-1.7.22 jruby-1.7.23 jruby-1.7.24 jruby-1.7.25 jruby-1.7.26 jruby-1.7.27 jruby-9.0.0.0.pre1 jruby-9.0.0.0.pre2 jruby-9.0.0.0.rc1 jruby-9.0.0.0.rc2 jruby-9.0.0.0 jruby-9.0.1.0 jruby-9.0.2.0 jruby-9.0.3.0 jruby-9.0.4.0 jruby-9.0.5.0 jruby-9.1.0.0 jruby-9.1.1.0 jruby-9.1.2.0 jruby-9.1.3.0 jruby-9.1.4.0 jruby-9.1.5.0 jruby-9.1.6.0 jruby-9.1.7.0 jruby-9.1.8.0 jruby-9.1.9.0 jruby-9.1.10.0 jruby-9.1.11.0 jruby-9.1.12.0 jruby-9.1.13.0 jruby-9.1.14.0 jruby-9.1.15.0 jruby-9.1.16.0 jruby-9.1.17.0 jruby-9.2.0.0 jruby-9.2.1.0 jruby-9.2.2.0 jruby-9.2.3.0 jruby-9.2.4.0 jruby-9.2.4.1 jruby-9.2.5.0 jruby-9.2.6.0 jruby-9.2.7.0 jruby-9.2.8.0 jruby-9.2.9.0 jruby-9.2.10.0 jruby-9.2.11.0 jruby-9.2.11.1 jruby-9.2.12.0 jruby-9.2.13.0 jruby-9.2.14.0 jruby-9.2.15.0 jruby-9.2.16.0 jruby-9.2.17.0 jruby-9.2.18.0 jruby-9.2.19.0 jruby-9.2.20.0 jruby-9.2.20.1 jruby-9.2.21.0 jruby-9.3.0.0 jruby-9.3.1.0 jruby-9.3.2.0 jruby-9.3.3.0 jruby-9.3.4.0 jruby-9.3.6.0 jruby-9.3.7.0 jruby-9.3.8.0 jruby-9.3.9.0 jruby-9.3.10.0 jruby-9.3.11.0 jruby-9.3.13.0 jruby-9.3.14.0 jruby-9.3.15.0 jruby-9.4.0.0 jruby-9.4.1.0 jruby-9.4.2.0 jruby-9.4.3.0 jruby-9.4.4.0 jruby-9.4.5.0 jruby-9.4.6.0 jruby-9.4.7.0 jruby-9.4.8.0 jruby-9.4.9.0 jruby-9.4.10.0 jruby-9.4.11.0 macruby-0.12 maglev-1.0.0 maglev-1.1beta maglev-1.1beta2 maglev-1.1RC1 maglev-1.2Alpha maglev-1.2Alpha2 maglev-1.2Alpha3 maglev-1.2Alpha4 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1.4.0 mruby-1.4.1 mruby-2.0.0 mruby-2.0.1 mruby-2.1.0-rc mruby-2.1.0 mruby-2.1.1-rc mruby-2.1.1-rc2 mruby-2.1.1 rbx-1.0.0-20100514 rbx-1.0.1-20100603 rbx-1.1.0-20100923 rbx-1.1.1-20101116 rbx-1.2.0-20101221 rbx-1.2.1-20110215 rbx-1.2.2-20110222 rbx-1.2.3-20110315 rbx-1.2.4-20110705 rbx-1.3.2 rbx-1.3.3 rbx-1.4.1 rbx-1.4.3 rbx-2.0.0 rbx-2.1.0 rbx-2.1.1 rbx-2.2.0 rbx-2.2.2 rbx-2.2.3 rbx-2.2.4 rbx-2.2.5 rbx-2.2.6 rbx-2.2.7 rbx-2.2.8 rbx-2.2.9 rbx-2.2.10 rbx-2.3.0 rbx-2.4.0 rbx-2.4.1 rbx-2.5.0 rbx-2.5.1 rbx-2.5.2 rbx-2.5.3 rbx-2.5.4 rbx-2.5.5 rbx-2.5.6 rbx-2.5.7 rbx-2.5.8 rbx-3.70 rbx-3.71 rbx-3.72 rbx-3.73 rbx-3.74 rbx-3.75 rbx-3.76 rbx-3.77 rbx-3.78 rbx-3.79 rbx-3.80 rbx-3.81 rbx-3.82 rbx-3.83 rbx-3.84 rbx-3.85 rbx-3.86 rbx-3.87 rbx-3.88 rbx-3.89 rbx-3.90 rbx-3.91 rbx-3.92 rbx-3.93 rbx-3.94 rbx-3.95 rbx-3.96 rbx-3.97 rbx-3.98 rbx-3.99 rbx-3.100 rbx-3.101 rbx-3.102 rbx-3.103 rbx-3.104 rbx-3.105 rbx-3.106 rbx-3.107 rbx-4.0 rbx-4.1 rbx-4.2 rbx-4.3 rbx-4.4 rbx-4.5 rbx-4.6 rbx-4.7 rbx-4.8 rbx-4.9 rbx-4.10 rbx-4.11 rbx-4.12 rbx-4.13 rbx-4.14 rbx-4.15 rbx-4.16 rbx-4.17 rbx-4.18 rbx-4.19 rbx-4.20 rbx-5.0 ree-1.8.6-20080507 ree-1.8.6-20080621 ree-1.8.6-20080623 ree-1.8.6-20080624 ree-1.8.6-20080709 ree-1.8.6-20080810 ree-1.8.6-20081205 ree-1.8.6-20081215 ree-1.8.6-20090113 ree-1.8.6-20090201 ree-1.8.6-20090421 ree-1.8.6-20090520 ree-1.8.6-20090610 ree-1.8.6-20090928 ree-1.8.7-2009.10 ree-1.8.7-2010.01 ree-1.8.7-2010.02 ree-1.8.7-2011.01 ree-1.8.7-2011.02 ree-1.8.7-2011.03 ree-1.8.7-2011.12 ree-1.8.7-2012.02 ruby-1.8.5-p115 ruby-1.8.5-p231 ruby-1.8.6-p286 ruby-1.8.6-p287 ruby-1.8.6-p369 ruby-1.8.6-p383 ruby-1.8.6-p398 ruby-1.8.6-p399 ruby-1.8.6-p420 ruby-1.8.7-p160 ruby-1.8.7-p174 ruby-1.8.7-p248 ruby-1.8.7-p249 ruby-1.8.7-p299 ruby-1.8.7-p302 ruby-1.8.7-p330 ruby-1.8.7-p334 ruby-1.8.7-p352 ruby-1.8.7-p357 ruby-1.8.7-p358 ruby-1.8.7-p370 ruby-1.8.7-p371 ruby-1.8.7-p374 ruby-1.9.0 ruby-1.9.1-p129 ruby-1.9.1-p243 ruby-1.9.1-p376 ruby-1.9.1-p378 ruby-1.9.1-p429 ruby-1.9.1-p431 ruby-1.9.2-p0 ruby-1.9.2-p136 ruby-1.9.2-p180 ruby-1.9.2-p290 ruby-1.9.2-p318 ruby-1.9.2-p320 ruby-1.9.2-p330 ruby-1.9.3-preview1 ruby-1.9.3-rc1 ruby-1.9.3-p0 ruby-1.9.3-p125 ruby-1.9.3-p194 ruby-1.9.3-p286 ruby-1.9.3-p327 ruby-1.9.3-p362 ruby-1.9.3-p374 ruby-1.9.3-p385 ruby-1.9.3-p392 ruby-1.9.3-p429 ruby-1.9.3-p448 ruby-1.9.3-p484 ruby-1.9.3-p545 ruby-1.9.3-p547 ruby-1.9.3-p550 ruby-1.9.3-p551 ruby-2.0.0-preview1 ruby-2.0.0-preview2 ruby-2.0.0-rc1 ruby-2.0.0-rc2 ruby-2.0.0-p0 ruby-2.0.0-p195 ruby-2.0.0-p247 ruby-2.0.0-p353 ruby-2.0.0-p451 ruby-2.0.0-p481 ruby-2.0.0-p576 ruby-2.0.0-p594 ruby-2.0.0-p598 ruby-2.0.0-p643 ruby-2.0.0-p645 ruby-2.0.0-p647 ruby-2.0.0-p648 ruby-2.1.0-preview1 ruby-2.1.0-preview2 ruby-2.1.0-rc1 ruby-2.1.0 ruby-2.1.1 ruby-2.1.2 ruby-2.1.3 ruby-2.1.4 ruby-2.1.5 ruby-2.1.6 ruby-2.1.7 ruby-2.1.8 ruby-2.1.9 ruby-2.1.10 ruby-2.2.0-preview1 ruby-2.2.0-preview2 ruby-2.2.0-rc1 ruby-2.2.0 ruby-2.2.1 ruby-2.2.2 ruby-2.2.3 ruby-2.2.4 ruby-2.2.5 ruby-2.2.6 ruby-2.2.7 ruby-2.2.8 ruby-2.2.9 ruby-2.2.10 ruby-2.3.0-preview1 ruby-2.3.0-preview2 ruby-2.3.0 ruby-2.3.1 ruby-2.3.2 ruby-2.3.3 ruby-2.3.4 ruby-2.3.5 ruby-2.3.6 ruby-2.3.7 ruby-2.3.8 ruby-2.4.0-preview1 ruby-2.4.0-preview2 ruby-2.4.0-preview3 ruby-2.4.0-rc1 ruby-2.4.0 ruby-2.4.1 ruby-2.4.2 ruby-2.4.3 ruby-2.4.4 ruby-2.4.5 ruby-2.4.6 ruby-2.4.7 ruby-2.4.8 ruby-2.4.9 ruby-2.4.10 ruby-2.5.0-preview1 ruby-2.5.0-rc1 ruby-2.5.0 ruby-2.5.1 ruby-2.5.2 ruby-2.5.3 ruby-2.5.4 ruby-2.5.5 ruby-2.5.6 ruby-2.5.7 ruby-2.5.8 ruby-2.5.9 ruby-2.6.0-preview1 ruby-2.6.0-preview2 ruby-2.6.0-preview3 ruby-2.6.0-rc1 ruby-2.6.0-rc2 ruby-2.6.0 ruby-2.6.1 ruby-2.6.2 ruby-2.6.3 ruby-2.6.4 ruby-2.6.5 ruby-2.6.6 ruby-2.6.7 ruby-2.6.8 ruby-2.6.9 ruby-2.6.10 ruby-2.7.0-preview1 ruby-2.7.0-preview2 ruby-2.7.0-preview3 ruby-2.7.0-rc1 ruby-2.7.0-rc2 ruby-2.7.0 ruby-2.7.1 ruby-2.7.2 ruby-2.7.3 ruby-2.7.4 ruby-2.7.5 ruby-2.7.6 ruby-2.7.7 ruby-2.7.8 ruby-3.0.0-preview1 ruby-3.0.0-preview2 ruby-3.0.0-rc1 ruby-3.0.0 ruby-3.0.1 ruby-3.0.2 ruby-3.0.3 ruby-3.0.4 ruby-3.0.5 ruby-3.0.6 ruby-3.0.7 ruby-3.1.0-preview1 ruby-3.1.0 ruby-3.1.1 ruby-3.1.2 ruby-3.1.3 ruby-3.1.4 ruby-3.1.5 ruby-3.2.0-preview1 ruby-3.2.0-preview2 ruby-3.2.0-preview3 ruby-3.2.0-rc1 ruby-3.2.0 ruby-3.2.1 ruby-3.2.2 ruby-3.2.3 ruby-3.2.4 ruby-3.2.5 ruby-3.2.6 +ruby-3.2.7 ruby-3.3.0-preview1 ruby-3.3.0-preview2 ruby-3.3.0-preview3 ruby-3.3.0 ruby-3.3.1 ruby-3.3.2 ruby-3.3.3 ruby-3.3.4 ruby-3.3.5 ruby-3.3.6 ruby-3.3.7 ruby-3.4.0-preview1 ruby-3.4.0 ruby-3.4.1 truffleruby-1.0.0-rc2 truffleruby-1.0.0-rc3 truffleruby-1.0.0-rc5 truffleruby-1.0.0-rc6 truffleruby-1.0.0-rc7 truffleruby-1.0.0-rc8 truffleruby-1.0.0-rc9 truffleruby-1.0.0-rc10 truffleruby-1.0.0-rc11 truffleruby-1.0.0-rc12 truffleruby-1.0.0-rc13 truffleruby-1.0.0-rc14 truffleruby-1.0.0-rc15 truffleruby-1.0.0-rc16 truffleruby-19.0.0 truffleruby-19.0.2 truffleruby-19.1.0 truffleruby-19.1.1 truffleruby-19.2.0 truffleruby-19.2.0.1 truffleruby-19.2.1 truffleruby-19.3.0 truffleruby-19.3.0.2 truffleruby-19.3.1 truffleruby-20.0.0 truffleruby-20.1.0 truffleruby-20.2.0 truffleruby-20.3.0 truffleruby-21.0.0 truffleruby-21.1.0 truffleruby-21.2.0 truffleruby-21.2.0.1 truffleruby-21.3.0 truffleruby-22.0.0.2 truffleruby-22.1.0 truffleruby-22.2.0 truffleruby-22.3.0 truffleruby-22.3.1 truffleruby-23.0.0-preview1 truffleruby-23.0.0 truffleruby-23.1.0 truffleruby-23.1.1 truffleruby-23.1.2 truffleruby-24.0.0 truffleruby-24.0.1 truffleruby-24.0.2 truffleruby-24.1.0 truffleruby-24.1.1 truffleruby-24.1.2 diff --git a/config/md5 b/config/md5 index efe8e8b..847a063 100644 --- a/config/md5 +++ b/config/md5 @@ -1278,785 +1278,786 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.6.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.7.tar.bz2=5cc60a18ac4cca5322994c6d19753846 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.8.tar.bz2=45b547a987088761a88143e5fabef13e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.9.tar.bz2=e993696c73e6be0017d90ccdddbcc644 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.0.tar.bz2=032a73d5182d84cbbf20b6e7e310c7c2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.1.tar.bz2=07c61bc0c9e09fc87808f62985cbff25 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.2.tar.bz2=62745ec761a45826841002e72cfca795 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.3.tar.bz2=538383cc35e5710a2175f36416ca3b7c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.4.tar.bz2=8a17255fa833fe3ff9c0275db79bfbff https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar.bz2=66dc3fdf49b1371fd6d362f3ea9d019b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=873b63cc2e4abbb6ec5126ab07ce429a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=84658482a83ee3a4c80d145d0bd7ccb8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=d3af42a4fd701e0710d5f6a16e6bb9a3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c5f56b0149ab787d89c69056eb45e483 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=13f1011cc048aef7199ae8f14bc2ac62 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=fba1bf0b819f52561deab198fd36743d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=3ec8f383026889e2f3c328d86839a7b2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=9c3775365cab8e1e82aa19e87b9711dd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=cce17e87cc9bfcb6b995e5f1996c423c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=b80a93441133b85258d97085aeead20a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=74c45b08a2dc28871ff158b608cc8685 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=469b22a4b12f23e86ac25b3d797ff559 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=ea7767cbfacd744813ccaedd1b4e0013 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=0d9f69db1bd665c9e5c9592b483b31a1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=068f5c90b5b381cd58d8804ca2b3be64 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=6181192273efab4aabaa8628fc83c7be https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=fa690cb7132706fb25dfc625e949e96a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=c443f32cd4c91fb37ff79bd86906e1bc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=6fa3edab1bbacf7328074a7fba22be50 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=a950bc4af16446fce2f9266e95629bdb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=d9bce275c2f36dbde8a6c25f9fa10c2e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=6486c5ce9ec697039b0bb36d2bf18a0d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=79f0927984b8e6e7934b34bdb2a3e5e5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=214ac1e49a75291a68c63134bc246a8a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=94a39d1b226350362666f6305866b20b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=4db7d99d775a7f24bb55c6053d4eb864 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=c0db831a97b8427e0777adeaebf7a9d8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=830b4845fbfd45df75758e311a013ffc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=3fc39c824b2060a3a2766ca01037dd15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=0b395f3884c78c6938896ff253c5251b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=2be294a056a45a50262d1796906f8860 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=0270733b808489a91e41f73d9fe971e9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=33db4a687e4943faf6c2853179b67935 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=dea6663b2c113190e9b99a6dcedb3aa0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=835e563bfbe3c8311326660a51f3394c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=66e3c1e1140300c8236c13e3178cb8ab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=07b12bd2a7d8242c34d824882e654c22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=fe12c0e211f90076b51c7916c830971f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=65ab3105b0c6d5e8a2e9977a3ab7ed94 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=08547ad8e760e0776c74401ae5bbd8e5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=631b4ea065d18df96c6ccbc141904bb3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=03a67e234d886f3c698c1571e42cc7a6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=0ded0cb8ce18a846d71d7e04d24c2e78 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=5251aed0ba4d8349413d6bf4c261bea3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=f09694c4f23d7625f72606bce0efb710 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=340db3acb58829b51e4a7ac1c77246d4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1bd86cb46a9e6c40c285258879a3d59 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=d86b2a1e9721b9459e1283006e03fa92 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.2.6.tar.bz2=7d7e84912bb4d1f9915bb391fac54694 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.3.6.tar.bz2=3148fa25b5cd308156c567181ccf5ac3 ironruby-1.0.zip=7a92888837b3507355ed391dbfc0ab83 ironruby-1.1.3.zip=4f2af6253a459cc054d6c55956e514a9 jruby-bin-1.3.1.tar.gz=4a95db8fc93ed7219663fbede98b6117 jruby-bin-1.4.tar.gz=54dba9a88b2b3f99ac86a79828d0178b jruby-bin-1.4.0.tar.gz=f37322c18e9134e91e064aebb4baa4c7 jruby-bin-1.4.0.zip=3a9c8a5115a679da7d7a49a56d57d4c0 jruby-bin-1.4.1.tar.gz=a4aa8c43d1b9ffd9dbc6cb738d55a034 jruby-bin-1.5.0.tar.gz=ee2b4e326e8b87858e5dd0c8e94102e6 jruby-bin-1.5.1.tar.gz=74251383e08e8c339cacc35a7900d3af jruby-bin-1.5.2.tar.gz=d239deb9a108a6abbfbd6cb79cf8255b jruby-bin-1.5.3.tar.gz=ccb0b2dbc300d8dd4ad1bd4da48b8320 jruby-bin-1.5.5.tar.gz=8e00f7d40cbf221f733d6f7a15784e9a jruby-bin-1.5.6.tar.gz=94033a36517645b7a7ec781a3507c654 jruby-bin-1.6.0.tar.gz=f4d7e339dfc0fbaef5b878d1c0a66fbe jruby-bin-1.6.2.tar.gz=a46f978c24a208717023bb4b8995c678 jruby-bin-1.6.3.tar.gz=694b80e4eea784cdc1eb39fb1e3132c9 jruby-bin-1.6.4.tar.gz=0e96b6f4d1c6f12b5ac480cd7ab7da78 jruby-bin-1.6.5.tar.gz=54354082673bd115f945890dc6864413 jruby-bin-1.6.5.1.tar.gz=246a7aa2b7d7e6e9e8a0c2e282cbcfd0 jruby-bin-1.6.7.tar.gz=fd1b8d7389aa92da69ea6efb4782e40a jruby-bin-1.6.7.2.tar.gz=1e520f1b5130114464e5f1950cb24774 jruby-bin-1.6.8.tar.gz=a76ac5845640e4a1ebdfa74421efc935 jruby-bin-1.7.0.preview1.tar.gz=7b9e5e1cd0d818d0199086d948f948b4 jruby-bin-1.7.0.preview2.tar.gz=e8f1623759590aadbf49e4cc53f1cb61 jruby-bin-1.7.0.RC1.tar.gz=bdddcee3d126cddd9a85b5a066a7e25e jruby-bin-1.7.0.RC2.tar.gz=ffe2dd61711f4574fed344af151e5de5 jruby-bin-1.7.0.tar.gz=21861e0ecdbf48cda713c8ade82fdddb jruby-bin-1.7.1.tar.gz=86e659863541d8b987cb7bfbe3b4cfb0 jruby-bin-1.7.2.tar.gz=6ec9293b6dffd1e8ee57e9b7c6d18cbe jruby-bin-1.7.3.tar.gz=f0adf8ccee6f6777f7ab8e5e1d7a1f47 jruby-bin-1.7.4.tar.gz=c6a56eae78db28dddba911ccd0848c32 jruby-bin-1.7.5.tar.gz=c2a28c43c8095127d4a4aee0cf9b1439 jruby-bin-1.7.6.tar.gz=5d10011516a3d3bde10209b60cfcc0ef jruby-bin-1.7.7.tar.gz=9d6df2188fa57f12bf6fde4e4b2e3f09 jruby-bin-1.7.8.tar.gz=1e68f39d6dba7b6d9db81e24bb6b7d0a jruby-bin-1.7.9.tar.gz=b2e44f1f44837c07068ee453a89f4b55 jruby-bin-1.7.10.tar.gz=c84fe9245a73f9cd29f56343b7d2e39a jruby-bin-1.7.11.tar.gz=d6e6ab72426fa7fdc9ae55950980d877 jruby-bin-1.7.12.tar.gz=2073aa6dfc7c701ef7c3d3143d181582 jruby-bin-1.7.14.tar.gz=bc33284f27a3508a70d2ade100a2f6bd jruby-bin-1.7.15.tar.gz=92e63cffcb86842511aeeed95bdf96ed jruby-bin-1.7.16.tar.gz=92cb058d1a896257b5ac1c26dc433506 jruby-bin-1.7.16.1.tar.gz=eec2f0e03560bacf02a09c0096a99cad jruby-bin-1.7.16.2.tar.gz=cd31909b67239c5c6a795521fca5c239 jruby-bin-1.7.17.tar.gz=8b78ba1acdb718431f71c38287c07967 jruby-bin-1.7.18.tar.gz=aa7286140be0f6f60534ebffededc708 jruby-bin-1.7.19.tar.gz=bc38596757d8000d6ca4c4c3f8eacea6 jruby-bin-1.7.20.tar.gz=0c2adc160cb85c888b269e8ac4f886fc jruby-bin-1.7.21.tar.gz=bc91594072032023d146f330764d3274 jruby-bin-1.7.22.tar.gz=1da904bf41d362d0d0b366d9e781168f jruby-bin-1.7.23.tar.gz=41e3f45c28c94a275f9eeb22721da35d jruby-bin-1.7.25.tar.gz=fc43ead73f657f5261428923974fd605 jruby-bin-1.7.26.tar.gz=4ca60264a9560f37fdba8108543e72c2 jruby-bin-1.7.27.tar.gz=b98b0a2c52e885a868a2b60092e1cd3d jruby-bin-9.0.0.0.pre1.tar.gz=d5c8b30648348aa883f893d464d46bf1 jruby-bin-9.0.0.0.pre2.tar.gz=86994a9d7ed2cf318c75392623a3e6da jruby-bin-9.0.0.0.tar.gz=fe9036ea69bf23dc3b69cfc94adb5404 jruby-bin-9.0.1.0.tar.gz=a82bc640e0080b1d9a21d1477c8400e3 jruby-bin-9.0.3.0.tar.gz=828dd6c6dd18e5b186ccfd65753077bd jruby-bin-9.0.4.0.tar.gz=645bf4a1dcde3f19dc0fff75c8b4b685 jruby-bin-9.0.5.0.tar.gz=1d2dc649cbacbe26418ef3ba421018b1 jruby-bin-9.1.0.0.tar.gz=fe26e6308d006d35eb613cdd47d1dc99 jruby-bin-9.1.1.0.tar.gz=8356334270df07a214590d00a986837b jruby-bin-9.1.2.0.tar.gz=749bb917dde9666e365e12bbe776a5c2 jruby-bin-9.1.3.0.tar.gz=91c246cd623702032e88283565da5480 jruby-bin-9.1.4.0.tar.gz=5b80b78c09bf0cd4dcbcb9e1fe3e8b73 jruby-bin-9.1.5.0.tar.gz=e9b2cc44757db4cfbe7da79601d0169a jruby-bin-9.1.6.0.tar.gz=4092a89b01b55d1fb5498113f97ab0ca jruby-bin-9.1.7.0.tar.gz=b120c3eaeef7ff2aed3a57701e414e78 jruby-bin-9.1.8.0.tar.gz=0fdee002c56ec91dff1efffce205265c jruby-bin-9.1.9.0.tar.gz=170efc34297d7ac2a56bb1163e96b363 jruby-bin-9.1.10.0.tar.gz=b75e0d1a200e8f790d8bbc84f91e3002 jruby-bin-9.1.11.0.tar.gz=0502a14141da25a460ce197720bab4c3 jruby-bin-9.1.12.0.tar.gz=74bd7ae08c159fc62cb6f64845a868cc jruby-bin-9.1.13.0.tar.gz=6c642c8a2653a585779f453d8c843fd7 jruby-bin-9.1.14.0.tar.gz=a7e0ecd529690025d327c45744f60fa4 jruby-bin-9.1.15.0.tar.gz=01c29690324d7eb414fba66e4c009c9e jruby-bin-9.1.16.0.tar.gz=e64c3aa1310c272194fd1750b0b79fac jruby-bin-9.1.17.0.tar.gz=f28d1fcbb60e550f3abd839102ad0069 jruby-bin-9.2.0.0.tar.gz=bd476da4bed39ffcfff7116f448a5365 jruby-bin-9.2.1.0.tar.gz=4b78b0a40ca541556f5ee75a815e0be0 jruby-bin-9.2.2.0.tar.gz=be678559801be029fe233c33396e34d2 jruby-bin-9.2.3.0.tar.gz=79328ab1ed37d612da35271183e46bbd jruby-bin-9.2.4.0.tar.gz=f538f2be459f0f0e517a53446e78a354 jruby-bin-9.2.4.1.tar.gz=d373bbc2bd6caabfcc9914c4067e9d24 jruby-bin-9.2.5.0.tar.gz=14582fd6eee19610f0a7433ce5dd5ce4 jruby-bin-9.2.6.0.tar.gz=dba182ac9943b726b609ca61747c1835 jruby-bin-9.2.7.0.tar.gz=c0111b2cafa920df76284044e1aeedc7 jruby-bin-9.2.8.0.tar.gz=7d652b586a18f1c665289fd7e6edf4f5 jruby-bin-9.2.9.0.tar.gz=74b3451f79c13c2fc66c6dee69d46699 jruby-bin-9.2.10.0.tar.gz=e6ce97eae6e35b622c1b572f9297705b jruby-bin-9.2.11.0.tar.gz=22b003adfb03b253721cc85db248698f jruby-bin-9.2.11.1.tar.gz=687586132f7b649b1bdd7b823577c9d8 jruby-bin-9.2.12.0.tar.gz=cc7599837fbd0839cce7293577a34f2c jruby-bin-9.2.13.0.tar.gz=99df4eb89f88c7582bfe7c313daec7b4 jruby-bin-9.2.14.0.tar.gz=421c5b8146701177a738a0a691190018 jruby-bin-9.2.15.0.tar.gz=ba593f1de2c4e592a8ca9b9e903af457 jruby-bin-9.2.16.0.tar.gz=d8d954ee0ab6f4868c3fc63339660af9 jruby-bin-9.2.17.0.tar.gz=382fb3d9d2982efd5396f1a42e3fa6a1 jruby-bin-9.2.18.0.tar.gz=002ac95859a2176cb0a58d81d6e0fb14 jruby-bin-9.2.19.0.tar.gz=0961867a77838853f32ee72dbde7c00e jruby-bin-9.2.20.0.tar.gz=840876dd0ca0098452dd2667fe9dd7f4 jruby-bin-9.2.20.1.tar.gz=5856ed030f0d9e75d2384cf42f62a4de jruby-bin-9.2.21.0.tar.gz=9957c1d2bd9265144fe55f9f7093272a jruby-bin-9.3.0.0.tar.gz=501a3c975b3c9478b72d4b0cd37170b9 jruby-bin-9.3.1.0.tar.gz=201d3e483bf847f5c59f4b1f3bf594d5 jruby-bin-9.3.2.0.tar.gz=259c276f68a01495dda24407394a382d jruby-bin-9.3.3.0.tar.gz=cd49b81753048cee9c8ffdd2ce1cb3e2 jruby-bin-9.3.4.0.tar.gz=7292dd9a56155aa015ec08c03855b3fc jruby-bin-9.3.6.0.tar.gz=bc5a7b02be69fdf3f5584e8880fc7dcc jruby-bin-9.3.7.0.tar.gz=49b17b5cd7cf8bfb09d8f64147d992ef jruby-bin-9.3.8.0.tar.gz=6ea209b699a06944d0653d8048d8bfec jruby-bin-9.3.9.0.tar.gz=9a0f0a931346bc6ea34196a5c88002ec jruby-bin-9.3.10.0.tar.gz=83c9d776dfc8cf33bfa60f7e78077160 jruby-bin-9.3.11.0.tar.gz=6ccc04e658c49db19fc0c452db0f2931 jruby-bin-9.3.13.0.tar.gz=3f20268b494da900504e921507248183 jruby-bin-9.3.14.0.tar.gz=87a96fd3af448ec8fd5ca45c6469ecc9 jruby-bin-9.3.15.0.tar.gz=385fabe180b68fb8cd3743b315109e5f jruby-bin-9.4.0.0.tar.gz=d0136daa4910f6e6b21858260eb00fe2 jruby-bin-9.4.1.0.tar.gz=abe2669672ac973f1b41a4d3860eb7ae jruby-bin-9.4.2.0.tar.gz=486e50f3c74e7400e71631819fde91da jruby-bin-9.4.3.0.tar.gz=526006fefb3e5ffc5095ab5599cc38c6 jruby-bin-9.4.4.0.tar.gz=287b5c3a9b63ff93e49ae9dc0347263b jruby-bin-9.4.5.0.tar.gz=09c6fceb38d6c086af2e4d5f21f9fe65 jruby-bin-9.4.6.0.tar.gz=5e2fe4ed897d938332ee0d85d2aa60bc jruby-bin-9.4.7.0.tar.gz=a0633ca837efff62edca84ceae1f5515 jruby-bin-9.4.8.0.tar.gz=9f520a3a416b598b4e53916e7180b623 jruby-bin-9.4.9.0.tar.gz=b7a789e9ff1b87d0e8c7bda7fae31c16 jruby-bin-9.4.10.0.tar.gz=36d6d8d745e793580ec4b12caa257501 jruby-bin-9.4.11.0.tar.gz=46e632baba1068e17345c7d24fec4241 libiconv-1.13.1.tar.gz=7ab33ebd26687c744a37264a330bbe9a MacRuby%200.5.zip=675454a8c7bc19d606d90a726e08427c MacRuby%200.6.zip=a80afd3700c88cf95c539fc63b272faf MacRuby%200.7.1.zip=e8245dcd03c0757dfae7e6fee913947a MacRuby%200.7.zip=0bb60588c9ec9b1517665743bb05132f MacRuby%200.8.zip=735ac0a70f539e00b5de6fbec09c2c5c MacRuby%200.9.zip=fa01345e8fbfee620bbac64743a45f69 MacRuby%200.10.zip=1662d13d2f73cfc26258598f6988dcbc MacRuby%200.11.zip=b0cc23d60484a07012bcad549cef6054 MacRuby%200.12.zip=e1c5fa1b007a1cdc38c527a47302bf5e MagLev-1.0.0.tar.gz=e02cb8ee04438451eb78df14f91a68a9 MagLev-1.1beta.tar.gz=d542c7af290ce3b588b57629906b19e9 MagLev-1.1beta2.tar.gz=0ef88d5d145611aef324cb51be0aaafd MagLev-1.1RC1.tar.gz=41f4a0994daf1e5271cbd0ebe57816f4 MagLev-1.2Alpha.tar.gz=5c7dd3acef9dbddc0829bb1daa087abb MagLev-1.2Alpha2.tar.gz=cbbeae109854a6bf107a747a93fd478b MagLev-1.2Alpha3.tar.gz=b7470518f2b697eb1a5a39eff9b6d749 MagLev-1.2Alpha4.tar.gz=d54f04a611ce838b9d7009627065b7ca mruby-1.0.0.tar.gz=d9aec6a20fc1add65ee07ff6cf0e1ef2 mruby-1.1.0.tar.gz=60d75ea704c9285f3c80b3ad1d2b68de mruby-1.2.0.tar.gz=b5a3b7962d9db8cb8fb8105aa914d16c mruby-1.3.0.tar.gz=9714dd2804064d0043e099b7211d72b9 mruby-1.4.0.tar.gz=25efc35511070454074b36863c4d5b5e mruby-1.4.1.tar.gz=b40bf09af3f4c6e2bc443b9ac803a3ad mruby-2.0.0.tar.gz=b86c6a1dd86cb4ebe51e3fe38964a830 mruby-2.0.1.tar.gz=15b426a8a94a610c45414578786d05e3 mruby-2.1.0-rc.tar.gz=58a85fcb102d72900a25190da670e01d mruby-2.1.0.tar.gz=c01a4bbf62e6f5765c70b8813e0ce7da mruby-2.1.1-rc.tar.gz=809edd80e680855e7c4cf3c569972f28 mruby-2.1.1-rc2.tar.gz=24879fa5eb587f9415f03f8f3701842e mruby-2.1.1.tar.gz=c0ee4a112695046b9e4f177e31096d6c ncurses.tar.gz=cce05daf61a64501ef6cd8da1f727ec6 openssl-0.9.8k.tar.gz=e555c6d58d276aec7fdc53363e338ab3 openssl-0.9.8n.tar.gz=076d8efc3ed93646bd01f04e23c07066 openssl-1.0.1c.tar.gz=ae412727c8c15b67880aef7bd2999b2e openssl-1.0.1i.tar.gz=c8dc151a671b9b92ff3e4c118b174972 pkg-config-0.23.tar.gz=d922a88782b64441d06547632fd85744 readline-5.2.tar.gz=e39331f32ad14009b9ff49cc10c5e751 readline-6.0.tar.gz=b7f65a48add447693be6e86f04a63019 readline-6.2.tar.gz=67948acb2ca081f23359d0256e9a271c release-2.0.0-rc1.zip=b05b5e3c2712a294e4b09ebf450c1bfe rubinius-1.0.0-20100514.tar.gz=b05f4e791d3712c5a50b3d210dac6eb0 rubinius-1.0.1-20100603.tar.gz=eb185703c7ae0c0210e8dcb7f783ee8e rubinius-1.1.0-20100923.tar.gz=e2ae16238b201de09975abe19da09ea9 rubinius-1.1.1-20101116.tar.gz=b39f618eeba37c3aff215da8bca55fd7 rubinius-1.2.0-20101221.tar.gz=4284c2660f1f648942de35d4fc871f70 rubinius-1.2.1-20110215.tar.gz=e4a5127480062fddddc7ce2860b3b813 rubinius-1.2.2-20110222.tar.gz=59124378fb7ee040e9ee4e4736d89fc0 rubinius-1.2.3-20110315.tar.gz=9782dab18c2dd440af6b76e8eb5bc0f0 rubinius-1.2.4-20110705.tar.gz=403c777d19b3553e9cb36701fe002c5e rubinius-1.3.2.tar.bz2=64801ad8dd4e5e4fcb74ff313fec0a69 rubinius-1.3.3.tar.bz2=79f1f860ed8242257bd7f3e88c81a197 rubinius-1.4.1.tar.bz2=76b840405d4b9303261c27cf15002386 rubinius-2.0.0.tar.bz2=62e379e044c822b81e7b20a27daf133e rubinius-2.1.0.tar.bz2=908053f38fd840c75a93aab7487c20a5 rubinius-2.1.1.tar.bz2=6b4df0caec5ea88373e113f97a3b4c72 rubinius-2.2.0.tar.bz2=f1fbc6f3baf1da5ad86b3858f30f3349 rubinius-2.2.2.tar.bz2=ac70d629ea43525d91e81f4ccf135299 rubinius-2.2.3.tar.bz2=d9978cf1a4e8f0310db63e49834f9837 rubinius-2.2.4.tar.bz2=c10699da85a8eb5861a37b29077213bd rubinius-2.2.5.tar.bz2=5996dc8529b2ffe5921c5e7020bee20e rubinius-2.2.6.tar.bz2=85339bb6dd525eee719edf0551868f56 rubinius-2.2.7.tar.bz2=de2e6f4c3bd9a90bcb89f2ea27ddee9e rubinius-2.2.8.tar.bz2=c4db1ffb8dbdf864240cabe8b7758b49 rubinius-2.2.9.tar.bz2=0bf87ba617fa989e47d20942410028af rubinius-2.2.10.tar.bz2=8680da7eb921e6f595a1d716915ca7e0 rubinius-2.3.0.tar.bz2=e003a30af6689c8198116b3405d09d8e rubinius-2.4.0.tar.bz2=62391a51f49820daa51463066c3ce007 rubinius-2.4.1.tar.bz2=7758721b6e848387c3943ddb9ebd9479 rubinius-2.5.0.tar.bz2=178baa1ad172df0801765ea93bc36d87 rubinius-2.5.1.tar.bz2=77e1b87dc357691ad44b561a5f45c188 rubinius-2.5.2.tar.bz2=e5973d6e0a16f0390dc2a7478db83ff5 rubinius-2.5.3.tar.bz2=b19709eb3fa9e05b3fa6a357b33e3b5b rubinius-2.5.4.tar.bz2=64587916e5d445ed9bc630017a04498e rubinius-2.5.5.tar.bz2=ef671bbab50cbe2f70f953c491311261 rubinius-2.5.6.tar.bz2=597e4b049f49966c646faf699856c1b9 rubinius-2.5.7.tar.bz2=9a7f404019bce9fc34a7af7feb7cbb74 rubinius-2.5.8.tar.bz2=a24520892cada1f660e719a25abf63e3 ruby-1.8.5-p115.tar.bz2=03955e3c367b9beb3efe144c9f00d689 ruby-1.8.5-p115.tar.gz=20ca6cc87eb077296806412feaac0356 ruby-1.8.5-p231.tar.bz2=327f5aa6573787432222e96195cffd1e ruby-1.8.5-p231.tar.gz=e900cf225d55414bffe878f00a85807c ruby-1.8.6-p286.tar.bz2=e6b6bf8f34370e433936adb7a7065e63 ruby-1.8.6-p286.tar.gz=797ea136fe43e4286c9362ee4516674e ruby-1.8.6-p287.tar.bz2=80b5f3db12531d36e6c81fac6d05dda9 ruby-1.8.6-p287.tar.gz=6ff3420094711266c3201a0c7c2faa38 ruby-1.8.6-p369.tar.bz2=c3c1f3dd0dfbd2e17a04e59c2f12cfc8 ruby-1.8.6-p369.tar.gz=8c140ae28b4c3947b92dfad69109d90b ruby-1.8.6-p383.tar.bz2=a48703cd982b9f0e3002700a50b0e88e ruby-1.8.6-p383.tar.gz=4f49544d4a4d0d34e9d86c41e853db2e ruby-1.8.6-p398.tar.bz2=fbd43dc44ee26be4d37e6bebbed6f8bd ruby-1.8.6-p398.tar.gz=736db5f56c2d9b0136e563d049249fa8 ruby-1.8.6-p399.tar.bz2=f77c307cb72fb8808b0e85af5d05cefc ruby-1.8.6-p399.tar.gz=c3d16cdd3c1ee8f3b7d1c399d4884e33 ruby-1.8.6-p420.tar.bz2=1c7a978e9ffd4f56dc2ad74bbd2c34f3 ruby-1.8.6-p420.tar.gz=ca1eee44f842e93b5098bc5a2bb9a40b ruby-1.8.7-p160.tar.bz2=f8ddb886b8a81cf005f53e9a9541091d ruby-1.8.7-p160.tar.gz=945398f97e2de6dd8ab6df68d10bb1a1 ruby-1.8.7-p174.tar.bz2=88c45aaf627b4404e5e4273cb03ba2ee ruby-1.8.7-p174.tar.gz=18dcdfef761a745ac7da45b61776afa5 ruby-1.8.7-p248.tar.bz2=37e19d46b7d4b845f57d3389084b94a6 ruby-1.8.7-p248.tar.gz=60a65374689ac8b90be54ca9c61c48e3 ruby-1.8.7-p249.tar.bz2=37200cc956a16996bbfd25bb4068f242 ruby-1.8.7-p249.tar.gz=d7db7763cffad279952eb7e9bbfc221c ruby-1.8.7-p299.tar.bz2=244439a87d75ab24170a9c2b451ce351 ruby-1.8.7-p299.tar.gz=43533980ee0ea57381040d4135cf9677 ruby-1.8.7-p302.tar.bz2=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p302.tar.gz=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p330.tar.bz2=2689719fb42c8cf0aa336f8c8933f413 ruby-1.8.7-p330.tar.gz=50a49edb787211598d08e756e733e42e ruby-1.8.7-p334.tar.bz2=2f14f604bf981bb938ab5fc8b09eb1a6 ruby-1.8.7-p334.tar.gz=aacb6ee5dfe2367682bba56af7f415b8 ruby-1.8.7-p352.tar.bz2=0c61ea41d1b1183b219b9afe97f18f52 ruby-1.8.7-p352.tar.gz=0c33f663a10a540ea65677bb755e57a7 ruby-1.8.7-p357.tar.bz2=3abd9e2a29f756a0d30c7bfca578cdeb ruby-1.8.7-p357.tar.gz=b2b8248ff5097cfd629f5b9768d1df82 ruby-1.8.7-p358.tar.bz2=de35f00997f4ccee3e22dff0f2d01b8a ruby-1.8.7-p370.tar.bz2=1e4c3194537dd8ff92e756993e55a29d ruby-1.8.7-p371.tar.bz2=c27526b298659a186bdb5107fcec2341 ruby-1.8.7-p371.tar.gz=653f07bb45f03d0bf3910491288764df ruby-1.8.7-p374.tar.bz2=83c92e2b57ea08f31187060098b2200b ruby-1.8.7-p374.tar.gz=b72a0bc5b824398537762e5272bbb8dc ruby-1.9.0.tar.bz2=17eb66ac3721340d21db352d8f5dec76 ruby-1.9.1-p129.tar.bz2=6fa62b20f72da471195830dec4eb2013 ruby-1.9.1-p129.tar.gz=c71f413514ee6341c627be2957023a5c ruby-1.9.1-p243.tar.bz2=66d4f8403d13623051091347764881a0 ruby-1.9.1-p243.tar.gz=515bfd965814e718c0943abf3dde5494 ruby-1.9.1-p376.tar.bz2=e019ae9c643c5efe91be49e29781fb94 ruby-1.9.1-p376.tar.gz=ebb20550a11e7f1a2fbd6fdec2a3e0a3 ruby-1.9.1-p378.tar.bz2=5922459622a23612eb9b68a3586cb5f8 ruby-1.9.1-p378.tar.gz=9fc5941bda150ac0a33b299e1e53654c ruby-1.9.1-p429.tar.bz2=09df32ae51b6337f7a2e3b1909b26213 ruby-1.9.1-p429.tar.gz=0f6d7630f26042e00bc59875755cf879 ruby-1.9.1-p431.tar.bz2=03179138ae95dbfae872ef49e9cc6da7 ruby-1.9.1-p431.tar.gz=23f28cffc007ed5ac72c8e9bec6837ce ruby-1.9.2-p0.tar.bz2=d8a02cadf57d2571cd4250e248ea7e4b ruby-1.9.2-p0.tar.gz=755aba44607c580fddc25e7c89260460 ruby-1.9.2-p136.tar.bz2=52958d35d1b437f5d9d225690de94c13 ruby-1.9.2-p136.tar.gz=6e17b200b907244478582b7d06cd512e ruby-1.9.2-p180.tar.bz2=68510eeb7511c403b91fe5476f250538 ruby-1.9.2-p180.tar.gz=0d6953820c9918820dd916e79f4bfde8 ruby-1.9.2-p290.tar.bz2=096758c3e853b839dc980b183227b182 ruby-1.9.2-p290.tar.gz=604da71839a6ae02b5b5b5e1b792d5eb ruby-1.9.2-p318.tar.bz2=be431c6cbfa27e3836a06c6315717747 ruby-1.9.2-p318.tar.gz=cc7bf1025128e1985882ae243f348802 ruby-1.9.2-p320.tar.bz2=b226dfe95d92750ee7163e899b33af00 ruby-1.9.2-p320.tar.gz=5ef5d9c07af207710bd9c2ad1cef4b42 ruby-1.9.2-p330.tar.bz2=8ba4aaf707023e76f80fc8f455c99858 ruby-1.9.2-p330.tar.gz=4b9330730491f96b402adc4a561e859a ruby-1.9.3-p0.tar.bz2=65401fb3194cdccd6c1175ab29b8fdb8 ruby-1.9.3-p0.tar.gz=8e2fef56185cfbaf29d0c8329fc77c05 ruby-1.9.3-p125.tar.bz2=702529a7f8417ed79f628b77d8061aa5 ruby-1.9.3-p125.tar.gz=e3ea86b9d3fc2d3ec867f66969ae3b92 ruby-1.9.3-p194.tar.bz2=2278eff4cfed3cbc0653bc73085caa34 ruby-1.9.3-p194.tar.gz=bc0c715c69da4d1d8bd57069c19f6c0e ruby-1.9.3-p286.tar.bz2=e76848a86606a4fd5dcf14fc4b4e755e ruby-1.9.3-p327.tar.bz2=7d602aba93f31ceef32800999855fbca ruby-1.9.3-p327.tar.gz=96118e856b502b5d7b3a4398e6c6e98c ruby-1.9.3-p362.tar.bz2=13c26ea368d88a560f07cc8c5eb4fa05 ruby-1.9.3-p374.tar.bz2=944e73eba9ee9e1f2647ff32ec0b14b2 ruby-1.9.3-p385.tar.bz2=5ec9aff670f4912b0f6f0e11e855ef6c ruby-1.9.3-p392.tar.bz2=a810d64e2255179d2f334eb61fb8519c ruby-1.9.3-p392.tar.gz=f689a7b61379f83cbbed3c7077d83859 ruby-1.9.3-p429.tar.bz2=c2b2de5ef15ea9b1aaa3152f9112af1b ruby-1.9.3-p429.tar.gz=993c72f7f805a9eb453f90b0b7fe0d2b ruby-1.9.3-p448.tar.bz2=aa710d386e5903f78f0231868255e6af ruby-1.9.3-p448.tar.gz=a893cff26bcf351b8975ebf2a63b1023 ruby-1.9.3-p484.tar.bz2=03f5b08804927ceabe5122cb90f5d0a9 ruby-1.9.3-p484.tar.gz=8ac0dee72fe12d75c8b2d0ef5d0c2968 ruby-1.9.3-p545.tar.bz2=4743c1dc48491070bae8fc8b423bc1a7 ruby-1.9.3-p545.tar.gz=8e8f6e4d7d0bb54e0edf8d9c4120f40c ruby-1.9.3-p547.tar.bz2=5363d399be7f827c77bf8ae5d1a69b38 ruby-1.9.3-p547.tar.gz=7531f9b1b35b16f3eb3d7bea786babfd ruby-1.9.3-p550.tar.bz2=c2169c8b14ccefd036081aba5ffa96da ruby-1.9.3-p551.tar.bz2=0d8b272b05c3449dc848bb7570f65bfe ruby-1.9.3-preview1.tar.bz2=7d93dc773c5824f05c6e6630d8c4bf9b ruby-1.9.3-preview1.tar.gz=0f0220be4cc7c51a82c1bd8f6a0969f3 ruby-1.9.3-rc1.tar.bz2=26f0dc51ad981e12c58b48380112fa4d ruby-1.9.3-rc1.tar.gz=46a2a481536ca0ca0b80ad2b091df68e ruby-2.0.0-p0.tar.bz2=895c1c581f8d28e8b3bb02472b2ccf6a ruby-2.0.0-p195.tar.bz2=2f54faea6ee1ca500632ec3c0cb59cb6 ruby-2.0.0-p247.tar.bz2=60913f3eec0c4071f44df42600be2604 ruby-2.0.0-p353.tar.bz2=20eb8f067d20f6b76b7e16cce2a85a55 ruby-2.0.0-p451.tar.bz2=908e4d1dbfe7362b15892f16af05adf8 ruby-2.0.0-p481.tar.bz2=ea406a8d415a1a5d8365596d4288f3da ruby-2.0.0-p576.tar.bz2=eccd42d43620544a085c5e3834572f37 ruby-2.0.0-p594.tar.bz2=58469c0daf5f3a892a70cc674ea59c7f ruby-2.0.0-p598.tar.bz2=a3f3908103a7d209d1d1cf4712e3953c ruby-2.0.0-p643.tar.bz2=1390888cac6cd175e6f164eff378cdde ruby-2.0.0-p645.tar.bz2=d576240c97cfcc3ed9bdc457eb1e8280 ruby-2.0.0-p647.tar.bz2=27a3ea1a8b8bca1a6de43a7d08e88b69 ruby-2.0.0-p648.tar.bz2=3544031334f4665aa2eb1414babc9345 ruby-2.0.0-preview1.tar.bz2=47a0f662f0e258aa1c5e429c310861b3 ruby-2.0.0-preview2.tar.bz2=a645a783c3302cc094a9963a5e700a4d ruby-2.0.0-rc1.tar.bz2=24cebdda11e01ff4889ac983cd7dc02c ruby-2.0.0-rc2.tar.bz2=e92420131bd7994513e0bf09a3e2a19b ruby-2.1.0-preview1.tar.bz2=d32d1ea23988399afadbd21c5a7a37fc ruby-2.1.0-preview2.tar.bz2=9d566a9b2d2e7e35ad6125e2a14ce672 ruby-2.1.0-rc1.tar.bz2=cae095b90349b5b0f7026060cc3dd2c5 ruby-2.1.0.tar.bz2=1546eeb763ac7754365664be763a1e8f ruby-2.1.1.tar.bz2=53edc33b2f590ecdd9f6a344b9d92d0d ruby-2.1.1.tar.gz=e57fdbb8ed56e70c43f39c79da1654b2 ruby-2.1.2.tar.bz2=ed9b8565bdeccb401d628ec8d54a0774 ruby-2.1.2.tar.gz=a5b5c83565f8bd954ee522bd287d2ca1 ruby-2.1.3.tar.bz2=02b7da3bb06037c777ca52e1194efccb ruby-2.1.4.tar.bz2=f4136e781d261e3cc20748005e1740b7 ruby-2.1.5.tar.bz2=a7c3e5fec47eff23091b566e9e1dac1b ruby-2.1.6.tar.bz2=e1a8e6c6bfbb09bb7f8d6be8f508e4a1 ruby-2.1.7.tar.bz2=3a878e98311d543e5de3533b82ef4a5a ruby-2.1.8.tar.bz2=b17130b5f02a61640ae3b629af931610 ruby-2.1.9.tar.bz2=62bd1cbfcbc22e4d137462bce992f6d1 ruby-2.1.10.tar.bz2=5155c624807ff2418a9e9f15202954d0 ruby-2.2.0-preview1.tar.bz2=767b132eec3e70b14afe5884a7a767b1 ruby-2.2.0-preview2.tar.bz2=d7abace25a8ffe861cb2807bef1c58a6 ruby-2.2.0-rc1.tar.bz2=7144732d30dd4547c0a59862b3345d54 ruby-2.2.0.tar.bz2=d03cd4690fec1fff81d096d1c1255fde ruby-2.2.1.tar.bz2=06973777736d8e6bdad8dcaa469a9da3 ruby-2.2.2.tar.bz2=af6eb4fa7247f1f7b2e19c8e6f3e3145 ruby-2.2.3.tar.bz2=f49a734729a71774d4a94a9a603114b2 ruby-2.2.4.tar.bz2=c3d65f6d2ebe90dda81a37885ea244f5 ruby-2.2.5.tar.bz2=0c7edd1ff3650c3b74da2efaf641bf34 ruby-2.2.6.tar.bz2=3d13cf447142b8a11cd9beb7bc63fee0 ruby-2.2.7.tar.bz2=ca7224d80c08b015bc3b8c226d0914c3 ruby-2.2.8.tar.bz2=054d2e2904d5175662293e29c3bdb927 ruby-2.2.9.tar.bz2=575adf8ede6b1ca7236a5341e73536b0 ruby-2.2.10.tar.bz2=bef1909a4c885157870ef69548cdad3a ruby-2.3.0-preview1.tar.bz2=776000d74ec6dd34bf355ff6921c8311 ruby-2.3.0-preview2.tar.bz2=3ad442ccb337e77e4acaa4113f25b76a ruby-2.3.0.tar.bz2=f0d9f9bbdc87372ca98988a571875819 ruby-2.3.1.tar.bz2=c194281f63d7fcd816747fe78474be5e ruby-2.3.2.tar.bz2=9d00f3772f1c8fa5eecdfea089e3032f ruby-2.3.3.tar.bz2=04b9c461a2bc1eec0535ad1947cad4fb ruby-2.3.4.tar.bz2=99961e97566aee6d63635e2da4cf73ac ruby-2.3.5.tar.bz2=e1efc3d5a948ca1f552005efe5925513 ruby-2.3.6.tar.bz2=b2443b11ee80319a119f7ec0c9b8d79a ruby-2.3.7.tar.bz2=5eb580d5cd13ffb5aacfb96580c0043d ruby-2.3.8.tar.bz2=78045332e298dfd859ceef9fe946950f ruby-2.4.0-preview1.tar.bz2=64b8983b5f53d053906e394f734aa296 ruby-2.4.0-preview2.tar.bz2=1074e8dea5baa89af7f7c2d1d2b9ebaa ruby-2.4.0-preview3.tar.bz2=9f767e6bc61830735ea7dc9cd5a63653 ruby-2.4.0-rc1.tar.bz2=0f8b665acf4e883334adc121a42a206f ruby-2.4.0.tar.bz2=98f29161860fe1b6c65396717847a358 ruby-2.4.1.tar.bz2=07b2ae5d2f46321c95b37066c8415900 ruby-2.4.2.tar.bz2=5ff3ad6ec816bcce8806a55090936ab6 ruby-2.4.3.tar.bz2=ac8215ba561cc7c79b4f61daee11b706 ruby-2.4.4.tar.bz2=d994274eaa95b82aa5d31ec2188253c6 ruby-2.4.5.tar.bz2=45d70a8bb9397d818795ffe992163d27 ruby-2.4.6.tar.bz2=4abd13c50c1fc273a0a81a0ae74ed39f ruby-2.4.7.tar.bz2=1ce166ced489908993d78e8bb68325e0 ruby-2.4.8.tar.bz2=396d35f1a2d1deaf303f59cb5245d4ae ruby-2.4.9.tar.bz2=0b3447370651df55a2014a170c0cb1d5 ruby-2.4.10.tar.bz2=b10a7d2fcaf218c98edbaf57efc36e58 ruby-2.5.0-preview1.tar.bz2=889454189f41e271ae5ba15382911b6a ruby-2.5.0-rc1.tar.bz2=f5acdeacf56aced3c00ae6a8fa816bbc ruby-2.5.0.tar.bz2=63a6cd49546783d62de25a0ffc4aecc3 ruby-2.5.1.tar.bz2=5aaaf2fb4893214fa316516f3ac43519 ruby-2.5.2.tar.bz2=e90ab127e2ac3ee1d8840835e8ba1f13 ruby-2.5.3.tar.bz2=49aea0bf56d25351ccaf938c642400df ruby-2.5.4.tar.bz2=0c923215470f1debe593fe21e66fd37b ruby-2.5.5.tar.bz2=8f41b5cb683d48b5cb6cdfe03d135d6b ruby-2.5.6.tar.bz2=f2a74416ab3016434896194120796f04 ruby-2.5.7.tar.bz2=65597b69aa54bdca8745502c10349f96 ruby-2.5.8.tar.bz2=9ec96e7a590ef801ede294b6184c9c0f ruby-2.5.9.tar.bz2=9e905a545a729af1f1620ddfc2976fe5 ruby-2.6.0-preview1.tar.bz2=1ce507e27fa02aeb36100dabcf1da94f ruby-2.6.0-preview2.tar.bz2=e45011116334d21857b9e1712a01e6b3 ruby-2.6.0-preview3.tar.bz2=b326ceee3d3756f892515009e148f4b2 ruby-2.6.0-rc1.tar.bz2=40457a72e36cbecd0c51d9f895347302 ruby-2.6.0-rc2.tar.bz2=9665e6d886a9da2d4076fa75836798f1 ruby-2.6.0.tar.bz2=d3372daec93f83e7a91c669821053014 ruby-2.6.1.tar.bz2=73d19ac478db1a178be5ae2f2fb8c9ec ruby-2.6.2.tar.bz2=658fcc0da15578c2420ded807b11cce1 ruby-2.6.3.tar.bz2=52e609b756735115814b9c8463f185e2 ruby-2.6.4.tar.bz2=d9b35753c65f54c745ab6b0094511839 ruby-2.6.5.tar.bz2=d1b89c88effb71d75cd7ef77c35e1985 ruby-2.6.6.tar.bz2=abc030870bfbe18ae9c356abebd95cb6 ruby-2.6.7.tar.bz2=46f24740181f91247c72f19d52334379 ruby-2.6.8.tar.bz2=c53761123d17e929cfe248f50429bcab ruby-2.6.9.tar.bz2=ddc24495adaf215c8ee40630b4a55041 ruby-2.6.10.tar.bz2=6ad76db639ab308e3b6c19408729a0cf ruby-2.7.0-preview1.tar.bz2=82fab0496947acd847a6b2eb758acfc6 ruby-2.7.0-preview2.tar.bz2=966a544ab59114591898403c23d91397 ruby-2.7.0-preview3.tar.bz2=2fa6c213774744b287e7e0212b43f626 ruby-2.7.0-rc1.tar.bz2=48a8837cb352f5b95e97a1ae0d62a9d0 ruby-2.7.0-rc2.tar.bz2=cca58fdb8c5e8be8273842d54199c42d ruby-2.7.0.tar.bz2=89347748b7414f5bc7aeb8f4a87ebef4 ruby-2.7.1.tar.bz2=4bb2b2b2f0c6953859e30af140cf249a ruby-2.7.2.tar.bz2=a8acc9c24708fe29dfc287823ecaae65 ruby-2.7.3.tar.bz2=604acb258b1d8228f55799e846cfe6d3 ruby-2.7.4.tar.bz2=52705d799ed851dd3bfd5634265cde46 ruby-2.7.5.tar.bz2=d97d4377eee18b0e790510c3afed648c ruby-2.7.6.tar.bz2=1b6efacb9f129d0253d8a9faa9c21f99 ruby-2.7.7.tar.bz2=63c55e75150251d3ba092b662138e4af ruby-2.7.8.tar.bz2=f44dedf51fdb7441a7dba592d6a4a14d ruby-3.0.0-preview1.tar.gz=991df063b86a8f8412ca07f548579f39 ruby-3.0.0-preview2.tar.gz=ce14b24e923f2e269fea6441791a7248 ruby-3.0.0-rc1.tar.gz=848a8628c8abde270b66e2474049a4a3 ruby-3.0.0.tar.gz=d6af36269a1b0bc278236d371543ad97 ruby-3.0.1.tar.gz=8d1c460a9a9d48a353de3eb0f338bbfd ruby-3.0.2.tar.gz=b973af486291a1e17ad50d88472bfa86 ruby-3.0.3.tar.gz=9ecae293da9547c1438a970f04f64655 ruby-3.0.4.tar.gz=ec9de9a15acc4f205b08816d94267415 ruby-3.0.5.tar.gz=cdff2395625dc1d632fc5400c8fec103 ruby-3.0.6.tar.gz=6b5a7b14505697e6fc2b40b345679f40 ruby-3.0.7.tar.gz=147a3467facc704b5d479e809c131603 ruby-3.1.0-preview1.tar.gz=d131b9bca700ee87ea276f8233ea4c0b ruby-3.1.0.tar.gz=1ca89d713f2c18a20104befed51b3b9a ruby-3.1.1.tar.gz=702778a0ef8b7a01ef7530a541002e19 ruby-3.1.2.tar.gz=9daf064899cccc32fd564117c7a7e0dd ruby-3.1.3.tar.gz=cce38a2b2c589d59f440f67c7d8cc697 ruby-3.1.4.tar.gz=3e601ae6db76a487219a1084e5cb4c9c ruby-3.1.5.tar.gz=ce1e92ddb1230fa2d4f4367882542555 ruby-3.2.0-preview1.tar.gz=a83c91d53e130fe232e4c27ecc8738da ruby-3.2.0-preview2.tar.gz=56e7801b37612b82285c9a09cfeb28ce ruby-3.2.0-preview3.tar.gz=0ed16faae50403b4e2ba2e85ec2314a1 ruby-3.2.0-rc1.tar.gz=4657d7013702adce21ca21dfe71ea4a0 ruby-3.2.0.tar.gz=76ca7e7d71898ab1e85155d69403754e ruby-3.2.1.tar.gz=055101c924538467c63fcbf42abddc75 ruby-3.2.2.tar.gz=eb6f18605e1e1be5dfb5b45f31bf6a93 ruby-3.2.3.tar.gz=e0ba90554f7ea41c587ffa7fcfd064ca ruby-3.2.4.tar.gz=c48283a23c72d7aae19b7f510b89444a ruby-3.2.5.tar.gz=3bd6f2b26918c8637abf56c2f208833e ruby-3.2.6.tar.gz=fa9bd65bc429a43a3e6dda8ff0b97022 +ruby-3.2.7.tar.gz=c72e290d57080f828156b5c24fe8e4ad ruby-3.3.0-preview1.tar.gz=0833f555b1b8d5423953600fb4146639 ruby-3.3.0-preview2.tar.gz=4f82f4c9e512ec0a53baa1be8d35ebf7 ruby-3.3.0-preview3.tar.gz=a32ede198a9da50d4afc4421a4a993ad ruby-3.3.0.tar.gz=f57422a0f995cd5a93c726f6c42c310a ruby-3.3.1.tar.gz=368e331a35145ace4948390ed76cf1df ruby-3.3.2.tar.gz=9a7efebc6a0e4810c716ec6d401dc372 ruby-3.3.3.tar.gz=beb9773cc4d9d8da29463ab175e4db28 ruby-3.3.4.tar.gz=f2e16c1a56e07e185214e85c62657941 ruby-3.3.5.tar.gz=ccad73b02d942d1e6b4c27873d4c08e4 ruby-3.3.6.tar.gz=51bcf91da64e5889e2e59c7adc7189c5 ruby-3.3.7.tar.gz=5fa3e653657d868e2c8377d2f3adb335 ruby-3.4.0-preview1.tar.gz=93b9b1040a2dd7be7514a7870aa7da03 ruby-3.4.0.tar.gz=2acf769caa47f692fea932ab81e75639 ruby-3.4.1.tar.gz=43e587b9a6de2a51dd1fa2613615542b ruby-enterprise-1.8.6-20080507.tar.gz=17e3c52e73e42809f57ad0000a6cb4ab ruby-enterprise-1.8.6-20080621.tar.gz=626fc3811eee2dc92ac27ea63d37a8b2 ruby-enterprise-1.8.6-20080623.tar.gz=0bf8a3a93c6b37bb1260cc09b05e81fd ruby-enterprise-1.8.6-20080624.tar.gz=de58b97128aa65209f291c66eab7c4a7 ruby-enterprise-1.8.6-20080709.tar.gz=f0ded08cec64959fa388ec6a237b9c47 ruby-enterprise-1.8.6-20080810.tar.gz=bfdcf06f437af825cd9f2d321f9d1896 ruby-enterprise-1.8.6-20081205.tar.gz=50206bec9be2e08a862e5ec2e70fa693 ruby-enterprise-1.8.6-20081215.tar.gz=aab57b7d5061c1980bec5dbe311ec9b2 ruby-enterprise-1.8.6-20090113.tar.gz=e8d796a5bae0ec1029a88ba95c5d901d ruby-enterprise-1.8.6-20090201.tar.gz=a965e6789b553efaed72191825b13713 ruby-enterprise-1.8.6-20090421.tar.gz=c777b361aadccda7988be16ede7ab15f ruby-enterprise-1.8.6-20090520.tar.gz=156572a8296bd0440970a6bb95018a13 ruby-enterprise-1.8.6-20090610.tar.gz=0bf66ee626918464a6eccdd83c99d63a ruby-enterprise-1.8.7-2009.10.tar.gz=3727eef7b6b1b2f31db7d091328d966e ruby-enterprise-1.8.7-2010.01.tar.gz=587aaea02c86ddbb87394a340a25e554 ruby-enterprise-1.8.7-2010.02.tar.gz=4df7b09c01adfd711b0ab76837611542 ruby-enterprise-1.8.7-2011.01.tar.gz=4640634347cd8e5469cb718853e2112e ruby-enterprise-1.8.7-2011.02.tar.gz=8c5faa11c1ddaed3f44b7294711980cc ruby-enterprise-1.8.7-2011.03.tar.gz=038604ce25349e54363c5df9cd535ec8 ruby-enterprise-1.8.7-2011.12.tar.gz=1e5f3059d52a67ab5d91d472b756de08 ruby-enterprise-1.8.7-2012.02.tar.gz=8d086d2fe68a4c57ba76228e97fb3116 ruby-enterprise-1.8.7-20090928.tar.gz=ae00018ce89d95419dfde370fcd485ac rubygems-0.4.0.tgz=86a64616548a793e1a5f825f0dd385b9 rubygems-0.5.0.tgz=80d151edd94a06bcd2452a7e272b4d96 rubygems-0.6.0.tgz=5df803f5a04654833690dd32283de741 rubygems-0.6.1.tgz=c4a0faa9f876ad805ae80d1396a29d97 rubygems-0.7.0.tgz=ede9b55343219e8b3491793aa12c46f3 rubygems-0.8.0.tgz=9ef6e3c34dcb54e295c8e57321ddc079 rubygems-0.8.1.tgz=6276d268b420c0d61796cdbf6d28dae4 rubygems-0.8.3.tgz=6e6da80f61d6e77d0ad9e531767f6fd5 rubygems-0.8.4.tgz=a2ad2d03dae8a98002c2a7cd6c3ed352 rubygems-0.8.5.tgz=b917c084e1e6e99d8e102af8dd687ddb rubygems-0.8.6.tgz=9de98d2f62e3f91521b0207a4dcdeb5b rubygems-0.8.7.tgz=7fc04b9f9acc0c18cbbe6222be8d0bd3 rubygems-0.8.8.tgz=a8535e9c35a4c215d6ef9268d4bc69ed rubygems-0.8.10.tgz=d26592e280c0fb24c51f2837c3f48e67 rubygems-0.8.11.tgz=aa363b428c4c1fc2e076a4ff77b957d7 rubygems-0.9.0.tgz=5d496e1f415b8b4033ab867f01d1161f rubygems-0.9.1.tgz=a62314cdb174ccc88a27b8924fa79e4a rubygems-0.9.2.tgz=cc525053dd465ab6e33af382166fa808 rubygems-0.9.3.tgz=600940a22ecd79e28e0fd37ad1f1d871 rubygems-0.9.4.tgz=b5680acaa019c80ea44fe87cc2e227da rubygems-0.9.5.tgz=91f7036a724e34cc66dd8d09348733d9 rubygems-1.0.0.tgz=b0b74eac0cbfc5a13f895ab6f803edc1 rubygems-1.0.1.tgz=0d5851084955c327ee1dc9cbd631aa5f rubygems-1.1.0.tgz=85f994904c5b4045f0a859b29d0be717 rubygems-1.1.1.tgz=1a77c5b6b293a3ccd5261dc120641ccc rubygems-1.2.0.tgz=b77a4234360735174d1692e6fc598402 rubygems-1.3.0.tgz=63d3dfc038710eaf532b6a133225115a rubygems-1.3.1.tgz=a04ee6f6897077c5b75f5fd1e134c5a9 rubygems-1.3.2.tgz=6204d0a4c526a1d8fdbce746647b179a rubygems-1.3.3.tgz=0e9697db44d812712350baf28016b4a7 rubygems-1.3.4.tgz=b17b398503253bf36a101c58f02a226f rubygems-1.3.5.tgz=6e317335898e73beab15623cdd5f8cff rubygems-1.3.6.tgz=789ca8e9ad1d4d3fe5f0534fcc038a0d rubygems-1.3.7.tgz=e85cfadd025ff6ab689375adbf344bbe rubygems-1.4.1.tgz=e915dbf79e22249d10c0fcf503a5adda rubygems-1.4.2.tgz=b5badb7c5adda38d9866fa21ae46bbcc rubygems-1.5.0.tgz=49bef7186bf3c0ca6ee7adf4b585bccc rubygems-1.5.1.tgz=47577a5e33c9c6f1e3a56aff7f51d0ff rubygems-1.5.2.tgz=3951f94c09c16c774c8bcebc94fa5374 rubygems-1.5.3.tgz=38bbbdc17aef923fb41f054cf8421116 rubygems-1.6.0.tgz=abd27b5a9002100ff74ddb398a1c9689 rubygems-1.6.1.tgz=a77c64896aaa10d64aaf34f5c1488173 rubygems-1.6.2.tgz=0c95a9869914ba1a45bf71d3b8048420 rubygems-1.8.6.tgz=8e95d0c5b377a003f3d54a49461e81d9 rubygems-1.8.9.tgz=fc399445d693c29778779e5828ee5e90 rubygems-1.8.10.tgz=5b08ee31740c9b0bd36f6c04d537e7d4 rubygems-1.8.23.1.tgz=5259ce3eb7988950fa3aff9051a5de91 rubygems-1.8.23.2.tgz=fb377c7fd387df14a33e529153adc316 rubygems-1.8.23.tgz=178b0ebae78dbb46963c51ad29bb6bd9 rubygems-1.8.24.tgz=3a555b9d579f6a1a1e110628f5110c6b rubygems-1.8.25.tgz=1376a258d43c53750a8df30e67853e10 rubygems-1.8.26.tgz=0ea47f1efd010f4c82b8a51a934f48dc rubygems-1.8.27.tgz=6686ad26735c21d0d6e58b6192c7da5d rubygems-1.8.28.tgz=2df78039f391fb1f71c02c2fc5671c94 rubygems-1.8.29.tgz=a57fec0af33e2e2e1dbb3a68f6cc7269 rubygems-2.0.0.tgz=89ce467eb2d55657e9965a46559acbcf rubygems-2.0.1.tgz=2652ab6f001a873b8933e2ca09505974 rubygems-2.0.2.tgz=3471f140a70bcd32a7495b545cfce790 rubygems-2.0.3.tgz=854691f145cea98b4100e5b0831b73ed rubygems-2.0.4.tgz=3ec32dbe783bab37a87f50758f8efe13 rubygems-2.0.5.tgz=641d82672937d40d664dbc18f49cdcec rubygems-2.0.6.tgz=0633f50db16112bf6c3cf9bfb9ceb9bd rubygems-2.0.7.tgz=9046700f1222712fedfb836fafa08c50 rubygems-2.0.8.tgz=5432214a740c0d13482e43a5328a6518 rubygems-2.0.9.tgz=bc55898247297ffa190223276b1b1bd7 rubygems-2.0.10.tgz=5457ba403cd9a5f4f5fb2ef4a2a1c03e rubygems-2.0.11.tgz=0f28e3fde3348c0f23ceecba73a6cbef rubygems-2.0.12.tgz=99c416517e2de1146d2c6fbb4c4c1441 rubygems-2.0.13.tgz=3970e66a670ddb6d1aade9c7b18033d4 rubygems-2.0.14.tgz=4a7aa0b144e465230ab5d7b59dfd7e8f rubygems-2.1.0.tgz=9a9d242baef5e58fbfe79ec5206cd316 rubygems-2.1.1.tgz=b34d6f4028b69a84123a6b7cb0ac8028 rubygems-2.1.2.tgz=b5c5c4430be60f911014216d41886ef3 rubygems-2.1.3.tgz=ac7bbdfecd49f9304756aa5ebeb51400 rubygems-2.1.4.tgz=aa502b1ea90fbdd14ca9b32634795c2b rubygems-2.1.5.tgz=60564b762d4e186815997653b1c876ab rubygems-2.1.6.tgz=e11237a8f87dbd8c085770551d64a8f8 rubygems-2.1.7.tgz=b721ed7d5fd57ed05f77eb21a3a592ee rubygems-2.1.8.tgz=cc4c84c0482840389a457740e8083ed9 rubygems-2.1.9.tgz=2636bf26c0a9ec889c7bd938887bd9a3 rubygems-2.1.10.tgz=6fa671d7d6605de73d16f529cf7bffb8 rubygems-2.1.11.tgz=b561b7aaa70d387e230688066e46e448 rubygems-2.2.0.rc.1.tgz=f7d80b612339169569f2675155c202f1 rubygems-2.2.0.tgz=3c16e50673adb99d1ce76d5231f764bd rubygems-2.4.8.tgz=dc77b51449dffe5b31776bff826bf559 rubygems-2.6.10.tgz=ab5a0028d2a0653691b29d7463bd0892 rubygems-2.6.11.tgz=8d514b836fcf3ae2c20b4fe8d5cdc3c5 rubygems-2.6.12.tgz=7c454ef88b716c1a123f62b26bb9612b rubygems-2.6.13.tgz=e6f19b51614055d826e431549a12a80b rubygems-2.6.14.tgz=e0a6914ce03b91dfc6d448ebf292f145 rubygems-2.7.0.tgz=771c40015538c0f225c5249e4bc7d441 rubygems-2.7.1.tgz=65646f28f3c36ccaa7f991c17e15b8a9 rubygems-2.7.2.tgz=312a238ed98a61d2b3d165b790b6062b rubygems-2.7.3.tgz=fb3a1927a1842b75677a24f48dd63ddc rubygems-2.7.4.tgz=e9bbf5a4cc9a74293884b91f49603ea0 rubygems-2.7.5.tgz=516a4f219976003feb4b4f797cbc66b0 rubygems-2.7.6.tgz=366cea352c2b1243db726013c3d76fc4 rubygems-2.7.7.tgz=b6721f6ce4af08f68c6f513bbddfe484 rubygems-2.7.8.tgz=a3ed89a34e1ae8f9da0c620a8aa35f12 rubygems-2.7.9.tgz=173272ed55405caf7f858b6981fff526 rubygems-2.7.10.tgz=464754059d8ca01c1121a1233d866e8c rubygems-3.0.0.tgz=3908105894e531f7ad3aceb8b41dcbcd rubygems-3.0.1.tgz=1e8af9b87a67f15841ad2be7d5725a5f rubygems-3.0.2.tgz=d8db1b516ae1e35b8f6f56cb526f879a rubygems-3.0.3.tgz=b7a7dd5f85485334a6cb61b7dac20cff rubygems-3.0.4.tgz=7d0c49077a2d19f48d88567cfa3cf17a rubygems-3.0.5.tgz=4664467d621d719688e4778d147c306a rubygems-3.0.6.tgz=60d84e843b131fb87c8fd67e8fac6470 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=3e9afdf72f153e2f66259fc2b6fca594 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=c30459287aec83548cfcb17340fa73d5 truffleruby-1.0.0-rc3-linux-amd64.tar.gz=138f6814451ce634b0fae3aca5579248 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=94ed54ecb65bea2166a2159431b0362b truffleruby-1.0.0-rc5-linux-amd64.tar.gz=9e5428611e22b093d05afebbe0ccbc2b truffleruby-1.0.0-rc5-macos-amd64.tar.gz=b32a254fed71434c3431fb2effb35c5a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=7f394a8c7fe356b7bd36683c57f74ebd truffleruby-1.0.0-rc6-macos-amd64.tar.gz=f033329d03f1f846d25728c2af9d7524 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=184e98f2d6939f63db4b915943ff60c6 truffleruby-1.0.0-rc7-macos-amd64.tar.gz=d19213b33011f7a55e0f32d25e19184f truffleruby-1.0.0-rc8-linux-amd64.tar.gz=a394167c0331c6d8c1123e1f992e5411 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=dc1bf0fcfdd5837ae0ca56d6d6e5f7b0 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=f6ec25bd532bf0551d35327d1aa4caf9 truffleruby-1.0.0-rc9-macos-amd64.tar.gz=c80a345f9071521cf1961ab75ebc7dd1 truffleruby-1.0.0-rc10-linux-amd64.tar.gz=3a889726efcdf33feb7ef3df13fd5f39 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=bba618b4483b79eebf9f0e7af4078502 truffleruby-1.0.0-rc11-linux-amd64.tar.gz=a25e179ca0be96a1bc737a600729c195 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=bb8d8f5525e1ba86bb039e56291c6c7c truffleruby-1.0.0-rc12-linux-amd64.tar.gz=872774837057489250527bf863192115 truffleruby-1.0.0-rc12-macos-amd64.tar.gz=bb4a64e6c4882fd0c5e412bf9c57720b truffleruby-1.0.0-rc13-linux-amd64.tar.gz=0f36eed2eb36846785fdd4eae24adfa0 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=1bd3087a0f2df4c006b87c9488ada6d4 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=9eddd1aa98c9649e7c01bb10bf28c471 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c93643f1d00b370411310ee7a1dd5330 truffleruby-1.0.0-rc15-linux-amd64.tar.gz=bc7339a6218ea991f2c72ce8759cb6e3 truffleruby-1.0.0-rc15-macos-amd64.tar.gz=1671d08dd2f5026d58b326fd55c9b7de truffleruby-1.0.0-rc16-linux-amd64.tar.gz=5564d17f19b8ee0edb96ab5b1bfbda98 truffleruby-1.0.0-rc16-macos-amd64.tar.gz=61583b529b6a1337398b0966db952d24 truffleruby-19.0.0-linux-amd64.tar.gz=006220c7bde7d0b5c72481133624a83f truffleruby-19.0.0-macos-amd64.tar.gz=9ef7f5a311465d35e54ac6e00ec3d169 truffleruby-19.0.2-linux-amd64.tar.gz=2f7fe574e0695fb6001f4f5282aa2f79 truffleruby-19.0.2-macos-amd64.tar.gz=aa20f76b3eac1f4976a507364201d1ad truffleruby-19.1.0-linux-amd64.tar.gz=71368f8371069017d911528f052b0a55 truffleruby-19.1.0-macos-amd64.tar.gz=7f086adbc89fdfaed35273394ac3ac66 truffleruby-19.1.1-linux-amd64.tar.gz=c1ad4d17bb40e214b124222f3a7c6db6 truffleruby-19.1.1-macos-amd64.tar.gz=f4e76b0612319b4a82480cbd1fc90210 truffleruby-19.2.0-linux-amd64.tar.gz=458ed5fec1a849ef5b00e19b0e25d5e9 truffleruby-19.2.0-macos-amd64.tar.gz=dc324575ad20e3054980835c24ea7161 truffleruby-19.2.0.1-linux-amd64.tar.gz=ad7444145550d89931199159163077c1 truffleruby-19.2.0.1-macos-amd64.tar.gz=b5bcfb0aaded1e2d1763089ab6c9a14d truffleruby-19.2.1-linux-amd64.tar.gz=fc4879d2b0cc22c152a8bf893a72c346 truffleruby-19.2.1-macos-amd64.tar.gz=71448ff3f8f1da086f222751d3f853bc truffleruby-19.3.0-linux-amd64.tar.gz=dd44ac30b5a1ef3a7d61172cda9b30b6 truffleruby-19.3.0-macos-amd64.tar.gz=41daa52f0f308abb77a2b91c1b7e0f3d truffleruby-19.3.0.2-linux-amd64.tar.gz=2db2cb5c29523c9bdb6f59dfa0bd74ce truffleruby-19.3.0.2-macos-amd64.tar.gz=edf1603643938686dce57139aadf7d3c truffleruby-19.3.1-linux-amd64.tar.gz=a14c028351f7a3965bcb56e9b22364de truffleruby-19.3.1-macos-amd64.tar.gz=a8707d0af3eda694ec07a5387d3443fb truffleruby-20.0.0-linux-amd64.tar.gz=b30110ecbc50c4fce402fdf44c45dad5 truffleruby-20.0.0-macos-amd64.tar.gz=0671e5909cefb9a2c12c473fc0110821 truffleruby-20.1.0-linux-amd64.tar.gz=4592b5fc3636d82fc998ab6fe0a43584 truffleruby-20.1.0-macos-amd64.tar.gz=3c0be43db86817c7037d3ff5053d322d truffleruby-20.2.0-linux-amd64.tar.gz=e9859decb24829f9a189d88b3c2e9b79 truffleruby-20.2.0-macos-amd64.tar.gz=49e7ccf8f9e60d6c59b3b07b854466cf truffleruby-20.3.0-linux-amd64.tar.gz=93a20845f7d9d39100761424dfc0a734 truffleruby-20.3.0-macos-amd64.tar.gz=b178b7a94fac58400450417612fe3441 truffleruby-21.0.0-linux-amd64.tar.gz=c03304a505c8699e697acecf5030d95f truffleruby-21.0.0-macos-amd64.tar.gz=019796be37a58ef8e186a625f2ff5d07 truffleruby-21.1.0-linux-amd64.tar.gz=065bfcc48f6925410e0da21e16428b64 truffleruby-21.1.0-macos-amd64.tar.gz=325f6854c10d8a3a114c80da582c469f truffleruby-21.2.0-linux-amd64.tar.gz=0aec44721a040845347f18c1f72ceb75 truffleruby-21.2.0-macos-amd64.tar.gz=76d27715b20902df5779f7a0c00852b1 truffleruby-21.2.0.1-linux-amd64.tar.gz=f68e9b8a9f9cae5efc5ac45a7d9e760d truffleruby-21.2.0.1-macos-amd64.tar.gz=b021e50fc94cab590b49d27f2ea821b0 truffleruby-21.3.0-linux-amd64.tar.gz=359aca79cba4e08f9955d9c6543c2189 truffleruby-21.3.0-macos-amd64.tar.gz=d9e2e2c6fcd3ac16f0c37b0ccffb4f41 truffleruby-22.0.0.2-linux-amd64.tar.gz=324327026e9b2963a8e5fb4ee3f4e216 truffleruby-22.0.0.2-macos-amd64.tar.gz=7029d0e291d498a264d9b413729a3e17 truffleruby-22.1.0-linux-amd64.tar.gz=9329cf507ba8ac529e93156cacc1425d truffleruby-22.1.0-macos-amd64.tar.gz=353242978b46cafc34b05e2c81206096 truffleruby-22.2.0-linux-amd64.tar.gz=5d676377056ae94fe847be721c20405b truffleruby-22.2.0-linux-aarch64.tar.gz=b774f4b7d330842521f1e6e56cb41db5 truffleruby-22.2.0-macos-amd64.tar.gz=e45fdd9a05aec6220a76fb707b0a5ae8 truffleruby-22.2.0-macos-aarch64.tar.gz=ebcbfe056d90d06de4bd0a9d699bad8f truffleruby-22.3.0-linux-amd64.tar.gz=ada8bc5dc52aca8317eaeab04d91e877 truffleruby-22.3.0-linux-aarch64.tar.gz=11493301d5519aa73e8f0e140cefb581 truffleruby-22.3.0-macos-amd64.tar.gz=9e27c677637b69b0460fb0a4569a5cca truffleruby-22.3.0-macos-aarch64.tar.gz=eaa1c9020b521226f8bb48b8c7e5c596 truffleruby-22.3.1-linux-amd64.tar.gz=243d926f038fd2220c03dfbe40ef58c3 truffleruby-22.3.1-linux-aarch64.tar.gz=01487fe680863381489bf2a0a2ac162b truffleruby-22.3.1-macos-amd64.tar.gz=b3d5a777d94856e51034d81076e8ef72 truffleruby-22.3.1-macos-aarch64.tar.gz=320ce75730a5b9f16f111eb7ef5e4e09 truffleruby-23.0.0-preview1-linux-amd64.tar.gz=76c1cb23ee63ba4de93a0c23784bfca9 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=eec3fc74565f08e9468982692f7f9010 truffleruby-23.0.0-preview1-macos-amd64.tar.gz=50e38f3cd548dfe78f397f76ed577bf1 truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=b769bcf9b843d9b2980def1e2139284f truffleruby-23.0.0-linux-amd64.tar.gz=6e1a491406c5dbf42de10fcb3ed7dc1c truffleruby-23.0.0-linux-aarch64.tar.gz=5c3663f64bee707173b2684355a9a42e truffleruby-23.0.0-macos-amd64.tar.gz=515a9a8a0f39ba9399e869cd418ebff5 truffleruby-23.0.0-macos-aarch64.tar.gz=57e5fa52270e692b82c445107fe6b6a6 truffleruby-23.1.0-linux-amd64.tar.gz=f7511c19045e57e72f9b5415bc17c8e8 truffleruby-23.1.0-linux-aarch64.tar.gz=e8a20dd919a2ff77b7cc5457e853d15d truffleruby-23.1.0-macos-amd64.tar.gz=d3b6a3cbc0a230ebae6f3a462a32ddd3 truffleruby-23.1.0-macos-aarch64.tar.gz=ee74fc5d192c2fb8afd0458d2d429c02 truffleruby-23.1.1-linux-amd64.tar.gz=d7e1c040da170aaa36b5f5a1d106d237 truffleruby-23.1.1-linux-aarch64.tar.gz=cf508ba3787be20c03bac690f3bdbac5 truffleruby-23.1.1-macos-amd64.tar.gz=a662a8672871524808500dddef3808c1 truffleruby-23.1.1-macos-aarch64.tar.gz=de543312024993a533e3caa63b396127 truffleruby-23.1.2-linux-amd64.tar.gz=e3e5b01b291d7fea61be2be842c7e8dc truffleruby-23.1.2-linux-aarch64.tar.gz=8fe26f643fa81eec6de3bde7024c858a truffleruby-23.1.2-macos-amd64.tar.gz=83bc41bf699fa847df7e60412bee2823 truffleruby-23.1.2-macos-aarch64.tar.gz=7dbd2e182cfec0cf2d2e37784721903f truffleruby-24.0.0-linux-amd64.tar.gz=202f05706d28faca75d5e3cd0f9bef78 truffleruby-24.0.0-linux-aarch64.tar.gz=4faaf4edde4f6a516246b7c2f4ee80b3 truffleruby-24.0.0-macos-amd64.tar.gz=d07f27e0e29398c6de836b0049105c12 truffleruby-24.0.0-macos-aarch64.tar.gz=10cf176718968893468caba617c02141 truffleruby-24.0.1-linux-amd64.tar.gz=2914bfb81b136cd1fb5736c0a40068e3 truffleruby-24.0.1-linux-aarch64.tar.gz=429e6ada9a95ea23ebb95d01f90eb0f4 truffleruby-24.0.1-macos-amd64.tar.gz=e3aa5ab128f5d169d93f2d6df98c4e77 truffleruby-24.0.1-macos-aarch64.tar.gz=6f81a1afe1b89a40f00c9bd4216ec45d truffleruby-24.0.2-linux-amd64.tar.gz=1a826ea6323a25becce5940d8e6c4642 truffleruby-24.0.2-linux-aarch64.tar.gz=45429f35653bd8cbc328eafe81d15e8a truffleruby-24.0.2-macos-amd64.tar.gz=f68aeb26783d048ae5f78e1c13739747 truffleruby-24.0.2-macos-aarch64.tar.gz=df05f94696b4f4584a259001a3d4d1d0 truffleruby-24.1.0-linux-amd64.tar.gz=14aa05250088f17491072e500c22c039 truffleruby-24.1.0-linux-aarch64.tar.gz=3e26495f8aa7b810ec5794a69e93483a truffleruby-24.1.0-macos-amd64.tar.gz=53b6251cdd359176f9e52fe05f05e949 truffleruby-24.1.0-macos-aarch64.tar.gz=28d61b8a1a307cbdf988313c8a1f77f1 truffleruby-24.1.1-linux-amd64.tar.gz=9ef530c2ac5f597100e69e4b374182c3 truffleruby-24.1.1-linux-aarch64.tar.gz=efcc6f5c51be84d2ec99e6cebccc586a truffleruby-24.1.1-macos-amd64.tar.gz=11e2f0f62c55fcc8330cd66393abb1fc truffleruby-24.1.1-macos-aarch64.tar.gz=eaba15df3e46cd3976bedaf6f086aae2 truffleruby-24.1.2-linux-amd64.tar.gz=ada406523c5cf80f7655a9314902e2b5 truffleruby-24.1.2-linux-aarch64.tar.gz=5a5dc457002a8a65b21264efd0387d5b truffleruby-24.1.2-macos-amd64.tar.gz=cb6142250e4b0b2b164ffa7ce47d5f29 truffleruby-24.1.2-macos-aarch64.tar.gz=f73e0af905cabe695b0fe6c73df699a1 yaml-0.1.4.tar.gz=36c852831d02cf90508c29852361d01b zlib-1.2.3.tar.gz=debc62758716a169df9f62e6ab2bc634 zlib-1.2.5.tar.gz=c735eab2d659a96e5a594c9e8541ad63 diff --git a/config/sha512 b/config/sha512 index 19c7844..dd03030 100644 --- a/config/sha512 +++ b/config/sha512 @@ -1089,674 +1089,675 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.1.10.ta https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.0.tar.bz2=e610c0029dd68d15b582f09086ac39a6e5d039ffa9c18e5fefaffe4b0279445258050327bf7c02c8ef672a7ec58a32f5850c044d9083694d0b55424f2b75e945 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.1.tar.bz2=d841aff173f5a0af71384b56e1430395b287a771f80131279e22647e368acb20b5c22e5c0d4858510525b9783da499b6f6fade081e1d37fac3fe7a50cb34cee0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.2.tar.bz2=17be6eea903f162178edae84c67f263b9532405c0cb5bb320fa51b019869d114e0dc4ad7fafd6cb2597e45b73d4777d3c4e0d4f22141de30bd2ad02ccdd41ee3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.3.tar.bz2=8dd4bb1cafb2d82586b199bf032edaf23fd9bcf8a05b7e2087de172b8a8c6c4fb96584fb15372033b97bbe11a7f8aab25057c03d71e5ee21ec4a647f95687413 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.4.tar.bz2=54f9fceb0496f647b3c59dd7411a583c74e7886d8f127aba10379de739c85e45d62c2688280ba5d21a45c5054f42a2645ac2a9d990ec1a16cbb2c533edd9eff4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.5.tar.bz2=1aee7aa974a08c6bb5a29b0782efa2950c1e530bc2100e018d66450e8e89701673a034a45adcf70bdc37f52d4027ae263d7e4410d64fc637b594ad624f10a25c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.6.tar.bz2=693173e4e235300cf30ce1592bada6aba5bb29a123157aa419ba8403757682cff31c9b2b0a4e97daed557953f52c26ebe0e49605e1d12f5e4247e0096d736630 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.7.tar.bz2=8af3b57425f7cac45e7bc61029f872facc87e9ffeb3243f8fb43407cbc0a581491f38091b0fa45c8c148b730fd8cd493aa5286177b68092d7944dd73ba585299 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.8.tar.bz2=f1a7801bd0116914a055ff4013840faeac0e432b55aaae4c0bb61eda3d812eb5b3093c2c536fd9e2e28eca81137300f84418d8bc8dd9e48ffe245ad90dd3eab7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.0.tar.bz2=e1fea7c85410615f76b02df366ee49f929cd3bf3e52c3fef8b848a8a6d2b982de03c325aac664c6550b216a11cde64ae571bd5a5467ddd4a8b61039d874b2955 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.1.tar.bz2=e8b6b5dafc4b46e97fd905a5396d09ee1cfd1c0b4b74b9c3bd9e1056684f05345ac1599817cd9cb1dcd410e4e3ea23d5f2fc86da12e01fd076434c1b2917f117 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.3.tar.bz2=8172c35a381adfdbf0f90fddf526e3a5c5d4590e133e041aeb339137c1c31f16a47b904c61048c29906dfd2245572dd69caec507432628bbc98bb3eb94891575 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.4.tar.bz2=fe9370f2f45c557fd24574219e9597826f4614a8c59f092bce54338a2e927d16bfd4abbcaf0203a60a35a11169310d45e79c4a33fa4d45916bd6e4eefcc7b888 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.5.tar.bz2=e42fe5b628b6a6cfc87abaadbd9140cbc5c0000993c3272740ee6e20d07d2bacffe5148213f9628d6bc6f97211c0905e55d7bd304763ae095d86df8c2b2d15fa https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.0.tar.bz2=baadb5c405fab06da091e75af6497370757cb694d50c9f76fb06bc0a281df13f4ae893df49657c7dd7e86dfbd052d2cb7297961f9739cda4089ed71e52ae7bed https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.1.tar.bz2=71ad68ef1317ce5ba51353cc226fc7b11923d9022770b355cb1180be7c2ba4bdd87b079a8dec15c09ef3ad42056018a41a603bd0a10b8124433f36b0930153d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.2.tar.bz2=440f27f682a7f9d2a99ff8c0687c1fecebd8bce494b9db48ab9d303250b8ea12dee51eed0f68d940f141d8e2699653fca7d2a6811eddc5c512a9fe39430fde3f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-1.9.3-p392.tar.bz2=3582744ce4a4ca8b497c918e129823167e80909367d65484c2a09a8e6fa185a38bfda8c1b6676742acb492472d0687fc5b6eb18965201e0f54268d835f618df4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-1.9.3-p551.tar.bz2=fc04b976fa02fc5c1cd4ccdd49948b5e289b3a5bba16ef99266b65fbb35f0c20a0ed02d5b147f2fc4469db6a7b6665d34e0373dba242ff04c95fa27642cfde1e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.0.0-p648.tar.bz2=7dd451549e9c1a43ef86be51eaa746344c424d1accbc9cfd360067c3aec20db8ffee277e1108d40c280f1b8ec0851c6e51bc448f25505508d9af153878d9b091 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.0.tar.bz2=cfe087a9daa6de2ef00a6501d568a25a3386da730304697e1bdb9fbb098617a143f073e58629876de4f09a1e8a60a48ec05864fcbccbd6733d9e1b3d309a1100 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.1.tar.bz2=b74cc64103a31b9b9545474fe202ab9f9b15569681262438056865e4dcad08419c44bb696c7dc8a18f72b3bd8e5e98201d0c3608ea652c907372c3c95cb7e16f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.2.tar.bz2=fafffbcd24eb3c55c89704e6e8ea48ad6be286bbb4e38f56c3b3d61f9bf4f6bec28882da2ff60f17f79516476ae50cc4cb8c6a8cf4a0f31b910d6153727caed2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.3.tar.bz2=4daaf8bba3a04d46e04720ff2af1469e1caa68168f5c27d1d3e0cab922055b1f9c0b26ee64c3cb46c17b6a9651ee7a11bad19e9414102455e96454f1a7929408 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.4.tar.bz2=988c13e900168b901a3a3deb4bb96e19b15205cf4c2793b56854b58924fff652946a083be6615b2053fb5285df0fd218d1f9f91562798f0386f0758973765dcd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.5.tar.bz2=c7396627e45d8df68b18c2491fa756085aeb4ec28c1cc707617cd903fcd47d4fdd3cd6ed225dccc14497afb14200b9bea5ba38f1e8dc621c4aea8b8f0f1ccc7d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.6.tar.bz2=389aa514d93d165fe299856a5348b1667f295aaeb49094bb5ff49e9c6861bac603e698c36bf81777797d05a1d3c405e37c1a00a4dbb85f262bf02c1b0e16ff04 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.7.tar.bz2=5a38bc1dd227658347114b935ad66e27fab67b8da9529a7f9083d6aac5743c40aea8c33ca95d4f10ed1d56f29bcc2c0747a3e88b87425a5786245792d8851301 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.8.tar.bz2=44e36e4918ab4c354cacdd20be30acf12f060aab808172184251186758f750ce688eef72f39ea110ab6429fbaaa5a792b1915a5c2d845b6e22a3cc4bc851c6b9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.9.tar.bz2=358f12ae2d4e177a080bbcde8b275691418884eae9a42c98161170c7b0f6029ffebf7ffad27961bfc8a50a393796934a2dd2c7f0ad2a35992c35dbd6c8c6349f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.10.tar.bz2=e7e98be6cf658eaab81486360f4d5d22f86805582feee4aa11a8e2fe6b461db69b850c7ea98840af0811910be7f534317ab5887bc48f47a9591b65fa7262feea https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.0.tar.bz2=307ee69b3051fcec2942fce075232a62f6adf6486239a89fab7bd63a9bf068e36371e67a5e42f86ed60e31b8219ff431c2d4bcf519b2c10393504942d2d90a9d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.1.tar.bz2=a0a30a805be9c43cfe52793d103e9f0dc6076d02b0c5af36d650564aa43958164a278958f7a7e1132ee5d3357cdcfaa8d59a4cc0bab027e288d935a44958b743 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.2.tar.bz2=d3218d01a18f5dbcdb65f216469a463215784170d32110f06372fda6325bc17e2c2aec1601a5bf3319ad753b123de056e6bee8aacdd7c64c4859570d40571ec6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.3.tar.bz2=4fb3bc10aa46a85cc37fb041d351b2a8f74d70c3de32fbceefebcd6e757cd8dffdfc86cd14fa6ae7d5273f875e1d4e13e6446b6dd1882c8fb015d1d34ab5ed2a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.4.tar.bz2=a008439e903b1e97eb5a66a88cf72c2e7438b12b78750411ba0ffa496c68beb8cacc2037763be1c8c8841fe9a248d4be0d0976420db0520b4b8456aed5480f3d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.5.tar.bz2=14573495aadfabb81b985aa485c0090a816f459a0db8e790a7d1bd948897cf650fef4e8aad7d2ab8232d2ebf56bf08363730dbbfbc2318625dcab04d3904b3dc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.6.tar.bz2=e915bc10ecd1129d7ed55a12fdefdd6b6fccc281cb3cc0790e5970978f17652068ccd7fdc160608cadc8556abb73a2c187d041899adfcfcb4a311285415145ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.7.tar.bz2=d80b934273b84d7ccc4e17fa07c9e0a0f95cb4a38224bd60ff73772ef7ecb3d1974e686bb10aa319642709e49789c0886f98f4fc1ccc5312a19ca19f03674e7e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.8.tar.bz2=9bf0cc35deab5f53900bc8e8264dc1b57f91a3477f241848df48109f4b5c97f3140470f523fa768a7543c61cdb7a93427866d871d09ebf8060a5cb75ac6d3790 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.9.tar.bz2=0cdefbcc88c5b9d34c08c8871c548772bd473dbaf54738f9855afddae8da5eecda607b36c546077efd0165114da385cd1f296433afe411f57a524fbff0a69291 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.10.tar.bz2=3aed1b12ca46e34fce66ac23bdd97ef815918275d91ca4723f9a6f2a2b93cb2b66f845747951593eaaf078bd0d982e06efa7641fc3e11d141b7605b086f93393 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.0.tar.bz2=ac6a699d5d08b33e7580a24c9357c0c8e8378208fc7385f5582f088a879f61e48a4654d72f03263a1dcf33fb0838b01c8c21fd39c5e2549d683466e0441381d5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.1.tar.bz2=77cb7698c66ccede33f558f6ab9ebe4be3b775a567d1d4dc12fd85d7b0f28d7bd446b18ef48ba1c879dadd76b50540b57f283e9f226e904e620afc3ba6585bae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.2.tar.bz2=9592c8e2fd9266f5d1cc780706f558e15d775cece995f5b6e933c54be7b7f2be2839b28ef1898b2072c5cdce36b830e72f967062ece4393765f8dbc88c6dff88 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.3.tar.bz2=8243575f30eb38409003b0450ddece621a589e29a4ffe219410820bc2afb97b7daec4c81d59d95dcfc83138414a2df707c925f0eb56907d565dac4bbd5a929d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.4.tar.bz2=ae16edab6e55d1b2506c4cb30d836639035a7fc153511125b578d6da8a8b40cd87650855fc6b4cf777c1fa0428c593325af88d9ad25d53acfbde0051a730eaa5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.5.tar.bz2=10f4aff595d12bdb425eb3268c868e0efb92059e6aed8683fefa5abedc1ef21d23a45e17802edd8e5e0924ba1c3277b653c0559ef4ad4c9dd2be2fee17226f8d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.6.tar.bz2=bc352df203155008da7a1099f7f7d26eb9f80e0d2e41c8adec5eb47f976529c6126bccc207563de87ccc2867d1e4c43797efbf295c9a7a4afce002ee19116074 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.7.tar.bz2=d71dc217011d154ef7b33780366bff07e4232ae77321ad6d16f19090f924ed3867c31f2af4aca4ffbc6a536b0320b676716ffb43e34b0323e81eafab13f17fa1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.8.tar.bz2=aae74010426e2a1288280f3611ba6aac842ff573f9b122fda9a4f1c514e09cb3d22281e6957b4acfcc753c94113852e083a9a80d0cae6b33682b83669c475eab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.0.tar.bz2=4a083c168d9facf3346b67dde02d9705109feef6fcd4e3c7c59c2bcb35c83597305e09ee143915fd993799a888d6d9ffffadb386bd57e9477312566dd6164deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.1.tar.bz2=58b30b00156691de2acc5d21d3255029fc3f9f2536e668298ab160d300fa0bf3eb0705aa524c9123ff09d770807cda0154bae012632b7e87120d7538f844560f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.2.tar.bz2=4c3c586765fd5afb55383d16eb9d0e7ffa5b1ff988a2b1d847e3f972a211b2401f035ff6c02d71de558cc161655438727079aafcc8ab80c97e07e16cd7fb1304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.3.tar.bz2=e66a4ca4b95496964ff4d77e36caf0894d913c1116f901c9b589da5a0e388302b64a79ad6acfe7eb1ca5917825bc0f866b482f074f1d5fed96d91e238f7ef454 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.4.tar.bz2=f95eee611be949327224b89942f4344e7d8e075b958ce3418b5874e9b23981113e4fd58254629fa9f6c2fdaf5840d44785ecf5f04433987f8fc4415df5c3e367 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.5.tar.bz2=447b28420be5b19f6b1381d232920e3c20bc894c2e0d1d2e394cc44e7859d02d177ec3ee09ce96e922f55b7fe2651918805f00fb783af3780e5f25c21f330195 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.6.tar.bz2=5f60bde5843fdc0b05bb852a2f1b30ce085dbcf7acaf105d5af951398b845c766113ff3740d44585ce3814b4953c004230eb4dc2ce8746b6236ea4b7a1d1cb10 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.7.tar.bz2=929a03725dba7de8d7eee3fe8987b858b9b9d6d377beee710af5c3e84b02501996444aa7b2c1db458aefc3e765da17cd17ac30fb0b4d77ab1e54239e72fa2a63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.8.tar.bz2=227849b5809072b3aee211125c2aad3e2e4984e9d9b4415dd8c01dbff70eb9c3758c3cf54f2b97fe282f7a42f205a2becf7b86e1e6ebb4a4d048ca32659603e1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.9.tar.bz2=c15a46ba1e89cc41523a21eec90d4e3af5b9739d27c2f2b51047f2c1db832e2773cbc04871a176f71e7124eb3f7b53262e40a1baab87262f8811a8d69d8e5358 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.10.tar.bz2=b83334e272e78995b699de28bff67accfc151cc7fb193d5c5746fcf06087643564b3a0b538cb64f50706642a620dba2cc54191357321852db42cc8c5648270df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.0.tar.bz2=82038a66827fbdaf60f404103b3956ead4e03c999893f0095109e7d853919992cab615f85cd96ba9158402b2de5a68fcbdb8b32e9d07c6f754e0591f72851b40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.1.tar.bz2=31e9f176ba61480b33b7761d2a19119a200ad61c8f85145f736eb196de50babaf278d023b274274c6a31f2173c5d022bb93e0f8d46a88223659d8ebcf6f5e278 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.2.tar.bz2=75d25fa6dc81ce8a62d02adc2e163e7c222c5946116c4880cec19460e2309457ee1a11a8eac94243ee8437514bfbba9ebee939218b6ccc7e5c1f15b673d432e7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.3.tar.bz2=84c93c85aa3733f2ac82e695c19e714ad4afd096edd6abda8a4915311d1f604453fc3fdc290c6ae1f9055d305ef400f8f8f152c5e15eb230baf7cfd5e192b7fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.4.tar.bz2=131b874ac376f42f3427dcbeb0adb0edd18ece834514ff5cc15f3b3e29b8f14697050051224d7ba2b509d428f780c653a4d7101149b8ded41ae373aab871e90a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.5.tar.bz2=f55d2ff7f2eae4d30fbc14226c928d1caff21db1f2cd559d3caeb0c07a7a3f034fa369d95f783e6f38cecb493d99aa1928def9d8574698e3edea3d33515749f4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.6.tar.bz2=06b12b2a1e85248311cf55620499806078b3b67110fb45dad9cb11cbaf1e230ce8a0da23c7de0a5abfccdeada8eb799f038b1a09980ee9572ec415e24fcf8c76 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.7.tar.bz2=49128b7845954f1f04502a484f17d5c0c6ecf8990047f5a383b2752ea9e09839e5994b210c2f60307d44ffa8b440472116fa1231ea899caf639e1b8a72f7f97c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.8.tar.bz2=24290aab4e0d48719659f8c1153d2b08020f17ae845e9ac6d6b6d3203e4a5b19061e907a214e8d4390277584ff4b46dd4a0113c6b201fa37e8a95c42fab5aea5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.9.tar.bz2=c2771d6b12f4240200926b2c40ec1bd3058c9ef213e2c6032e44799fa34b75b00f2564a0f7c0d9f972870d34c7742174310bfe3b15e2742a17ba2fa05e5a27cd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.0.tar.bz2=1be48c38da41f462c23d516f465ed34e2fe90c6fd53ee06f1efc9107077d9937413bee589d5d3384aee5c09da7087fa84864a50089bd1cf3c385ba3399e9b0a2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.1.tar.bz2=b7e1204e0e501312828ca0e30b77434b2d8d94581627196f0195ba93fb10a11046d44942393bd8a261585c564bc721313152a9087aa56b57b433ed14cc7922be https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.2.tar.bz2=e91a187a9e726ed26ddfaf09cc49473c8379545e2265934fcd1a1fa78ba99f9a119fe2c3c8247eab583389c3af7ec40a0e71da19f6ecc17ffc086759cebaaa15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.3.tar.bz2=77d9be5bbcd115131ec7c842a4449729d1515bf2106a6a235472dc96b58a56873c2d0fe6a3b824dd15ad00194b30e72a75813d8b4e10ee11cc793973130e2401 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.4.tar.bz2=a2e5409a1a88557bef747ca9b1ea65ac90e430500a8f9370023b4314cb5d1e0679a1b03761980ab2e933ac3521188e2151e521408e33cb4dde5f0bf802d81a41 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.5.tar.bz2=ed6288a4d81a740d722b43925db8f22f794cc704bf834a1f9c844e2072baceb8938547abb8f4fb1a50f92c34a8616904fc2679a44bf4adec4e78ce00e8456b45 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.6.tar.bz2=08cda5ff00b9297b46d1fb620301066b21240951924337b8b87d27526e55024e61121e51d9b35feea2ac5eed4027658b39ff487195140e7abe9158181c3349af https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.7.tar.bz2=3cc5695814c4ca49b6a0d7790093e85f5a359c5411618a12e60f4bda75c3635b94736762983e287cd04ce3ee3155d824bd9bb202aa929f85387a741d1685dd06 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.8.tar.bz2=91e371298a6dc1083c8b6265cc8d3d388d17a21d59e0103bba7e68640f80bdd12b98547584b1cd0feb7f8dad6ad530ef5660a154075960e1a76061d534609296 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.9.tar.bz2=7e3d0f7f42d644cf4eecfd88801afe088260d5fc8f490895378d5e4ede76b2bd67959b9803db59f7b19287801df43eba920885aa1bcd29f60d225745d67093c0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.10.tar.bz2=64683129da9a476d268ffde06bd7aa1c67b3c7c97b539d856833ffb127f458a55176d8b4a101e60b18ee923485097f3bd98e8216c3092c3d0527f6111cf7a051 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.0.tar.bz2=cada908be34428bc2f302bad6ebd778a2c7a8e979476e00e45c9444b65d7f48f397b838549d56ceb91f0e5593ffd663e9facc4ea5f5c6a4aecda85a5a1136496 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.1.tar.bz2=06cb5f2f0c0941802119dbdf34995446d6d69ee59eed9a5e9d7f9e7f0e14de440a9e77eee330357fa305e81ee39a6868651c740ebc91bb9a2085a74b33685f4c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.2.tar.bz2=23654c65e6e62354857f86098852af0ba50a15643df5e7f6fc8b710e35a3872f6eb7dc1bf9266375361f696d8ded0bcdb9ee9acdc8d0c975955d299292da7e21 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.3.tar.bz2=ac02a93a62c55a2a10dc260cd52749bd8f4bcf1a2d43dad3cfd2e5c0bf7800c51a5b00779526d84f759f6d50ce673c7f3e526392c4ab68322649f4fe980f2ac3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.4.tar.bz2=88651ffa2f1623ca3b93b60a591e828ea0dcfc73daf1eead2629531beef291331f8ed1a4a33d682828ca60bacfdd7fea77bcd67f1a0bdbfa9d1e4f173da53208 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.5.tar.bz2=001486271268cd1d2252f46b32001b25d493bbbc8ce981ecb608eaf8d2c2e6d6361f6d9bf052b9b2d7694e228bc302a1082689f2038564439705fbecc00de1ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.6.tar.bz2=a48c974f341cd10143eacf46a9d0eef45cfca3ed91ebc9f7fcbba73d408408eebc60c55e15dab391bc4a9ada6777e2be3ec4b9e849927c5782f4443a813a6ea9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.7.tar.bz2=b9e99d1df4a772441edf7fa4e05dd5aaa62efcc5a8c89fee68aa80c4bf1d17ad0e5ecae5682a10d2eb0ff78ee79c583f0cec46f5ac11ae874126082b9f8d76e4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.0-preview1.tar.bz2=8fe71fdb37955b031769359dadc5062b6c15e0618fd8961c932212a6a2610829aba8b1dbdcf4bdcc2e133665e043b29088f714874e3ef3a41d688b7beba78928 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.0.tar.bz2=c51f55af33e09ed425715dae0dd59dfa253e909bbd44b4bf3dc34452656438c23a754f6b2ccf0a3e878463519043361dc7ad8a757c87a3ae0e747599547dc7cc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.1.tar.bz2=fd09a4d721388c2b9f2fd09b68175dbd620e11df02ff7cea4e438d3205494a9883c25def06d6c1ae4207e7f82bc48fdd122fe12630bb9af9da451ce6be19d86a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.2.tar.bz2=2ade19f26f6e2eaf65a8ac3e9ca21cc8fe04252df58f9b14c6d0f92aba3c0eff27b1c68b1b05041496c367051e020dca7b0c64bf44fb07b4fbdee9e68b78fdf7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.3.tar.bz2=11d81f71ec3d293916bd6a00d28dfbcc93e721d12c6137fd58febb79e7399f8fd1ab5a66915863311db9539009dac06612a4b2daf0408fc1f1e84db8f8f4fdb8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.4.tar.bz2=bff3db8c69e85d503bb0686644f2d60b97c599e0cacbdb7cd4b18d630c50d04ed0dd90ea97be01c3b3220589abefc1e4dbef39246860e3c70993f0f2de738053 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.5.tar.bz2=32f69f0e33f7f7d41f4c0e5c5a1cd859a4c6032b0978c317ec3d333da42047b7f8f8dee9c4d72afe890b47b9f17901139142cfbbf228018d8ab5d02f7a01f0a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.0.tar.bz2=f7fb515855de32badd6e5ebbb03980312144b69dd8b696fb56320981e4f0964065cd13853a34dd321fca1ab160510dee8fc3b6c99f2a5e007e6974d70a564db5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.1.tar.bz2=de183d962dd4a8c95bea54f8740cc34931c2d856783fe7506f0252c5c71bb7125db00c9c7eaf8e80f8fa1c97208ba4b2a4d6c1a76e38d2b6251a92166749fb37 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.2.tar.bz2=7589f0292f72a2217e5024b51791f9a719ff0862bf39480f1460b5106f1c11172c72ccc1fe2a00b166d80610d76fcbefe64b7c9df0ed3a72c58964c2402982c0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.3.tar.bz2=d79cbc4812ebe9b308a145e96f6e7f64c2692b04370ecba0bcbaae5427afcc7e57ee83b4537914b6b90494fd45a11bbf2b27999a7a74c7fd569687a93c43961f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.2.0.tar.bz2=2d11ad1c89c1ce9873dcdc87c41cf38105b00e265277a173d721fce4bd350af73caf01fa4a5797e926f1a0cb180f1c6e969149d1d524c4df797939cdbbe9657f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.2.1.tar.bz2=cbfe8a92e732675ca1f7d51c04775dfdedec1b9f21b3b7f0760ef61b7c375cc4b0758a17302242087b55faac7c3f1217fab0f6a2e713a05dac082cd6a5d5df3c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.0.tar.bz2=172189c66b3c721e7413f0088f50e4eb8dd80d87779c3a4e74231f7036eeaacb8e373b7f5ff017f8aa274c1e1c872066f2f93485a2a369a7e9b442d157840bf2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.1.tar.bz2=829fcc1a3d878ee28e89a58a2f6d4221cec115d241a007b048953672d57548002c3a105ea4e65e344137091baaf5d5c54232a54c116afe03d0f3d61c07547c2c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.2.tar.bz2=ec2e7bd32e2d574773486e1c1d733611465765cf14895fa6b017b6ed6301ef40cd062496a3926788851e7ff3bdd62b488d03385aeacc66bed53aed18a6dec225 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.3.tar.bz2=79f822725d4e3bb7daf416e736d87f3b01c21d011423a2b3c65d9019a47ad4df256fd4a1f171961267ab8f20387019fec8f3f4ebfb6664f682bdf36914f6a329 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.4.tar.bz2=aba571bed773554b18863e6b942f2bca743729834657689a016938a34b7e4352e68d9fffc440b2fd4fcdd1bed4d1ba5dde689da535088d7ff8ae7dc364ac3b2a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.5.tar.bz2=0e46655028859f5abb64d71a5585db638d00edb9d20a487739d307bc1dfa2fca4ad196e04044dceab0e279286379e73110590c772a06786214c4eb23557324f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.6.tar.bz2=177e9f0a193f9dc45f8653306cf6a87bffba16780220fedbd8be67a3608a8f8d370011f3993590d58805a8ea4833d95196385fede4b513d908fd4263a82f113b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.7.tar.bz2=88bfad0d6258372d4e9739613a07352e954db3deb43c0e2d2a176f9cf55bc5e2df73e4cb04bda75e2dbb210799649f020a7284cd2acb5fb92d2b115a933a4f03 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.8.tar.bz2=3710f83ed7f3f30c9b5d3dd515c168534d01811cd33f20d3a54e654dfb5140afc8198f46dd823ac45072a83d844ad866af1e2b8265f54f9997356be88fa254a6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.9.tar.bz2=078ce0d7433e63d947fe4cb0cd5a14e6f5fca00b7309d7288359ed90989dbf618bd8c1f5f31b607f3ad6b0cf540d715dec2c38cfbf71cd170e572321598bde7e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.10.tar.bz2=f97f877f7afa604dfa7e8f1b399a4c034e79b616c95bd4e48927d88d1e8adf8e203901fa178f93c6af4511d26a38e2d8cced7225c2e75457bb02dc27b8feedad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.0.tar.bz2=ad619ccf77132166151e4982996e93135fb91d97701ef9aea12b6bd05e18e585dc4d5fc34883b3369ebba15474741db238fb90192eb273dd5428864429525d9b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.1.tar.bz2=9094c9bbda4c3d830382e89e4e1c24fe43cebd9d733b6878a43a34d679092bdb6c7b23cb3cc08d4efc6e15449c68862799713006703f95e2862bad1c0b0bb94a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.2.tar.bz2=54c8fc2f2a99f834292b83ef8e68e2b120f20fc4ff74856c13137065b95262f62188ed5c6ffea8fc4b0c1034d9f8a1b497878d6a581391d422994911f5fcb35d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.3.tar.bz2=b26daf1825cbc9cbe51e1abea84f3aae542beec7c26628201325026b4d4bdeeb46f8053a1c105973242ef532e66bd4eda5199dc1aa4faba1a6393f9cc126d856 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.4.tar.bz2=e5718fb13f2fe7f6b34fbc2b1a6db95576fcf9cbed481fea59fd4dd28d064104a912a1000533810221141ec09e9fd8d1e59850ae5a26ae441bb6d8878f42c418 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.5.tar.bz2=71ae2c5bac04a97694310daf76e896a1a02c245274e9c96ca96740f78a0e245302564bce757f1688d3e83b7c0c88989f702814c434101f8df786c1276a4f5a2d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.6.tar.bz2=1693ebd7cd3a452f51ce2ef32144aa36f6fa8121ec68cd0fff715db8981214ea9fc729099e4495e1e8bc346409551d4b93c6c3803fe187fc0c25360b80caab72 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.7.tar.bz2=53b05c51b970a239fab953dcf3bb433f59465fa0b4dfe58066132a1bf6247cbe4adcafe41b219ba453ea392f88a521349df14d58a91a855c53c9b9ba4cc16c4c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.8.tar.bz2=b9b0d99e590a48ceedbd1d6318c29b8fecc12b02ce5a6f1555593eb1b3e284c766f2f8800ee3070fb7a041593e4a3806d53590be760381268ef0f9588e127b08 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.0.tar.bz2=90491968190f4809fefb4068fcc37fb7e2ef179454f57c90bf2af308541f1ec175a72ded53202c1e86dbb63cb6b47678656f753574bf6ba525e982f3278a7602 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.1.tar.bz2=7f9ce1b6872352a6feb539948d26dbdfefb3d4225ba582ef8730be8fd85d5c350bd6f21346d43cfe26a8501c4ad145d733d94da5dbf25b15e7610ca037ad4227 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.2.tar.bz2=8544797f46d54cc4098227809561023bb7bd01eb2330724a94921c5a79ac64b44bd56069d7a77a3e6d2d3dbc504ec25157daf7fdf921c3acb3b4289ce1bbfb5c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.3.tar.bz2=fe086aad84ac7fe8009ea2bc16f0ccb7c60a5fc9034690af38fce1a05582a6226dc3d7b80d08d1952d03a9abcebd7b361f5fa2d506d71e1f5aae9b5f31ac22af https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.4.tar.bz2=ce06ce97ea1554972b00781332f126e767a3ab98f5023d3dc83195bb36b954b1b497961c74bf31340827d9a5de2e0bb34240accbadad550b2e692d26cb097d4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.5.tar.bz2=6fa248065a48cebd1e9950ae07f3e653b3e29e369fdd914908be0b215257fa2766b0182e392fb869af51cd498e258435f6d9b45a03452356dc08da0e96877ae4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.6.tar.bz2=ce912342033f395ba6298051b081c89832f656d61ecf2064e9568692552a938599c816d2cd1fd1f9bee721611f890b8329985c69f4d5b2bdbfa6635b48afe3b1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.0.tar.bz2=cbfc7a1cddff0385187a7bf2eb9dc71a8d14912cbbe4e9529b79414e49e681302ac9009b7c8e6fcf92a9f19a0ca5053a6ed25edfdb510e3e4e247474d471c58c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.1.tar.bz2=29b99b3e04325ceca89b64c7846aeadb412215270f6f7c390fb1e275ebe19b2faef811778c0615b2d4720ddd942a2cc209c72e623f559e6c04e78849cc1c1b1e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.2.tar.bz2=f67ab3ac13ae90622fb3664a869b0c584b97df0500384a28bda9c5c36cf2a27ac1f66afafea08bb29bbfbfc1e0ddc444427993ff4163987f5510c4158a90a96d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-3.0.0-preview1.tar.bz2=aaeeafee545dd1ba1c4df5b7e46e82f7e89e0dcf4fb10677b7e177e66f86e6825e85fa5ae3e74062363883768b3485495a3378f97693d45f675a6e547e989cba https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.0.tar.bz2=3e78b2a73167c3680aebb1ed015c583d4f6c58804d3b272253bee2cef37fd2d1cb3852fd2b408f4af1abca17725d923a1f28d40d2a33896e5cc21c4c6711d7ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.1.tar.bz2=14e7962e180b9ae16607347ba5360b9ec086eb8055b88d2f60b1c9284fafd93fea905aceb441f07d594a34b53647520f9dec38e4e9f6ad3e5a6850750d981a27 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.2.tar.bz2=5b7d88d4405cd45a6a720295cb0b7d3152dd757aac996c8d1a576c6ab2a45cf9ed0b0ac006423791cb038a14153048e96308ecc8ba1e761d4b7671dd6f880d15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.3.tar.bz2=320734a124e26de068457237b5f973278286d7e529e92405c1b856b6e57441b5e76c59d0f519fe43fbdd2c8c48c9dd37dc5094831c0e6a81d804e88888ab6237 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.4.tar.bz2=ca34ccbfc24adc4b2c6c5c0e3b27bd2754c2c5be61e9dfa7b919b4902174e351f45128d887c179c37ccd5163a7f51c213fae96be4d0c356e2d7f96acdd4f164b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.5.tar.bz2=fabb151c29ad7ef7432efd4d51ea1e20180006601617ba896f8b1379555f4088d398e96f7bddd7c9815b266acf5ea94527ef4acfad2446950da6fabc3770f788 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.6.tar.bz2=2728c38987d41169b7110fce2b507b5d3e971d5b043b60c9a3b8d6d385ec2a40d24e464f6cf081844282d6b9fadd4abce670e79f02e4606bdd5aeacd1b57f773 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.7.tar.bz2=f98f4dacd9d8c6c9515ddc2597da8b868c66897577cc5a76819db742f3649881ef5a7f85a880f1e359772b1ab08750dda6fa74ee826938e06b93a9848699b929 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.8.tar.bz2=47fb4b41e60b1e536b3a54e18e9ee92aefee7eef92d49716b46884b2a3d73a02e88e4815df64baedebff80e9e17ac7b0af6e65b406a2c53a4f90421dbc948415 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.9.tar.bz2=c81ad5e16aa18beb7c34eeee68ffa96da243f99ff69cf00932ad5ebe427c1f80e3f7fee31b15ec0d96c1be5c2007dfa6e96c38114f61e958c6b7ecc40270db4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.10.tar.bz2=856210b3eb2bf338c5da2668e830b95d48feb82c1c4407371b18c772df12878703a9eec948a2778acd098bcc8eb402ba6d57b2b935766847f3e652c3dadaf6f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.0.tar.bz2=6ea5e6338319e5d6861d420b10f93b5e6634a9925380c61acfbb258b6609ada76bf2a6b474b53a30b0a81f0dd81cfdd1e610b68698df73f69091f479ad39bc63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.1.tar.bz2=8e8e4ef137b9394ee34b760dbeaf4d23953bec083e5775a423ef6c16b75faf8bdfe99df975ab6b6d762509536b017f3510a9a5e9ab63060208edd4d2d96371eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.2.tar.bz2=756c9ecbe3c9801a0a364143478903318c524f7aba026239a1fb42d7390f74110805543a9ac2a9f8bbbeaee48bc867fd15d400d8bd46576bf4fd417d6136a3b2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.3.tar.bz2=594ff95e33d0f7af7be448a781ac68f895f8344ebb1c9a03898813baa5963024aa84b11baa405fa584070e4195fbfda9b908f1fe171f75f19e5e1d7879bdaaf9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.4.tar.bz2=a9703c6edcfa2ddb87bb73c070d963fc4d59599919865be9b1d93989906698c6f3b9c4fd7f2d597e5d710276555de0b5865676b92aa3aba1f1f41be4052bedc1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.5.tar.bz2=dbd91cccc0a00a1ca7e901d56f9840e62e4f139ff4dbae530169f41897d06523c7e8977138ffc6212e1b60589f3091a4e2f6b6714c0fad22fa65e442b248f61e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.6.tar.bz2=ec967415b5bec95154cd9ff8338a602a6d005fa647afb1e1cff54a0fd4e9c0697b9e952c2dfd8e4b30068a697f5391b9cd165d5d33f3b146fe35f2a8fdf9823c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.7.tar.bz2=b8786ef31db7d950b1309646f81e6a99d56b76223bb8d2d20ae045f09917332a869b14cee1bf235675c7d8eebc6942b5ebd6cf0cbd290ea75d9f9be1475352f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.8.tar.bz2=4d949a715a04cd45f6817b1b26093f7bbf03ca630aaa015972e7d0ca72bae094add18664e1489ebf8ade27c160d2fbcebdb105701d719461af13c4d5fcf2cd22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.9.tar.bz2=ec6cd8bd90ee99aa6470d9d524d89531f96f992efab8a9d6a709a3959ef4c314828276e67b84ed97d415cb3e0c837458d13732dc940c93d4d069d9b881d7f92c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.10.tar.bz2=1f60cae30581e3467c7ec07391de5045f238b61a49661ef0cf76d72ef78d220b7ae70b86b1e72625cf37085b6507fb1dfccfbe5554195f0c6eefaa996e199c16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.0.tar.bz2=343f5dd6703b6b58d61fabefc8a50ce5d02d98c32c8b4e52b8deacc9824369a9f0dc8faff69e90ca7585a194a4d742791765b16c3f5e2417b0f54e0e6f6220b4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.1.tar.bz2=aaf7f9e30b3998b8586764f61d09e434c32aba7479aa79fb6afa71ab11c067384ef3a4b9215a1a3639da807f4f642b9efc62b37b55e989b7ed7d75cedc7cab40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.2.tar.bz2=b834ef95d52abc1f0c224193391bded9b4d2089c694378dd5aa45f8b2b1ea41b1c300445f766841cbb8cdb1114491ffe0095f518e1600746f5f583dd0cff9c1f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.3.tar.bz2=9df5ba9423e0a8af9d825e59f8c69889c70af0f6d67f96708a02d7d61260c83474e2f7b2f240af399911bdfc56850255b4f34554f7013d0417a13bb782403aa4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.4.tar.bz2=1d4b55a6a34249e82880fbacfc1d97a093600005deb982c6b42ccb14bbd7bf1db14e0f6d73bc25f1addd72378850f7edcd63738f2b3cbab569e34e89d563188d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.5.tar.bz2=29a76dbb28d5b63ee0ce64cc2e7d022118350a550d3693b8e38d559bbc4f42fdb6b63af4bcc4ebfffc5c0fbabbf2e18db7228e655de3bb416e344a61737870c7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.6.tar.bz2=122322fb462f8fdcb065e6f9d9968027c320ba9be9ad6fba9011760a7296cec1892a0780d7436903cb7763f5d18cce11860c5c7fce82890eaa139a94d5e89428 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.7.tar.bz2=0c17f52a74b73041c588ed76f73862d179d7b9abf9de61279dc74ba7b7f170179e0db5672a403dcc209b6dec9a865a88a382f5df01f5e6ba4cfe0f66232b4a15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.8.tar.bz2=1a30bbda34fee311762a2f05ac7fbcfb4f373f8840f86b9762b0c07f1cd397e3eb3be83210221384333b625a243c7161ef4f368602a613760391265309e4f304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.0.tar.bz2=edf31b2dd02208c96be25c2f4f7d35e2b122e5d327133545e16038836b848b90f81079be4df47c5493bf4ead1d464fa72a8d0d405bb2509ab0db6335c58ff793 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.1.tar.bz2=91cc7a9cf493c7361f3d507cdbb8e258b7dd710100cca8053b77569c07c04fbc2f72fdceb9fd9a3a5d01f4c423a206da97730c356d017157bc2454041e1f1fd4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.2.tar.bz2=8ea603a27560ddde5fc639b86381a303f886ce80384d8edd0e7bc806f10649760d75a76dd5f2ee445371254e727544ec12df49d7fc8876890b73237f4eecea1c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.3.tar.bz2=c42f24668695be5c291836ae6f39b4366e0357c9bb63cf8be2ad36cefe0c6d19cb921a43159d49d4d062dccc15902ec1698a1a6842d13ccaec45c6cb628da4b7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.4.tar.bz2=3ac89131407faefde80bf2e1bed4baa51c371ab4bffc18c8dcf2624f4d1068c9f933eb66486a2bc7c6c67f674c5bd06747bddfe1f1f9dcd939458a08e1bc6108 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.5.tar.bz2=8ca9a9387b8cb434828fa36e5886bc8a28d70fa46d3e20df60389880477fa2ee54fe63c0c14611a2cb0168ef1149d205640c6003e6a507400ad5fc34fa641bd2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.6.tar.bz2=52795cd7d112ff437adf603f58130ce539209628d2224a685d060d67a07325717981fc6f91736d4abfe014ccc8057bb40a097fcf85f5046aabde0019d08bef16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.7.tar.bz2=bc179a31c746ac6e632ce08f57a8f403d4e463ad72285c0ce008d7fa39b88a22be3a43014c9eb019f6a39d022f9448ef151a8d03e89a4d2e767c4f77684e3750 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.8.tar.bz2=d693e3a800c2200c74b24c207425f41cef206a0b3f20625d18b1590e9891f409d6643ee0e7ab8fdb6e1e85de6fea52c6a307bf8f65324ee0f9ac33306ed1e876 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.9.tar.bz2=4b6cab99f6b7be7705efa5eb6f321b5eeb1d1c6e96d4113bf96b57378aaa4950b39f40ad555f630f17d216d235972f028617ea43c28b1970772ffd16be3d9a67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.10.tar.bz2=40bd90d231fcedbe34ec9963eb59645fdd1036b03056b9b8fa3b56900deb86d94e2a256f90e6aed297288d6797857a3ef9fc27bc6ed05c017b5c8e8ddc465df1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.0.tar.bz2=c1df39ae526da7ebf87510017d7694e6f78c59871baac4e9c5f2d13c22cbecc30925e2783ad93f741110b7c3802e9f25a6c3ff85160b33a4080b0f1fb02f7740 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.1.tar.bz2=930f6f7f654fa14076c84365fbc771d5b09679588c4c478d8f6944770c53fdd37213bdad159fd231efbc079b85ab7ab648b0a97fafd666c38d0e280046c6e2ef https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.2.tar.bz2=cb62ca82d57dfc0e21e532d4b523f49c559c4ed5f3d73adbd9d650bbf23c694d382f3cc25eed6a8630f23e4780db127b4b8b6ecf6fc24b0f6febc820dbc6af3e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.3.tar.bz2=708209a89a18cd99c02392307d2bc63e46bd38c72c8ab0e982b28285f8e006d4ed77e04da3900c880eff01c3350033cd00ffc3be1d3a12c4ee5b263282f0dd05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.4.tar.bz2=c94f5b3129ff41da1b07da1cf742592e9822febf6bcfd0e9eb7145c00b732fc66625056bddc72fe9b631742c70d0e731cc6a9a16a089c7b559ae963b072578eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.5.tar.bz2=b4d20f79eebc5496768fc6adb0735c6a23cffbb39ceaf9c2da42851ff7842dd2318c07877d89564176d206e22b8824d2a3c637b5ef02c5caed0b2b5276581032 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.6.tar.bz2=a09ab93c3d6936d30065236ff2abbd0295988a9359f5a76425cecab47af0ca5b6829530d1708e9ddc9e78d1fbb7c0359b9c7e90227870537d099ccc89c73844b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.7.tar.bz2=f6086c879f8737eaf6eef4461d23270e9e43811186a22f35ed69a8303eb933136e7a690bce2d9e18bcff730725292075e09db0f2384d0e26018b7f2a0df70b32 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.8.tar.bz2=62c631026560ee310a849483f1b48690075477942ce86e0564e92f5ca7834553c435a35a1d6d8dd957c3a7be24c63c32104518995eb3a96e61066a04887bb0d6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.9.tar.bz2=0f10741772d2498167c1eb2aa263292f99748518a4ec03dc19440eb5befa075fa69e68b08a09af6eb2e02e462ff20ab10e4121cfeea7bdc938c04762d81fbc4a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.0.tar.bz2=908132a47bd996f8c76bed54078e71abb154294f97dcba779b4cf0d3b82e31c4635dff89e97d5f6b4f1d797d854c6d020afdf9dc77b10c0e522755fa194a17c3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.1.tar.bz2=39c867ac0af48410c0bc6b01f1ecac00616a59cc07f3f5a3e7cfe8f786b70c7cacab65550dfee777d11b8b7a3ac173bb22c602df370eef6a04b40f8e539025ae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.2.tar.bz2=2f04566f6d778121281bc6ba23ec57ad408049e649b351585bc9a3184848c71873910e159f7fd3909c7372378152f5ed264070aefd45933b97980e80f6df4deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.3.tar.bz2=940375b11c525e3f0bf00e19013eeb886bf85b8d8b66d86d53740170b0ae16b14faa491dbcbec29238f875f84204cb0d52ade17c180d71e129cef5254f338f0c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.4.tar.bz2=1c9d41d7ab7bd69d7e3baa3c4149b1938cc147beb2a63923dadf2fd959732c8cc824e2add0946bcd62f44b0e1d509b80b4796a5929841cda8d28f3a8207b17df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar.bz2=f47443a53e3008cb7b7b7afcbbf1adf44887769e42b3defafceacc1e50e349c9000b98010f853c6b7cafdb54b85b640732a56a8e11ad8e58fedb5fa4724f68d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=fc1c9a08c48ad91edb4afcac5244f386d63940fa906dadaabe02a1eb025375443c8174a6ad1acd50f4583d6c57a88feae86e697ec15c8a25bb49f280b1357783 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=aa611f7c350374d2c5c8652a694022e038cb5a65fde795c43e927067f155d0ccb368b281b1575e679b84cd7ba6042216dc28149e138256faf62dd3060ec0a6a7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=ab04071b90ddb81b68f064fbc9f2bf726729220e4359113556d9b71f3549483f122b796b3b1e4dc8404e6f44a4bdd02e9db2c8066974acf190448c4d5a97dc6b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c769fd3814bf31728b83f2bcdaf0928e6423150609f3db903631f9db68ce0a0f9c87bfce5f93983cd962662148a66cc55f5f42bffc1a1b5a237e6938726629ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=c231f8ecd46760db49796519645bcb5cc9fa1c0582abbc419a2ca81805c81fe8912dc32dcc2c5192ca9ef0d502da8f61ce1ce7ecc87b29edad3a144a8a0c200e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=b41557c83084c8e5bb263aa944499932ce7d84457e4e307f1cffecf62aa44f8543a06299e38fee17ba64f8952048612f9289e24c35acfe2ba02b913c15dc1405 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=001d10af5833a03b42d9a254bde844731d3a796d98ce2efea90fc68e4638c7cc3be31a34fa163d4c5ac18c60e685e5cf2ccf88fac46ae6bc587a48ea35cfb09b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=0a8681afc19372ccd9409bb017967f86c2e6642e083ca47ec904cccc34242040f710392d916a69a327ae6a0bb287d97bc05bbe116a1d93478ae282b32e5fcfab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=e505ff2f00334870d07f4ec9348648b7f3b91dbbad1fddb2f60f7a38572a66a7bf081fc7b386f800d86113aac1ce3cb739c86cf0d6da2bab916a4432ad557c54 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=aee6000ac886cdd4e4044a7b43ab20d54d1e99f6b893af69d0d7e7a202f4ae861f939898580c60996b0bb7c6481eecad69a20acc83c75cc594dfbfde3a22c476 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=86f4e6948eaf2586e018570f09232b94f907766590eb75f00992531ef74676070ac5a2308e121ecc1c23388ece4dbe1ee8a4b2a7ab99ca00a28d6583d6df3d0a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=1bf867b0af84eae4e7996047727fbc7ef459afd3b2ca5885f658a74d62910d00eecddbf0c11b23265c625c26b420421ca5add40079438edca8eacd8b5c0149a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=92a3b217079f9d960cc4fbb5908f7fc7ef71cc3ec8e5e404341e2b8875534c0542167d03b61577776e0b0f049f9ba2e3235842be381b4d484845768adaa6e3f7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=608f0f9eafd72226fd1b39f6c92d0f1c6d3aa7ede096cc390fc4f8bee4326b0937767bc6de84fff536dea48cbf9bdb8ef5598670235e013ccd630b06c5b8fb05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=40cccacc66cc4b7891b01c35375ca913efe008157ae540308b649e14f5753f34f1827861c6e16b500c49ac95e1aa22e1c01444faca5dce71f981452a9e0f1b67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=5a33d600e55f7b8755725d7e2f2102cd76720d524d7b378d85fc21ea8d853166dd97e2e615ab18f9e44122e3404b439dd123f8e23d6ade5328982fe72db2af0b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=37e3a4011b3603807c6e0fd48818b256caf272b3720ee654f38c0ae202cffa21600f9cc751b5335b57905ce67db185b37f548ac9c84d6acfc567f0ef4866635f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=6648c1b6bd962e30e89eacdb6130b1788ccdf6ed05ea13eac32eefc222438a298de8121937262851cf5c4cdcc1a804d5d8bf19667819db6599bfcf79e57b0e17 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=ac690170a6801fd741efb88e67961c0c3d717029b3bd9c6e243074799641c940416fc9cde7b4ba2c56e79551d6cb7fe5f7977649404da0d20d1819d7d3ce0bd3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=e6edfed2dd9d6649c47b1dc1b102f933f76a148e6dd8441add2316073dd255cac851e972366e4821fcd665e55b375fac757d189b7552baaa0b49e82349c71b77 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=69c4895076690037199f2a9b98e622f6b5e3c23ea02de79bcade6193da2b1b88ed0c28006059f4ecc502298442275e7e7324232de04a2f0ce430665057410a05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=175777563303c6d6a04393938ffa7e36e0bc6db33f7d2cf1d42ec852b41ea26dd7d50569eee4cb00497e6bceae95592365ea6718a35451e5c929d8a085aa9649 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=b668f0cd853615fec38253b264115ef0fedd21a7879a663ba844f4c3fa8b87e5ccd8adffbaa12ffa3aa16b108a2a439cecf827e7d8e19ec8041d46e758abc391 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=2039b1fcf55cca35ed3c8446eea45819368016ec1a05a5fd4c6a761b54f5cd56cb3301d5d2674af1ff75bda41eba41b7156e71ac48b88ca7a6474f0e944efd89 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=b4bb324a53c316da488c5f60803933eade9ad5c59a6d58e76787d2dd89dc2d2f18016d2ac4ab0853a40976b4beab70864a9c2d23de194bcd63ad089b2159fa7a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=3a9b5868d707d6a4580a44ab7504cb46a2713f78918142b185f0d62c5b7e0dfebc1ff551b2a52e9726befb70abbde867d2802345a01fd3e4568b9f58ac83c168 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=39007e736b28ca599ea244bf4e54b52e86597c950c0ebd8f1696a02c8eef575a734d089b52c7013d00c02aeb261dd7e2facb45f24b34c75c4bbf14cb8bdc3ae2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=0fc4e39f7382c29fa2119119a78040c611fc8298bd4765025599d3018775cb2bb28f51d38efd4306e9f04eeea20e7c2365f2fbba1233e0494a8258c3c184278a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=5dfbcefa70f5b81887d34e776713bb9c6f7bcecbda8f1c9561daa3e235c725417ab0a930f594303723f226d36306e6a73f228abfa3533280659ab387708182da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=00936db899bca33dfa8d0e6ffd4bd6b0453ad5823a450e50e3a055ea696dcf94b317357732e26208a6f34224c33a8b4a6130e5613262d62381179a52cc8f3a1d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=15b816d190fd58382a2f6f6e087f358b54003f186462abf59dbef545af9044a2b9c65576119185adc6bfd9ebcdb49f03a2a268eed4fb0f0d37aa35fa18adc1fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=3a481c35668be459688a66e4e480e11b4e58c13aecc3751da9de8a3e3282bb4a152128528a804742aa0b4380eb537b666a2b29fd79be0d6968c4ff1fa428eb7b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=c604871b39f396c539c52dd4849d1d42f37530003601f60162860efc777c85e7e1a1ee88a77cfc9ca8ca20f0448a5dde4f39cbdae67470d8d2d283d6fbbf0239 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=12042b5c30179da275fcb6155142ff2787e86cf577caef44b7c4d8175ac671cd461814e9a19f4c9b1e78bbdf041fdd06bd463aa972e194caa91e80778a56bce0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=2bf1c13616b2e255b8c269bcb2f979a45009c079ffdcb10a13e238e5d13b0978e8a974bdc1e7bf8519e15264ed5f577cc8f85a5861b3ea3a4589eb78138a3f2f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=2e7876c8c8a1f4e3cd1913023c564d9e74972ce427e85765bbe9ddf237285d7b96017c1ed17868eb912509881e05aaf96e4a6b353a69989e61c733b346511715 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=06de4f6f2761bc58d94659f826c7c86be50192b7dfdb5c8b6710b384a50299ad161309e2a8c333fa5249d0e7112f74dd0c0b0faa2950a6e74bdba68833f68702 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=597374487d196abdfb389c79d7d09b81026fe3e8043f8811497646eaf47bfa432cfb96e2af9be1a35ad2d05f2f5c800afa3f9e5adb0ea2b2d31812d219232a00 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=ba56050ce3fdbb9117c6c9e767f818ce3d467030713b7693ebb039f6888bd5d7e5f7b1986ed117414037e56e550707c3625a88bfd5d00d7319d0c7ad642fc811 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=395facf2f7a15eecc94e554a60d87c269ba70c5063b24b7bc504f579c0d12a7d858eb0b98c502016ff8bf02aaf11ef765e2291b542759fc96affa186206ffe4f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=d1d527b2e95e3a16f521214c5352bcb379b946e8be1a943da872aff0ab4b8edd93a507d693abd7a8ef1cd5ea1ee6e6bf1f838683f5a447a6cb7992de61f744ad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=e47a50392c4f3ee13a565103e0c5f9474ba0a8f5ff60fc9fe7d290b7f5f9a9ddec962fcbb103a8d3b9c7765a28ba59237975f90aa3637a06a128802ede28b3da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=77fdbe62d1694732a7307c29b4f45d0dcab7e8a729f04f45b216345336c5820715bf3f8f7cab52175c4ca1a431d867c7feef7d802dec61c2cffa4abfa8746e90 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=24da0cfc93ac536c505dfaf2dbddc7b312a3cc5c72a9f47e28b3bba760a53b584422b73da8546ca01cc44d3906a31eed7f27a3dfc0bb574f01f9c08f7c589d20 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=aee8267c4855e95a55b7ab858ca6359d635049743b8e38d34ad1430522a0cd746cd572e77884f7e10af14a731ccd8ebb9cad6ea035b0fca4ae534913a38f43f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=ba3e66bd3dde28e7193b90c44194cf7732d294e592321c482deb3b31ddd9655630f5b04aa89a43eb9d1bc222da10884e9da332bc9da78e9e1b655300db52a444 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1df8a2ad9256985b4ffb3da5b545af4160ccebdd8265711d1b642cd2285a004a42cc2ea51ce3ee78854e599f5196c66448b8e0b043846ef6e6bf992828aefb6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=cc460b3d17d460abec27d77f734e1c1e7a649769c3374f02d32a4ad00f989ff3150dab926a203b209c92475100667dd524774fc37633d71f98737ea2d8868968 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.2.6.tar.bz2=335cddbfcf26c82cf9bf9c7ec6637c1c3e30e1b10d00553f5dcc60822d40b560e412d404fa65faefbd1c9022a2d7f0e4d93c25d054681d109c7cdb5968989005 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.3.6.tar.bz2=5531048adec175ad23e3bb050ba6295352cfe17ce27203c356145008434107831186a09c00ff158f4ce9109776f381661f3047e828a177906a52143096249dbc jruby-bin-1.7.0.tar.gz=1e466a3f8d52b553c9def09827fda4b8433576b0262c40ee505602754521a00defd821d5ead5052be52baf281c6cb080fd03a8b15c628a0ee67b4e417633e5e2 jruby-bin-1.7.1.tar.gz=ef28381ca30664cf450f9d3df9927530db771d30e86ebcf535af38e1a7e26724ae2bcfe8487cd2eb349bf609a733a25528aae14beab4d13d298b5604ac7353cc jruby-bin-1.7.2.tar.gz=8155c81eea6743951db7383bd9f6b1750614927c9c0b25a6574f6d64898bb3ada2f626c6e0df6c5486561a03cc7d472fc12fe804ce66a3972d2fe02e3f407100 jruby-bin-1.7.3.tar.gz=1d19be25bf4a7dbb0edad71008704377893d3967aa4204a0d59d6883aa04462ef6798c64d0c0fdd3f5129c16ccb42e8507f3fef38ed56054bf6e689de745935a jruby-bin-1.7.4.tar.gz=d7c0ee0316c50ae5413757e956c18ca68e9d99a25cf85be978da0787c13b8978d4ff2712a3effa564cfdf07144be4a56a0cb8acc794a01f43264fe8baeb125e5 jruby-bin-1.7.5.tar.gz=a4984591a3809330b93f4ce79fd1b9c24360f89d88a03bbc76351be623893c4bfc6441375bbea452ba4f24ca8b9357e03ac938fd6c065b3e2348c0f896b22a1b jruby-bin-1.7.6.tar.gz=98600a2d46bfce14111c7eebc62716352a4b685043afdd696b8fe51c6b205eb9569fc2860423a653b842b173198c76c59767156aa48e0d23482dff3358d884f3 jruby-bin-1.7.7.tar.gz=71da2e72c65899216fa15ec568b51aa7004e2ed7dff99ca376b332d3692c83a674c688dc21ee04d177a3961a2bb3973714509d88cc14d0ba9f79c864c6258a06 jruby-bin-1.7.8.tar.gz=42d54243653ec260abdafecce1143161be63fcc38a80f71ab70fcece4bf91545a2b12ed2319f9fd6f6b41916c398a9a8e89e7f0389f59da56f2739665e74522d jruby-bin-1.7.9.tar.gz=f519f53b1d9f57cfe28982ad70b892dc6fc20fe6601d98d65a1dca9f617a0eb8fff74d0fd82ddb858fe105d05ca7c7bbf3a987677ae0363caa2981bea358c096 jruby-bin-1.7.10.tar.gz=160b701f2f500dfab64beb635e5c4dc57760dd422d0fffe8d3cf8d84ee6ea17a877ef77a0087b4888ea9db64ce7750de01a73a51530aa6666a2efdcdccdb89e0 jruby-bin-1.7.11.tar.gz=a53b0fa327b98344cb4a8aad1ba537ddacb709a0e173b1e32656de8a610cb9896e9a4554d54d0d01d2361f8ff1539a0e2ee01308f670df2004225231b704065c jruby-bin-1.7.12.tar.gz=bf2be8a37b53d38c75712a6331f96b999fa6b0e87f453fac7b9d11eeb1b66098ea0778172f1a6a84345e1881f05d63012e28d4068a0bd31122bf2473bbdae5bf jruby-bin-1.7.14.tar.gz=f14e658da7f2abd469edcfd657dbc2505d6a2c04ba1e5f65f2164256f54625da154b338bd3d286ea6a18da61d04d90a61ad6b012bd9461182753483efcd0f603 jruby-bin-1.7.16.tar.gz=47ca714c3211c95c84e9c80ae4fbc894bfd7ee03e1bcc494cb48d839f8538db4aaca7029a4913b8d323e7227450e4e41bb943dc670f43df8a654eb127012033f jruby-bin-1.7.16.1.tar.gz=9bacdf6e212d08e46ac2c49183c8611873f6ecebfcb0e928b5110bdebfeb8751ac087cf8aba09afb9a8ccb58e59f3c3e06a241c1db445835d7a875b0c3deb4b5 jruby-bin-1.7.16.2.tar.gz=349283bb5344a62f282021ce39648a0c8d0b41ecf8f800ab5099b5ce161ff771e688f205a918324cef6ba0ded6b3694b8dd83f46f56be584202b8fee496b37e7 jruby-bin-1.7.17.tar.gz=a3b171df08e789f91c260c5a57ec842a5d62cc8d6b462b772905ec5284e394ed7b78f5b327ca1ff20f5deba8371a86cb03fade75b5f34f233df47bc3f08d469e jruby-bin-1.7.18.tar.gz=b259da2967e246a387687117eb13e8986b57de6ca8e570d6f8f8f07b8097db6e01cea8b0ec3a860b091fde14de535260dc6dbfc638f9e9b49d348f726e969642 jruby-bin-1.7.19.tar.gz=da91efcd51cfc833666f8b7cf949d3b5c41cd8da99ae1559c88a7358fb48df1245c66702c7cf23e7ca012cbefae98787c200352976d4e8aa3e9120057a89dc8c jruby-bin-1.7.20.tar.gz=77131afe46e72c406ab4250e43cd1f98e59a8351c494044ac89f97a7c9a81492f8a8194541055fcf1fc59569e99a577fd6a36a9f6a3952a99f399d4970e80e69 jruby-bin-1.7.21.tar.gz=111883df12a60d06e9924d33057ba72094fcffd44f7e3954d6c6d2190f8e6442804e739cc525a9e75159251a8dc1cc487570792b1b4f5773f4d0082f0eb360d0 jruby-bin-1.7.22.tar.gz=6ed6cbe7b81a8aee60906fdf965bc217b3db794698e2cb37559f36ac119a0cd2a1ae1a7a766535ab491d647e8b4e6b2f63e62011714b757f8691455831ef365c jruby-bin-1.7.23.tar.gz=6f4b97c4e08274f96195deb176e3126e8d047c981cb655cded9665624033fb905d60d5586704a3f91b2ca06d7e78918d9d31131c93e4c90c75a38182e309ac9c jruby-bin-1.7.25.tar.gz=a89ab8d539bff346ad56d345b6a205f74890b9aafe82a2c82e7c19cfc30b77fefde1003e8bd7ed15f141151bc0fd21946203219691383a64f2234fa586e1905b jruby-bin-1.7.26.tar.gz=feee03a50900e459d9ed7d2096056bef126c4551c02c335c4132e2307411f3fc4fd435e8fe44411184773c80f0630a7812b3d798b7e9be2818e1b5a712bc6995 jruby-bin-1.7.27.tar.gz=656f4313fbfe5db8d2d4fc2087a012c91efef848394c48aeaa0041e9a19b87ab74686702955413d2c51d6b4b11c758ba0555b30fdc42e86d66094411324139b6 jruby-bin-9.0.0.0.pre1.tar.gz=988c6a058336ab9ac8b27c7501ceccf3940837f9b9d3ed32a466b891bda1bc13f76199f5bc3baaa1240dd0dfdaee40775f721294d667f3b8b5bb9ac8206e2e83 jruby-bin-9.0.0.0.pre2.tar.gz=f207f9477a12d7ffacd92b1bb5154ba8101dda8f7b2eeadd4fa83eadec9a75727bc1831733d27fde63ba63322ec491201dd23cc6e2c2b5a4b8381a8fbe49e8f2 jruby-bin-9.0.0.0.tar.gz=33308a983533c129cffbf521bdb8c1996a10a6159a4a436248e645bda682c5a5395ac1aa767e971ae679c935f3b61573cb22d5b8c64af026752db3411a6356e1 jruby-bin-9.0.1.0.tar.gz=277dca63f3faad01c98a793f06bb4d558a970a10a66a38482e8372b25f4cf4fea85f1d5624fce7fb5b4310c42ea8aa360f24f6b9b6ef4bb0ebcb036736009ccd jruby-bin-9.0.3.0.tar.gz=d82f83e20ef17a0675843e306ec5e90993e5952cf5a53957a91e369d2c90d92306aa515b1e135c04b45844a81a0f4ae34289b966821ae5f46ea51fe012627352 jruby-bin-9.0.4.0.tar.gz=b9cd4f4a00da8152740b468914046633d5341b10aa26b0ac56835d5896531030c8afbc4c965b30c36923555ed5b145de8ada69e05ca38b01d43621914a331335 jruby-bin-9.0.5.0.tar.gz=7c61cf010fbae571cd6ba334aefcfd917f6de8224d014026297b840d0b890523e94b2fea20f154c82c25c4f9d5992b9481fb569646a7023e5ddb42db1baf5f34 jruby-bin-9.1.0.0.tar.gz=1ffdd352823436086ebfd37c03401a1f3a9cb8a8c5f75476af1f704c4764396a20f49ddb7fb7f0911e1608f7c88a332944330b8849d13e6badb170efb736dbe2 jruby-bin-9.1.1.0.tar.gz=475acda79ab8c54467ae70094aa86842959200127c1e92709f0a731014c469d3e52e4c48770b64ab1bf31e1b710ac4570b421077c85c08071c1356bee55a2900 jruby-bin-9.1.2.0.tar.gz=cc6b1e1a2907c128dd04edf9da11933a54bbed5e861ab6f0208505bca5aa2aa9d9acdd04bfde65824346fbb435584081fc8ec2e2e9a3aeea1bef8047915e0c61 jruby-bin-9.1.3.0.tar.gz=88339f4cc05f7f0ded21f100755156ade33f19873f49c0c64110916da8c0b059df541a77bb36e54fda9cebf042591450d2d6312ffaa879df926870806985e774 jruby-bin-9.1.4.0.tar.gz=ebe0e9d67cb91721d589461e93e26338e3e3a1f0f98de53f25906684140b49d989ca6d3704cd3f6cbf650f30aed9a3989f117bb4732c83ed870364ce4c31fa36 jruby-bin-9.1.5.0.tar.gz=f2a11e6fc88d37fc1b640ea8c9feda4607bea6da5e6520f61ff85e8d6a51543612ae267b45c033214f8fd0e2283153da02001cbc9fd90be4761b7544e1413b9f jruby-bin-9.1.6.0.tar.gz=ca59d199a0fe791efc57f05801ae26c6cf6402bdc0f1a795250b1a2dda39b233ed24c8cb005016e79727f4bcdceb1bad726a60c16935e76fc87e5d1a078fb5bd jruby-bin-9.1.7.0.tar.gz=f2569d4858a33280e90d984aac53662c25ef057ef9903bace6a2214aa2e6a537c9bc8fc76b08f846b3093cc4a12c70c98d725576a4ac771e640b95cfe3697c7d jruby-bin-9.1.8.0.tar.gz=dba3b41b65ff27dbaa203a5cfc78ac7cb9d952c52b452bc774f593383e4ef9389c0bc37549b798f48b63497ce7007b1ac2d2fa252d9a7c3e52146b4ae192ee49 jruby-bin-9.1.9.0.tar.gz=f8f6419be34aeb7b7577e946a62a094f5921d7319b51876c5e07322d99249b3a9f29fea4ee5c2b8184dfccbd5da8f8262fa97f5e93874887f3355dabfccfa0df jruby-bin-9.1.10.0.tar.gz=857783bb45fc5d62148bd687b43af9ce776099dfea75ec4b5d947a46ed270568bceba2a630a3277746a3a9c1fd3111caa9a4cd13493ea8824c1ee190e6d2abf1 jruby-bin-9.1.11.0.tar.gz=718ed3f5a39cd9f9b45c4e11ba44cd32e035f8d9f26fe59230dbaecb71adfb2513ee1bb86ff72e075b02f20151f3f30e53bfa30b6c4b011a93a138d4f479fbf7 jruby-bin-9.1.12.0.tar.gz=8a9f88d517d8002be570aa95aebb0063eb62a47efee191155f9fa4f045854910f78431514f857c438167ec42f4241faf74d4a8d236ae36feae58732312e4bbed jruby-bin-9.1.13.0.tar.gz=ef88f613ada2665d4f63b2e2f15594739de8ba501406e76de417821f44847b0e258524687b0ae0cf5b737520aa4dd9bb59d80a4b89a81408cda638f28bebbead jruby-bin-9.1.14.0.tar.gz=d15ae0c60421951b830524acd21a0f2a56f480e983b148a2722cd36afed8e99a41f518eb8a679bfa2cf87f08637e81c24ea88be40c0a5390e081322f1fc6f8da jruby-bin-9.1.15.0.tar.gz=74a411f42149510180706b2c70610caeea357f6fc3d2a12ff0227586862e6a9dedf09e752596d6c486af7a310a07241f311a1dfc73ead229d7225c09d4508605 jruby-bin-9.1.16.0.tar.gz=94e88dbeb2545250ba5bef50bbe0baa6f3851e9817f67f879ffaab50048bb0d41cd7a0e87ac9ef547e37c2b82cf1d7aae6b8caa43d03c6a9931b8ce0ad4b2afe jruby-bin-9.1.17.0.tar.gz=4c06b9674e20f48d3815b4084bb38e6994670eac804fbc56d717cde7abdb74d57e0ac17b7fa0b500318de405c187c3eaa01441c22621139dfdbeef62a5467a63 jruby-bin-9.2.0.0.tar.gz=79f5e8674089d2f6b260e033e3ceb4571f54cb5cedbca74ba76b52dd7cb30085a8c6c2676e9be57a8ecd9e962fbcb3682a8de38e1cdde2dc6e05bd179556edc3 jruby-bin-9.2.1.0.tar.gz=185e67da4964c9cf1d9142446efa77605e77894444bdc96bbd10fee22637f197aea9fbb0f60d3a42540e5f383d5b06fcf095d572f432544a40c2145deec81926 jruby-bin-9.2.2.0.tar.gz=85e16e38748b6ec5f237eabc8a17eb225c484c20f7ab6728f2a0f650061bc50c8a9601c04b0128e73c410ffe84dacd2b8bb37167aae5595728aa25e88c4c9b92 jruby-bin-9.2.3.0.tar.gz=97ee210157c451567946b38d33380051f82e7e8cb5f7649fffe050542ff6cd627e2c42f4c46739d1f0995c87e7338865b18844741285bf3f72364aa3c841c54c jruby-bin-9.2.4.0.tar.gz=9fe1506e862a17e261cf726e1bb70a9f612a6d7beda919a01405899660d1f4b79ee690ddf9aeed1d2b2f3cbd698be8df4f98d3815352772cc680e9646d721761 jruby-bin-9.2.4.1.tar.gz=2c41e7884cc54819da17ea9b2b773d05d3240d53a2ecb57ba430ab61308066eeb1bfbe6627e6c261f5f27ab5df7f5972656366a04a191a81b0379f620b74512d jruby-bin-9.2.5.0.tar.gz=d548eba8de420c80062021f5b6e6b203f8b7b36e3f11409919eeab87a028a18f9346f27d2cd8b1f33419adcc83fc804a36dbc3cee169ef1d93383b8f5835ba2c jruby-bin-9.2.6.0.tar.gz=20c7897da0d2b585616ea5848998fe8770517e24e16955797db2e5bff4622c348082628d304240a71a97e9551ef7aa63271cfb728eb5fb7e7d19bb48aff20d4c jruby-bin-9.2.7.0.tar.gz=8e71e27fdb149cb7470fb736e7ce858719d13ce6ff8a1e9ab1c1dc71fcc068fb601946bb28ed2feee3670b5e6ebfa8a655a6618d1badfc3763897912c41b1c82 jruby-bin-9.2.8.0.tar.gz=7f71fb5bc8c6c31b31b4c0430ae091871b21aa345777662f264c728c60212365dadb63a7a4b2fff31adbbf8a2e7cfa678d47486e28840f57b86cd45fe9354013 jruby-bin-9.2.9.0.tar.gz=7df33150858ddff586b3bd86120d4bdd80546c7f8e62245f61facbaa5527400a1aebbb33e4a1a8af52066487e3d29760eb96c7ecb9875eb9bc954ccbcb37a4d2 jruby-bin-9.2.10.0.tar.gz=f4ca024602ddab37154f5547132accb26e7c0ac2e913ebe1b5c7806727eb148249e76031ed4623ab53814beb8fb3f472e386f44d57adb5d2b3b00fb2773c8a63 jruby-bin-9.2.11.0.tar.gz=f736a9e139694c84d0a5ea42f36b972adc82c9be13e0b80bd61045c026e4fe31ccdd4be3dd3e94781c846f356e026465e41716fd2744ded2ab0ca39cd33bb46b jruby-bin-9.2.11.1.tar.gz=2f758fabf5910ea01e9c04c7600d9c666f2df3db8622f3eeb3534578075ce65013c42fe9ea6f95d4499945f795e6d566eed2b1545e149af823eb1d29167a1223 jruby-bin-9.2.12.0.tar.gz=1dbc5bb3814a6590f5e8ecf4889152684b5625fe81794a2c4064d598614a85129256002dcd239e294f209b98e3abaf9bfe70467fff48ef66b1531162dc6c3be6 jruby-bin-9.2.13.0.tar.gz=2cba016ad6a376252083122d51335610209d860c41de1902f5cd49ffc2f6b49c350b68df8fc4113c221255af4db7ec07980267b9888369811faf66db369e757c jruby-bin-9.2.14.0.tar.gz=ee3d17e875dd197f92744c7cba62320bfd3f166bbb2ca117f2910780a7c571779c0940e024351e9d4685ee9781dd207e773ace57a4a8a7011869c8b6209513c5 jruby-bin-9.2.15.0.tar.gz=678abfa7654b53b049e4103ae3647775d970c5a7192539378957c1731a3037c852e03f00a496c022c1c438d159a93be6e6f04d7563c811aeb7d261ced643d9e5 jruby-bin-9.2.16.0.tar.gz=f77e314d578a980071bddc25c65659d62e0644927ebc4e7d7d4523935b6c893e611d47ae7478a26ce7acff38b1525eac11b4a329188cdf76aeb07fab667d99d4 jruby-bin-9.2.17.0.tar.gz=e90ac1890a54a892b13adbbeab3cc5242889ff2a4b6cae535c0a3172072bda6ab01b960705ba608d6d7ebe9de5984d8384dbbb6399ab3b2e53a9e347e7849e1b jruby-bin-9.2.18.0.tar.gz=c5816ee0f7b0f559dac70ffc5277f85ae9c41ad176e43d277f820c2727387baba93998b915cadf9708fa78b5cdf3911a9c39c2ebb61a77a38dcff359f7d88a73 jruby-bin-9.2.19.0.tar.gz=3740674035e27cf7961b3570ad65536c30faab1c9a71a42a696b173379e79647411d57e0d1d06b5f9c9a970eb02a595a559191af08a083773dc4601dcfd07491 jruby-bin-9.2.20.0.tar.gz=1961f52f41e7eb9f50b0f382c8166ad988a6b3c0311c342658edb34486b073ed45c1ca5731aa319196db02cec208a4dfc86aa6b436959b80243bfa4f62629735 jruby-bin-9.2.20.1.tar.gz=598e28cbad682fbb30a9a9a9f708e6e1f4b7903300de2477e88a646c42ae594df5b768ff5379ed447f1a7168e93dbe35cc2d5db7087cb2228233a05bc4687908 jruby-bin-9.2.21.0.tar.gz=8f6cfc43ce3ebbd69781da71c5a70746ada090162bf6cb709dca41a6d968e6072ae62f657cb0bd471c648ff294044bfec3079828bdc410bd64758f76a93c3214 jruby-bin-9.3.0.0.tar.gz=06331ce32ee88aaad5e5bc0668d164ec3263f8ef3ed34bb32981b76ca33f8c817e3632550775706481094159f4feb43916ad1f9ec0f0775ad756b16cb7bd9417 jruby-bin-9.3.1.0.tar.gz=bfcbe6dc5ba736fc944af15eb387b545f6c5b987a7db88045913a02a1d30726c5d1255c4dd609aa7c2d2823ddf9d8360223b0575c93302aeef4c54eb37af9abe jruby-bin-9.3.2.0.tar.gz=b1777bfdf1964d7e527bb3dfc47b4b9e8c589cdb301c38ee8ee988bd0c392ca978ee3c1c24e4b5a65bdecff67d1bd96e2d8645e58ff7e891e3622097ea29e925 jruby-bin-9.3.3.0.tar.gz=648e70de0bda710e2dc70fd03c3dc6b798dd4c7b92584c54306c426f59ebe1168a595c4cf94328f6b44674f5507bee354efdb1cd73060b73b0171a3605051c9c jruby-bin-9.3.4.0.tar.gz=6b09decf412a76578179cefaabf01cc8740f70ab5324954e6aa43b1d8b81c37db7a99b1f94d6ced2b459f1c44c3086892b9a2c06b3ea838baf75a8fd5e0447c8 jruby-bin-9.3.6.0.tar.gz=f730522eff27462192808773cbd071cdaefae11f20bc808a8f22515a33960a730f3c87ec727ddfd9dc9b6b35acffeb50c31d75a4794a3f8daa75e1963ebd246b jruby-bin-9.3.7.0.tar.gz=265051c68d3b9dcce708b75f8267303ae84008859c88d7fe4f282395366c3f52fcf1bb161210555c0fd0a2427ff5a728ea9e337feea3d9b69559cadb2f300aed jruby-bin-9.3.8.0.tar.gz=12e795b7e1f14141bde68f52a29b0aa9f1db20515240dce83cffec351cefd25959579e01059d42dc8c8e4280493a70819d9beb1e0523e9bc10a72af16d9abd60 jruby-bin-9.3.9.0.tar.gz=f0b31d98f39a2bd4436764db0b0139433d6868bce7c30c5d6e3552616ba879c93478c499f3e4c884fd3728502916aed5c9ca1be150ae3e80ff47b36710c3f6df jruby-bin-9.3.10.0.tar.gz=aa36fd4c5de7b17f5fdcca1d1314d309e7b4470d46822c45baefbc0ad5180e5530a7054502b97b414352af485e7936659390690dc6198512ba6733d8f8d503ed jruby-bin-9.3.11.0.tar.gz=d9fd90bc64028dcc45687d2be51414b1561add20d20d1392525f4434cc684d505427f5e56827afffbbb0ce2c9cd7c1ef846b0bffa737679afb95d4c160232da5 jruby-bin-9.3.13.0.tar.gz=eb24641fb7a6b9d2039ec953388053e7333b306056f9a5bf745331b04cfc05dc4211a9b7780ce88bcee9184b8cbb219b574574d308bc2720547c116f4d4721dc jruby-bin-9.3.14.0.tar.gz=d9b02fc35133f71140cc7d891061f8190b61b3d1065f00092a2aa9a4beaf7d67297dfb0529691bd24d29607d698f39c62af9018e8307c1e6624c3104a61bb74c jruby-bin-9.3.15.0.tar.gz=e41521ebf453d6b6a9de937556fcaa972c60268285d0af4a41bfb95aad790eb47dd507e182958ca6f4889a0e03eedee0fa4bbc58e3d0407a2b6ba64a8b87a21a jruby-bin-9.4.0.0.tar.gz=fb72f8e087ea08653fa4e4225fa26694c3ff97c41f3deb8731cdb6571c6c9b21e0d8f69e2096f82ee81e2b5c283f912e2a5228c15873dbbd56de96a2ba35d59b jruby-bin-9.4.1.0.tar.gz=46003ef6192718a6372b79ebc89bee37957686224a08fe2f9a6be3c9e479784409d0269f0885c4d1f1351585c5d2cd31fd2ad45014e425bcaf2d44d66b98d299 jruby-bin-9.4.2.0.tar.gz=77e484ab73ece93e7d7283f876f0d541607c6080eee696b702b485be9794cf7e6d464f250a6d75387ee69aef3ba40ccf4f6d9fcfe324c5bc7a14376177ea2bb8 jruby-bin-9.4.3.0.tar.gz=2361f4bb2989f5951b0d3e9d49bf31e6805ce39bdc987ad3c6934daa98ab7c8e69763d40d7412ccef8adbbc198e52f4b83d00998ee12ac43fbfc6b5d88930c15 jruby-bin-9.4.4.0.tar.gz=e89dff0cc5b4a948daa95196d4bd4fee0c6901bb4aa023ae35b3679d9739967c2a74e8a4388b1835465dd39f1332a1f321b450b40c54ad2b81802645b4a31ca4 jruby-bin-9.4.5.0.tar.gz=06db948e5fa6f8559abd3b6891c7b4867b9f54b7bddf0e36d6f20cc1bfb394cdba8ea920213e545c927d1cb865e083cb1089c8e925bc608e0f8784a79b5d330f jruby-bin-9.4.6.0.tar.gz=ebdc671622baf3c42a988d6ebe24af6bfefa1f717f050f602a1b35909a3220316329aad080ee2cd9cd330da9428f8d736502573efa64bd70f093ccc123ab32b0 jruby-bin-9.4.7.0.tar.gz=4fc8b12deba7b8a53a523a41a31c248895adc9bd54a62664a27107e7205369af39c0eaa508a9a70611c3bb845524d8c5f39451c09b8b9cd87059ae15139703b9 jruby-bin-9.4.8.0.tar.gz=0d65fdfd63e2049ab3b8ccbcb4caaaab20aea5a63276aeb20ed4092191a8814f144425dd0d926aeed757ad6b4daa308a98fafe1bbd1647f3db44368066f61868 jruby-bin-9.4.9.0.tar.gz=1321e2ef5fdce909008ed764051d1bf9be0a4b8cb4a2515fa888c7c0ea48f0f4a2ab7b5c881633dba3d03449c6340255d9411a58836ed059f62d801d48565d1a jruby-bin-9.4.10.0.tar.gz=3396cdda4334552f2ca21c9123e709d72544e11b448d3091ec1a6e6f7beda2cde86ba4c15a4c0648135df34b558d254a96cb970f0a18d098126b7c5c2a2af019 jruby-bin-9.4.11.0.tar.gz=21ee47b4f6d1b6295f7f25cd74e559e6dbc8d98738d31f87c27ea657a740382e8c0e8156eafc8d270946311ebe22a7ce60d5c0499fb52cac7f9b120ed4495834 MagLev-1.0.0.tar.gz=8da29f16e08f657b0d2f147b64f2202ac027db26f85da8dec29f926898f178ac8d11260fd6c0a539a9b9b15eb92d8c7ced86a8cab1861ae7f8a33b6fa468e5cb MagLev-1.1beta.tar.gz=7122af70530e76b9a4cee93244d6872b49616e78086bc8a5db0f32d2b846560b352c4831addbbecc72e0e3158bd52f26c2da14f5d83a515ead30efe7c538b62e MagLev-1.1beta2.tar.gz=43b4b831791074f6e8c12f6fbe6ccec2bd0446dae029d3e6717cde1e7adca8462a2d7dc49c14112cb568b5b3adc8cd051767044b41d57ae51f38aca035ff8597 MagLev-1.1RC1.tar.gz=942c1cf43f1a911230aa43bbac1cea2e2e61b5e19af755e29a6a71139d66d304efcc519072dcc3487a2da7462847530564aff4a2159d675e3270cc938a297dd9 MagLev-1.2Alpha.tar.gz=2672e3e5425df2d2ecc49f85df5845fdb083f74a7b242cac75e33d0c1837079ced8ec8b273807326d08e7bf6f95cb4f1d8351f37af8bb38c4150e6292fc553dc MagLev-1.2Alpha2.tar.gz=4492ed58b6c2b852502a2195836f1db5a80f0619467e4d7b44981a993a5e9a9ea5c9fecf1198de1891583e334bbc3c3a86648ce8afea1137ae9c73a4d76b0f4a MagLev-1.2Alpha3.tar.gz=6290895b22efb986ffd7305b7d651f20a051ab6869d51310bf891fa3eed48526a8617b69f72793e8ac0b57f99bc5de75f34235ef94de967bbdcd51857efc2af6 MagLev-1.2Alpha4.tar.gz=a621e9c615ffec503910540db770754f29bab1646d8e67650d5b82413bd551adfb0bbbb8155407ccb6f80933bfe8ae1bf9b688eb0defbc88710308bde1325683 mruby-1.0.0.tar.gz=4a0f2927da3401df23d5c19ba566995f76775def3badbb14f16510a271e7b40a833fc61841f89d8adc6d57b5b12cb453708961c16a22133c092fab8ecfcd1e3c mruby-1.1.0.tar.gz=afa99a973e9c1b72a5a418d709c4aca08dc7449c427cedef5f12db4ccefb15e11a4fd1c23ceb7e31e49d4d2e602c0b1f9dcf2e0f6cf8ea3466f0b9bee23b53df mruby-1.2.0.tar.gz=bd5de32ba52b6642358752755329fa45a954082122a8983012930056c286ac328fb52fbdd11f34ff7c80af2c0e9a6348abcd5214602aca1150f2e7ae25cad1f2 mruby-1.3.0.tar.gz=13a57306706d2d60693151919ae15bb3621e6e7ed3b5e9c6d3b1c8d44e52b898c1ad394b39946d730ff82a19f5e3b7c2a374f9dcc3b6c6f990581e504f1cb9cb mruby-1.4.0.tar.gz=d2dd6e17c7f8e890ef5b6887538cccdea08a2376ba8f9a478d7d5c4377fd4c31a4af6323b1fc73952ef80e5a4778ca22eac3d724ce7d50b76770f7e614df7da0 mruby-1.4.1.tar.gz=2cbf155ba7819211b6410ea606c4d0db3adf4f47a4018ac45285ab3e32b94f280aa0af0936ead7233411957cfca62979d14bbaaf0d8f40521cba5c12272f2af4 mruby-2.0.0.tar.gz=8379f76b7a06d280e2a2552eec2975ffa3fe85b99028f6f7c009cd908f95faf3cd36a9975f502a5779559baf3c45a4297da0b6bcc038d213a0fdee851f9d01ea mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.1.0-rc.tar.gz=f310b385cbf80c6b6ab67e2a41b931411149639c0bf778799e3358d6a9a59f508f42e3faf72fef9e8ef91088d6184c445af7933a47e4e2b2fe114362d579bac0 mruby-2.1.0.tar.gz=da28b5a078e121c75edf62fc68fad6d5810212bd53a3424d4f585ffe5bbd09f652393ffea0f4b3ddd802e5fe178554dc67040c39c9d5069bdfad4ef22ead7e8d mruby-2.1.1-rc.tar.gz=97c9cc2c79a5dbf2f634ea08532f0f512f8af6ffb99ab4eefd83fc336ca9d97b943e76643971047b4508aaddb5e40176d6cc8fa39a17022455aa15d774eb5b98 mruby-2.1.1-rc2.tar.gz=13aa32a35bd5d8f02a9bfd08d17818dbae78ce46c8b0224a029f9f191cb64ac330eddf3871f4396b9221b987a91e4cd6f8933f59814ac0018155ec8454abff18 mruby-2.1.1.tar.gz=66f9b4bebb5a7b19f5cb1be2bd8b9bc65e4dbb5d4350d238ad5f947c9195fd431f2069f7334036ea63a750e9257e59ae1aef16ac99c7e1f4e17724cd1cbe2e50 rubinius-1.3.3.tar.bz2=8b91baf429dac60663d0e4da3152a60ec6e007f5d6c17ffa430876ec88eb87ade44efae90f2e32e238fd74f1b3d54e27492315f08e7bb073220b402e1e2d3163 rubinius-1.4.1.tar.bz2=928d12aa01a1d0f6c80175d67d3b1f8b9840f69f045c8148786612316421223f4cea71e3c373ee18a3f686b1457557ae547645afe758a99d21c4818dff47b9d1 rubinius-2.0.0.tar.bz2=5c81a6b8cf7b59e08c3b9353b0eb37ce985aaf391f5064df65ffb10f6d12b668287e4d4e61e2c6b560d9234c10f0b64bba74259f2c06f1dac488928544d4131d rubinius-2.1.1.tar.bz2=154cfa93ed59835814b8b974f6d738b049942fcc2b75095d21c87647d002c879fd55aa3d1ec95414b5b66eb9926c25a5c6e3e19a7c0da7dec6edbf434acb9c68 rubinius-2.2.10.tar.bz2=c2168e676059c197123916dd948b83e39bb96e99786bdcaef2e690936b761fedb13740b9f19883f991f1b475f3249ea1696213e8448c41ae15dfc14b3d4e1fda rubinius-2.3.0.tar.bz2=d0f3dd5e3b891bff2eb79b7810c6041e15fbbf0606c379f89575cefd829ac7a394b0c12ed3c5a4d452730797bc0a2c6c82646a19a078b56dcac7acad015a4559 rubinius-2.4.1.tar.bz2=7bcea320006b8cd3d122c407d89c325973a74c32456ba0b649657ac848f4682f2eb7455c13e3007709c22932bc2e1b65e2dd43fda0d3c9f993ddf8a74d1e2cb1 rubinius-2.5.0.tar.bz2=ac94d5bc11524e715fc24c1de33f4d358c2cd65e92fbb64c850dc8151d2a712d268227733c99fcffe298c3bdd6ce080c5e9553e4e8f3238868323498a9d10cae rubinius-2.5.1.tar.bz2=9315f76126d0aa754ee63b190385c24cb084f36293a99aa30fc482fd880d5393aabce361e09ff5514bc2540dfede8e179b7e9212b2dd59bd14ca2aa69d209a83 rubinius-2.5.2.tar.bz2=b48bd8d54a450441a50904b07c75c8d31b59822830a74c952720d6f8d2d86e6a27a84775e975ff2bf55bf3346f34e69d742f308933a9d8476e5e78109cb525f6 rubinius-2.5.3.tar.bz2=b923446d325dc3ce5ad28af9ee527607fae3259b85e85aeff97c1bebbb4520daf70616957b1c0ded900ed19e59025826dee66977c19cd2a2d4e9a0296811eb20 rubinius-2.5.4.tar.bz2=75b7ddbe218e4c92210dbf5a06eb8b3c3aa028d16146982a4e813e3af10a90d33f3e239f4508469c6aba17f02cb8bd10e96a204839975e06519869cacd456c92 rubinius-2.5.5.tar.bz2=a862146ddbbdcd4439eb64e78bfe6d09ae4cca540d19869618426d3f451544658713fe8eb7d46493785eb0cc721077e624293cc44d68eea3ef584967b43a18d7 rubinius-2.5.6.tar.bz2=9a0bdb5d77f80f163925ce409d00be3cee34871baae8bcfdb34c3c7545b92fd14102fecb970e42b3012588d299e504b724025f397a5a00e181ab75f1448e426a rubinius-2.5.7.tar.bz2=8048110b3ba4e5ff8c3f35282896067e1b1b46dccaf9ef4f6c9b6098782f27591ff59ccae0234fd7e881e3aaf17a0b420286b1b52ecd2cb672249655795a6982 rubinius-2.5.8.tar.bz2=23fca2f9747d2b0e544af890c3baacfb7b3a009cc59cbe653762ccdd827a6c915dcc57902d317fa1f7a81f8c12682f6c3a93195331b6de0f705b118e2e8c13f1 ruby-1.9.3-p550.tar.bz2=38767e98df25484f7292437f3cb0f798b3a43e9a7414a5401677e96ad1cc367cb3fa23ac3abe568d5bf2b2ca553713469a8770d41b79bc63daf3fa59cb4e15c6 ruby-1.9.3-p551.tar.bz2=5ea40f8c40cf116030ffdedbe436c1fdbf9a50b7bb44bc890845c9c2a885c34da711bc1a9e9694788c2f4710f7e6e0adc4410aec1ab18a25a27168f25ac3d68c ruby-2.0.0-p576.tar.bz2=e089cca4867cd9c715f4f37e40a1db9af6ba0c74b47e79568121bb980476f8877a87ccb848b973381edb4667c0c73165f5e1761f60db839e67f6326302dbd864 ruby-2.0.0-p594.tar.bz2=8301a51c73fb63a8cfeb14af47d0c18b5bc3c45e3d62fc2ed56a673a1cd6b0015c41f275e70eb14a9e40036b1530977199321e05285e107a6adf58514bef1b3d ruby-2.0.0-p598.tar.bz2=10026a04e01a8ad14ea9c99bbdf4f7d04029b73ee0c01bbf6c2eb2817332d49adacf127b646693b67b5dd7010eaf3b696b23b6335cc0f7ee5a6b56dbba0f6f82 ruby-2.0.0-p643.tar.bz2=453117152e6facdcd5bedaa9c3b1e349382bc5bc1dd3d650ec58b398cb9d2519a2822d05da10bcc5dbbb4f513fc5fef310caa3529d176fa2d453befb28e4d83a ruby-2.0.0-p645.tar.bz2=e9ca186b1cf0877cdbecd43dcab2c5161a53103e926609d5e1b769a4980eab4571bfd0951788b4fc92dfd9d10175b0f5f36ea2c7289e575a9db9b62c02f93185 ruby-2.0.0-p647.tar.bz2=3416af771ebb0b27ceacf23d309bd2a1ede832c2edf48a5ca46f0b0b84b2ab94fb6362a0c7fe4f77b21253539db8161ae26d23a78d1ba729bf03812454d93d04 ruby-2.0.0-p648.tar.bz2=609acf6d6352c9746e21cd7f0e7d29f5eb522e6fff2d5fad0431d63c568cc084ed5b7141f84cd33512d8213200d2d1a22e8d7df71469a980a3a92886133fea38 ruby-2.1.3.tar.bz2=9b48adb161e5e4550a71f61252c8edf59944affb82250babcb64240749af4b672e4a54ccd0feac5b36ea447a358b350b5080125ef2d4acf6e9e8b1ab82612f48 ruby-2.1.4.tar.bz2=68db1567751166c5e7d24b6e5015124b8a15568c50556e1f429486395352fa56c4a195a74820ab135697924149d014b445b345a1b9755678aaf824fba79c606b ruby-2.1.5.tar.bz2=d4b1e3c2b6a0dc79846cce056043c48a2a2a97599c76e9a07af21a77fd10e04c8a34f3a60b6975181bff17b2c452af874fa073ad029549f3203e59095ab70196 ruby-2.1.6.tar.bz2=75d58120b5f387bcadbf6d19e85624f78c74f81b9018baef39207214673f7ebc0700ab31145acd88b4071c896ba8e1302a29c90955bcf5f8c863634125022aa6 ruby-2.1.7.tar.bz2=f610d2dd6a93f0a5e84e04ddedf847bbcea5dd3289b3164cdf60be64f67a80dfd5f9836ea5d169970cd0ce24a7e05ea6190699706567cb0d5cf450de6a70e445 ruby-2.1.8.tar.bz2=7129c012bca7f0e7cfa51c73ba0898697f7a9f31abd5ae57d38be5b6b646fd80ab33be9b262cd3e2486c66f65aaf4ec6e881ae6e5a82ec9df62f00fa072510fc ruby-2.1.9.tar.bz2=a86422132e4c64007a84a91696f4557bdcbc8716fbfe1962f1eef3754ee7f994f4de0b5b7e7231c25057515767040d5c4af33339750b6db15744662e9bd24f38 ruby-2.1.10.tar.bz2=4b7213695416876e4de3cbce912f61ac89db052c74f0daa8424477991cfc49b07300e960177ff576b634a97ee8afef3c5aded5d5806329dbd01d0ce7b42b9b63 ruby-2.2.0-preview1.tar.bz2=2f1190f5d8cd1fa9962d1ff416dae97759d032a96801d77bc6b10136eba59dde1a554ff8c0c2d9ce0d3c1361d4dd12ad573b1266fd53b90ab238d8ce39e6b862 ruby-2.2.0-preview2.tar.bz2=c654d4c047f9463a5fb81eaea0fa5ab7bf316962bc7fb0fb356861e6336ce8ce2162c7779d8b27f72d7bc0e9604b5e5af2910abcb0b0a1f197b3138eaddfd4a5 ruby-2.2.0-rc1.tar.bz2=181201168360bee37dceeef3481a69e8a333a5d329680031fd9d371d30ac64460bbdf4db07546133024f541774e51301f1630cfd988c5e5bf2464834f3abe6bf ruby-2.2.0.tar.bz2=04edc53e8cd1732c3ca61ebeb1d6133614beb10f77f9abb80d8d36352fe8aa205112068e460bf600b2c7e81e0ddcc3b311e7e027c320366f1bd992b3e378a6ad ruby-2.2.1.tar.bz2=af6a8e75a66b953ff33ecbca5111bcf1c6560b6b48b370b700820fcbe91363146c5ac8abd670a14e693b44343ae598bab472ed2902834304c03ffcd9550886d1 ruby-2.2.2.tar.bz2=d6693251296e9c6e8452786ce6b0447c8730aff7f92d0a92733444dbf298a1e7504b7bd29bb6ee4f2155ef94ccb63148311c3ed7ac3403b60120a3ab5c70a162 ruby-2.2.3.tar.bz2=795f1b66a6d4f0baef897068899c3a1a4370ce1268618e6a7d6d4720234444259f371d1ba2e174b2f7580265e9f18eda3f295fbb087447aa6e8fb7a0f07526ce ruby-2.2.4.tar.bz2=d27ca2f19c214ce87f906b57edd41f2f8af35b2871c191470facded9cfda15ba46e5c3bc7d5540225a38da6bd65050fcc8aaa4ffbadbb6bf7dc891c1821da0df ruby-2.2.5.tar.bz2=d3224814361c297bc36646c2e40f63c461ccf5a77fea5a3acdcb2c7ad1705bb229ac6abbd7ad1ae61cbe0fefd7a008c6102568d11366ad3107179302cd3e734e ruby-2.2.6.tar.bz2=7a93f72d236521ac28c8a0bc0c73cf805797a8813d22e02f42c5fc05dd39f6e422817272e0db6a24c245f6f97ad4b2b412a9a47ac50156ab186df596918a5f34 ruby-2.2.7.tar.bz2=83756cd1c91516962b83961e0de59d858618f7ed3e9795f930aab4f199d47a95ed8f867d8aa9b51d508be26d9babf2140117c88241168bac41e6ef702cfadf20 ruby-2.2.8.tar.bz2=aa1c65f76a51a57d9059a38a13a823112b53850a9e7d6f72c3f3e38d381412014521049f7065c1b00877501b3b554235135d0f308045c2a9da133c766f5b9e46 ruby-2.2.9.tar.bz2=2a8c8770fda20a22b79c9115b6f468f8e7ea1092c84a5089af7a3122163e5ad298b493e6637e4d93ba02d899d8a619c94064dda8ac98cf3b93f64f45d5401085 ruby-2.2.10.tar.bz2=f8ec96c2a5f4ecf22052ee0b1029989ded52d7bf5d41be24fef67e732e76f72119302240bca08f0547510a9cd29e941a32e263cad9c8a2bf80023d6bc97b2373 ruby-2.3.0-preview1.tar.bz2=ae6d46c87f59e1fd3703b76dfc45bfcf208625f95ab9f4559f0b9f7050e8681f1a6e419f5fa06b704c83e56879c3a9ff1337dba443bcfca76fadb49c97d97a93 ruby-2.3.0-preview2.tar.bz2=e397f321d4338edba8d005d871408775f03d975da90c8abcfdb457a1bc7e6c87efe58c53b2c3bc122e9f58f619767b271bcc8d5d9663ed4b4288c60556e8d288 ruby-2.3.0.tar.bz2=77b707359e754c3616699d21697752741497c719dc3d6fdfb55ed639e76d52560d293ae54cbe5c63be78dc73fbe60f1b8615d704d017bdfe1994aa9747d26a6c ruby-2.3.1.tar.bz2=a8659b96a3a481a3dbdbb6997eb18ff1f8cd926a9707a90d071e937315c21d372c89252f0d44732ae5007d2678fda8c8fbceafa4e4b4ff500d236fb796284d8d ruby-2.3.2.tar.bz2=78699bae5b0a2382a58f9d51f7d891341f00ad3a90d9ca06b68b1b245cf5acebc3a82133e39bf6a412ac999a5c0f778a0dab177c2569ffbee085ffff6f6ec38e ruby-2.3.3.tar.bz2=88f7782effd35bfe0b4c33140b5eb147d09b63fbb35b9c42d2200c010f387e2b70984ead1eca86569e8ec31f08b35289d440c0ca76b662dadb760f848e863d91 ruby-2.3.4.tar.bz2=ad1f16142615498232d0de85149585be1d2c5de2bc40ec160d272a09e098ef6f317d8b25026001735261fd1c5bc0d1f8513a8474e89f0d86eed5b2fe7338d64e ruby-2.3.5.tar.bz2=3ecc7c0ac10672166e1a58cfcd5ae45dfc637c22cec549a30975575cbe59ec39945d806e47661f45071962ef9404566007a982aedccb7d4241b4459cb88507df ruby-2.3.6.tar.bz2=bc3c7a115745a38e44bd91eb5637b1e412011c471d9749db7960185ef75737b944dd0e524f22432809649952ca7d93f46d458990e9cd2b0db5ca8abf4bc8ea99 ruby-2.3.7.tar.bz2=e72754f7703f0706c4b0bccd053035536053451fe069a55427984cc0bc5692b86bd51c243c5f62f78527c66b08300d2e4aa19b73e6ded13d6020aa2450e66a7d rubu-2.3.8.tar.bz2=6d79e0d25757fd37188a8db3e630a52539bce7927fcb779a2ce9a97b9e5f330753035c16843552f1a1fb6c9a1e5c0f916b3cc8b5c0bfe81e20f35f8442e40ae8 ruby-2.4.0-preview1.tar.bz2=c9873e8686eb54dbde61d6e23cd5197beebccd6cb31fd12c82763ebe1fde17095d7514d9d93c2c82b238032c98691df5479dc2d666a8a590e0fc54450ec29cb5 ruby-2.4.0-preview2.tar.bz2=0c9a59a2f57a99c4ee8539a30f41da1de7547566203f89d856e1be9dbb44365754e6c470145dc9336eb324e0feb2f53d9fef18a1564968ac21f9ee528905949f ruby-2.4.0-preview3.tar.bz2=6602c65a7b1e3bc680acc48217108f4335e84fdd74a9cf06f2e2f9ad00a2fccacf9fa035a912bc9d5cc3f0c7a5e21475971dfac37b0364311ef3645f25c7ddf9 ruby-2.4.0-rc1.tar.bz2=b43902ac7794487197df55a45256819d2e7540b77f1ed4eb68def3e0473ee98860a400862075bafadbde74f242e1dfe36a18cd6fe05ac42aae1ea6dddc9978ce ruby-2.4.0.tar.bz2=bef7bb53f63fb74073d071cc125fb67b273ed0779ef43c2d2969089b9ca21fff1bd012281c5b748f7a3c24dd26e71730d7248c05a01cb23ab2089eb4d02115fe ruby-2.4.1.tar.bz2=1c80d4c30ecb51758a193b26b76802a06d214de7f15570f1e85b5fae4cec81bda7237f086b81f6f2b5767f2e93d347ad1fa3f49d7b5c2e084d5f57c419503f74 ruby-2.4.2.tar.bz2=1a5302d2558089a6b91b815fff9b75a29e690f10861de5fdd48211f3f45025a70dad7495f216e6af9c62d72e69ed316f1a52fada704bdc7e6d8c094d141ea77c ruby-2.4.3.tar.bz2=fb4339e30c04d03b1422b6c32ede45902e072cd26325b36f3fc05c341d42eea6431d88718242dcc9ce24d9cad26f3d26772f2e806bd7d93f40be50268c318409 ruby-2.4.4.tar.bz2=ae632852a5f413561d8134e9ef3bb82adb37317696dd293ef92cb76709ecd45718f14116ecce35b12f1c2dd53ccae8dabc7a924a270072b697512d11f4922347 ruby-2.4.5.tar.bz2=7034fcaeaee41f14bc0ecce0d3d93bd1abe95310e1a0b95fac66eaba867adfb2bf7ba4d0d70d67a15ce8df16052dee405c38cdb18987602e64a2f701d37d3df0 ruby-2.4.6.tar.bz2=292802984e5cff6d526d817bde08216fe801d255c4cede0646e450f22d4a3a81ae612ec5d193dcc2a888e3e98b2531af845b6b863a2952bcf3fb863f95368bcf ruby-2.4.7.tar.bz2=2665bca5f55d4b37f100eec0e2e632d41158139b85fcb8d5806c6dc1699e64194f17b9fe757b5afd6aa2c6e7ccabba8710a9aa8182a2d697add11f2b76cf6958 ruby-2.4.8.tar.bz2=2d7e0f5ad766e2a12a1b53ff838e6bfe86244ffb7202196769c25e9df6f71f3ccdd8605e7ef35c53e54310bc82caf6b368ad5111dd0a3ad70a3aae1a7be93f08 ruby-2.4.9.tar.bz2=d485444dcd025a261a16bd740dae63c0aa23e4138a095584e7a83aec47af34415c7d9cbc1313e92da2ec416b11bfddf20bb1a7b60c80f12906d11ef27409b3e8 ruby-2.4.10.tar.bz2=4d730d2d7cb96b002167ee358258f2620862a5a6d8627cfa5b49bd43c6e59c50c0f437b959d4689b231d57706ec7d5910d9b144f4ca1c1ed56bc879ed92e8a59 ruby-2.5.0-preview1.tar.bz2=2d39ef64aaf7a52014905f4ad59b53e83b71433e50a9227f9f50cbb7a2c9a5db9cd69fa7dbe01234819f7edd2216b3d915f21676f07d12bb5f0f3276358bce7f ruby-2.5.0-rc1.tar.bz2=bf0eb114097f9e505ff846f25e7556a2fb393573b4e8b773f94cf5b47998e221f3962a291db15a3cdbdf4ced5a523812937f80d95f4ee3f7b13c4e37f178d7a7 ruby-2.5.0.tar.bz2=8f6fdf6708e7470f55bc009db2567cd8d4e633ad0678d83a015441ecf5b5d88bd7da8fb8533a42157ff83b74d00b6dc617d39bbb17fc2c6c12287a1d8eaa0f2c ruby-2.5.1.tar.bz2=82e799ecf7257a9f5fe8691c50a478b0f91bd4bdca50341c839634b0da5cd76c5556965cb9437264b66438434c94210c949fe9dab88cbc5b3b7fa34b5382659b ruby-2.5.2.tar.bz2=9f9388a162a3ae9c14ec8999fa3b12ff5397de14f55996cc8761d21c757113db37ace4d326b9606de7ad3a5875aa94fec900dd9b81b2fb0dff558c39422f4aa1 ruby-2.5.3.tar.bz2=6fe89fe9d406bb454457442f908774577369ab2501da4fd15725ccbab77675b88faad739a6c8ad1c7b6690b439a27de5e08035b7546406cdeca65c7b295e2c77 ruby-2.5.4.tar.bz2=3c4f54f38ee50914a44d07e4fd299e53dddd045f2d38da2140586b8a9c45d1172fec2ad5b0411c228a9b31f5e161214820903a65b98caf3b0dfeeaabf2cab6ad ruby-2.5.5.tar.bz2=1b56aa79569b818446440b9f2d13122bf7c2976ab9b2865f5fb62d247d7768dd4ac5b5e463709ffec0f757bff7088afd293c2a8c5349c3780763b6444bb354a8 ruby-2.5.6.tar.bz2=e4511d42d19a7bb39ea79f66bb4eca54b63c2a9d27addc035d6d670c1e59ee48a0c6e9c6bc7d082d1f1114b0668831dce3b7422034517f3c4a06ced0e47a7914 ruby-2.5.7.tar.bz2=7d6a7d41b4f3789f46be5f996099f3eb8321aa4778b2a8ff44142654e769ba4ba2df127dd0f267547e4c8cd6ff46364f18e79838df54fcd7e3fb714294ee0099 ruby-2.5.8.tar.bz2=037a5a0510d50b4da85f081d934b07bd6e1c9b5a1ab9b069b3d6eb131ee811351cf02b61988dda7d7aa248aec91612a58d00929d342f0b19ddd7302712caec58 ruby-2.5.9.tar.bz2=12f58e14cfa6337065b0e82941e39b167813920eb54cbdb4ac4a680dd0cb75d2684d341059e7b4d0da1292bfc4e53041443bd14891a66f50991858b440a835c8 ruby-2.6.0-preview1.tar.bz2=d9cb270529a97670d54f43a0236fab072714e715c39277dab70b7a1843ec818e6700e47e1384c7256f9e0ae41ab2c0b768a0de38a5ecf4f4fff5da6ef5ad4944 ruby-2.6.0-preview2.tar.bz2=3872227e9b1c97c206d19bf1e6ce15a38ee15a26c431b4436605dea67affcf16372358984df76b35e7abaa902c15c16f533ac7af47e3031dea9451bbe459b693 ruby-2.6.0-preview3.tar.bz2=d1693625723796e8902f3e4c4fae444f2912af9173489f7cf18c99db2a217afc971b082fce7089e39f8edd54d762d2b4e72843c8306ed29b05ccb15ac03dbb5b ruby-2.6.0-rc1.tar.bz2=cbd6281b2aab6fbce3f699c1ab57e5423304dca7a547a0b3cd4e8e980326dc7b85b2ca2bfaf3f3a648d40f4222fdf1740d81d422790ee7ae1ba1ed33eb11e3e8 ruby-2.6.0-rc2.tar.bz2=9bfbe83fd3699b71bae2350801d8c967eb128e79b62a9d36fc0f011b83c53cab28a280939f4cc9f0a28f9bf02dce8eea30866ca4d06480dc44289400abf580ba ruby-2.6.0.tar.bz2=ca3daf9acf11d3db2900af21b66231bd1f025427a9d2212b35f6137ca03f77f57171ddfdb99022c8c8bcd730ff92a7a4af54e8a2a770a67d8e16c5807aa391f1 ruby-2.6.1.tar.bz2=fc41429491935b89532733b95476ab9f8a4efc310aad8f4c2bd3b68fba08fd7b6e9ac84c6c88ca892022d1ba76435295f3299ea466f9b5453c07d41cb539af59 ruby-2.6.2.tar.bz2=cad678d2ced4085e99009e4fef83c067dd0e6ead27a8695bc212c0e5112a7fa09ceb27f82638faf91932ef8bdd090f844e0a878ffdf6845a891da4b858588aa0 ruby-2.6.3.tar.bz2=c63c3f527bef88922345f4abb4b9ad467117b63f2132e41722ea6b4234cec3446626c3338e673065a06d2894feee92472807c284cbe613a442c8fda234ea7f88 ruby-2.6.4.tar.bz2=a9fa2f51fb5f86cd8dcaa0925fe6f13d4f19f110b5d4c5fd251f199d16aaf920db39ad3bb50460eb94ab8d471ab2ac8bb54daea4a3bb080eaf45250aac3437fe ruby-2.6.5.tar.bz2=28e0b04ac8ca85203eb8939137b5e5de4850c933faf7f62fc69648fe1886faaabf6cdf48382f9d9585c1720876d10b41dafd33efaeb23341c309917fbd8a6e21 ruby-2.6.6.tar.bz2=001851cf55c4529287ca7cc132afc8c7af4293cdef71feb1922da4901ece255ec453d7697b102a9a90aef2a048fe3d09017ea9378ab4a4df998c21ec3890cdbb ruby-2.6.7.tar.bz2=311ec56d23d0de7a163f66c1ef4e5369b822f8409f8e1f3a25785c803f01c68dd13aa8ddcfb3a0fe6a97bf321950f8d6cd75b2babcb04158e791601914666f7a ruby-2.6.8.tar.bz2=51806d48187dfcce269ff904943dd008df800216ad4797f95481bdeecc2fbac40016bc02eabfff32414839ebb2087511d25eebfd6acead1a1d3813be6c10edf7 ruby-2.6.9.tar.bz2=ff067ebc059094c0a9a0debf54a37aad2c85f7ed47be59299041c9c03a7701529f5063ff32a1b8c56d48ee8585015acba63602ed0176b2797d263d43d67aa241 ruby-2.6.10.tar.bz2=275a0f329641e6c3d3d3c33ffabf585195187eb3baa4fb1dfd35999fa0a80bd5925943fa2711827ac00dffb6c9a1deeadabaf2e9ee401d56926fc167db5ae4a4 ruby-2.7.0-preview1.tar.bz2=a36b241fc1eccba121bb7c2cc5675b11609e0153e25a3a8961b67270c05414b1aa669ce5d4a5ebe4c6b2328ea2b8f8635fbba046b70de103320b3fdcb3d51248 ruby-2.7.0-preview2.tar.bz2=7066ececebbbba4b2933ba1a4f70cdef373169910802259a3e52b4fc144ba298f3cffda4be5fe8a7be8ef769ed43076fa046a9ac2c13bb733475b9852112c6f0 ruby-2.7.0-preview3.tar.bz2=5d8e99e3fd984c7d05c0bc483e1504e81ccdb920cbb2d78cad3c314e197b30316b692fd0199f836acac41246e3a713cb81dc6dd64c27cba56f807df4c193db1a ruby-2.7.0-rc1.tar.bz2=b5f96227775f8bdf19f944a555d0a83d7e84b37bd31fe4b8ac008a3272b1a28a4d94abbb1b5570ee32ec0690ba9d476b837a020a5194bee14bebf6f0e768bc79 ruby-2.7.0-rc2.tar.bz2=9010f72bb3f33b6cd3f515531e6e05198f295bb2a8a788e3a46cdfd776a9f6176b6ba8612f07f0236a11359302d2b77fdecca1dc6be33581edbb028069397a0a ruby-2.7.0.tar.bz2=8b8dd0ceba65bdde53b7c59e6a84bc6bf634c676bfeb2ff0b3604c362c663b465397f31ff6c936441b3daabb78fb7a619be5569480c95f113dd0453488761ce7 ruby-2.7.1.tar.bz2=4af568f5210379239531dbc54d35739f6ff7ab1d7ffcafc54fed2afeb2b30450d2df386504edf96a494465b3f5fd90cb030974668aa7a1fde5a6b042ea9ca858 ruby-2.7.2.tar.bz2=f07592cce4de3532c0fa1c84d53a134527d28ba95e310cd3487ac321c49ee680faeace285de544ee6db432a90aa7538a1d49ff10c72b235968ca362ef9be621d ruby-2.7.3.tar.bz2=e9236138be3e61380140f2e0d42f8fb82ad8f5219d454de2f6c2ec546bb208acc8b0f2020f23e6446660d2b3b9ae873cdd8298471f166a5f1efba8e80b05e746 ruby-2.7.4.tar.bz2=f144c32c9cb0006dfcfa7d297f83f88b881f68c94f0130346c74dfd8758583a68d22accfd0fc9f31db304ab5ff0bc135bfb2868145c0dec1ee6cec5ac6c3725d ruby-2.7.5.tar.bz2=0aa2ac44bc22859a39c43d08b7c7f457df05c2dc36b2574fd70ca399143ef1000dc5e496212db9eb055bc4258523d47d26db3c57a1a5a5d63cf1b3de9f81645a ruby-2.7.6.tar.bz2=4f7f3624afc43da25ebf0f01d5a2f92f72f94bab7423587cfd3920e089b479bf559b159adf2891b996f7e6a98c008a4f73a4a2170e2f8619417660ac1ab24bdc ruby-2.7.7.tar.bz2=24cc772ac1b56d3bb423f1b33716f221bf534f3717a506bf8235a698f8a454db7d79d94ae9a84067153c2f737b3f8f6085f34e36cc04be0d75ae2fdd57718870 ruby-2.7.8.tar.bz2=3a9db8d9e79318f869417f2ebf3365907febc0d1428116eabf3253c51d8420f255782b32fa30a54802b9f5f4187fad80dab0611cc80436feec84db87b0456ec6 ruby-3.0.0-preview1.tar.gz=b94892951f842a1538f4b99022606ac2c0b5031f1ede7eef3833a8caa9ed63e9b22868509173bfefb406f263c65211db75597b152b61f49e5ba2a875fce63a27 ruby-3.0.0-preview2.tar.gz=6fa4191425ae71e41894b60bd9c31d483a562ee8216886360ce18238ab48115b95be0367708612c45f634e7584fba8940a524ba0113ce0f36ce4df78a112d0b7 ruby-3.0.0-rc1.tar.gz=798926db82d27366b39be97556ac5cb322986b96df913c398449bd3ece533e484a3047fe35e7a6241dfbd0f7da803438f5b04b805b33f95c73e3e41d0bb51183 ruby-3.0.0.tar.gz=e62f4f63dc12cff424e8a09adc06477e1fa1ee2a9b2b6e28ca22fd52a211e8b8891c0045d47935014a83f2df2d6fc7c8a4fd87f01e63c585afc5ef753e1dd1c1 ruby-3.0.1.tar.gz=cb81db2c9b698cf8159b2ca6507f4c7f171e4eb387f5730c4b658ed632b7900a169808e6fbec0ee80598d937030ad5d9c56b63a2a339373ec5d9e1c06b7661d0 ruby-3.0.2.tar.gz=e1fba6f5429b5fca9c3f52a32535615fcf95fafa415efc71c46db4cce159f249112c01574c305026be5c50140335696042e47a74194caea045acbfaa4da738cd ruby-3.0.3.tar.gz=39dab51a0d784a38302372b99f96205817d466245202586d22123745761e9cb39db128ec2b984ebc3919b9faf2adf828d19c97d3fb1e56d44be0a81dc5d11b87 ruby-3.0.4.tar.gz=0dfded6826063c1b39bf625a6e13b46c109cb160c8648b78f0965f70e7c7a1a65f1c117fc8f2cf8bdb34d7cbf79fecf1f45d169d2323406d66ab27b18bde1d22 ruby-3.0.5.tar.gz=ea45fcd2ca53b87f18fd8696d00a1e340d2495443216aaf87d3f643cb5bd8bb614a1faacd82d07e7f2b72172397c728316a82d7c34a7b4566191268ea517ccf7 ruby-3.0.6.tar.gz=d596bfd374ae777717379b409afe8ee1655ade0c0539ada7a10af4780b818efe25a28aa50a2a7226741d1776d744e10ad916641f9d12fb31c7444b0a01d0e0cc ruby-3.0.7.tar.gz=66e5116ddd027ab1b27d466104a5b440889318b4f2f74b5fdf3099812bf5f7ef77be62fe1df37e0dc7cd5b2f5efe7fee5b9096910ce815ca4126577cb2abfaa7 ruby-3.1.0-preview1.tar.gz=63f528f20905827d03649ed9804e4a4e5c15078f9c6c8efcfb306baa7baafa17a406eb09a2c08b42e151e14af33b1aadbd9fb1cc84f9353d070b54bbf1ff950d ruby-3.1.0.tar.gz=76009d325e961e601d9a287e36490cbc1f3b5dbf4878fa6eab2c4daa5ff2fed78cbc7525cd87b09828f97cbe2beb30f528928bcc5647af745d03dffe7c5baaa9 ruby-3.1.1.tar.gz=a60d69d35d6d4ad8926b324a6092f962510183d9759b096ba4ce9db2e254e0f436030c2a62741352efe72aec5ca2329b45edd85cca8ad3254a9c57e3d8f66319 ruby-3.1.2.tar.gz=9155d1150398eaea7c9954af61ecf8dfdb885cfcf63a67bbcf6c92e282cd3ccac0ff9234d039286a9623297b65197441438c37f707e31d270ce2fe11e8f38a44 ruby-3.1.3.tar.gz=550cfda2ae492312009a58316e18fd77ea92852718b37443bcd76aac84ba6694fb841fe19bf23bee099f96f5aeed9d03e77c8c02fb194e414eca5f707adbbf90 ruby-3.1.4.tar.gz=41cf1561dd7eb249bb2c2f5ea958884880648cc1d11da9315f14158a2d0ff94b2c5c7d75291a67e57e1813d2ec7b618e5372a9f18ee93be6ed306f47b0d3199a ruby-3.1.5.tar.gz=23661cb1b61013d912b7433f8707bbcd723391694d91f413747c71428e74f8c7385c1304de7d08b70c9fa3bd649e4eb5e9acb472d89dc2ad5678cc54855a24ae ruby-3.2.0-preview1.tar.gz=d24e77161996c2085f613a86d1ed5ef5c5bf0e18eb459f6a93a0014a5d2ce41079283b4283d24cb96448a0986c8c6c52a04584abd4e73911ea59cefeb786836e ruby-3.2.0-preview2.tar.gz=5e9ddcb1a43cff449b0062cc716bfb80a9ebbb14a1b063f34005e2998c2c5033badb44e882232db9b2fceda9376f6615986e983511fda2575d60894752b605cc ruby-3.2.0-preview3.tar.gz=860634d95e4b9c48f18d38146dfbdc3c389666d45454248a4ccdfc3a5d3cd0c71c73533aabf359558117de9add1472af228d8eaec989c9336b1a3a6f03f1ae88 ruby-3.2.0-rc1.tar.gz=798157d785ebae94cb128d3c134fa35e0e90c654972e531cb6562823042f3fb68a270226f7b1cf0c42572ef2b1488a1a3e44f88389ad2a6f9ca4b280a2a8e759 ruby-3.2.0.tar.gz=94203051d20475b95a66660016721a0457d7ea57656a9f16cdd4264d8aa6c4cd8ea2fab659082611bfbd7b00ebbcf0391e883e2ebf384e4fab91869e0a877d35 ruby-3.2.1.tar.gz=f8bbff5e237b501f4042ddc70a19ac1ce74f72f147c90daf7f3007a940136abde37c12a0f7444f713ede09ba847c2cc2897a1742823832e3dc8cce80073164e1 ruby-3.2.2.tar.gz=bcc68f3f24c1c8987d9c80b57332e5791f25b935ba38daf5addf60dbfe3a05f9dcaf21909681b88e862c67c6ed103150f73259c6e35c564f13a00f432e3c1e46 ruby-3.2.3.tar.gz=75aecd9cf87f1fa66b24ecda8837a53162071b4f8801dcfd79119a24c6e81df3e3e2ba478e1cc48c60103dfaab12a00cfa2039a621f8651298eba8bd8d576360 ruby-3.2.4.tar.gz=b695b98dac7bb2c8755a106d949cb1b1b91551092fad263765171ddf8a4d86585259ffab5f7cc9bace70143d645dbe5932cfc61c6dba7817177de391d76bcd79 ruby-3.2.5.tar.gz=d86c0151fabf21b418b007465e3f5b3fd0b2de0a9652057fd465b1f7e91b01d00f83a737e972ea994a5d9231e8cb27e64e576852390fe6c2ad502f0d099fe5f4 ruby-3.2.6.tar.gz=26ae9439043cf40e5eddde6b92ae51c9e1fa4e89c8ec6da36732c59c14873b022c683fb3007950d372f35de9b62a4fabbbc3ef1f4ef58cd53058bd56e1552cbe +ruby-3.2.7.tar.gz=174e70ac20a21ea77e2c5055a9123a6812109fd7b54c0f7b948312b8159eedbfb11c06120390c158430ca8543e36893da6c809883c82757082d22e08004c5055 ruby-3.3.0-preview1.tar.gz=0f891f140ddc6372aa7c4459f8784126e0c341db7b80e72c51e441c5153c43c2d7b965f7807c076862ac84b9b8b0c6a66bbf66fc341746016151397bb21c782a ruby-3.3.0-preview2.tar.gz=1c5a13e519e8487fd40d932b96d14fa729521925c288e7841ab5eada628e506ceca2605bae36eea1aa505d9253383d53cd933b7a4bff96e6de5b1130c7c558e6 ruby-3.3.0-preview3.tar.gz=94db07a6958c09809b2e5b597fa55a121074e8bacb3bf588c83cf0d35b07a8b070172035a49d1abf0d8ee364a9ace824f34e677f7327ffe1acdbab0938ac49c4 ruby-3.3.0.tar.gz=26074009b501fc793d71a74e419f34a6033c9353433919ca74ba2d24a3de432dbb11fd92c2bc285f0e4d951a6d6c74bf5b69a2ab36200c8c26e871746d6e0fc6 ruby-3.3.1.tar.gz=0c8ea922a79152ac7adbfb2541320565bce6a631692fd39d499a06f53ad6339c16fad8374d171351ed63f7bda3312b26d4f8c058c5b6df3d7548fde372c718f1 ruby-3.3.2.tar.gz=a15ba8d6c2830fcd1f2b36f671acf9028c303ec78608fd268da0585db8e95ddd971666e8029bcfa2584da2184a6534e1f2f2da07fa7ca4494e8d842eed206f00 ruby-3.3.3.tar.gz=0388a96127eb6e53b836f7954af51ff62b84cdb7abeab823cb1349993d805b151204e426b9ac04ca8333fbd5e01c386d58bc37d34c4e9286b219dcda7542a150 ruby-3.3.4.tar.gz=56a0b88954a4efd0236626e49cc90cdb15d9bfd42b27d7fc34efae61f500058e58cb32c73fdef5f1505a36602f4632d6148bf3bd1df539cb5581ae157c78c22b ruby-3.3.5.tar.gz=5c482059628ef9de5d8a6ad4751f8043f2fc2b159b768265be7f3ee0574ad51d9500ee4fc9146c5978fbd51313039c3de39e7b7a4dedc9bcd5d09a41a713f1a7 ruby-3.3.6.tar.gz=4ae22f5c2a1f7ed84aab7587ff04ce4d9933cffe4347deaef0ab88d22c9780f274c1664a4ee1dd8235bc3cc749be828ffa8db7cb5f5002339a59a599acf3c729 ruby-3.3.7.tar.gz=9b48be05d1210e9194c8a6d77dfc3227599bff2b55fc9bb2049b11547927deef530ece9a2a505600cdc492c8517b1bef7ab5f2520ebd79ffcf76f0a734fa763d ruby-3.4.0-preview1.tar.gz=29c0e32179f7b823b6708f5328e495cd333fe8dd88f7df7d9051deab47add67b14d899bba565bba1a77e1b04c9693d9708541445c112925777bb6891cb7b2b62 ruby-3.4.0.tar.gz=bc70ecba27d1cdea00879f03487cad137a7d9ab2ad376cfb7a65780ad14da637fa3944eeeede2c04ab31eeafb970c64ccfeeb854c99c1093937ecc1165731562 ruby-3.4.1.tar.gz=93acc262e3b7cf86aeddebdad5b8938c187b9c44a73b0c252b6f873745964001459ae45ece7376745916e317c24895596a42b4544e836670fc6e90058e6f0de4 rubygems-2.6.11.tgz=3b0dd38c0aaf313c59e299dcf54f7bfb6e6d84b8b739573ddaf599e584da45ed7b1465f6521131b32f237e31a4796d9ef455b8be685064b3fd77a0355dfff13e rubygems-2.6.12.tgz=ebb672488b50f5fc988eab66ab14ce8e887dcc635f71239a85e32fbf1e919ca70196eb4d3f2fee3486cace7064bab0b8b08339c754b723198e1b0b0a0984ab54 rubygems-2.6.13.tgz=c952b6061a9a0778db304c3aa5bea693e71ae2564abfb19f8b123eef66eb1e3877fc7c36f4f1527da97bb320870cbfd4574ac57ad88e850a44fadd67ebdac152 rubygems-2.6.14.tgz=7743845bc5265df3782f85a23896cbb250d8a2bbc9934a27f274b001afa7aa62f7f00f616296f74747ea612d2cb37dd7f533c931aa72550d84c64d2a73d60daf rubygems-2.7.0.tgz=0bd08fbabcc33687c98365ffe6794ca2a5e82160b0297479d4f19bd899d176b7f4efb95248898b26d873f9fc7d86c10cada6e40cdc48738b0bac261c3aad261f rubygems-2.7.1.tgz=fa4ea123760b03b8b8e8ececc55c9dc34249073fb267d310bd903aa7a613267e5d27990bbf28e32c9a746bf884af8a84a0dc202297272f9d477f7710c21bfb60 rubygems-2.7.2.tgz=0f48c6e46663780a571c7ee0e6e772f2e18a755031e7dd8ede7870f238c214b9e3e38153b1ae8f1f78a9aad63c1a079b86573b3a25c57a600d842bdf92b9c4d1 rubygems-2.7.3.tgz=2782331b31947a23f85b285a3d5e7b66e34fe5847bc84dca4f1e6bfe33ce187ab0cbc814229de8111aa19490b656ca78b7c821e4ea6b425449991c01371b7565 rubygems-2.7.4.tgz=90f72a46709ef847666a6a23eecf24521abd5c294b2da8a246bb4c7f85daf4af39a0634fc8093c7bb7ded2ac137ea27fac5ed94af3b70c49e78594285c7a40ce rubygems-2.7.5.tgz=86957f1c438070135df527a15102e40487fcee93a55251463095e4c8794a8616d16ed9bdead0e0ef83c44806bd5016ecd9e178bef608b66af2e68e2c9c49e941 rubygems-2.7.6.tgz=bc168afc40c974dbc7c37eb5678432ba2ed7469c3f007a159699467ff2cff5205c508237193ee8becaa6eb555b043969cc5f92b2aaa6bf7c958dd7c187e258a7 rubygems-2.7.7.tgz=f93b7eacf5ef8725c40d618daf9deabc7e9eed74b3b7f13ecd16f89205fe24958e782314c52f8a8fe3205b93e20b830b4fbf7ff8944ff1cf56feb7de2d773252 rubygems-2.7.8.tgz=3d1cf68377dfcf102028342258aaff5a7257d2d2b34a80508c85aa258d810add46e65a157f902c271b0b7b568c437372d17246e89cd88f8500e47c008d17f1a6 rubygems-2.7.9.tgz=5f699f47bc24d8ffd4f8f44a509a9df71fcd945ca2574dc9d5050bfe06a44830a368f45d204112d7a4f1877e1600a6fe4d1b6b68f9a55288664667b4220a7d72 rubygems-2.7.10.tgz=48a18c0f202f463c38cf5dafecfbc7cc39245e63c7a059ef2cefadda478483794a929ea6b7e0ef062dd4423230746f1f09d7bec06a97fe3ceccc3325397a3e71 rubygems-3.0.0.tgz=047f4d446aae414e4803517088ef47d5cc66319ff08a3795c6d69e83eee9f3e7c3b05419858f7e5b6a8ec224990ca01178a9259961ef2d7ab737bac352a0f18d rubygems-3.0.1.tgz=dc29ad51ec67b1dca82a23973ea92153482788964d0755bdcd3c650116915c461c6e5fb1c826be3ee04a497fec4ac2826904bd406f24611e77cd8c9eaf4d8729 rubygems-3.0.2.tgz=90b46c2cd4f8baee74eb488a40691cc00e754cefc42029d485163d6ad7782df78ba5cbeab08eec6a4f71febe0f6e635e12a9381393008c58eb5e16396df93fbe rubygems-3.0.3.tgz=1dd585243341901c7b4cc60a4902000c10ce57fe2cc9c28e27e274a2e6029f936cde1c99d7097c93c2c5b2c8bcee5d692c8fe5cc00c996a040e4954b674e330e rubygems-3.0.4.tgz=887c64226ec0b32d33f2ea331936683406d54dc74d19e658a23521e25ab50aa23534fe9eecaf696154247ad1df1d24c233d8900b9aabc79096eebd6afef3f775 rubygems-3.0.5.tgz=f5a97cf67d7d043afba7c1aed014f1b64ff6376ea74d3d6533496bc5ca9742e0ccce1a157e6f67d8fcbe59d8e34bbfbcf4ed8be97acf2970603de6381043cb78 rubygems-3.0.6.tgz=1ef1822a2b19790a36a6d242b7d4584222617baa27787ec58961a9cfeb2733f19f9085490ffc72ee375d3153c7114e050c42e68fc8039e727fe5961b09365ee5 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=5dfb040b746e462c297ebcdf84e0f07cd74b86852055dcf0a7cf1814112099bc674bcccd94b03726aee76b253c9345a45d046cbfea230647644f0fd6b1c1ec96 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=17983c442c54d19196be3626e25c64f5474139c0b973624832ba8730efb047bc747c02e59c82f38397bf012c63ab83f79a9c1b64311cab796f08fe96d7d12a1a truffleruby-1.0.0-rc3-linux-amd64.tar.gz=b0b57082d61317911f101da617333d81ee6bede6b6e18f9bed86544dc413339c830198d90cad7ac94c0c8fb690adcfc559dd9f530abb70507ff6a76eee552b61 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=18f9782de56269389320ddad779ec69c168909198d4572e2ea4c18bc8082a539569a76760a6a6da58722fe08d77d83904aaba14baf4075a2833cbd2efc45dff3 truffleruby-1.0.0-rc5-linux-amd64.tar.gz=134d9ba5db7b8a1960d3a88390cd6f7503a0e8565094fb127333d122cd773bfbf9dc976c659029007e6fb68e93486293bac2ee29ab21dae9cb0c06ba57dd2c72 truffleruby-1.0.0-rc5-macos-amd64.tar.gz=5804f1f27916176f5a270de8aac85bc48c38ba37c4e719b09f5777e5c42429271819378cfe096c3cc33d406cd0726f2e37658020f97a438fd53751019831569a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=2597b375f590755b851d3b8cbad3eeab4c965eb02d0c944044f57e39f6c3db1e2f513e2aa55db789e4a885c697f81ce5c8bdbe9a7e44ee30fc09d234e44fb512 truffleruby-1.0.0-rc6-macos-amd64.tar.gz=2eb177190de0408dfdaf30264132955d1db7783ddfb63880d97d5933f66c5662794c3bb6198edf230fbff348674203e61f7f5481e74ac875974467f2f128e939 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=ab3a3dc19f903e68e36b135729693fa025a7c1950139277255e48c972387ef8399beceb3252ac37cc70c0df92838f8a0ba8c45f53665ac4286ef23f9b240806a truffleruby-1.0.0-rc7-macos-amd64.tar.gz=b8423f50a5292e211db7ebd7e2b987fd5c9eaaf34eba86b0644d2716a7f068f2e56deb4357c516b87b437e64fd5ce8515bc181165cc1042c6763f27d71baa59d truffleruby-1.0.0-rc8-linux-amd64.tar.gz=bcd05d304ee9b4da97193575fb1ad78041a0c7710bb444af6aef12ab4261b1873f472175ec51a187a5e99da481d66b81a132fb691643b793e87d655f31d54657 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=2c758221793c38ca8af1831a5d9f3abd555c406569508ac3a86d3c1ea5baeeacf65abb6e904ed3b1e58f555f51bc85ab171135ff4c3d0e08cdae994a861cbda4 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=42e60b69957f77a8623e0dccb7d215e800c27c622364fa76b9c574e8b1d3a4056a058b61ed91eac2375ecf4e51e482a6e17550aa2894a44d1db70687958033da truffleruby-1.0.0-rc9-macos-amd64.tar.gz=18556ee8d2fdec6907fbc8fc33d8b32ea0c58d40ee3df084ffb233e2fcd3a514a553f97c31dcc25dda3f86b1b805ca5fe3c9bf8cb078b92325515f09db6b88ba truffleruby-1.0.0-rc10-linux-amd64.tar.gz=10a7cb1be6214347469d5797091f73c3d7824bfb32a47c13566573a383380b1df9b79b7901ce0fa3af1c97285c90afac21e2de7a66ed88d9495846743b3b25e2 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=53f0939d9d8c3470cb79316d865b765816032528d77a3cf497134f3aa667a6253ae037410801261a8e7d0628198ac5f6aea5ecf9b7313f06ccc1d5e9f94e74ea truffleruby-1.0.0-rc11-linux-amd64.tar.gz=f89bc9a3310634d39f68006307da0b0ddafae036089bdd663e8372777a9562d201a4e69b2e1a602cff5fba6c78a8d4861b6d1020679bd0c72c71b938a4f36a27 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=3f461c12fa9fa57a55cc390eb9887df88f404661a77bffb44f82b4c7e9021513a6df9f6d5f332a36ce0c28ae7e3d5afbbe15cc4b814bc7f86dac2e5ec280f947 truffleruby-1.0.0-rc12-linux-amd64.tar.gz=85f042c308ccdfbeb318cec37056d8d970cab51cb0779425b85b8f76b0a1dd9cdec3191ae2b6b9b6be6e95767db814496450ed20076addd9bd495742f9de3c8c truffleruby-1.0.0-rc12-macos-amd64.tar.gz=067a0f63bbaaed4c8d4120f758c8ecf8c52afd1d30ea9d41489e26289d57a574d2d4ae29e29655378510adfb3f4a07b04b403d6ee98ee6b3d3aa8bff9c8d718f truffleruby-1.0.0-rc13-linux-amd64.tar.gz=1eb6b80cb05133d253f20629a11ed9ec3f37da002d5668cdc6577b2a20524e0cdd4d739d3f1aa2e8c518e2f7ebfd519ec1c647293714a1133ad4d569375c0e69 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=e3cddb0d0ae48f7d5ee4dd094ddb5a13f6a7aff1521b1adf25710971664b235cf67144e3b81525fd710dc49b6f6f6ba06e10eee1df5dc08119e9494c6be86934 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=c982194675b66a0433bd5517fc6f1564db669f595f8c7ba4819bf37e0599474d49a0c606577a898c27fa5ba40ab793c62d8211e7ea398d6b3e2bcc31eb5d55f4 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c14e396396385644333fb4c4aa1fb4b934a3f4e46312146821e5dcdaa097cb5b1efbf397c1dd6117d909803fd27ba8d835904672e98d43dc565e907fed752e1b truffleruby-1.0.0-rc15-linux-amd64.tar.gz=f27a75f929a6e945e49ceaad12f484fdaa918469a2f639b572fc4737b78e1cde0881697057e13a58b2fab7ac64c3a71bc9951561c3a8728e3dec814ef5e95fee truffleruby-1.0.0-rc15-macos-amd64.tar.gz=7aa029c4999d4608c9bcc491771b0434267032dbe9dbf504728079f87ce93e6a90e0fa839295b88c00e5a025186ed0fcc42361428b7874c05e222edb108d6c02 truffleruby-1.0.0-rc16-linux-amd64.tar.gz=e8c508dede11d4f54cf0b15cf92b50caad93076a6065bd2d6784c5ca739f5923ea2b894c6b2b52131f62187c8b305cd11a960fb5a670789802d59b6b2999f0af truffleruby-1.0.0-rc16-macos-amd64.tar.gz=841eff077c38bf594b101edb15942f601ba0dada2122b21b016f53251aa2a635b8d0b63b49bdfb50259b2545d1f498bca95d5f771a15a28edb0dd07216c9b709 truffleruby-19.0.0-linux-amd64.tar.gz=8ec6c7829351e0dc2cce57305947cd540734fe5a0b95b9501d4179993727ab2c331e9fb639b9865c0fed596df3906adf3dcf2efb22c4cfdd23a3dc2137025fd4 truffleruby-19.0.0-macos-amd64.tar.gz=912e0c15d32e40c884b2caaaf9a86a71450d441c960ef98a63dfce80353619073b146dcfe03d9af4273b2811d0899eebe922cc84a51d6f5e6826cc436d793f78 truffleruby-19.0.2-linux-amd64.tar.gz=eec92bfbd776acd61709a428b90b1029c5ea83e5ea839304d23cae3a541dd4fab3b387691fa76643f55d5939c9cac0cbe70dc0b5786e5e0e5d20f3fcd9a21356 truffleruby-19.0.2-macos-amd64.tar.gz=ce647b76c9931feac55baa5acd2c87d8335c606bc5cd7e462bd92ba1b09f4bab5db927f021e3119abfd85c33377003d060f36cf64eb121954fce8878112f01b5 truffleruby-19.1.0-linux-amd64.tar.gz=db01e6dc09fc5f39ca466aa94f725023d49a8f52343f129bf8c32b7f5f76ccf2d573ee3344fce3d5aff9983bc9af618cc5ca6e1dbba93b3f604e4f33f8a69b3f truffleruby-19.1.0-macos-amd64.tar.gz=f002bc0b6efca11eb97c4aa6df33d2e0fcc1de3443efd39d912b028df9dd8954cb76ef3ca7fbe140f4e922d6ae4c1a6a20853490ef1ea0749293e2fcd4ffe8fc truffleruby-19.1.1-linux-amd64.tar.gz=ec031e8c216e31f034d97aaccd6441869221d6946e18f375b44a866550b8e8eb4b2fb923f9ce1a62853bdcd5b9201e0f5d2732ca6525d80171d5732ef522bd25 truffleruby-19.1.1-macos-amd64.tar.gz=1c15918af939a8fe1779b71d9e53d2ce09ca7353173a3b357905d9fe1981ff013cf0f90c6b47e1ca66dd168c2f2d742f28a5fb134cc0231d36146da99f91c3cc truffleruby-19.2.0-linux-amd64.tar.gz=1248bdde9cd3651d7042fe4cecff4ad35534868d543fe2e6f3a5bfc3bc9d10d57b4139fc070f0a03861436a1aabc9a8ebdf3356f39b77a4b8f6a1dcf492f70a4 truffleruby-19.2.0-macos-amd64.tar.gz=92c3154ed229a115cf392826494745aae06dd9228dd0996c2c44c550552f13f9c254367d068452fa4a84eef79c19601c79b87e10f3121fd7b83b803514a41cfd truffleruby-19.2.0.1-linux-amd64.tar.gz=53c78cd1f255f2b7031a70a42b65c0bf80c510b9254f5d7ba82b4787f55f5b09cfa9544c424a90f4619a74179fed07c168bd501e34772ef836a773e89c467cc5 truffleruby-19.2.0.1-macos-amd64.tar.gz=ac11523cd49fac50de1e441039e429fb8cd6c7051d537e5083b64fa68eaa19c9f0a966b269da906c367985f229af82a4811282dbfd0a76ef6565162e1081a659 truffleruby-19.2.1-linux-amd64.tar.gz=c5ffc1b592a74e836a4f6ec75b0e103150a4a40d3183ae853ead38c951a85378163111cf0bd2b81e44548c0a7aeaded3ae8a7ae558d5a02dc9e2cce992b79b58 truffleruby-19.2.1-macos-amd64.tar.gz=bb467b91f66eb7d1e6f1a54a7bc0a3d9503bcbd935e8a02da9ea0b749a51e354b1140d4a4dad6fc05312b560bb9ccdcce4f6583bccd19bb5afee19bf494102fe truffleruby-19.3.0-linux-amd64.tar.gz=0e94777a3feabbf0107ed40847e20dd4e3696ff2b7c3f6ceddf3a53ccd812bd003c84c62a750e8fac9d2490374bf792d69174b48c3ed36b593485d86729136c1 truffleruby-19.3.0-macos-amd64.tar.gz=95470c389e24c865ecdc3d299005cd98f8221a128f3cd75f899b6b7ae5d6dc07962443ce0ff38dfd014589d5aaf08b718dc870a72eb7ea6ced18ec2b2db63095 truffleruby-19.3.0.2-linux-amd64.tar.gz=dc5309b71980657f750b4dd4f8b3bc4e191bc305b638b1e562ff5b0ad7fbba40079ba674caf46226a46b5ca58c10f812354786696264742f351b129fb088a672 truffleruby-19.3.0.2-macos-amd64.tar.gz=ff1c37485ebeff3edcc7081ce09bebe5541012dedff6997662c7f8a064e0ab10bef9a5cdf834263a06ae04ca0391743948bcdea6e6c9d7e1cfef9f21523c2bdb truffleruby-19.3.1-linux-amd64.tar.gz=c724547a9eacfdd135ce05eac9dcfe74e58a5e77c97f88103f83b8513c15c975a0ecf623f623a425ec81fad1b64d3b5e135660d6943608ad08048cda00eace79 truffleruby-19.3.1-macos-amd64.tar.gz=d746b2ad410c15d145d36c676a070ae454ba8e5ec6c594d5ebcf54b1fc719f98e8b8f71b6fd504c3d38df286bd11c5114f73b5ba39be312b11d42d4ca1a17d02 truffleruby-20.0.0-linux-amd64.tar.gz=4efea5ded5fcc6886befba3a3720fe1e5b2e376d46738565e8871a1ce0201a33ed52e78b8af2fb389618bdea99466d126d8537dd0919b0c13f8ff1940cb3e52e truffleruby-20.0.0-macos-amd64.tar.gz=b36488330514b77c7115689042cf2482a0beb9f72a0b05fb4c7a6ecb0835a3da47c3b15c41abd6ffced023e65ecf7eabcfbcc6e41901dcddd0fb3dfed46564c6 truffleruby-20.1.0-linux-amd64.tar.gz=116d57404540b85c15b321793a6f985624a2044af544e659b3607e50159703af5d445e22bff28ae2182dfa752f7500d420e250f6deccc98a2f01e89adba8ac3a truffleruby-20.1.0-macos-amd64.tar.gz=9b1267101dfe78b85c79f7528eb4de96b16933e66d5771efa6272372dac0fb35b199bb9d42773d61f4fa7a15d6cbd18b5753c148f7c3e477c7c4b21633f12b88 truffleruby-20.2.0-linux-amd64.tar.gz=a37eaf8475364b74d948979ac13dc6e6423bf11949ad1d0f2925f78a4495e80de9767001ccdb777c8cfd7f545839fad4d842522620c3acad179404bc4ce6752c truffleruby-20.2.0-macos-amd64.tar.gz=964c1e02cc53e1646060334a9911771e679a8344d811a0f77d5cae3529dfefff259c45505ac84b7debb958514cd5d2276ffd435802085494e0229dd140ce8f00 truffleruby-20.3.0-linux-amd64.tar.gz=ec2d8ff6a5d45fd7091e26430c67cbbdc0f8ffa41e9ac574d48802766fcd144e1f446db807700247ad6d8046b7ed070b5da70ef667e576d6fea60cc64ea5484f truffleruby-20.3.0-macos-amd64.tar.gz=1878f94e05a3c40484bf944a72412b179aa5415a16a7ebc1610cb512a1e1c4a2ce0e98685257ad6e5c14745245c35bb5b28205fb687292c4f17193cbfb3bb606 truffleruby-21.0.0-linux-amd64.tar.gz=b7d1b76cc015d136dbd74515431f4447730850475f81b00885b71b95819134db2656d941736048db42d519f03e1f2df066226513b77208adbdbbeda1f49cab11 truffleruby-21.0.0-macos-amd64.tar.gz=7677b827a9c1758d5f941c512cb0fe8daaa19c3db77b485d7dfa43940151d6b9094c4d9271e18ef5014630142dffb93d168c7ac631a3b5eef6fc61b2f9eecf88 truffleruby-21.1.0-linux-amd64.tar.gz=010e9fb78cab12486641780392be0f284da08dfd955f3a0d1ef72adb52e1c9024b54dc880173645aea2af680b3670a6bb01409198b757239edda4cd9bf2b1e90 truffleruby-21.1.0-macos-amd64.tar.gz=96ef8481faef1bfa7f01bb4d396818ef6f0943d19c6a23dedb68f8346740b72bf06efc707bdd29158cf991cc7073c97f429a07b02c2a48050512b46369850058 truffleruby-21.2.0-linux-amd64.tar.gz=c20af04909a852cb676c90403d852fb367d56eac0f9cf8ba42caa4cad1013ba393cc4611e434614ad132b7b0ed61160aadd887001b08de0767cf58f5e149efe7 truffleruby-21.2.0-macos-amd64.tar.gz=0b8d9633fde53aad78f0baf52858cd5a5716f53ff21698baab17da4a625b4369b88dbd664193e3f0d1b40e64c88699ab4f04bbe40f54189a588c93678962a7be truffleruby-21.2.0.1-linux-amd64.tar.gz=15ceeee383114f974aed5f16c99131d56947e13cfe248b97e55d61263ccd51aa56fc3e0df215196ef7f80ccba9e7f19e7f261d7a91d54bde2d9992caba682d82 truffleruby-21.2.0.1-macos-amd64.tar.gz=8a8762d90c19db4f48433ce0e3f3339e290685d79c6ee9bb7d4359c741edfa6a7360ff65124433d964730ac25b2cc6d8b581191b0a51479f11c2a80031a6c1c8 truffleruby-21.3.0-linux-amd64.tar.gz=b0c07b1ea797de92447a81b350d460c125a2efaff3c290637c4bcf1c216b5abd11148cfb143ad397062a96f36beade8234d0785c42f58fceac0011f629a5220b truffleruby-21.3.0-macos-amd64.tar.gz=42e607fa52a534123989ad232691ede65aa1c615f39320d93aa8ab9c21924eea7bc0aa49aef1a540ec972e2b3dc775d22a99eca3e0c9bc450c525f9020fbb975 truffleruby-22.0.0.2-linux-amd64.tar.gz=2231a0cfd27238c34ea0bbad27ba387453e48f39032607cbb829b347ea6ac804df15eb3f84d50b09248782d6202284498e7bc9aaa2060f0ce81bb83a84d700ad truffleruby-22.0.0.2-macos-amd64.tar.gz=1d7ac44f0862ad23cf17a7bba73d23dfd4727aadd9a3aa9633361e9bcd19655d163e160eae9c8db8ec9892f8fbf82d7a38b1cd689475bf41609a828208098623 truffleruby-22.1.0-linux-amd64.tar.gz=c4c2f9bf4236118c8ea62c08bad89e1034ecdfa0c4815693961c4d2b1b30ca043fe958abfec9cf36a8638aa2e005e71fcc244ebffd9ce11eb68cf48bd98c29d3 truffleruby-22.1.0-macos-amd64.tar.gz=507004ade838e614955e23331845839be656aaeae7869ed3d989c10e6491775a12313ac9ef03e14945f20f5e76d46ce6f7bb860af68a627c48065399cea3c567 truffleruby-22.2.0-linux-amd64.tar.gz=37c09249ef387df3e0614f646abb444cb5b7b2751538ab0432e703abe92a81b82e0d15f89d5ad7cd58afe5f30d9a92dc8471d19f1c1ce10b50478ac74f247739 truffleruby-22.2.0-linux-aarch64.tar.gz=49a7cfb4c81980d9c7a1588ef9f76a9bfb759d4b1925ab11f230d99c15a62e162a08249d23cf5646e2d38ecc2005e27103f2e5d92b83b0a182a4e64319b70c0d truffleruby-22.2.0-macos-amd64.tar.gz=d4c206fb0a5e63c5b7f61f2e62de854e4d0817075ef9ded237d98cd821c286e88d7b150d140d9907a957209f39be96c7025560e3908c89aa337925d2fba690af truffleruby-22.2.0-macos-aarch64.tar.gz=a01c18803777a74717ad699b6ee51eb759d881fb436d24338b557c52d4a693079d7b55f108394ccad0dd69c974cb895f4a36854355e84fecb67e41bf9eb18514 truffleruby-22.3.0-linux-amd64.tar.gz=d53472ae892dadc81c6fe63a597ccfb67e133958431b11716db4d920c78fc86f7496e4b10322d041c900bed77d27e02850da20aa95b297d63a9de2e72cdf3c76 truffleruby-22.3.0-linux-aarch64.tar.gz=dab63d49db4722f0c174ce8b882413102520ff649182946ba332ef5ba0fc6b58913595539a20b59e460faab2fba36f762dc8eb66aa729d4a6bb90feb2a95f053 truffleruby-22.3.0-macos-amd64.tar.gz=15c91d25fd6fb1d9f3f2a0b36676da5c8a76d62be86cff463ebe6c7e6aed2d9b6de9062021ab1b9b29cfb7a92b5682c860939acd71d12dba7e4a6bf3964fef3d truffleruby-22.3.0-macos-aarch64.tar.gz=7c44d0dd07e4ecd84a92f6dd574dc185906121b8eb75f6fe097b9d4738aa30751664d70e9027e072eeaa1dffa05fe7bcfc06be0c2dc950142f60664baf5eac69 truffleruby-22.3.1-linux-amd64.tar.gz=f41d3bd22500b7291121368169f8558df4563c840a01b70ff7feea3593f0152d8d77d4437af362bad62f25b79bce1ce8ddaa1bd8172a2a7ef8b61cdb6e478c9e truffleruby-22.3.1-linux-aarch64.tar.gz=1ca5221f0dc5ae3e0bd9545be474e115b2e62737701df95c6ee6cdaae5d82815acbe6af961ff23afee64dc26e655c7786d4347e3694c140773f065534322ee59 truffleruby-22.3.1-macos-amd64.tar.gz=bae16cc04c6018703833121f4258c3f18fa5062309d0600458be3c51c838bc63976a026db0f28d23005df9b640ccad0a9cafc56610a5ca9c24951c66b62097d9 truffleruby-22.3.1-macos-aarch64.tar.gz=b56e230d8fbc95d19364e695aaf1e552238b02ace7056f636808a7d7510777cddfde572ace5238ea1e314351bdd1a053ab3912d0889f51f55c722797c83eaaee truffleruby-23.0.0-preview1-linux-amd64.tar.gz=d538412f12d5ce743c351acbaa483b8b85dd2cf84fe06b3e90ca21f3c2fc0465df9c1773b3515fe4296d599f45e9cbb935dc5a69fe45668321e5639d58608ef4 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=f10b5ac749b11f93c2469f2c8a713ad090cb653761ae0a3e1ba4c19b0c96bd61c5e8da74d8944f9487c2d327d268a188f2cb56028d2beaca2a7816e63123600b truffleruby-23.0.0-preview1-macos-amd64.tar.gz=cd9db49c4253bd66cad6f9ae111c83d3befd0102a7ccb72a2407d22dc576ba7f3a26a90cd479f26dee3565d2f893a2b7c8b549e2351336f35d2632e57966657c truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=28b77d9943cd1617e0445633a9fea8911cfa975f5c581192439cd0944d2a17c2b0558e3e4112588b5fc77b57c48d857ad68ac51fcb867250625ad85406d87acc truffleruby-23.0.0-linux-amd64.tar.gz=da702de2e8c994f2646a3de5b44824210dbd37129cd2f91c3bdd990a1b0d0b05dee4443ad0f6cf98fdb4e489c9f4cde64f3561baf486dc642d4981a1a1812925 truffleruby-23.0.0-linux-aarch64.tar.gz=808254a154adcfd1bbd6e22bcdafebb6169c6f8cfd1c55382d446bb66002384ee844dcd8b5f642703ef440f7566645d190081f45e04a7d8d59bf87571cb4430a truffleruby-23.0.0-macos-amd64.tar.gz=f775d57e63c606eef424a1115408ed8539ef47d6bea0125ad1de7ee4fd5971e96747cb7f5d22d91d2f004edbd6ed6b9b5bd014127dc1abe7821a3a987a72d9dc truffleruby-23.0.0-macos-aarch64.tar.gz=000069854458f81d97eefe14123fbb69937942825e77d35602d55fa279123808177a34f252aec9dcfa48b93feacbee81ae0f0e7043c2d8a9ace2a4bb61ab253f truffleruby-23.1.0-linux-amd64.tar.gz=1868799d989c51798cf07b5243457af7ae2436dd19805fd634c98b2f1885266b5c3ec81dde668c2e5a290e9028f6f9fd223d153489df6ffcc74d45240aa020ad truffleruby-23.1.0-linux-aarch64.tar.gz=2766621877996ad35fddb94f978feed531307e8abf601dcf863754c96782b8149c3ac512dfe6dd2bdef0fe0e8a968bdd77608c41020434aaef4e7250c09edd74 truffleruby-23.1.0-macos-amd64.tar.gz=06c5a1d6ad644fd81737f0a1fd24c1529f712abe2a4485ad597aca7c35ca2af898121bb5883552cf518e2afdcb4221c8ad013759b46a69e34249e7c5ebe2b170 truffleruby-23.1.0-macos-aarch64.tar.gz=496cacc5cf413a48b60184e097a962ab5d2236c539f07cc0a9a2d9ef57dfc911a26b125cc3ad9408f6170c6f93c7562f35729c8313be0301972be21c10097942 truffleruby-23.1.1-linux-amd64.tar.gz=dbca85e281bf2484371a0bbcc202ca700acc704304d966b9202cf3835e82f6eb502e43522355f4c9e5a743877d93f5609006fbba2c5e6343a89de130e5209f6a truffleruby-23.1.1-linux-aarch64.tar.gz=6a58842d79247d8a64c513d68db9d53ea5640c02f71a1bc45f103baaaca67bb224939ae5f21ef55daa9d9b9697404052d39a3c382768ca366ab7892b8bf1abbe truffleruby-23.1.1-macos-amd64.tar.gz=7cc6bc957b7ffa42e9fbfe2f6e3014bf1e7996f2754e9e74377078c2c7bc7ac8e10598f1e1452839fc5b9583c823a2a735731ca193a6af2814a02566cc4cd9e4 truffleruby-23.1.1-macos-aarch64.tar.gz=a85b8189ef8a280f6a27d4c1c93893f844266dbdc15b8c4988cdf581613a353508fae4872ac9380efcc47f36357e137861521712c00ce8548041762a8987a9b2 truffleruby-23.1.2-linux-amd64.tar.gz=6307fd71fb1431fb12346d1f13dee4b3afe53947e8a9c1f3e3aa0baae5f9fc9e1496ede0a7d86b169d912ffef9625af998b4e698dc57a2a649140150e3fae28a truffleruby-23.1.2-linux-aarch64.tar.gz=0f0c5e4aa4e9fbc9b9f91d2b3d3fbfe26e78c5bc5b369fc78dd54775a7582b8c084a64f02848058bec79387fd80b09a5a5594ecfb268635fe76e1f9d957c2e92 truffleruby-23.1.2-macos-amd64.tar.gz=648401a73b29c28862a1fa077c2e1bf8fff65015c8bc690ff883a00a3dfd99389ffdb71f39ad85a4f16c531470f4cc891ae51ec927a426b0fa05fa85c9c6a2f9 truffleruby-23.1.2-macos-aarch64.tar.gz=4ec88684c09aacfa1d8bfed9a17243579ededacecd869e98e12841710bae29ed6e5f080611e53fc217a853f730bb2a9cb3d47ef15443eb8a1ad76a120118c8a5 truffleruby-24.0.0-linux-amd64.tar.gz=3a59a4dc58ad03549d8e63db1485767757715fc9aec21b2b67b1440b13871a04541abeff9bc8201b3088e1865360b1667459e536d3cfb09687dbffca95deafeb truffleruby-24.0.0-linux-aarch64.tar.gz=50f3993b7362bb6e7da80f7327df3d079bb02f98b67012e2135005d77e61648e4f3268f767d8ca245ec5889ff934fbcccb94fd5ecbd55bb0cd9cca900fe10509 truffleruby-24.0.0-macos-amd64.tar.gz=9ec8bb340b15e29550448e123e3ab0f183edb9bbe7e052743cb2306cbd1956a5789c5a367c80c5e8d913dce2b804448dd6815e4d3421515166daf8db51d37c7d truffleruby-24.0.0-macos-aarch64.tar.gz=499f83bf65dcb6ecc92414a3550673e6a0baaddfe3ab13c0bd7aa1bdde1ae2a61d9d0ca8001c0d12688d9e09f98f9e2946a651220fe7d200bb0ec6f285394701 truffleruby-24.0.1-linux-amd64.tar.gz=62b4e8508eba8cdaac70e99ac9cb0b33a663b4195d79b2dad3d771ef538c6c41d1d91bb7bb07fbbafbcbbcaf17814ffaf6d6bdbafd474ba6a8ecdac30315a8c9 truffleruby-24.0.1-linux-aarch64.tar.gz=817d877848ea4bb55658ce34bbda52926be12426a8a5e1c4588bc0ec1896018b06dce176336b382f80a7c6d073d4331b20694a7797ee8fdf0177e973053bf929 truffleruby-24.0.1-macos-amd64.tar.gz=2ea65bea154aa38cce3f00f24fc9a4aab5e7478fafd070d0cc966878371c070d5a1776b7405e2c9e4cfa14e5c51219ed0fa988294eb4708690983b348886f439 truffleruby-24.0.1-macos-aarch64.tar.gz=bc1923e21768d34779c1bcd7850456a01ddc01acd1ccf20f4fb4a446fb847f8c51b1ff4a7c0cdc317ef8ce057ac24f18f25b778a02a6e2b185e0055d946ecaf2 truffleruby-24.0.2-linux-amd64.tar.gz=5d111beb862b618c4e6a7f8aea1d3d6476740513efdd59bf980a2b6d525a017f46fe02017b075962a4919a001b60bd9a070e69fedfa8a85533c0adbad2a8d86b truffleruby-24.0.2-linux-aarch64.tar.gz=8e3ba19df4e5509c4719bc3bb621f70ca6a0e683d48a296703649b88abd83a165e8a64ad2d7dc45394b6de0b214a95a395fa449f5393dd9e67deab9e149cf494 truffleruby-24.0.2-macos-amd64.tar.gz=06d3b5533c4e26aa1356e602c672efad99208aaee96110904216e16dcfb1d99a7535c3ef275f9a14635dd2f05110798b3c75d71199f6010f23c92c6990492cef truffleruby-24.0.2-macos-aarch64.tar.gz=ba36d3f1680112e6623b14a4bb902a5f65f11e9827f44462161b1c79ee344ca340566289aa1f841c1e213daef5608c159343cc203d07f41c2a55eaeb25db0987 truffleruby-24.1.0-linux-amd64.tar.gz=9a93fd61086fabcb6c4f3a0fcb16e81f42b0203a24a04209fe446eb5f88d78e2ac59ab54d42cc30ef5417199a88b452973eecdfafc57c7877e11edf0a3d42b13 truffleruby-24.1.0-linux-aarch64.tar.gz=ca23edf279ee9b4693630df9596c6e269bb544e06bfd02620447f51108d9e9b4dc8b3ecbcc7a8ba1280560c0eb4b59474e75acead81799e4c51365acb5676d24 truffleruby-24.1.0-macos-amd64.tar.gz=65b661b3bf497bbb090a2cb49607aa00c3e5bfe95eb19c7736d798715d55fe07ddb4e8d8c25c1ec4b7b304b37205c7de9d8ac2d56005c9fc43e4dc81ae699c9b truffleruby-24.1.0-macos-aarch64.tar.gz=ab665d995bd63839c0bf6ed1171875cce7974d49ed79953a05ecdcf13d815c0a5cd471f40839f3f51a1b3128b40a4ed34d9b89e4c3f343b38c78276aed667956 truffleruby-24.1.1-linux-amd64.tar.gz=78e4e8bd910e4b3b41e927f6158cf8cfc74da5187969727d5c5303416310c5b7f72fde239993ecd5ab51724785cd80b2bb9a422a0475320fca57ad40b26d2786 truffleruby-24.1.1-linux-aarch64.tar.gz=c4e3aa72433622f96216b053862beb65861ab20ab28cfc50f51452720173f0a836ee69335281c4c89c6289ffa6f42517b9487d1b6fe16926aecfd9180d6f8195 truffleruby-24.1.1-macos-amd64.tar.gz=099d1abaa8677ecfd298e974fbb37e21bff2ad45313090cecf9a2799b79b74223ca4f95fb873cb7148bb2754ea3f923cfb553dd1dbdf6f1c088a3793bd991871 truffleruby-24.1.1-macos-aarch64.tar.gz=8980a71fc423c454ceaa16b46ba085a0164bf22e3e2040e960623148f09fea4c467b304774afc2ea37d9e072905eab3ad65b3c4acdc7b01ba238e24829cc16d2 truffleruby-24.1.2-linux-amd64.tar.gz=93e4ebdfb9c6a89681d8913a0e175b46c53124c37b0c15c6e032bcbf423def9205a6b288977772e50ba68c8fd06308c9478f22dc7c0385b41fc9989f68a86083 truffleruby-24.1.2-linux-aarch64.tar.gz=63a212ab48704376c1f6e6792da231f6b4ed8ffe1f77eff56b0f58ae8030866da6fcc19cd7068ec158c6e11840b13f47d2d12ba65b6a7f06ba1de6cb1b582fc4 truffleruby-24.1.2-macos-amd64.tar.gz=6cb535ce7fface14bdef86ad322992931ff809fbe781c0715774f279842b5f65d5e8ff4885858cf7a3ba345071509127f473381655f50d000e60c90a88eb11a0 truffleruby-24.1.2-macos-aarch64.tar.gz=a146c8000468c977fc48d8069e938ad6d32fd257d23133c2125f5bb86598d00283c654fc553d5de31ff9a79224f34b3b064bb223ff7766f9f2e25fcf7e263947
rvm/rvm
17259fb5e8ab761e19b99b583f6fd1868ebe5c5b
Add TruffleRuby 24.1.2 (#5539)
diff --git a/CHANGELOG.md b/CHANGELOG.md index f37d24e..5cc1c6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,598 +1,598 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Use OpenSSL 3 for Ruby 3.2 and 3.3 [\#5480](https://github.com/rvm/rvm/pull/5480) * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) * Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) * Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) * Install `libncurses-dev` instead of `libncurses5-dev` on newer Debian and Ubuntu versions [\#5477](https://github.com/rvm/rvm/pull/5477) * Use `zlib-ng-compat` packages for Fedora 40+ [\#5479](https://github.com/rvm/rvm/pull/5479) * Detect core count on ARM-based machines [\#5498](https://github.com/rvm/rvm/pull/5498) * Fix requirement check for Ubuntu [\#5500](https://github.com/rvm/rvm/pull/5500) * Update location of homebrew install script on osx [\#5505](https://github.com/rvm/rvm/pull/5505) * Fix detection of Homebrew's write permissions when using Workbrew [\#5528](https://github.com/rvm/rvm/pull/5528) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) * 3.3.3 [\#5474](https://github.com/rvm/rvm/pull/5474) * 3.3.4 [\#5488](https://github.com/rvm/rvm/pull/5488) * 3.2.5 [\#5490](https://github.com/rvm/rvm/pull/5490) * 3.3.5 [\#5499](https://github.com/rvm/rvm/pull/5499) * 3.2.6, 3.3.6 [\#5513](https://github.com/rvm/rvm/pull/5513) * 3.4.0, 3.4.1 [\#5533](https://github.com/rvm/rvm/pull/5533) * 3.3.7 [\#5540](https://github.com/rvm/rvm/pull/5540) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) -* 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1, 24.0.2, 24.1.0, 24.1.1 +* 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1, 24.0.2, 24.1.0, 24.1.1, 24.1.2 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.3.15.0 [\#5482](https://github.com/rvm/rvm/pull/5482) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) * 9.4.8.0 [\#5484](https://github.com/rvm/rvm/pull/5484) * 9.4.9.0 [\#5512](https://github.com/rvm/rvm/pull/5512) * 9.4.10.0 [\#5538](https://github.com/rvm/rvm/pull/5538) * 9.4.11.0 [\#5541](https://github.com/rvm/rvm/pull/5541) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) * 3.1.6, 3.2.5, 3.3.2, 3.3.3 and 3.3.4 [\#5491](https://github.com/rvm/rvm/pull/5491) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 24.04 (Noble Numbat) x64 binaries * 3.2.6 and 3.3.6 [\#5529](https://github.com/rvm/rvm/pull/5529) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) #### Upgraded Ruby interpreters: * Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159), 2.5.0-preview1 [\#4204](https://github.com/rvm/rvm/pull/4204), 2.2.9, 2.3.6, 2.4.3 and 2.5.0-rc1 [\#4261](https://github.com/rvm/rvm/pull/4261), 2.5.0 [\#4265](https://github.com/rvm/rvm/pull/4265), 2.6.0-preview1 [\#4317](https://github.com/rvm/rvm/pull/4317), 2.2.10, 2.3.7, 2.4.4, 2.5.1 [\#4340](https://github.com/rvm/rvm/pull/4340) and 2.6.0-preview2[\#4395](https://github.com/rvm/rvm/pull/4395) * Add support for Rubinius 3.85-3.100 * Add support for JRuby 9.1.14.0 [\#4224](https://github.com/rvm/rvm/pull/4224), 9.1.15.0 [\#4258](https://github.com/rvm/rvm/pull/4258), 9.1.16.0 [\#4316](https://github.com/rvm/rvm/pull/4316), 9.1.17.0 [\#4366](https://github.com/rvm/rvm/pull/4366), 9.2.0.0 [\#4390](https://github.com/rvm/rvm/pull/4390) * Add support for mruby 1.4.0 [\#4286](https://github.com/rvm/rvm/pull/4286) * Add support for MagLev 1.1* and 1.2Alpha-1.2Alpha4 [\#4289](https://github.com/rvm/rvm/pull/4289) * Add support for RubyGems 2.6.14 [\#4205](https://github.com/rvm/rvm/pull/4205), 2.7.0-2.7.4 [\#4276](https://github.com/rvm/rvm/issues/4276) and 2.7.5-6 #### Binaries: * Ubuntu 16.04 x64 binaries for Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4362](https://github.com/rvm/rvm/issues/4362), 2.2.9, 2.3.6 and 2.4.3 [\#4259](https://github.com/rvm/rvm/issues/4259), 2.2.8, 2.3.5 and 2.4.2 [\#4161](https://github.com/rvm/rvm/issues/4161), 2.5.0 [\#4272](https://github.com/rvm/rvm/pull/4272) * Ubuntu 17.04 for Ruby 2.1.\*, 2.2.\* [\#4233](https://github.com/rvm/rvm/pull/4233) ## [1.29.3](https://github.com/rvm/rvm/releases/tag/1.29.3) 10 September 2017 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.2...1.29.3) #### New features: * Add RVM commands missing in bash shell completion [\#4078](https://github.com/rvm/rvm/pull/4078) * Railsexpress patches for 2.3.4, 2.3-head [\#4084](https://github.com/rvm/rvm/pull/4084), 2.2.5 and 2.2.6 [\#4153](https://github.com/rvm/rvm/pull/4153) * Update `gem-wrappers` to 1.3.0: Show warnings when the target binary is missing or is not executable [gem-wrappers \#9](https://github.com/rvm/gem-wrappers/issues/9) * Detect Zorin OS as Ubuntu [\#4140](https://github.com/rvm/rvm/issues/4140) #### Bug fixes: * Infinite loop in `gemset_create` [\#4102](https://github.com/rvm/rvm/issues/4102) * Command not found `__rvm_remote_version` error [\#4085](https://github.com/rvm/rvm/pull/4085) * Fix path of version script in `environment` [\#4117](https://github.com/rvm/rvm/pull/4117) * Define `cd()`, `pushd()` and `popd()` properly when using zsh [\#4132](https://github.com/rvm/rvm/pull/4132) * Update gem-wrappers to 1.3.1: Avoid warnings for missing ruby binaries [\#4104](https://github.com/rvm/rvm/issues/4104) * Handles :engine=> and :engine_version=> in Gemfile * Makes $rvm_ruby_string is not installed searchable by adding a fixed keyword * Correctly quotes suggested install command * Fix path to version script in rvm-installer [\#4134](https://github.com/rvm/rvm/pull/4134) * Fix rvm autolibs status, fix [\#4123](https://github.com/rvm/rvm/issues/4123) * Ruby 2.3.x and older are not compatible with OpenSSL 1.1.x on Arch [\#4006](https://github.com/rvm/rvm/issues/4006) * Allow comments after ruby directive in Gemfile [\#4056](https://github.com/rvm/rvm/issues/4056) * Ruby 2.3/4 compilation fix for GCC 7 [\#4080](https://github.com/rvm/rvm/issues/4080) [\#4115](https://github.com/rvm/rvm/issues/4115) * Add warning for sudo users [\#4009](https://github.com/rvm/rvm/issues/4009) * Allows running RVM shell function in Bash with `set -o nounset` [\#4013](https://github.com/rvm/rvm/issues/4013) * Ensure `rvm_hooks_path` is set [\#3902](https://github.com/rvm/rvm/issues/3902) * Allow building static ruby with `--disbale-shared` [\#4091](https://github.com/rvm/rvm/issues/4091) * Restore detection of `gpg` command for veryfication of signatures [\#4059](https://github.com/rvm/rvm/issues/4059) * Update `gem-wrappers` to 1.3.2: Avoid nested chdir warnings [gem-wrappers \#11](https://github.com/rvm/gem-wrappers/pull/11) * Fix RVM folder cleanup during installation [\#4333](https://github.com/rvm/rvm/issues/4333) * Fix found project file reject reasons for bash -e [\#4314](https://github.com/rvm/rvm/pull/4314) #### Upgraded Ruby interpreters: * Add support for Rubinius 3.82, 3.83, 3.84 * Add support for mruby 1.3.0 diff --git a/config/db b/config/db index 3618e5e..1e2f08a 100644 --- a/config/db +++ b/config/db @@ -1,154 +1,154 @@ # General default_ruby=ruby interpreter=ruby niceness=0 # # RVM # rvm_remote_server_path1=maven2/org/jruby/jruby-dist rvm_remote_server_url1=https://repo1.maven.org rvm_remote_server_url2=https://rubies.travis-ci.org rvm_remote_server_url=https://rvm-io.global.ssl.fastly.net/binaries # # RubyGems # gem_gem-empty_version=>=1.1.2 gem_gem-wrappers_version=>=1.4.0 gem_rdoc_version=>=4.1.1 gem_rvm_version=>=1.11.3.9 rubygems_repo_url=https://github.com/rubygems/rubygems.git rubygems_url=https://rubygems.org/rubygems rubygems_url_fallback_1=https://github.com/rubygems/rubygems/archive/v\1.tar.gz rubygems_url_fallback_1_pattern=https://rubygems.org/rubygems/rubygems-([[:digit:]\.]+).tgz rubygems_version=latest-3.0 # # Packages # autoconf_url=https://ftp.gnu.org/gnu/autoconf curl_url=https://github.com/bagder/curl/archive gettext_url=https://ftp.gnu.org/pub/gnu/gettext glib_url=http://ftp.gnome.org/pub/gnome/sources/glib/2.23 libiconv_url=https://ftp.gnu.org/pub/gnu/libiconv libxml2_url=ftp://xmlsoft.org/libxml2 libxslt_url=ftp://xmlsoft.org/libxslt llvm_url=https://llvm.org/svn/llvm-project/llvm/trunk mono_url=http://ftp.novell.com/pub/mono/sources/mono ncurses_url=https://ftp.gnu.org/pub/gnu/ncurses openssl_url=https://www.openssl.org/source/old/1.0.1 openssl_version=1.0.1i pkg-config_url=http://pkgconfig.freedesktop.org/releases readline_url=https://ftp.gnu.org/gnu/readline yaml_url=http://pyyaml.org/download/libyaml yaml_version=0.1.6 zlib_url=https://prdownloads.sourceforge.net/libpng # # CentOS / Fedora EPEL # epel5_i386_rpm=https://dl.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm epel5_key=https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-5 epel5_x86_64_rpm=https://dl.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm epel6_i386_rpm=https://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm epel6_key=https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-6 epel6_x86_64_rpm=https://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm epel7_key=https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-7 epel7_x86_64_rpm=https://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-8.noarch.rpm # # MRI Ruby # CentOS_5_ruby_1.8.7_patch_level=p374 CentOS_5_ruby_1.8.7_patch_level_warn=Warning, Centos 5 can not build head version of ruby, falling back to latest patchlevel, your ruby will be less secure because of this. CentOS_5_ruby_1.9.2_patch_level=p320 CentOS_5_ruby_1.9.2_patch_level_warn=Warning, Centos 5 can not build head version of ruby, falling back to latest patchlevel, your ruby will be less secure because of this. ruby_1.8.4_rubygems_version=1.3.5 ruby_1.8.5_patch_level=p231 ruby_1.8.5_rubygems_version=1.3.5 ruby_1.8.6_patch_level=p420 ruby_1.8.6_rubygems_version=1.3.7 ruby_1.8.7_patch_level=head ruby_1.8.7_rubygems_version=latest-2.0 ruby_1.9.1_patch_level=p431 ruby_1.9.1_rubygems_version=latest-1.8 ruby_1.9.2_patch_level=p330 ruby_1.9.3_patch_level=p551 ruby_2.0.0_patch_level=p648 ruby_head_rubygems_version=ignore ruby_repo_url=https://github.com/ruby/ruby.git ruby_unmaintained_date=2017-04-01 ruby_unmaintained_version=2.1.0 ruby_url=https://cache.ruby-lang.org/pub/ruby ruby_url_fallback_1=https://ftp.ruby-lang.org/pub/ruby ruby_version=3.4.1 # # REE # ree_1.8.6_patch_level=20090610 ree_1.8.6_repo_url=https://github.com/FooBarWidget/rubyenterpriseedition.git ree_1.8.6_rubygems_version=1.3.7 ree_1.8.6_url=http://rubyforge.org/frs/download.php/58677 ree_1.8.7_2010.02_url=https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/rubyenterpriseedition/ruby-enterprise-1.8.7-2012.02.tar.gz ree_1.8.7_patch_level=2012.02 ree_1.8.7_repo_url=https://github.com/FooBarWidget/rubyenterpriseedition187-330 ree_1.8.7_rubygems_version=latest-2.0 ree_1.8.7_url=https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/rubyenterpriseedition ree_configure_flags=--dont-install-useful-gems ree_version=1.8.7 # # Rubinius # rbx_1.0.0_patch_level=20100514 rbx_1.0.1_patch_level=20100603 rbx_1.1.0_patch_level=20100923 rbx_1.1.1_patch_level=20101116 rbx_1.2.0_patch_level=20101221 rbx_1.2.1_patch_level=20110215 rbx_1.2.2_patch_level=20110222 rbx_1.2.3_patch_level=20110315 rbx_1.2.4_patch_level=20110705 rbx_repo_url=https://github.com/rubinius/rubinius.git rbx_url=https://s3.amazonaws.com/asset.rubini.us rbx_url_2.0_and_newer=https://rubinius-releases-rubinius-com.s3.amazonaws.com rbx_version=4.1 # # MRuby # mruby_repo_url=https://github.com/mruby/mruby.git mruby_url=https://github.com/mruby/mruby/archive mruby_version=2.0.1 # # JRuby # jruby_repo_url=https://github.com/jruby/jruby.git jruby_url=https://repo1.maven.org/maven2/org/jruby/jruby-dist jruby_version=9.4.11.0 maven_version=3.5.0 # # TruffleRuby # truffleruby_url=https://github.com/oracle/truffleruby/releases/download -truffleruby_version=24.1.1 +truffleruby_version=24.1.2 # # MacRuby # macruby_0.10_url=http://macruby.macosforge.org/files macruby_nightly_url=http://macruby.jp/files/nightlies macruby_repo_url=https://github.com/MacRuby/MacRuby.git macruby_url=https://github.com/downloads/MacRuby/MacRuby macruby_version=0.12 # # Maglev # maglev_repo_url=https://github.com/MagLev/maglev.git maglev_url=http://seaside.gemtalksystems.com/maglev maglev_version=1.2Alpha4 # # IronRuby # ironruby_1.1.3_url=https://download-codeplex.sec.s-msft.com/Download/Release?ProjectName=ironruby&DownloadId=217153&FileTime=129445296766130000&Build=19727 ironruby_repo_url=https://github.com/ironruby/ironruby.git ironruby_version=1.1.3 # # Topaz # topaz_repo_url=https://github.com/topazproject/topaz.git topaz_url=https://d3sgc2zfsedosj.cloudfront.net topaz_version=head diff --git a/config/known b/config/known index 002f55a..9c7a22a 100644 --- a/config/known +++ b/config/known @@ -1,81 +1,81 @@ # MRI Rubies [ruby-]1.8.6[-p420] [ruby-]1.8.7[-head] # security released on head [ruby-]1.9.1[-p431] [ruby-]1.9.2[-p330] [ruby-]1.9.3[-p551] [ruby-]2.0.0[-p648] [ruby-]2.1[.10] [ruby-]2.2[.10] [ruby-]2.3[.8] [ruby-]2.4[.10] [ruby-]2.5[.9] [ruby-]2.6[.10] [ruby-]2.7[.8] [ruby-]3.0[.7] [ruby-]3.1[.5] [ruby-]3.2[.6] [ruby-]3.3[.7] [ruby-]3[.4.1] ruby-head # for forks use: rvm install ruby-head-<name> --url https://github.com/github/ruby.git --branch 2.2 # JRuby jruby-1.6[.8] jruby-1.7[.27] jruby-9.1[.17.0] jruby-9.2[.21.0] jruby-9.3[.15.0] jruby[-9.4.11.0] jruby-head # Rubinius rbx-1[.4.3] rbx-2.3[.0] rbx-2.4[.1] rbx-2[.5.8] rbx-3[.107] rbx-4[.20] rbx-5[.0] rbx-head # TruffleRuby -truffleruby[-24.1.1] +truffleruby[-24.1.2] # Opal opal # Minimalistic ruby implementation - ISO 30170:2012 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1[.4.1] mruby-2.0.1 mruby-2[.1.1] mruby[-head] # Ruby Enterprise Edition ree-1.8.6 ree[-1.8.7][-2012.02] # Topaz topaz # MagLev maglev-1.0.0 maglev-1.1[RC1] maglev[-1.2Alpha4] maglev-head # Mac OS X Snow Leopard Or Newer macruby-0.10 macruby-0.11 macruby[-0.12] macruby-nightly macruby-head # IronRuby ironruby[-1.1.3] ironruby-head diff --git a/config/known_strings b/config/known_strings index 223b6c3..c2d0f34 100644 --- a/config/known_strings +++ b/config/known_strings @@ -65,512 +65,513 @@ jruby-1.7.0.RC1 jruby-1.7.0.RC2 jruby-1.7.0 jruby-1.7.1 jruby-1.7.2 jruby-1.7.3 jruby-1.7.4 jruby-1.7.5 jruby-1.7.6 jruby-1.7.7 jruby-1.7.8 jruby-1.7.9 jruby-1.7.10 jruby-1.7.11 jruby-1.7.12 jruby-1.7.13 jruby-1.7.14 jruby-1.7.15 jruby-1.7.16 jruby-1.7.16.1 jruby-1.7.16.2 jruby-1.7.17 jruby-1.7.18 jruby-1.7.19 jruby-1.7.20 jruby-1.7.20.1 jruby-1.7.21 jruby-1.7.22 jruby-1.7.23 jruby-1.7.24 jruby-1.7.25 jruby-1.7.26 jruby-1.7.27 jruby-9.0.0.0.pre1 jruby-9.0.0.0.pre2 jruby-9.0.0.0.rc1 jruby-9.0.0.0.rc2 jruby-9.0.0.0 jruby-9.0.1.0 jruby-9.0.2.0 jruby-9.0.3.0 jruby-9.0.4.0 jruby-9.0.5.0 jruby-9.1.0.0 jruby-9.1.1.0 jruby-9.1.2.0 jruby-9.1.3.0 jruby-9.1.4.0 jruby-9.1.5.0 jruby-9.1.6.0 jruby-9.1.7.0 jruby-9.1.8.0 jruby-9.1.9.0 jruby-9.1.10.0 jruby-9.1.11.0 jruby-9.1.12.0 jruby-9.1.13.0 jruby-9.1.14.0 jruby-9.1.15.0 jruby-9.1.16.0 jruby-9.1.17.0 jruby-9.2.0.0 jruby-9.2.1.0 jruby-9.2.2.0 jruby-9.2.3.0 jruby-9.2.4.0 jruby-9.2.4.1 jruby-9.2.5.0 jruby-9.2.6.0 jruby-9.2.7.0 jruby-9.2.8.0 jruby-9.2.9.0 jruby-9.2.10.0 jruby-9.2.11.0 jruby-9.2.11.1 jruby-9.2.12.0 jruby-9.2.13.0 jruby-9.2.14.0 jruby-9.2.15.0 jruby-9.2.16.0 jruby-9.2.17.0 jruby-9.2.18.0 jruby-9.2.19.0 jruby-9.2.20.0 jruby-9.2.20.1 jruby-9.2.21.0 jruby-9.3.0.0 jruby-9.3.1.0 jruby-9.3.2.0 jruby-9.3.3.0 jruby-9.3.4.0 jruby-9.3.6.0 jruby-9.3.7.0 jruby-9.3.8.0 jruby-9.3.9.0 jruby-9.3.10.0 jruby-9.3.11.0 jruby-9.3.13.0 jruby-9.3.14.0 jruby-9.3.15.0 jruby-9.4.0.0 jruby-9.4.1.0 jruby-9.4.2.0 jruby-9.4.3.0 jruby-9.4.4.0 jruby-9.4.5.0 jruby-9.4.6.0 jruby-9.4.7.0 jruby-9.4.8.0 jruby-9.4.9.0 jruby-9.4.10.0 jruby-9.4.11.0 macruby-0.12 maglev-1.0.0 maglev-1.1beta maglev-1.1beta2 maglev-1.1RC1 maglev-1.2Alpha maglev-1.2Alpha2 maglev-1.2Alpha3 maglev-1.2Alpha4 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1.4.0 mruby-1.4.1 mruby-2.0.0 mruby-2.0.1 mruby-2.1.0-rc mruby-2.1.0 mruby-2.1.1-rc mruby-2.1.1-rc2 mruby-2.1.1 rbx-1.0.0-20100514 rbx-1.0.1-20100603 rbx-1.1.0-20100923 rbx-1.1.1-20101116 rbx-1.2.0-20101221 rbx-1.2.1-20110215 rbx-1.2.2-20110222 rbx-1.2.3-20110315 rbx-1.2.4-20110705 rbx-1.3.2 rbx-1.3.3 rbx-1.4.1 rbx-1.4.3 rbx-2.0.0 rbx-2.1.0 rbx-2.1.1 rbx-2.2.0 rbx-2.2.2 rbx-2.2.3 rbx-2.2.4 rbx-2.2.5 rbx-2.2.6 rbx-2.2.7 rbx-2.2.8 rbx-2.2.9 rbx-2.2.10 rbx-2.3.0 rbx-2.4.0 rbx-2.4.1 rbx-2.5.0 rbx-2.5.1 rbx-2.5.2 rbx-2.5.3 rbx-2.5.4 rbx-2.5.5 rbx-2.5.6 rbx-2.5.7 rbx-2.5.8 rbx-3.70 rbx-3.71 rbx-3.72 rbx-3.73 rbx-3.74 rbx-3.75 rbx-3.76 rbx-3.77 rbx-3.78 rbx-3.79 rbx-3.80 rbx-3.81 rbx-3.82 rbx-3.83 rbx-3.84 rbx-3.85 rbx-3.86 rbx-3.87 rbx-3.88 rbx-3.89 rbx-3.90 rbx-3.91 rbx-3.92 rbx-3.93 rbx-3.94 rbx-3.95 rbx-3.96 rbx-3.97 rbx-3.98 rbx-3.99 rbx-3.100 rbx-3.101 rbx-3.102 rbx-3.103 rbx-3.104 rbx-3.105 rbx-3.106 rbx-3.107 rbx-4.0 rbx-4.1 rbx-4.2 rbx-4.3 rbx-4.4 rbx-4.5 rbx-4.6 rbx-4.7 rbx-4.8 rbx-4.9 rbx-4.10 rbx-4.11 rbx-4.12 rbx-4.13 rbx-4.14 rbx-4.15 rbx-4.16 rbx-4.17 rbx-4.18 rbx-4.19 rbx-4.20 rbx-5.0 ree-1.8.6-20080507 ree-1.8.6-20080621 ree-1.8.6-20080623 ree-1.8.6-20080624 ree-1.8.6-20080709 ree-1.8.6-20080810 ree-1.8.6-20081205 ree-1.8.6-20081215 ree-1.8.6-20090113 ree-1.8.6-20090201 ree-1.8.6-20090421 ree-1.8.6-20090520 ree-1.8.6-20090610 ree-1.8.6-20090928 ree-1.8.7-2009.10 ree-1.8.7-2010.01 ree-1.8.7-2010.02 ree-1.8.7-2011.01 ree-1.8.7-2011.02 ree-1.8.7-2011.03 ree-1.8.7-2011.12 ree-1.8.7-2012.02 ruby-1.8.5-p115 ruby-1.8.5-p231 ruby-1.8.6-p286 ruby-1.8.6-p287 ruby-1.8.6-p369 ruby-1.8.6-p383 ruby-1.8.6-p398 ruby-1.8.6-p399 ruby-1.8.6-p420 ruby-1.8.7-p160 ruby-1.8.7-p174 ruby-1.8.7-p248 ruby-1.8.7-p249 ruby-1.8.7-p299 ruby-1.8.7-p302 ruby-1.8.7-p330 ruby-1.8.7-p334 ruby-1.8.7-p352 ruby-1.8.7-p357 ruby-1.8.7-p358 ruby-1.8.7-p370 ruby-1.8.7-p371 ruby-1.8.7-p374 ruby-1.9.0 ruby-1.9.1-p129 ruby-1.9.1-p243 ruby-1.9.1-p376 ruby-1.9.1-p378 ruby-1.9.1-p429 ruby-1.9.1-p431 ruby-1.9.2-p0 ruby-1.9.2-p136 ruby-1.9.2-p180 ruby-1.9.2-p290 ruby-1.9.2-p318 ruby-1.9.2-p320 ruby-1.9.2-p330 ruby-1.9.3-preview1 ruby-1.9.3-rc1 ruby-1.9.3-p0 ruby-1.9.3-p125 ruby-1.9.3-p194 ruby-1.9.3-p286 ruby-1.9.3-p327 ruby-1.9.3-p362 ruby-1.9.3-p374 ruby-1.9.3-p385 ruby-1.9.3-p392 ruby-1.9.3-p429 ruby-1.9.3-p448 ruby-1.9.3-p484 ruby-1.9.3-p545 ruby-1.9.3-p547 ruby-1.9.3-p550 ruby-1.9.3-p551 ruby-2.0.0-preview1 ruby-2.0.0-preview2 ruby-2.0.0-rc1 ruby-2.0.0-rc2 ruby-2.0.0-p0 ruby-2.0.0-p195 ruby-2.0.0-p247 ruby-2.0.0-p353 ruby-2.0.0-p451 ruby-2.0.0-p481 ruby-2.0.0-p576 ruby-2.0.0-p594 ruby-2.0.0-p598 ruby-2.0.0-p643 ruby-2.0.0-p645 ruby-2.0.0-p647 ruby-2.0.0-p648 ruby-2.1.0-preview1 ruby-2.1.0-preview2 ruby-2.1.0-rc1 ruby-2.1.0 ruby-2.1.1 ruby-2.1.2 ruby-2.1.3 ruby-2.1.4 ruby-2.1.5 ruby-2.1.6 ruby-2.1.7 ruby-2.1.8 ruby-2.1.9 ruby-2.1.10 ruby-2.2.0-preview1 ruby-2.2.0-preview2 ruby-2.2.0-rc1 ruby-2.2.0 ruby-2.2.1 ruby-2.2.2 ruby-2.2.3 ruby-2.2.4 ruby-2.2.5 ruby-2.2.6 ruby-2.2.7 ruby-2.2.8 ruby-2.2.9 ruby-2.2.10 ruby-2.3.0-preview1 ruby-2.3.0-preview2 ruby-2.3.0 ruby-2.3.1 ruby-2.3.2 ruby-2.3.3 ruby-2.3.4 ruby-2.3.5 ruby-2.3.6 ruby-2.3.7 ruby-2.3.8 ruby-2.4.0-preview1 ruby-2.4.0-preview2 ruby-2.4.0-preview3 ruby-2.4.0-rc1 ruby-2.4.0 ruby-2.4.1 ruby-2.4.2 ruby-2.4.3 ruby-2.4.4 ruby-2.4.5 ruby-2.4.6 ruby-2.4.7 ruby-2.4.8 ruby-2.4.9 ruby-2.4.10 ruby-2.5.0-preview1 ruby-2.5.0-rc1 ruby-2.5.0 ruby-2.5.1 ruby-2.5.2 ruby-2.5.3 ruby-2.5.4 ruby-2.5.5 ruby-2.5.6 ruby-2.5.7 ruby-2.5.8 ruby-2.5.9 ruby-2.6.0-preview1 ruby-2.6.0-preview2 ruby-2.6.0-preview3 ruby-2.6.0-rc1 ruby-2.6.0-rc2 ruby-2.6.0 ruby-2.6.1 ruby-2.6.2 ruby-2.6.3 ruby-2.6.4 ruby-2.6.5 ruby-2.6.6 ruby-2.6.7 ruby-2.6.8 ruby-2.6.9 ruby-2.6.10 ruby-2.7.0-preview1 ruby-2.7.0-preview2 ruby-2.7.0-preview3 ruby-2.7.0-rc1 ruby-2.7.0-rc2 ruby-2.7.0 ruby-2.7.1 ruby-2.7.2 ruby-2.7.3 ruby-2.7.4 ruby-2.7.5 ruby-2.7.6 ruby-2.7.7 ruby-2.7.8 ruby-3.0.0-preview1 ruby-3.0.0-preview2 ruby-3.0.0-rc1 ruby-3.0.0 ruby-3.0.1 ruby-3.0.2 ruby-3.0.3 ruby-3.0.4 ruby-3.0.5 ruby-3.0.6 ruby-3.0.7 ruby-3.1.0-preview1 ruby-3.1.0 ruby-3.1.1 ruby-3.1.2 ruby-3.1.3 ruby-3.1.4 ruby-3.1.5 ruby-3.2.0-preview1 ruby-3.2.0-preview2 ruby-3.2.0-preview3 ruby-3.2.0-rc1 ruby-3.2.0 ruby-3.2.1 ruby-3.2.2 ruby-3.2.3 ruby-3.2.4 ruby-3.2.5 ruby-3.2.6 ruby-3.3.0-preview1 ruby-3.3.0-preview2 ruby-3.3.0-preview3 ruby-3.3.0 ruby-3.3.1 ruby-3.3.2 ruby-3.3.3 ruby-3.3.4 ruby-3.3.5 ruby-3.3.6 ruby-3.3.7 ruby-3.4.0-preview1 ruby-3.4.0 ruby-3.4.1 truffleruby-1.0.0-rc2 truffleruby-1.0.0-rc3 truffleruby-1.0.0-rc5 truffleruby-1.0.0-rc6 truffleruby-1.0.0-rc7 truffleruby-1.0.0-rc8 truffleruby-1.0.0-rc9 truffleruby-1.0.0-rc10 truffleruby-1.0.0-rc11 truffleruby-1.0.0-rc12 truffleruby-1.0.0-rc13 truffleruby-1.0.0-rc14 truffleruby-1.0.0-rc15 truffleruby-1.0.0-rc16 truffleruby-19.0.0 truffleruby-19.0.2 truffleruby-19.1.0 truffleruby-19.1.1 truffleruby-19.2.0 truffleruby-19.2.0.1 truffleruby-19.2.1 truffleruby-19.3.0 truffleruby-19.3.0.2 truffleruby-19.3.1 truffleruby-20.0.0 truffleruby-20.1.0 truffleruby-20.2.0 truffleruby-20.3.0 truffleruby-21.0.0 truffleruby-21.1.0 truffleruby-21.2.0 truffleruby-21.2.0.1 truffleruby-21.3.0 truffleruby-22.0.0.2 truffleruby-22.1.0 truffleruby-22.2.0 truffleruby-22.3.0 truffleruby-22.3.1 truffleruby-23.0.0-preview1 truffleruby-23.0.0 truffleruby-23.1.0 truffleruby-23.1.1 truffleruby-23.1.2 truffleruby-24.0.0 truffleruby-24.0.1 truffleruby-24.0.2 truffleruby-24.1.0 truffleruby-24.1.1 +truffleruby-24.1.2 diff --git a/config/md5 b/config/md5 index 10bbcdf..efe8e8b 100644 --- a/config/md5 +++ b/config/md5 @@ -1544,515 +1544,519 @@ rubinius-2.5.7.tar.bz2=9a7f404019bce9fc34a7af7feb7cbb74 rubinius-2.5.8.tar.bz2=a24520892cada1f660e719a25abf63e3 ruby-1.8.5-p115.tar.bz2=03955e3c367b9beb3efe144c9f00d689 ruby-1.8.5-p115.tar.gz=20ca6cc87eb077296806412feaac0356 ruby-1.8.5-p231.tar.bz2=327f5aa6573787432222e96195cffd1e ruby-1.8.5-p231.tar.gz=e900cf225d55414bffe878f00a85807c ruby-1.8.6-p286.tar.bz2=e6b6bf8f34370e433936adb7a7065e63 ruby-1.8.6-p286.tar.gz=797ea136fe43e4286c9362ee4516674e ruby-1.8.6-p287.tar.bz2=80b5f3db12531d36e6c81fac6d05dda9 ruby-1.8.6-p287.tar.gz=6ff3420094711266c3201a0c7c2faa38 ruby-1.8.6-p369.tar.bz2=c3c1f3dd0dfbd2e17a04e59c2f12cfc8 ruby-1.8.6-p369.tar.gz=8c140ae28b4c3947b92dfad69109d90b ruby-1.8.6-p383.tar.bz2=a48703cd982b9f0e3002700a50b0e88e ruby-1.8.6-p383.tar.gz=4f49544d4a4d0d34e9d86c41e853db2e ruby-1.8.6-p398.tar.bz2=fbd43dc44ee26be4d37e6bebbed6f8bd ruby-1.8.6-p398.tar.gz=736db5f56c2d9b0136e563d049249fa8 ruby-1.8.6-p399.tar.bz2=f77c307cb72fb8808b0e85af5d05cefc ruby-1.8.6-p399.tar.gz=c3d16cdd3c1ee8f3b7d1c399d4884e33 ruby-1.8.6-p420.tar.bz2=1c7a978e9ffd4f56dc2ad74bbd2c34f3 ruby-1.8.6-p420.tar.gz=ca1eee44f842e93b5098bc5a2bb9a40b ruby-1.8.7-p160.tar.bz2=f8ddb886b8a81cf005f53e9a9541091d ruby-1.8.7-p160.tar.gz=945398f97e2de6dd8ab6df68d10bb1a1 ruby-1.8.7-p174.tar.bz2=88c45aaf627b4404e5e4273cb03ba2ee ruby-1.8.7-p174.tar.gz=18dcdfef761a745ac7da45b61776afa5 ruby-1.8.7-p248.tar.bz2=37e19d46b7d4b845f57d3389084b94a6 ruby-1.8.7-p248.tar.gz=60a65374689ac8b90be54ca9c61c48e3 ruby-1.8.7-p249.tar.bz2=37200cc956a16996bbfd25bb4068f242 ruby-1.8.7-p249.tar.gz=d7db7763cffad279952eb7e9bbfc221c ruby-1.8.7-p299.tar.bz2=244439a87d75ab24170a9c2b451ce351 ruby-1.8.7-p299.tar.gz=43533980ee0ea57381040d4135cf9677 ruby-1.8.7-p302.tar.bz2=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p302.tar.gz=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p330.tar.bz2=2689719fb42c8cf0aa336f8c8933f413 ruby-1.8.7-p330.tar.gz=50a49edb787211598d08e756e733e42e ruby-1.8.7-p334.tar.bz2=2f14f604bf981bb938ab5fc8b09eb1a6 ruby-1.8.7-p334.tar.gz=aacb6ee5dfe2367682bba56af7f415b8 ruby-1.8.7-p352.tar.bz2=0c61ea41d1b1183b219b9afe97f18f52 ruby-1.8.7-p352.tar.gz=0c33f663a10a540ea65677bb755e57a7 ruby-1.8.7-p357.tar.bz2=3abd9e2a29f756a0d30c7bfca578cdeb ruby-1.8.7-p357.tar.gz=b2b8248ff5097cfd629f5b9768d1df82 ruby-1.8.7-p358.tar.bz2=de35f00997f4ccee3e22dff0f2d01b8a ruby-1.8.7-p370.tar.bz2=1e4c3194537dd8ff92e756993e55a29d ruby-1.8.7-p371.tar.bz2=c27526b298659a186bdb5107fcec2341 ruby-1.8.7-p371.tar.gz=653f07bb45f03d0bf3910491288764df ruby-1.8.7-p374.tar.bz2=83c92e2b57ea08f31187060098b2200b ruby-1.8.7-p374.tar.gz=b72a0bc5b824398537762e5272bbb8dc ruby-1.9.0.tar.bz2=17eb66ac3721340d21db352d8f5dec76 ruby-1.9.1-p129.tar.bz2=6fa62b20f72da471195830dec4eb2013 ruby-1.9.1-p129.tar.gz=c71f413514ee6341c627be2957023a5c ruby-1.9.1-p243.tar.bz2=66d4f8403d13623051091347764881a0 ruby-1.9.1-p243.tar.gz=515bfd965814e718c0943abf3dde5494 ruby-1.9.1-p376.tar.bz2=e019ae9c643c5efe91be49e29781fb94 ruby-1.9.1-p376.tar.gz=ebb20550a11e7f1a2fbd6fdec2a3e0a3 ruby-1.9.1-p378.tar.bz2=5922459622a23612eb9b68a3586cb5f8 ruby-1.9.1-p378.tar.gz=9fc5941bda150ac0a33b299e1e53654c ruby-1.9.1-p429.tar.bz2=09df32ae51b6337f7a2e3b1909b26213 ruby-1.9.1-p429.tar.gz=0f6d7630f26042e00bc59875755cf879 ruby-1.9.1-p431.tar.bz2=03179138ae95dbfae872ef49e9cc6da7 ruby-1.9.1-p431.tar.gz=23f28cffc007ed5ac72c8e9bec6837ce ruby-1.9.2-p0.tar.bz2=d8a02cadf57d2571cd4250e248ea7e4b ruby-1.9.2-p0.tar.gz=755aba44607c580fddc25e7c89260460 ruby-1.9.2-p136.tar.bz2=52958d35d1b437f5d9d225690de94c13 ruby-1.9.2-p136.tar.gz=6e17b200b907244478582b7d06cd512e ruby-1.9.2-p180.tar.bz2=68510eeb7511c403b91fe5476f250538 ruby-1.9.2-p180.tar.gz=0d6953820c9918820dd916e79f4bfde8 ruby-1.9.2-p290.tar.bz2=096758c3e853b839dc980b183227b182 ruby-1.9.2-p290.tar.gz=604da71839a6ae02b5b5b5e1b792d5eb ruby-1.9.2-p318.tar.bz2=be431c6cbfa27e3836a06c6315717747 ruby-1.9.2-p318.tar.gz=cc7bf1025128e1985882ae243f348802 ruby-1.9.2-p320.tar.bz2=b226dfe95d92750ee7163e899b33af00 ruby-1.9.2-p320.tar.gz=5ef5d9c07af207710bd9c2ad1cef4b42 ruby-1.9.2-p330.tar.bz2=8ba4aaf707023e76f80fc8f455c99858 ruby-1.9.2-p330.tar.gz=4b9330730491f96b402adc4a561e859a ruby-1.9.3-p0.tar.bz2=65401fb3194cdccd6c1175ab29b8fdb8 ruby-1.9.3-p0.tar.gz=8e2fef56185cfbaf29d0c8329fc77c05 ruby-1.9.3-p125.tar.bz2=702529a7f8417ed79f628b77d8061aa5 ruby-1.9.3-p125.tar.gz=e3ea86b9d3fc2d3ec867f66969ae3b92 ruby-1.9.3-p194.tar.bz2=2278eff4cfed3cbc0653bc73085caa34 ruby-1.9.3-p194.tar.gz=bc0c715c69da4d1d8bd57069c19f6c0e ruby-1.9.3-p286.tar.bz2=e76848a86606a4fd5dcf14fc4b4e755e ruby-1.9.3-p327.tar.bz2=7d602aba93f31ceef32800999855fbca ruby-1.9.3-p327.tar.gz=96118e856b502b5d7b3a4398e6c6e98c ruby-1.9.3-p362.tar.bz2=13c26ea368d88a560f07cc8c5eb4fa05 ruby-1.9.3-p374.tar.bz2=944e73eba9ee9e1f2647ff32ec0b14b2 ruby-1.9.3-p385.tar.bz2=5ec9aff670f4912b0f6f0e11e855ef6c ruby-1.9.3-p392.tar.bz2=a810d64e2255179d2f334eb61fb8519c ruby-1.9.3-p392.tar.gz=f689a7b61379f83cbbed3c7077d83859 ruby-1.9.3-p429.tar.bz2=c2b2de5ef15ea9b1aaa3152f9112af1b ruby-1.9.3-p429.tar.gz=993c72f7f805a9eb453f90b0b7fe0d2b ruby-1.9.3-p448.tar.bz2=aa710d386e5903f78f0231868255e6af ruby-1.9.3-p448.tar.gz=a893cff26bcf351b8975ebf2a63b1023 ruby-1.9.3-p484.tar.bz2=03f5b08804927ceabe5122cb90f5d0a9 ruby-1.9.3-p484.tar.gz=8ac0dee72fe12d75c8b2d0ef5d0c2968 ruby-1.9.3-p545.tar.bz2=4743c1dc48491070bae8fc8b423bc1a7 ruby-1.9.3-p545.tar.gz=8e8f6e4d7d0bb54e0edf8d9c4120f40c ruby-1.9.3-p547.tar.bz2=5363d399be7f827c77bf8ae5d1a69b38 ruby-1.9.3-p547.tar.gz=7531f9b1b35b16f3eb3d7bea786babfd ruby-1.9.3-p550.tar.bz2=c2169c8b14ccefd036081aba5ffa96da ruby-1.9.3-p551.tar.bz2=0d8b272b05c3449dc848bb7570f65bfe ruby-1.9.3-preview1.tar.bz2=7d93dc773c5824f05c6e6630d8c4bf9b ruby-1.9.3-preview1.tar.gz=0f0220be4cc7c51a82c1bd8f6a0969f3 ruby-1.9.3-rc1.tar.bz2=26f0dc51ad981e12c58b48380112fa4d ruby-1.9.3-rc1.tar.gz=46a2a481536ca0ca0b80ad2b091df68e ruby-2.0.0-p0.tar.bz2=895c1c581f8d28e8b3bb02472b2ccf6a ruby-2.0.0-p195.tar.bz2=2f54faea6ee1ca500632ec3c0cb59cb6 ruby-2.0.0-p247.tar.bz2=60913f3eec0c4071f44df42600be2604 ruby-2.0.0-p353.tar.bz2=20eb8f067d20f6b76b7e16cce2a85a55 ruby-2.0.0-p451.tar.bz2=908e4d1dbfe7362b15892f16af05adf8 ruby-2.0.0-p481.tar.bz2=ea406a8d415a1a5d8365596d4288f3da ruby-2.0.0-p576.tar.bz2=eccd42d43620544a085c5e3834572f37 ruby-2.0.0-p594.tar.bz2=58469c0daf5f3a892a70cc674ea59c7f ruby-2.0.0-p598.tar.bz2=a3f3908103a7d209d1d1cf4712e3953c ruby-2.0.0-p643.tar.bz2=1390888cac6cd175e6f164eff378cdde ruby-2.0.0-p645.tar.bz2=d576240c97cfcc3ed9bdc457eb1e8280 ruby-2.0.0-p647.tar.bz2=27a3ea1a8b8bca1a6de43a7d08e88b69 ruby-2.0.0-p648.tar.bz2=3544031334f4665aa2eb1414babc9345 ruby-2.0.0-preview1.tar.bz2=47a0f662f0e258aa1c5e429c310861b3 ruby-2.0.0-preview2.tar.bz2=a645a783c3302cc094a9963a5e700a4d ruby-2.0.0-rc1.tar.bz2=24cebdda11e01ff4889ac983cd7dc02c ruby-2.0.0-rc2.tar.bz2=e92420131bd7994513e0bf09a3e2a19b ruby-2.1.0-preview1.tar.bz2=d32d1ea23988399afadbd21c5a7a37fc ruby-2.1.0-preview2.tar.bz2=9d566a9b2d2e7e35ad6125e2a14ce672 ruby-2.1.0-rc1.tar.bz2=cae095b90349b5b0f7026060cc3dd2c5 ruby-2.1.0.tar.bz2=1546eeb763ac7754365664be763a1e8f ruby-2.1.1.tar.bz2=53edc33b2f590ecdd9f6a344b9d92d0d ruby-2.1.1.tar.gz=e57fdbb8ed56e70c43f39c79da1654b2 ruby-2.1.2.tar.bz2=ed9b8565bdeccb401d628ec8d54a0774 ruby-2.1.2.tar.gz=a5b5c83565f8bd954ee522bd287d2ca1 ruby-2.1.3.tar.bz2=02b7da3bb06037c777ca52e1194efccb ruby-2.1.4.tar.bz2=f4136e781d261e3cc20748005e1740b7 ruby-2.1.5.tar.bz2=a7c3e5fec47eff23091b566e9e1dac1b ruby-2.1.6.tar.bz2=e1a8e6c6bfbb09bb7f8d6be8f508e4a1 ruby-2.1.7.tar.bz2=3a878e98311d543e5de3533b82ef4a5a ruby-2.1.8.tar.bz2=b17130b5f02a61640ae3b629af931610 ruby-2.1.9.tar.bz2=62bd1cbfcbc22e4d137462bce992f6d1 ruby-2.1.10.tar.bz2=5155c624807ff2418a9e9f15202954d0 ruby-2.2.0-preview1.tar.bz2=767b132eec3e70b14afe5884a7a767b1 ruby-2.2.0-preview2.tar.bz2=d7abace25a8ffe861cb2807bef1c58a6 ruby-2.2.0-rc1.tar.bz2=7144732d30dd4547c0a59862b3345d54 ruby-2.2.0.tar.bz2=d03cd4690fec1fff81d096d1c1255fde ruby-2.2.1.tar.bz2=06973777736d8e6bdad8dcaa469a9da3 ruby-2.2.2.tar.bz2=af6eb4fa7247f1f7b2e19c8e6f3e3145 ruby-2.2.3.tar.bz2=f49a734729a71774d4a94a9a603114b2 ruby-2.2.4.tar.bz2=c3d65f6d2ebe90dda81a37885ea244f5 ruby-2.2.5.tar.bz2=0c7edd1ff3650c3b74da2efaf641bf34 ruby-2.2.6.tar.bz2=3d13cf447142b8a11cd9beb7bc63fee0 ruby-2.2.7.tar.bz2=ca7224d80c08b015bc3b8c226d0914c3 ruby-2.2.8.tar.bz2=054d2e2904d5175662293e29c3bdb927 ruby-2.2.9.tar.bz2=575adf8ede6b1ca7236a5341e73536b0 ruby-2.2.10.tar.bz2=bef1909a4c885157870ef69548cdad3a ruby-2.3.0-preview1.tar.bz2=776000d74ec6dd34bf355ff6921c8311 ruby-2.3.0-preview2.tar.bz2=3ad442ccb337e77e4acaa4113f25b76a ruby-2.3.0.tar.bz2=f0d9f9bbdc87372ca98988a571875819 ruby-2.3.1.tar.bz2=c194281f63d7fcd816747fe78474be5e ruby-2.3.2.tar.bz2=9d00f3772f1c8fa5eecdfea089e3032f ruby-2.3.3.tar.bz2=04b9c461a2bc1eec0535ad1947cad4fb ruby-2.3.4.tar.bz2=99961e97566aee6d63635e2da4cf73ac ruby-2.3.5.tar.bz2=e1efc3d5a948ca1f552005efe5925513 ruby-2.3.6.tar.bz2=b2443b11ee80319a119f7ec0c9b8d79a ruby-2.3.7.tar.bz2=5eb580d5cd13ffb5aacfb96580c0043d ruby-2.3.8.tar.bz2=78045332e298dfd859ceef9fe946950f ruby-2.4.0-preview1.tar.bz2=64b8983b5f53d053906e394f734aa296 ruby-2.4.0-preview2.tar.bz2=1074e8dea5baa89af7f7c2d1d2b9ebaa ruby-2.4.0-preview3.tar.bz2=9f767e6bc61830735ea7dc9cd5a63653 ruby-2.4.0-rc1.tar.bz2=0f8b665acf4e883334adc121a42a206f ruby-2.4.0.tar.bz2=98f29161860fe1b6c65396717847a358 ruby-2.4.1.tar.bz2=07b2ae5d2f46321c95b37066c8415900 ruby-2.4.2.tar.bz2=5ff3ad6ec816bcce8806a55090936ab6 ruby-2.4.3.tar.bz2=ac8215ba561cc7c79b4f61daee11b706 ruby-2.4.4.tar.bz2=d994274eaa95b82aa5d31ec2188253c6 ruby-2.4.5.tar.bz2=45d70a8bb9397d818795ffe992163d27 ruby-2.4.6.tar.bz2=4abd13c50c1fc273a0a81a0ae74ed39f ruby-2.4.7.tar.bz2=1ce166ced489908993d78e8bb68325e0 ruby-2.4.8.tar.bz2=396d35f1a2d1deaf303f59cb5245d4ae ruby-2.4.9.tar.bz2=0b3447370651df55a2014a170c0cb1d5 ruby-2.4.10.tar.bz2=b10a7d2fcaf218c98edbaf57efc36e58 ruby-2.5.0-preview1.tar.bz2=889454189f41e271ae5ba15382911b6a ruby-2.5.0-rc1.tar.bz2=f5acdeacf56aced3c00ae6a8fa816bbc ruby-2.5.0.tar.bz2=63a6cd49546783d62de25a0ffc4aecc3 ruby-2.5.1.tar.bz2=5aaaf2fb4893214fa316516f3ac43519 ruby-2.5.2.tar.bz2=e90ab127e2ac3ee1d8840835e8ba1f13 ruby-2.5.3.tar.bz2=49aea0bf56d25351ccaf938c642400df ruby-2.5.4.tar.bz2=0c923215470f1debe593fe21e66fd37b ruby-2.5.5.tar.bz2=8f41b5cb683d48b5cb6cdfe03d135d6b ruby-2.5.6.tar.bz2=f2a74416ab3016434896194120796f04 ruby-2.5.7.tar.bz2=65597b69aa54bdca8745502c10349f96 ruby-2.5.8.tar.bz2=9ec96e7a590ef801ede294b6184c9c0f ruby-2.5.9.tar.bz2=9e905a545a729af1f1620ddfc2976fe5 ruby-2.6.0-preview1.tar.bz2=1ce507e27fa02aeb36100dabcf1da94f ruby-2.6.0-preview2.tar.bz2=e45011116334d21857b9e1712a01e6b3 ruby-2.6.0-preview3.tar.bz2=b326ceee3d3756f892515009e148f4b2 ruby-2.6.0-rc1.tar.bz2=40457a72e36cbecd0c51d9f895347302 ruby-2.6.0-rc2.tar.bz2=9665e6d886a9da2d4076fa75836798f1 ruby-2.6.0.tar.bz2=d3372daec93f83e7a91c669821053014 ruby-2.6.1.tar.bz2=73d19ac478db1a178be5ae2f2fb8c9ec ruby-2.6.2.tar.bz2=658fcc0da15578c2420ded807b11cce1 ruby-2.6.3.tar.bz2=52e609b756735115814b9c8463f185e2 ruby-2.6.4.tar.bz2=d9b35753c65f54c745ab6b0094511839 ruby-2.6.5.tar.bz2=d1b89c88effb71d75cd7ef77c35e1985 ruby-2.6.6.tar.bz2=abc030870bfbe18ae9c356abebd95cb6 ruby-2.6.7.tar.bz2=46f24740181f91247c72f19d52334379 ruby-2.6.8.tar.bz2=c53761123d17e929cfe248f50429bcab ruby-2.6.9.tar.bz2=ddc24495adaf215c8ee40630b4a55041 ruby-2.6.10.tar.bz2=6ad76db639ab308e3b6c19408729a0cf ruby-2.7.0-preview1.tar.bz2=82fab0496947acd847a6b2eb758acfc6 ruby-2.7.0-preview2.tar.bz2=966a544ab59114591898403c23d91397 ruby-2.7.0-preview3.tar.bz2=2fa6c213774744b287e7e0212b43f626 ruby-2.7.0-rc1.tar.bz2=48a8837cb352f5b95e97a1ae0d62a9d0 ruby-2.7.0-rc2.tar.bz2=cca58fdb8c5e8be8273842d54199c42d ruby-2.7.0.tar.bz2=89347748b7414f5bc7aeb8f4a87ebef4 ruby-2.7.1.tar.bz2=4bb2b2b2f0c6953859e30af140cf249a ruby-2.7.2.tar.bz2=a8acc9c24708fe29dfc287823ecaae65 ruby-2.7.3.tar.bz2=604acb258b1d8228f55799e846cfe6d3 ruby-2.7.4.tar.bz2=52705d799ed851dd3bfd5634265cde46 ruby-2.7.5.tar.bz2=d97d4377eee18b0e790510c3afed648c ruby-2.7.6.tar.bz2=1b6efacb9f129d0253d8a9faa9c21f99 ruby-2.7.7.tar.bz2=63c55e75150251d3ba092b662138e4af ruby-2.7.8.tar.bz2=f44dedf51fdb7441a7dba592d6a4a14d ruby-3.0.0-preview1.tar.gz=991df063b86a8f8412ca07f548579f39 ruby-3.0.0-preview2.tar.gz=ce14b24e923f2e269fea6441791a7248 ruby-3.0.0-rc1.tar.gz=848a8628c8abde270b66e2474049a4a3 ruby-3.0.0.tar.gz=d6af36269a1b0bc278236d371543ad97 ruby-3.0.1.tar.gz=8d1c460a9a9d48a353de3eb0f338bbfd ruby-3.0.2.tar.gz=b973af486291a1e17ad50d88472bfa86 ruby-3.0.3.tar.gz=9ecae293da9547c1438a970f04f64655 ruby-3.0.4.tar.gz=ec9de9a15acc4f205b08816d94267415 ruby-3.0.5.tar.gz=cdff2395625dc1d632fc5400c8fec103 ruby-3.0.6.tar.gz=6b5a7b14505697e6fc2b40b345679f40 ruby-3.0.7.tar.gz=147a3467facc704b5d479e809c131603 ruby-3.1.0-preview1.tar.gz=d131b9bca700ee87ea276f8233ea4c0b ruby-3.1.0.tar.gz=1ca89d713f2c18a20104befed51b3b9a ruby-3.1.1.tar.gz=702778a0ef8b7a01ef7530a541002e19 ruby-3.1.2.tar.gz=9daf064899cccc32fd564117c7a7e0dd ruby-3.1.3.tar.gz=cce38a2b2c589d59f440f67c7d8cc697 ruby-3.1.4.tar.gz=3e601ae6db76a487219a1084e5cb4c9c ruby-3.1.5.tar.gz=ce1e92ddb1230fa2d4f4367882542555 ruby-3.2.0-preview1.tar.gz=a83c91d53e130fe232e4c27ecc8738da ruby-3.2.0-preview2.tar.gz=56e7801b37612b82285c9a09cfeb28ce ruby-3.2.0-preview3.tar.gz=0ed16faae50403b4e2ba2e85ec2314a1 ruby-3.2.0-rc1.tar.gz=4657d7013702adce21ca21dfe71ea4a0 ruby-3.2.0.tar.gz=76ca7e7d71898ab1e85155d69403754e ruby-3.2.1.tar.gz=055101c924538467c63fcbf42abddc75 ruby-3.2.2.tar.gz=eb6f18605e1e1be5dfb5b45f31bf6a93 ruby-3.2.3.tar.gz=e0ba90554f7ea41c587ffa7fcfd064ca ruby-3.2.4.tar.gz=c48283a23c72d7aae19b7f510b89444a ruby-3.2.5.tar.gz=3bd6f2b26918c8637abf56c2f208833e ruby-3.2.6.tar.gz=fa9bd65bc429a43a3e6dda8ff0b97022 ruby-3.3.0-preview1.tar.gz=0833f555b1b8d5423953600fb4146639 ruby-3.3.0-preview2.tar.gz=4f82f4c9e512ec0a53baa1be8d35ebf7 ruby-3.3.0-preview3.tar.gz=a32ede198a9da50d4afc4421a4a993ad ruby-3.3.0.tar.gz=f57422a0f995cd5a93c726f6c42c310a ruby-3.3.1.tar.gz=368e331a35145ace4948390ed76cf1df ruby-3.3.2.tar.gz=9a7efebc6a0e4810c716ec6d401dc372 ruby-3.3.3.tar.gz=beb9773cc4d9d8da29463ab175e4db28 ruby-3.3.4.tar.gz=f2e16c1a56e07e185214e85c62657941 ruby-3.3.5.tar.gz=ccad73b02d942d1e6b4c27873d4c08e4 ruby-3.3.6.tar.gz=51bcf91da64e5889e2e59c7adc7189c5 ruby-3.3.7.tar.gz=5fa3e653657d868e2c8377d2f3adb335 ruby-3.4.0-preview1.tar.gz=93b9b1040a2dd7be7514a7870aa7da03 ruby-3.4.0.tar.gz=2acf769caa47f692fea932ab81e75639 ruby-3.4.1.tar.gz=43e587b9a6de2a51dd1fa2613615542b ruby-enterprise-1.8.6-20080507.tar.gz=17e3c52e73e42809f57ad0000a6cb4ab ruby-enterprise-1.8.6-20080621.tar.gz=626fc3811eee2dc92ac27ea63d37a8b2 ruby-enterprise-1.8.6-20080623.tar.gz=0bf8a3a93c6b37bb1260cc09b05e81fd ruby-enterprise-1.8.6-20080624.tar.gz=de58b97128aa65209f291c66eab7c4a7 ruby-enterprise-1.8.6-20080709.tar.gz=f0ded08cec64959fa388ec6a237b9c47 ruby-enterprise-1.8.6-20080810.tar.gz=bfdcf06f437af825cd9f2d321f9d1896 ruby-enterprise-1.8.6-20081205.tar.gz=50206bec9be2e08a862e5ec2e70fa693 ruby-enterprise-1.8.6-20081215.tar.gz=aab57b7d5061c1980bec5dbe311ec9b2 ruby-enterprise-1.8.6-20090113.tar.gz=e8d796a5bae0ec1029a88ba95c5d901d ruby-enterprise-1.8.6-20090201.tar.gz=a965e6789b553efaed72191825b13713 ruby-enterprise-1.8.6-20090421.tar.gz=c777b361aadccda7988be16ede7ab15f ruby-enterprise-1.8.6-20090520.tar.gz=156572a8296bd0440970a6bb95018a13 ruby-enterprise-1.8.6-20090610.tar.gz=0bf66ee626918464a6eccdd83c99d63a ruby-enterprise-1.8.7-2009.10.tar.gz=3727eef7b6b1b2f31db7d091328d966e ruby-enterprise-1.8.7-2010.01.tar.gz=587aaea02c86ddbb87394a340a25e554 ruby-enterprise-1.8.7-2010.02.tar.gz=4df7b09c01adfd711b0ab76837611542 ruby-enterprise-1.8.7-2011.01.tar.gz=4640634347cd8e5469cb718853e2112e ruby-enterprise-1.8.7-2011.02.tar.gz=8c5faa11c1ddaed3f44b7294711980cc ruby-enterprise-1.8.7-2011.03.tar.gz=038604ce25349e54363c5df9cd535ec8 ruby-enterprise-1.8.7-2011.12.tar.gz=1e5f3059d52a67ab5d91d472b756de08 ruby-enterprise-1.8.7-2012.02.tar.gz=8d086d2fe68a4c57ba76228e97fb3116 ruby-enterprise-1.8.7-20090928.tar.gz=ae00018ce89d95419dfde370fcd485ac rubygems-0.4.0.tgz=86a64616548a793e1a5f825f0dd385b9 rubygems-0.5.0.tgz=80d151edd94a06bcd2452a7e272b4d96 rubygems-0.6.0.tgz=5df803f5a04654833690dd32283de741 rubygems-0.6.1.tgz=c4a0faa9f876ad805ae80d1396a29d97 rubygems-0.7.0.tgz=ede9b55343219e8b3491793aa12c46f3 rubygems-0.8.0.tgz=9ef6e3c34dcb54e295c8e57321ddc079 rubygems-0.8.1.tgz=6276d268b420c0d61796cdbf6d28dae4 rubygems-0.8.3.tgz=6e6da80f61d6e77d0ad9e531767f6fd5 rubygems-0.8.4.tgz=a2ad2d03dae8a98002c2a7cd6c3ed352 rubygems-0.8.5.tgz=b917c084e1e6e99d8e102af8dd687ddb rubygems-0.8.6.tgz=9de98d2f62e3f91521b0207a4dcdeb5b rubygems-0.8.7.tgz=7fc04b9f9acc0c18cbbe6222be8d0bd3 rubygems-0.8.8.tgz=a8535e9c35a4c215d6ef9268d4bc69ed rubygems-0.8.10.tgz=d26592e280c0fb24c51f2837c3f48e67 rubygems-0.8.11.tgz=aa363b428c4c1fc2e076a4ff77b957d7 rubygems-0.9.0.tgz=5d496e1f415b8b4033ab867f01d1161f rubygems-0.9.1.tgz=a62314cdb174ccc88a27b8924fa79e4a rubygems-0.9.2.tgz=cc525053dd465ab6e33af382166fa808 rubygems-0.9.3.tgz=600940a22ecd79e28e0fd37ad1f1d871 rubygems-0.9.4.tgz=b5680acaa019c80ea44fe87cc2e227da rubygems-0.9.5.tgz=91f7036a724e34cc66dd8d09348733d9 rubygems-1.0.0.tgz=b0b74eac0cbfc5a13f895ab6f803edc1 rubygems-1.0.1.tgz=0d5851084955c327ee1dc9cbd631aa5f rubygems-1.1.0.tgz=85f994904c5b4045f0a859b29d0be717 rubygems-1.1.1.tgz=1a77c5b6b293a3ccd5261dc120641ccc rubygems-1.2.0.tgz=b77a4234360735174d1692e6fc598402 rubygems-1.3.0.tgz=63d3dfc038710eaf532b6a133225115a rubygems-1.3.1.tgz=a04ee6f6897077c5b75f5fd1e134c5a9 rubygems-1.3.2.tgz=6204d0a4c526a1d8fdbce746647b179a rubygems-1.3.3.tgz=0e9697db44d812712350baf28016b4a7 rubygems-1.3.4.tgz=b17b398503253bf36a101c58f02a226f rubygems-1.3.5.tgz=6e317335898e73beab15623cdd5f8cff rubygems-1.3.6.tgz=789ca8e9ad1d4d3fe5f0534fcc038a0d rubygems-1.3.7.tgz=e85cfadd025ff6ab689375adbf344bbe rubygems-1.4.1.tgz=e915dbf79e22249d10c0fcf503a5adda rubygems-1.4.2.tgz=b5badb7c5adda38d9866fa21ae46bbcc rubygems-1.5.0.tgz=49bef7186bf3c0ca6ee7adf4b585bccc rubygems-1.5.1.tgz=47577a5e33c9c6f1e3a56aff7f51d0ff rubygems-1.5.2.tgz=3951f94c09c16c774c8bcebc94fa5374 rubygems-1.5.3.tgz=38bbbdc17aef923fb41f054cf8421116 rubygems-1.6.0.tgz=abd27b5a9002100ff74ddb398a1c9689 rubygems-1.6.1.tgz=a77c64896aaa10d64aaf34f5c1488173 rubygems-1.6.2.tgz=0c95a9869914ba1a45bf71d3b8048420 rubygems-1.8.6.tgz=8e95d0c5b377a003f3d54a49461e81d9 rubygems-1.8.9.tgz=fc399445d693c29778779e5828ee5e90 rubygems-1.8.10.tgz=5b08ee31740c9b0bd36f6c04d537e7d4 rubygems-1.8.23.1.tgz=5259ce3eb7988950fa3aff9051a5de91 rubygems-1.8.23.2.tgz=fb377c7fd387df14a33e529153adc316 rubygems-1.8.23.tgz=178b0ebae78dbb46963c51ad29bb6bd9 rubygems-1.8.24.tgz=3a555b9d579f6a1a1e110628f5110c6b rubygems-1.8.25.tgz=1376a258d43c53750a8df30e67853e10 rubygems-1.8.26.tgz=0ea47f1efd010f4c82b8a51a934f48dc rubygems-1.8.27.tgz=6686ad26735c21d0d6e58b6192c7da5d rubygems-1.8.28.tgz=2df78039f391fb1f71c02c2fc5671c94 rubygems-1.8.29.tgz=a57fec0af33e2e2e1dbb3a68f6cc7269 rubygems-2.0.0.tgz=89ce467eb2d55657e9965a46559acbcf rubygems-2.0.1.tgz=2652ab6f001a873b8933e2ca09505974 rubygems-2.0.2.tgz=3471f140a70bcd32a7495b545cfce790 rubygems-2.0.3.tgz=854691f145cea98b4100e5b0831b73ed rubygems-2.0.4.tgz=3ec32dbe783bab37a87f50758f8efe13 rubygems-2.0.5.tgz=641d82672937d40d664dbc18f49cdcec rubygems-2.0.6.tgz=0633f50db16112bf6c3cf9bfb9ceb9bd rubygems-2.0.7.tgz=9046700f1222712fedfb836fafa08c50 rubygems-2.0.8.tgz=5432214a740c0d13482e43a5328a6518 rubygems-2.0.9.tgz=bc55898247297ffa190223276b1b1bd7 rubygems-2.0.10.tgz=5457ba403cd9a5f4f5fb2ef4a2a1c03e rubygems-2.0.11.tgz=0f28e3fde3348c0f23ceecba73a6cbef rubygems-2.0.12.tgz=99c416517e2de1146d2c6fbb4c4c1441 rubygems-2.0.13.tgz=3970e66a670ddb6d1aade9c7b18033d4 rubygems-2.0.14.tgz=4a7aa0b144e465230ab5d7b59dfd7e8f rubygems-2.1.0.tgz=9a9d242baef5e58fbfe79ec5206cd316 rubygems-2.1.1.tgz=b34d6f4028b69a84123a6b7cb0ac8028 rubygems-2.1.2.tgz=b5c5c4430be60f911014216d41886ef3 rubygems-2.1.3.tgz=ac7bbdfecd49f9304756aa5ebeb51400 rubygems-2.1.4.tgz=aa502b1ea90fbdd14ca9b32634795c2b rubygems-2.1.5.tgz=60564b762d4e186815997653b1c876ab rubygems-2.1.6.tgz=e11237a8f87dbd8c085770551d64a8f8 rubygems-2.1.7.tgz=b721ed7d5fd57ed05f77eb21a3a592ee rubygems-2.1.8.tgz=cc4c84c0482840389a457740e8083ed9 rubygems-2.1.9.tgz=2636bf26c0a9ec889c7bd938887bd9a3 rubygems-2.1.10.tgz=6fa671d7d6605de73d16f529cf7bffb8 rubygems-2.1.11.tgz=b561b7aaa70d387e230688066e46e448 rubygems-2.2.0.rc.1.tgz=f7d80b612339169569f2675155c202f1 rubygems-2.2.0.tgz=3c16e50673adb99d1ce76d5231f764bd rubygems-2.4.8.tgz=dc77b51449dffe5b31776bff826bf559 rubygems-2.6.10.tgz=ab5a0028d2a0653691b29d7463bd0892 rubygems-2.6.11.tgz=8d514b836fcf3ae2c20b4fe8d5cdc3c5 rubygems-2.6.12.tgz=7c454ef88b716c1a123f62b26bb9612b rubygems-2.6.13.tgz=e6f19b51614055d826e431549a12a80b rubygems-2.6.14.tgz=e0a6914ce03b91dfc6d448ebf292f145 rubygems-2.7.0.tgz=771c40015538c0f225c5249e4bc7d441 rubygems-2.7.1.tgz=65646f28f3c36ccaa7f991c17e15b8a9 rubygems-2.7.2.tgz=312a238ed98a61d2b3d165b790b6062b rubygems-2.7.3.tgz=fb3a1927a1842b75677a24f48dd63ddc rubygems-2.7.4.tgz=e9bbf5a4cc9a74293884b91f49603ea0 rubygems-2.7.5.tgz=516a4f219976003feb4b4f797cbc66b0 rubygems-2.7.6.tgz=366cea352c2b1243db726013c3d76fc4 rubygems-2.7.7.tgz=b6721f6ce4af08f68c6f513bbddfe484 rubygems-2.7.8.tgz=a3ed89a34e1ae8f9da0c620a8aa35f12 rubygems-2.7.9.tgz=173272ed55405caf7f858b6981fff526 rubygems-2.7.10.tgz=464754059d8ca01c1121a1233d866e8c rubygems-3.0.0.tgz=3908105894e531f7ad3aceb8b41dcbcd rubygems-3.0.1.tgz=1e8af9b87a67f15841ad2be7d5725a5f rubygems-3.0.2.tgz=d8db1b516ae1e35b8f6f56cb526f879a rubygems-3.0.3.tgz=b7a7dd5f85485334a6cb61b7dac20cff rubygems-3.0.4.tgz=7d0c49077a2d19f48d88567cfa3cf17a rubygems-3.0.5.tgz=4664467d621d719688e4778d147c306a rubygems-3.0.6.tgz=60d84e843b131fb87c8fd67e8fac6470 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=3e9afdf72f153e2f66259fc2b6fca594 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=c30459287aec83548cfcb17340fa73d5 truffleruby-1.0.0-rc3-linux-amd64.tar.gz=138f6814451ce634b0fae3aca5579248 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=94ed54ecb65bea2166a2159431b0362b truffleruby-1.0.0-rc5-linux-amd64.tar.gz=9e5428611e22b093d05afebbe0ccbc2b truffleruby-1.0.0-rc5-macos-amd64.tar.gz=b32a254fed71434c3431fb2effb35c5a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=7f394a8c7fe356b7bd36683c57f74ebd truffleruby-1.0.0-rc6-macos-amd64.tar.gz=f033329d03f1f846d25728c2af9d7524 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=184e98f2d6939f63db4b915943ff60c6 truffleruby-1.0.0-rc7-macos-amd64.tar.gz=d19213b33011f7a55e0f32d25e19184f truffleruby-1.0.0-rc8-linux-amd64.tar.gz=a394167c0331c6d8c1123e1f992e5411 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=dc1bf0fcfdd5837ae0ca56d6d6e5f7b0 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=f6ec25bd532bf0551d35327d1aa4caf9 truffleruby-1.0.0-rc9-macos-amd64.tar.gz=c80a345f9071521cf1961ab75ebc7dd1 truffleruby-1.0.0-rc10-linux-amd64.tar.gz=3a889726efcdf33feb7ef3df13fd5f39 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=bba618b4483b79eebf9f0e7af4078502 truffleruby-1.0.0-rc11-linux-amd64.tar.gz=a25e179ca0be96a1bc737a600729c195 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=bb8d8f5525e1ba86bb039e56291c6c7c truffleruby-1.0.0-rc12-linux-amd64.tar.gz=872774837057489250527bf863192115 truffleruby-1.0.0-rc12-macos-amd64.tar.gz=bb4a64e6c4882fd0c5e412bf9c57720b truffleruby-1.0.0-rc13-linux-amd64.tar.gz=0f36eed2eb36846785fdd4eae24adfa0 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=1bd3087a0f2df4c006b87c9488ada6d4 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=9eddd1aa98c9649e7c01bb10bf28c471 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c93643f1d00b370411310ee7a1dd5330 truffleruby-1.0.0-rc15-linux-amd64.tar.gz=bc7339a6218ea991f2c72ce8759cb6e3 truffleruby-1.0.0-rc15-macos-amd64.tar.gz=1671d08dd2f5026d58b326fd55c9b7de truffleruby-1.0.0-rc16-linux-amd64.tar.gz=5564d17f19b8ee0edb96ab5b1bfbda98 truffleruby-1.0.0-rc16-macos-amd64.tar.gz=61583b529b6a1337398b0966db952d24 truffleruby-19.0.0-linux-amd64.tar.gz=006220c7bde7d0b5c72481133624a83f truffleruby-19.0.0-macos-amd64.tar.gz=9ef7f5a311465d35e54ac6e00ec3d169 truffleruby-19.0.2-linux-amd64.tar.gz=2f7fe574e0695fb6001f4f5282aa2f79 truffleruby-19.0.2-macos-amd64.tar.gz=aa20f76b3eac1f4976a507364201d1ad truffleruby-19.1.0-linux-amd64.tar.gz=71368f8371069017d911528f052b0a55 truffleruby-19.1.0-macos-amd64.tar.gz=7f086adbc89fdfaed35273394ac3ac66 truffleruby-19.1.1-linux-amd64.tar.gz=c1ad4d17bb40e214b124222f3a7c6db6 truffleruby-19.1.1-macos-amd64.tar.gz=f4e76b0612319b4a82480cbd1fc90210 truffleruby-19.2.0-linux-amd64.tar.gz=458ed5fec1a849ef5b00e19b0e25d5e9 truffleruby-19.2.0-macos-amd64.tar.gz=dc324575ad20e3054980835c24ea7161 truffleruby-19.2.0.1-linux-amd64.tar.gz=ad7444145550d89931199159163077c1 truffleruby-19.2.0.1-macos-amd64.tar.gz=b5bcfb0aaded1e2d1763089ab6c9a14d truffleruby-19.2.1-linux-amd64.tar.gz=fc4879d2b0cc22c152a8bf893a72c346 truffleruby-19.2.1-macos-amd64.tar.gz=71448ff3f8f1da086f222751d3f853bc truffleruby-19.3.0-linux-amd64.tar.gz=dd44ac30b5a1ef3a7d61172cda9b30b6 truffleruby-19.3.0-macos-amd64.tar.gz=41daa52f0f308abb77a2b91c1b7e0f3d truffleruby-19.3.0.2-linux-amd64.tar.gz=2db2cb5c29523c9bdb6f59dfa0bd74ce truffleruby-19.3.0.2-macos-amd64.tar.gz=edf1603643938686dce57139aadf7d3c truffleruby-19.3.1-linux-amd64.tar.gz=a14c028351f7a3965bcb56e9b22364de truffleruby-19.3.1-macos-amd64.tar.gz=a8707d0af3eda694ec07a5387d3443fb truffleruby-20.0.0-linux-amd64.tar.gz=b30110ecbc50c4fce402fdf44c45dad5 truffleruby-20.0.0-macos-amd64.tar.gz=0671e5909cefb9a2c12c473fc0110821 truffleruby-20.1.0-linux-amd64.tar.gz=4592b5fc3636d82fc998ab6fe0a43584 truffleruby-20.1.0-macos-amd64.tar.gz=3c0be43db86817c7037d3ff5053d322d truffleruby-20.2.0-linux-amd64.tar.gz=e9859decb24829f9a189d88b3c2e9b79 truffleruby-20.2.0-macos-amd64.tar.gz=49e7ccf8f9e60d6c59b3b07b854466cf truffleruby-20.3.0-linux-amd64.tar.gz=93a20845f7d9d39100761424dfc0a734 truffleruby-20.3.0-macos-amd64.tar.gz=b178b7a94fac58400450417612fe3441 truffleruby-21.0.0-linux-amd64.tar.gz=c03304a505c8699e697acecf5030d95f truffleruby-21.0.0-macos-amd64.tar.gz=019796be37a58ef8e186a625f2ff5d07 truffleruby-21.1.0-linux-amd64.tar.gz=065bfcc48f6925410e0da21e16428b64 truffleruby-21.1.0-macos-amd64.tar.gz=325f6854c10d8a3a114c80da582c469f truffleruby-21.2.0-linux-amd64.tar.gz=0aec44721a040845347f18c1f72ceb75 truffleruby-21.2.0-macos-amd64.tar.gz=76d27715b20902df5779f7a0c00852b1 truffleruby-21.2.0.1-linux-amd64.tar.gz=f68e9b8a9f9cae5efc5ac45a7d9e760d truffleruby-21.2.0.1-macos-amd64.tar.gz=b021e50fc94cab590b49d27f2ea821b0 truffleruby-21.3.0-linux-amd64.tar.gz=359aca79cba4e08f9955d9c6543c2189 truffleruby-21.3.0-macos-amd64.tar.gz=d9e2e2c6fcd3ac16f0c37b0ccffb4f41 truffleruby-22.0.0.2-linux-amd64.tar.gz=324327026e9b2963a8e5fb4ee3f4e216 truffleruby-22.0.0.2-macos-amd64.tar.gz=7029d0e291d498a264d9b413729a3e17 truffleruby-22.1.0-linux-amd64.tar.gz=9329cf507ba8ac529e93156cacc1425d truffleruby-22.1.0-macos-amd64.tar.gz=353242978b46cafc34b05e2c81206096 truffleruby-22.2.0-linux-amd64.tar.gz=5d676377056ae94fe847be721c20405b truffleruby-22.2.0-linux-aarch64.tar.gz=b774f4b7d330842521f1e6e56cb41db5 truffleruby-22.2.0-macos-amd64.tar.gz=e45fdd9a05aec6220a76fb707b0a5ae8 truffleruby-22.2.0-macos-aarch64.tar.gz=ebcbfe056d90d06de4bd0a9d699bad8f truffleruby-22.3.0-linux-amd64.tar.gz=ada8bc5dc52aca8317eaeab04d91e877 truffleruby-22.3.0-linux-aarch64.tar.gz=11493301d5519aa73e8f0e140cefb581 truffleruby-22.3.0-macos-amd64.tar.gz=9e27c677637b69b0460fb0a4569a5cca truffleruby-22.3.0-macos-aarch64.tar.gz=eaa1c9020b521226f8bb48b8c7e5c596 truffleruby-22.3.1-linux-amd64.tar.gz=243d926f038fd2220c03dfbe40ef58c3 truffleruby-22.3.1-linux-aarch64.tar.gz=01487fe680863381489bf2a0a2ac162b truffleruby-22.3.1-macos-amd64.tar.gz=b3d5a777d94856e51034d81076e8ef72 truffleruby-22.3.1-macos-aarch64.tar.gz=320ce75730a5b9f16f111eb7ef5e4e09 truffleruby-23.0.0-preview1-linux-amd64.tar.gz=76c1cb23ee63ba4de93a0c23784bfca9 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=eec3fc74565f08e9468982692f7f9010 truffleruby-23.0.0-preview1-macos-amd64.tar.gz=50e38f3cd548dfe78f397f76ed577bf1 truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=b769bcf9b843d9b2980def1e2139284f truffleruby-23.0.0-linux-amd64.tar.gz=6e1a491406c5dbf42de10fcb3ed7dc1c truffleruby-23.0.0-linux-aarch64.tar.gz=5c3663f64bee707173b2684355a9a42e truffleruby-23.0.0-macos-amd64.tar.gz=515a9a8a0f39ba9399e869cd418ebff5 truffleruby-23.0.0-macos-aarch64.tar.gz=57e5fa52270e692b82c445107fe6b6a6 truffleruby-23.1.0-linux-amd64.tar.gz=f7511c19045e57e72f9b5415bc17c8e8 truffleruby-23.1.0-linux-aarch64.tar.gz=e8a20dd919a2ff77b7cc5457e853d15d truffleruby-23.1.0-macos-amd64.tar.gz=d3b6a3cbc0a230ebae6f3a462a32ddd3 truffleruby-23.1.0-macos-aarch64.tar.gz=ee74fc5d192c2fb8afd0458d2d429c02 truffleruby-23.1.1-linux-amd64.tar.gz=d7e1c040da170aaa36b5f5a1d106d237 truffleruby-23.1.1-linux-aarch64.tar.gz=cf508ba3787be20c03bac690f3bdbac5 truffleruby-23.1.1-macos-amd64.tar.gz=a662a8672871524808500dddef3808c1 truffleruby-23.1.1-macos-aarch64.tar.gz=de543312024993a533e3caa63b396127 truffleruby-23.1.2-linux-amd64.tar.gz=e3e5b01b291d7fea61be2be842c7e8dc truffleruby-23.1.2-linux-aarch64.tar.gz=8fe26f643fa81eec6de3bde7024c858a truffleruby-23.1.2-macos-amd64.tar.gz=83bc41bf699fa847df7e60412bee2823 truffleruby-23.1.2-macos-aarch64.tar.gz=7dbd2e182cfec0cf2d2e37784721903f truffleruby-24.0.0-linux-amd64.tar.gz=202f05706d28faca75d5e3cd0f9bef78 truffleruby-24.0.0-linux-aarch64.tar.gz=4faaf4edde4f6a516246b7c2f4ee80b3 truffleruby-24.0.0-macos-amd64.tar.gz=d07f27e0e29398c6de836b0049105c12 truffleruby-24.0.0-macos-aarch64.tar.gz=10cf176718968893468caba617c02141 truffleruby-24.0.1-linux-amd64.tar.gz=2914bfb81b136cd1fb5736c0a40068e3 truffleruby-24.0.1-linux-aarch64.tar.gz=429e6ada9a95ea23ebb95d01f90eb0f4 truffleruby-24.0.1-macos-amd64.tar.gz=e3aa5ab128f5d169d93f2d6df98c4e77 truffleruby-24.0.1-macos-aarch64.tar.gz=6f81a1afe1b89a40f00c9bd4216ec45d truffleruby-24.0.2-linux-amd64.tar.gz=1a826ea6323a25becce5940d8e6c4642 truffleruby-24.0.2-linux-aarch64.tar.gz=45429f35653bd8cbc328eafe81d15e8a truffleruby-24.0.2-macos-amd64.tar.gz=f68aeb26783d048ae5f78e1c13739747 truffleruby-24.0.2-macos-aarch64.tar.gz=df05f94696b4f4584a259001a3d4d1d0 truffleruby-24.1.0-linux-amd64.tar.gz=14aa05250088f17491072e500c22c039 truffleruby-24.1.0-linux-aarch64.tar.gz=3e26495f8aa7b810ec5794a69e93483a truffleruby-24.1.0-macos-amd64.tar.gz=53b6251cdd359176f9e52fe05f05e949 truffleruby-24.1.0-macos-aarch64.tar.gz=28d61b8a1a307cbdf988313c8a1f77f1 truffleruby-24.1.1-linux-amd64.tar.gz=9ef530c2ac5f597100e69e4b374182c3 truffleruby-24.1.1-linux-aarch64.tar.gz=efcc6f5c51be84d2ec99e6cebccc586a truffleruby-24.1.1-macos-amd64.tar.gz=11e2f0f62c55fcc8330cd66393abb1fc truffleruby-24.1.1-macos-aarch64.tar.gz=eaba15df3e46cd3976bedaf6f086aae2 +truffleruby-24.1.2-linux-amd64.tar.gz=ada406523c5cf80f7655a9314902e2b5 +truffleruby-24.1.2-linux-aarch64.tar.gz=5a5dc457002a8a65b21264efd0387d5b +truffleruby-24.1.2-macos-amd64.tar.gz=cb6142250e4b0b2b164ffa7ce47d5f29 +truffleruby-24.1.2-macos-aarch64.tar.gz=f73e0af905cabe695b0fe6c73df699a1 yaml-0.1.4.tar.gz=36c852831d02cf90508c29852361d01b zlib-1.2.3.tar.gz=debc62758716a169df9f62e6ab2bc634 zlib-1.2.5.tar.gz=c735eab2d659a96e5a594c9e8541ad63 diff --git a/config/sha512 b/config/sha512 index 97665be..19c7844 100644 --- a/config/sha512 +++ b/config/sha512 @@ -1247,512 +1247,516 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.0.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.1.tar.bz2=aaf7f9e30b3998b8586764f61d09e434c32aba7479aa79fb6afa71ab11c067384ef3a4b9215a1a3639da807f4f642b9efc62b37b55e989b7ed7d75cedc7cab40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.2.tar.bz2=b834ef95d52abc1f0c224193391bded9b4d2089c694378dd5aa45f8b2b1ea41b1c300445f766841cbb8cdb1114491ffe0095f518e1600746f5f583dd0cff9c1f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.3.tar.bz2=9df5ba9423e0a8af9d825e59f8c69889c70af0f6d67f96708a02d7d61260c83474e2f7b2f240af399911bdfc56850255b4f34554f7013d0417a13bb782403aa4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.4.tar.bz2=1d4b55a6a34249e82880fbacfc1d97a093600005deb982c6b42ccb14bbd7bf1db14e0f6d73bc25f1addd72378850f7edcd63738f2b3cbab569e34e89d563188d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.5.tar.bz2=29a76dbb28d5b63ee0ce64cc2e7d022118350a550d3693b8e38d559bbc4f42fdb6b63af4bcc4ebfffc5c0fbabbf2e18db7228e655de3bb416e344a61737870c7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.6.tar.bz2=122322fb462f8fdcb065e6f9d9968027c320ba9be9ad6fba9011760a7296cec1892a0780d7436903cb7763f5d18cce11860c5c7fce82890eaa139a94d5e89428 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.7.tar.bz2=0c17f52a74b73041c588ed76f73862d179d7b9abf9de61279dc74ba7b7f170179e0db5672a403dcc209b6dec9a865a88a382f5df01f5e6ba4cfe0f66232b4a15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.8.tar.bz2=1a30bbda34fee311762a2f05ac7fbcfb4f373f8840f86b9762b0c07f1cd397e3eb3be83210221384333b625a243c7161ef4f368602a613760391265309e4f304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.0.tar.bz2=edf31b2dd02208c96be25c2f4f7d35e2b122e5d327133545e16038836b848b90f81079be4df47c5493bf4ead1d464fa72a8d0d405bb2509ab0db6335c58ff793 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.1.tar.bz2=91cc7a9cf493c7361f3d507cdbb8e258b7dd710100cca8053b77569c07c04fbc2f72fdceb9fd9a3a5d01f4c423a206da97730c356d017157bc2454041e1f1fd4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.2.tar.bz2=8ea603a27560ddde5fc639b86381a303f886ce80384d8edd0e7bc806f10649760d75a76dd5f2ee445371254e727544ec12df49d7fc8876890b73237f4eecea1c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.3.tar.bz2=c42f24668695be5c291836ae6f39b4366e0357c9bb63cf8be2ad36cefe0c6d19cb921a43159d49d4d062dccc15902ec1698a1a6842d13ccaec45c6cb628da4b7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.4.tar.bz2=3ac89131407faefde80bf2e1bed4baa51c371ab4bffc18c8dcf2624f4d1068c9f933eb66486a2bc7c6c67f674c5bd06747bddfe1f1f9dcd939458a08e1bc6108 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.5.tar.bz2=8ca9a9387b8cb434828fa36e5886bc8a28d70fa46d3e20df60389880477fa2ee54fe63c0c14611a2cb0168ef1149d205640c6003e6a507400ad5fc34fa641bd2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.6.tar.bz2=52795cd7d112ff437adf603f58130ce539209628d2224a685d060d67a07325717981fc6f91736d4abfe014ccc8057bb40a097fcf85f5046aabde0019d08bef16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.7.tar.bz2=bc179a31c746ac6e632ce08f57a8f403d4e463ad72285c0ce008d7fa39b88a22be3a43014c9eb019f6a39d022f9448ef151a8d03e89a4d2e767c4f77684e3750 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.8.tar.bz2=d693e3a800c2200c74b24c207425f41cef206a0b3f20625d18b1590e9891f409d6643ee0e7ab8fdb6e1e85de6fea52c6a307bf8f65324ee0f9ac33306ed1e876 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.9.tar.bz2=4b6cab99f6b7be7705efa5eb6f321b5eeb1d1c6e96d4113bf96b57378aaa4950b39f40ad555f630f17d216d235972f028617ea43c28b1970772ffd16be3d9a67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.10.tar.bz2=40bd90d231fcedbe34ec9963eb59645fdd1036b03056b9b8fa3b56900deb86d94e2a256f90e6aed297288d6797857a3ef9fc27bc6ed05c017b5c8e8ddc465df1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.0.tar.bz2=c1df39ae526da7ebf87510017d7694e6f78c59871baac4e9c5f2d13c22cbecc30925e2783ad93f741110b7c3802e9f25a6c3ff85160b33a4080b0f1fb02f7740 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.1.tar.bz2=930f6f7f654fa14076c84365fbc771d5b09679588c4c478d8f6944770c53fdd37213bdad159fd231efbc079b85ab7ab648b0a97fafd666c38d0e280046c6e2ef https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.2.tar.bz2=cb62ca82d57dfc0e21e532d4b523f49c559c4ed5f3d73adbd9d650bbf23c694d382f3cc25eed6a8630f23e4780db127b4b8b6ecf6fc24b0f6febc820dbc6af3e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.3.tar.bz2=708209a89a18cd99c02392307d2bc63e46bd38c72c8ab0e982b28285f8e006d4ed77e04da3900c880eff01c3350033cd00ffc3be1d3a12c4ee5b263282f0dd05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.4.tar.bz2=c94f5b3129ff41da1b07da1cf742592e9822febf6bcfd0e9eb7145c00b732fc66625056bddc72fe9b631742c70d0e731cc6a9a16a089c7b559ae963b072578eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.5.tar.bz2=b4d20f79eebc5496768fc6adb0735c6a23cffbb39ceaf9c2da42851ff7842dd2318c07877d89564176d206e22b8824d2a3c637b5ef02c5caed0b2b5276581032 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.6.tar.bz2=a09ab93c3d6936d30065236ff2abbd0295988a9359f5a76425cecab47af0ca5b6829530d1708e9ddc9e78d1fbb7c0359b9c7e90227870537d099ccc89c73844b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.7.tar.bz2=f6086c879f8737eaf6eef4461d23270e9e43811186a22f35ed69a8303eb933136e7a690bce2d9e18bcff730725292075e09db0f2384d0e26018b7f2a0df70b32 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.8.tar.bz2=62c631026560ee310a849483f1b48690075477942ce86e0564e92f5ca7834553c435a35a1d6d8dd957c3a7be24c63c32104518995eb3a96e61066a04887bb0d6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.9.tar.bz2=0f10741772d2498167c1eb2aa263292f99748518a4ec03dc19440eb5befa075fa69e68b08a09af6eb2e02e462ff20ab10e4121cfeea7bdc938c04762d81fbc4a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.0.tar.bz2=908132a47bd996f8c76bed54078e71abb154294f97dcba779b4cf0d3b82e31c4635dff89e97d5f6b4f1d797d854c6d020afdf9dc77b10c0e522755fa194a17c3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.1.tar.bz2=39c867ac0af48410c0bc6b01f1ecac00616a59cc07f3f5a3e7cfe8f786b70c7cacab65550dfee777d11b8b7a3ac173bb22c602df370eef6a04b40f8e539025ae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.2.tar.bz2=2f04566f6d778121281bc6ba23ec57ad408049e649b351585bc9a3184848c71873910e159f7fd3909c7372378152f5ed264070aefd45933b97980e80f6df4deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.3.tar.bz2=940375b11c525e3f0bf00e19013eeb886bf85b8d8b66d86d53740170b0ae16b14faa491dbcbec29238f875f84204cb0d52ade17c180d71e129cef5254f338f0c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.4.tar.bz2=1c9d41d7ab7bd69d7e3baa3c4149b1938cc147beb2a63923dadf2fd959732c8cc824e2add0946bcd62f44b0e1d509b80b4796a5929841cda8d28f3a8207b17df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar.bz2=f47443a53e3008cb7b7b7afcbbf1adf44887769e42b3defafceacc1e50e349c9000b98010f853c6b7cafdb54b85b640732a56a8e11ad8e58fedb5fa4724f68d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=fc1c9a08c48ad91edb4afcac5244f386d63940fa906dadaabe02a1eb025375443c8174a6ad1acd50f4583d6c57a88feae86e697ec15c8a25bb49f280b1357783 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=aa611f7c350374d2c5c8652a694022e038cb5a65fde795c43e927067f155d0ccb368b281b1575e679b84cd7ba6042216dc28149e138256faf62dd3060ec0a6a7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=ab04071b90ddb81b68f064fbc9f2bf726729220e4359113556d9b71f3549483f122b796b3b1e4dc8404e6f44a4bdd02e9db2c8066974acf190448c4d5a97dc6b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c769fd3814bf31728b83f2bcdaf0928e6423150609f3db903631f9db68ce0a0f9c87bfce5f93983cd962662148a66cc55f5f42bffc1a1b5a237e6938726629ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=c231f8ecd46760db49796519645bcb5cc9fa1c0582abbc419a2ca81805c81fe8912dc32dcc2c5192ca9ef0d502da8f61ce1ce7ecc87b29edad3a144a8a0c200e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=b41557c83084c8e5bb263aa944499932ce7d84457e4e307f1cffecf62aa44f8543a06299e38fee17ba64f8952048612f9289e24c35acfe2ba02b913c15dc1405 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=001d10af5833a03b42d9a254bde844731d3a796d98ce2efea90fc68e4638c7cc3be31a34fa163d4c5ac18c60e685e5cf2ccf88fac46ae6bc587a48ea35cfb09b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=0a8681afc19372ccd9409bb017967f86c2e6642e083ca47ec904cccc34242040f710392d916a69a327ae6a0bb287d97bc05bbe116a1d93478ae282b32e5fcfab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=e505ff2f00334870d07f4ec9348648b7f3b91dbbad1fddb2f60f7a38572a66a7bf081fc7b386f800d86113aac1ce3cb739c86cf0d6da2bab916a4432ad557c54 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=aee6000ac886cdd4e4044a7b43ab20d54d1e99f6b893af69d0d7e7a202f4ae861f939898580c60996b0bb7c6481eecad69a20acc83c75cc594dfbfde3a22c476 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=86f4e6948eaf2586e018570f09232b94f907766590eb75f00992531ef74676070ac5a2308e121ecc1c23388ece4dbe1ee8a4b2a7ab99ca00a28d6583d6df3d0a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=1bf867b0af84eae4e7996047727fbc7ef459afd3b2ca5885f658a74d62910d00eecddbf0c11b23265c625c26b420421ca5add40079438edca8eacd8b5c0149a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=92a3b217079f9d960cc4fbb5908f7fc7ef71cc3ec8e5e404341e2b8875534c0542167d03b61577776e0b0f049f9ba2e3235842be381b4d484845768adaa6e3f7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=608f0f9eafd72226fd1b39f6c92d0f1c6d3aa7ede096cc390fc4f8bee4326b0937767bc6de84fff536dea48cbf9bdb8ef5598670235e013ccd630b06c5b8fb05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=40cccacc66cc4b7891b01c35375ca913efe008157ae540308b649e14f5753f34f1827861c6e16b500c49ac95e1aa22e1c01444faca5dce71f981452a9e0f1b67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=5a33d600e55f7b8755725d7e2f2102cd76720d524d7b378d85fc21ea8d853166dd97e2e615ab18f9e44122e3404b439dd123f8e23d6ade5328982fe72db2af0b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=37e3a4011b3603807c6e0fd48818b256caf272b3720ee654f38c0ae202cffa21600f9cc751b5335b57905ce67db185b37f548ac9c84d6acfc567f0ef4866635f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=6648c1b6bd962e30e89eacdb6130b1788ccdf6ed05ea13eac32eefc222438a298de8121937262851cf5c4cdcc1a804d5d8bf19667819db6599bfcf79e57b0e17 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=ac690170a6801fd741efb88e67961c0c3d717029b3bd9c6e243074799641c940416fc9cde7b4ba2c56e79551d6cb7fe5f7977649404da0d20d1819d7d3ce0bd3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=e6edfed2dd9d6649c47b1dc1b102f933f76a148e6dd8441add2316073dd255cac851e972366e4821fcd665e55b375fac757d189b7552baaa0b49e82349c71b77 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=69c4895076690037199f2a9b98e622f6b5e3c23ea02de79bcade6193da2b1b88ed0c28006059f4ecc502298442275e7e7324232de04a2f0ce430665057410a05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=175777563303c6d6a04393938ffa7e36e0bc6db33f7d2cf1d42ec852b41ea26dd7d50569eee4cb00497e6bceae95592365ea6718a35451e5c929d8a085aa9649 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=b668f0cd853615fec38253b264115ef0fedd21a7879a663ba844f4c3fa8b87e5ccd8adffbaa12ffa3aa16b108a2a439cecf827e7d8e19ec8041d46e758abc391 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=2039b1fcf55cca35ed3c8446eea45819368016ec1a05a5fd4c6a761b54f5cd56cb3301d5d2674af1ff75bda41eba41b7156e71ac48b88ca7a6474f0e944efd89 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=b4bb324a53c316da488c5f60803933eade9ad5c59a6d58e76787d2dd89dc2d2f18016d2ac4ab0853a40976b4beab70864a9c2d23de194bcd63ad089b2159fa7a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=3a9b5868d707d6a4580a44ab7504cb46a2713f78918142b185f0d62c5b7e0dfebc1ff551b2a52e9726befb70abbde867d2802345a01fd3e4568b9f58ac83c168 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=39007e736b28ca599ea244bf4e54b52e86597c950c0ebd8f1696a02c8eef575a734d089b52c7013d00c02aeb261dd7e2facb45f24b34c75c4bbf14cb8bdc3ae2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=0fc4e39f7382c29fa2119119a78040c611fc8298bd4765025599d3018775cb2bb28f51d38efd4306e9f04eeea20e7c2365f2fbba1233e0494a8258c3c184278a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=5dfbcefa70f5b81887d34e776713bb9c6f7bcecbda8f1c9561daa3e235c725417ab0a930f594303723f226d36306e6a73f228abfa3533280659ab387708182da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=00936db899bca33dfa8d0e6ffd4bd6b0453ad5823a450e50e3a055ea696dcf94b317357732e26208a6f34224c33a8b4a6130e5613262d62381179a52cc8f3a1d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=15b816d190fd58382a2f6f6e087f358b54003f186462abf59dbef545af9044a2b9c65576119185adc6bfd9ebcdb49f03a2a268eed4fb0f0d37aa35fa18adc1fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=3a481c35668be459688a66e4e480e11b4e58c13aecc3751da9de8a3e3282bb4a152128528a804742aa0b4380eb537b666a2b29fd79be0d6968c4ff1fa428eb7b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=c604871b39f396c539c52dd4849d1d42f37530003601f60162860efc777c85e7e1a1ee88a77cfc9ca8ca20f0448a5dde4f39cbdae67470d8d2d283d6fbbf0239 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=12042b5c30179da275fcb6155142ff2787e86cf577caef44b7c4d8175ac671cd461814e9a19f4c9b1e78bbdf041fdd06bd463aa972e194caa91e80778a56bce0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=2bf1c13616b2e255b8c269bcb2f979a45009c079ffdcb10a13e238e5d13b0978e8a974bdc1e7bf8519e15264ed5f577cc8f85a5861b3ea3a4589eb78138a3f2f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=2e7876c8c8a1f4e3cd1913023c564d9e74972ce427e85765bbe9ddf237285d7b96017c1ed17868eb912509881e05aaf96e4a6b353a69989e61c733b346511715 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=06de4f6f2761bc58d94659f826c7c86be50192b7dfdb5c8b6710b384a50299ad161309e2a8c333fa5249d0e7112f74dd0c0b0faa2950a6e74bdba68833f68702 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=597374487d196abdfb389c79d7d09b81026fe3e8043f8811497646eaf47bfa432cfb96e2af9be1a35ad2d05f2f5c800afa3f9e5adb0ea2b2d31812d219232a00 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=ba56050ce3fdbb9117c6c9e767f818ce3d467030713b7693ebb039f6888bd5d7e5f7b1986ed117414037e56e550707c3625a88bfd5d00d7319d0c7ad642fc811 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=395facf2f7a15eecc94e554a60d87c269ba70c5063b24b7bc504f579c0d12a7d858eb0b98c502016ff8bf02aaf11ef765e2291b542759fc96affa186206ffe4f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=d1d527b2e95e3a16f521214c5352bcb379b946e8be1a943da872aff0ab4b8edd93a507d693abd7a8ef1cd5ea1ee6e6bf1f838683f5a447a6cb7992de61f744ad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=e47a50392c4f3ee13a565103e0c5f9474ba0a8f5ff60fc9fe7d290b7f5f9a9ddec962fcbb103a8d3b9c7765a28ba59237975f90aa3637a06a128802ede28b3da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=77fdbe62d1694732a7307c29b4f45d0dcab7e8a729f04f45b216345336c5820715bf3f8f7cab52175c4ca1a431d867c7feef7d802dec61c2cffa4abfa8746e90 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=24da0cfc93ac536c505dfaf2dbddc7b312a3cc5c72a9f47e28b3bba760a53b584422b73da8546ca01cc44d3906a31eed7f27a3dfc0bb574f01f9c08f7c589d20 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=aee8267c4855e95a55b7ab858ca6359d635049743b8e38d34ad1430522a0cd746cd572e77884f7e10af14a731ccd8ebb9cad6ea035b0fca4ae534913a38f43f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=ba3e66bd3dde28e7193b90c44194cf7732d294e592321c482deb3b31ddd9655630f5b04aa89a43eb9d1bc222da10884e9da332bc9da78e9e1b655300db52a444 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1df8a2ad9256985b4ffb3da5b545af4160ccebdd8265711d1b642cd2285a004a42cc2ea51ce3ee78854e599f5196c66448b8e0b043846ef6e6bf992828aefb6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=cc460b3d17d460abec27d77f734e1c1e7a649769c3374f02d32a4ad00f989ff3150dab926a203b209c92475100667dd524774fc37633d71f98737ea2d8868968 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.2.6.tar.bz2=335cddbfcf26c82cf9bf9c7ec6637c1c3e30e1b10d00553f5dcc60822d40b560e412d404fa65faefbd1c9022a2d7f0e4d93c25d054681d109c7cdb5968989005 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.3.6.tar.bz2=5531048adec175ad23e3bb050ba6295352cfe17ce27203c356145008434107831186a09c00ff158f4ce9109776f381661f3047e828a177906a52143096249dbc jruby-bin-1.7.0.tar.gz=1e466a3f8d52b553c9def09827fda4b8433576b0262c40ee505602754521a00defd821d5ead5052be52baf281c6cb080fd03a8b15c628a0ee67b4e417633e5e2 jruby-bin-1.7.1.tar.gz=ef28381ca30664cf450f9d3df9927530db771d30e86ebcf535af38e1a7e26724ae2bcfe8487cd2eb349bf609a733a25528aae14beab4d13d298b5604ac7353cc jruby-bin-1.7.2.tar.gz=8155c81eea6743951db7383bd9f6b1750614927c9c0b25a6574f6d64898bb3ada2f626c6e0df6c5486561a03cc7d472fc12fe804ce66a3972d2fe02e3f407100 jruby-bin-1.7.3.tar.gz=1d19be25bf4a7dbb0edad71008704377893d3967aa4204a0d59d6883aa04462ef6798c64d0c0fdd3f5129c16ccb42e8507f3fef38ed56054bf6e689de745935a jruby-bin-1.7.4.tar.gz=d7c0ee0316c50ae5413757e956c18ca68e9d99a25cf85be978da0787c13b8978d4ff2712a3effa564cfdf07144be4a56a0cb8acc794a01f43264fe8baeb125e5 jruby-bin-1.7.5.tar.gz=a4984591a3809330b93f4ce79fd1b9c24360f89d88a03bbc76351be623893c4bfc6441375bbea452ba4f24ca8b9357e03ac938fd6c065b3e2348c0f896b22a1b jruby-bin-1.7.6.tar.gz=98600a2d46bfce14111c7eebc62716352a4b685043afdd696b8fe51c6b205eb9569fc2860423a653b842b173198c76c59767156aa48e0d23482dff3358d884f3 jruby-bin-1.7.7.tar.gz=71da2e72c65899216fa15ec568b51aa7004e2ed7dff99ca376b332d3692c83a674c688dc21ee04d177a3961a2bb3973714509d88cc14d0ba9f79c864c6258a06 jruby-bin-1.7.8.tar.gz=42d54243653ec260abdafecce1143161be63fcc38a80f71ab70fcece4bf91545a2b12ed2319f9fd6f6b41916c398a9a8e89e7f0389f59da56f2739665e74522d jruby-bin-1.7.9.tar.gz=f519f53b1d9f57cfe28982ad70b892dc6fc20fe6601d98d65a1dca9f617a0eb8fff74d0fd82ddb858fe105d05ca7c7bbf3a987677ae0363caa2981bea358c096 jruby-bin-1.7.10.tar.gz=160b701f2f500dfab64beb635e5c4dc57760dd422d0fffe8d3cf8d84ee6ea17a877ef77a0087b4888ea9db64ce7750de01a73a51530aa6666a2efdcdccdb89e0 jruby-bin-1.7.11.tar.gz=a53b0fa327b98344cb4a8aad1ba537ddacb709a0e173b1e32656de8a610cb9896e9a4554d54d0d01d2361f8ff1539a0e2ee01308f670df2004225231b704065c jruby-bin-1.7.12.tar.gz=bf2be8a37b53d38c75712a6331f96b999fa6b0e87f453fac7b9d11eeb1b66098ea0778172f1a6a84345e1881f05d63012e28d4068a0bd31122bf2473bbdae5bf jruby-bin-1.7.14.tar.gz=f14e658da7f2abd469edcfd657dbc2505d6a2c04ba1e5f65f2164256f54625da154b338bd3d286ea6a18da61d04d90a61ad6b012bd9461182753483efcd0f603 jruby-bin-1.7.16.tar.gz=47ca714c3211c95c84e9c80ae4fbc894bfd7ee03e1bcc494cb48d839f8538db4aaca7029a4913b8d323e7227450e4e41bb943dc670f43df8a654eb127012033f jruby-bin-1.7.16.1.tar.gz=9bacdf6e212d08e46ac2c49183c8611873f6ecebfcb0e928b5110bdebfeb8751ac087cf8aba09afb9a8ccb58e59f3c3e06a241c1db445835d7a875b0c3deb4b5 jruby-bin-1.7.16.2.tar.gz=349283bb5344a62f282021ce39648a0c8d0b41ecf8f800ab5099b5ce161ff771e688f205a918324cef6ba0ded6b3694b8dd83f46f56be584202b8fee496b37e7 jruby-bin-1.7.17.tar.gz=a3b171df08e789f91c260c5a57ec842a5d62cc8d6b462b772905ec5284e394ed7b78f5b327ca1ff20f5deba8371a86cb03fade75b5f34f233df47bc3f08d469e jruby-bin-1.7.18.tar.gz=b259da2967e246a387687117eb13e8986b57de6ca8e570d6f8f8f07b8097db6e01cea8b0ec3a860b091fde14de535260dc6dbfc638f9e9b49d348f726e969642 jruby-bin-1.7.19.tar.gz=da91efcd51cfc833666f8b7cf949d3b5c41cd8da99ae1559c88a7358fb48df1245c66702c7cf23e7ca012cbefae98787c200352976d4e8aa3e9120057a89dc8c jruby-bin-1.7.20.tar.gz=77131afe46e72c406ab4250e43cd1f98e59a8351c494044ac89f97a7c9a81492f8a8194541055fcf1fc59569e99a577fd6a36a9f6a3952a99f399d4970e80e69 jruby-bin-1.7.21.tar.gz=111883df12a60d06e9924d33057ba72094fcffd44f7e3954d6c6d2190f8e6442804e739cc525a9e75159251a8dc1cc487570792b1b4f5773f4d0082f0eb360d0 jruby-bin-1.7.22.tar.gz=6ed6cbe7b81a8aee60906fdf965bc217b3db794698e2cb37559f36ac119a0cd2a1ae1a7a766535ab491d647e8b4e6b2f63e62011714b757f8691455831ef365c jruby-bin-1.7.23.tar.gz=6f4b97c4e08274f96195deb176e3126e8d047c981cb655cded9665624033fb905d60d5586704a3f91b2ca06d7e78918d9d31131c93e4c90c75a38182e309ac9c jruby-bin-1.7.25.tar.gz=a89ab8d539bff346ad56d345b6a205f74890b9aafe82a2c82e7c19cfc30b77fefde1003e8bd7ed15f141151bc0fd21946203219691383a64f2234fa586e1905b jruby-bin-1.7.26.tar.gz=feee03a50900e459d9ed7d2096056bef126c4551c02c335c4132e2307411f3fc4fd435e8fe44411184773c80f0630a7812b3d798b7e9be2818e1b5a712bc6995 jruby-bin-1.7.27.tar.gz=656f4313fbfe5db8d2d4fc2087a012c91efef848394c48aeaa0041e9a19b87ab74686702955413d2c51d6b4b11c758ba0555b30fdc42e86d66094411324139b6 jruby-bin-9.0.0.0.pre1.tar.gz=988c6a058336ab9ac8b27c7501ceccf3940837f9b9d3ed32a466b891bda1bc13f76199f5bc3baaa1240dd0dfdaee40775f721294d667f3b8b5bb9ac8206e2e83 jruby-bin-9.0.0.0.pre2.tar.gz=f207f9477a12d7ffacd92b1bb5154ba8101dda8f7b2eeadd4fa83eadec9a75727bc1831733d27fde63ba63322ec491201dd23cc6e2c2b5a4b8381a8fbe49e8f2 jruby-bin-9.0.0.0.tar.gz=33308a983533c129cffbf521bdb8c1996a10a6159a4a436248e645bda682c5a5395ac1aa767e971ae679c935f3b61573cb22d5b8c64af026752db3411a6356e1 jruby-bin-9.0.1.0.tar.gz=277dca63f3faad01c98a793f06bb4d558a970a10a66a38482e8372b25f4cf4fea85f1d5624fce7fb5b4310c42ea8aa360f24f6b9b6ef4bb0ebcb036736009ccd jruby-bin-9.0.3.0.tar.gz=d82f83e20ef17a0675843e306ec5e90993e5952cf5a53957a91e369d2c90d92306aa515b1e135c04b45844a81a0f4ae34289b966821ae5f46ea51fe012627352 jruby-bin-9.0.4.0.tar.gz=b9cd4f4a00da8152740b468914046633d5341b10aa26b0ac56835d5896531030c8afbc4c965b30c36923555ed5b145de8ada69e05ca38b01d43621914a331335 jruby-bin-9.0.5.0.tar.gz=7c61cf010fbae571cd6ba334aefcfd917f6de8224d014026297b840d0b890523e94b2fea20f154c82c25c4f9d5992b9481fb569646a7023e5ddb42db1baf5f34 jruby-bin-9.1.0.0.tar.gz=1ffdd352823436086ebfd37c03401a1f3a9cb8a8c5f75476af1f704c4764396a20f49ddb7fb7f0911e1608f7c88a332944330b8849d13e6badb170efb736dbe2 jruby-bin-9.1.1.0.tar.gz=475acda79ab8c54467ae70094aa86842959200127c1e92709f0a731014c469d3e52e4c48770b64ab1bf31e1b710ac4570b421077c85c08071c1356bee55a2900 jruby-bin-9.1.2.0.tar.gz=cc6b1e1a2907c128dd04edf9da11933a54bbed5e861ab6f0208505bca5aa2aa9d9acdd04bfde65824346fbb435584081fc8ec2e2e9a3aeea1bef8047915e0c61 jruby-bin-9.1.3.0.tar.gz=88339f4cc05f7f0ded21f100755156ade33f19873f49c0c64110916da8c0b059df541a77bb36e54fda9cebf042591450d2d6312ffaa879df926870806985e774 jruby-bin-9.1.4.0.tar.gz=ebe0e9d67cb91721d589461e93e26338e3e3a1f0f98de53f25906684140b49d989ca6d3704cd3f6cbf650f30aed9a3989f117bb4732c83ed870364ce4c31fa36 jruby-bin-9.1.5.0.tar.gz=f2a11e6fc88d37fc1b640ea8c9feda4607bea6da5e6520f61ff85e8d6a51543612ae267b45c033214f8fd0e2283153da02001cbc9fd90be4761b7544e1413b9f jruby-bin-9.1.6.0.tar.gz=ca59d199a0fe791efc57f05801ae26c6cf6402bdc0f1a795250b1a2dda39b233ed24c8cb005016e79727f4bcdceb1bad726a60c16935e76fc87e5d1a078fb5bd jruby-bin-9.1.7.0.tar.gz=f2569d4858a33280e90d984aac53662c25ef057ef9903bace6a2214aa2e6a537c9bc8fc76b08f846b3093cc4a12c70c98d725576a4ac771e640b95cfe3697c7d jruby-bin-9.1.8.0.tar.gz=dba3b41b65ff27dbaa203a5cfc78ac7cb9d952c52b452bc774f593383e4ef9389c0bc37549b798f48b63497ce7007b1ac2d2fa252d9a7c3e52146b4ae192ee49 jruby-bin-9.1.9.0.tar.gz=f8f6419be34aeb7b7577e946a62a094f5921d7319b51876c5e07322d99249b3a9f29fea4ee5c2b8184dfccbd5da8f8262fa97f5e93874887f3355dabfccfa0df jruby-bin-9.1.10.0.tar.gz=857783bb45fc5d62148bd687b43af9ce776099dfea75ec4b5d947a46ed270568bceba2a630a3277746a3a9c1fd3111caa9a4cd13493ea8824c1ee190e6d2abf1 jruby-bin-9.1.11.0.tar.gz=718ed3f5a39cd9f9b45c4e11ba44cd32e035f8d9f26fe59230dbaecb71adfb2513ee1bb86ff72e075b02f20151f3f30e53bfa30b6c4b011a93a138d4f479fbf7 jruby-bin-9.1.12.0.tar.gz=8a9f88d517d8002be570aa95aebb0063eb62a47efee191155f9fa4f045854910f78431514f857c438167ec42f4241faf74d4a8d236ae36feae58732312e4bbed jruby-bin-9.1.13.0.tar.gz=ef88f613ada2665d4f63b2e2f15594739de8ba501406e76de417821f44847b0e258524687b0ae0cf5b737520aa4dd9bb59d80a4b89a81408cda638f28bebbead jruby-bin-9.1.14.0.tar.gz=d15ae0c60421951b830524acd21a0f2a56f480e983b148a2722cd36afed8e99a41f518eb8a679bfa2cf87f08637e81c24ea88be40c0a5390e081322f1fc6f8da jruby-bin-9.1.15.0.tar.gz=74a411f42149510180706b2c70610caeea357f6fc3d2a12ff0227586862e6a9dedf09e752596d6c486af7a310a07241f311a1dfc73ead229d7225c09d4508605 jruby-bin-9.1.16.0.tar.gz=94e88dbeb2545250ba5bef50bbe0baa6f3851e9817f67f879ffaab50048bb0d41cd7a0e87ac9ef547e37c2b82cf1d7aae6b8caa43d03c6a9931b8ce0ad4b2afe jruby-bin-9.1.17.0.tar.gz=4c06b9674e20f48d3815b4084bb38e6994670eac804fbc56d717cde7abdb74d57e0ac17b7fa0b500318de405c187c3eaa01441c22621139dfdbeef62a5467a63 jruby-bin-9.2.0.0.tar.gz=79f5e8674089d2f6b260e033e3ceb4571f54cb5cedbca74ba76b52dd7cb30085a8c6c2676e9be57a8ecd9e962fbcb3682a8de38e1cdde2dc6e05bd179556edc3 jruby-bin-9.2.1.0.tar.gz=185e67da4964c9cf1d9142446efa77605e77894444bdc96bbd10fee22637f197aea9fbb0f60d3a42540e5f383d5b06fcf095d572f432544a40c2145deec81926 jruby-bin-9.2.2.0.tar.gz=85e16e38748b6ec5f237eabc8a17eb225c484c20f7ab6728f2a0f650061bc50c8a9601c04b0128e73c410ffe84dacd2b8bb37167aae5595728aa25e88c4c9b92 jruby-bin-9.2.3.0.tar.gz=97ee210157c451567946b38d33380051f82e7e8cb5f7649fffe050542ff6cd627e2c42f4c46739d1f0995c87e7338865b18844741285bf3f72364aa3c841c54c jruby-bin-9.2.4.0.tar.gz=9fe1506e862a17e261cf726e1bb70a9f612a6d7beda919a01405899660d1f4b79ee690ddf9aeed1d2b2f3cbd698be8df4f98d3815352772cc680e9646d721761 jruby-bin-9.2.4.1.tar.gz=2c41e7884cc54819da17ea9b2b773d05d3240d53a2ecb57ba430ab61308066eeb1bfbe6627e6c261f5f27ab5df7f5972656366a04a191a81b0379f620b74512d jruby-bin-9.2.5.0.tar.gz=d548eba8de420c80062021f5b6e6b203f8b7b36e3f11409919eeab87a028a18f9346f27d2cd8b1f33419adcc83fc804a36dbc3cee169ef1d93383b8f5835ba2c jruby-bin-9.2.6.0.tar.gz=20c7897da0d2b585616ea5848998fe8770517e24e16955797db2e5bff4622c348082628d304240a71a97e9551ef7aa63271cfb728eb5fb7e7d19bb48aff20d4c jruby-bin-9.2.7.0.tar.gz=8e71e27fdb149cb7470fb736e7ce858719d13ce6ff8a1e9ab1c1dc71fcc068fb601946bb28ed2feee3670b5e6ebfa8a655a6618d1badfc3763897912c41b1c82 jruby-bin-9.2.8.0.tar.gz=7f71fb5bc8c6c31b31b4c0430ae091871b21aa345777662f264c728c60212365dadb63a7a4b2fff31adbbf8a2e7cfa678d47486e28840f57b86cd45fe9354013 jruby-bin-9.2.9.0.tar.gz=7df33150858ddff586b3bd86120d4bdd80546c7f8e62245f61facbaa5527400a1aebbb33e4a1a8af52066487e3d29760eb96c7ecb9875eb9bc954ccbcb37a4d2 jruby-bin-9.2.10.0.tar.gz=f4ca024602ddab37154f5547132accb26e7c0ac2e913ebe1b5c7806727eb148249e76031ed4623ab53814beb8fb3f472e386f44d57adb5d2b3b00fb2773c8a63 jruby-bin-9.2.11.0.tar.gz=f736a9e139694c84d0a5ea42f36b972adc82c9be13e0b80bd61045c026e4fe31ccdd4be3dd3e94781c846f356e026465e41716fd2744ded2ab0ca39cd33bb46b jruby-bin-9.2.11.1.tar.gz=2f758fabf5910ea01e9c04c7600d9c666f2df3db8622f3eeb3534578075ce65013c42fe9ea6f95d4499945f795e6d566eed2b1545e149af823eb1d29167a1223 jruby-bin-9.2.12.0.tar.gz=1dbc5bb3814a6590f5e8ecf4889152684b5625fe81794a2c4064d598614a85129256002dcd239e294f209b98e3abaf9bfe70467fff48ef66b1531162dc6c3be6 jruby-bin-9.2.13.0.tar.gz=2cba016ad6a376252083122d51335610209d860c41de1902f5cd49ffc2f6b49c350b68df8fc4113c221255af4db7ec07980267b9888369811faf66db369e757c jruby-bin-9.2.14.0.tar.gz=ee3d17e875dd197f92744c7cba62320bfd3f166bbb2ca117f2910780a7c571779c0940e024351e9d4685ee9781dd207e773ace57a4a8a7011869c8b6209513c5 jruby-bin-9.2.15.0.tar.gz=678abfa7654b53b049e4103ae3647775d970c5a7192539378957c1731a3037c852e03f00a496c022c1c438d159a93be6e6f04d7563c811aeb7d261ced643d9e5 jruby-bin-9.2.16.0.tar.gz=f77e314d578a980071bddc25c65659d62e0644927ebc4e7d7d4523935b6c893e611d47ae7478a26ce7acff38b1525eac11b4a329188cdf76aeb07fab667d99d4 jruby-bin-9.2.17.0.tar.gz=e90ac1890a54a892b13adbbeab3cc5242889ff2a4b6cae535c0a3172072bda6ab01b960705ba608d6d7ebe9de5984d8384dbbb6399ab3b2e53a9e347e7849e1b jruby-bin-9.2.18.0.tar.gz=c5816ee0f7b0f559dac70ffc5277f85ae9c41ad176e43d277f820c2727387baba93998b915cadf9708fa78b5cdf3911a9c39c2ebb61a77a38dcff359f7d88a73 jruby-bin-9.2.19.0.tar.gz=3740674035e27cf7961b3570ad65536c30faab1c9a71a42a696b173379e79647411d57e0d1d06b5f9c9a970eb02a595a559191af08a083773dc4601dcfd07491 jruby-bin-9.2.20.0.tar.gz=1961f52f41e7eb9f50b0f382c8166ad988a6b3c0311c342658edb34486b073ed45c1ca5731aa319196db02cec208a4dfc86aa6b436959b80243bfa4f62629735 jruby-bin-9.2.20.1.tar.gz=598e28cbad682fbb30a9a9a9f708e6e1f4b7903300de2477e88a646c42ae594df5b768ff5379ed447f1a7168e93dbe35cc2d5db7087cb2228233a05bc4687908 jruby-bin-9.2.21.0.tar.gz=8f6cfc43ce3ebbd69781da71c5a70746ada090162bf6cb709dca41a6d968e6072ae62f657cb0bd471c648ff294044bfec3079828bdc410bd64758f76a93c3214 jruby-bin-9.3.0.0.tar.gz=06331ce32ee88aaad5e5bc0668d164ec3263f8ef3ed34bb32981b76ca33f8c817e3632550775706481094159f4feb43916ad1f9ec0f0775ad756b16cb7bd9417 jruby-bin-9.3.1.0.tar.gz=bfcbe6dc5ba736fc944af15eb387b545f6c5b987a7db88045913a02a1d30726c5d1255c4dd609aa7c2d2823ddf9d8360223b0575c93302aeef4c54eb37af9abe jruby-bin-9.3.2.0.tar.gz=b1777bfdf1964d7e527bb3dfc47b4b9e8c589cdb301c38ee8ee988bd0c392ca978ee3c1c24e4b5a65bdecff67d1bd96e2d8645e58ff7e891e3622097ea29e925 jruby-bin-9.3.3.0.tar.gz=648e70de0bda710e2dc70fd03c3dc6b798dd4c7b92584c54306c426f59ebe1168a595c4cf94328f6b44674f5507bee354efdb1cd73060b73b0171a3605051c9c jruby-bin-9.3.4.0.tar.gz=6b09decf412a76578179cefaabf01cc8740f70ab5324954e6aa43b1d8b81c37db7a99b1f94d6ced2b459f1c44c3086892b9a2c06b3ea838baf75a8fd5e0447c8 jruby-bin-9.3.6.0.tar.gz=f730522eff27462192808773cbd071cdaefae11f20bc808a8f22515a33960a730f3c87ec727ddfd9dc9b6b35acffeb50c31d75a4794a3f8daa75e1963ebd246b jruby-bin-9.3.7.0.tar.gz=265051c68d3b9dcce708b75f8267303ae84008859c88d7fe4f282395366c3f52fcf1bb161210555c0fd0a2427ff5a728ea9e337feea3d9b69559cadb2f300aed jruby-bin-9.3.8.0.tar.gz=12e795b7e1f14141bde68f52a29b0aa9f1db20515240dce83cffec351cefd25959579e01059d42dc8c8e4280493a70819d9beb1e0523e9bc10a72af16d9abd60 jruby-bin-9.3.9.0.tar.gz=f0b31d98f39a2bd4436764db0b0139433d6868bce7c30c5d6e3552616ba879c93478c499f3e4c884fd3728502916aed5c9ca1be150ae3e80ff47b36710c3f6df jruby-bin-9.3.10.0.tar.gz=aa36fd4c5de7b17f5fdcca1d1314d309e7b4470d46822c45baefbc0ad5180e5530a7054502b97b414352af485e7936659390690dc6198512ba6733d8f8d503ed jruby-bin-9.3.11.0.tar.gz=d9fd90bc64028dcc45687d2be51414b1561add20d20d1392525f4434cc684d505427f5e56827afffbbb0ce2c9cd7c1ef846b0bffa737679afb95d4c160232da5 jruby-bin-9.3.13.0.tar.gz=eb24641fb7a6b9d2039ec953388053e7333b306056f9a5bf745331b04cfc05dc4211a9b7780ce88bcee9184b8cbb219b574574d308bc2720547c116f4d4721dc jruby-bin-9.3.14.0.tar.gz=d9b02fc35133f71140cc7d891061f8190b61b3d1065f00092a2aa9a4beaf7d67297dfb0529691bd24d29607d698f39c62af9018e8307c1e6624c3104a61bb74c jruby-bin-9.3.15.0.tar.gz=e41521ebf453d6b6a9de937556fcaa972c60268285d0af4a41bfb95aad790eb47dd507e182958ca6f4889a0e03eedee0fa4bbc58e3d0407a2b6ba64a8b87a21a jruby-bin-9.4.0.0.tar.gz=fb72f8e087ea08653fa4e4225fa26694c3ff97c41f3deb8731cdb6571c6c9b21e0d8f69e2096f82ee81e2b5c283f912e2a5228c15873dbbd56de96a2ba35d59b jruby-bin-9.4.1.0.tar.gz=46003ef6192718a6372b79ebc89bee37957686224a08fe2f9a6be3c9e479784409d0269f0885c4d1f1351585c5d2cd31fd2ad45014e425bcaf2d44d66b98d299 jruby-bin-9.4.2.0.tar.gz=77e484ab73ece93e7d7283f876f0d541607c6080eee696b702b485be9794cf7e6d464f250a6d75387ee69aef3ba40ccf4f6d9fcfe324c5bc7a14376177ea2bb8 jruby-bin-9.4.3.0.tar.gz=2361f4bb2989f5951b0d3e9d49bf31e6805ce39bdc987ad3c6934daa98ab7c8e69763d40d7412ccef8adbbc198e52f4b83d00998ee12ac43fbfc6b5d88930c15 jruby-bin-9.4.4.0.tar.gz=e89dff0cc5b4a948daa95196d4bd4fee0c6901bb4aa023ae35b3679d9739967c2a74e8a4388b1835465dd39f1332a1f321b450b40c54ad2b81802645b4a31ca4 jruby-bin-9.4.5.0.tar.gz=06db948e5fa6f8559abd3b6891c7b4867b9f54b7bddf0e36d6f20cc1bfb394cdba8ea920213e545c927d1cb865e083cb1089c8e925bc608e0f8784a79b5d330f jruby-bin-9.4.6.0.tar.gz=ebdc671622baf3c42a988d6ebe24af6bfefa1f717f050f602a1b35909a3220316329aad080ee2cd9cd330da9428f8d736502573efa64bd70f093ccc123ab32b0 jruby-bin-9.4.7.0.tar.gz=4fc8b12deba7b8a53a523a41a31c248895adc9bd54a62664a27107e7205369af39c0eaa508a9a70611c3bb845524d8c5f39451c09b8b9cd87059ae15139703b9 jruby-bin-9.4.8.0.tar.gz=0d65fdfd63e2049ab3b8ccbcb4caaaab20aea5a63276aeb20ed4092191a8814f144425dd0d926aeed757ad6b4daa308a98fafe1bbd1647f3db44368066f61868 jruby-bin-9.4.9.0.tar.gz=1321e2ef5fdce909008ed764051d1bf9be0a4b8cb4a2515fa888c7c0ea48f0f4a2ab7b5c881633dba3d03449c6340255d9411a58836ed059f62d801d48565d1a jruby-bin-9.4.10.0.tar.gz=3396cdda4334552f2ca21c9123e709d72544e11b448d3091ec1a6e6f7beda2cde86ba4c15a4c0648135df34b558d254a96cb970f0a18d098126b7c5c2a2af019 jruby-bin-9.4.11.0.tar.gz=21ee47b4f6d1b6295f7f25cd74e559e6dbc8d98738d31f87c27ea657a740382e8c0e8156eafc8d270946311ebe22a7ce60d5c0499fb52cac7f9b120ed4495834 MagLev-1.0.0.tar.gz=8da29f16e08f657b0d2f147b64f2202ac027db26f85da8dec29f926898f178ac8d11260fd6c0a539a9b9b15eb92d8c7ced86a8cab1861ae7f8a33b6fa468e5cb MagLev-1.1beta.tar.gz=7122af70530e76b9a4cee93244d6872b49616e78086bc8a5db0f32d2b846560b352c4831addbbecc72e0e3158bd52f26c2da14f5d83a515ead30efe7c538b62e MagLev-1.1beta2.tar.gz=43b4b831791074f6e8c12f6fbe6ccec2bd0446dae029d3e6717cde1e7adca8462a2d7dc49c14112cb568b5b3adc8cd051767044b41d57ae51f38aca035ff8597 MagLev-1.1RC1.tar.gz=942c1cf43f1a911230aa43bbac1cea2e2e61b5e19af755e29a6a71139d66d304efcc519072dcc3487a2da7462847530564aff4a2159d675e3270cc938a297dd9 MagLev-1.2Alpha.tar.gz=2672e3e5425df2d2ecc49f85df5845fdb083f74a7b242cac75e33d0c1837079ced8ec8b273807326d08e7bf6f95cb4f1d8351f37af8bb38c4150e6292fc553dc MagLev-1.2Alpha2.tar.gz=4492ed58b6c2b852502a2195836f1db5a80f0619467e4d7b44981a993a5e9a9ea5c9fecf1198de1891583e334bbc3c3a86648ce8afea1137ae9c73a4d76b0f4a MagLev-1.2Alpha3.tar.gz=6290895b22efb986ffd7305b7d651f20a051ab6869d51310bf891fa3eed48526a8617b69f72793e8ac0b57f99bc5de75f34235ef94de967bbdcd51857efc2af6 MagLev-1.2Alpha4.tar.gz=a621e9c615ffec503910540db770754f29bab1646d8e67650d5b82413bd551adfb0bbbb8155407ccb6f80933bfe8ae1bf9b688eb0defbc88710308bde1325683 mruby-1.0.0.tar.gz=4a0f2927da3401df23d5c19ba566995f76775def3badbb14f16510a271e7b40a833fc61841f89d8adc6d57b5b12cb453708961c16a22133c092fab8ecfcd1e3c mruby-1.1.0.tar.gz=afa99a973e9c1b72a5a418d709c4aca08dc7449c427cedef5f12db4ccefb15e11a4fd1c23ceb7e31e49d4d2e602c0b1f9dcf2e0f6cf8ea3466f0b9bee23b53df mruby-1.2.0.tar.gz=bd5de32ba52b6642358752755329fa45a954082122a8983012930056c286ac328fb52fbdd11f34ff7c80af2c0e9a6348abcd5214602aca1150f2e7ae25cad1f2 mruby-1.3.0.tar.gz=13a57306706d2d60693151919ae15bb3621e6e7ed3b5e9c6d3b1c8d44e52b898c1ad394b39946d730ff82a19f5e3b7c2a374f9dcc3b6c6f990581e504f1cb9cb mruby-1.4.0.tar.gz=d2dd6e17c7f8e890ef5b6887538cccdea08a2376ba8f9a478d7d5c4377fd4c31a4af6323b1fc73952ef80e5a4778ca22eac3d724ce7d50b76770f7e614df7da0 mruby-1.4.1.tar.gz=2cbf155ba7819211b6410ea606c4d0db3adf4f47a4018ac45285ab3e32b94f280aa0af0936ead7233411957cfca62979d14bbaaf0d8f40521cba5c12272f2af4 mruby-2.0.0.tar.gz=8379f76b7a06d280e2a2552eec2975ffa3fe85b99028f6f7c009cd908f95faf3cd36a9975f502a5779559baf3c45a4297da0b6bcc038d213a0fdee851f9d01ea mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.1.0-rc.tar.gz=f310b385cbf80c6b6ab67e2a41b931411149639c0bf778799e3358d6a9a59f508f42e3faf72fef9e8ef91088d6184c445af7933a47e4e2b2fe114362d579bac0 mruby-2.1.0.tar.gz=da28b5a078e121c75edf62fc68fad6d5810212bd53a3424d4f585ffe5bbd09f652393ffea0f4b3ddd802e5fe178554dc67040c39c9d5069bdfad4ef22ead7e8d mruby-2.1.1-rc.tar.gz=97c9cc2c79a5dbf2f634ea08532f0f512f8af6ffb99ab4eefd83fc336ca9d97b943e76643971047b4508aaddb5e40176d6cc8fa39a17022455aa15d774eb5b98 mruby-2.1.1-rc2.tar.gz=13aa32a35bd5d8f02a9bfd08d17818dbae78ce46c8b0224a029f9f191cb64ac330eddf3871f4396b9221b987a91e4cd6f8933f59814ac0018155ec8454abff18 mruby-2.1.1.tar.gz=66f9b4bebb5a7b19f5cb1be2bd8b9bc65e4dbb5d4350d238ad5f947c9195fd431f2069f7334036ea63a750e9257e59ae1aef16ac99c7e1f4e17724cd1cbe2e50 rubinius-1.3.3.tar.bz2=8b91baf429dac60663d0e4da3152a60ec6e007f5d6c17ffa430876ec88eb87ade44efae90f2e32e238fd74f1b3d54e27492315f08e7bb073220b402e1e2d3163 rubinius-1.4.1.tar.bz2=928d12aa01a1d0f6c80175d67d3b1f8b9840f69f045c8148786612316421223f4cea71e3c373ee18a3f686b1457557ae547645afe758a99d21c4818dff47b9d1 rubinius-2.0.0.tar.bz2=5c81a6b8cf7b59e08c3b9353b0eb37ce985aaf391f5064df65ffb10f6d12b668287e4d4e61e2c6b560d9234c10f0b64bba74259f2c06f1dac488928544d4131d rubinius-2.1.1.tar.bz2=154cfa93ed59835814b8b974f6d738b049942fcc2b75095d21c87647d002c879fd55aa3d1ec95414b5b66eb9926c25a5c6e3e19a7c0da7dec6edbf434acb9c68 rubinius-2.2.10.tar.bz2=c2168e676059c197123916dd948b83e39bb96e99786bdcaef2e690936b761fedb13740b9f19883f991f1b475f3249ea1696213e8448c41ae15dfc14b3d4e1fda rubinius-2.3.0.tar.bz2=d0f3dd5e3b891bff2eb79b7810c6041e15fbbf0606c379f89575cefd829ac7a394b0c12ed3c5a4d452730797bc0a2c6c82646a19a078b56dcac7acad015a4559 rubinius-2.4.1.tar.bz2=7bcea320006b8cd3d122c407d89c325973a74c32456ba0b649657ac848f4682f2eb7455c13e3007709c22932bc2e1b65e2dd43fda0d3c9f993ddf8a74d1e2cb1 rubinius-2.5.0.tar.bz2=ac94d5bc11524e715fc24c1de33f4d358c2cd65e92fbb64c850dc8151d2a712d268227733c99fcffe298c3bdd6ce080c5e9553e4e8f3238868323498a9d10cae rubinius-2.5.1.tar.bz2=9315f76126d0aa754ee63b190385c24cb084f36293a99aa30fc482fd880d5393aabce361e09ff5514bc2540dfede8e179b7e9212b2dd59bd14ca2aa69d209a83 rubinius-2.5.2.tar.bz2=b48bd8d54a450441a50904b07c75c8d31b59822830a74c952720d6f8d2d86e6a27a84775e975ff2bf55bf3346f34e69d742f308933a9d8476e5e78109cb525f6 rubinius-2.5.3.tar.bz2=b923446d325dc3ce5ad28af9ee527607fae3259b85e85aeff97c1bebbb4520daf70616957b1c0ded900ed19e59025826dee66977c19cd2a2d4e9a0296811eb20 rubinius-2.5.4.tar.bz2=75b7ddbe218e4c92210dbf5a06eb8b3c3aa028d16146982a4e813e3af10a90d33f3e239f4508469c6aba17f02cb8bd10e96a204839975e06519869cacd456c92 rubinius-2.5.5.tar.bz2=a862146ddbbdcd4439eb64e78bfe6d09ae4cca540d19869618426d3f451544658713fe8eb7d46493785eb0cc721077e624293cc44d68eea3ef584967b43a18d7 rubinius-2.5.6.tar.bz2=9a0bdb5d77f80f163925ce409d00be3cee34871baae8bcfdb34c3c7545b92fd14102fecb970e42b3012588d299e504b724025f397a5a00e181ab75f1448e426a rubinius-2.5.7.tar.bz2=8048110b3ba4e5ff8c3f35282896067e1b1b46dccaf9ef4f6c9b6098782f27591ff59ccae0234fd7e881e3aaf17a0b420286b1b52ecd2cb672249655795a6982 rubinius-2.5.8.tar.bz2=23fca2f9747d2b0e544af890c3baacfb7b3a009cc59cbe653762ccdd827a6c915dcc57902d317fa1f7a81f8c12682f6c3a93195331b6de0f705b118e2e8c13f1 ruby-1.9.3-p550.tar.bz2=38767e98df25484f7292437f3cb0f798b3a43e9a7414a5401677e96ad1cc367cb3fa23ac3abe568d5bf2b2ca553713469a8770d41b79bc63daf3fa59cb4e15c6 ruby-1.9.3-p551.tar.bz2=5ea40f8c40cf116030ffdedbe436c1fdbf9a50b7bb44bc890845c9c2a885c34da711bc1a9e9694788c2f4710f7e6e0adc4410aec1ab18a25a27168f25ac3d68c ruby-2.0.0-p576.tar.bz2=e089cca4867cd9c715f4f37e40a1db9af6ba0c74b47e79568121bb980476f8877a87ccb848b973381edb4667c0c73165f5e1761f60db839e67f6326302dbd864 ruby-2.0.0-p594.tar.bz2=8301a51c73fb63a8cfeb14af47d0c18b5bc3c45e3d62fc2ed56a673a1cd6b0015c41f275e70eb14a9e40036b1530977199321e05285e107a6adf58514bef1b3d ruby-2.0.0-p598.tar.bz2=10026a04e01a8ad14ea9c99bbdf4f7d04029b73ee0c01bbf6c2eb2817332d49adacf127b646693b67b5dd7010eaf3b696b23b6335cc0f7ee5a6b56dbba0f6f82 ruby-2.0.0-p643.tar.bz2=453117152e6facdcd5bedaa9c3b1e349382bc5bc1dd3d650ec58b398cb9d2519a2822d05da10bcc5dbbb4f513fc5fef310caa3529d176fa2d453befb28e4d83a ruby-2.0.0-p645.tar.bz2=e9ca186b1cf0877cdbecd43dcab2c5161a53103e926609d5e1b769a4980eab4571bfd0951788b4fc92dfd9d10175b0f5f36ea2c7289e575a9db9b62c02f93185 ruby-2.0.0-p647.tar.bz2=3416af771ebb0b27ceacf23d309bd2a1ede832c2edf48a5ca46f0b0b84b2ab94fb6362a0c7fe4f77b21253539db8161ae26d23a78d1ba729bf03812454d93d04 ruby-2.0.0-p648.tar.bz2=609acf6d6352c9746e21cd7f0e7d29f5eb522e6fff2d5fad0431d63c568cc084ed5b7141f84cd33512d8213200d2d1a22e8d7df71469a980a3a92886133fea38 ruby-2.1.3.tar.bz2=9b48adb161e5e4550a71f61252c8edf59944affb82250babcb64240749af4b672e4a54ccd0feac5b36ea447a358b350b5080125ef2d4acf6e9e8b1ab82612f48 ruby-2.1.4.tar.bz2=68db1567751166c5e7d24b6e5015124b8a15568c50556e1f429486395352fa56c4a195a74820ab135697924149d014b445b345a1b9755678aaf824fba79c606b ruby-2.1.5.tar.bz2=d4b1e3c2b6a0dc79846cce056043c48a2a2a97599c76e9a07af21a77fd10e04c8a34f3a60b6975181bff17b2c452af874fa073ad029549f3203e59095ab70196 ruby-2.1.6.tar.bz2=75d58120b5f387bcadbf6d19e85624f78c74f81b9018baef39207214673f7ebc0700ab31145acd88b4071c896ba8e1302a29c90955bcf5f8c863634125022aa6 ruby-2.1.7.tar.bz2=f610d2dd6a93f0a5e84e04ddedf847bbcea5dd3289b3164cdf60be64f67a80dfd5f9836ea5d169970cd0ce24a7e05ea6190699706567cb0d5cf450de6a70e445 ruby-2.1.8.tar.bz2=7129c012bca7f0e7cfa51c73ba0898697f7a9f31abd5ae57d38be5b6b646fd80ab33be9b262cd3e2486c66f65aaf4ec6e881ae6e5a82ec9df62f00fa072510fc ruby-2.1.9.tar.bz2=a86422132e4c64007a84a91696f4557bdcbc8716fbfe1962f1eef3754ee7f994f4de0b5b7e7231c25057515767040d5c4af33339750b6db15744662e9bd24f38 ruby-2.1.10.tar.bz2=4b7213695416876e4de3cbce912f61ac89db052c74f0daa8424477991cfc49b07300e960177ff576b634a97ee8afef3c5aded5d5806329dbd01d0ce7b42b9b63 ruby-2.2.0-preview1.tar.bz2=2f1190f5d8cd1fa9962d1ff416dae97759d032a96801d77bc6b10136eba59dde1a554ff8c0c2d9ce0d3c1361d4dd12ad573b1266fd53b90ab238d8ce39e6b862 ruby-2.2.0-preview2.tar.bz2=c654d4c047f9463a5fb81eaea0fa5ab7bf316962bc7fb0fb356861e6336ce8ce2162c7779d8b27f72d7bc0e9604b5e5af2910abcb0b0a1f197b3138eaddfd4a5 ruby-2.2.0-rc1.tar.bz2=181201168360bee37dceeef3481a69e8a333a5d329680031fd9d371d30ac64460bbdf4db07546133024f541774e51301f1630cfd988c5e5bf2464834f3abe6bf ruby-2.2.0.tar.bz2=04edc53e8cd1732c3ca61ebeb1d6133614beb10f77f9abb80d8d36352fe8aa205112068e460bf600b2c7e81e0ddcc3b311e7e027c320366f1bd992b3e378a6ad ruby-2.2.1.tar.bz2=af6a8e75a66b953ff33ecbca5111bcf1c6560b6b48b370b700820fcbe91363146c5ac8abd670a14e693b44343ae598bab472ed2902834304c03ffcd9550886d1 ruby-2.2.2.tar.bz2=d6693251296e9c6e8452786ce6b0447c8730aff7f92d0a92733444dbf298a1e7504b7bd29bb6ee4f2155ef94ccb63148311c3ed7ac3403b60120a3ab5c70a162 ruby-2.2.3.tar.bz2=795f1b66a6d4f0baef897068899c3a1a4370ce1268618e6a7d6d4720234444259f371d1ba2e174b2f7580265e9f18eda3f295fbb087447aa6e8fb7a0f07526ce ruby-2.2.4.tar.bz2=d27ca2f19c214ce87f906b57edd41f2f8af35b2871c191470facded9cfda15ba46e5c3bc7d5540225a38da6bd65050fcc8aaa4ffbadbb6bf7dc891c1821da0df ruby-2.2.5.tar.bz2=d3224814361c297bc36646c2e40f63c461ccf5a77fea5a3acdcb2c7ad1705bb229ac6abbd7ad1ae61cbe0fefd7a008c6102568d11366ad3107179302cd3e734e ruby-2.2.6.tar.bz2=7a93f72d236521ac28c8a0bc0c73cf805797a8813d22e02f42c5fc05dd39f6e422817272e0db6a24c245f6f97ad4b2b412a9a47ac50156ab186df596918a5f34 ruby-2.2.7.tar.bz2=83756cd1c91516962b83961e0de59d858618f7ed3e9795f930aab4f199d47a95ed8f867d8aa9b51d508be26d9babf2140117c88241168bac41e6ef702cfadf20 ruby-2.2.8.tar.bz2=aa1c65f76a51a57d9059a38a13a823112b53850a9e7d6f72c3f3e38d381412014521049f7065c1b00877501b3b554235135d0f308045c2a9da133c766f5b9e46 ruby-2.2.9.tar.bz2=2a8c8770fda20a22b79c9115b6f468f8e7ea1092c84a5089af7a3122163e5ad298b493e6637e4d93ba02d899d8a619c94064dda8ac98cf3b93f64f45d5401085 ruby-2.2.10.tar.bz2=f8ec96c2a5f4ecf22052ee0b1029989ded52d7bf5d41be24fef67e732e76f72119302240bca08f0547510a9cd29e941a32e263cad9c8a2bf80023d6bc97b2373 ruby-2.3.0-preview1.tar.bz2=ae6d46c87f59e1fd3703b76dfc45bfcf208625f95ab9f4559f0b9f7050e8681f1a6e419f5fa06b704c83e56879c3a9ff1337dba443bcfca76fadb49c97d97a93 ruby-2.3.0-preview2.tar.bz2=e397f321d4338edba8d005d871408775f03d975da90c8abcfdb457a1bc7e6c87efe58c53b2c3bc122e9f58f619767b271bcc8d5d9663ed4b4288c60556e8d288 ruby-2.3.0.tar.bz2=77b707359e754c3616699d21697752741497c719dc3d6fdfb55ed639e76d52560d293ae54cbe5c63be78dc73fbe60f1b8615d704d017bdfe1994aa9747d26a6c ruby-2.3.1.tar.bz2=a8659b96a3a481a3dbdbb6997eb18ff1f8cd926a9707a90d071e937315c21d372c89252f0d44732ae5007d2678fda8c8fbceafa4e4b4ff500d236fb796284d8d ruby-2.3.2.tar.bz2=78699bae5b0a2382a58f9d51f7d891341f00ad3a90d9ca06b68b1b245cf5acebc3a82133e39bf6a412ac999a5c0f778a0dab177c2569ffbee085ffff6f6ec38e ruby-2.3.3.tar.bz2=88f7782effd35bfe0b4c33140b5eb147d09b63fbb35b9c42d2200c010f387e2b70984ead1eca86569e8ec31f08b35289d440c0ca76b662dadb760f848e863d91 ruby-2.3.4.tar.bz2=ad1f16142615498232d0de85149585be1d2c5de2bc40ec160d272a09e098ef6f317d8b25026001735261fd1c5bc0d1f8513a8474e89f0d86eed5b2fe7338d64e ruby-2.3.5.tar.bz2=3ecc7c0ac10672166e1a58cfcd5ae45dfc637c22cec549a30975575cbe59ec39945d806e47661f45071962ef9404566007a982aedccb7d4241b4459cb88507df ruby-2.3.6.tar.bz2=bc3c7a115745a38e44bd91eb5637b1e412011c471d9749db7960185ef75737b944dd0e524f22432809649952ca7d93f46d458990e9cd2b0db5ca8abf4bc8ea99 ruby-2.3.7.tar.bz2=e72754f7703f0706c4b0bccd053035536053451fe069a55427984cc0bc5692b86bd51c243c5f62f78527c66b08300d2e4aa19b73e6ded13d6020aa2450e66a7d rubu-2.3.8.tar.bz2=6d79e0d25757fd37188a8db3e630a52539bce7927fcb779a2ce9a97b9e5f330753035c16843552f1a1fb6c9a1e5c0f916b3cc8b5c0bfe81e20f35f8442e40ae8 ruby-2.4.0-preview1.tar.bz2=c9873e8686eb54dbde61d6e23cd5197beebccd6cb31fd12c82763ebe1fde17095d7514d9d93c2c82b238032c98691df5479dc2d666a8a590e0fc54450ec29cb5 ruby-2.4.0-preview2.tar.bz2=0c9a59a2f57a99c4ee8539a30f41da1de7547566203f89d856e1be9dbb44365754e6c470145dc9336eb324e0feb2f53d9fef18a1564968ac21f9ee528905949f ruby-2.4.0-preview3.tar.bz2=6602c65a7b1e3bc680acc48217108f4335e84fdd74a9cf06f2e2f9ad00a2fccacf9fa035a912bc9d5cc3f0c7a5e21475971dfac37b0364311ef3645f25c7ddf9 ruby-2.4.0-rc1.tar.bz2=b43902ac7794487197df55a45256819d2e7540b77f1ed4eb68def3e0473ee98860a400862075bafadbde74f242e1dfe36a18cd6fe05ac42aae1ea6dddc9978ce ruby-2.4.0.tar.bz2=bef7bb53f63fb74073d071cc125fb67b273ed0779ef43c2d2969089b9ca21fff1bd012281c5b748f7a3c24dd26e71730d7248c05a01cb23ab2089eb4d02115fe ruby-2.4.1.tar.bz2=1c80d4c30ecb51758a193b26b76802a06d214de7f15570f1e85b5fae4cec81bda7237f086b81f6f2b5767f2e93d347ad1fa3f49d7b5c2e084d5f57c419503f74 ruby-2.4.2.tar.bz2=1a5302d2558089a6b91b815fff9b75a29e690f10861de5fdd48211f3f45025a70dad7495f216e6af9c62d72e69ed316f1a52fada704bdc7e6d8c094d141ea77c ruby-2.4.3.tar.bz2=fb4339e30c04d03b1422b6c32ede45902e072cd26325b36f3fc05c341d42eea6431d88718242dcc9ce24d9cad26f3d26772f2e806bd7d93f40be50268c318409 ruby-2.4.4.tar.bz2=ae632852a5f413561d8134e9ef3bb82adb37317696dd293ef92cb76709ecd45718f14116ecce35b12f1c2dd53ccae8dabc7a924a270072b697512d11f4922347 ruby-2.4.5.tar.bz2=7034fcaeaee41f14bc0ecce0d3d93bd1abe95310e1a0b95fac66eaba867adfb2bf7ba4d0d70d67a15ce8df16052dee405c38cdb18987602e64a2f701d37d3df0 ruby-2.4.6.tar.bz2=292802984e5cff6d526d817bde08216fe801d255c4cede0646e450f22d4a3a81ae612ec5d193dcc2a888e3e98b2531af845b6b863a2952bcf3fb863f95368bcf ruby-2.4.7.tar.bz2=2665bca5f55d4b37f100eec0e2e632d41158139b85fcb8d5806c6dc1699e64194f17b9fe757b5afd6aa2c6e7ccabba8710a9aa8182a2d697add11f2b76cf6958 ruby-2.4.8.tar.bz2=2d7e0f5ad766e2a12a1b53ff838e6bfe86244ffb7202196769c25e9df6f71f3ccdd8605e7ef35c53e54310bc82caf6b368ad5111dd0a3ad70a3aae1a7be93f08 ruby-2.4.9.tar.bz2=d485444dcd025a261a16bd740dae63c0aa23e4138a095584e7a83aec47af34415c7d9cbc1313e92da2ec416b11bfddf20bb1a7b60c80f12906d11ef27409b3e8 ruby-2.4.10.tar.bz2=4d730d2d7cb96b002167ee358258f2620862a5a6d8627cfa5b49bd43c6e59c50c0f437b959d4689b231d57706ec7d5910d9b144f4ca1c1ed56bc879ed92e8a59 ruby-2.5.0-preview1.tar.bz2=2d39ef64aaf7a52014905f4ad59b53e83b71433e50a9227f9f50cbb7a2c9a5db9cd69fa7dbe01234819f7edd2216b3d915f21676f07d12bb5f0f3276358bce7f ruby-2.5.0-rc1.tar.bz2=bf0eb114097f9e505ff846f25e7556a2fb393573b4e8b773f94cf5b47998e221f3962a291db15a3cdbdf4ced5a523812937f80d95f4ee3f7b13c4e37f178d7a7 ruby-2.5.0.tar.bz2=8f6fdf6708e7470f55bc009db2567cd8d4e633ad0678d83a015441ecf5b5d88bd7da8fb8533a42157ff83b74d00b6dc617d39bbb17fc2c6c12287a1d8eaa0f2c ruby-2.5.1.tar.bz2=82e799ecf7257a9f5fe8691c50a478b0f91bd4bdca50341c839634b0da5cd76c5556965cb9437264b66438434c94210c949fe9dab88cbc5b3b7fa34b5382659b ruby-2.5.2.tar.bz2=9f9388a162a3ae9c14ec8999fa3b12ff5397de14f55996cc8761d21c757113db37ace4d326b9606de7ad3a5875aa94fec900dd9b81b2fb0dff558c39422f4aa1 ruby-2.5.3.tar.bz2=6fe89fe9d406bb454457442f908774577369ab2501da4fd15725ccbab77675b88faad739a6c8ad1c7b6690b439a27de5e08035b7546406cdeca65c7b295e2c77 ruby-2.5.4.tar.bz2=3c4f54f38ee50914a44d07e4fd299e53dddd045f2d38da2140586b8a9c45d1172fec2ad5b0411c228a9b31f5e161214820903a65b98caf3b0dfeeaabf2cab6ad ruby-2.5.5.tar.bz2=1b56aa79569b818446440b9f2d13122bf7c2976ab9b2865f5fb62d247d7768dd4ac5b5e463709ffec0f757bff7088afd293c2a8c5349c3780763b6444bb354a8 ruby-2.5.6.tar.bz2=e4511d42d19a7bb39ea79f66bb4eca54b63c2a9d27addc035d6d670c1e59ee48a0c6e9c6bc7d082d1f1114b0668831dce3b7422034517f3c4a06ced0e47a7914 ruby-2.5.7.tar.bz2=7d6a7d41b4f3789f46be5f996099f3eb8321aa4778b2a8ff44142654e769ba4ba2df127dd0f267547e4c8cd6ff46364f18e79838df54fcd7e3fb714294ee0099 ruby-2.5.8.tar.bz2=037a5a0510d50b4da85f081d934b07bd6e1c9b5a1ab9b069b3d6eb131ee811351cf02b61988dda7d7aa248aec91612a58d00929d342f0b19ddd7302712caec58 ruby-2.5.9.tar.bz2=12f58e14cfa6337065b0e82941e39b167813920eb54cbdb4ac4a680dd0cb75d2684d341059e7b4d0da1292bfc4e53041443bd14891a66f50991858b440a835c8 ruby-2.6.0-preview1.tar.bz2=d9cb270529a97670d54f43a0236fab072714e715c39277dab70b7a1843ec818e6700e47e1384c7256f9e0ae41ab2c0b768a0de38a5ecf4f4fff5da6ef5ad4944 ruby-2.6.0-preview2.tar.bz2=3872227e9b1c97c206d19bf1e6ce15a38ee15a26c431b4436605dea67affcf16372358984df76b35e7abaa902c15c16f533ac7af47e3031dea9451bbe459b693 ruby-2.6.0-preview3.tar.bz2=d1693625723796e8902f3e4c4fae444f2912af9173489f7cf18c99db2a217afc971b082fce7089e39f8edd54d762d2b4e72843c8306ed29b05ccb15ac03dbb5b ruby-2.6.0-rc1.tar.bz2=cbd6281b2aab6fbce3f699c1ab57e5423304dca7a547a0b3cd4e8e980326dc7b85b2ca2bfaf3f3a648d40f4222fdf1740d81d422790ee7ae1ba1ed33eb11e3e8 ruby-2.6.0-rc2.tar.bz2=9bfbe83fd3699b71bae2350801d8c967eb128e79b62a9d36fc0f011b83c53cab28a280939f4cc9f0a28f9bf02dce8eea30866ca4d06480dc44289400abf580ba ruby-2.6.0.tar.bz2=ca3daf9acf11d3db2900af21b66231bd1f025427a9d2212b35f6137ca03f77f57171ddfdb99022c8c8bcd730ff92a7a4af54e8a2a770a67d8e16c5807aa391f1 ruby-2.6.1.tar.bz2=fc41429491935b89532733b95476ab9f8a4efc310aad8f4c2bd3b68fba08fd7b6e9ac84c6c88ca892022d1ba76435295f3299ea466f9b5453c07d41cb539af59 ruby-2.6.2.tar.bz2=cad678d2ced4085e99009e4fef83c067dd0e6ead27a8695bc212c0e5112a7fa09ceb27f82638faf91932ef8bdd090f844e0a878ffdf6845a891da4b858588aa0 ruby-2.6.3.tar.bz2=c63c3f527bef88922345f4abb4b9ad467117b63f2132e41722ea6b4234cec3446626c3338e673065a06d2894feee92472807c284cbe613a442c8fda234ea7f88 ruby-2.6.4.tar.bz2=a9fa2f51fb5f86cd8dcaa0925fe6f13d4f19f110b5d4c5fd251f199d16aaf920db39ad3bb50460eb94ab8d471ab2ac8bb54daea4a3bb080eaf45250aac3437fe ruby-2.6.5.tar.bz2=28e0b04ac8ca85203eb8939137b5e5de4850c933faf7f62fc69648fe1886faaabf6cdf48382f9d9585c1720876d10b41dafd33efaeb23341c309917fbd8a6e21 ruby-2.6.6.tar.bz2=001851cf55c4529287ca7cc132afc8c7af4293cdef71feb1922da4901ece255ec453d7697b102a9a90aef2a048fe3d09017ea9378ab4a4df998c21ec3890cdbb ruby-2.6.7.tar.bz2=311ec56d23d0de7a163f66c1ef4e5369b822f8409f8e1f3a25785c803f01c68dd13aa8ddcfb3a0fe6a97bf321950f8d6cd75b2babcb04158e791601914666f7a ruby-2.6.8.tar.bz2=51806d48187dfcce269ff904943dd008df800216ad4797f95481bdeecc2fbac40016bc02eabfff32414839ebb2087511d25eebfd6acead1a1d3813be6c10edf7 ruby-2.6.9.tar.bz2=ff067ebc059094c0a9a0debf54a37aad2c85f7ed47be59299041c9c03a7701529f5063ff32a1b8c56d48ee8585015acba63602ed0176b2797d263d43d67aa241 ruby-2.6.10.tar.bz2=275a0f329641e6c3d3d3c33ffabf585195187eb3baa4fb1dfd35999fa0a80bd5925943fa2711827ac00dffb6c9a1deeadabaf2e9ee401d56926fc167db5ae4a4 ruby-2.7.0-preview1.tar.bz2=a36b241fc1eccba121bb7c2cc5675b11609e0153e25a3a8961b67270c05414b1aa669ce5d4a5ebe4c6b2328ea2b8f8635fbba046b70de103320b3fdcb3d51248 ruby-2.7.0-preview2.tar.bz2=7066ececebbbba4b2933ba1a4f70cdef373169910802259a3e52b4fc144ba298f3cffda4be5fe8a7be8ef769ed43076fa046a9ac2c13bb733475b9852112c6f0 ruby-2.7.0-preview3.tar.bz2=5d8e99e3fd984c7d05c0bc483e1504e81ccdb920cbb2d78cad3c314e197b30316b692fd0199f836acac41246e3a713cb81dc6dd64c27cba56f807df4c193db1a ruby-2.7.0-rc1.tar.bz2=b5f96227775f8bdf19f944a555d0a83d7e84b37bd31fe4b8ac008a3272b1a28a4d94abbb1b5570ee32ec0690ba9d476b837a020a5194bee14bebf6f0e768bc79 ruby-2.7.0-rc2.tar.bz2=9010f72bb3f33b6cd3f515531e6e05198f295bb2a8a788e3a46cdfd776a9f6176b6ba8612f07f0236a11359302d2b77fdecca1dc6be33581edbb028069397a0a ruby-2.7.0.tar.bz2=8b8dd0ceba65bdde53b7c59e6a84bc6bf634c676bfeb2ff0b3604c362c663b465397f31ff6c936441b3daabb78fb7a619be5569480c95f113dd0453488761ce7 ruby-2.7.1.tar.bz2=4af568f5210379239531dbc54d35739f6ff7ab1d7ffcafc54fed2afeb2b30450d2df386504edf96a494465b3f5fd90cb030974668aa7a1fde5a6b042ea9ca858 ruby-2.7.2.tar.bz2=f07592cce4de3532c0fa1c84d53a134527d28ba95e310cd3487ac321c49ee680faeace285de544ee6db432a90aa7538a1d49ff10c72b235968ca362ef9be621d ruby-2.7.3.tar.bz2=e9236138be3e61380140f2e0d42f8fb82ad8f5219d454de2f6c2ec546bb208acc8b0f2020f23e6446660d2b3b9ae873cdd8298471f166a5f1efba8e80b05e746 ruby-2.7.4.tar.bz2=f144c32c9cb0006dfcfa7d297f83f88b881f68c94f0130346c74dfd8758583a68d22accfd0fc9f31db304ab5ff0bc135bfb2868145c0dec1ee6cec5ac6c3725d ruby-2.7.5.tar.bz2=0aa2ac44bc22859a39c43d08b7c7f457df05c2dc36b2574fd70ca399143ef1000dc5e496212db9eb055bc4258523d47d26db3c57a1a5a5d63cf1b3de9f81645a ruby-2.7.6.tar.bz2=4f7f3624afc43da25ebf0f01d5a2f92f72f94bab7423587cfd3920e089b479bf559b159adf2891b996f7e6a98c008a4f73a4a2170e2f8619417660ac1ab24bdc ruby-2.7.7.tar.bz2=24cc772ac1b56d3bb423f1b33716f221bf534f3717a506bf8235a698f8a454db7d79d94ae9a84067153c2f737b3f8f6085f34e36cc04be0d75ae2fdd57718870 ruby-2.7.8.tar.bz2=3a9db8d9e79318f869417f2ebf3365907febc0d1428116eabf3253c51d8420f255782b32fa30a54802b9f5f4187fad80dab0611cc80436feec84db87b0456ec6 ruby-3.0.0-preview1.tar.gz=b94892951f842a1538f4b99022606ac2c0b5031f1ede7eef3833a8caa9ed63e9b22868509173bfefb406f263c65211db75597b152b61f49e5ba2a875fce63a27 ruby-3.0.0-preview2.tar.gz=6fa4191425ae71e41894b60bd9c31d483a562ee8216886360ce18238ab48115b95be0367708612c45f634e7584fba8940a524ba0113ce0f36ce4df78a112d0b7 ruby-3.0.0-rc1.tar.gz=798926db82d27366b39be97556ac5cb322986b96df913c398449bd3ece533e484a3047fe35e7a6241dfbd0f7da803438f5b04b805b33f95c73e3e41d0bb51183 ruby-3.0.0.tar.gz=e62f4f63dc12cff424e8a09adc06477e1fa1ee2a9b2b6e28ca22fd52a211e8b8891c0045d47935014a83f2df2d6fc7c8a4fd87f01e63c585afc5ef753e1dd1c1 ruby-3.0.1.tar.gz=cb81db2c9b698cf8159b2ca6507f4c7f171e4eb387f5730c4b658ed632b7900a169808e6fbec0ee80598d937030ad5d9c56b63a2a339373ec5d9e1c06b7661d0 ruby-3.0.2.tar.gz=e1fba6f5429b5fca9c3f52a32535615fcf95fafa415efc71c46db4cce159f249112c01574c305026be5c50140335696042e47a74194caea045acbfaa4da738cd ruby-3.0.3.tar.gz=39dab51a0d784a38302372b99f96205817d466245202586d22123745761e9cb39db128ec2b984ebc3919b9faf2adf828d19c97d3fb1e56d44be0a81dc5d11b87 ruby-3.0.4.tar.gz=0dfded6826063c1b39bf625a6e13b46c109cb160c8648b78f0965f70e7c7a1a65f1c117fc8f2cf8bdb34d7cbf79fecf1f45d169d2323406d66ab27b18bde1d22 ruby-3.0.5.tar.gz=ea45fcd2ca53b87f18fd8696d00a1e340d2495443216aaf87d3f643cb5bd8bb614a1faacd82d07e7f2b72172397c728316a82d7c34a7b4566191268ea517ccf7 ruby-3.0.6.tar.gz=d596bfd374ae777717379b409afe8ee1655ade0c0539ada7a10af4780b818efe25a28aa50a2a7226741d1776d744e10ad916641f9d12fb31c7444b0a01d0e0cc ruby-3.0.7.tar.gz=66e5116ddd027ab1b27d466104a5b440889318b4f2f74b5fdf3099812bf5f7ef77be62fe1df37e0dc7cd5b2f5efe7fee5b9096910ce815ca4126577cb2abfaa7 ruby-3.1.0-preview1.tar.gz=63f528f20905827d03649ed9804e4a4e5c15078f9c6c8efcfb306baa7baafa17a406eb09a2c08b42e151e14af33b1aadbd9fb1cc84f9353d070b54bbf1ff950d ruby-3.1.0.tar.gz=76009d325e961e601d9a287e36490cbc1f3b5dbf4878fa6eab2c4daa5ff2fed78cbc7525cd87b09828f97cbe2beb30f528928bcc5647af745d03dffe7c5baaa9 ruby-3.1.1.tar.gz=a60d69d35d6d4ad8926b324a6092f962510183d9759b096ba4ce9db2e254e0f436030c2a62741352efe72aec5ca2329b45edd85cca8ad3254a9c57e3d8f66319 ruby-3.1.2.tar.gz=9155d1150398eaea7c9954af61ecf8dfdb885cfcf63a67bbcf6c92e282cd3ccac0ff9234d039286a9623297b65197441438c37f707e31d270ce2fe11e8f38a44 ruby-3.1.3.tar.gz=550cfda2ae492312009a58316e18fd77ea92852718b37443bcd76aac84ba6694fb841fe19bf23bee099f96f5aeed9d03e77c8c02fb194e414eca5f707adbbf90 ruby-3.1.4.tar.gz=41cf1561dd7eb249bb2c2f5ea958884880648cc1d11da9315f14158a2d0ff94b2c5c7d75291a67e57e1813d2ec7b618e5372a9f18ee93be6ed306f47b0d3199a ruby-3.1.5.tar.gz=23661cb1b61013d912b7433f8707bbcd723391694d91f413747c71428e74f8c7385c1304de7d08b70c9fa3bd649e4eb5e9acb472d89dc2ad5678cc54855a24ae ruby-3.2.0-preview1.tar.gz=d24e77161996c2085f613a86d1ed5ef5c5bf0e18eb459f6a93a0014a5d2ce41079283b4283d24cb96448a0986c8c6c52a04584abd4e73911ea59cefeb786836e ruby-3.2.0-preview2.tar.gz=5e9ddcb1a43cff449b0062cc716bfb80a9ebbb14a1b063f34005e2998c2c5033badb44e882232db9b2fceda9376f6615986e983511fda2575d60894752b605cc ruby-3.2.0-preview3.tar.gz=860634d95e4b9c48f18d38146dfbdc3c389666d45454248a4ccdfc3a5d3cd0c71c73533aabf359558117de9add1472af228d8eaec989c9336b1a3a6f03f1ae88 ruby-3.2.0-rc1.tar.gz=798157d785ebae94cb128d3c134fa35e0e90c654972e531cb6562823042f3fb68a270226f7b1cf0c42572ef2b1488a1a3e44f88389ad2a6f9ca4b280a2a8e759 ruby-3.2.0.tar.gz=94203051d20475b95a66660016721a0457d7ea57656a9f16cdd4264d8aa6c4cd8ea2fab659082611bfbd7b00ebbcf0391e883e2ebf384e4fab91869e0a877d35 ruby-3.2.1.tar.gz=f8bbff5e237b501f4042ddc70a19ac1ce74f72f147c90daf7f3007a940136abde37c12a0f7444f713ede09ba847c2cc2897a1742823832e3dc8cce80073164e1 ruby-3.2.2.tar.gz=bcc68f3f24c1c8987d9c80b57332e5791f25b935ba38daf5addf60dbfe3a05f9dcaf21909681b88e862c67c6ed103150f73259c6e35c564f13a00f432e3c1e46 ruby-3.2.3.tar.gz=75aecd9cf87f1fa66b24ecda8837a53162071b4f8801dcfd79119a24c6e81df3e3e2ba478e1cc48c60103dfaab12a00cfa2039a621f8651298eba8bd8d576360 ruby-3.2.4.tar.gz=b695b98dac7bb2c8755a106d949cb1b1b91551092fad263765171ddf8a4d86585259ffab5f7cc9bace70143d645dbe5932cfc61c6dba7817177de391d76bcd79 ruby-3.2.5.tar.gz=d86c0151fabf21b418b007465e3f5b3fd0b2de0a9652057fd465b1f7e91b01d00f83a737e972ea994a5d9231e8cb27e64e576852390fe6c2ad502f0d099fe5f4 ruby-3.2.6.tar.gz=26ae9439043cf40e5eddde6b92ae51c9e1fa4e89c8ec6da36732c59c14873b022c683fb3007950d372f35de9b62a4fabbbc3ef1f4ef58cd53058bd56e1552cbe ruby-3.3.0-preview1.tar.gz=0f891f140ddc6372aa7c4459f8784126e0c341db7b80e72c51e441c5153c43c2d7b965f7807c076862ac84b9b8b0c6a66bbf66fc341746016151397bb21c782a ruby-3.3.0-preview2.tar.gz=1c5a13e519e8487fd40d932b96d14fa729521925c288e7841ab5eada628e506ceca2605bae36eea1aa505d9253383d53cd933b7a4bff96e6de5b1130c7c558e6 ruby-3.3.0-preview3.tar.gz=94db07a6958c09809b2e5b597fa55a121074e8bacb3bf588c83cf0d35b07a8b070172035a49d1abf0d8ee364a9ace824f34e677f7327ffe1acdbab0938ac49c4 ruby-3.3.0.tar.gz=26074009b501fc793d71a74e419f34a6033c9353433919ca74ba2d24a3de432dbb11fd92c2bc285f0e4d951a6d6c74bf5b69a2ab36200c8c26e871746d6e0fc6 ruby-3.3.1.tar.gz=0c8ea922a79152ac7adbfb2541320565bce6a631692fd39d499a06f53ad6339c16fad8374d171351ed63f7bda3312b26d4f8c058c5b6df3d7548fde372c718f1 ruby-3.3.2.tar.gz=a15ba8d6c2830fcd1f2b36f671acf9028c303ec78608fd268da0585db8e95ddd971666e8029bcfa2584da2184a6534e1f2f2da07fa7ca4494e8d842eed206f00 ruby-3.3.3.tar.gz=0388a96127eb6e53b836f7954af51ff62b84cdb7abeab823cb1349993d805b151204e426b9ac04ca8333fbd5e01c386d58bc37d34c4e9286b219dcda7542a150 ruby-3.3.4.tar.gz=56a0b88954a4efd0236626e49cc90cdb15d9bfd42b27d7fc34efae61f500058e58cb32c73fdef5f1505a36602f4632d6148bf3bd1df539cb5581ae157c78c22b ruby-3.3.5.tar.gz=5c482059628ef9de5d8a6ad4751f8043f2fc2b159b768265be7f3ee0574ad51d9500ee4fc9146c5978fbd51313039c3de39e7b7a4dedc9bcd5d09a41a713f1a7 ruby-3.3.6.tar.gz=4ae22f5c2a1f7ed84aab7587ff04ce4d9933cffe4347deaef0ab88d22c9780f274c1664a4ee1dd8235bc3cc749be828ffa8db7cb5f5002339a59a599acf3c729 ruby-3.3.7.tar.gz=9b48be05d1210e9194c8a6d77dfc3227599bff2b55fc9bb2049b11547927deef530ece9a2a505600cdc492c8517b1bef7ab5f2520ebd79ffcf76f0a734fa763d ruby-3.4.0-preview1.tar.gz=29c0e32179f7b823b6708f5328e495cd333fe8dd88f7df7d9051deab47add67b14d899bba565bba1a77e1b04c9693d9708541445c112925777bb6891cb7b2b62 ruby-3.4.0.tar.gz=bc70ecba27d1cdea00879f03487cad137a7d9ab2ad376cfb7a65780ad14da637fa3944eeeede2c04ab31eeafb970c64ccfeeb854c99c1093937ecc1165731562 ruby-3.4.1.tar.gz=93acc262e3b7cf86aeddebdad5b8938c187b9c44a73b0c252b6f873745964001459ae45ece7376745916e317c24895596a42b4544e836670fc6e90058e6f0de4 rubygems-2.6.11.tgz=3b0dd38c0aaf313c59e299dcf54f7bfb6e6d84b8b739573ddaf599e584da45ed7b1465f6521131b32f237e31a4796d9ef455b8be685064b3fd77a0355dfff13e rubygems-2.6.12.tgz=ebb672488b50f5fc988eab66ab14ce8e887dcc635f71239a85e32fbf1e919ca70196eb4d3f2fee3486cace7064bab0b8b08339c754b723198e1b0b0a0984ab54 rubygems-2.6.13.tgz=c952b6061a9a0778db304c3aa5bea693e71ae2564abfb19f8b123eef66eb1e3877fc7c36f4f1527da97bb320870cbfd4574ac57ad88e850a44fadd67ebdac152 rubygems-2.6.14.tgz=7743845bc5265df3782f85a23896cbb250d8a2bbc9934a27f274b001afa7aa62f7f00f616296f74747ea612d2cb37dd7f533c931aa72550d84c64d2a73d60daf rubygems-2.7.0.tgz=0bd08fbabcc33687c98365ffe6794ca2a5e82160b0297479d4f19bd899d176b7f4efb95248898b26d873f9fc7d86c10cada6e40cdc48738b0bac261c3aad261f rubygems-2.7.1.tgz=fa4ea123760b03b8b8e8ececc55c9dc34249073fb267d310bd903aa7a613267e5d27990bbf28e32c9a746bf884af8a84a0dc202297272f9d477f7710c21bfb60 rubygems-2.7.2.tgz=0f48c6e46663780a571c7ee0e6e772f2e18a755031e7dd8ede7870f238c214b9e3e38153b1ae8f1f78a9aad63c1a079b86573b3a25c57a600d842bdf92b9c4d1 rubygems-2.7.3.tgz=2782331b31947a23f85b285a3d5e7b66e34fe5847bc84dca4f1e6bfe33ce187ab0cbc814229de8111aa19490b656ca78b7c821e4ea6b425449991c01371b7565 rubygems-2.7.4.tgz=90f72a46709ef847666a6a23eecf24521abd5c294b2da8a246bb4c7f85daf4af39a0634fc8093c7bb7ded2ac137ea27fac5ed94af3b70c49e78594285c7a40ce rubygems-2.7.5.tgz=86957f1c438070135df527a15102e40487fcee93a55251463095e4c8794a8616d16ed9bdead0e0ef83c44806bd5016ecd9e178bef608b66af2e68e2c9c49e941 rubygems-2.7.6.tgz=bc168afc40c974dbc7c37eb5678432ba2ed7469c3f007a159699467ff2cff5205c508237193ee8becaa6eb555b043969cc5f92b2aaa6bf7c958dd7c187e258a7 rubygems-2.7.7.tgz=f93b7eacf5ef8725c40d618daf9deabc7e9eed74b3b7f13ecd16f89205fe24958e782314c52f8a8fe3205b93e20b830b4fbf7ff8944ff1cf56feb7de2d773252 rubygems-2.7.8.tgz=3d1cf68377dfcf102028342258aaff5a7257d2d2b34a80508c85aa258d810add46e65a157f902c271b0b7b568c437372d17246e89cd88f8500e47c008d17f1a6 rubygems-2.7.9.tgz=5f699f47bc24d8ffd4f8f44a509a9df71fcd945ca2574dc9d5050bfe06a44830a368f45d204112d7a4f1877e1600a6fe4d1b6b68f9a55288664667b4220a7d72 rubygems-2.7.10.tgz=48a18c0f202f463c38cf5dafecfbc7cc39245e63c7a059ef2cefadda478483794a929ea6b7e0ef062dd4423230746f1f09d7bec06a97fe3ceccc3325397a3e71 rubygems-3.0.0.tgz=047f4d446aae414e4803517088ef47d5cc66319ff08a3795c6d69e83eee9f3e7c3b05419858f7e5b6a8ec224990ca01178a9259961ef2d7ab737bac352a0f18d rubygems-3.0.1.tgz=dc29ad51ec67b1dca82a23973ea92153482788964d0755bdcd3c650116915c461c6e5fb1c826be3ee04a497fec4ac2826904bd406f24611e77cd8c9eaf4d8729 rubygems-3.0.2.tgz=90b46c2cd4f8baee74eb488a40691cc00e754cefc42029d485163d6ad7782df78ba5cbeab08eec6a4f71febe0f6e635e12a9381393008c58eb5e16396df93fbe rubygems-3.0.3.tgz=1dd585243341901c7b4cc60a4902000c10ce57fe2cc9c28e27e274a2e6029f936cde1c99d7097c93c2c5b2c8bcee5d692c8fe5cc00c996a040e4954b674e330e rubygems-3.0.4.tgz=887c64226ec0b32d33f2ea331936683406d54dc74d19e658a23521e25ab50aa23534fe9eecaf696154247ad1df1d24c233d8900b9aabc79096eebd6afef3f775 rubygems-3.0.5.tgz=f5a97cf67d7d043afba7c1aed014f1b64ff6376ea74d3d6533496bc5ca9742e0ccce1a157e6f67d8fcbe59d8e34bbfbcf4ed8be97acf2970603de6381043cb78 rubygems-3.0.6.tgz=1ef1822a2b19790a36a6d242b7d4584222617baa27787ec58961a9cfeb2733f19f9085490ffc72ee375d3153c7114e050c42e68fc8039e727fe5961b09365ee5 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=5dfb040b746e462c297ebcdf84e0f07cd74b86852055dcf0a7cf1814112099bc674bcccd94b03726aee76b253c9345a45d046cbfea230647644f0fd6b1c1ec96 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=17983c442c54d19196be3626e25c64f5474139c0b973624832ba8730efb047bc747c02e59c82f38397bf012c63ab83f79a9c1b64311cab796f08fe96d7d12a1a truffleruby-1.0.0-rc3-linux-amd64.tar.gz=b0b57082d61317911f101da617333d81ee6bede6b6e18f9bed86544dc413339c830198d90cad7ac94c0c8fb690adcfc559dd9f530abb70507ff6a76eee552b61 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=18f9782de56269389320ddad779ec69c168909198d4572e2ea4c18bc8082a539569a76760a6a6da58722fe08d77d83904aaba14baf4075a2833cbd2efc45dff3 truffleruby-1.0.0-rc5-linux-amd64.tar.gz=134d9ba5db7b8a1960d3a88390cd6f7503a0e8565094fb127333d122cd773bfbf9dc976c659029007e6fb68e93486293bac2ee29ab21dae9cb0c06ba57dd2c72 truffleruby-1.0.0-rc5-macos-amd64.tar.gz=5804f1f27916176f5a270de8aac85bc48c38ba37c4e719b09f5777e5c42429271819378cfe096c3cc33d406cd0726f2e37658020f97a438fd53751019831569a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=2597b375f590755b851d3b8cbad3eeab4c965eb02d0c944044f57e39f6c3db1e2f513e2aa55db789e4a885c697f81ce5c8bdbe9a7e44ee30fc09d234e44fb512 truffleruby-1.0.0-rc6-macos-amd64.tar.gz=2eb177190de0408dfdaf30264132955d1db7783ddfb63880d97d5933f66c5662794c3bb6198edf230fbff348674203e61f7f5481e74ac875974467f2f128e939 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=ab3a3dc19f903e68e36b135729693fa025a7c1950139277255e48c972387ef8399beceb3252ac37cc70c0df92838f8a0ba8c45f53665ac4286ef23f9b240806a truffleruby-1.0.0-rc7-macos-amd64.tar.gz=b8423f50a5292e211db7ebd7e2b987fd5c9eaaf34eba86b0644d2716a7f068f2e56deb4357c516b87b437e64fd5ce8515bc181165cc1042c6763f27d71baa59d truffleruby-1.0.0-rc8-linux-amd64.tar.gz=bcd05d304ee9b4da97193575fb1ad78041a0c7710bb444af6aef12ab4261b1873f472175ec51a187a5e99da481d66b81a132fb691643b793e87d655f31d54657 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=2c758221793c38ca8af1831a5d9f3abd555c406569508ac3a86d3c1ea5baeeacf65abb6e904ed3b1e58f555f51bc85ab171135ff4c3d0e08cdae994a861cbda4 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=42e60b69957f77a8623e0dccb7d215e800c27c622364fa76b9c574e8b1d3a4056a058b61ed91eac2375ecf4e51e482a6e17550aa2894a44d1db70687958033da truffleruby-1.0.0-rc9-macos-amd64.tar.gz=18556ee8d2fdec6907fbc8fc33d8b32ea0c58d40ee3df084ffb233e2fcd3a514a553f97c31dcc25dda3f86b1b805ca5fe3c9bf8cb078b92325515f09db6b88ba truffleruby-1.0.0-rc10-linux-amd64.tar.gz=10a7cb1be6214347469d5797091f73c3d7824bfb32a47c13566573a383380b1df9b79b7901ce0fa3af1c97285c90afac21e2de7a66ed88d9495846743b3b25e2 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=53f0939d9d8c3470cb79316d865b765816032528d77a3cf497134f3aa667a6253ae037410801261a8e7d0628198ac5f6aea5ecf9b7313f06ccc1d5e9f94e74ea truffleruby-1.0.0-rc11-linux-amd64.tar.gz=f89bc9a3310634d39f68006307da0b0ddafae036089bdd663e8372777a9562d201a4e69b2e1a602cff5fba6c78a8d4861b6d1020679bd0c72c71b938a4f36a27 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=3f461c12fa9fa57a55cc390eb9887df88f404661a77bffb44f82b4c7e9021513a6df9f6d5f332a36ce0c28ae7e3d5afbbe15cc4b814bc7f86dac2e5ec280f947 truffleruby-1.0.0-rc12-linux-amd64.tar.gz=85f042c308ccdfbeb318cec37056d8d970cab51cb0779425b85b8f76b0a1dd9cdec3191ae2b6b9b6be6e95767db814496450ed20076addd9bd495742f9de3c8c truffleruby-1.0.0-rc12-macos-amd64.tar.gz=067a0f63bbaaed4c8d4120f758c8ecf8c52afd1d30ea9d41489e26289d57a574d2d4ae29e29655378510adfb3f4a07b04b403d6ee98ee6b3d3aa8bff9c8d718f truffleruby-1.0.0-rc13-linux-amd64.tar.gz=1eb6b80cb05133d253f20629a11ed9ec3f37da002d5668cdc6577b2a20524e0cdd4d739d3f1aa2e8c518e2f7ebfd519ec1c647293714a1133ad4d569375c0e69 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=e3cddb0d0ae48f7d5ee4dd094ddb5a13f6a7aff1521b1adf25710971664b235cf67144e3b81525fd710dc49b6f6f6ba06e10eee1df5dc08119e9494c6be86934 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=c982194675b66a0433bd5517fc6f1564db669f595f8c7ba4819bf37e0599474d49a0c606577a898c27fa5ba40ab793c62d8211e7ea398d6b3e2bcc31eb5d55f4 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c14e396396385644333fb4c4aa1fb4b934a3f4e46312146821e5dcdaa097cb5b1efbf397c1dd6117d909803fd27ba8d835904672e98d43dc565e907fed752e1b truffleruby-1.0.0-rc15-linux-amd64.tar.gz=f27a75f929a6e945e49ceaad12f484fdaa918469a2f639b572fc4737b78e1cde0881697057e13a58b2fab7ac64c3a71bc9951561c3a8728e3dec814ef5e95fee truffleruby-1.0.0-rc15-macos-amd64.tar.gz=7aa029c4999d4608c9bcc491771b0434267032dbe9dbf504728079f87ce93e6a90e0fa839295b88c00e5a025186ed0fcc42361428b7874c05e222edb108d6c02 truffleruby-1.0.0-rc16-linux-amd64.tar.gz=e8c508dede11d4f54cf0b15cf92b50caad93076a6065bd2d6784c5ca739f5923ea2b894c6b2b52131f62187c8b305cd11a960fb5a670789802d59b6b2999f0af truffleruby-1.0.0-rc16-macos-amd64.tar.gz=841eff077c38bf594b101edb15942f601ba0dada2122b21b016f53251aa2a635b8d0b63b49bdfb50259b2545d1f498bca95d5f771a15a28edb0dd07216c9b709 truffleruby-19.0.0-linux-amd64.tar.gz=8ec6c7829351e0dc2cce57305947cd540734fe5a0b95b9501d4179993727ab2c331e9fb639b9865c0fed596df3906adf3dcf2efb22c4cfdd23a3dc2137025fd4 truffleruby-19.0.0-macos-amd64.tar.gz=912e0c15d32e40c884b2caaaf9a86a71450d441c960ef98a63dfce80353619073b146dcfe03d9af4273b2811d0899eebe922cc84a51d6f5e6826cc436d793f78 truffleruby-19.0.2-linux-amd64.tar.gz=eec92bfbd776acd61709a428b90b1029c5ea83e5ea839304d23cae3a541dd4fab3b387691fa76643f55d5939c9cac0cbe70dc0b5786e5e0e5d20f3fcd9a21356 truffleruby-19.0.2-macos-amd64.tar.gz=ce647b76c9931feac55baa5acd2c87d8335c606bc5cd7e462bd92ba1b09f4bab5db927f021e3119abfd85c33377003d060f36cf64eb121954fce8878112f01b5 truffleruby-19.1.0-linux-amd64.tar.gz=db01e6dc09fc5f39ca466aa94f725023d49a8f52343f129bf8c32b7f5f76ccf2d573ee3344fce3d5aff9983bc9af618cc5ca6e1dbba93b3f604e4f33f8a69b3f truffleruby-19.1.0-macos-amd64.tar.gz=f002bc0b6efca11eb97c4aa6df33d2e0fcc1de3443efd39d912b028df9dd8954cb76ef3ca7fbe140f4e922d6ae4c1a6a20853490ef1ea0749293e2fcd4ffe8fc truffleruby-19.1.1-linux-amd64.tar.gz=ec031e8c216e31f034d97aaccd6441869221d6946e18f375b44a866550b8e8eb4b2fb923f9ce1a62853bdcd5b9201e0f5d2732ca6525d80171d5732ef522bd25 truffleruby-19.1.1-macos-amd64.tar.gz=1c15918af939a8fe1779b71d9e53d2ce09ca7353173a3b357905d9fe1981ff013cf0f90c6b47e1ca66dd168c2f2d742f28a5fb134cc0231d36146da99f91c3cc truffleruby-19.2.0-linux-amd64.tar.gz=1248bdde9cd3651d7042fe4cecff4ad35534868d543fe2e6f3a5bfc3bc9d10d57b4139fc070f0a03861436a1aabc9a8ebdf3356f39b77a4b8f6a1dcf492f70a4 truffleruby-19.2.0-macos-amd64.tar.gz=92c3154ed229a115cf392826494745aae06dd9228dd0996c2c44c550552f13f9c254367d068452fa4a84eef79c19601c79b87e10f3121fd7b83b803514a41cfd truffleruby-19.2.0.1-linux-amd64.tar.gz=53c78cd1f255f2b7031a70a42b65c0bf80c510b9254f5d7ba82b4787f55f5b09cfa9544c424a90f4619a74179fed07c168bd501e34772ef836a773e89c467cc5 truffleruby-19.2.0.1-macos-amd64.tar.gz=ac11523cd49fac50de1e441039e429fb8cd6c7051d537e5083b64fa68eaa19c9f0a966b269da906c367985f229af82a4811282dbfd0a76ef6565162e1081a659 truffleruby-19.2.1-linux-amd64.tar.gz=c5ffc1b592a74e836a4f6ec75b0e103150a4a40d3183ae853ead38c951a85378163111cf0bd2b81e44548c0a7aeaded3ae8a7ae558d5a02dc9e2cce992b79b58 truffleruby-19.2.1-macos-amd64.tar.gz=bb467b91f66eb7d1e6f1a54a7bc0a3d9503bcbd935e8a02da9ea0b749a51e354b1140d4a4dad6fc05312b560bb9ccdcce4f6583bccd19bb5afee19bf494102fe truffleruby-19.3.0-linux-amd64.tar.gz=0e94777a3feabbf0107ed40847e20dd4e3696ff2b7c3f6ceddf3a53ccd812bd003c84c62a750e8fac9d2490374bf792d69174b48c3ed36b593485d86729136c1 truffleruby-19.3.0-macos-amd64.tar.gz=95470c389e24c865ecdc3d299005cd98f8221a128f3cd75f899b6b7ae5d6dc07962443ce0ff38dfd014589d5aaf08b718dc870a72eb7ea6ced18ec2b2db63095 truffleruby-19.3.0.2-linux-amd64.tar.gz=dc5309b71980657f750b4dd4f8b3bc4e191bc305b638b1e562ff5b0ad7fbba40079ba674caf46226a46b5ca58c10f812354786696264742f351b129fb088a672 truffleruby-19.3.0.2-macos-amd64.tar.gz=ff1c37485ebeff3edcc7081ce09bebe5541012dedff6997662c7f8a064e0ab10bef9a5cdf834263a06ae04ca0391743948bcdea6e6c9d7e1cfef9f21523c2bdb truffleruby-19.3.1-linux-amd64.tar.gz=c724547a9eacfdd135ce05eac9dcfe74e58a5e77c97f88103f83b8513c15c975a0ecf623f623a425ec81fad1b64d3b5e135660d6943608ad08048cda00eace79 truffleruby-19.3.1-macos-amd64.tar.gz=d746b2ad410c15d145d36c676a070ae454ba8e5ec6c594d5ebcf54b1fc719f98e8b8f71b6fd504c3d38df286bd11c5114f73b5ba39be312b11d42d4ca1a17d02 truffleruby-20.0.0-linux-amd64.tar.gz=4efea5ded5fcc6886befba3a3720fe1e5b2e376d46738565e8871a1ce0201a33ed52e78b8af2fb389618bdea99466d126d8537dd0919b0c13f8ff1940cb3e52e truffleruby-20.0.0-macos-amd64.tar.gz=b36488330514b77c7115689042cf2482a0beb9f72a0b05fb4c7a6ecb0835a3da47c3b15c41abd6ffced023e65ecf7eabcfbcc6e41901dcddd0fb3dfed46564c6 truffleruby-20.1.0-linux-amd64.tar.gz=116d57404540b85c15b321793a6f985624a2044af544e659b3607e50159703af5d445e22bff28ae2182dfa752f7500d420e250f6deccc98a2f01e89adba8ac3a truffleruby-20.1.0-macos-amd64.tar.gz=9b1267101dfe78b85c79f7528eb4de96b16933e66d5771efa6272372dac0fb35b199bb9d42773d61f4fa7a15d6cbd18b5753c148f7c3e477c7c4b21633f12b88 truffleruby-20.2.0-linux-amd64.tar.gz=a37eaf8475364b74d948979ac13dc6e6423bf11949ad1d0f2925f78a4495e80de9767001ccdb777c8cfd7f545839fad4d842522620c3acad179404bc4ce6752c truffleruby-20.2.0-macos-amd64.tar.gz=964c1e02cc53e1646060334a9911771e679a8344d811a0f77d5cae3529dfefff259c45505ac84b7debb958514cd5d2276ffd435802085494e0229dd140ce8f00 truffleruby-20.3.0-linux-amd64.tar.gz=ec2d8ff6a5d45fd7091e26430c67cbbdc0f8ffa41e9ac574d48802766fcd144e1f446db807700247ad6d8046b7ed070b5da70ef667e576d6fea60cc64ea5484f truffleruby-20.3.0-macos-amd64.tar.gz=1878f94e05a3c40484bf944a72412b179aa5415a16a7ebc1610cb512a1e1c4a2ce0e98685257ad6e5c14745245c35bb5b28205fb687292c4f17193cbfb3bb606 truffleruby-21.0.0-linux-amd64.tar.gz=b7d1b76cc015d136dbd74515431f4447730850475f81b00885b71b95819134db2656d941736048db42d519f03e1f2df066226513b77208adbdbbeda1f49cab11 truffleruby-21.0.0-macos-amd64.tar.gz=7677b827a9c1758d5f941c512cb0fe8daaa19c3db77b485d7dfa43940151d6b9094c4d9271e18ef5014630142dffb93d168c7ac631a3b5eef6fc61b2f9eecf88 truffleruby-21.1.0-linux-amd64.tar.gz=010e9fb78cab12486641780392be0f284da08dfd955f3a0d1ef72adb52e1c9024b54dc880173645aea2af680b3670a6bb01409198b757239edda4cd9bf2b1e90 truffleruby-21.1.0-macos-amd64.tar.gz=96ef8481faef1bfa7f01bb4d396818ef6f0943d19c6a23dedb68f8346740b72bf06efc707bdd29158cf991cc7073c97f429a07b02c2a48050512b46369850058 truffleruby-21.2.0-linux-amd64.tar.gz=c20af04909a852cb676c90403d852fb367d56eac0f9cf8ba42caa4cad1013ba393cc4611e434614ad132b7b0ed61160aadd887001b08de0767cf58f5e149efe7 truffleruby-21.2.0-macos-amd64.tar.gz=0b8d9633fde53aad78f0baf52858cd5a5716f53ff21698baab17da4a625b4369b88dbd664193e3f0d1b40e64c88699ab4f04bbe40f54189a588c93678962a7be truffleruby-21.2.0.1-linux-amd64.tar.gz=15ceeee383114f974aed5f16c99131d56947e13cfe248b97e55d61263ccd51aa56fc3e0df215196ef7f80ccba9e7f19e7f261d7a91d54bde2d9992caba682d82 truffleruby-21.2.0.1-macos-amd64.tar.gz=8a8762d90c19db4f48433ce0e3f3339e290685d79c6ee9bb7d4359c741edfa6a7360ff65124433d964730ac25b2cc6d8b581191b0a51479f11c2a80031a6c1c8 truffleruby-21.3.0-linux-amd64.tar.gz=b0c07b1ea797de92447a81b350d460c125a2efaff3c290637c4bcf1c216b5abd11148cfb143ad397062a96f36beade8234d0785c42f58fceac0011f629a5220b truffleruby-21.3.0-macos-amd64.tar.gz=42e607fa52a534123989ad232691ede65aa1c615f39320d93aa8ab9c21924eea7bc0aa49aef1a540ec972e2b3dc775d22a99eca3e0c9bc450c525f9020fbb975 truffleruby-22.0.0.2-linux-amd64.tar.gz=2231a0cfd27238c34ea0bbad27ba387453e48f39032607cbb829b347ea6ac804df15eb3f84d50b09248782d6202284498e7bc9aaa2060f0ce81bb83a84d700ad truffleruby-22.0.0.2-macos-amd64.tar.gz=1d7ac44f0862ad23cf17a7bba73d23dfd4727aadd9a3aa9633361e9bcd19655d163e160eae9c8db8ec9892f8fbf82d7a38b1cd689475bf41609a828208098623 truffleruby-22.1.0-linux-amd64.tar.gz=c4c2f9bf4236118c8ea62c08bad89e1034ecdfa0c4815693961c4d2b1b30ca043fe958abfec9cf36a8638aa2e005e71fcc244ebffd9ce11eb68cf48bd98c29d3 truffleruby-22.1.0-macos-amd64.tar.gz=507004ade838e614955e23331845839be656aaeae7869ed3d989c10e6491775a12313ac9ef03e14945f20f5e76d46ce6f7bb860af68a627c48065399cea3c567 truffleruby-22.2.0-linux-amd64.tar.gz=37c09249ef387df3e0614f646abb444cb5b7b2751538ab0432e703abe92a81b82e0d15f89d5ad7cd58afe5f30d9a92dc8471d19f1c1ce10b50478ac74f247739 truffleruby-22.2.0-linux-aarch64.tar.gz=49a7cfb4c81980d9c7a1588ef9f76a9bfb759d4b1925ab11f230d99c15a62e162a08249d23cf5646e2d38ecc2005e27103f2e5d92b83b0a182a4e64319b70c0d truffleruby-22.2.0-macos-amd64.tar.gz=d4c206fb0a5e63c5b7f61f2e62de854e4d0817075ef9ded237d98cd821c286e88d7b150d140d9907a957209f39be96c7025560e3908c89aa337925d2fba690af truffleruby-22.2.0-macos-aarch64.tar.gz=a01c18803777a74717ad699b6ee51eb759d881fb436d24338b557c52d4a693079d7b55f108394ccad0dd69c974cb895f4a36854355e84fecb67e41bf9eb18514 truffleruby-22.3.0-linux-amd64.tar.gz=d53472ae892dadc81c6fe63a597ccfb67e133958431b11716db4d920c78fc86f7496e4b10322d041c900bed77d27e02850da20aa95b297d63a9de2e72cdf3c76 truffleruby-22.3.0-linux-aarch64.tar.gz=dab63d49db4722f0c174ce8b882413102520ff649182946ba332ef5ba0fc6b58913595539a20b59e460faab2fba36f762dc8eb66aa729d4a6bb90feb2a95f053 truffleruby-22.3.0-macos-amd64.tar.gz=15c91d25fd6fb1d9f3f2a0b36676da5c8a76d62be86cff463ebe6c7e6aed2d9b6de9062021ab1b9b29cfb7a92b5682c860939acd71d12dba7e4a6bf3964fef3d truffleruby-22.3.0-macos-aarch64.tar.gz=7c44d0dd07e4ecd84a92f6dd574dc185906121b8eb75f6fe097b9d4738aa30751664d70e9027e072eeaa1dffa05fe7bcfc06be0c2dc950142f60664baf5eac69 truffleruby-22.3.1-linux-amd64.tar.gz=f41d3bd22500b7291121368169f8558df4563c840a01b70ff7feea3593f0152d8d77d4437af362bad62f25b79bce1ce8ddaa1bd8172a2a7ef8b61cdb6e478c9e truffleruby-22.3.1-linux-aarch64.tar.gz=1ca5221f0dc5ae3e0bd9545be474e115b2e62737701df95c6ee6cdaae5d82815acbe6af961ff23afee64dc26e655c7786d4347e3694c140773f065534322ee59 truffleruby-22.3.1-macos-amd64.tar.gz=bae16cc04c6018703833121f4258c3f18fa5062309d0600458be3c51c838bc63976a026db0f28d23005df9b640ccad0a9cafc56610a5ca9c24951c66b62097d9 truffleruby-22.3.1-macos-aarch64.tar.gz=b56e230d8fbc95d19364e695aaf1e552238b02ace7056f636808a7d7510777cddfde572ace5238ea1e314351bdd1a053ab3912d0889f51f55c722797c83eaaee truffleruby-23.0.0-preview1-linux-amd64.tar.gz=d538412f12d5ce743c351acbaa483b8b85dd2cf84fe06b3e90ca21f3c2fc0465df9c1773b3515fe4296d599f45e9cbb935dc5a69fe45668321e5639d58608ef4 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=f10b5ac749b11f93c2469f2c8a713ad090cb653761ae0a3e1ba4c19b0c96bd61c5e8da74d8944f9487c2d327d268a188f2cb56028d2beaca2a7816e63123600b truffleruby-23.0.0-preview1-macos-amd64.tar.gz=cd9db49c4253bd66cad6f9ae111c83d3befd0102a7ccb72a2407d22dc576ba7f3a26a90cd479f26dee3565d2f893a2b7c8b549e2351336f35d2632e57966657c truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=28b77d9943cd1617e0445633a9fea8911cfa975f5c581192439cd0944d2a17c2b0558e3e4112588b5fc77b57c48d857ad68ac51fcb867250625ad85406d87acc truffleruby-23.0.0-linux-amd64.tar.gz=da702de2e8c994f2646a3de5b44824210dbd37129cd2f91c3bdd990a1b0d0b05dee4443ad0f6cf98fdb4e489c9f4cde64f3561baf486dc642d4981a1a1812925 truffleruby-23.0.0-linux-aarch64.tar.gz=808254a154adcfd1bbd6e22bcdafebb6169c6f8cfd1c55382d446bb66002384ee844dcd8b5f642703ef440f7566645d190081f45e04a7d8d59bf87571cb4430a truffleruby-23.0.0-macos-amd64.tar.gz=f775d57e63c606eef424a1115408ed8539ef47d6bea0125ad1de7ee4fd5971e96747cb7f5d22d91d2f004edbd6ed6b9b5bd014127dc1abe7821a3a987a72d9dc truffleruby-23.0.0-macos-aarch64.tar.gz=000069854458f81d97eefe14123fbb69937942825e77d35602d55fa279123808177a34f252aec9dcfa48b93feacbee81ae0f0e7043c2d8a9ace2a4bb61ab253f truffleruby-23.1.0-linux-amd64.tar.gz=1868799d989c51798cf07b5243457af7ae2436dd19805fd634c98b2f1885266b5c3ec81dde668c2e5a290e9028f6f9fd223d153489df6ffcc74d45240aa020ad truffleruby-23.1.0-linux-aarch64.tar.gz=2766621877996ad35fddb94f978feed531307e8abf601dcf863754c96782b8149c3ac512dfe6dd2bdef0fe0e8a968bdd77608c41020434aaef4e7250c09edd74 truffleruby-23.1.0-macos-amd64.tar.gz=06c5a1d6ad644fd81737f0a1fd24c1529f712abe2a4485ad597aca7c35ca2af898121bb5883552cf518e2afdcb4221c8ad013759b46a69e34249e7c5ebe2b170 truffleruby-23.1.0-macos-aarch64.tar.gz=496cacc5cf413a48b60184e097a962ab5d2236c539f07cc0a9a2d9ef57dfc911a26b125cc3ad9408f6170c6f93c7562f35729c8313be0301972be21c10097942 truffleruby-23.1.1-linux-amd64.tar.gz=dbca85e281bf2484371a0bbcc202ca700acc704304d966b9202cf3835e82f6eb502e43522355f4c9e5a743877d93f5609006fbba2c5e6343a89de130e5209f6a truffleruby-23.1.1-linux-aarch64.tar.gz=6a58842d79247d8a64c513d68db9d53ea5640c02f71a1bc45f103baaaca67bb224939ae5f21ef55daa9d9b9697404052d39a3c382768ca366ab7892b8bf1abbe truffleruby-23.1.1-macos-amd64.tar.gz=7cc6bc957b7ffa42e9fbfe2f6e3014bf1e7996f2754e9e74377078c2c7bc7ac8e10598f1e1452839fc5b9583c823a2a735731ca193a6af2814a02566cc4cd9e4 truffleruby-23.1.1-macos-aarch64.tar.gz=a85b8189ef8a280f6a27d4c1c93893f844266dbdc15b8c4988cdf581613a353508fae4872ac9380efcc47f36357e137861521712c00ce8548041762a8987a9b2 truffleruby-23.1.2-linux-amd64.tar.gz=6307fd71fb1431fb12346d1f13dee4b3afe53947e8a9c1f3e3aa0baae5f9fc9e1496ede0a7d86b169d912ffef9625af998b4e698dc57a2a649140150e3fae28a truffleruby-23.1.2-linux-aarch64.tar.gz=0f0c5e4aa4e9fbc9b9f91d2b3d3fbfe26e78c5bc5b369fc78dd54775a7582b8c084a64f02848058bec79387fd80b09a5a5594ecfb268635fe76e1f9d957c2e92 truffleruby-23.1.2-macos-amd64.tar.gz=648401a73b29c28862a1fa077c2e1bf8fff65015c8bc690ff883a00a3dfd99389ffdb71f39ad85a4f16c531470f4cc891ae51ec927a426b0fa05fa85c9c6a2f9 truffleruby-23.1.2-macos-aarch64.tar.gz=4ec88684c09aacfa1d8bfed9a17243579ededacecd869e98e12841710bae29ed6e5f080611e53fc217a853f730bb2a9cb3d47ef15443eb8a1ad76a120118c8a5 truffleruby-24.0.0-linux-amd64.tar.gz=3a59a4dc58ad03549d8e63db1485767757715fc9aec21b2b67b1440b13871a04541abeff9bc8201b3088e1865360b1667459e536d3cfb09687dbffca95deafeb truffleruby-24.0.0-linux-aarch64.tar.gz=50f3993b7362bb6e7da80f7327df3d079bb02f98b67012e2135005d77e61648e4f3268f767d8ca245ec5889ff934fbcccb94fd5ecbd55bb0cd9cca900fe10509 truffleruby-24.0.0-macos-amd64.tar.gz=9ec8bb340b15e29550448e123e3ab0f183edb9bbe7e052743cb2306cbd1956a5789c5a367c80c5e8d913dce2b804448dd6815e4d3421515166daf8db51d37c7d truffleruby-24.0.0-macos-aarch64.tar.gz=499f83bf65dcb6ecc92414a3550673e6a0baaddfe3ab13c0bd7aa1bdde1ae2a61d9d0ca8001c0d12688d9e09f98f9e2946a651220fe7d200bb0ec6f285394701 truffleruby-24.0.1-linux-amd64.tar.gz=62b4e8508eba8cdaac70e99ac9cb0b33a663b4195d79b2dad3d771ef538c6c41d1d91bb7bb07fbbafbcbbcaf17814ffaf6d6bdbafd474ba6a8ecdac30315a8c9 truffleruby-24.0.1-linux-aarch64.tar.gz=817d877848ea4bb55658ce34bbda52926be12426a8a5e1c4588bc0ec1896018b06dce176336b382f80a7c6d073d4331b20694a7797ee8fdf0177e973053bf929 truffleruby-24.0.1-macos-amd64.tar.gz=2ea65bea154aa38cce3f00f24fc9a4aab5e7478fafd070d0cc966878371c070d5a1776b7405e2c9e4cfa14e5c51219ed0fa988294eb4708690983b348886f439 truffleruby-24.0.1-macos-aarch64.tar.gz=bc1923e21768d34779c1bcd7850456a01ddc01acd1ccf20f4fb4a446fb847f8c51b1ff4a7c0cdc317ef8ce057ac24f18f25b778a02a6e2b185e0055d946ecaf2 truffleruby-24.0.2-linux-amd64.tar.gz=5d111beb862b618c4e6a7f8aea1d3d6476740513efdd59bf980a2b6d525a017f46fe02017b075962a4919a001b60bd9a070e69fedfa8a85533c0adbad2a8d86b truffleruby-24.0.2-linux-aarch64.tar.gz=8e3ba19df4e5509c4719bc3bb621f70ca6a0e683d48a296703649b88abd83a165e8a64ad2d7dc45394b6de0b214a95a395fa449f5393dd9e67deab9e149cf494 truffleruby-24.0.2-macos-amd64.tar.gz=06d3b5533c4e26aa1356e602c672efad99208aaee96110904216e16dcfb1d99a7535c3ef275f9a14635dd2f05110798b3c75d71199f6010f23c92c6990492cef truffleruby-24.0.2-macos-aarch64.tar.gz=ba36d3f1680112e6623b14a4bb902a5f65f11e9827f44462161b1c79ee344ca340566289aa1f841c1e213daef5608c159343cc203d07f41c2a55eaeb25db0987 truffleruby-24.1.0-linux-amd64.tar.gz=9a93fd61086fabcb6c4f3a0fcb16e81f42b0203a24a04209fe446eb5f88d78e2ac59ab54d42cc30ef5417199a88b452973eecdfafc57c7877e11edf0a3d42b13 truffleruby-24.1.0-linux-aarch64.tar.gz=ca23edf279ee9b4693630df9596c6e269bb544e06bfd02620447f51108d9e9b4dc8b3ecbcc7a8ba1280560c0eb4b59474e75acead81799e4c51365acb5676d24 truffleruby-24.1.0-macos-amd64.tar.gz=65b661b3bf497bbb090a2cb49607aa00c3e5bfe95eb19c7736d798715d55fe07ddb4e8d8c25c1ec4b7b304b37205c7de9d8ac2d56005c9fc43e4dc81ae699c9b truffleruby-24.1.0-macos-aarch64.tar.gz=ab665d995bd63839c0bf6ed1171875cce7974d49ed79953a05ecdcf13d815c0a5cd471f40839f3f51a1b3128b40a4ed34d9b89e4c3f343b38c78276aed667956 truffleruby-24.1.1-linux-amd64.tar.gz=78e4e8bd910e4b3b41e927f6158cf8cfc74da5187969727d5c5303416310c5b7f72fde239993ecd5ab51724785cd80b2bb9a422a0475320fca57ad40b26d2786 truffleruby-24.1.1-linux-aarch64.tar.gz=c4e3aa72433622f96216b053862beb65861ab20ab28cfc50f51452720173f0a836ee69335281c4c89c6289ffa6f42517b9487d1b6fe16926aecfd9180d6f8195 truffleruby-24.1.1-macos-amd64.tar.gz=099d1abaa8677ecfd298e974fbb37e21bff2ad45313090cecf9a2799b79b74223ca4f95fb873cb7148bb2754ea3f923cfb553dd1dbdf6f1c088a3793bd991871 truffleruby-24.1.1-macos-aarch64.tar.gz=8980a71fc423c454ceaa16b46ba085a0164bf22e3e2040e960623148f09fea4c467b304774afc2ea37d9e072905eab3ad65b3c4acdc7b01ba238e24829cc16d2 +truffleruby-24.1.2-linux-amd64.tar.gz=93e4ebdfb9c6a89681d8913a0e175b46c53124c37b0c15c6e032bcbf423def9205a6b288977772e50ba68c8fd06308c9478f22dc7c0385b41fc9989f68a86083 +truffleruby-24.1.2-linux-aarch64.tar.gz=63a212ab48704376c1f6e6792da231f6b4ed8ffe1f77eff56b0f58ae8030866da6fcc19cd7068ec158c6e11840b13f47d2d12ba65b6a7f06ba1de6cb1b582fc4 +truffleruby-24.1.2-macos-amd64.tar.gz=6cb535ce7fface14bdef86ad322992931ff809fbe781c0715774f279842b5f65d5e8ff4885858cf7a3ba345071509127f473381655f50d000e60c90a88eb11a0 +truffleruby-24.1.2-macos-aarch64.tar.gz=a146c8000468c977fc48d8069e938ad6d32fd257d23133c2125f5bb86598d00283c654fc553d5de31ff9a79224f34b3b064bb223ff7766f9f2e25fcf7e263947
rvm/rvm
03746c81c5d81eb23b2cf288abb3e75755ff6af1
ci: fix test matrix (#5543)
diff --git a/.github/actions/test/action.yml b/.github/actions/test/action.yml new file mode 100644 index 0000000..09dc4b4 --- /dev/null +++ b/.github/actions/test/action.yml @@ -0,0 +1,24 @@ +name: Test + +inputs: + ruby: + description: Ruby version + required: true + test: + description: Test path + required: true + +runs: + using: composite + steps: + - run: ./install + shell: bash + + - run: source ~/.rvm/scripts/rvm && rvm use ${{ inputs.ruby }} --install --default + shell: bash + + - run: source ~/.rvm/scripts/rvm && gem install tf -v '>=0.4.6' + shell: bash + + - run: source ~/.rvm/scripts/rvm && tf --text ${{ inputs.test }} + shell: bash diff --git a/.github/workflows/specs.yml b/.github/workflows/specs.yml index e80432b..9a093a9 100644 --- a/.github/workflows/specs.yml +++ b/.github/workflows/specs.yml @@ -1,71 +1,99 @@ name: CI on: pull_request: +env: + TERM: ansi + RVM_SKIP_BREW_UPDATE: true + jobs: - tests: + fast-tests: strategy: fail-fast: false matrix: os: - ubuntu-latest - macos-13 # intel # TODO: fix arm64 macos install # - macos-latest # arm64 ruby: - 3.1 - 3.2 - 3.3 - 3.4 - test: - - tests/fast/* include: # TODO: works on local, but fails in CI, needs to be investigated - os: ubuntu-latest ruby: 3.3 test: tests/fail-in-ci/named_ruby_and_gemsets_comment_test.sh # TODO: https://github.com/rvm/rvm/issues/4937 - os: ubuntu-latest ruby: 3.3 test: tests/fail-in-ci/ruby_prepare_mount_comment_test.sh - # TODO: Test failing on 3.4 - - os: - - ubuntu-latest - - macos-13 # intel - ruby: - - 3.1 - - 3.2 - - 3.3 - test: tests/fail-on-3.4/* + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v4 - - os: - - ubuntu-latest - - macos-13 # intel - ruby: system - test: - # JRuby tests - - tests/jruby/jruby_comment_test.sh - # TruffleRuby tests - - tests/truffleruby/truffleruby_comment_test.sh + - uses: ./.github/actions/test + with: + ruby: ${{ matrix.ruby }} + test: tests/fast/* + # TODO: Test failing on 3.4 needs to be fixed + failing-on-ruby-3-4-tests: + strategy: + fail-fast: false + matrix: + os: + - ubuntu-latest + - macos-13 # intel + # TODO: fix arm64 macos install + # - macos-latest # arm64 + ruby: + - 3.1 + - 3.2 + - 3.3 + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v4 + + - uses: ./.github/actions/test + with: + ruby: ${{ matrix.ruby }} + test: tests/fail-on-3.4/* + + alternative-interpreters-tests: + strategy: + fail-fast: false + matrix: + os: + - ubuntu-latest + - macos-13 # intel + - macos-latest # arm64 + interpreter: + - jruby + - truffleruby runs-on: ${{ matrix.os }} - env: - TERM: ansi - RVM_SKIP_BREW_UPDATE: true steps: - uses: actions/checkout@v4 - - run: ./install - - run: source ~/.rvm/scripts/rvm && rvm use ${{ matrix.ruby }} --install --default - - run: source ~/.rvm/scripts/rvm && gem install tf -v '>=0.4.6' - - run: source ~/.rvm/scripts/rvm && tf --text ${{ matrix.test }} + + - run: sudo chown -R $USER /var/lib/gems + if: ${{ startsWith(matrix.os, 'ubuntu') }} + + - uses: ./.github/actions/test + with: + ruby: system + test: tests/${{ matrix.interpreter }}/* all-passed: runs-on: ubuntu-latest if: always() needs: - - tests + - fast-tests + - failing-on-ruby-3-4-tests + - alternative-interpreters-tests steps: - run: exit ${{ contains(needs.*.result, 'failure') && 1 || 0 }} diff --git a/tests/jruby/jruby_comment_test.sh b/tests/jruby/jruby_comment_test.sh index fb97803..3b030e7 100755 --- a/tests/jruby/jruby_comment_test.sh +++ b/tests/jruby/jruby_comment_test.sh @@ -1,3 +1,3 @@ -rvm reinstall jruby # status=0; match!=/Already installed/ -rvm jruby-ntest do ruby -v # match=/1.9./; match=/Java/ -rvm remove jruby-ntest # status=0; match=/Removing/ +rvm install jruby # status=0; match!=/Already installed/ +rvm jruby do ruby -v # match=/jruby/; match=/OpenJDK/ +rvm remove jruby # status=0; match=/removing/ diff --git a/tests/truffleruby/truffleruby_comment_test.sh b/tests/truffleruby/truffleruby_comment_test.sh index 19fcdb3..ec91830 100755 --- a/tests/truffleruby/truffleruby_comment_test.sh +++ b/tests/truffleruby/truffleruby_comment_test.sh @@ -1,22 +1,21 @@ ## Test the latest TruffleRuby release rvm install truffleruby # status=0; match!=/Already installed/; match=/compiling c-extensions/ rvm truffleruby do ruby -v # status=0; match=/truffleruby/ rvm truffleruby do rake --version # status=0; match=/rake, version/ rvm truffleruby do ruby -S bundle --version # status=0; match=/Bundler version/ echo 'gem "rake"' > Gemfile # status=0 rvm truffleruby do bundle install # status=0 rvm truffleruby do ruby -S bundle exec rake --version # status=0; match=/rake, version/ rm Gemfile -rvm truffleruby do ruby -ropen-uri -e 'puts URI.send(:open, %{https://rubygems.org/}) { |f| f.read(1024) }' -# status=0; match=/RubyGems.org/ +rvm truffleruby do ruby -ropen-uri -e 'puts URI.send(:open, %{https://rubygems.org/}) { |f| f.read(1024) }' # status=0; match=/RubyGems.org/ rvm remove truffleruby # status=0; match=/removing.+truffleruby/ ## Test installing truffleruby-head rvm install truffleruby-head # status=0; match!=/Already installed/ rvm truffleruby-head do ruby -v # status=0; match=/truffleruby/ rvm remove truffleruby-head # status=0 ## Test that the right version is installed (#4633) rvm install truffleruby-23.1.2 # status=0; match!=/Already installed/ rvm truffleruby-23.1.2 do ruby -v # status=0; match=/truffleruby 23.1.2/ rvm remove truffleruby-23.1.2 # status=0
rvm/rvm
fafa098b602b69d3a85a04e2e227a4469d403ef8
ci: update test matrix (#5542)
diff --git a/.github/workflows/specs.yml b/.github/workflows/specs.yml index 3c63e2e..e80432b 100644 --- a/.github/workflows/specs.yml +++ b/.github/workflows/specs.yml @@ -1,44 +1,71 @@ name: CI -on: [push, pull_request] -permissions: - contents: read # to fetch code (actions/checkout) + +on: + pull_request: jobs: tests: strategy: fail-fast: false matrix: - ruby: - - 3.1.6 - - 3.2.4 - - 3.3.3 os: - ubuntu-latest - - macos-13 - - macos-14 + - macos-13 # intel + # TODO: fix arm64 macos install + # - macos-latest # arm64 + ruby: + - 3.1 + - 3.2 + - 3.3 + - 3.4 test: - # For some reason, after running these tests, - # `source ~/.rvm/scripts/rvm` fails on macOS, so run them last. - # See https://github.com/rvm/rvm/pull/5387#issuecomment-2009391015 - # These tests also change the default ruby, which is another reason to run them last. - - "tests/fast/*" - - "tests/long/truffleruby_comment_test.sh" + - tests/fast/* include: + # TODO: works on local, but fails in CI, needs to be investigated - os: ubuntu-latest - ruby: 3.3.3 - # works on local, but fails in CI, needs to be investigated - test: "tests/long/named_ruby_and_gemsets_comment_test.sh" + ruby: 3.3 + test: tests/fail-in-ci/named_ruby_and_gemsets_comment_test.sh + + # TODO: https://github.com/rvm/rvm/issues/4937 - os: ubuntu-latest - ruby: 3.3.3 - # https://github.com/rvm/rvm/issues/4937 - test: "tests/long/ruby_prepare_mount_comment_test.sh" + ruby: 3.3 + test: tests/fail-in-ci/ruby_prepare_mount_comment_test.sh + + # TODO: Test failing on 3.4 + - os: + - ubuntu-latest + - macos-13 # intel + ruby: + - 3.1 + - 3.2 + - 3.3 + test: tests/fail-on-3.4/* + + - os: + - ubuntu-latest + - macos-13 # intel + ruby: system + test: + # JRuby tests + - tests/jruby/jruby_comment_test.sh + # TruffleRuby tests + - tests/truffleruby/truffleruby_comment_test.sh + runs-on: ${{ matrix.os }} env: TERM: ansi RVM_SKIP_BREW_UPDATE: true steps: - uses: actions/checkout@v4 - run: ./install - run: source ~/.rvm/scripts/rvm && rvm use ${{ matrix.ruby }} --install --default - - run: source ~/.rvm/scripts/rvm && gem install tf -v '>=0.4.1' + - run: source ~/.rvm/scripts/rvm && gem install tf -v '>=0.4.6' - run: source ~/.rvm/scripts/rvm && tf --text ${{ matrix.test }} + + all-passed: + runs-on: ubuntu-latest + if: always() + needs: + - tests + steps: + - run: exit ${{ contains(needs.*.result, 'failure') && 1 || 0 }} diff --git a/tests/long/named_ruby_and_gemsets_comment_test.sh b/tests/fail-in-ci/named_ruby_and_gemsets_comment_test.sh similarity index 100% rename from tests/long/named_ruby_and_gemsets_comment_test.sh rename to tests/fail-in-ci/named_ruby_and_gemsets_comment_test.sh diff --git a/tests/long/ruby_prepare_mount_comment_test.sh b/tests/fail-in-ci/ruby_prepare_mount_comment_test.sh similarity index 100% rename from tests/long/ruby_prepare_mount_comment_test.sh rename to tests/fail-in-ci/ruby_prepare_mount_comment_test.sh diff --git a/tests/fast/rvm_project_rvmrc_comment_test.sh b/tests/fail-on-3.4/rvm_project_rvmrc_comment_test.sh similarity index 100% rename from tests/fast/rvm_project_rvmrc_comment_test.sh rename to tests/fail-on-3.4/rvm_project_rvmrc_comment_test.sh diff --git a/tests/long/jruby_comment_test.sh b/tests/jruby/jruby_comment_test.sh similarity index 100% rename from tests/long/jruby_comment_test.sh rename to tests/jruby/jruby_comment_test.sh diff --git a/tests/long/rubinius_comment_test.sh b/tests/legacy/rubinius_comment_test.sh similarity index 100% rename from tests/long/rubinius_comment_test.sh rename to tests/legacy/rubinius_comment_test.sh diff --git a/tests/long/ruby-1.8.7_comment_test.sh b/tests/legacy/ruby-1.8.7_comment_test.sh similarity index 100% rename from tests/long/ruby-1.8.7_comment_test.sh rename to tests/legacy/ruby-1.8.7_comment_test.sh diff --git a/tests/long/ruby-1.9.3_comment_test.sh b/tests/legacy/ruby-1.9.3_comment_test.sh similarity index 100% rename from tests/long/ruby-1.9.3_comment_test.sh rename to tests/legacy/ruby-1.9.3_comment_test.sh diff --git a/tests/long/truffleruby_comment_test.sh b/tests/truffleruby/truffleruby_comment_test.sh similarity index 100% rename from tests/long/truffleruby_comment_test.sh rename to tests/truffleruby/truffleruby_comment_test.sh
rvm/rvm
88915da1667247c97cb5e68dad5dc6c2bf6e0cb2
Add ruby 3.3.7 (#5540)
diff --git a/CHANGELOG.md b/CHANGELOG.md index 6bacce9..44c2b30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,588 +1,589 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Use OpenSSL 3 for Ruby 3.2 and 3.3 [\#5480](https://github.com/rvm/rvm/pull/5480) * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) * Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) * Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) * Install `libncurses-dev` instead of `libncurses5-dev` on newer Debian and Ubuntu versions [\#5477](https://github.com/rvm/rvm/pull/5477) * Use `zlib-ng-compat` packages for Fedora 40+ [\#5479](https://github.com/rvm/rvm/pull/5479) * Detect core count on ARM-based machines [\#5498](https://github.com/rvm/rvm/pull/5498) * Fix requirement check for Ubuntu [\#5500](https://github.com/rvm/rvm/pull/5500) * Update location of homebrew install script on osx [\#5505](https://github.com/rvm/rvm/pull/5505) * Fix detection of Homebrew's write permissions when using Workbrew [\#5528](https://github.com/rvm/rvm/pull/5528) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) * 3.3.3 [\#5474](https://github.com/rvm/rvm/pull/5474) * 3.3.4 [\#5488](https://github.com/rvm/rvm/pull/5488) * 3.2.5 [\#5490](https://github.com/rvm/rvm/pull/5490) * 3.3.5 [\#5499](https://github.com/rvm/rvm/pull/5499) * 3.2.6, 3.3.6 [\#5513](https://github.com/rvm/rvm/pull/5513) * 3.4.0, 3.4.1 [\#5533](https://github.com/rvm/rvm/pull/5533) +* 3.3.7 [\#5540](https://github.com/rvm/rvm/pull/5540) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) * 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1, 24.0.2, 24.1.0, 24.1.1 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.3.15.0 [\#5482](https://github.com/rvm/rvm/pull/5482) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) * 9.4.8.0 [\#5484](https://github.com/rvm/rvm/pull/5484) * 9.4.9.0 [\#5512](https://github.com/rvm/rvm/pull/5512) * 9.4.10.0 [\#5538](https://github.com/rvm/rvm/pull/5538) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) * 3.1.6, 3.2.5, 3.3.2, 3.3.3 and 3.3.4 [\#5491](https://github.com/rvm/rvm/pull/5491) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 24.04 (Noble Numbat) x64 binaries * 3.2.6 and 3.3.6 [\#5529](https://github.com/rvm/rvm/pull/5529) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) #### Upgraded Ruby interpreters: * Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159), 2.5.0-preview1 [\#4204](https://github.com/rvm/rvm/pull/4204), 2.2.9, 2.3.6, 2.4.3 and 2.5.0-rc1 [\#4261](https://github.com/rvm/rvm/pull/4261), 2.5.0 [\#4265](https://github.com/rvm/rvm/pull/4265), 2.6.0-preview1 [\#4317](https://github.com/rvm/rvm/pull/4317), 2.2.10, 2.3.7, 2.4.4, 2.5.1 [\#4340](https://github.com/rvm/rvm/pull/4340) and 2.6.0-preview2[\#4395](https://github.com/rvm/rvm/pull/4395) * Add support for Rubinius 3.85-3.100 * Add support for JRuby 9.1.14.0 [\#4224](https://github.com/rvm/rvm/pull/4224), 9.1.15.0 [\#4258](https://github.com/rvm/rvm/pull/4258), 9.1.16.0 [\#4316](https://github.com/rvm/rvm/pull/4316), 9.1.17.0 [\#4366](https://github.com/rvm/rvm/pull/4366), 9.2.0.0 [\#4390](https://github.com/rvm/rvm/pull/4390) * Add support for mruby 1.4.0 [\#4286](https://github.com/rvm/rvm/pull/4286) * Add support for MagLev 1.1* and 1.2Alpha-1.2Alpha4 [\#4289](https://github.com/rvm/rvm/pull/4289) * Add support for RubyGems 2.6.14 [\#4205](https://github.com/rvm/rvm/pull/4205), 2.7.0-2.7.4 [\#4276](https://github.com/rvm/rvm/issues/4276) and 2.7.5-6 #### Binaries: * Ubuntu 16.04 x64 binaries for Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4362](https://github.com/rvm/rvm/issues/4362), 2.2.9, 2.3.6 and 2.4.3 [\#4259](https://github.com/rvm/rvm/issues/4259), 2.2.8, 2.3.5 and 2.4.2 [\#4161](https://github.com/rvm/rvm/issues/4161), 2.5.0 [\#4272](https://github.com/rvm/rvm/pull/4272) * Ubuntu 17.04 for Ruby 2.1.\*, 2.2.\* [\#4233](https://github.com/rvm/rvm/pull/4233) ## [1.29.3](https://github.com/rvm/rvm/releases/tag/1.29.3) 10 September 2017 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.2...1.29.3) #### New features: * Add RVM commands missing in bash shell completion [\#4078](https://github.com/rvm/rvm/pull/4078) * Railsexpress patches for 2.3.4, 2.3-head [\#4084](https://github.com/rvm/rvm/pull/4084), 2.2.5 and 2.2.6 [\#4153](https://github.com/rvm/rvm/pull/4153) * Update `gem-wrappers` to 1.3.0: Show warnings when the target binary is missing or is not executable [gem-wrappers \#9](https://github.com/rvm/gem-wrappers/issues/9) * Detect Zorin OS as Ubuntu [\#4140](https://github.com/rvm/rvm/issues/4140) #### Bug fixes: * Infinite loop in `gemset_create` [\#4102](https://github.com/rvm/rvm/issues/4102) * Command not found `__rvm_remote_version` error [\#4085](https://github.com/rvm/rvm/pull/4085) * Fix path of version script in `environment` [\#4117](https://github.com/rvm/rvm/pull/4117) * Define `cd()`, `pushd()` and `popd()` properly when using zsh [\#4132](https://github.com/rvm/rvm/pull/4132) * Update gem-wrappers to 1.3.1: Avoid warnings for missing ruby binaries [\#4104](https://github.com/rvm/rvm/issues/4104) * Handles :engine=> and :engine_version=> in Gemfile * Makes $rvm_ruby_string is not installed searchable by adding a fixed keyword * Correctly quotes suggested install command * Fix path to version script in rvm-installer [\#4134](https://github.com/rvm/rvm/pull/4134) * Fix rvm autolibs status, fix [\#4123](https://github.com/rvm/rvm/issues/4123) * Ruby 2.3.x and older are not compatible with OpenSSL 1.1.x on Arch [\#4006](https://github.com/rvm/rvm/issues/4006) * Allow comments after ruby directive in Gemfile [\#4056](https://github.com/rvm/rvm/issues/4056) * Ruby 2.3/4 compilation fix for GCC 7 [\#4080](https://github.com/rvm/rvm/issues/4080) [\#4115](https://github.com/rvm/rvm/issues/4115) * Add warning for sudo users [\#4009](https://github.com/rvm/rvm/issues/4009) * Allows running RVM shell function in Bash with `set -o nounset` [\#4013](https://github.com/rvm/rvm/issues/4013) * Ensure `rvm_hooks_path` is set [\#3902](https://github.com/rvm/rvm/issues/3902) * Allow building static ruby with `--disbale-shared` [\#4091](https://github.com/rvm/rvm/issues/4091) diff --git a/config/known b/config/known index d57876e..de05a6f 100644 --- a/config/known +++ b/config/known @@ -1,81 +1,81 @@ # MRI Rubies [ruby-]1.8.6[-p420] [ruby-]1.8.7[-head] # security released on head [ruby-]1.9.1[-p431] [ruby-]1.9.2[-p330] [ruby-]1.9.3[-p551] [ruby-]2.0.0[-p648] [ruby-]2.1[.10] [ruby-]2.2[.10] [ruby-]2.3[.8] [ruby-]2.4[.10] [ruby-]2.5[.9] [ruby-]2.6[.10] [ruby-]2.7[.8] [ruby-]3.0[.7] [ruby-]3.1[.5] [ruby-]3.2[.6] -[ruby-]3[.3.6] -[ruby-]3.4[.1] +[ruby-]3.3[.7] +[ruby-]3[.4.1] ruby-head # for forks use: rvm install ruby-head-<name> --url https://github.com/github/ruby.git --branch 2.2 # JRuby jruby-1.6[.8] jruby-1.7[.27] jruby-9.1[.17.0] jruby-9.2[.21.0] jruby-9.3[.15.0] jruby[-9.4.10.0] jruby-head # Rubinius rbx-1[.4.3] rbx-2.3[.0] rbx-2.4[.1] rbx-2[.5.8] rbx-3[.107] rbx-4[.20] rbx-5[.0] rbx-head # TruffleRuby truffleruby[-24.1.1] # Opal opal # Minimalistic ruby implementation - ISO 30170:2012 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1[.4.1] mruby-2.0.1 mruby-2[.1.1] mruby[-head] # Ruby Enterprise Edition ree-1.8.6 ree[-1.8.7][-2012.02] # Topaz topaz # MagLev maglev-1.0.0 maglev-1.1[RC1] maglev[-1.2Alpha4] maglev-head # Mac OS X Snow Leopard Or Newer macruby-0.10 macruby-0.11 macruby[-0.12] macruby-nightly macruby-head # IronRuby ironruby[-1.1.3] ironruby-head diff --git a/config/known_strings b/config/known_strings index 5e136df..b04c050 100644 --- a/config/known_strings +++ b/config/known_strings @@ -12,563 +12,564 @@ jruby-1.0 jruby-1.0.1 jruby-1.0.2 jruby-1.0.3 jruby-1.1b1 jruby-1.1RC1 jruby-1.1RC2 jruby-1.1RC3 jruby-1.1 jruby-1.1.1 jruby-1.1.2 jruby-1.1.3 jruby-1.1.4 jruby-1.1.5 jruby-1.1.6RC1 jruby-1.1.6 jruby-1.2.0RC1 jruby-1.2.0RC2 jruby-1.2.0 jruby-1.3.0RC1 jruby-1.3.0RC2 jruby-1.3.0 jruby-1.3.1 jruby-1.4.0RC1 jruby-1.4.0RC2 jruby-1.4.0RC3 jruby-1.4.0 jruby-1.4.1 jruby-1.5.0.RC1 jruby-1.5.0.RC2 jruby-1.5.0.RC3 jruby-1.5.0 jruby-1.5.1 jruby-1.5.2 jruby-1.5.3 jruby-1.5.4 jruby-1.5.5 jruby-1.5.6 jruby-1.6.0.RC1 jruby-1.6.0.RC2 jruby-1.6.0.RC3 jruby-1.6.0 jruby-1.6.1 jruby-1.6.2 jruby-1.6.3 jruby-1.6.4 jruby-1.6.5 jruby-1.6.5.1 jruby-1.6.7 jruby-1.6.7.2 jruby-1.6.8 jruby-1.7.0.preview1 jruby-1.7.0.preview2 jruby-1.7.0.RC1 jruby-1.7.0.RC2 jruby-1.7.0 jruby-1.7.1 jruby-1.7.2 jruby-1.7.3 jruby-1.7.4 jruby-1.7.5 jruby-1.7.6 jruby-1.7.7 jruby-1.7.8 jruby-1.7.9 jruby-1.7.10 jruby-1.7.11 jruby-1.7.12 jruby-1.7.13 jruby-1.7.14 jruby-1.7.15 jruby-1.7.16 jruby-1.7.16.1 jruby-1.7.16.2 jruby-1.7.17 jruby-1.7.18 jruby-1.7.19 jruby-1.7.20 jruby-1.7.20.1 jruby-1.7.21 jruby-1.7.22 jruby-1.7.23 jruby-1.7.24 jruby-1.7.25 jruby-1.7.26 jruby-1.7.27 jruby-9.0.0.0.pre1 jruby-9.0.0.0.pre2 jruby-9.0.0.0.rc1 jruby-9.0.0.0.rc2 jruby-9.0.0.0 jruby-9.0.1.0 jruby-9.0.2.0 jruby-9.0.3.0 jruby-9.0.4.0 jruby-9.0.5.0 jruby-9.1.0.0 jruby-9.1.1.0 jruby-9.1.2.0 jruby-9.1.3.0 jruby-9.1.4.0 jruby-9.1.5.0 jruby-9.1.6.0 jruby-9.1.7.0 jruby-9.1.8.0 jruby-9.1.9.0 jruby-9.1.10.0 jruby-9.1.11.0 jruby-9.1.12.0 jruby-9.1.13.0 jruby-9.1.14.0 jruby-9.1.15.0 jruby-9.1.16.0 jruby-9.1.17.0 jruby-9.2.0.0 jruby-9.2.1.0 jruby-9.2.2.0 jruby-9.2.3.0 jruby-9.2.4.0 jruby-9.2.4.1 jruby-9.2.5.0 jruby-9.2.6.0 jruby-9.2.7.0 jruby-9.2.8.0 jruby-9.2.9.0 jruby-9.2.10.0 jruby-9.2.11.0 jruby-9.2.11.1 jruby-9.2.12.0 jruby-9.2.13.0 jruby-9.2.14.0 jruby-9.2.15.0 jruby-9.2.16.0 jruby-9.2.17.0 jruby-9.2.18.0 jruby-9.2.19.0 jruby-9.2.20.0 jruby-9.2.20.1 jruby-9.2.21.0 jruby-9.3.0.0 jruby-9.3.1.0 jruby-9.3.2.0 jruby-9.3.3.0 jruby-9.3.4.0 jruby-9.3.6.0 jruby-9.3.7.0 jruby-9.3.8.0 jruby-9.3.9.0 jruby-9.3.10.0 jruby-9.3.11.0 jruby-9.3.13.0 jruby-9.3.14.0 jruby-9.3.15.0 jruby-9.4.0.0 jruby-9.4.1.0 jruby-9.4.2.0 jruby-9.4.3.0 jruby-9.4.4.0 jruby-9.4.5.0 jruby-9.4.6.0 jruby-9.4.7.0 jruby-9.4.8.0 jruby-9.4.9.0 jruby-9.4.10.0 macruby-0.12 maglev-1.0.0 maglev-1.1beta maglev-1.1beta2 maglev-1.1RC1 maglev-1.2Alpha maglev-1.2Alpha2 maglev-1.2Alpha3 maglev-1.2Alpha4 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1.4.0 mruby-1.4.1 mruby-2.0.0 mruby-2.0.1 mruby-2.1.0-rc mruby-2.1.0 mruby-2.1.1-rc mruby-2.1.1-rc2 mruby-2.1.1 rbx-1.0.0-20100514 rbx-1.0.1-20100603 rbx-1.1.0-20100923 rbx-1.1.1-20101116 rbx-1.2.0-20101221 rbx-1.2.1-20110215 rbx-1.2.2-20110222 rbx-1.2.3-20110315 rbx-1.2.4-20110705 rbx-1.3.2 rbx-1.3.3 rbx-1.4.1 rbx-1.4.3 rbx-2.0.0 rbx-2.1.0 rbx-2.1.1 rbx-2.2.0 rbx-2.2.2 rbx-2.2.3 rbx-2.2.4 rbx-2.2.5 rbx-2.2.6 rbx-2.2.7 rbx-2.2.8 rbx-2.2.9 rbx-2.2.10 rbx-2.3.0 rbx-2.4.0 rbx-2.4.1 rbx-2.5.0 rbx-2.5.1 rbx-2.5.2 rbx-2.5.3 rbx-2.5.4 rbx-2.5.5 rbx-2.5.6 rbx-2.5.7 rbx-2.5.8 rbx-3.70 rbx-3.71 rbx-3.72 rbx-3.73 rbx-3.74 rbx-3.75 rbx-3.76 rbx-3.77 rbx-3.78 rbx-3.79 rbx-3.80 rbx-3.81 rbx-3.82 rbx-3.83 rbx-3.84 rbx-3.85 rbx-3.86 rbx-3.87 rbx-3.88 rbx-3.89 rbx-3.90 rbx-3.91 rbx-3.92 rbx-3.93 rbx-3.94 rbx-3.95 rbx-3.96 rbx-3.97 rbx-3.98 rbx-3.99 rbx-3.100 rbx-3.101 rbx-3.102 rbx-3.103 rbx-3.104 rbx-3.105 rbx-3.106 rbx-3.107 rbx-4.0 rbx-4.1 rbx-4.2 rbx-4.3 rbx-4.4 rbx-4.5 rbx-4.6 rbx-4.7 rbx-4.8 rbx-4.9 rbx-4.10 rbx-4.11 rbx-4.12 rbx-4.13 rbx-4.14 rbx-4.15 rbx-4.16 rbx-4.17 rbx-4.18 rbx-4.19 rbx-4.20 rbx-5.0 ree-1.8.6-20080507 ree-1.8.6-20080621 ree-1.8.6-20080623 ree-1.8.6-20080624 ree-1.8.6-20080709 ree-1.8.6-20080810 ree-1.8.6-20081205 ree-1.8.6-20081215 ree-1.8.6-20090113 ree-1.8.6-20090201 ree-1.8.6-20090421 ree-1.8.6-20090520 ree-1.8.6-20090610 ree-1.8.6-20090928 ree-1.8.7-2009.10 ree-1.8.7-2010.01 ree-1.8.7-2010.02 ree-1.8.7-2011.01 ree-1.8.7-2011.02 ree-1.8.7-2011.03 ree-1.8.7-2011.12 ree-1.8.7-2012.02 ruby-1.8.5-p115 ruby-1.8.5-p231 ruby-1.8.6-p286 ruby-1.8.6-p287 ruby-1.8.6-p369 ruby-1.8.6-p383 ruby-1.8.6-p398 ruby-1.8.6-p399 ruby-1.8.6-p420 ruby-1.8.7-p160 ruby-1.8.7-p174 ruby-1.8.7-p248 ruby-1.8.7-p249 ruby-1.8.7-p299 ruby-1.8.7-p302 ruby-1.8.7-p330 ruby-1.8.7-p334 ruby-1.8.7-p352 ruby-1.8.7-p357 ruby-1.8.7-p358 ruby-1.8.7-p370 ruby-1.8.7-p371 ruby-1.8.7-p374 ruby-1.9.0 ruby-1.9.1-p129 ruby-1.9.1-p243 ruby-1.9.1-p376 ruby-1.9.1-p378 ruby-1.9.1-p429 ruby-1.9.1-p431 ruby-1.9.2-p0 ruby-1.9.2-p136 ruby-1.9.2-p180 ruby-1.9.2-p290 ruby-1.9.2-p318 ruby-1.9.2-p320 ruby-1.9.2-p330 ruby-1.9.3-preview1 ruby-1.9.3-rc1 ruby-1.9.3-p0 ruby-1.9.3-p125 ruby-1.9.3-p194 ruby-1.9.3-p286 ruby-1.9.3-p327 ruby-1.9.3-p362 ruby-1.9.3-p374 ruby-1.9.3-p385 ruby-1.9.3-p392 ruby-1.9.3-p429 ruby-1.9.3-p448 ruby-1.9.3-p484 ruby-1.9.3-p545 ruby-1.9.3-p547 ruby-1.9.3-p550 ruby-1.9.3-p551 ruby-2.0.0-preview1 ruby-2.0.0-preview2 ruby-2.0.0-rc1 ruby-2.0.0-rc2 ruby-2.0.0-p0 ruby-2.0.0-p195 ruby-2.0.0-p247 ruby-2.0.0-p353 ruby-2.0.0-p451 ruby-2.0.0-p481 ruby-2.0.0-p576 ruby-2.0.0-p594 ruby-2.0.0-p598 ruby-2.0.0-p643 ruby-2.0.0-p645 ruby-2.0.0-p647 ruby-2.0.0-p648 ruby-2.1.0-preview1 ruby-2.1.0-preview2 ruby-2.1.0-rc1 ruby-2.1.0 ruby-2.1.1 ruby-2.1.2 ruby-2.1.3 ruby-2.1.4 ruby-2.1.5 ruby-2.1.6 ruby-2.1.7 ruby-2.1.8 ruby-2.1.9 ruby-2.1.10 ruby-2.2.0-preview1 ruby-2.2.0-preview2 ruby-2.2.0-rc1 ruby-2.2.0 ruby-2.2.1 ruby-2.2.2 ruby-2.2.3 ruby-2.2.4 ruby-2.2.5 ruby-2.2.6 ruby-2.2.7 ruby-2.2.8 ruby-2.2.9 ruby-2.2.10 ruby-2.3.0-preview1 ruby-2.3.0-preview2 ruby-2.3.0 ruby-2.3.1 ruby-2.3.2 ruby-2.3.3 ruby-2.3.4 ruby-2.3.5 ruby-2.3.6 ruby-2.3.7 ruby-2.3.8 ruby-2.4.0-preview1 ruby-2.4.0-preview2 ruby-2.4.0-preview3 ruby-2.4.0-rc1 ruby-2.4.0 ruby-2.4.1 ruby-2.4.2 ruby-2.4.3 ruby-2.4.4 ruby-2.4.5 ruby-2.4.6 ruby-2.4.7 ruby-2.4.8 ruby-2.4.9 ruby-2.4.10 ruby-2.5.0-preview1 ruby-2.5.0-rc1 ruby-2.5.0 ruby-2.5.1 ruby-2.5.2 ruby-2.5.3 ruby-2.5.4 ruby-2.5.5 ruby-2.5.6 ruby-2.5.7 ruby-2.5.8 ruby-2.5.9 ruby-2.6.0-preview1 ruby-2.6.0-preview2 ruby-2.6.0-preview3 ruby-2.6.0-rc1 ruby-2.6.0-rc2 ruby-2.6.0 ruby-2.6.1 ruby-2.6.2 ruby-2.6.3 ruby-2.6.4 ruby-2.6.5 ruby-2.6.6 ruby-2.6.7 ruby-2.6.8 ruby-2.6.9 ruby-2.6.10 ruby-2.7.0-preview1 ruby-2.7.0-preview2 ruby-2.7.0-preview3 ruby-2.7.0-rc1 ruby-2.7.0-rc2 ruby-2.7.0 ruby-2.7.1 ruby-2.7.2 ruby-2.7.3 ruby-2.7.4 ruby-2.7.5 ruby-2.7.6 ruby-2.7.7 ruby-2.7.8 ruby-3.0.0-preview1 ruby-3.0.0-preview2 ruby-3.0.0-rc1 ruby-3.0.0 ruby-3.0.1 ruby-3.0.2 ruby-3.0.3 ruby-3.0.4 ruby-3.0.5 ruby-3.0.6 ruby-3.0.7 ruby-3.1.0-preview1 ruby-3.1.0 ruby-3.1.1 ruby-3.1.2 ruby-3.1.3 ruby-3.1.4 ruby-3.1.5 ruby-3.2.0-preview1 ruby-3.2.0-preview2 ruby-3.2.0-preview3 ruby-3.2.0-rc1 ruby-3.2.0 ruby-3.2.1 ruby-3.2.2 ruby-3.2.3 ruby-3.2.4 ruby-3.2.5 ruby-3.2.6 ruby-3.3.0-preview1 ruby-3.3.0-preview2 ruby-3.3.0-preview3 ruby-3.3.0 ruby-3.3.1 ruby-3.3.2 ruby-3.3.3 ruby-3.3.4 ruby-3.3.5 ruby-3.3.6 +ruby-3.3.7 ruby-3.4.0-preview1 ruby-3.4.0 ruby-3.4.1 truffleruby-1.0.0-rc2 truffleruby-1.0.0-rc3 truffleruby-1.0.0-rc5 truffleruby-1.0.0-rc6 truffleruby-1.0.0-rc7 truffleruby-1.0.0-rc8 truffleruby-1.0.0-rc9 truffleruby-1.0.0-rc10 truffleruby-1.0.0-rc11 truffleruby-1.0.0-rc12 truffleruby-1.0.0-rc13 truffleruby-1.0.0-rc14 truffleruby-1.0.0-rc15 truffleruby-1.0.0-rc16 truffleruby-19.0.0 truffleruby-19.0.2 truffleruby-19.1.0 truffleruby-19.1.1 truffleruby-19.2.0 truffleruby-19.2.0.1 truffleruby-19.2.1 truffleruby-19.3.0 truffleruby-19.3.0.2 truffleruby-19.3.1 truffleruby-20.0.0 truffleruby-20.1.0 truffleruby-20.2.0 truffleruby-20.3.0 truffleruby-21.0.0 truffleruby-21.1.0 truffleruby-21.2.0 truffleruby-21.2.0.1 truffleruby-21.3.0 truffleruby-22.0.0.2 truffleruby-22.1.0 truffleruby-22.2.0 truffleruby-22.3.0 truffleruby-22.3.1 truffleruby-23.0.0-preview1 truffleruby-23.0.0 truffleruby-23.1.0 truffleruby-23.1.1 truffleruby-23.1.2 truffleruby-24.0.0 truffleruby-24.0.1 truffleruby-24.0.2 truffleruby-24.1.0 truffleruby-24.1.1 diff --git a/config/md5 b/config/md5 index 1708ba1..1624723 100644 --- a/config/md5 +++ b/config/md5 @@ -1287,770 +1287,771 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=873b63cc2e4abbb6ec5126ab07ce429a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=84658482a83ee3a4c80d145d0bd7ccb8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=d3af42a4fd701e0710d5f6a16e6bb9a3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c5f56b0149ab787d89c69056eb45e483 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=13f1011cc048aef7199ae8f14bc2ac62 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=fba1bf0b819f52561deab198fd36743d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=3ec8f383026889e2f3c328d86839a7b2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=9c3775365cab8e1e82aa19e87b9711dd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=cce17e87cc9bfcb6b995e5f1996c423c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=b80a93441133b85258d97085aeead20a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=74c45b08a2dc28871ff158b608cc8685 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=469b22a4b12f23e86ac25b3d797ff559 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=ea7767cbfacd744813ccaedd1b4e0013 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=0d9f69db1bd665c9e5c9592b483b31a1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=068f5c90b5b381cd58d8804ca2b3be64 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=6181192273efab4aabaa8628fc83c7be https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=fa690cb7132706fb25dfc625e949e96a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=c443f32cd4c91fb37ff79bd86906e1bc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=6fa3edab1bbacf7328074a7fba22be50 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=a950bc4af16446fce2f9266e95629bdb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=d9bce275c2f36dbde8a6c25f9fa10c2e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=6486c5ce9ec697039b0bb36d2bf18a0d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=79f0927984b8e6e7934b34bdb2a3e5e5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=214ac1e49a75291a68c63134bc246a8a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=94a39d1b226350362666f6305866b20b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=4db7d99d775a7f24bb55c6053d4eb864 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=c0db831a97b8427e0777adeaebf7a9d8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=830b4845fbfd45df75758e311a013ffc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=3fc39c824b2060a3a2766ca01037dd15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=0b395f3884c78c6938896ff253c5251b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=2be294a056a45a50262d1796906f8860 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=0270733b808489a91e41f73d9fe971e9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=33db4a687e4943faf6c2853179b67935 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=dea6663b2c113190e9b99a6dcedb3aa0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=835e563bfbe3c8311326660a51f3394c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=66e3c1e1140300c8236c13e3178cb8ab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=07b12bd2a7d8242c34d824882e654c22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=fe12c0e211f90076b51c7916c830971f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=65ab3105b0c6d5e8a2e9977a3ab7ed94 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=08547ad8e760e0776c74401ae5bbd8e5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=631b4ea065d18df96c6ccbc141904bb3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=03a67e234d886f3c698c1571e42cc7a6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=0ded0cb8ce18a846d71d7e04d24c2e78 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=5251aed0ba4d8349413d6bf4c261bea3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=f09694c4f23d7625f72606bce0efb710 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=340db3acb58829b51e4a7ac1c77246d4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1bd86cb46a9e6c40c285258879a3d59 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=d86b2a1e9721b9459e1283006e03fa92 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.2.6.tar.bz2=7d7e84912bb4d1f9915bb391fac54694 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.3.6.tar.bz2=3148fa25b5cd308156c567181ccf5ac3 ironruby-1.0.zip=7a92888837b3507355ed391dbfc0ab83 ironruby-1.1.3.zip=4f2af6253a459cc054d6c55956e514a9 jruby-bin-1.3.1.tar.gz=4a95db8fc93ed7219663fbede98b6117 jruby-bin-1.4.tar.gz=54dba9a88b2b3f99ac86a79828d0178b jruby-bin-1.4.0.tar.gz=f37322c18e9134e91e064aebb4baa4c7 jruby-bin-1.4.0.zip=3a9c8a5115a679da7d7a49a56d57d4c0 jruby-bin-1.4.1.tar.gz=a4aa8c43d1b9ffd9dbc6cb738d55a034 jruby-bin-1.5.0.tar.gz=ee2b4e326e8b87858e5dd0c8e94102e6 jruby-bin-1.5.1.tar.gz=74251383e08e8c339cacc35a7900d3af jruby-bin-1.5.2.tar.gz=d239deb9a108a6abbfbd6cb79cf8255b jruby-bin-1.5.3.tar.gz=ccb0b2dbc300d8dd4ad1bd4da48b8320 jruby-bin-1.5.5.tar.gz=8e00f7d40cbf221f733d6f7a15784e9a jruby-bin-1.5.6.tar.gz=94033a36517645b7a7ec781a3507c654 jruby-bin-1.6.0.tar.gz=f4d7e339dfc0fbaef5b878d1c0a66fbe jruby-bin-1.6.2.tar.gz=a46f978c24a208717023bb4b8995c678 jruby-bin-1.6.3.tar.gz=694b80e4eea784cdc1eb39fb1e3132c9 jruby-bin-1.6.4.tar.gz=0e96b6f4d1c6f12b5ac480cd7ab7da78 jruby-bin-1.6.5.tar.gz=54354082673bd115f945890dc6864413 jruby-bin-1.6.5.1.tar.gz=246a7aa2b7d7e6e9e8a0c2e282cbcfd0 jruby-bin-1.6.7.tar.gz=fd1b8d7389aa92da69ea6efb4782e40a jruby-bin-1.6.7.2.tar.gz=1e520f1b5130114464e5f1950cb24774 jruby-bin-1.6.8.tar.gz=a76ac5845640e4a1ebdfa74421efc935 jruby-bin-1.7.0.preview1.tar.gz=7b9e5e1cd0d818d0199086d948f948b4 jruby-bin-1.7.0.preview2.tar.gz=e8f1623759590aadbf49e4cc53f1cb61 jruby-bin-1.7.0.RC1.tar.gz=bdddcee3d126cddd9a85b5a066a7e25e jruby-bin-1.7.0.RC2.tar.gz=ffe2dd61711f4574fed344af151e5de5 jruby-bin-1.7.0.tar.gz=21861e0ecdbf48cda713c8ade82fdddb jruby-bin-1.7.1.tar.gz=86e659863541d8b987cb7bfbe3b4cfb0 jruby-bin-1.7.2.tar.gz=6ec9293b6dffd1e8ee57e9b7c6d18cbe jruby-bin-1.7.3.tar.gz=f0adf8ccee6f6777f7ab8e5e1d7a1f47 jruby-bin-1.7.4.tar.gz=c6a56eae78db28dddba911ccd0848c32 jruby-bin-1.7.5.tar.gz=c2a28c43c8095127d4a4aee0cf9b1439 jruby-bin-1.7.6.tar.gz=5d10011516a3d3bde10209b60cfcc0ef jruby-bin-1.7.7.tar.gz=9d6df2188fa57f12bf6fde4e4b2e3f09 jruby-bin-1.7.8.tar.gz=1e68f39d6dba7b6d9db81e24bb6b7d0a jruby-bin-1.7.9.tar.gz=b2e44f1f44837c07068ee453a89f4b55 jruby-bin-1.7.10.tar.gz=c84fe9245a73f9cd29f56343b7d2e39a jruby-bin-1.7.11.tar.gz=d6e6ab72426fa7fdc9ae55950980d877 jruby-bin-1.7.12.tar.gz=2073aa6dfc7c701ef7c3d3143d181582 jruby-bin-1.7.14.tar.gz=bc33284f27a3508a70d2ade100a2f6bd jruby-bin-1.7.15.tar.gz=92e63cffcb86842511aeeed95bdf96ed jruby-bin-1.7.16.tar.gz=92cb058d1a896257b5ac1c26dc433506 jruby-bin-1.7.16.1.tar.gz=eec2f0e03560bacf02a09c0096a99cad jruby-bin-1.7.16.2.tar.gz=cd31909b67239c5c6a795521fca5c239 jruby-bin-1.7.17.tar.gz=8b78ba1acdb718431f71c38287c07967 jruby-bin-1.7.18.tar.gz=aa7286140be0f6f60534ebffededc708 jruby-bin-1.7.19.tar.gz=bc38596757d8000d6ca4c4c3f8eacea6 jruby-bin-1.7.20.tar.gz=0c2adc160cb85c888b269e8ac4f886fc jruby-bin-1.7.21.tar.gz=bc91594072032023d146f330764d3274 jruby-bin-1.7.22.tar.gz=1da904bf41d362d0d0b366d9e781168f jruby-bin-1.7.23.tar.gz=41e3f45c28c94a275f9eeb22721da35d jruby-bin-1.7.25.tar.gz=fc43ead73f657f5261428923974fd605 jruby-bin-1.7.26.tar.gz=4ca60264a9560f37fdba8108543e72c2 jruby-bin-1.7.27.tar.gz=b98b0a2c52e885a868a2b60092e1cd3d jruby-bin-9.0.0.0.pre1.tar.gz=d5c8b30648348aa883f893d464d46bf1 jruby-bin-9.0.0.0.pre2.tar.gz=86994a9d7ed2cf318c75392623a3e6da jruby-bin-9.0.0.0.tar.gz=fe9036ea69bf23dc3b69cfc94adb5404 jruby-bin-9.0.1.0.tar.gz=a82bc640e0080b1d9a21d1477c8400e3 jruby-bin-9.0.3.0.tar.gz=828dd6c6dd18e5b186ccfd65753077bd jruby-bin-9.0.4.0.tar.gz=645bf4a1dcde3f19dc0fff75c8b4b685 jruby-bin-9.0.5.0.tar.gz=1d2dc649cbacbe26418ef3ba421018b1 jruby-bin-9.1.0.0.tar.gz=fe26e6308d006d35eb613cdd47d1dc99 jruby-bin-9.1.1.0.tar.gz=8356334270df07a214590d00a986837b jruby-bin-9.1.2.0.tar.gz=749bb917dde9666e365e12bbe776a5c2 jruby-bin-9.1.3.0.tar.gz=91c246cd623702032e88283565da5480 jruby-bin-9.1.4.0.tar.gz=5b80b78c09bf0cd4dcbcb9e1fe3e8b73 jruby-bin-9.1.5.0.tar.gz=e9b2cc44757db4cfbe7da79601d0169a jruby-bin-9.1.6.0.tar.gz=4092a89b01b55d1fb5498113f97ab0ca jruby-bin-9.1.7.0.tar.gz=b120c3eaeef7ff2aed3a57701e414e78 jruby-bin-9.1.8.0.tar.gz=0fdee002c56ec91dff1efffce205265c jruby-bin-9.1.9.0.tar.gz=170efc34297d7ac2a56bb1163e96b363 jruby-bin-9.1.10.0.tar.gz=b75e0d1a200e8f790d8bbc84f91e3002 jruby-bin-9.1.11.0.tar.gz=0502a14141da25a460ce197720bab4c3 jruby-bin-9.1.12.0.tar.gz=74bd7ae08c159fc62cb6f64845a868cc jruby-bin-9.1.13.0.tar.gz=6c642c8a2653a585779f453d8c843fd7 jruby-bin-9.1.14.0.tar.gz=a7e0ecd529690025d327c45744f60fa4 jruby-bin-9.1.15.0.tar.gz=01c29690324d7eb414fba66e4c009c9e jruby-bin-9.1.16.0.tar.gz=e64c3aa1310c272194fd1750b0b79fac jruby-bin-9.1.17.0.tar.gz=f28d1fcbb60e550f3abd839102ad0069 jruby-bin-9.2.0.0.tar.gz=bd476da4bed39ffcfff7116f448a5365 jruby-bin-9.2.1.0.tar.gz=4b78b0a40ca541556f5ee75a815e0be0 jruby-bin-9.2.2.0.tar.gz=be678559801be029fe233c33396e34d2 jruby-bin-9.2.3.0.tar.gz=79328ab1ed37d612da35271183e46bbd jruby-bin-9.2.4.0.tar.gz=f538f2be459f0f0e517a53446e78a354 jruby-bin-9.2.4.1.tar.gz=d373bbc2bd6caabfcc9914c4067e9d24 jruby-bin-9.2.5.0.tar.gz=14582fd6eee19610f0a7433ce5dd5ce4 jruby-bin-9.2.6.0.tar.gz=dba182ac9943b726b609ca61747c1835 jruby-bin-9.2.7.0.tar.gz=c0111b2cafa920df76284044e1aeedc7 jruby-bin-9.2.8.0.tar.gz=7d652b586a18f1c665289fd7e6edf4f5 jruby-bin-9.2.9.0.tar.gz=74b3451f79c13c2fc66c6dee69d46699 jruby-bin-9.2.10.0.tar.gz=e6ce97eae6e35b622c1b572f9297705b jruby-bin-9.2.11.0.tar.gz=22b003adfb03b253721cc85db248698f jruby-bin-9.2.11.1.tar.gz=687586132f7b649b1bdd7b823577c9d8 jruby-bin-9.2.12.0.tar.gz=cc7599837fbd0839cce7293577a34f2c jruby-bin-9.2.13.0.tar.gz=99df4eb89f88c7582bfe7c313daec7b4 jruby-bin-9.2.14.0.tar.gz=421c5b8146701177a738a0a691190018 jruby-bin-9.2.15.0.tar.gz=ba593f1de2c4e592a8ca9b9e903af457 jruby-bin-9.2.16.0.tar.gz=d8d954ee0ab6f4868c3fc63339660af9 jruby-bin-9.2.17.0.tar.gz=382fb3d9d2982efd5396f1a42e3fa6a1 jruby-bin-9.2.18.0.tar.gz=002ac95859a2176cb0a58d81d6e0fb14 jruby-bin-9.2.19.0.tar.gz=0961867a77838853f32ee72dbde7c00e jruby-bin-9.2.20.0.tar.gz=840876dd0ca0098452dd2667fe9dd7f4 jruby-bin-9.2.20.1.tar.gz=5856ed030f0d9e75d2384cf42f62a4de jruby-bin-9.2.21.0.tar.gz=9957c1d2bd9265144fe55f9f7093272a jruby-bin-9.3.0.0.tar.gz=501a3c975b3c9478b72d4b0cd37170b9 jruby-bin-9.3.1.0.tar.gz=201d3e483bf847f5c59f4b1f3bf594d5 jruby-bin-9.3.2.0.tar.gz=259c276f68a01495dda24407394a382d jruby-bin-9.3.3.0.tar.gz=cd49b81753048cee9c8ffdd2ce1cb3e2 jruby-bin-9.3.4.0.tar.gz=7292dd9a56155aa015ec08c03855b3fc jruby-bin-9.3.6.0.tar.gz=bc5a7b02be69fdf3f5584e8880fc7dcc jruby-bin-9.3.7.0.tar.gz=49b17b5cd7cf8bfb09d8f64147d992ef jruby-bin-9.3.8.0.tar.gz=6ea209b699a06944d0653d8048d8bfec jruby-bin-9.3.9.0.tar.gz=9a0f0a931346bc6ea34196a5c88002ec jruby-bin-9.3.10.0.tar.gz=83c9d776dfc8cf33bfa60f7e78077160 jruby-bin-9.3.11.0.tar.gz=6ccc04e658c49db19fc0c452db0f2931 jruby-bin-9.3.13.0.tar.gz=3f20268b494da900504e921507248183 jruby-bin-9.3.14.0.tar.gz=87a96fd3af448ec8fd5ca45c6469ecc9 jruby-bin-9.3.15.0.tar.gz=385fabe180b68fb8cd3743b315109e5f jruby-bin-9.4.0.0.tar.gz=d0136daa4910f6e6b21858260eb00fe2 jruby-bin-9.4.1.0.tar.gz=abe2669672ac973f1b41a4d3860eb7ae jruby-bin-9.4.2.0.tar.gz=486e50f3c74e7400e71631819fde91da jruby-bin-9.4.3.0.tar.gz=526006fefb3e5ffc5095ab5599cc38c6 jruby-bin-9.4.4.0.tar.gz=287b5c3a9b63ff93e49ae9dc0347263b jruby-bin-9.4.5.0.tar.gz=09c6fceb38d6c086af2e4d5f21f9fe65 jruby-bin-9.4.6.0.tar.gz=5e2fe4ed897d938332ee0d85d2aa60bc jruby-bin-9.4.7.0.tar.gz=a0633ca837efff62edca84ceae1f5515 jruby-bin-9.4.8.0.tar.gz=9f520a3a416b598b4e53916e7180b623 jruby-bin-9.4.9.0.tar.gz=b7a789e9ff1b87d0e8c7bda7fae31c16 jruby-bin-9.4.10.0.tar.gz=36d6d8d745e793580ec4b12caa257501 libiconv-1.13.1.tar.gz=7ab33ebd26687c744a37264a330bbe9a MacRuby%200.5.zip=675454a8c7bc19d606d90a726e08427c MacRuby%200.6.zip=a80afd3700c88cf95c539fc63b272faf MacRuby%200.7.1.zip=e8245dcd03c0757dfae7e6fee913947a MacRuby%200.7.zip=0bb60588c9ec9b1517665743bb05132f MacRuby%200.8.zip=735ac0a70f539e00b5de6fbec09c2c5c MacRuby%200.9.zip=fa01345e8fbfee620bbac64743a45f69 MacRuby%200.10.zip=1662d13d2f73cfc26258598f6988dcbc MacRuby%200.11.zip=b0cc23d60484a07012bcad549cef6054 MacRuby%200.12.zip=e1c5fa1b007a1cdc38c527a47302bf5e MagLev-1.0.0.tar.gz=e02cb8ee04438451eb78df14f91a68a9 MagLev-1.1beta.tar.gz=d542c7af290ce3b588b57629906b19e9 MagLev-1.1beta2.tar.gz=0ef88d5d145611aef324cb51be0aaafd MagLev-1.1RC1.tar.gz=41f4a0994daf1e5271cbd0ebe57816f4 MagLev-1.2Alpha.tar.gz=5c7dd3acef9dbddc0829bb1daa087abb MagLev-1.2Alpha2.tar.gz=cbbeae109854a6bf107a747a93fd478b MagLev-1.2Alpha3.tar.gz=b7470518f2b697eb1a5a39eff9b6d749 MagLev-1.2Alpha4.tar.gz=d54f04a611ce838b9d7009627065b7ca mruby-1.0.0.tar.gz=d9aec6a20fc1add65ee07ff6cf0e1ef2 mruby-1.1.0.tar.gz=60d75ea704c9285f3c80b3ad1d2b68de mruby-1.2.0.tar.gz=b5a3b7962d9db8cb8fb8105aa914d16c mruby-1.3.0.tar.gz=9714dd2804064d0043e099b7211d72b9 mruby-1.4.0.tar.gz=25efc35511070454074b36863c4d5b5e mruby-1.4.1.tar.gz=b40bf09af3f4c6e2bc443b9ac803a3ad mruby-2.0.0.tar.gz=b86c6a1dd86cb4ebe51e3fe38964a830 mruby-2.0.1.tar.gz=15b426a8a94a610c45414578786d05e3 mruby-2.1.0-rc.tar.gz=58a85fcb102d72900a25190da670e01d mruby-2.1.0.tar.gz=c01a4bbf62e6f5765c70b8813e0ce7da mruby-2.1.1-rc.tar.gz=809edd80e680855e7c4cf3c569972f28 mruby-2.1.1-rc2.tar.gz=24879fa5eb587f9415f03f8f3701842e mruby-2.1.1.tar.gz=c0ee4a112695046b9e4f177e31096d6c ncurses.tar.gz=cce05daf61a64501ef6cd8da1f727ec6 openssl-0.9.8k.tar.gz=e555c6d58d276aec7fdc53363e338ab3 openssl-0.9.8n.tar.gz=076d8efc3ed93646bd01f04e23c07066 openssl-1.0.1c.tar.gz=ae412727c8c15b67880aef7bd2999b2e openssl-1.0.1i.tar.gz=c8dc151a671b9b92ff3e4c118b174972 pkg-config-0.23.tar.gz=d922a88782b64441d06547632fd85744 readline-5.2.tar.gz=e39331f32ad14009b9ff49cc10c5e751 readline-6.0.tar.gz=b7f65a48add447693be6e86f04a63019 readline-6.2.tar.gz=67948acb2ca081f23359d0256e9a271c release-2.0.0-rc1.zip=b05b5e3c2712a294e4b09ebf450c1bfe rubinius-1.0.0-20100514.tar.gz=b05f4e791d3712c5a50b3d210dac6eb0 rubinius-1.0.1-20100603.tar.gz=eb185703c7ae0c0210e8dcb7f783ee8e rubinius-1.1.0-20100923.tar.gz=e2ae16238b201de09975abe19da09ea9 rubinius-1.1.1-20101116.tar.gz=b39f618eeba37c3aff215da8bca55fd7 rubinius-1.2.0-20101221.tar.gz=4284c2660f1f648942de35d4fc871f70 rubinius-1.2.1-20110215.tar.gz=e4a5127480062fddddc7ce2860b3b813 rubinius-1.2.2-20110222.tar.gz=59124378fb7ee040e9ee4e4736d89fc0 rubinius-1.2.3-20110315.tar.gz=9782dab18c2dd440af6b76e8eb5bc0f0 rubinius-1.2.4-20110705.tar.gz=403c777d19b3553e9cb36701fe002c5e rubinius-1.3.2.tar.bz2=64801ad8dd4e5e4fcb74ff313fec0a69 rubinius-1.3.3.tar.bz2=79f1f860ed8242257bd7f3e88c81a197 rubinius-1.4.1.tar.bz2=76b840405d4b9303261c27cf15002386 rubinius-2.0.0.tar.bz2=62e379e044c822b81e7b20a27daf133e rubinius-2.1.0.tar.bz2=908053f38fd840c75a93aab7487c20a5 rubinius-2.1.1.tar.bz2=6b4df0caec5ea88373e113f97a3b4c72 rubinius-2.2.0.tar.bz2=f1fbc6f3baf1da5ad86b3858f30f3349 rubinius-2.2.2.tar.bz2=ac70d629ea43525d91e81f4ccf135299 rubinius-2.2.3.tar.bz2=d9978cf1a4e8f0310db63e49834f9837 rubinius-2.2.4.tar.bz2=c10699da85a8eb5861a37b29077213bd rubinius-2.2.5.tar.bz2=5996dc8529b2ffe5921c5e7020bee20e rubinius-2.2.6.tar.bz2=85339bb6dd525eee719edf0551868f56 rubinius-2.2.7.tar.bz2=de2e6f4c3bd9a90bcb89f2ea27ddee9e rubinius-2.2.8.tar.bz2=c4db1ffb8dbdf864240cabe8b7758b49 rubinius-2.2.9.tar.bz2=0bf87ba617fa989e47d20942410028af rubinius-2.2.10.tar.bz2=8680da7eb921e6f595a1d716915ca7e0 rubinius-2.3.0.tar.bz2=e003a30af6689c8198116b3405d09d8e rubinius-2.4.0.tar.bz2=62391a51f49820daa51463066c3ce007 rubinius-2.4.1.tar.bz2=7758721b6e848387c3943ddb9ebd9479 rubinius-2.5.0.tar.bz2=178baa1ad172df0801765ea93bc36d87 rubinius-2.5.1.tar.bz2=77e1b87dc357691ad44b561a5f45c188 rubinius-2.5.2.tar.bz2=e5973d6e0a16f0390dc2a7478db83ff5 rubinius-2.5.3.tar.bz2=b19709eb3fa9e05b3fa6a357b33e3b5b rubinius-2.5.4.tar.bz2=64587916e5d445ed9bc630017a04498e rubinius-2.5.5.tar.bz2=ef671bbab50cbe2f70f953c491311261 rubinius-2.5.6.tar.bz2=597e4b049f49966c646faf699856c1b9 rubinius-2.5.7.tar.bz2=9a7f404019bce9fc34a7af7feb7cbb74 rubinius-2.5.8.tar.bz2=a24520892cada1f660e719a25abf63e3 ruby-1.8.5-p115.tar.bz2=03955e3c367b9beb3efe144c9f00d689 ruby-1.8.5-p115.tar.gz=20ca6cc87eb077296806412feaac0356 ruby-1.8.5-p231.tar.bz2=327f5aa6573787432222e96195cffd1e ruby-1.8.5-p231.tar.gz=e900cf225d55414bffe878f00a85807c ruby-1.8.6-p286.tar.bz2=e6b6bf8f34370e433936adb7a7065e63 ruby-1.8.6-p286.tar.gz=797ea136fe43e4286c9362ee4516674e ruby-1.8.6-p287.tar.bz2=80b5f3db12531d36e6c81fac6d05dda9 ruby-1.8.6-p287.tar.gz=6ff3420094711266c3201a0c7c2faa38 ruby-1.8.6-p369.tar.bz2=c3c1f3dd0dfbd2e17a04e59c2f12cfc8 ruby-1.8.6-p369.tar.gz=8c140ae28b4c3947b92dfad69109d90b ruby-1.8.6-p383.tar.bz2=a48703cd982b9f0e3002700a50b0e88e ruby-1.8.6-p383.tar.gz=4f49544d4a4d0d34e9d86c41e853db2e ruby-1.8.6-p398.tar.bz2=fbd43dc44ee26be4d37e6bebbed6f8bd ruby-1.8.6-p398.tar.gz=736db5f56c2d9b0136e563d049249fa8 ruby-1.8.6-p399.tar.bz2=f77c307cb72fb8808b0e85af5d05cefc ruby-1.8.6-p399.tar.gz=c3d16cdd3c1ee8f3b7d1c399d4884e33 ruby-1.8.6-p420.tar.bz2=1c7a978e9ffd4f56dc2ad74bbd2c34f3 ruby-1.8.6-p420.tar.gz=ca1eee44f842e93b5098bc5a2bb9a40b ruby-1.8.7-p160.tar.bz2=f8ddb886b8a81cf005f53e9a9541091d ruby-1.8.7-p160.tar.gz=945398f97e2de6dd8ab6df68d10bb1a1 ruby-1.8.7-p174.tar.bz2=88c45aaf627b4404e5e4273cb03ba2ee ruby-1.8.7-p174.tar.gz=18dcdfef761a745ac7da45b61776afa5 ruby-1.8.7-p248.tar.bz2=37e19d46b7d4b845f57d3389084b94a6 ruby-1.8.7-p248.tar.gz=60a65374689ac8b90be54ca9c61c48e3 ruby-1.8.7-p249.tar.bz2=37200cc956a16996bbfd25bb4068f242 ruby-1.8.7-p249.tar.gz=d7db7763cffad279952eb7e9bbfc221c ruby-1.8.7-p299.tar.bz2=244439a87d75ab24170a9c2b451ce351 ruby-1.8.7-p299.tar.gz=43533980ee0ea57381040d4135cf9677 ruby-1.8.7-p302.tar.bz2=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p302.tar.gz=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p330.tar.bz2=2689719fb42c8cf0aa336f8c8933f413 ruby-1.8.7-p330.tar.gz=50a49edb787211598d08e756e733e42e ruby-1.8.7-p334.tar.bz2=2f14f604bf981bb938ab5fc8b09eb1a6 ruby-1.8.7-p334.tar.gz=aacb6ee5dfe2367682bba56af7f415b8 ruby-1.8.7-p352.tar.bz2=0c61ea41d1b1183b219b9afe97f18f52 ruby-1.8.7-p352.tar.gz=0c33f663a10a540ea65677bb755e57a7 ruby-1.8.7-p357.tar.bz2=3abd9e2a29f756a0d30c7bfca578cdeb ruby-1.8.7-p357.tar.gz=b2b8248ff5097cfd629f5b9768d1df82 ruby-1.8.7-p358.tar.bz2=de35f00997f4ccee3e22dff0f2d01b8a ruby-1.8.7-p370.tar.bz2=1e4c3194537dd8ff92e756993e55a29d ruby-1.8.7-p371.tar.bz2=c27526b298659a186bdb5107fcec2341 ruby-1.8.7-p371.tar.gz=653f07bb45f03d0bf3910491288764df ruby-1.8.7-p374.tar.bz2=83c92e2b57ea08f31187060098b2200b ruby-1.8.7-p374.tar.gz=b72a0bc5b824398537762e5272bbb8dc ruby-1.9.0.tar.bz2=17eb66ac3721340d21db352d8f5dec76 ruby-1.9.1-p129.tar.bz2=6fa62b20f72da471195830dec4eb2013 ruby-1.9.1-p129.tar.gz=c71f413514ee6341c627be2957023a5c ruby-1.9.1-p243.tar.bz2=66d4f8403d13623051091347764881a0 ruby-1.9.1-p243.tar.gz=515bfd965814e718c0943abf3dde5494 ruby-1.9.1-p376.tar.bz2=e019ae9c643c5efe91be49e29781fb94 ruby-1.9.1-p376.tar.gz=ebb20550a11e7f1a2fbd6fdec2a3e0a3 ruby-1.9.1-p378.tar.bz2=5922459622a23612eb9b68a3586cb5f8 ruby-1.9.1-p378.tar.gz=9fc5941bda150ac0a33b299e1e53654c ruby-1.9.1-p429.tar.bz2=09df32ae51b6337f7a2e3b1909b26213 ruby-1.9.1-p429.tar.gz=0f6d7630f26042e00bc59875755cf879 ruby-1.9.1-p431.tar.bz2=03179138ae95dbfae872ef49e9cc6da7 ruby-1.9.1-p431.tar.gz=23f28cffc007ed5ac72c8e9bec6837ce ruby-1.9.2-p0.tar.bz2=d8a02cadf57d2571cd4250e248ea7e4b ruby-1.9.2-p0.tar.gz=755aba44607c580fddc25e7c89260460 ruby-1.9.2-p136.tar.bz2=52958d35d1b437f5d9d225690de94c13 ruby-1.9.2-p136.tar.gz=6e17b200b907244478582b7d06cd512e ruby-1.9.2-p180.tar.bz2=68510eeb7511c403b91fe5476f250538 ruby-1.9.2-p180.tar.gz=0d6953820c9918820dd916e79f4bfde8 ruby-1.9.2-p290.tar.bz2=096758c3e853b839dc980b183227b182 ruby-1.9.2-p290.tar.gz=604da71839a6ae02b5b5b5e1b792d5eb ruby-1.9.2-p318.tar.bz2=be431c6cbfa27e3836a06c6315717747 ruby-1.9.2-p318.tar.gz=cc7bf1025128e1985882ae243f348802 ruby-1.9.2-p320.tar.bz2=b226dfe95d92750ee7163e899b33af00 ruby-1.9.2-p320.tar.gz=5ef5d9c07af207710bd9c2ad1cef4b42 ruby-1.9.2-p330.tar.bz2=8ba4aaf707023e76f80fc8f455c99858 ruby-1.9.2-p330.tar.gz=4b9330730491f96b402adc4a561e859a ruby-1.9.3-p0.tar.bz2=65401fb3194cdccd6c1175ab29b8fdb8 ruby-1.9.3-p0.tar.gz=8e2fef56185cfbaf29d0c8329fc77c05 ruby-1.9.3-p125.tar.bz2=702529a7f8417ed79f628b77d8061aa5 ruby-1.9.3-p125.tar.gz=e3ea86b9d3fc2d3ec867f66969ae3b92 ruby-1.9.3-p194.tar.bz2=2278eff4cfed3cbc0653bc73085caa34 ruby-1.9.3-p194.tar.gz=bc0c715c69da4d1d8bd57069c19f6c0e ruby-1.9.3-p286.tar.bz2=e76848a86606a4fd5dcf14fc4b4e755e ruby-1.9.3-p327.tar.bz2=7d602aba93f31ceef32800999855fbca ruby-1.9.3-p327.tar.gz=96118e856b502b5d7b3a4398e6c6e98c ruby-1.9.3-p362.tar.bz2=13c26ea368d88a560f07cc8c5eb4fa05 ruby-1.9.3-p374.tar.bz2=944e73eba9ee9e1f2647ff32ec0b14b2 ruby-1.9.3-p385.tar.bz2=5ec9aff670f4912b0f6f0e11e855ef6c ruby-1.9.3-p392.tar.bz2=a810d64e2255179d2f334eb61fb8519c ruby-1.9.3-p392.tar.gz=f689a7b61379f83cbbed3c7077d83859 ruby-1.9.3-p429.tar.bz2=c2b2de5ef15ea9b1aaa3152f9112af1b ruby-1.9.3-p429.tar.gz=993c72f7f805a9eb453f90b0b7fe0d2b ruby-1.9.3-p448.tar.bz2=aa710d386e5903f78f0231868255e6af ruby-1.9.3-p448.tar.gz=a893cff26bcf351b8975ebf2a63b1023 ruby-1.9.3-p484.tar.bz2=03f5b08804927ceabe5122cb90f5d0a9 ruby-1.9.3-p484.tar.gz=8ac0dee72fe12d75c8b2d0ef5d0c2968 ruby-1.9.3-p545.tar.bz2=4743c1dc48491070bae8fc8b423bc1a7 ruby-1.9.3-p545.tar.gz=8e8f6e4d7d0bb54e0edf8d9c4120f40c ruby-1.9.3-p547.tar.bz2=5363d399be7f827c77bf8ae5d1a69b38 ruby-1.9.3-p547.tar.gz=7531f9b1b35b16f3eb3d7bea786babfd ruby-1.9.3-p550.tar.bz2=c2169c8b14ccefd036081aba5ffa96da ruby-1.9.3-p551.tar.bz2=0d8b272b05c3449dc848bb7570f65bfe ruby-1.9.3-preview1.tar.bz2=7d93dc773c5824f05c6e6630d8c4bf9b ruby-1.9.3-preview1.tar.gz=0f0220be4cc7c51a82c1bd8f6a0969f3 ruby-1.9.3-rc1.tar.bz2=26f0dc51ad981e12c58b48380112fa4d ruby-1.9.3-rc1.tar.gz=46a2a481536ca0ca0b80ad2b091df68e ruby-2.0.0-p0.tar.bz2=895c1c581f8d28e8b3bb02472b2ccf6a ruby-2.0.0-p195.tar.bz2=2f54faea6ee1ca500632ec3c0cb59cb6 ruby-2.0.0-p247.tar.bz2=60913f3eec0c4071f44df42600be2604 ruby-2.0.0-p353.tar.bz2=20eb8f067d20f6b76b7e16cce2a85a55 ruby-2.0.0-p451.tar.bz2=908e4d1dbfe7362b15892f16af05adf8 ruby-2.0.0-p481.tar.bz2=ea406a8d415a1a5d8365596d4288f3da ruby-2.0.0-p576.tar.bz2=eccd42d43620544a085c5e3834572f37 ruby-2.0.0-p594.tar.bz2=58469c0daf5f3a892a70cc674ea59c7f ruby-2.0.0-p598.tar.bz2=a3f3908103a7d209d1d1cf4712e3953c ruby-2.0.0-p643.tar.bz2=1390888cac6cd175e6f164eff378cdde ruby-2.0.0-p645.tar.bz2=d576240c97cfcc3ed9bdc457eb1e8280 ruby-2.0.0-p647.tar.bz2=27a3ea1a8b8bca1a6de43a7d08e88b69 ruby-2.0.0-p648.tar.bz2=3544031334f4665aa2eb1414babc9345 ruby-2.0.0-preview1.tar.bz2=47a0f662f0e258aa1c5e429c310861b3 ruby-2.0.0-preview2.tar.bz2=a645a783c3302cc094a9963a5e700a4d ruby-2.0.0-rc1.tar.bz2=24cebdda11e01ff4889ac983cd7dc02c ruby-2.0.0-rc2.tar.bz2=e92420131bd7994513e0bf09a3e2a19b ruby-2.1.0-preview1.tar.bz2=d32d1ea23988399afadbd21c5a7a37fc ruby-2.1.0-preview2.tar.bz2=9d566a9b2d2e7e35ad6125e2a14ce672 ruby-2.1.0-rc1.tar.bz2=cae095b90349b5b0f7026060cc3dd2c5 ruby-2.1.0.tar.bz2=1546eeb763ac7754365664be763a1e8f ruby-2.1.1.tar.bz2=53edc33b2f590ecdd9f6a344b9d92d0d ruby-2.1.1.tar.gz=e57fdbb8ed56e70c43f39c79da1654b2 ruby-2.1.2.tar.bz2=ed9b8565bdeccb401d628ec8d54a0774 ruby-2.1.2.tar.gz=a5b5c83565f8bd954ee522bd287d2ca1 ruby-2.1.3.tar.bz2=02b7da3bb06037c777ca52e1194efccb ruby-2.1.4.tar.bz2=f4136e781d261e3cc20748005e1740b7 ruby-2.1.5.tar.bz2=a7c3e5fec47eff23091b566e9e1dac1b ruby-2.1.6.tar.bz2=e1a8e6c6bfbb09bb7f8d6be8f508e4a1 ruby-2.1.7.tar.bz2=3a878e98311d543e5de3533b82ef4a5a ruby-2.1.8.tar.bz2=b17130b5f02a61640ae3b629af931610 ruby-2.1.9.tar.bz2=62bd1cbfcbc22e4d137462bce992f6d1 ruby-2.1.10.tar.bz2=5155c624807ff2418a9e9f15202954d0 ruby-2.2.0-preview1.tar.bz2=767b132eec3e70b14afe5884a7a767b1 ruby-2.2.0-preview2.tar.bz2=d7abace25a8ffe861cb2807bef1c58a6 ruby-2.2.0-rc1.tar.bz2=7144732d30dd4547c0a59862b3345d54 ruby-2.2.0.tar.bz2=d03cd4690fec1fff81d096d1c1255fde ruby-2.2.1.tar.bz2=06973777736d8e6bdad8dcaa469a9da3 ruby-2.2.2.tar.bz2=af6eb4fa7247f1f7b2e19c8e6f3e3145 ruby-2.2.3.tar.bz2=f49a734729a71774d4a94a9a603114b2 ruby-2.2.4.tar.bz2=c3d65f6d2ebe90dda81a37885ea244f5 ruby-2.2.5.tar.bz2=0c7edd1ff3650c3b74da2efaf641bf34 ruby-2.2.6.tar.bz2=3d13cf447142b8a11cd9beb7bc63fee0 ruby-2.2.7.tar.bz2=ca7224d80c08b015bc3b8c226d0914c3 ruby-2.2.8.tar.bz2=054d2e2904d5175662293e29c3bdb927 ruby-2.2.9.tar.bz2=575adf8ede6b1ca7236a5341e73536b0 ruby-2.2.10.tar.bz2=bef1909a4c885157870ef69548cdad3a ruby-2.3.0-preview1.tar.bz2=776000d74ec6dd34bf355ff6921c8311 ruby-2.3.0-preview2.tar.bz2=3ad442ccb337e77e4acaa4113f25b76a ruby-2.3.0.tar.bz2=f0d9f9bbdc87372ca98988a571875819 ruby-2.3.1.tar.bz2=c194281f63d7fcd816747fe78474be5e ruby-2.3.2.tar.bz2=9d00f3772f1c8fa5eecdfea089e3032f ruby-2.3.3.tar.bz2=04b9c461a2bc1eec0535ad1947cad4fb ruby-2.3.4.tar.bz2=99961e97566aee6d63635e2da4cf73ac ruby-2.3.5.tar.bz2=e1efc3d5a948ca1f552005efe5925513 ruby-2.3.6.tar.bz2=b2443b11ee80319a119f7ec0c9b8d79a ruby-2.3.7.tar.bz2=5eb580d5cd13ffb5aacfb96580c0043d ruby-2.3.8.tar.bz2=78045332e298dfd859ceef9fe946950f ruby-2.4.0-preview1.tar.bz2=64b8983b5f53d053906e394f734aa296 ruby-2.4.0-preview2.tar.bz2=1074e8dea5baa89af7f7c2d1d2b9ebaa ruby-2.4.0-preview3.tar.bz2=9f767e6bc61830735ea7dc9cd5a63653 ruby-2.4.0-rc1.tar.bz2=0f8b665acf4e883334adc121a42a206f ruby-2.4.0.tar.bz2=98f29161860fe1b6c65396717847a358 ruby-2.4.1.tar.bz2=07b2ae5d2f46321c95b37066c8415900 ruby-2.4.2.tar.bz2=5ff3ad6ec816bcce8806a55090936ab6 ruby-2.4.3.tar.bz2=ac8215ba561cc7c79b4f61daee11b706 ruby-2.4.4.tar.bz2=d994274eaa95b82aa5d31ec2188253c6 ruby-2.4.5.tar.bz2=45d70a8bb9397d818795ffe992163d27 ruby-2.4.6.tar.bz2=4abd13c50c1fc273a0a81a0ae74ed39f ruby-2.4.7.tar.bz2=1ce166ced489908993d78e8bb68325e0 ruby-2.4.8.tar.bz2=396d35f1a2d1deaf303f59cb5245d4ae ruby-2.4.9.tar.bz2=0b3447370651df55a2014a170c0cb1d5 ruby-2.4.10.tar.bz2=b10a7d2fcaf218c98edbaf57efc36e58 ruby-2.5.0-preview1.tar.bz2=889454189f41e271ae5ba15382911b6a ruby-2.5.0-rc1.tar.bz2=f5acdeacf56aced3c00ae6a8fa816bbc ruby-2.5.0.tar.bz2=63a6cd49546783d62de25a0ffc4aecc3 ruby-2.5.1.tar.bz2=5aaaf2fb4893214fa316516f3ac43519 ruby-2.5.2.tar.bz2=e90ab127e2ac3ee1d8840835e8ba1f13 ruby-2.5.3.tar.bz2=49aea0bf56d25351ccaf938c642400df ruby-2.5.4.tar.bz2=0c923215470f1debe593fe21e66fd37b ruby-2.5.5.tar.bz2=8f41b5cb683d48b5cb6cdfe03d135d6b ruby-2.5.6.tar.bz2=f2a74416ab3016434896194120796f04 ruby-2.5.7.tar.bz2=65597b69aa54bdca8745502c10349f96 ruby-2.5.8.tar.bz2=9ec96e7a590ef801ede294b6184c9c0f ruby-2.5.9.tar.bz2=9e905a545a729af1f1620ddfc2976fe5 ruby-2.6.0-preview1.tar.bz2=1ce507e27fa02aeb36100dabcf1da94f ruby-2.6.0-preview2.tar.bz2=e45011116334d21857b9e1712a01e6b3 ruby-2.6.0-preview3.tar.bz2=b326ceee3d3756f892515009e148f4b2 ruby-2.6.0-rc1.tar.bz2=40457a72e36cbecd0c51d9f895347302 ruby-2.6.0-rc2.tar.bz2=9665e6d886a9da2d4076fa75836798f1 ruby-2.6.0.tar.bz2=d3372daec93f83e7a91c669821053014 ruby-2.6.1.tar.bz2=73d19ac478db1a178be5ae2f2fb8c9ec ruby-2.6.2.tar.bz2=658fcc0da15578c2420ded807b11cce1 ruby-2.6.3.tar.bz2=52e609b756735115814b9c8463f185e2 ruby-2.6.4.tar.bz2=d9b35753c65f54c745ab6b0094511839 ruby-2.6.5.tar.bz2=d1b89c88effb71d75cd7ef77c35e1985 ruby-2.6.6.tar.bz2=abc030870bfbe18ae9c356abebd95cb6 ruby-2.6.7.tar.bz2=46f24740181f91247c72f19d52334379 ruby-2.6.8.tar.bz2=c53761123d17e929cfe248f50429bcab ruby-2.6.9.tar.bz2=ddc24495adaf215c8ee40630b4a55041 ruby-2.6.10.tar.bz2=6ad76db639ab308e3b6c19408729a0cf ruby-2.7.0-preview1.tar.bz2=82fab0496947acd847a6b2eb758acfc6 ruby-2.7.0-preview2.tar.bz2=966a544ab59114591898403c23d91397 ruby-2.7.0-preview3.tar.bz2=2fa6c213774744b287e7e0212b43f626 ruby-2.7.0-rc1.tar.bz2=48a8837cb352f5b95e97a1ae0d62a9d0 ruby-2.7.0-rc2.tar.bz2=cca58fdb8c5e8be8273842d54199c42d ruby-2.7.0.tar.bz2=89347748b7414f5bc7aeb8f4a87ebef4 ruby-2.7.1.tar.bz2=4bb2b2b2f0c6953859e30af140cf249a ruby-2.7.2.tar.bz2=a8acc9c24708fe29dfc287823ecaae65 ruby-2.7.3.tar.bz2=604acb258b1d8228f55799e846cfe6d3 ruby-2.7.4.tar.bz2=52705d799ed851dd3bfd5634265cde46 ruby-2.7.5.tar.bz2=d97d4377eee18b0e790510c3afed648c ruby-2.7.6.tar.bz2=1b6efacb9f129d0253d8a9faa9c21f99 ruby-2.7.7.tar.bz2=63c55e75150251d3ba092b662138e4af ruby-2.7.8.tar.bz2=f44dedf51fdb7441a7dba592d6a4a14d ruby-3.0.0-preview1.tar.gz=991df063b86a8f8412ca07f548579f39 ruby-3.0.0-preview2.tar.gz=ce14b24e923f2e269fea6441791a7248 ruby-3.0.0-rc1.tar.gz=848a8628c8abde270b66e2474049a4a3 ruby-3.0.0.tar.gz=d6af36269a1b0bc278236d371543ad97 ruby-3.0.1.tar.gz=8d1c460a9a9d48a353de3eb0f338bbfd ruby-3.0.2.tar.gz=b973af486291a1e17ad50d88472bfa86 ruby-3.0.3.tar.gz=9ecae293da9547c1438a970f04f64655 ruby-3.0.4.tar.gz=ec9de9a15acc4f205b08816d94267415 ruby-3.0.5.tar.gz=cdff2395625dc1d632fc5400c8fec103 ruby-3.0.6.tar.gz=6b5a7b14505697e6fc2b40b345679f40 ruby-3.0.7.tar.gz=147a3467facc704b5d479e809c131603 ruby-3.1.0-preview1.tar.gz=d131b9bca700ee87ea276f8233ea4c0b ruby-3.1.0.tar.gz=1ca89d713f2c18a20104befed51b3b9a ruby-3.1.1.tar.gz=702778a0ef8b7a01ef7530a541002e19 ruby-3.1.2.tar.gz=9daf064899cccc32fd564117c7a7e0dd ruby-3.1.3.tar.gz=cce38a2b2c589d59f440f67c7d8cc697 ruby-3.1.4.tar.gz=3e601ae6db76a487219a1084e5cb4c9c ruby-3.1.5.tar.gz=ce1e92ddb1230fa2d4f4367882542555 ruby-3.2.0-preview1.tar.gz=a83c91d53e130fe232e4c27ecc8738da ruby-3.2.0-preview2.tar.gz=56e7801b37612b82285c9a09cfeb28ce ruby-3.2.0-preview3.tar.gz=0ed16faae50403b4e2ba2e85ec2314a1 ruby-3.2.0-rc1.tar.gz=4657d7013702adce21ca21dfe71ea4a0 ruby-3.2.0.tar.gz=76ca7e7d71898ab1e85155d69403754e ruby-3.2.1.tar.gz=055101c924538467c63fcbf42abddc75 ruby-3.2.2.tar.gz=eb6f18605e1e1be5dfb5b45f31bf6a93 ruby-3.2.3.tar.gz=e0ba90554f7ea41c587ffa7fcfd064ca ruby-3.2.4.tar.gz=c48283a23c72d7aae19b7f510b89444a ruby-3.2.5.tar.gz=3bd6f2b26918c8637abf56c2f208833e ruby-3.2.6.tar.gz=fa9bd65bc429a43a3e6dda8ff0b97022 ruby-3.3.0-preview1.tar.gz=0833f555b1b8d5423953600fb4146639 ruby-3.3.0-preview2.tar.gz=4f82f4c9e512ec0a53baa1be8d35ebf7 ruby-3.3.0-preview3.tar.gz=a32ede198a9da50d4afc4421a4a993ad ruby-3.3.0.tar.gz=f57422a0f995cd5a93c726f6c42c310a ruby-3.3.1.tar.gz=368e331a35145ace4948390ed76cf1df ruby-3.3.2.tar.gz=9a7efebc6a0e4810c716ec6d401dc372 ruby-3.3.3.tar.gz=beb9773cc4d9d8da29463ab175e4db28 ruby-3.3.4.tar.gz=f2e16c1a56e07e185214e85c62657941 ruby-3.3.5.tar.gz=ccad73b02d942d1e6b4c27873d4c08e4 ruby-3.3.6.tar.gz=51bcf91da64e5889e2e59c7adc7189c5 +ruby-3.3.7.tar.gz=5fa3e653657d868e2c8377d2f3adb335 ruby-3.4.0-preview1.tar.gz=93b9b1040a2dd7be7514a7870aa7da03 ruby-3.4.0.tar.gz=2acf769caa47f692fea932ab81e75639 ruby-3.4.1.tar.gz=43e587b9a6de2a51dd1fa2613615542b ruby-enterprise-1.8.6-20080507.tar.gz=17e3c52e73e42809f57ad0000a6cb4ab ruby-enterprise-1.8.6-20080621.tar.gz=626fc3811eee2dc92ac27ea63d37a8b2 ruby-enterprise-1.8.6-20080623.tar.gz=0bf8a3a93c6b37bb1260cc09b05e81fd ruby-enterprise-1.8.6-20080624.tar.gz=de58b97128aa65209f291c66eab7c4a7 ruby-enterprise-1.8.6-20080709.tar.gz=f0ded08cec64959fa388ec6a237b9c47 ruby-enterprise-1.8.6-20080810.tar.gz=bfdcf06f437af825cd9f2d321f9d1896 ruby-enterprise-1.8.6-20081205.tar.gz=50206bec9be2e08a862e5ec2e70fa693 ruby-enterprise-1.8.6-20081215.tar.gz=aab57b7d5061c1980bec5dbe311ec9b2 ruby-enterprise-1.8.6-20090113.tar.gz=e8d796a5bae0ec1029a88ba95c5d901d ruby-enterprise-1.8.6-20090201.tar.gz=a965e6789b553efaed72191825b13713 ruby-enterprise-1.8.6-20090421.tar.gz=c777b361aadccda7988be16ede7ab15f ruby-enterprise-1.8.6-20090520.tar.gz=156572a8296bd0440970a6bb95018a13 ruby-enterprise-1.8.6-20090610.tar.gz=0bf66ee626918464a6eccdd83c99d63a ruby-enterprise-1.8.7-2009.10.tar.gz=3727eef7b6b1b2f31db7d091328d966e ruby-enterprise-1.8.7-2010.01.tar.gz=587aaea02c86ddbb87394a340a25e554 ruby-enterprise-1.8.7-2010.02.tar.gz=4df7b09c01adfd711b0ab76837611542 ruby-enterprise-1.8.7-2011.01.tar.gz=4640634347cd8e5469cb718853e2112e ruby-enterprise-1.8.7-2011.02.tar.gz=8c5faa11c1ddaed3f44b7294711980cc ruby-enterprise-1.8.7-2011.03.tar.gz=038604ce25349e54363c5df9cd535ec8 ruby-enterprise-1.8.7-2011.12.tar.gz=1e5f3059d52a67ab5d91d472b756de08 ruby-enterprise-1.8.7-2012.02.tar.gz=8d086d2fe68a4c57ba76228e97fb3116 ruby-enterprise-1.8.7-20090928.tar.gz=ae00018ce89d95419dfde370fcd485ac rubygems-0.4.0.tgz=86a64616548a793e1a5f825f0dd385b9 rubygems-0.5.0.tgz=80d151edd94a06bcd2452a7e272b4d96 rubygems-0.6.0.tgz=5df803f5a04654833690dd32283de741 rubygems-0.6.1.tgz=c4a0faa9f876ad805ae80d1396a29d97 rubygems-0.7.0.tgz=ede9b55343219e8b3491793aa12c46f3 rubygems-0.8.0.tgz=9ef6e3c34dcb54e295c8e57321ddc079 rubygems-0.8.1.tgz=6276d268b420c0d61796cdbf6d28dae4 rubygems-0.8.3.tgz=6e6da80f61d6e77d0ad9e531767f6fd5 rubygems-0.8.4.tgz=a2ad2d03dae8a98002c2a7cd6c3ed352 rubygems-0.8.5.tgz=b917c084e1e6e99d8e102af8dd687ddb rubygems-0.8.6.tgz=9de98d2f62e3f91521b0207a4dcdeb5b rubygems-0.8.7.tgz=7fc04b9f9acc0c18cbbe6222be8d0bd3 rubygems-0.8.8.tgz=a8535e9c35a4c215d6ef9268d4bc69ed rubygems-0.8.10.tgz=d26592e280c0fb24c51f2837c3f48e67 rubygems-0.8.11.tgz=aa363b428c4c1fc2e076a4ff77b957d7 rubygems-0.9.0.tgz=5d496e1f415b8b4033ab867f01d1161f rubygems-0.9.1.tgz=a62314cdb174ccc88a27b8924fa79e4a rubygems-0.9.2.tgz=cc525053dd465ab6e33af382166fa808 rubygems-0.9.3.tgz=600940a22ecd79e28e0fd37ad1f1d871 rubygems-0.9.4.tgz=b5680acaa019c80ea44fe87cc2e227da rubygems-0.9.5.tgz=91f7036a724e34cc66dd8d09348733d9 rubygems-1.0.0.tgz=b0b74eac0cbfc5a13f895ab6f803edc1 rubygems-1.0.1.tgz=0d5851084955c327ee1dc9cbd631aa5f rubygems-1.1.0.tgz=85f994904c5b4045f0a859b29d0be717 rubygems-1.1.1.tgz=1a77c5b6b293a3ccd5261dc120641ccc rubygems-1.2.0.tgz=b77a4234360735174d1692e6fc598402 rubygems-1.3.0.tgz=63d3dfc038710eaf532b6a133225115a rubygems-1.3.1.tgz=a04ee6f6897077c5b75f5fd1e134c5a9 rubygems-1.3.2.tgz=6204d0a4c526a1d8fdbce746647b179a rubygems-1.3.3.tgz=0e9697db44d812712350baf28016b4a7 rubygems-1.3.4.tgz=b17b398503253bf36a101c58f02a226f rubygems-1.3.5.tgz=6e317335898e73beab15623cdd5f8cff rubygems-1.3.6.tgz=789ca8e9ad1d4d3fe5f0534fcc038a0d rubygems-1.3.7.tgz=e85cfadd025ff6ab689375adbf344bbe rubygems-1.4.1.tgz=e915dbf79e22249d10c0fcf503a5adda rubygems-1.4.2.tgz=b5badb7c5adda38d9866fa21ae46bbcc rubygems-1.5.0.tgz=49bef7186bf3c0ca6ee7adf4b585bccc rubygems-1.5.1.tgz=47577a5e33c9c6f1e3a56aff7f51d0ff rubygems-1.5.2.tgz=3951f94c09c16c774c8bcebc94fa5374 rubygems-1.5.3.tgz=38bbbdc17aef923fb41f054cf8421116 rubygems-1.6.0.tgz=abd27b5a9002100ff74ddb398a1c9689 rubygems-1.6.1.tgz=a77c64896aaa10d64aaf34f5c1488173 rubygems-1.6.2.tgz=0c95a9869914ba1a45bf71d3b8048420 rubygems-1.8.6.tgz=8e95d0c5b377a003f3d54a49461e81d9 rubygems-1.8.9.tgz=fc399445d693c29778779e5828ee5e90 rubygems-1.8.10.tgz=5b08ee31740c9b0bd36f6c04d537e7d4 rubygems-1.8.23.1.tgz=5259ce3eb7988950fa3aff9051a5de91 rubygems-1.8.23.2.tgz=fb377c7fd387df14a33e529153adc316 rubygems-1.8.23.tgz=178b0ebae78dbb46963c51ad29bb6bd9 rubygems-1.8.24.tgz=3a555b9d579f6a1a1e110628f5110c6b rubygems-1.8.25.tgz=1376a258d43c53750a8df30e67853e10 rubygems-1.8.26.tgz=0ea47f1efd010f4c82b8a51a934f48dc rubygems-1.8.27.tgz=6686ad26735c21d0d6e58b6192c7da5d rubygems-1.8.28.tgz=2df78039f391fb1f71c02c2fc5671c94 rubygems-1.8.29.tgz=a57fec0af33e2e2e1dbb3a68f6cc7269 rubygems-2.0.0.tgz=89ce467eb2d55657e9965a46559acbcf rubygems-2.0.1.tgz=2652ab6f001a873b8933e2ca09505974 rubygems-2.0.2.tgz=3471f140a70bcd32a7495b545cfce790 rubygems-2.0.3.tgz=854691f145cea98b4100e5b0831b73ed rubygems-2.0.4.tgz=3ec32dbe783bab37a87f50758f8efe13 rubygems-2.0.5.tgz=641d82672937d40d664dbc18f49cdcec rubygems-2.0.6.tgz=0633f50db16112bf6c3cf9bfb9ceb9bd rubygems-2.0.7.tgz=9046700f1222712fedfb836fafa08c50 rubygems-2.0.8.tgz=5432214a740c0d13482e43a5328a6518 rubygems-2.0.9.tgz=bc55898247297ffa190223276b1b1bd7 rubygems-2.0.10.tgz=5457ba403cd9a5f4f5fb2ef4a2a1c03e rubygems-2.0.11.tgz=0f28e3fde3348c0f23ceecba73a6cbef rubygems-2.0.12.tgz=99c416517e2de1146d2c6fbb4c4c1441 rubygems-2.0.13.tgz=3970e66a670ddb6d1aade9c7b18033d4 rubygems-2.0.14.tgz=4a7aa0b144e465230ab5d7b59dfd7e8f rubygems-2.1.0.tgz=9a9d242baef5e58fbfe79ec5206cd316 rubygems-2.1.1.tgz=b34d6f4028b69a84123a6b7cb0ac8028 rubygems-2.1.2.tgz=b5c5c4430be60f911014216d41886ef3 rubygems-2.1.3.tgz=ac7bbdfecd49f9304756aa5ebeb51400 rubygems-2.1.4.tgz=aa502b1ea90fbdd14ca9b32634795c2b rubygems-2.1.5.tgz=60564b762d4e186815997653b1c876ab rubygems-2.1.6.tgz=e11237a8f87dbd8c085770551d64a8f8 rubygems-2.1.7.tgz=b721ed7d5fd57ed05f77eb21a3a592ee rubygems-2.1.8.tgz=cc4c84c0482840389a457740e8083ed9 rubygems-2.1.9.tgz=2636bf26c0a9ec889c7bd938887bd9a3 rubygems-2.1.10.tgz=6fa671d7d6605de73d16f529cf7bffb8 rubygems-2.1.11.tgz=b561b7aaa70d387e230688066e46e448 rubygems-2.2.0.rc.1.tgz=f7d80b612339169569f2675155c202f1 rubygems-2.2.0.tgz=3c16e50673adb99d1ce76d5231f764bd rubygems-2.4.8.tgz=dc77b51449dffe5b31776bff826bf559 rubygems-2.6.10.tgz=ab5a0028d2a0653691b29d7463bd0892 rubygems-2.6.11.tgz=8d514b836fcf3ae2c20b4fe8d5cdc3c5 rubygems-2.6.12.tgz=7c454ef88b716c1a123f62b26bb9612b rubygems-2.6.13.tgz=e6f19b51614055d826e431549a12a80b rubygems-2.6.14.tgz=e0a6914ce03b91dfc6d448ebf292f145 rubygems-2.7.0.tgz=771c40015538c0f225c5249e4bc7d441 rubygems-2.7.1.tgz=65646f28f3c36ccaa7f991c17e15b8a9 rubygems-2.7.2.tgz=312a238ed98a61d2b3d165b790b6062b rubygems-2.7.3.tgz=fb3a1927a1842b75677a24f48dd63ddc rubygems-2.7.4.tgz=e9bbf5a4cc9a74293884b91f49603ea0 rubygems-2.7.5.tgz=516a4f219976003feb4b4f797cbc66b0 rubygems-2.7.6.tgz=366cea352c2b1243db726013c3d76fc4 rubygems-2.7.7.tgz=b6721f6ce4af08f68c6f513bbddfe484 rubygems-2.7.8.tgz=a3ed89a34e1ae8f9da0c620a8aa35f12 rubygems-2.7.9.tgz=173272ed55405caf7f858b6981fff526 rubygems-2.7.10.tgz=464754059d8ca01c1121a1233d866e8c rubygems-3.0.0.tgz=3908105894e531f7ad3aceb8b41dcbcd rubygems-3.0.1.tgz=1e8af9b87a67f15841ad2be7d5725a5f rubygems-3.0.2.tgz=d8db1b516ae1e35b8f6f56cb526f879a rubygems-3.0.3.tgz=b7a7dd5f85485334a6cb61b7dac20cff rubygems-3.0.4.tgz=7d0c49077a2d19f48d88567cfa3cf17a rubygems-3.0.5.tgz=4664467d621d719688e4778d147c306a rubygems-3.0.6.tgz=60d84e843b131fb87c8fd67e8fac6470 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=3e9afdf72f153e2f66259fc2b6fca594 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=c30459287aec83548cfcb17340fa73d5 truffleruby-1.0.0-rc3-linux-amd64.tar.gz=138f6814451ce634b0fae3aca5579248 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=94ed54ecb65bea2166a2159431b0362b truffleruby-1.0.0-rc5-linux-amd64.tar.gz=9e5428611e22b093d05afebbe0ccbc2b truffleruby-1.0.0-rc5-macos-amd64.tar.gz=b32a254fed71434c3431fb2effb35c5a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=7f394a8c7fe356b7bd36683c57f74ebd truffleruby-1.0.0-rc6-macos-amd64.tar.gz=f033329d03f1f846d25728c2af9d7524 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=184e98f2d6939f63db4b915943ff60c6 truffleruby-1.0.0-rc7-macos-amd64.tar.gz=d19213b33011f7a55e0f32d25e19184f truffleruby-1.0.0-rc8-linux-amd64.tar.gz=a394167c0331c6d8c1123e1f992e5411 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=dc1bf0fcfdd5837ae0ca56d6d6e5f7b0 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=f6ec25bd532bf0551d35327d1aa4caf9 truffleruby-1.0.0-rc9-macos-amd64.tar.gz=c80a345f9071521cf1961ab75ebc7dd1 truffleruby-1.0.0-rc10-linux-amd64.tar.gz=3a889726efcdf33feb7ef3df13fd5f39 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=bba618b4483b79eebf9f0e7af4078502 truffleruby-1.0.0-rc11-linux-amd64.tar.gz=a25e179ca0be96a1bc737a600729c195 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=bb8d8f5525e1ba86bb039e56291c6c7c truffleruby-1.0.0-rc12-linux-amd64.tar.gz=872774837057489250527bf863192115 truffleruby-1.0.0-rc12-macos-amd64.tar.gz=bb4a64e6c4882fd0c5e412bf9c57720b truffleruby-1.0.0-rc13-linux-amd64.tar.gz=0f36eed2eb36846785fdd4eae24adfa0 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=1bd3087a0f2df4c006b87c9488ada6d4 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=9eddd1aa98c9649e7c01bb10bf28c471 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c93643f1d00b370411310ee7a1dd5330 truffleruby-1.0.0-rc15-linux-amd64.tar.gz=bc7339a6218ea991f2c72ce8759cb6e3 truffleruby-1.0.0-rc15-macos-amd64.tar.gz=1671d08dd2f5026d58b326fd55c9b7de truffleruby-1.0.0-rc16-linux-amd64.tar.gz=5564d17f19b8ee0edb96ab5b1bfbda98 truffleruby-1.0.0-rc16-macos-amd64.tar.gz=61583b529b6a1337398b0966db952d24 truffleruby-19.0.0-linux-amd64.tar.gz=006220c7bde7d0b5c72481133624a83f truffleruby-19.0.0-macos-amd64.tar.gz=9ef7f5a311465d35e54ac6e00ec3d169 truffleruby-19.0.2-linux-amd64.tar.gz=2f7fe574e0695fb6001f4f5282aa2f79 truffleruby-19.0.2-macos-amd64.tar.gz=aa20f76b3eac1f4976a507364201d1ad truffleruby-19.1.0-linux-amd64.tar.gz=71368f8371069017d911528f052b0a55 truffleruby-19.1.0-macos-amd64.tar.gz=7f086adbc89fdfaed35273394ac3ac66 truffleruby-19.1.1-linux-amd64.tar.gz=c1ad4d17bb40e214b124222f3a7c6db6 truffleruby-19.1.1-macos-amd64.tar.gz=f4e76b0612319b4a82480cbd1fc90210 truffleruby-19.2.0-linux-amd64.tar.gz=458ed5fec1a849ef5b00e19b0e25d5e9 truffleruby-19.2.0-macos-amd64.tar.gz=dc324575ad20e3054980835c24ea7161 truffleruby-19.2.0.1-linux-amd64.tar.gz=ad7444145550d89931199159163077c1 truffleruby-19.2.0.1-macos-amd64.tar.gz=b5bcfb0aaded1e2d1763089ab6c9a14d truffleruby-19.2.1-linux-amd64.tar.gz=fc4879d2b0cc22c152a8bf893a72c346 truffleruby-19.2.1-macos-amd64.tar.gz=71448ff3f8f1da086f222751d3f853bc truffleruby-19.3.0-linux-amd64.tar.gz=dd44ac30b5a1ef3a7d61172cda9b30b6 truffleruby-19.3.0-macos-amd64.tar.gz=41daa52f0f308abb77a2b91c1b7e0f3d truffleruby-19.3.0.2-linux-amd64.tar.gz=2db2cb5c29523c9bdb6f59dfa0bd74ce truffleruby-19.3.0.2-macos-amd64.tar.gz=edf1603643938686dce57139aadf7d3c truffleruby-19.3.1-linux-amd64.tar.gz=a14c028351f7a3965bcb56e9b22364de truffleruby-19.3.1-macos-amd64.tar.gz=a8707d0af3eda694ec07a5387d3443fb truffleruby-20.0.0-linux-amd64.tar.gz=b30110ecbc50c4fce402fdf44c45dad5 truffleruby-20.0.0-macos-amd64.tar.gz=0671e5909cefb9a2c12c473fc0110821 truffleruby-20.1.0-linux-amd64.tar.gz=4592b5fc3636d82fc998ab6fe0a43584 truffleruby-20.1.0-macos-amd64.tar.gz=3c0be43db86817c7037d3ff5053d322d truffleruby-20.2.0-linux-amd64.tar.gz=e9859decb24829f9a189d88b3c2e9b79 truffleruby-20.2.0-macos-amd64.tar.gz=49e7ccf8f9e60d6c59b3b07b854466cf truffleruby-20.3.0-linux-amd64.tar.gz=93a20845f7d9d39100761424dfc0a734 truffleruby-20.3.0-macos-amd64.tar.gz=b178b7a94fac58400450417612fe3441 truffleruby-21.0.0-linux-amd64.tar.gz=c03304a505c8699e697acecf5030d95f truffleruby-21.0.0-macos-amd64.tar.gz=019796be37a58ef8e186a625f2ff5d07 truffleruby-21.1.0-linux-amd64.tar.gz=065bfcc48f6925410e0da21e16428b64 truffleruby-21.1.0-macos-amd64.tar.gz=325f6854c10d8a3a114c80da582c469f truffleruby-21.2.0-linux-amd64.tar.gz=0aec44721a040845347f18c1f72ceb75 truffleruby-21.2.0-macos-amd64.tar.gz=76d27715b20902df5779f7a0c00852b1 truffleruby-21.2.0.1-linux-amd64.tar.gz=f68e9b8a9f9cae5efc5ac45a7d9e760d truffleruby-21.2.0.1-macos-amd64.tar.gz=b021e50fc94cab590b49d27f2ea821b0 truffleruby-21.3.0-linux-amd64.tar.gz=359aca79cba4e08f9955d9c6543c2189 truffleruby-21.3.0-macos-amd64.tar.gz=d9e2e2c6fcd3ac16f0c37b0ccffb4f41 truffleruby-22.0.0.2-linux-amd64.tar.gz=324327026e9b2963a8e5fb4ee3f4e216 truffleruby-22.0.0.2-macos-amd64.tar.gz=7029d0e291d498a264d9b413729a3e17 truffleruby-22.1.0-linux-amd64.tar.gz=9329cf507ba8ac529e93156cacc1425d truffleruby-22.1.0-macos-amd64.tar.gz=353242978b46cafc34b05e2c81206096 truffleruby-22.2.0-linux-amd64.tar.gz=5d676377056ae94fe847be721c20405b truffleruby-22.2.0-linux-aarch64.tar.gz=b774f4b7d330842521f1e6e56cb41db5 truffleruby-22.2.0-macos-amd64.tar.gz=e45fdd9a05aec6220a76fb707b0a5ae8 truffleruby-22.2.0-macos-aarch64.tar.gz=ebcbfe056d90d06de4bd0a9d699bad8f truffleruby-22.3.0-linux-amd64.tar.gz=ada8bc5dc52aca8317eaeab04d91e877 truffleruby-22.3.0-linux-aarch64.tar.gz=11493301d5519aa73e8f0e140cefb581 truffleruby-22.3.0-macos-amd64.tar.gz=9e27c677637b69b0460fb0a4569a5cca truffleruby-22.3.0-macos-aarch64.tar.gz=eaa1c9020b521226f8bb48b8c7e5c596 truffleruby-22.3.1-linux-amd64.tar.gz=243d926f038fd2220c03dfbe40ef58c3 truffleruby-22.3.1-linux-aarch64.tar.gz=01487fe680863381489bf2a0a2ac162b truffleruby-22.3.1-macos-amd64.tar.gz=b3d5a777d94856e51034d81076e8ef72 truffleruby-22.3.1-macos-aarch64.tar.gz=320ce75730a5b9f16f111eb7ef5e4e09 truffleruby-23.0.0-preview1-linux-amd64.tar.gz=76c1cb23ee63ba4de93a0c23784bfca9 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=eec3fc74565f08e9468982692f7f9010 truffleruby-23.0.0-preview1-macos-amd64.tar.gz=50e38f3cd548dfe78f397f76ed577bf1 truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=b769bcf9b843d9b2980def1e2139284f truffleruby-23.0.0-linux-amd64.tar.gz=6e1a491406c5dbf42de10fcb3ed7dc1c truffleruby-23.0.0-linux-aarch64.tar.gz=5c3663f64bee707173b2684355a9a42e truffleruby-23.0.0-macos-amd64.tar.gz=515a9a8a0f39ba9399e869cd418ebff5 truffleruby-23.0.0-macos-aarch64.tar.gz=57e5fa52270e692b82c445107fe6b6a6 truffleruby-23.1.0-linux-amd64.tar.gz=f7511c19045e57e72f9b5415bc17c8e8 truffleruby-23.1.0-linux-aarch64.tar.gz=e8a20dd919a2ff77b7cc5457e853d15d truffleruby-23.1.0-macos-amd64.tar.gz=d3b6a3cbc0a230ebae6f3a462a32ddd3 truffleruby-23.1.0-macos-aarch64.tar.gz=ee74fc5d192c2fb8afd0458d2d429c02 truffleruby-23.1.1-linux-amd64.tar.gz=d7e1c040da170aaa36b5f5a1d106d237 truffleruby-23.1.1-linux-aarch64.tar.gz=cf508ba3787be20c03bac690f3bdbac5 truffleruby-23.1.1-macos-amd64.tar.gz=a662a8672871524808500dddef3808c1 truffleruby-23.1.1-macos-aarch64.tar.gz=de543312024993a533e3caa63b396127 truffleruby-23.1.2-linux-amd64.tar.gz=e3e5b01b291d7fea61be2be842c7e8dc truffleruby-23.1.2-linux-aarch64.tar.gz=8fe26f643fa81eec6de3bde7024c858a truffleruby-23.1.2-macos-amd64.tar.gz=83bc41bf699fa847df7e60412bee2823 truffleruby-23.1.2-macos-aarch64.tar.gz=7dbd2e182cfec0cf2d2e37784721903f truffleruby-24.0.0-linux-amd64.tar.gz=202f05706d28faca75d5e3cd0f9bef78 truffleruby-24.0.0-linux-aarch64.tar.gz=4faaf4edde4f6a516246b7c2f4ee80b3 truffleruby-24.0.0-macos-amd64.tar.gz=d07f27e0e29398c6de836b0049105c12 truffleruby-24.0.0-macos-aarch64.tar.gz=10cf176718968893468caba617c02141 truffleruby-24.0.1-linux-amd64.tar.gz=2914bfb81b136cd1fb5736c0a40068e3 truffleruby-24.0.1-linux-aarch64.tar.gz=429e6ada9a95ea23ebb95d01f90eb0f4 truffleruby-24.0.1-macos-amd64.tar.gz=e3aa5ab128f5d169d93f2d6df98c4e77 truffleruby-24.0.1-macos-aarch64.tar.gz=6f81a1afe1b89a40f00c9bd4216ec45d truffleruby-24.0.2-linux-amd64.tar.gz=1a826ea6323a25becce5940d8e6c4642 truffleruby-24.0.2-linux-aarch64.tar.gz=45429f35653bd8cbc328eafe81d15e8a truffleruby-24.0.2-macos-amd64.tar.gz=f68aeb26783d048ae5f78e1c13739747 truffleruby-24.0.2-macos-aarch64.tar.gz=df05f94696b4f4584a259001a3d4d1d0 truffleruby-24.1.0-linux-amd64.tar.gz=14aa05250088f17491072e500c22c039 truffleruby-24.1.0-linux-aarch64.tar.gz=3e26495f8aa7b810ec5794a69e93483a truffleruby-24.1.0-macos-amd64.tar.gz=53b6251cdd359176f9e52fe05f05e949 truffleruby-24.1.0-macos-aarch64.tar.gz=28d61b8a1a307cbdf988313c8a1f77f1 truffleruby-24.1.1-linux-amd64.tar.gz=9ef530c2ac5f597100e69e4b374182c3 truffleruby-24.1.1-linux-aarch64.tar.gz=efcc6f5c51be84d2ec99e6cebccc586a truffleruby-24.1.1-macos-amd64.tar.gz=11e2f0f62c55fcc8330cd66393abb1fc truffleruby-24.1.1-macos-aarch64.tar.gz=eaba15df3e46cd3976bedaf6f086aae2 yaml-0.1.4.tar.gz=36c852831d02cf90508c29852361d01b zlib-1.2.3.tar.gz=debc62758716a169df9f62e6ab2bc634 zlib-1.2.5.tar.gz=c735eab2d659a96e5a594c9e8541ad63 diff --git a/config/sha512 b/config/sha512 index c2644b3..73479ee 100644 --- a/config/sha512 +++ b/config/sha512 @@ -1098,659 +1098,660 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.8.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.0.tar.bz2=e1fea7c85410615f76b02df366ee49f929cd3bf3e52c3fef8b848a8a6d2b982de03c325aac664c6550b216a11cde64ae571bd5a5467ddd4a8b61039d874b2955 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.1.tar.bz2=e8b6b5dafc4b46e97fd905a5396d09ee1cfd1c0b4b74b9c3bd9e1056684f05345ac1599817cd9cb1dcd410e4e3ea23d5f2fc86da12e01fd076434c1b2917f117 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.3.tar.bz2=8172c35a381adfdbf0f90fddf526e3a5c5d4590e133e041aeb339137c1c31f16a47b904c61048c29906dfd2245572dd69caec507432628bbc98bb3eb94891575 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.4.tar.bz2=fe9370f2f45c557fd24574219e9597826f4614a8c59f092bce54338a2e927d16bfd4abbcaf0203a60a35a11169310d45e79c4a33fa4d45916bd6e4eefcc7b888 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.5.tar.bz2=e42fe5b628b6a6cfc87abaadbd9140cbc5c0000993c3272740ee6e20d07d2bacffe5148213f9628d6bc6f97211c0905e55d7bd304763ae095d86df8c2b2d15fa https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.0.tar.bz2=baadb5c405fab06da091e75af6497370757cb694d50c9f76fb06bc0a281df13f4ae893df49657c7dd7e86dfbd052d2cb7297961f9739cda4089ed71e52ae7bed https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.1.tar.bz2=71ad68ef1317ce5ba51353cc226fc7b11923d9022770b355cb1180be7c2ba4bdd87b079a8dec15c09ef3ad42056018a41a603bd0a10b8124433f36b0930153d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.2.tar.bz2=440f27f682a7f9d2a99ff8c0687c1fecebd8bce494b9db48ab9d303250b8ea12dee51eed0f68d940f141d8e2699653fca7d2a6811eddc5c512a9fe39430fde3f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-1.9.3-p392.tar.bz2=3582744ce4a4ca8b497c918e129823167e80909367d65484c2a09a8e6fa185a38bfda8c1b6676742acb492472d0687fc5b6eb18965201e0f54268d835f618df4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-1.9.3-p551.tar.bz2=fc04b976fa02fc5c1cd4ccdd49948b5e289b3a5bba16ef99266b65fbb35f0c20a0ed02d5b147f2fc4469db6a7b6665d34e0373dba242ff04c95fa27642cfde1e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.0.0-p648.tar.bz2=7dd451549e9c1a43ef86be51eaa746344c424d1accbc9cfd360067c3aec20db8ffee277e1108d40c280f1b8ec0851c6e51bc448f25505508d9af153878d9b091 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.0.tar.bz2=cfe087a9daa6de2ef00a6501d568a25a3386da730304697e1bdb9fbb098617a143f073e58629876de4f09a1e8a60a48ec05864fcbccbd6733d9e1b3d309a1100 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.1.tar.bz2=b74cc64103a31b9b9545474fe202ab9f9b15569681262438056865e4dcad08419c44bb696c7dc8a18f72b3bd8e5e98201d0c3608ea652c907372c3c95cb7e16f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.2.tar.bz2=fafffbcd24eb3c55c89704e6e8ea48ad6be286bbb4e38f56c3b3d61f9bf4f6bec28882da2ff60f17f79516476ae50cc4cb8c6a8cf4a0f31b910d6153727caed2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.3.tar.bz2=4daaf8bba3a04d46e04720ff2af1469e1caa68168f5c27d1d3e0cab922055b1f9c0b26ee64c3cb46c17b6a9651ee7a11bad19e9414102455e96454f1a7929408 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.4.tar.bz2=988c13e900168b901a3a3deb4bb96e19b15205cf4c2793b56854b58924fff652946a083be6615b2053fb5285df0fd218d1f9f91562798f0386f0758973765dcd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.5.tar.bz2=c7396627e45d8df68b18c2491fa756085aeb4ec28c1cc707617cd903fcd47d4fdd3cd6ed225dccc14497afb14200b9bea5ba38f1e8dc621c4aea8b8f0f1ccc7d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.6.tar.bz2=389aa514d93d165fe299856a5348b1667f295aaeb49094bb5ff49e9c6861bac603e698c36bf81777797d05a1d3c405e37c1a00a4dbb85f262bf02c1b0e16ff04 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.7.tar.bz2=5a38bc1dd227658347114b935ad66e27fab67b8da9529a7f9083d6aac5743c40aea8c33ca95d4f10ed1d56f29bcc2c0747a3e88b87425a5786245792d8851301 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.8.tar.bz2=44e36e4918ab4c354cacdd20be30acf12f060aab808172184251186758f750ce688eef72f39ea110ab6429fbaaa5a792b1915a5c2d845b6e22a3cc4bc851c6b9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.9.tar.bz2=358f12ae2d4e177a080bbcde8b275691418884eae9a42c98161170c7b0f6029ffebf7ffad27961bfc8a50a393796934a2dd2c7f0ad2a35992c35dbd6c8c6349f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.10.tar.bz2=e7e98be6cf658eaab81486360f4d5d22f86805582feee4aa11a8e2fe6b461db69b850c7ea98840af0811910be7f534317ab5887bc48f47a9591b65fa7262feea https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.0.tar.bz2=307ee69b3051fcec2942fce075232a62f6adf6486239a89fab7bd63a9bf068e36371e67a5e42f86ed60e31b8219ff431c2d4bcf519b2c10393504942d2d90a9d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.1.tar.bz2=a0a30a805be9c43cfe52793d103e9f0dc6076d02b0c5af36d650564aa43958164a278958f7a7e1132ee5d3357cdcfaa8d59a4cc0bab027e288d935a44958b743 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.2.tar.bz2=d3218d01a18f5dbcdb65f216469a463215784170d32110f06372fda6325bc17e2c2aec1601a5bf3319ad753b123de056e6bee8aacdd7c64c4859570d40571ec6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.3.tar.bz2=4fb3bc10aa46a85cc37fb041d351b2a8f74d70c3de32fbceefebcd6e757cd8dffdfc86cd14fa6ae7d5273f875e1d4e13e6446b6dd1882c8fb015d1d34ab5ed2a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.4.tar.bz2=a008439e903b1e97eb5a66a88cf72c2e7438b12b78750411ba0ffa496c68beb8cacc2037763be1c8c8841fe9a248d4be0d0976420db0520b4b8456aed5480f3d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.5.tar.bz2=14573495aadfabb81b985aa485c0090a816f459a0db8e790a7d1bd948897cf650fef4e8aad7d2ab8232d2ebf56bf08363730dbbfbc2318625dcab04d3904b3dc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.6.tar.bz2=e915bc10ecd1129d7ed55a12fdefdd6b6fccc281cb3cc0790e5970978f17652068ccd7fdc160608cadc8556abb73a2c187d041899adfcfcb4a311285415145ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.7.tar.bz2=d80b934273b84d7ccc4e17fa07c9e0a0f95cb4a38224bd60ff73772ef7ecb3d1974e686bb10aa319642709e49789c0886f98f4fc1ccc5312a19ca19f03674e7e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.8.tar.bz2=9bf0cc35deab5f53900bc8e8264dc1b57f91a3477f241848df48109f4b5c97f3140470f523fa768a7543c61cdb7a93427866d871d09ebf8060a5cb75ac6d3790 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.9.tar.bz2=0cdefbcc88c5b9d34c08c8871c548772bd473dbaf54738f9855afddae8da5eecda607b36c546077efd0165114da385cd1f296433afe411f57a524fbff0a69291 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.10.tar.bz2=3aed1b12ca46e34fce66ac23bdd97ef815918275d91ca4723f9a6f2a2b93cb2b66f845747951593eaaf078bd0d982e06efa7641fc3e11d141b7605b086f93393 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.0.tar.bz2=ac6a699d5d08b33e7580a24c9357c0c8e8378208fc7385f5582f088a879f61e48a4654d72f03263a1dcf33fb0838b01c8c21fd39c5e2549d683466e0441381d5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.1.tar.bz2=77cb7698c66ccede33f558f6ab9ebe4be3b775a567d1d4dc12fd85d7b0f28d7bd446b18ef48ba1c879dadd76b50540b57f283e9f226e904e620afc3ba6585bae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.2.tar.bz2=9592c8e2fd9266f5d1cc780706f558e15d775cece995f5b6e933c54be7b7f2be2839b28ef1898b2072c5cdce36b830e72f967062ece4393765f8dbc88c6dff88 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.3.tar.bz2=8243575f30eb38409003b0450ddece621a589e29a4ffe219410820bc2afb97b7daec4c81d59d95dcfc83138414a2df707c925f0eb56907d565dac4bbd5a929d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.4.tar.bz2=ae16edab6e55d1b2506c4cb30d836639035a7fc153511125b578d6da8a8b40cd87650855fc6b4cf777c1fa0428c593325af88d9ad25d53acfbde0051a730eaa5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.5.tar.bz2=10f4aff595d12bdb425eb3268c868e0efb92059e6aed8683fefa5abedc1ef21d23a45e17802edd8e5e0924ba1c3277b653c0559ef4ad4c9dd2be2fee17226f8d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.6.tar.bz2=bc352df203155008da7a1099f7f7d26eb9f80e0d2e41c8adec5eb47f976529c6126bccc207563de87ccc2867d1e4c43797efbf295c9a7a4afce002ee19116074 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.7.tar.bz2=d71dc217011d154ef7b33780366bff07e4232ae77321ad6d16f19090f924ed3867c31f2af4aca4ffbc6a536b0320b676716ffb43e34b0323e81eafab13f17fa1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.8.tar.bz2=aae74010426e2a1288280f3611ba6aac842ff573f9b122fda9a4f1c514e09cb3d22281e6957b4acfcc753c94113852e083a9a80d0cae6b33682b83669c475eab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.0.tar.bz2=4a083c168d9facf3346b67dde02d9705109feef6fcd4e3c7c59c2bcb35c83597305e09ee143915fd993799a888d6d9ffffadb386bd57e9477312566dd6164deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.1.tar.bz2=58b30b00156691de2acc5d21d3255029fc3f9f2536e668298ab160d300fa0bf3eb0705aa524c9123ff09d770807cda0154bae012632b7e87120d7538f844560f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.2.tar.bz2=4c3c586765fd5afb55383d16eb9d0e7ffa5b1ff988a2b1d847e3f972a211b2401f035ff6c02d71de558cc161655438727079aafcc8ab80c97e07e16cd7fb1304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.3.tar.bz2=e66a4ca4b95496964ff4d77e36caf0894d913c1116f901c9b589da5a0e388302b64a79ad6acfe7eb1ca5917825bc0f866b482f074f1d5fed96d91e238f7ef454 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.4.tar.bz2=f95eee611be949327224b89942f4344e7d8e075b958ce3418b5874e9b23981113e4fd58254629fa9f6c2fdaf5840d44785ecf5f04433987f8fc4415df5c3e367 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.5.tar.bz2=447b28420be5b19f6b1381d232920e3c20bc894c2e0d1d2e394cc44e7859d02d177ec3ee09ce96e922f55b7fe2651918805f00fb783af3780e5f25c21f330195 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.6.tar.bz2=5f60bde5843fdc0b05bb852a2f1b30ce085dbcf7acaf105d5af951398b845c766113ff3740d44585ce3814b4953c004230eb4dc2ce8746b6236ea4b7a1d1cb10 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.7.tar.bz2=929a03725dba7de8d7eee3fe8987b858b9b9d6d377beee710af5c3e84b02501996444aa7b2c1db458aefc3e765da17cd17ac30fb0b4d77ab1e54239e72fa2a63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.8.tar.bz2=227849b5809072b3aee211125c2aad3e2e4984e9d9b4415dd8c01dbff70eb9c3758c3cf54f2b97fe282f7a42f205a2becf7b86e1e6ebb4a4d048ca32659603e1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.9.tar.bz2=c15a46ba1e89cc41523a21eec90d4e3af5b9739d27c2f2b51047f2c1db832e2773cbc04871a176f71e7124eb3f7b53262e40a1baab87262f8811a8d69d8e5358 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.10.tar.bz2=b83334e272e78995b699de28bff67accfc151cc7fb193d5c5746fcf06087643564b3a0b538cb64f50706642a620dba2cc54191357321852db42cc8c5648270df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.0.tar.bz2=82038a66827fbdaf60f404103b3956ead4e03c999893f0095109e7d853919992cab615f85cd96ba9158402b2de5a68fcbdb8b32e9d07c6f754e0591f72851b40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.1.tar.bz2=31e9f176ba61480b33b7761d2a19119a200ad61c8f85145f736eb196de50babaf278d023b274274c6a31f2173c5d022bb93e0f8d46a88223659d8ebcf6f5e278 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.2.tar.bz2=75d25fa6dc81ce8a62d02adc2e163e7c222c5946116c4880cec19460e2309457ee1a11a8eac94243ee8437514bfbba9ebee939218b6ccc7e5c1f15b673d432e7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.3.tar.bz2=84c93c85aa3733f2ac82e695c19e714ad4afd096edd6abda8a4915311d1f604453fc3fdc290c6ae1f9055d305ef400f8f8f152c5e15eb230baf7cfd5e192b7fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.4.tar.bz2=131b874ac376f42f3427dcbeb0adb0edd18ece834514ff5cc15f3b3e29b8f14697050051224d7ba2b509d428f780c653a4d7101149b8ded41ae373aab871e90a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.5.tar.bz2=f55d2ff7f2eae4d30fbc14226c928d1caff21db1f2cd559d3caeb0c07a7a3f034fa369d95f783e6f38cecb493d99aa1928def9d8574698e3edea3d33515749f4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.6.tar.bz2=06b12b2a1e85248311cf55620499806078b3b67110fb45dad9cb11cbaf1e230ce8a0da23c7de0a5abfccdeada8eb799f038b1a09980ee9572ec415e24fcf8c76 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.7.tar.bz2=49128b7845954f1f04502a484f17d5c0c6ecf8990047f5a383b2752ea9e09839e5994b210c2f60307d44ffa8b440472116fa1231ea899caf639e1b8a72f7f97c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.8.tar.bz2=24290aab4e0d48719659f8c1153d2b08020f17ae845e9ac6d6b6d3203e4a5b19061e907a214e8d4390277584ff4b46dd4a0113c6b201fa37e8a95c42fab5aea5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.9.tar.bz2=c2771d6b12f4240200926b2c40ec1bd3058c9ef213e2c6032e44799fa34b75b00f2564a0f7c0d9f972870d34c7742174310bfe3b15e2742a17ba2fa05e5a27cd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.0.tar.bz2=1be48c38da41f462c23d516f465ed34e2fe90c6fd53ee06f1efc9107077d9937413bee589d5d3384aee5c09da7087fa84864a50089bd1cf3c385ba3399e9b0a2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.1.tar.bz2=b7e1204e0e501312828ca0e30b77434b2d8d94581627196f0195ba93fb10a11046d44942393bd8a261585c564bc721313152a9087aa56b57b433ed14cc7922be https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.2.tar.bz2=e91a187a9e726ed26ddfaf09cc49473c8379545e2265934fcd1a1fa78ba99f9a119fe2c3c8247eab583389c3af7ec40a0e71da19f6ecc17ffc086759cebaaa15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.3.tar.bz2=77d9be5bbcd115131ec7c842a4449729d1515bf2106a6a235472dc96b58a56873c2d0fe6a3b824dd15ad00194b30e72a75813d8b4e10ee11cc793973130e2401 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.4.tar.bz2=a2e5409a1a88557bef747ca9b1ea65ac90e430500a8f9370023b4314cb5d1e0679a1b03761980ab2e933ac3521188e2151e521408e33cb4dde5f0bf802d81a41 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.5.tar.bz2=ed6288a4d81a740d722b43925db8f22f794cc704bf834a1f9c844e2072baceb8938547abb8f4fb1a50f92c34a8616904fc2679a44bf4adec4e78ce00e8456b45 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.6.tar.bz2=08cda5ff00b9297b46d1fb620301066b21240951924337b8b87d27526e55024e61121e51d9b35feea2ac5eed4027658b39ff487195140e7abe9158181c3349af https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.7.tar.bz2=3cc5695814c4ca49b6a0d7790093e85f5a359c5411618a12e60f4bda75c3635b94736762983e287cd04ce3ee3155d824bd9bb202aa929f85387a741d1685dd06 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.8.tar.bz2=91e371298a6dc1083c8b6265cc8d3d388d17a21d59e0103bba7e68640f80bdd12b98547584b1cd0feb7f8dad6ad530ef5660a154075960e1a76061d534609296 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.9.tar.bz2=7e3d0f7f42d644cf4eecfd88801afe088260d5fc8f490895378d5e4ede76b2bd67959b9803db59f7b19287801df43eba920885aa1bcd29f60d225745d67093c0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.10.tar.bz2=64683129da9a476d268ffde06bd7aa1c67b3c7c97b539d856833ffb127f458a55176d8b4a101e60b18ee923485097f3bd98e8216c3092c3d0527f6111cf7a051 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.0.tar.bz2=cada908be34428bc2f302bad6ebd778a2c7a8e979476e00e45c9444b65d7f48f397b838549d56ceb91f0e5593ffd663e9facc4ea5f5c6a4aecda85a5a1136496 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.1.tar.bz2=06cb5f2f0c0941802119dbdf34995446d6d69ee59eed9a5e9d7f9e7f0e14de440a9e77eee330357fa305e81ee39a6868651c740ebc91bb9a2085a74b33685f4c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.2.tar.bz2=23654c65e6e62354857f86098852af0ba50a15643df5e7f6fc8b710e35a3872f6eb7dc1bf9266375361f696d8ded0bcdb9ee9acdc8d0c975955d299292da7e21 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.3.tar.bz2=ac02a93a62c55a2a10dc260cd52749bd8f4bcf1a2d43dad3cfd2e5c0bf7800c51a5b00779526d84f759f6d50ce673c7f3e526392c4ab68322649f4fe980f2ac3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.4.tar.bz2=88651ffa2f1623ca3b93b60a591e828ea0dcfc73daf1eead2629531beef291331f8ed1a4a33d682828ca60bacfdd7fea77bcd67f1a0bdbfa9d1e4f173da53208 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.5.tar.bz2=001486271268cd1d2252f46b32001b25d493bbbc8ce981ecb608eaf8d2c2e6d6361f6d9bf052b9b2d7694e228bc302a1082689f2038564439705fbecc00de1ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.6.tar.bz2=a48c974f341cd10143eacf46a9d0eef45cfca3ed91ebc9f7fcbba73d408408eebc60c55e15dab391bc4a9ada6777e2be3ec4b9e849927c5782f4443a813a6ea9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.7.tar.bz2=b9e99d1df4a772441edf7fa4e05dd5aaa62efcc5a8c89fee68aa80c4bf1d17ad0e5ecae5682a10d2eb0ff78ee79c583f0cec46f5ac11ae874126082b9f8d76e4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.0-preview1.tar.bz2=8fe71fdb37955b031769359dadc5062b6c15e0618fd8961c932212a6a2610829aba8b1dbdcf4bdcc2e133665e043b29088f714874e3ef3a41d688b7beba78928 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.0.tar.bz2=c51f55af33e09ed425715dae0dd59dfa253e909bbd44b4bf3dc34452656438c23a754f6b2ccf0a3e878463519043361dc7ad8a757c87a3ae0e747599547dc7cc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.1.tar.bz2=fd09a4d721388c2b9f2fd09b68175dbd620e11df02ff7cea4e438d3205494a9883c25def06d6c1ae4207e7f82bc48fdd122fe12630bb9af9da451ce6be19d86a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.2.tar.bz2=2ade19f26f6e2eaf65a8ac3e9ca21cc8fe04252df58f9b14c6d0f92aba3c0eff27b1c68b1b05041496c367051e020dca7b0c64bf44fb07b4fbdee9e68b78fdf7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.3.tar.bz2=11d81f71ec3d293916bd6a00d28dfbcc93e721d12c6137fd58febb79e7399f8fd1ab5a66915863311db9539009dac06612a4b2daf0408fc1f1e84db8f8f4fdb8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.4.tar.bz2=bff3db8c69e85d503bb0686644f2d60b97c599e0cacbdb7cd4b18d630c50d04ed0dd90ea97be01c3b3220589abefc1e4dbef39246860e3c70993f0f2de738053 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.5.tar.bz2=32f69f0e33f7f7d41f4c0e5c5a1cd859a4c6032b0978c317ec3d333da42047b7f8f8dee9c4d72afe890b47b9f17901139142cfbbf228018d8ab5d02f7a01f0a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.0.tar.bz2=f7fb515855de32badd6e5ebbb03980312144b69dd8b696fb56320981e4f0964065cd13853a34dd321fca1ab160510dee8fc3b6c99f2a5e007e6974d70a564db5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.1.tar.bz2=de183d962dd4a8c95bea54f8740cc34931c2d856783fe7506f0252c5c71bb7125db00c9c7eaf8e80f8fa1c97208ba4b2a4d6c1a76e38d2b6251a92166749fb37 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.2.tar.bz2=7589f0292f72a2217e5024b51791f9a719ff0862bf39480f1460b5106f1c11172c72ccc1fe2a00b166d80610d76fcbefe64b7c9df0ed3a72c58964c2402982c0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.3.tar.bz2=d79cbc4812ebe9b308a145e96f6e7f64c2692b04370ecba0bcbaae5427afcc7e57ee83b4537914b6b90494fd45a11bbf2b27999a7a74c7fd569687a93c43961f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.2.0.tar.bz2=2d11ad1c89c1ce9873dcdc87c41cf38105b00e265277a173d721fce4bd350af73caf01fa4a5797e926f1a0cb180f1c6e969149d1d524c4df797939cdbbe9657f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.2.1.tar.bz2=cbfe8a92e732675ca1f7d51c04775dfdedec1b9f21b3b7f0760ef61b7c375cc4b0758a17302242087b55faac7c3f1217fab0f6a2e713a05dac082cd6a5d5df3c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.0.tar.bz2=172189c66b3c721e7413f0088f50e4eb8dd80d87779c3a4e74231f7036eeaacb8e373b7f5ff017f8aa274c1e1c872066f2f93485a2a369a7e9b442d157840bf2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.1.tar.bz2=829fcc1a3d878ee28e89a58a2f6d4221cec115d241a007b048953672d57548002c3a105ea4e65e344137091baaf5d5c54232a54c116afe03d0f3d61c07547c2c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.2.tar.bz2=ec2e7bd32e2d574773486e1c1d733611465765cf14895fa6b017b6ed6301ef40cd062496a3926788851e7ff3bdd62b488d03385aeacc66bed53aed18a6dec225 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.3.tar.bz2=79f822725d4e3bb7daf416e736d87f3b01c21d011423a2b3c65d9019a47ad4df256fd4a1f171961267ab8f20387019fec8f3f4ebfb6664f682bdf36914f6a329 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.4.tar.bz2=aba571bed773554b18863e6b942f2bca743729834657689a016938a34b7e4352e68d9fffc440b2fd4fcdd1bed4d1ba5dde689da535088d7ff8ae7dc364ac3b2a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.5.tar.bz2=0e46655028859f5abb64d71a5585db638d00edb9d20a487739d307bc1dfa2fca4ad196e04044dceab0e279286379e73110590c772a06786214c4eb23557324f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.6.tar.bz2=177e9f0a193f9dc45f8653306cf6a87bffba16780220fedbd8be67a3608a8f8d370011f3993590d58805a8ea4833d95196385fede4b513d908fd4263a82f113b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.7.tar.bz2=88bfad0d6258372d4e9739613a07352e954db3deb43c0e2d2a176f9cf55bc5e2df73e4cb04bda75e2dbb210799649f020a7284cd2acb5fb92d2b115a933a4f03 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.8.tar.bz2=3710f83ed7f3f30c9b5d3dd515c168534d01811cd33f20d3a54e654dfb5140afc8198f46dd823ac45072a83d844ad866af1e2b8265f54f9997356be88fa254a6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.9.tar.bz2=078ce0d7433e63d947fe4cb0cd5a14e6f5fca00b7309d7288359ed90989dbf618bd8c1f5f31b607f3ad6b0cf540d715dec2c38cfbf71cd170e572321598bde7e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.10.tar.bz2=f97f877f7afa604dfa7e8f1b399a4c034e79b616c95bd4e48927d88d1e8adf8e203901fa178f93c6af4511d26a38e2d8cced7225c2e75457bb02dc27b8feedad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.0.tar.bz2=ad619ccf77132166151e4982996e93135fb91d97701ef9aea12b6bd05e18e585dc4d5fc34883b3369ebba15474741db238fb90192eb273dd5428864429525d9b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.1.tar.bz2=9094c9bbda4c3d830382e89e4e1c24fe43cebd9d733b6878a43a34d679092bdb6c7b23cb3cc08d4efc6e15449c68862799713006703f95e2862bad1c0b0bb94a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.2.tar.bz2=54c8fc2f2a99f834292b83ef8e68e2b120f20fc4ff74856c13137065b95262f62188ed5c6ffea8fc4b0c1034d9f8a1b497878d6a581391d422994911f5fcb35d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.3.tar.bz2=b26daf1825cbc9cbe51e1abea84f3aae542beec7c26628201325026b4d4bdeeb46f8053a1c105973242ef532e66bd4eda5199dc1aa4faba1a6393f9cc126d856 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.4.tar.bz2=e5718fb13f2fe7f6b34fbc2b1a6db95576fcf9cbed481fea59fd4dd28d064104a912a1000533810221141ec09e9fd8d1e59850ae5a26ae441bb6d8878f42c418 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.5.tar.bz2=71ae2c5bac04a97694310daf76e896a1a02c245274e9c96ca96740f78a0e245302564bce757f1688d3e83b7c0c88989f702814c434101f8df786c1276a4f5a2d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.6.tar.bz2=1693ebd7cd3a452f51ce2ef32144aa36f6fa8121ec68cd0fff715db8981214ea9fc729099e4495e1e8bc346409551d4b93c6c3803fe187fc0c25360b80caab72 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.7.tar.bz2=53b05c51b970a239fab953dcf3bb433f59465fa0b4dfe58066132a1bf6247cbe4adcafe41b219ba453ea392f88a521349df14d58a91a855c53c9b9ba4cc16c4c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.8.tar.bz2=b9b0d99e590a48ceedbd1d6318c29b8fecc12b02ce5a6f1555593eb1b3e284c766f2f8800ee3070fb7a041593e4a3806d53590be760381268ef0f9588e127b08 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.0.tar.bz2=90491968190f4809fefb4068fcc37fb7e2ef179454f57c90bf2af308541f1ec175a72ded53202c1e86dbb63cb6b47678656f753574bf6ba525e982f3278a7602 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.1.tar.bz2=7f9ce1b6872352a6feb539948d26dbdfefb3d4225ba582ef8730be8fd85d5c350bd6f21346d43cfe26a8501c4ad145d733d94da5dbf25b15e7610ca037ad4227 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.2.tar.bz2=8544797f46d54cc4098227809561023bb7bd01eb2330724a94921c5a79ac64b44bd56069d7a77a3e6d2d3dbc504ec25157daf7fdf921c3acb3b4289ce1bbfb5c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.3.tar.bz2=fe086aad84ac7fe8009ea2bc16f0ccb7c60a5fc9034690af38fce1a05582a6226dc3d7b80d08d1952d03a9abcebd7b361f5fa2d506d71e1f5aae9b5f31ac22af https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.4.tar.bz2=ce06ce97ea1554972b00781332f126e767a3ab98f5023d3dc83195bb36b954b1b497961c74bf31340827d9a5de2e0bb34240accbadad550b2e692d26cb097d4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.5.tar.bz2=6fa248065a48cebd1e9950ae07f3e653b3e29e369fdd914908be0b215257fa2766b0182e392fb869af51cd498e258435f6d9b45a03452356dc08da0e96877ae4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.6.tar.bz2=ce912342033f395ba6298051b081c89832f656d61ecf2064e9568692552a938599c816d2cd1fd1f9bee721611f890b8329985c69f4d5b2bdbfa6635b48afe3b1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.0.tar.bz2=cbfc7a1cddff0385187a7bf2eb9dc71a8d14912cbbe4e9529b79414e49e681302ac9009b7c8e6fcf92a9f19a0ca5053a6ed25edfdb510e3e4e247474d471c58c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.1.tar.bz2=29b99b3e04325ceca89b64c7846aeadb412215270f6f7c390fb1e275ebe19b2faef811778c0615b2d4720ddd942a2cc209c72e623f559e6c04e78849cc1c1b1e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.2.tar.bz2=f67ab3ac13ae90622fb3664a869b0c584b97df0500384a28bda9c5c36cf2a27ac1f66afafea08bb29bbfbfc1e0ddc444427993ff4163987f5510c4158a90a96d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-3.0.0-preview1.tar.bz2=aaeeafee545dd1ba1c4df5b7e46e82f7e89e0dcf4fb10677b7e177e66f86e6825e85fa5ae3e74062363883768b3485495a3378f97693d45f675a6e547e989cba https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.0.tar.bz2=3e78b2a73167c3680aebb1ed015c583d4f6c58804d3b272253bee2cef37fd2d1cb3852fd2b408f4af1abca17725d923a1f28d40d2a33896e5cc21c4c6711d7ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.1.tar.bz2=14e7962e180b9ae16607347ba5360b9ec086eb8055b88d2f60b1c9284fafd93fea905aceb441f07d594a34b53647520f9dec38e4e9f6ad3e5a6850750d981a27 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.2.tar.bz2=5b7d88d4405cd45a6a720295cb0b7d3152dd757aac996c8d1a576c6ab2a45cf9ed0b0ac006423791cb038a14153048e96308ecc8ba1e761d4b7671dd6f880d15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.3.tar.bz2=320734a124e26de068457237b5f973278286d7e529e92405c1b856b6e57441b5e76c59d0f519fe43fbdd2c8c48c9dd37dc5094831c0e6a81d804e88888ab6237 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.4.tar.bz2=ca34ccbfc24adc4b2c6c5c0e3b27bd2754c2c5be61e9dfa7b919b4902174e351f45128d887c179c37ccd5163a7f51c213fae96be4d0c356e2d7f96acdd4f164b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.5.tar.bz2=fabb151c29ad7ef7432efd4d51ea1e20180006601617ba896f8b1379555f4088d398e96f7bddd7c9815b266acf5ea94527ef4acfad2446950da6fabc3770f788 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.6.tar.bz2=2728c38987d41169b7110fce2b507b5d3e971d5b043b60c9a3b8d6d385ec2a40d24e464f6cf081844282d6b9fadd4abce670e79f02e4606bdd5aeacd1b57f773 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.7.tar.bz2=f98f4dacd9d8c6c9515ddc2597da8b868c66897577cc5a76819db742f3649881ef5a7f85a880f1e359772b1ab08750dda6fa74ee826938e06b93a9848699b929 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.8.tar.bz2=47fb4b41e60b1e536b3a54e18e9ee92aefee7eef92d49716b46884b2a3d73a02e88e4815df64baedebff80e9e17ac7b0af6e65b406a2c53a4f90421dbc948415 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.9.tar.bz2=c81ad5e16aa18beb7c34eeee68ffa96da243f99ff69cf00932ad5ebe427c1f80e3f7fee31b15ec0d96c1be5c2007dfa6e96c38114f61e958c6b7ecc40270db4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.10.tar.bz2=856210b3eb2bf338c5da2668e830b95d48feb82c1c4407371b18c772df12878703a9eec948a2778acd098bcc8eb402ba6d57b2b935766847f3e652c3dadaf6f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.0.tar.bz2=6ea5e6338319e5d6861d420b10f93b5e6634a9925380c61acfbb258b6609ada76bf2a6b474b53a30b0a81f0dd81cfdd1e610b68698df73f69091f479ad39bc63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.1.tar.bz2=8e8e4ef137b9394ee34b760dbeaf4d23953bec083e5775a423ef6c16b75faf8bdfe99df975ab6b6d762509536b017f3510a9a5e9ab63060208edd4d2d96371eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.2.tar.bz2=756c9ecbe3c9801a0a364143478903318c524f7aba026239a1fb42d7390f74110805543a9ac2a9f8bbbeaee48bc867fd15d400d8bd46576bf4fd417d6136a3b2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.3.tar.bz2=594ff95e33d0f7af7be448a781ac68f895f8344ebb1c9a03898813baa5963024aa84b11baa405fa584070e4195fbfda9b908f1fe171f75f19e5e1d7879bdaaf9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.4.tar.bz2=a9703c6edcfa2ddb87bb73c070d963fc4d59599919865be9b1d93989906698c6f3b9c4fd7f2d597e5d710276555de0b5865676b92aa3aba1f1f41be4052bedc1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.5.tar.bz2=dbd91cccc0a00a1ca7e901d56f9840e62e4f139ff4dbae530169f41897d06523c7e8977138ffc6212e1b60589f3091a4e2f6b6714c0fad22fa65e442b248f61e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.6.tar.bz2=ec967415b5bec95154cd9ff8338a602a6d005fa647afb1e1cff54a0fd4e9c0697b9e952c2dfd8e4b30068a697f5391b9cd165d5d33f3b146fe35f2a8fdf9823c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.7.tar.bz2=b8786ef31db7d950b1309646f81e6a99d56b76223bb8d2d20ae045f09917332a869b14cee1bf235675c7d8eebc6942b5ebd6cf0cbd290ea75d9f9be1475352f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.8.tar.bz2=4d949a715a04cd45f6817b1b26093f7bbf03ca630aaa015972e7d0ca72bae094add18664e1489ebf8ade27c160d2fbcebdb105701d719461af13c4d5fcf2cd22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.9.tar.bz2=ec6cd8bd90ee99aa6470d9d524d89531f96f992efab8a9d6a709a3959ef4c314828276e67b84ed97d415cb3e0c837458d13732dc940c93d4d069d9b881d7f92c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.10.tar.bz2=1f60cae30581e3467c7ec07391de5045f238b61a49661ef0cf76d72ef78d220b7ae70b86b1e72625cf37085b6507fb1dfccfbe5554195f0c6eefaa996e199c16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.0.tar.bz2=343f5dd6703b6b58d61fabefc8a50ce5d02d98c32c8b4e52b8deacc9824369a9f0dc8faff69e90ca7585a194a4d742791765b16c3f5e2417b0f54e0e6f6220b4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.1.tar.bz2=aaf7f9e30b3998b8586764f61d09e434c32aba7479aa79fb6afa71ab11c067384ef3a4b9215a1a3639da807f4f642b9efc62b37b55e989b7ed7d75cedc7cab40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.2.tar.bz2=b834ef95d52abc1f0c224193391bded9b4d2089c694378dd5aa45f8b2b1ea41b1c300445f766841cbb8cdb1114491ffe0095f518e1600746f5f583dd0cff9c1f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.3.tar.bz2=9df5ba9423e0a8af9d825e59f8c69889c70af0f6d67f96708a02d7d61260c83474e2f7b2f240af399911bdfc56850255b4f34554f7013d0417a13bb782403aa4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.4.tar.bz2=1d4b55a6a34249e82880fbacfc1d97a093600005deb982c6b42ccb14bbd7bf1db14e0f6d73bc25f1addd72378850f7edcd63738f2b3cbab569e34e89d563188d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.5.tar.bz2=29a76dbb28d5b63ee0ce64cc2e7d022118350a550d3693b8e38d559bbc4f42fdb6b63af4bcc4ebfffc5c0fbabbf2e18db7228e655de3bb416e344a61737870c7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.6.tar.bz2=122322fb462f8fdcb065e6f9d9968027c320ba9be9ad6fba9011760a7296cec1892a0780d7436903cb7763f5d18cce11860c5c7fce82890eaa139a94d5e89428 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.7.tar.bz2=0c17f52a74b73041c588ed76f73862d179d7b9abf9de61279dc74ba7b7f170179e0db5672a403dcc209b6dec9a865a88a382f5df01f5e6ba4cfe0f66232b4a15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.8.tar.bz2=1a30bbda34fee311762a2f05ac7fbcfb4f373f8840f86b9762b0c07f1cd397e3eb3be83210221384333b625a243c7161ef4f368602a613760391265309e4f304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.0.tar.bz2=edf31b2dd02208c96be25c2f4f7d35e2b122e5d327133545e16038836b848b90f81079be4df47c5493bf4ead1d464fa72a8d0d405bb2509ab0db6335c58ff793 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.1.tar.bz2=91cc7a9cf493c7361f3d507cdbb8e258b7dd710100cca8053b77569c07c04fbc2f72fdceb9fd9a3a5d01f4c423a206da97730c356d017157bc2454041e1f1fd4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.2.tar.bz2=8ea603a27560ddde5fc639b86381a303f886ce80384d8edd0e7bc806f10649760d75a76dd5f2ee445371254e727544ec12df49d7fc8876890b73237f4eecea1c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.3.tar.bz2=c42f24668695be5c291836ae6f39b4366e0357c9bb63cf8be2ad36cefe0c6d19cb921a43159d49d4d062dccc15902ec1698a1a6842d13ccaec45c6cb628da4b7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.4.tar.bz2=3ac89131407faefde80bf2e1bed4baa51c371ab4bffc18c8dcf2624f4d1068c9f933eb66486a2bc7c6c67f674c5bd06747bddfe1f1f9dcd939458a08e1bc6108 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.5.tar.bz2=8ca9a9387b8cb434828fa36e5886bc8a28d70fa46d3e20df60389880477fa2ee54fe63c0c14611a2cb0168ef1149d205640c6003e6a507400ad5fc34fa641bd2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.6.tar.bz2=52795cd7d112ff437adf603f58130ce539209628d2224a685d060d67a07325717981fc6f91736d4abfe014ccc8057bb40a097fcf85f5046aabde0019d08bef16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.7.tar.bz2=bc179a31c746ac6e632ce08f57a8f403d4e463ad72285c0ce008d7fa39b88a22be3a43014c9eb019f6a39d022f9448ef151a8d03e89a4d2e767c4f77684e3750 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.8.tar.bz2=d693e3a800c2200c74b24c207425f41cef206a0b3f20625d18b1590e9891f409d6643ee0e7ab8fdb6e1e85de6fea52c6a307bf8f65324ee0f9ac33306ed1e876 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.9.tar.bz2=4b6cab99f6b7be7705efa5eb6f321b5eeb1d1c6e96d4113bf96b57378aaa4950b39f40ad555f630f17d216d235972f028617ea43c28b1970772ffd16be3d9a67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.10.tar.bz2=40bd90d231fcedbe34ec9963eb59645fdd1036b03056b9b8fa3b56900deb86d94e2a256f90e6aed297288d6797857a3ef9fc27bc6ed05c017b5c8e8ddc465df1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.0.tar.bz2=c1df39ae526da7ebf87510017d7694e6f78c59871baac4e9c5f2d13c22cbecc30925e2783ad93f741110b7c3802e9f25a6c3ff85160b33a4080b0f1fb02f7740 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.1.tar.bz2=930f6f7f654fa14076c84365fbc771d5b09679588c4c478d8f6944770c53fdd37213bdad159fd231efbc079b85ab7ab648b0a97fafd666c38d0e280046c6e2ef https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.2.tar.bz2=cb62ca82d57dfc0e21e532d4b523f49c559c4ed5f3d73adbd9d650bbf23c694d382f3cc25eed6a8630f23e4780db127b4b8b6ecf6fc24b0f6febc820dbc6af3e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.3.tar.bz2=708209a89a18cd99c02392307d2bc63e46bd38c72c8ab0e982b28285f8e006d4ed77e04da3900c880eff01c3350033cd00ffc3be1d3a12c4ee5b263282f0dd05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.4.tar.bz2=c94f5b3129ff41da1b07da1cf742592e9822febf6bcfd0e9eb7145c00b732fc66625056bddc72fe9b631742c70d0e731cc6a9a16a089c7b559ae963b072578eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.5.tar.bz2=b4d20f79eebc5496768fc6adb0735c6a23cffbb39ceaf9c2da42851ff7842dd2318c07877d89564176d206e22b8824d2a3c637b5ef02c5caed0b2b5276581032 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.6.tar.bz2=a09ab93c3d6936d30065236ff2abbd0295988a9359f5a76425cecab47af0ca5b6829530d1708e9ddc9e78d1fbb7c0359b9c7e90227870537d099ccc89c73844b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.7.tar.bz2=f6086c879f8737eaf6eef4461d23270e9e43811186a22f35ed69a8303eb933136e7a690bce2d9e18bcff730725292075e09db0f2384d0e26018b7f2a0df70b32 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.8.tar.bz2=62c631026560ee310a849483f1b48690075477942ce86e0564e92f5ca7834553c435a35a1d6d8dd957c3a7be24c63c32104518995eb3a96e61066a04887bb0d6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.9.tar.bz2=0f10741772d2498167c1eb2aa263292f99748518a4ec03dc19440eb5befa075fa69e68b08a09af6eb2e02e462ff20ab10e4121cfeea7bdc938c04762d81fbc4a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.0.tar.bz2=908132a47bd996f8c76bed54078e71abb154294f97dcba779b4cf0d3b82e31c4635dff89e97d5f6b4f1d797d854c6d020afdf9dc77b10c0e522755fa194a17c3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.1.tar.bz2=39c867ac0af48410c0bc6b01f1ecac00616a59cc07f3f5a3e7cfe8f786b70c7cacab65550dfee777d11b8b7a3ac173bb22c602df370eef6a04b40f8e539025ae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.2.tar.bz2=2f04566f6d778121281bc6ba23ec57ad408049e649b351585bc9a3184848c71873910e159f7fd3909c7372378152f5ed264070aefd45933b97980e80f6df4deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.3.tar.bz2=940375b11c525e3f0bf00e19013eeb886bf85b8d8b66d86d53740170b0ae16b14faa491dbcbec29238f875f84204cb0d52ade17c180d71e129cef5254f338f0c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.4.tar.bz2=1c9d41d7ab7bd69d7e3baa3c4149b1938cc147beb2a63923dadf2fd959732c8cc824e2add0946bcd62f44b0e1d509b80b4796a5929841cda8d28f3a8207b17df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar.bz2=f47443a53e3008cb7b7b7afcbbf1adf44887769e42b3defafceacc1e50e349c9000b98010f853c6b7cafdb54b85b640732a56a8e11ad8e58fedb5fa4724f68d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=fc1c9a08c48ad91edb4afcac5244f386d63940fa906dadaabe02a1eb025375443c8174a6ad1acd50f4583d6c57a88feae86e697ec15c8a25bb49f280b1357783 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=aa611f7c350374d2c5c8652a694022e038cb5a65fde795c43e927067f155d0ccb368b281b1575e679b84cd7ba6042216dc28149e138256faf62dd3060ec0a6a7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=ab04071b90ddb81b68f064fbc9f2bf726729220e4359113556d9b71f3549483f122b796b3b1e4dc8404e6f44a4bdd02e9db2c8066974acf190448c4d5a97dc6b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c769fd3814bf31728b83f2bcdaf0928e6423150609f3db903631f9db68ce0a0f9c87bfce5f93983cd962662148a66cc55f5f42bffc1a1b5a237e6938726629ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=c231f8ecd46760db49796519645bcb5cc9fa1c0582abbc419a2ca81805c81fe8912dc32dcc2c5192ca9ef0d502da8f61ce1ce7ecc87b29edad3a144a8a0c200e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=b41557c83084c8e5bb263aa944499932ce7d84457e4e307f1cffecf62aa44f8543a06299e38fee17ba64f8952048612f9289e24c35acfe2ba02b913c15dc1405 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=001d10af5833a03b42d9a254bde844731d3a796d98ce2efea90fc68e4638c7cc3be31a34fa163d4c5ac18c60e685e5cf2ccf88fac46ae6bc587a48ea35cfb09b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=0a8681afc19372ccd9409bb017967f86c2e6642e083ca47ec904cccc34242040f710392d916a69a327ae6a0bb287d97bc05bbe116a1d93478ae282b32e5fcfab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=e505ff2f00334870d07f4ec9348648b7f3b91dbbad1fddb2f60f7a38572a66a7bf081fc7b386f800d86113aac1ce3cb739c86cf0d6da2bab916a4432ad557c54 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=aee6000ac886cdd4e4044a7b43ab20d54d1e99f6b893af69d0d7e7a202f4ae861f939898580c60996b0bb7c6481eecad69a20acc83c75cc594dfbfde3a22c476 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=86f4e6948eaf2586e018570f09232b94f907766590eb75f00992531ef74676070ac5a2308e121ecc1c23388ece4dbe1ee8a4b2a7ab99ca00a28d6583d6df3d0a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=1bf867b0af84eae4e7996047727fbc7ef459afd3b2ca5885f658a74d62910d00eecddbf0c11b23265c625c26b420421ca5add40079438edca8eacd8b5c0149a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=92a3b217079f9d960cc4fbb5908f7fc7ef71cc3ec8e5e404341e2b8875534c0542167d03b61577776e0b0f049f9ba2e3235842be381b4d484845768adaa6e3f7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=608f0f9eafd72226fd1b39f6c92d0f1c6d3aa7ede096cc390fc4f8bee4326b0937767bc6de84fff536dea48cbf9bdb8ef5598670235e013ccd630b06c5b8fb05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=40cccacc66cc4b7891b01c35375ca913efe008157ae540308b649e14f5753f34f1827861c6e16b500c49ac95e1aa22e1c01444faca5dce71f981452a9e0f1b67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=5a33d600e55f7b8755725d7e2f2102cd76720d524d7b378d85fc21ea8d853166dd97e2e615ab18f9e44122e3404b439dd123f8e23d6ade5328982fe72db2af0b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=37e3a4011b3603807c6e0fd48818b256caf272b3720ee654f38c0ae202cffa21600f9cc751b5335b57905ce67db185b37f548ac9c84d6acfc567f0ef4866635f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=6648c1b6bd962e30e89eacdb6130b1788ccdf6ed05ea13eac32eefc222438a298de8121937262851cf5c4cdcc1a804d5d8bf19667819db6599bfcf79e57b0e17 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=ac690170a6801fd741efb88e67961c0c3d717029b3bd9c6e243074799641c940416fc9cde7b4ba2c56e79551d6cb7fe5f7977649404da0d20d1819d7d3ce0bd3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=e6edfed2dd9d6649c47b1dc1b102f933f76a148e6dd8441add2316073dd255cac851e972366e4821fcd665e55b375fac757d189b7552baaa0b49e82349c71b77 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=69c4895076690037199f2a9b98e622f6b5e3c23ea02de79bcade6193da2b1b88ed0c28006059f4ecc502298442275e7e7324232de04a2f0ce430665057410a05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=175777563303c6d6a04393938ffa7e36e0bc6db33f7d2cf1d42ec852b41ea26dd7d50569eee4cb00497e6bceae95592365ea6718a35451e5c929d8a085aa9649 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=b668f0cd853615fec38253b264115ef0fedd21a7879a663ba844f4c3fa8b87e5ccd8adffbaa12ffa3aa16b108a2a439cecf827e7d8e19ec8041d46e758abc391 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=2039b1fcf55cca35ed3c8446eea45819368016ec1a05a5fd4c6a761b54f5cd56cb3301d5d2674af1ff75bda41eba41b7156e71ac48b88ca7a6474f0e944efd89 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=b4bb324a53c316da488c5f60803933eade9ad5c59a6d58e76787d2dd89dc2d2f18016d2ac4ab0853a40976b4beab70864a9c2d23de194bcd63ad089b2159fa7a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=3a9b5868d707d6a4580a44ab7504cb46a2713f78918142b185f0d62c5b7e0dfebc1ff551b2a52e9726befb70abbde867d2802345a01fd3e4568b9f58ac83c168 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=39007e736b28ca599ea244bf4e54b52e86597c950c0ebd8f1696a02c8eef575a734d089b52c7013d00c02aeb261dd7e2facb45f24b34c75c4bbf14cb8bdc3ae2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=0fc4e39f7382c29fa2119119a78040c611fc8298bd4765025599d3018775cb2bb28f51d38efd4306e9f04eeea20e7c2365f2fbba1233e0494a8258c3c184278a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=5dfbcefa70f5b81887d34e776713bb9c6f7bcecbda8f1c9561daa3e235c725417ab0a930f594303723f226d36306e6a73f228abfa3533280659ab387708182da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=00936db899bca33dfa8d0e6ffd4bd6b0453ad5823a450e50e3a055ea696dcf94b317357732e26208a6f34224c33a8b4a6130e5613262d62381179a52cc8f3a1d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=15b816d190fd58382a2f6f6e087f358b54003f186462abf59dbef545af9044a2b9c65576119185adc6bfd9ebcdb49f03a2a268eed4fb0f0d37aa35fa18adc1fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=3a481c35668be459688a66e4e480e11b4e58c13aecc3751da9de8a3e3282bb4a152128528a804742aa0b4380eb537b666a2b29fd79be0d6968c4ff1fa428eb7b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=c604871b39f396c539c52dd4849d1d42f37530003601f60162860efc777c85e7e1a1ee88a77cfc9ca8ca20f0448a5dde4f39cbdae67470d8d2d283d6fbbf0239 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=12042b5c30179da275fcb6155142ff2787e86cf577caef44b7c4d8175ac671cd461814e9a19f4c9b1e78bbdf041fdd06bd463aa972e194caa91e80778a56bce0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=2bf1c13616b2e255b8c269bcb2f979a45009c079ffdcb10a13e238e5d13b0978e8a974bdc1e7bf8519e15264ed5f577cc8f85a5861b3ea3a4589eb78138a3f2f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=2e7876c8c8a1f4e3cd1913023c564d9e74972ce427e85765bbe9ddf237285d7b96017c1ed17868eb912509881e05aaf96e4a6b353a69989e61c733b346511715 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=06de4f6f2761bc58d94659f826c7c86be50192b7dfdb5c8b6710b384a50299ad161309e2a8c333fa5249d0e7112f74dd0c0b0faa2950a6e74bdba68833f68702 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=597374487d196abdfb389c79d7d09b81026fe3e8043f8811497646eaf47bfa432cfb96e2af9be1a35ad2d05f2f5c800afa3f9e5adb0ea2b2d31812d219232a00 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=ba56050ce3fdbb9117c6c9e767f818ce3d467030713b7693ebb039f6888bd5d7e5f7b1986ed117414037e56e550707c3625a88bfd5d00d7319d0c7ad642fc811 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=395facf2f7a15eecc94e554a60d87c269ba70c5063b24b7bc504f579c0d12a7d858eb0b98c502016ff8bf02aaf11ef765e2291b542759fc96affa186206ffe4f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=d1d527b2e95e3a16f521214c5352bcb379b946e8be1a943da872aff0ab4b8edd93a507d693abd7a8ef1cd5ea1ee6e6bf1f838683f5a447a6cb7992de61f744ad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=e47a50392c4f3ee13a565103e0c5f9474ba0a8f5ff60fc9fe7d290b7f5f9a9ddec962fcbb103a8d3b9c7765a28ba59237975f90aa3637a06a128802ede28b3da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=77fdbe62d1694732a7307c29b4f45d0dcab7e8a729f04f45b216345336c5820715bf3f8f7cab52175c4ca1a431d867c7feef7d802dec61c2cffa4abfa8746e90 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=24da0cfc93ac536c505dfaf2dbddc7b312a3cc5c72a9f47e28b3bba760a53b584422b73da8546ca01cc44d3906a31eed7f27a3dfc0bb574f01f9c08f7c589d20 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=aee8267c4855e95a55b7ab858ca6359d635049743b8e38d34ad1430522a0cd746cd572e77884f7e10af14a731ccd8ebb9cad6ea035b0fca4ae534913a38f43f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=ba3e66bd3dde28e7193b90c44194cf7732d294e592321c482deb3b31ddd9655630f5b04aa89a43eb9d1bc222da10884e9da332bc9da78e9e1b655300db52a444 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1df8a2ad9256985b4ffb3da5b545af4160ccebdd8265711d1b642cd2285a004a42cc2ea51ce3ee78854e599f5196c66448b8e0b043846ef6e6bf992828aefb6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=cc460b3d17d460abec27d77f734e1c1e7a649769c3374f02d32a4ad00f989ff3150dab926a203b209c92475100667dd524774fc37633d71f98737ea2d8868968 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.2.6.tar.bz2=335cddbfcf26c82cf9bf9c7ec6637c1c3e30e1b10d00553f5dcc60822d40b560e412d404fa65faefbd1c9022a2d7f0e4d93c25d054681d109c7cdb5968989005 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.3.6.tar.bz2=5531048adec175ad23e3bb050ba6295352cfe17ce27203c356145008434107831186a09c00ff158f4ce9109776f381661f3047e828a177906a52143096249dbc jruby-bin-1.7.0.tar.gz=1e466a3f8d52b553c9def09827fda4b8433576b0262c40ee505602754521a00defd821d5ead5052be52baf281c6cb080fd03a8b15c628a0ee67b4e417633e5e2 jruby-bin-1.7.1.tar.gz=ef28381ca30664cf450f9d3df9927530db771d30e86ebcf535af38e1a7e26724ae2bcfe8487cd2eb349bf609a733a25528aae14beab4d13d298b5604ac7353cc jruby-bin-1.7.2.tar.gz=8155c81eea6743951db7383bd9f6b1750614927c9c0b25a6574f6d64898bb3ada2f626c6e0df6c5486561a03cc7d472fc12fe804ce66a3972d2fe02e3f407100 jruby-bin-1.7.3.tar.gz=1d19be25bf4a7dbb0edad71008704377893d3967aa4204a0d59d6883aa04462ef6798c64d0c0fdd3f5129c16ccb42e8507f3fef38ed56054bf6e689de745935a jruby-bin-1.7.4.tar.gz=d7c0ee0316c50ae5413757e956c18ca68e9d99a25cf85be978da0787c13b8978d4ff2712a3effa564cfdf07144be4a56a0cb8acc794a01f43264fe8baeb125e5 jruby-bin-1.7.5.tar.gz=a4984591a3809330b93f4ce79fd1b9c24360f89d88a03bbc76351be623893c4bfc6441375bbea452ba4f24ca8b9357e03ac938fd6c065b3e2348c0f896b22a1b jruby-bin-1.7.6.tar.gz=98600a2d46bfce14111c7eebc62716352a4b685043afdd696b8fe51c6b205eb9569fc2860423a653b842b173198c76c59767156aa48e0d23482dff3358d884f3 jruby-bin-1.7.7.tar.gz=71da2e72c65899216fa15ec568b51aa7004e2ed7dff99ca376b332d3692c83a674c688dc21ee04d177a3961a2bb3973714509d88cc14d0ba9f79c864c6258a06 jruby-bin-1.7.8.tar.gz=42d54243653ec260abdafecce1143161be63fcc38a80f71ab70fcece4bf91545a2b12ed2319f9fd6f6b41916c398a9a8e89e7f0389f59da56f2739665e74522d jruby-bin-1.7.9.tar.gz=f519f53b1d9f57cfe28982ad70b892dc6fc20fe6601d98d65a1dca9f617a0eb8fff74d0fd82ddb858fe105d05ca7c7bbf3a987677ae0363caa2981bea358c096 jruby-bin-1.7.10.tar.gz=160b701f2f500dfab64beb635e5c4dc57760dd422d0fffe8d3cf8d84ee6ea17a877ef77a0087b4888ea9db64ce7750de01a73a51530aa6666a2efdcdccdb89e0 jruby-bin-1.7.11.tar.gz=a53b0fa327b98344cb4a8aad1ba537ddacb709a0e173b1e32656de8a610cb9896e9a4554d54d0d01d2361f8ff1539a0e2ee01308f670df2004225231b704065c jruby-bin-1.7.12.tar.gz=bf2be8a37b53d38c75712a6331f96b999fa6b0e87f453fac7b9d11eeb1b66098ea0778172f1a6a84345e1881f05d63012e28d4068a0bd31122bf2473bbdae5bf jruby-bin-1.7.14.tar.gz=f14e658da7f2abd469edcfd657dbc2505d6a2c04ba1e5f65f2164256f54625da154b338bd3d286ea6a18da61d04d90a61ad6b012bd9461182753483efcd0f603 jruby-bin-1.7.16.tar.gz=47ca714c3211c95c84e9c80ae4fbc894bfd7ee03e1bcc494cb48d839f8538db4aaca7029a4913b8d323e7227450e4e41bb943dc670f43df8a654eb127012033f jruby-bin-1.7.16.1.tar.gz=9bacdf6e212d08e46ac2c49183c8611873f6ecebfcb0e928b5110bdebfeb8751ac087cf8aba09afb9a8ccb58e59f3c3e06a241c1db445835d7a875b0c3deb4b5 jruby-bin-1.7.16.2.tar.gz=349283bb5344a62f282021ce39648a0c8d0b41ecf8f800ab5099b5ce161ff771e688f205a918324cef6ba0ded6b3694b8dd83f46f56be584202b8fee496b37e7 jruby-bin-1.7.17.tar.gz=a3b171df08e789f91c260c5a57ec842a5d62cc8d6b462b772905ec5284e394ed7b78f5b327ca1ff20f5deba8371a86cb03fade75b5f34f233df47bc3f08d469e jruby-bin-1.7.18.tar.gz=b259da2967e246a387687117eb13e8986b57de6ca8e570d6f8f8f07b8097db6e01cea8b0ec3a860b091fde14de535260dc6dbfc638f9e9b49d348f726e969642 jruby-bin-1.7.19.tar.gz=da91efcd51cfc833666f8b7cf949d3b5c41cd8da99ae1559c88a7358fb48df1245c66702c7cf23e7ca012cbefae98787c200352976d4e8aa3e9120057a89dc8c jruby-bin-1.7.20.tar.gz=77131afe46e72c406ab4250e43cd1f98e59a8351c494044ac89f97a7c9a81492f8a8194541055fcf1fc59569e99a577fd6a36a9f6a3952a99f399d4970e80e69 jruby-bin-1.7.21.tar.gz=111883df12a60d06e9924d33057ba72094fcffd44f7e3954d6c6d2190f8e6442804e739cc525a9e75159251a8dc1cc487570792b1b4f5773f4d0082f0eb360d0 jruby-bin-1.7.22.tar.gz=6ed6cbe7b81a8aee60906fdf965bc217b3db794698e2cb37559f36ac119a0cd2a1ae1a7a766535ab491d647e8b4e6b2f63e62011714b757f8691455831ef365c jruby-bin-1.7.23.tar.gz=6f4b97c4e08274f96195deb176e3126e8d047c981cb655cded9665624033fb905d60d5586704a3f91b2ca06d7e78918d9d31131c93e4c90c75a38182e309ac9c jruby-bin-1.7.25.tar.gz=a89ab8d539bff346ad56d345b6a205f74890b9aafe82a2c82e7c19cfc30b77fefde1003e8bd7ed15f141151bc0fd21946203219691383a64f2234fa586e1905b jruby-bin-1.7.26.tar.gz=feee03a50900e459d9ed7d2096056bef126c4551c02c335c4132e2307411f3fc4fd435e8fe44411184773c80f0630a7812b3d798b7e9be2818e1b5a712bc6995 jruby-bin-1.7.27.tar.gz=656f4313fbfe5db8d2d4fc2087a012c91efef848394c48aeaa0041e9a19b87ab74686702955413d2c51d6b4b11c758ba0555b30fdc42e86d66094411324139b6 jruby-bin-9.0.0.0.pre1.tar.gz=988c6a058336ab9ac8b27c7501ceccf3940837f9b9d3ed32a466b891bda1bc13f76199f5bc3baaa1240dd0dfdaee40775f721294d667f3b8b5bb9ac8206e2e83 jruby-bin-9.0.0.0.pre2.tar.gz=f207f9477a12d7ffacd92b1bb5154ba8101dda8f7b2eeadd4fa83eadec9a75727bc1831733d27fde63ba63322ec491201dd23cc6e2c2b5a4b8381a8fbe49e8f2 jruby-bin-9.0.0.0.tar.gz=33308a983533c129cffbf521bdb8c1996a10a6159a4a436248e645bda682c5a5395ac1aa767e971ae679c935f3b61573cb22d5b8c64af026752db3411a6356e1 jruby-bin-9.0.1.0.tar.gz=277dca63f3faad01c98a793f06bb4d558a970a10a66a38482e8372b25f4cf4fea85f1d5624fce7fb5b4310c42ea8aa360f24f6b9b6ef4bb0ebcb036736009ccd jruby-bin-9.0.3.0.tar.gz=d82f83e20ef17a0675843e306ec5e90993e5952cf5a53957a91e369d2c90d92306aa515b1e135c04b45844a81a0f4ae34289b966821ae5f46ea51fe012627352 jruby-bin-9.0.4.0.tar.gz=b9cd4f4a00da8152740b468914046633d5341b10aa26b0ac56835d5896531030c8afbc4c965b30c36923555ed5b145de8ada69e05ca38b01d43621914a331335 jruby-bin-9.0.5.0.tar.gz=7c61cf010fbae571cd6ba334aefcfd917f6de8224d014026297b840d0b890523e94b2fea20f154c82c25c4f9d5992b9481fb569646a7023e5ddb42db1baf5f34 jruby-bin-9.1.0.0.tar.gz=1ffdd352823436086ebfd37c03401a1f3a9cb8a8c5f75476af1f704c4764396a20f49ddb7fb7f0911e1608f7c88a332944330b8849d13e6badb170efb736dbe2 jruby-bin-9.1.1.0.tar.gz=475acda79ab8c54467ae70094aa86842959200127c1e92709f0a731014c469d3e52e4c48770b64ab1bf31e1b710ac4570b421077c85c08071c1356bee55a2900 jruby-bin-9.1.2.0.tar.gz=cc6b1e1a2907c128dd04edf9da11933a54bbed5e861ab6f0208505bca5aa2aa9d9acdd04bfde65824346fbb435584081fc8ec2e2e9a3aeea1bef8047915e0c61 jruby-bin-9.1.3.0.tar.gz=88339f4cc05f7f0ded21f100755156ade33f19873f49c0c64110916da8c0b059df541a77bb36e54fda9cebf042591450d2d6312ffaa879df926870806985e774 jruby-bin-9.1.4.0.tar.gz=ebe0e9d67cb91721d589461e93e26338e3e3a1f0f98de53f25906684140b49d989ca6d3704cd3f6cbf650f30aed9a3989f117bb4732c83ed870364ce4c31fa36 jruby-bin-9.1.5.0.tar.gz=f2a11e6fc88d37fc1b640ea8c9feda4607bea6da5e6520f61ff85e8d6a51543612ae267b45c033214f8fd0e2283153da02001cbc9fd90be4761b7544e1413b9f jruby-bin-9.1.6.0.tar.gz=ca59d199a0fe791efc57f05801ae26c6cf6402bdc0f1a795250b1a2dda39b233ed24c8cb005016e79727f4bcdceb1bad726a60c16935e76fc87e5d1a078fb5bd jruby-bin-9.1.7.0.tar.gz=f2569d4858a33280e90d984aac53662c25ef057ef9903bace6a2214aa2e6a537c9bc8fc76b08f846b3093cc4a12c70c98d725576a4ac771e640b95cfe3697c7d jruby-bin-9.1.8.0.tar.gz=dba3b41b65ff27dbaa203a5cfc78ac7cb9d952c52b452bc774f593383e4ef9389c0bc37549b798f48b63497ce7007b1ac2d2fa252d9a7c3e52146b4ae192ee49 jruby-bin-9.1.9.0.tar.gz=f8f6419be34aeb7b7577e946a62a094f5921d7319b51876c5e07322d99249b3a9f29fea4ee5c2b8184dfccbd5da8f8262fa97f5e93874887f3355dabfccfa0df jruby-bin-9.1.10.0.tar.gz=857783bb45fc5d62148bd687b43af9ce776099dfea75ec4b5d947a46ed270568bceba2a630a3277746a3a9c1fd3111caa9a4cd13493ea8824c1ee190e6d2abf1 jruby-bin-9.1.11.0.tar.gz=718ed3f5a39cd9f9b45c4e11ba44cd32e035f8d9f26fe59230dbaecb71adfb2513ee1bb86ff72e075b02f20151f3f30e53bfa30b6c4b011a93a138d4f479fbf7 jruby-bin-9.1.12.0.tar.gz=8a9f88d517d8002be570aa95aebb0063eb62a47efee191155f9fa4f045854910f78431514f857c438167ec42f4241faf74d4a8d236ae36feae58732312e4bbed jruby-bin-9.1.13.0.tar.gz=ef88f613ada2665d4f63b2e2f15594739de8ba501406e76de417821f44847b0e258524687b0ae0cf5b737520aa4dd9bb59d80a4b89a81408cda638f28bebbead jruby-bin-9.1.14.0.tar.gz=d15ae0c60421951b830524acd21a0f2a56f480e983b148a2722cd36afed8e99a41f518eb8a679bfa2cf87f08637e81c24ea88be40c0a5390e081322f1fc6f8da jruby-bin-9.1.15.0.tar.gz=74a411f42149510180706b2c70610caeea357f6fc3d2a12ff0227586862e6a9dedf09e752596d6c486af7a310a07241f311a1dfc73ead229d7225c09d4508605 jruby-bin-9.1.16.0.tar.gz=94e88dbeb2545250ba5bef50bbe0baa6f3851e9817f67f879ffaab50048bb0d41cd7a0e87ac9ef547e37c2b82cf1d7aae6b8caa43d03c6a9931b8ce0ad4b2afe jruby-bin-9.1.17.0.tar.gz=4c06b9674e20f48d3815b4084bb38e6994670eac804fbc56d717cde7abdb74d57e0ac17b7fa0b500318de405c187c3eaa01441c22621139dfdbeef62a5467a63 jruby-bin-9.2.0.0.tar.gz=79f5e8674089d2f6b260e033e3ceb4571f54cb5cedbca74ba76b52dd7cb30085a8c6c2676e9be57a8ecd9e962fbcb3682a8de38e1cdde2dc6e05bd179556edc3 jruby-bin-9.2.1.0.tar.gz=185e67da4964c9cf1d9142446efa77605e77894444bdc96bbd10fee22637f197aea9fbb0f60d3a42540e5f383d5b06fcf095d572f432544a40c2145deec81926 jruby-bin-9.2.2.0.tar.gz=85e16e38748b6ec5f237eabc8a17eb225c484c20f7ab6728f2a0f650061bc50c8a9601c04b0128e73c410ffe84dacd2b8bb37167aae5595728aa25e88c4c9b92 jruby-bin-9.2.3.0.tar.gz=97ee210157c451567946b38d33380051f82e7e8cb5f7649fffe050542ff6cd627e2c42f4c46739d1f0995c87e7338865b18844741285bf3f72364aa3c841c54c jruby-bin-9.2.4.0.tar.gz=9fe1506e862a17e261cf726e1bb70a9f612a6d7beda919a01405899660d1f4b79ee690ddf9aeed1d2b2f3cbd698be8df4f98d3815352772cc680e9646d721761 jruby-bin-9.2.4.1.tar.gz=2c41e7884cc54819da17ea9b2b773d05d3240d53a2ecb57ba430ab61308066eeb1bfbe6627e6c261f5f27ab5df7f5972656366a04a191a81b0379f620b74512d jruby-bin-9.2.5.0.tar.gz=d548eba8de420c80062021f5b6e6b203f8b7b36e3f11409919eeab87a028a18f9346f27d2cd8b1f33419adcc83fc804a36dbc3cee169ef1d93383b8f5835ba2c jruby-bin-9.2.6.0.tar.gz=20c7897da0d2b585616ea5848998fe8770517e24e16955797db2e5bff4622c348082628d304240a71a97e9551ef7aa63271cfb728eb5fb7e7d19bb48aff20d4c jruby-bin-9.2.7.0.tar.gz=8e71e27fdb149cb7470fb736e7ce858719d13ce6ff8a1e9ab1c1dc71fcc068fb601946bb28ed2feee3670b5e6ebfa8a655a6618d1badfc3763897912c41b1c82 jruby-bin-9.2.8.0.tar.gz=7f71fb5bc8c6c31b31b4c0430ae091871b21aa345777662f264c728c60212365dadb63a7a4b2fff31adbbf8a2e7cfa678d47486e28840f57b86cd45fe9354013 jruby-bin-9.2.9.0.tar.gz=7df33150858ddff586b3bd86120d4bdd80546c7f8e62245f61facbaa5527400a1aebbb33e4a1a8af52066487e3d29760eb96c7ecb9875eb9bc954ccbcb37a4d2 jruby-bin-9.2.10.0.tar.gz=f4ca024602ddab37154f5547132accb26e7c0ac2e913ebe1b5c7806727eb148249e76031ed4623ab53814beb8fb3f472e386f44d57adb5d2b3b00fb2773c8a63 jruby-bin-9.2.11.0.tar.gz=f736a9e139694c84d0a5ea42f36b972adc82c9be13e0b80bd61045c026e4fe31ccdd4be3dd3e94781c846f356e026465e41716fd2744ded2ab0ca39cd33bb46b jruby-bin-9.2.11.1.tar.gz=2f758fabf5910ea01e9c04c7600d9c666f2df3db8622f3eeb3534578075ce65013c42fe9ea6f95d4499945f795e6d566eed2b1545e149af823eb1d29167a1223 jruby-bin-9.2.12.0.tar.gz=1dbc5bb3814a6590f5e8ecf4889152684b5625fe81794a2c4064d598614a85129256002dcd239e294f209b98e3abaf9bfe70467fff48ef66b1531162dc6c3be6 jruby-bin-9.2.13.0.tar.gz=2cba016ad6a376252083122d51335610209d860c41de1902f5cd49ffc2f6b49c350b68df8fc4113c221255af4db7ec07980267b9888369811faf66db369e757c jruby-bin-9.2.14.0.tar.gz=ee3d17e875dd197f92744c7cba62320bfd3f166bbb2ca117f2910780a7c571779c0940e024351e9d4685ee9781dd207e773ace57a4a8a7011869c8b6209513c5 jruby-bin-9.2.15.0.tar.gz=678abfa7654b53b049e4103ae3647775d970c5a7192539378957c1731a3037c852e03f00a496c022c1c438d159a93be6e6f04d7563c811aeb7d261ced643d9e5 jruby-bin-9.2.16.0.tar.gz=f77e314d578a980071bddc25c65659d62e0644927ebc4e7d7d4523935b6c893e611d47ae7478a26ce7acff38b1525eac11b4a329188cdf76aeb07fab667d99d4 jruby-bin-9.2.17.0.tar.gz=e90ac1890a54a892b13adbbeab3cc5242889ff2a4b6cae535c0a3172072bda6ab01b960705ba608d6d7ebe9de5984d8384dbbb6399ab3b2e53a9e347e7849e1b jruby-bin-9.2.18.0.tar.gz=c5816ee0f7b0f559dac70ffc5277f85ae9c41ad176e43d277f820c2727387baba93998b915cadf9708fa78b5cdf3911a9c39c2ebb61a77a38dcff359f7d88a73 jruby-bin-9.2.19.0.tar.gz=3740674035e27cf7961b3570ad65536c30faab1c9a71a42a696b173379e79647411d57e0d1d06b5f9c9a970eb02a595a559191af08a083773dc4601dcfd07491 jruby-bin-9.2.20.0.tar.gz=1961f52f41e7eb9f50b0f382c8166ad988a6b3c0311c342658edb34486b073ed45c1ca5731aa319196db02cec208a4dfc86aa6b436959b80243bfa4f62629735 jruby-bin-9.2.20.1.tar.gz=598e28cbad682fbb30a9a9a9f708e6e1f4b7903300de2477e88a646c42ae594df5b768ff5379ed447f1a7168e93dbe35cc2d5db7087cb2228233a05bc4687908 jruby-bin-9.2.21.0.tar.gz=8f6cfc43ce3ebbd69781da71c5a70746ada090162bf6cb709dca41a6d968e6072ae62f657cb0bd471c648ff294044bfec3079828bdc410bd64758f76a93c3214 jruby-bin-9.3.0.0.tar.gz=06331ce32ee88aaad5e5bc0668d164ec3263f8ef3ed34bb32981b76ca33f8c817e3632550775706481094159f4feb43916ad1f9ec0f0775ad756b16cb7bd9417 jruby-bin-9.3.1.0.tar.gz=bfcbe6dc5ba736fc944af15eb387b545f6c5b987a7db88045913a02a1d30726c5d1255c4dd609aa7c2d2823ddf9d8360223b0575c93302aeef4c54eb37af9abe jruby-bin-9.3.2.0.tar.gz=b1777bfdf1964d7e527bb3dfc47b4b9e8c589cdb301c38ee8ee988bd0c392ca978ee3c1c24e4b5a65bdecff67d1bd96e2d8645e58ff7e891e3622097ea29e925 jruby-bin-9.3.3.0.tar.gz=648e70de0bda710e2dc70fd03c3dc6b798dd4c7b92584c54306c426f59ebe1168a595c4cf94328f6b44674f5507bee354efdb1cd73060b73b0171a3605051c9c jruby-bin-9.3.4.0.tar.gz=6b09decf412a76578179cefaabf01cc8740f70ab5324954e6aa43b1d8b81c37db7a99b1f94d6ced2b459f1c44c3086892b9a2c06b3ea838baf75a8fd5e0447c8 jruby-bin-9.3.6.0.tar.gz=f730522eff27462192808773cbd071cdaefae11f20bc808a8f22515a33960a730f3c87ec727ddfd9dc9b6b35acffeb50c31d75a4794a3f8daa75e1963ebd246b jruby-bin-9.3.7.0.tar.gz=265051c68d3b9dcce708b75f8267303ae84008859c88d7fe4f282395366c3f52fcf1bb161210555c0fd0a2427ff5a728ea9e337feea3d9b69559cadb2f300aed jruby-bin-9.3.8.0.tar.gz=12e795b7e1f14141bde68f52a29b0aa9f1db20515240dce83cffec351cefd25959579e01059d42dc8c8e4280493a70819d9beb1e0523e9bc10a72af16d9abd60 jruby-bin-9.3.9.0.tar.gz=f0b31d98f39a2bd4436764db0b0139433d6868bce7c30c5d6e3552616ba879c93478c499f3e4c884fd3728502916aed5c9ca1be150ae3e80ff47b36710c3f6df jruby-bin-9.3.10.0.tar.gz=aa36fd4c5de7b17f5fdcca1d1314d309e7b4470d46822c45baefbc0ad5180e5530a7054502b97b414352af485e7936659390690dc6198512ba6733d8f8d503ed jruby-bin-9.3.11.0.tar.gz=d9fd90bc64028dcc45687d2be51414b1561add20d20d1392525f4434cc684d505427f5e56827afffbbb0ce2c9cd7c1ef846b0bffa737679afb95d4c160232da5 jruby-bin-9.3.13.0.tar.gz=eb24641fb7a6b9d2039ec953388053e7333b306056f9a5bf745331b04cfc05dc4211a9b7780ce88bcee9184b8cbb219b574574d308bc2720547c116f4d4721dc jruby-bin-9.3.14.0.tar.gz=d9b02fc35133f71140cc7d891061f8190b61b3d1065f00092a2aa9a4beaf7d67297dfb0529691bd24d29607d698f39c62af9018e8307c1e6624c3104a61bb74c jruby-bin-9.3.15.0.tar.gz=e41521ebf453d6b6a9de937556fcaa972c60268285d0af4a41bfb95aad790eb47dd507e182958ca6f4889a0e03eedee0fa4bbc58e3d0407a2b6ba64a8b87a21a jruby-bin-9.4.0.0.tar.gz=fb72f8e087ea08653fa4e4225fa26694c3ff97c41f3deb8731cdb6571c6c9b21e0d8f69e2096f82ee81e2b5c283f912e2a5228c15873dbbd56de96a2ba35d59b jruby-bin-9.4.1.0.tar.gz=46003ef6192718a6372b79ebc89bee37957686224a08fe2f9a6be3c9e479784409d0269f0885c4d1f1351585c5d2cd31fd2ad45014e425bcaf2d44d66b98d299 jruby-bin-9.4.2.0.tar.gz=77e484ab73ece93e7d7283f876f0d541607c6080eee696b702b485be9794cf7e6d464f250a6d75387ee69aef3ba40ccf4f6d9fcfe324c5bc7a14376177ea2bb8 jruby-bin-9.4.3.0.tar.gz=2361f4bb2989f5951b0d3e9d49bf31e6805ce39bdc987ad3c6934daa98ab7c8e69763d40d7412ccef8adbbc198e52f4b83d00998ee12ac43fbfc6b5d88930c15 jruby-bin-9.4.4.0.tar.gz=e89dff0cc5b4a948daa95196d4bd4fee0c6901bb4aa023ae35b3679d9739967c2a74e8a4388b1835465dd39f1332a1f321b450b40c54ad2b81802645b4a31ca4 jruby-bin-9.4.5.0.tar.gz=06db948e5fa6f8559abd3b6891c7b4867b9f54b7bddf0e36d6f20cc1bfb394cdba8ea920213e545c927d1cb865e083cb1089c8e925bc608e0f8784a79b5d330f jruby-bin-9.4.6.0.tar.gz=ebdc671622baf3c42a988d6ebe24af6bfefa1f717f050f602a1b35909a3220316329aad080ee2cd9cd330da9428f8d736502573efa64bd70f093ccc123ab32b0 jruby-bin-9.4.7.0.tar.gz=4fc8b12deba7b8a53a523a41a31c248895adc9bd54a62664a27107e7205369af39c0eaa508a9a70611c3bb845524d8c5f39451c09b8b9cd87059ae15139703b9 jruby-bin-9.4.8.0.tar.gz=0d65fdfd63e2049ab3b8ccbcb4caaaab20aea5a63276aeb20ed4092191a8814f144425dd0d926aeed757ad6b4daa308a98fafe1bbd1647f3db44368066f61868 jruby-bin-9.4.9.0.tar.gz=1321e2ef5fdce909008ed764051d1bf9be0a4b8cb4a2515fa888c7c0ea48f0f4a2ab7b5c881633dba3d03449c6340255d9411a58836ed059f62d801d48565d1a jruby-bin-9.4.10.0.tar.gz=3396cdda4334552f2ca21c9123e709d72544e11b448d3091ec1a6e6f7beda2cde86ba4c15a4c0648135df34b558d254a96cb970f0a18d098126b7c5c2a2af019 MagLev-1.0.0.tar.gz=8da29f16e08f657b0d2f147b64f2202ac027db26f85da8dec29f926898f178ac8d11260fd6c0a539a9b9b15eb92d8c7ced86a8cab1861ae7f8a33b6fa468e5cb MagLev-1.1beta.tar.gz=7122af70530e76b9a4cee93244d6872b49616e78086bc8a5db0f32d2b846560b352c4831addbbecc72e0e3158bd52f26c2da14f5d83a515ead30efe7c538b62e MagLev-1.1beta2.tar.gz=43b4b831791074f6e8c12f6fbe6ccec2bd0446dae029d3e6717cde1e7adca8462a2d7dc49c14112cb568b5b3adc8cd051767044b41d57ae51f38aca035ff8597 MagLev-1.1RC1.tar.gz=942c1cf43f1a911230aa43bbac1cea2e2e61b5e19af755e29a6a71139d66d304efcc519072dcc3487a2da7462847530564aff4a2159d675e3270cc938a297dd9 MagLev-1.2Alpha.tar.gz=2672e3e5425df2d2ecc49f85df5845fdb083f74a7b242cac75e33d0c1837079ced8ec8b273807326d08e7bf6f95cb4f1d8351f37af8bb38c4150e6292fc553dc MagLev-1.2Alpha2.tar.gz=4492ed58b6c2b852502a2195836f1db5a80f0619467e4d7b44981a993a5e9a9ea5c9fecf1198de1891583e334bbc3c3a86648ce8afea1137ae9c73a4d76b0f4a MagLev-1.2Alpha3.tar.gz=6290895b22efb986ffd7305b7d651f20a051ab6869d51310bf891fa3eed48526a8617b69f72793e8ac0b57f99bc5de75f34235ef94de967bbdcd51857efc2af6 MagLev-1.2Alpha4.tar.gz=a621e9c615ffec503910540db770754f29bab1646d8e67650d5b82413bd551adfb0bbbb8155407ccb6f80933bfe8ae1bf9b688eb0defbc88710308bde1325683 mruby-1.0.0.tar.gz=4a0f2927da3401df23d5c19ba566995f76775def3badbb14f16510a271e7b40a833fc61841f89d8adc6d57b5b12cb453708961c16a22133c092fab8ecfcd1e3c mruby-1.1.0.tar.gz=afa99a973e9c1b72a5a418d709c4aca08dc7449c427cedef5f12db4ccefb15e11a4fd1c23ceb7e31e49d4d2e602c0b1f9dcf2e0f6cf8ea3466f0b9bee23b53df mruby-1.2.0.tar.gz=bd5de32ba52b6642358752755329fa45a954082122a8983012930056c286ac328fb52fbdd11f34ff7c80af2c0e9a6348abcd5214602aca1150f2e7ae25cad1f2 mruby-1.3.0.tar.gz=13a57306706d2d60693151919ae15bb3621e6e7ed3b5e9c6d3b1c8d44e52b898c1ad394b39946d730ff82a19f5e3b7c2a374f9dcc3b6c6f990581e504f1cb9cb mruby-1.4.0.tar.gz=d2dd6e17c7f8e890ef5b6887538cccdea08a2376ba8f9a478d7d5c4377fd4c31a4af6323b1fc73952ef80e5a4778ca22eac3d724ce7d50b76770f7e614df7da0 mruby-1.4.1.tar.gz=2cbf155ba7819211b6410ea606c4d0db3adf4f47a4018ac45285ab3e32b94f280aa0af0936ead7233411957cfca62979d14bbaaf0d8f40521cba5c12272f2af4 mruby-2.0.0.tar.gz=8379f76b7a06d280e2a2552eec2975ffa3fe85b99028f6f7c009cd908f95faf3cd36a9975f502a5779559baf3c45a4297da0b6bcc038d213a0fdee851f9d01ea mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.1.0-rc.tar.gz=f310b385cbf80c6b6ab67e2a41b931411149639c0bf778799e3358d6a9a59f508f42e3faf72fef9e8ef91088d6184c445af7933a47e4e2b2fe114362d579bac0 mruby-2.1.0.tar.gz=da28b5a078e121c75edf62fc68fad6d5810212bd53a3424d4f585ffe5bbd09f652393ffea0f4b3ddd802e5fe178554dc67040c39c9d5069bdfad4ef22ead7e8d mruby-2.1.1-rc.tar.gz=97c9cc2c79a5dbf2f634ea08532f0f512f8af6ffb99ab4eefd83fc336ca9d97b943e76643971047b4508aaddb5e40176d6cc8fa39a17022455aa15d774eb5b98 mruby-2.1.1-rc2.tar.gz=13aa32a35bd5d8f02a9bfd08d17818dbae78ce46c8b0224a029f9f191cb64ac330eddf3871f4396b9221b987a91e4cd6f8933f59814ac0018155ec8454abff18 mruby-2.1.1.tar.gz=66f9b4bebb5a7b19f5cb1be2bd8b9bc65e4dbb5d4350d238ad5f947c9195fd431f2069f7334036ea63a750e9257e59ae1aef16ac99c7e1f4e17724cd1cbe2e50 rubinius-1.3.3.tar.bz2=8b91baf429dac60663d0e4da3152a60ec6e007f5d6c17ffa430876ec88eb87ade44efae90f2e32e238fd74f1b3d54e27492315f08e7bb073220b402e1e2d3163 rubinius-1.4.1.tar.bz2=928d12aa01a1d0f6c80175d67d3b1f8b9840f69f045c8148786612316421223f4cea71e3c373ee18a3f686b1457557ae547645afe758a99d21c4818dff47b9d1 rubinius-2.0.0.tar.bz2=5c81a6b8cf7b59e08c3b9353b0eb37ce985aaf391f5064df65ffb10f6d12b668287e4d4e61e2c6b560d9234c10f0b64bba74259f2c06f1dac488928544d4131d rubinius-2.1.1.tar.bz2=154cfa93ed59835814b8b974f6d738b049942fcc2b75095d21c87647d002c879fd55aa3d1ec95414b5b66eb9926c25a5c6e3e19a7c0da7dec6edbf434acb9c68 rubinius-2.2.10.tar.bz2=c2168e676059c197123916dd948b83e39bb96e99786bdcaef2e690936b761fedb13740b9f19883f991f1b475f3249ea1696213e8448c41ae15dfc14b3d4e1fda rubinius-2.3.0.tar.bz2=d0f3dd5e3b891bff2eb79b7810c6041e15fbbf0606c379f89575cefd829ac7a394b0c12ed3c5a4d452730797bc0a2c6c82646a19a078b56dcac7acad015a4559 rubinius-2.4.1.tar.bz2=7bcea320006b8cd3d122c407d89c325973a74c32456ba0b649657ac848f4682f2eb7455c13e3007709c22932bc2e1b65e2dd43fda0d3c9f993ddf8a74d1e2cb1 rubinius-2.5.0.tar.bz2=ac94d5bc11524e715fc24c1de33f4d358c2cd65e92fbb64c850dc8151d2a712d268227733c99fcffe298c3bdd6ce080c5e9553e4e8f3238868323498a9d10cae rubinius-2.5.1.tar.bz2=9315f76126d0aa754ee63b190385c24cb084f36293a99aa30fc482fd880d5393aabce361e09ff5514bc2540dfede8e179b7e9212b2dd59bd14ca2aa69d209a83 rubinius-2.5.2.tar.bz2=b48bd8d54a450441a50904b07c75c8d31b59822830a74c952720d6f8d2d86e6a27a84775e975ff2bf55bf3346f34e69d742f308933a9d8476e5e78109cb525f6 rubinius-2.5.3.tar.bz2=b923446d325dc3ce5ad28af9ee527607fae3259b85e85aeff97c1bebbb4520daf70616957b1c0ded900ed19e59025826dee66977c19cd2a2d4e9a0296811eb20 rubinius-2.5.4.tar.bz2=75b7ddbe218e4c92210dbf5a06eb8b3c3aa028d16146982a4e813e3af10a90d33f3e239f4508469c6aba17f02cb8bd10e96a204839975e06519869cacd456c92 rubinius-2.5.5.tar.bz2=a862146ddbbdcd4439eb64e78bfe6d09ae4cca540d19869618426d3f451544658713fe8eb7d46493785eb0cc721077e624293cc44d68eea3ef584967b43a18d7 rubinius-2.5.6.tar.bz2=9a0bdb5d77f80f163925ce409d00be3cee34871baae8bcfdb34c3c7545b92fd14102fecb970e42b3012588d299e504b724025f397a5a00e181ab75f1448e426a rubinius-2.5.7.tar.bz2=8048110b3ba4e5ff8c3f35282896067e1b1b46dccaf9ef4f6c9b6098782f27591ff59ccae0234fd7e881e3aaf17a0b420286b1b52ecd2cb672249655795a6982 rubinius-2.5.8.tar.bz2=23fca2f9747d2b0e544af890c3baacfb7b3a009cc59cbe653762ccdd827a6c915dcc57902d317fa1f7a81f8c12682f6c3a93195331b6de0f705b118e2e8c13f1 ruby-1.9.3-p550.tar.bz2=38767e98df25484f7292437f3cb0f798b3a43e9a7414a5401677e96ad1cc367cb3fa23ac3abe568d5bf2b2ca553713469a8770d41b79bc63daf3fa59cb4e15c6 ruby-1.9.3-p551.tar.bz2=5ea40f8c40cf116030ffdedbe436c1fdbf9a50b7bb44bc890845c9c2a885c34da711bc1a9e9694788c2f4710f7e6e0adc4410aec1ab18a25a27168f25ac3d68c ruby-2.0.0-p576.tar.bz2=e089cca4867cd9c715f4f37e40a1db9af6ba0c74b47e79568121bb980476f8877a87ccb848b973381edb4667c0c73165f5e1761f60db839e67f6326302dbd864 ruby-2.0.0-p594.tar.bz2=8301a51c73fb63a8cfeb14af47d0c18b5bc3c45e3d62fc2ed56a673a1cd6b0015c41f275e70eb14a9e40036b1530977199321e05285e107a6adf58514bef1b3d ruby-2.0.0-p598.tar.bz2=10026a04e01a8ad14ea9c99bbdf4f7d04029b73ee0c01bbf6c2eb2817332d49adacf127b646693b67b5dd7010eaf3b696b23b6335cc0f7ee5a6b56dbba0f6f82 ruby-2.0.0-p643.tar.bz2=453117152e6facdcd5bedaa9c3b1e349382bc5bc1dd3d650ec58b398cb9d2519a2822d05da10bcc5dbbb4f513fc5fef310caa3529d176fa2d453befb28e4d83a ruby-2.0.0-p645.tar.bz2=e9ca186b1cf0877cdbecd43dcab2c5161a53103e926609d5e1b769a4980eab4571bfd0951788b4fc92dfd9d10175b0f5f36ea2c7289e575a9db9b62c02f93185 ruby-2.0.0-p647.tar.bz2=3416af771ebb0b27ceacf23d309bd2a1ede832c2edf48a5ca46f0b0b84b2ab94fb6362a0c7fe4f77b21253539db8161ae26d23a78d1ba729bf03812454d93d04 ruby-2.0.0-p648.tar.bz2=609acf6d6352c9746e21cd7f0e7d29f5eb522e6fff2d5fad0431d63c568cc084ed5b7141f84cd33512d8213200d2d1a22e8d7df71469a980a3a92886133fea38 ruby-2.1.3.tar.bz2=9b48adb161e5e4550a71f61252c8edf59944affb82250babcb64240749af4b672e4a54ccd0feac5b36ea447a358b350b5080125ef2d4acf6e9e8b1ab82612f48 ruby-2.1.4.tar.bz2=68db1567751166c5e7d24b6e5015124b8a15568c50556e1f429486395352fa56c4a195a74820ab135697924149d014b445b345a1b9755678aaf824fba79c606b ruby-2.1.5.tar.bz2=d4b1e3c2b6a0dc79846cce056043c48a2a2a97599c76e9a07af21a77fd10e04c8a34f3a60b6975181bff17b2c452af874fa073ad029549f3203e59095ab70196 ruby-2.1.6.tar.bz2=75d58120b5f387bcadbf6d19e85624f78c74f81b9018baef39207214673f7ebc0700ab31145acd88b4071c896ba8e1302a29c90955bcf5f8c863634125022aa6 ruby-2.1.7.tar.bz2=f610d2dd6a93f0a5e84e04ddedf847bbcea5dd3289b3164cdf60be64f67a80dfd5f9836ea5d169970cd0ce24a7e05ea6190699706567cb0d5cf450de6a70e445 ruby-2.1.8.tar.bz2=7129c012bca7f0e7cfa51c73ba0898697f7a9f31abd5ae57d38be5b6b646fd80ab33be9b262cd3e2486c66f65aaf4ec6e881ae6e5a82ec9df62f00fa072510fc ruby-2.1.9.tar.bz2=a86422132e4c64007a84a91696f4557bdcbc8716fbfe1962f1eef3754ee7f994f4de0b5b7e7231c25057515767040d5c4af33339750b6db15744662e9bd24f38 ruby-2.1.10.tar.bz2=4b7213695416876e4de3cbce912f61ac89db052c74f0daa8424477991cfc49b07300e960177ff576b634a97ee8afef3c5aded5d5806329dbd01d0ce7b42b9b63 ruby-2.2.0-preview1.tar.bz2=2f1190f5d8cd1fa9962d1ff416dae97759d032a96801d77bc6b10136eba59dde1a554ff8c0c2d9ce0d3c1361d4dd12ad573b1266fd53b90ab238d8ce39e6b862 ruby-2.2.0-preview2.tar.bz2=c654d4c047f9463a5fb81eaea0fa5ab7bf316962bc7fb0fb356861e6336ce8ce2162c7779d8b27f72d7bc0e9604b5e5af2910abcb0b0a1f197b3138eaddfd4a5 ruby-2.2.0-rc1.tar.bz2=181201168360bee37dceeef3481a69e8a333a5d329680031fd9d371d30ac64460bbdf4db07546133024f541774e51301f1630cfd988c5e5bf2464834f3abe6bf ruby-2.2.0.tar.bz2=04edc53e8cd1732c3ca61ebeb1d6133614beb10f77f9abb80d8d36352fe8aa205112068e460bf600b2c7e81e0ddcc3b311e7e027c320366f1bd992b3e378a6ad ruby-2.2.1.tar.bz2=af6a8e75a66b953ff33ecbca5111bcf1c6560b6b48b370b700820fcbe91363146c5ac8abd670a14e693b44343ae598bab472ed2902834304c03ffcd9550886d1 ruby-2.2.2.tar.bz2=d6693251296e9c6e8452786ce6b0447c8730aff7f92d0a92733444dbf298a1e7504b7bd29bb6ee4f2155ef94ccb63148311c3ed7ac3403b60120a3ab5c70a162 ruby-2.2.3.tar.bz2=795f1b66a6d4f0baef897068899c3a1a4370ce1268618e6a7d6d4720234444259f371d1ba2e174b2f7580265e9f18eda3f295fbb087447aa6e8fb7a0f07526ce ruby-2.2.4.tar.bz2=d27ca2f19c214ce87f906b57edd41f2f8af35b2871c191470facded9cfda15ba46e5c3bc7d5540225a38da6bd65050fcc8aaa4ffbadbb6bf7dc891c1821da0df ruby-2.2.5.tar.bz2=d3224814361c297bc36646c2e40f63c461ccf5a77fea5a3acdcb2c7ad1705bb229ac6abbd7ad1ae61cbe0fefd7a008c6102568d11366ad3107179302cd3e734e ruby-2.2.6.tar.bz2=7a93f72d236521ac28c8a0bc0c73cf805797a8813d22e02f42c5fc05dd39f6e422817272e0db6a24c245f6f97ad4b2b412a9a47ac50156ab186df596918a5f34 ruby-2.2.7.tar.bz2=83756cd1c91516962b83961e0de59d858618f7ed3e9795f930aab4f199d47a95ed8f867d8aa9b51d508be26d9babf2140117c88241168bac41e6ef702cfadf20 ruby-2.2.8.tar.bz2=aa1c65f76a51a57d9059a38a13a823112b53850a9e7d6f72c3f3e38d381412014521049f7065c1b00877501b3b554235135d0f308045c2a9da133c766f5b9e46 ruby-2.2.9.tar.bz2=2a8c8770fda20a22b79c9115b6f468f8e7ea1092c84a5089af7a3122163e5ad298b493e6637e4d93ba02d899d8a619c94064dda8ac98cf3b93f64f45d5401085 ruby-2.2.10.tar.bz2=f8ec96c2a5f4ecf22052ee0b1029989ded52d7bf5d41be24fef67e732e76f72119302240bca08f0547510a9cd29e941a32e263cad9c8a2bf80023d6bc97b2373 ruby-2.3.0-preview1.tar.bz2=ae6d46c87f59e1fd3703b76dfc45bfcf208625f95ab9f4559f0b9f7050e8681f1a6e419f5fa06b704c83e56879c3a9ff1337dba443bcfca76fadb49c97d97a93 ruby-2.3.0-preview2.tar.bz2=e397f321d4338edba8d005d871408775f03d975da90c8abcfdb457a1bc7e6c87efe58c53b2c3bc122e9f58f619767b271bcc8d5d9663ed4b4288c60556e8d288 ruby-2.3.0.tar.bz2=77b707359e754c3616699d21697752741497c719dc3d6fdfb55ed639e76d52560d293ae54cbe5c63be78dc73fbe60f1b8615d704d017bdfe1994aa9747d26a6c ruby-2.3.1.tar.bz2=a8659b96a3a481a3dbdbb6997eb18ff1f8cd926a9707a90d071e937315c21d372c89252f0d44732ae5007d2678fda8c8fbceafa4e4b4ff500d236fb796284d8d ruby-2.3.2.tar.bz2=78699bae5b0a2382a58f9d51f7d891341f00ad3a90d9ca06b68b1b245cf5acebc3a82133e39bf6a412ac999a5c0f778a0dab177c2569ffbee085ffff6f6ec38e ruby-2.3.3.tar.bz2=88f7782effd35bfe0b4c33140b5eb147d09b63fbb35b9c42d2200c010f387e2b70984ead1eca86569e8ec31f08b35289d440c0ca76b662dadb760f848e863d91 ruby-2.3.4.tar.bz2=ad1f16142615498232d0de85149585be1d2c5de2bc40ec160d272a09e098ef6f317d8b25026001735261fd1c5bc0d1f8513a8474e89f0d86eed5b2fe7338d64e ruby-2.3.5.tar.bz2=3ecc7c0ac10672166e1a58cfcd5ae45dfc637c22cec549a30975575cbe59ec39945d806e47661f45071962ef9404566007a982aedccb7d4241b4459cb88507df ruby-2.3.6.tar.bz2=bc3c7a115745a38e44bd91eb5637b1e412011c471d9749db7960185ef75737b944dd0e524f22432809649952ca7d93f46d458990e9cd2b0db5ca8abf4bc8ea99 ruby-2.3.7.tar.bz2=e72754f7703f0706c4b0bccd053035536053451fe069a55427984cc0bc5692b86bd51c243c5f62f78527c66b08300d2e4aa19b73e6ded13d6020aa2450e66a7d rubu-2.3.8.tar.bz2=6d79e0d25757fd37188a8db3e630a52539bce7927fcb779a2ce9a97b9e5f330753035c16843552f1a1fb6c9a1e5c0f916b3cc8b5c0bfe81e20f35f8442e40ae8 ruby-2.4.0-preview1.tar.bz2=c9873e8686eb54dbde61d6e23cd5197beebccd6cb31fd12c82763ebe1fde17095d7514d9d93c2c82b238032c98691df5479dc2d666a8a590e0fc54450ec29cb5 ruby-2.4.0-preview2.tar.bz2=0c9a59a2f57a99c4ee8539a30f41da1de7547566203f89d856e1be9dbb44365754e6c470145dc9336eb324e0feb2f53d9fef18a1564968ac21f9ee528905949f ruby-2.4.0-preview3.tar.bz2=6602c65a7b1e3bc680acc48217108f4335e84fdd74a9cf06f2e2f9ad00a2fccacf9fa035a912bc9d5cc3f0c7a5e21475971dfac37b0364311ef3645f25c7ddf9 ruby-2.4.0-rc1.tar.bz2=b43902ac7794487197df55a45256819d2e7540b77f1ed4eb68def3e0473ee98860a400862075bafadbde74f242e1dfe36a18cd6fe05ac42aae1ea6dddc9978ce ruby-2.4.0.tar.bz2=bef7bb53f63fb74073d071cc125fb67b273ed0779ef43c2d2969089b9ca21fff1bd012281c5b748f7a3c24dd26e71730d7248c05a01cb23ab2089eb4d02115fe ruby-2.4.1.tar.bz2=1c80d4c30ecb51758a193b26b76802a06d214de7f15570f1e85b5fae4cec81bda7237f086b81f6f2b5767f2e93d347ad1fa3f49d7b5c2e084d5f57c419503f74 ruby-2.4.2.tar.bz2=1a5302d2558089a6b91b815fff9b75a29e690f10861de5fdd48211f3f45025a70dad7495f216e6af9c62d72e69ed316f1a52fada704bdc7e6d8c094d141ea77c ruby-2.4.3.tar.bz2=fb4339e30c04d03b1422b6c32ede45902e072cd26325b36f3fc05c341d42eea6431d88718242dcc9ce24d9cad26f3d26772f2e806bd7d93f40be50268c318409 ruby-2.4.4.tar.bz2=ae632852a5f413561d8134e9ef3bb82adb37317696dd293ef92cb76709ecd45718f14116ecce35b12f1c2dd53ccae8dabc7a924a270072b697512d11f4922347 ruby-2.4.5.tar.bz2=7034fcaeaee41f14bc0ecce0d3d93bd1abe95310e1a0b95fac66eaba867adfb2bf7ba4d0d70d67a15ce8df16052dee405c38cdb18987602e64a2f701d37d3df0 ruby-2.4.6.tar.bz2=292802984e5cff6d526d817bde08216fe801d255c4cede0646e450f22d4a3a81ae612ec5d193dcc2a888e3e98b2531af845b6b863a2952bcf3fb863f95368bcf ruby-2.4.7.tar.bz2=2665bca5f55d4b37f100eec0e2e632d41158139b85fcb8d5806c6dc1699e64194f17b9fe757b5afd6aa2c6e7ccabba8710a9aa8182a2d697add11f2b76cf6958 ruby-2.4.8.tar.bz2=2d7e0f5ad766e2a12a1b53ff838e6bfe86244ffb7202196769c25e9df6f71f3ccdd8605e7ef35c53e54310bc82caf6b368ad5111dd0a3ad70a3aae1a7be93f08 ruby-2.4.9.tar.bz2=d485444dcd025a261a16bd740dae63c0aa23e4138a095584e7a83aec47af34415c7d9cbc1313e92da2ec416b11bfddf20bb1a7b60c80f12906d11ef27409b3e8 ruby-2.4.10.tar.bz2=4d730d2d7cb96b002167ee358258f2620862a5a6d8627cfa5b49bd43c6e59c50c0f437b959d4689b231d57706ec7d5910d9b144f4ca1c1ed56bc879ed92e8a59 ruby-2.5.0-preview1.tar.bz2=2d39ef64aaf7a52014905f4ad59b53e83b71433e50a9227f9f50cbb7a2c9a5db9cd69fa7dbe01234819f7edd2216b3d915f21676f07d12bb5f0f3276358bce7f ruby-2.5.0-rc1.tar.bz2=bf0eb114097f9e505ff846f25e7556a2fb393573b4e8b773f94cf5b47998e221f3962a291db15a3cdbdf4ced5a523812937f80d95f4ee3f7b13c4e37f178d7a7 ruby-2.5.0.tar.bz2=8f6fdf6708e7470f55bc009db2567cd8d4e633ad0678d83a015441ecf5b5d88bd7da8fb8533a42157ff83b74d00b6dc617d39bbb17fc2c6c12287a1d8eaa0f2c ruby-2.5.1.tar.bz2=82e799ecf7257a9f5fe8691c50a478b0f91bd4bdca50341c839634b0da5cd76c5556965cb9437264b66438434c94210c949fe9dab88cbc5b3b7fa34b5382659b ruby-2.5.2.tar.bz2=9f9388a162a3ae9c14ec8999fa3b12ff5397de14f55996cc8761d21c757113db37ace4d326b9606de7ad3a5875aa94fec900dd9b81b2fb0dff558c39422f4aa1 ruby-2.5.3.tar.bz2=6fe89fe9d406bb454457442f908774577369ab2501da4fd15725ccbab77675b88faad739a6c8ad1c7b6690b439a27de5e08035b7546406cdeca65c7b295e2c77 ruby-2.5.4.tar.bz2=3c4f54f38ee50914a44d07e4fd299e53dddd045f2d38da2140586b8a9c45d1172fec2ad5b0411c228a9b31f5e161214820903a65b98caf3b0dfeeaabf2cab6ad ruby-2.5.5.tar.bz2=1b56aa79569b818446440b9f2d13122bf7c2976ab9b2865f5fb62d247d7768dd4ac5b5e463709ffec0f757bff7088afd293c2a8c5349c3780763b6444bb354a8 ruby-2.5.6.tar.bz2=e4511d42d19a7bb39ea79f66bb4eca54b63c2a9d27addc035d6d670c1e59ee48a0c6e9c6bc7d082d1f1114b0668831dce3b7422034517f3c4a06ced0e47a7914 ruby-2.5.7.tar.bz2=7d6a7d41b4f3789f46be5f996099f3eb8321aa4778b2a8ff44142654e769ba4ba2df127dd0f267547e4c8cd6ff46364f18e79838df54fcd7e3fb714294ee0099 ruby-2.5.8.tar.bz2=037a5a0510d50b4da85f081d934b07bd6e1c9b5a1ab9b069b3d6eb131ee811351cf02b61988dda7d7aa248aec91612a58d00929d342f0b19ddd7302712caec58 ruby-2.5.9.tar.bz2=12f58e14cfa6337065b0e82941e39b167813920eb54cbdb4ac4a680dd0cb75d2684d341059e7b4d0da1292bfc4e53041443bd14891a66f50991858b440a835c8 ruby-2.6.0-preview1.tar.bz2=d9cb270529a97670d54f43a0236fab072714e715c39277dab70b7a1843ec818e6700e47e1384c7256f9e0ae41ab2c0b768a0de38a5ecf4f4fff5da6ef5ad4944 ruby-2.6.0-preview2.tar.bz2=3872227e9b1c97c206d19bf1e6ce15a38ee15a26c431b4436605dea67affcf16372358984df76b35e7abaa902c15c16f533ac7af47e3031dea9451bbe459b693 ruby-2.6.0-preview3.tar.bz2=d1693625723796e8902f3e4c4fae444f2912af9173489f7cf18c99db2a217afc971b082fce7089e39f8edd54d762d2b4e72843c8306ed29b05ccb15ac03dbb5b ruby-2.6.0-rc1.tar.bz2=cbd6281b2aab6fbce3f699c1ab57e5423304dca7a547a0b3cd4e8e980326dc7b85b2ca2bfaf3f3a648d40f4222fdf1740d81d422790ee7ae1ba1ed33eb11e3e8 ruby-2.6.0-rc2.tar.bz2=9bfbe83fd3699b71bae2350801d8c967eb128e79b62a9d36fc0f011b83c53cab28a280939f4cc9f0a28f9bf02dce8eea30866ca4d06480dc44289400abf580ba ruby-2.6.0.tar.bz2=ca3daf9acf11d3db2900af21b66231bd1f025427a9d2212b35f6137ca03f77f57171ddfdb99022c8c8bcd730ff92a7a4af54e8a2a770a67d8e16c5807aa391f1 ruby-2.6.1.tar.bz2=fc41429491935b89532733b95476ab9f8a4efc310aad8f4c2bd3b68fba08fd7b6e9ac84c6c88ca892022d1ba76435295f3299ea466f9b5453c07d41cb539af59 ruby-2.6.2.tar.bz2=cad678d2ced4085e99009e4fef83c067dd0e6ead27a8695bc212c0e5112a7fa09ceb27f82638faf91932ef8bdd090f844e0a878ffdf6845a891da4b858588aa0 ruby-2.6.3.tar.bz2=c63c3f527bef88922345f4abb4b9ad467117b63f2132e41722ea6b4234cec3446626c3338e673065a06d2894feee92472807c284cbe613a442c8fda234ea7f88 ruby-2.6.4.tar.bz2=a9fa2f51fb5f86cd8dcaa0925fe6f13d4f19f110b5d4c5fd251f199d16aaf920db39ad3bb50460eb94ab8d471ab2ac8bb54daea4a3bb080eaf45250aac3437fe ruby-2.6.5.tar.bz2=28e0b04ac8ca85203eb8939137b5e5de4850c933faf7f62fc69648fe1886faaabf6cdf48382f9d9585c1720876d10b41dafd33efaeb23341c309917fbd8a6e21 ruby-2.6.6.tar.bz2=001851cf55c4529287ca7cc132afc8c7af4293cdef71feb1922da4901ece255ec453d7697b102a9a90aef2a048fe3d09017ea9378ab4a4df998c21ec3890cdbb ruby-2.6.7.tar.bz2=311ec56d23d0de7a163f66c1ef4e5369b822f8409f8e1f3a25785c803f01c68dd13aa8ddcfb3a0fe6a97bf321950f8d6cd75b2babcb04158e791601914666f7a ruby-2.6.8.tar.bz2=51806d48187dfcce269ff904943dd008df800216ad4797f95481bdeecc2fbac40016bc02eabfff32414839ebb2087511d25eebfd6acead1a1d3813be6c10edf7 ruby-2.6.9.tar.bz2=ff067ebc059094c0a9a0debf54a37aad2c85f7ed47be59299041c9c03a7701529f5063ff32a1b8c56d48ee8585015acba63602ed0176b2797d263d43d67aa241 ruby-2.6.10.tar.bz2=275a0f329641e6c3d3d3c33ffabf585195187eb3baa4fb1dfd35999fa0a80bd5925943fa2711827ac00dffb6c9a1deeadabaf2e9ee401d56926fc167db5ae4a4 ruby-2.7.0-preview1.tar.bz2=a36b241fc1eccba121bb7c2cc5675b11609e0153e25a3a8961b67270c05414b1aa669ce5d4a5ebe4c6b2328ea2b8f8635fbba046b70de103320b3fdcb3d51248 ruby-2.7.0-preview2.tar.bz2=7066ececebbbba4b2933ba1a4f70cdef373169910802259a3e52b4fc144ba298f3cffda4be5fe8a7be8ef769ed43076fa046a9ac2c13bb733475b9852112c6f0 ruby-2.7.0-preview3.tar.bz2=5d8e99e3fd984c7d05c0bc483e1504e81ccdb920cbb2d78cad3c314e197b30316b692fd0199f836acac41246e3a713cb81dc6dd64c27cba56f807df4c193db1a ruby-2.7.0-rc1.tar.bz2=b5f96227775f8bdf19f944a555d0a83d7e84b37bd31fe4b8ac008a3272b1a28a4d94abbb1b5570ee32ec0690ba9d476b837a020a5194bee14bebf6f0e768bc79 ruby-2.7.0-rc2.tar.bz2=9010f72bb3f33b6cd3f515531e6e05198f295bb2a8a788e3a46cdfd776a9f6176b6ba8612f07f0236a11359302d2b77fdecca1dc6be33581edbb028069397a0a ruby-2.7.0.tar.bz2=8b8dd0ceba65bdde53b7c59e6a84bc6bf634c676bfeb2ff0b3604c362c663b465397f31ff6c936441b3daabb78fb7a619be5569480c95f113dd0453488761ce7 ruby-2.7.1.tar.bz2=4af568f5210379239531dbc54d35739f6ff7ab1d7ffcafc54fed2afeb2b30450d2df386504edf96a494465b3f5fd90cb030974668aa7a1fde5a6b042ea9ca858 ruby-2.7.2.tar.bz2=f07592cce4de3532c0fa1c84d53a134527d28ba95e310cd3487ac321c49ee680faeace285de544ee6db432a90aa7538a1d49ff10c72b235968ca362ef9be621d ruby-2.7.3.tar.bz2=e9236138be3e61380140f2e0d42f8fb82ad8f5219d454de2f6c2ec546bb208acc8b0f2020f23e6446660d2b3b9ae873cdd8298471f166a5f1efba8e80b05e746 ruby-2.7.4.tar.bz2=f144c32c9cb0006dfcfa7d297f83f88b881f68c94f0130346c74dfd8758583a68d22accfd0fc9f31db304ab5ff0bc135bfb2868145c0dec1ee6cec5ac6c3725d ruby-2.7.5.tar.bz2=0aa2ac44bc22859a39c43d08b7c7f457df05c2dc36b2574fd70ca399143ef1000dc5e496212db9eb055bc4258523d47d26db3c57a1a5a5d63cf1b3de9f81645a ruby-2.7.6.tar.bz2=4f7f3624afc43da25ebf0f01d5a2f92f72f94bab7423587cfd3920e089b479bf559b159adf2891b996f7e6a98c008a4f73a4a2170e2f8619417660ac1ab24bdc ruby-2.7.7.tar.bz2=24cc772ac1b56d3bb423f1b33716f221bf534f3717a506bf8235a698f8a454db7d79d94ae9a84067153c2f737b3f8f6085f34e36cc04be0d75ae2fdd57718870 ruby-2.7.8.tar.bz2=3a9db8d9e79318f869417f2ebf3365907febc0d1428116eabf3253c51d8420f255782b32fa30a54802b9f5f4187fad80dab0611cc80436feec84db87b0456ec6 ruby-3.0.0-preview1.tar.gz=b94892951f842a1538f4b99022606ac2c0b5031f1ede7eef3833a8caa9ed63e9b22868509173bfefb406f263c65211db75597b152b61f49e5ba2a875fce63a27 ruby-3.0.0-preview2.tar.gz=6fa4191425ae71e41894b60bd9c31d483a562ee8216886360ce18238ab48115b95be0367708612c45f634e7584fba8940a524ba0113ce0f36ce4df78a112d0b7 ruby-3.0.0-rc1.tar.gz=798926db82d27366b39be97556ac5cb322986b96df913c398449bd3ece533e484a3047fe35e7a6241dfbd0f7da803438f5b04b805b33f95c73e3e41d0bb51183 ruby-3.0.0.tar.gz=e62f4f63dc12cff424e8a09adc06477e1fa1ee2a9b2b6e28ca22fd52a211e8b8891c0045d47935014a83f2df2d6fc7c8a4fd87f01e63c585afc5ef753e1dd1c1 ruby-3.0.1.tar.gz=cb81db2c9b698cf8159b2ca6507f4c7f171e4eb387f5730c4b658ed632b7900a169808e6fbec0ee80598d937030ad5d9c56b63a2a339373ec5d9e1c06b7661d0 ruby-3.0.2.tar.gz=e1fba6f5429b5fca9c3f52a32535615fcf95fafa415efc71c46db4cce159f249112c01574c305026be5c50140335696042e47a74194caea045acbfaa4da738cd ruby-3.0.3.tar.gz=39dab51a0d784a38302372b99f96205817d466245202586d22123745761e9cb39db128ec2b984ebc3919b9faf2adf828d19c97d3fb1e56d44be0a81dc5d11b87 ruby-3.0.4.tar.gz=0dfded6826063c1b39bf625a6e13b46c109cb160c8648b78f0965f70e7c7a1a65f1c117fc8f2cf8bdb34d7cbf79fecf1f45d169d2323406d66ab27b18bde1d22 ruby-3.0.5.tar.gz=ea45fcd2ca53b87f18fd8696d00a1e340d2495443216aaf87d3f643cb5bd8bb614a1faacd82d07e7f2b72172397c728316a82d7c34a7b4566191268ea517ccf7 ruby-3.0.6.tar.gz=d596bfd374ae777717379b409afe8ee1655ade0c0539ada7a10af4780b818efe25a28aa50a2a7226741d1776d744e10ad916641f9d12fb31c7444b0a01d0e0cc ruby-3.0.7.tar.gz=66e5116ddd027ab1b27d466104a5b440889318b4f2f74b5fdf3099812bf5f7ef77be62fe1df37e0dc7cd5b2f5efe7fee5b9096910ce815ca4126577cb2abfaa7 ruby-3.1.0-preview1.tar.gz=63f528f20905827d03649ed9804e4a4e5c15078f9c6c8efcfb306baa7baafa17a406eb09a2c08b42e151e14af33b1aadbd9fb1cc84f9353d070b54bbf1ff950d ruby-3.1.0.tar.gz=76009d325e961e601d9a287e36490cbc1f3b5dbf4878fa6eab2c4daa5ff2fed78cbc7525cd87b09828f97cbe2beb30f528928bcc5647af745d03dffe7c5baaa9 ruby-3.1.1.tar.gz=a60d69d35d6d4ad8926b324a6092f962510183d9759b096ba4ce9db2e254e0f436030c2a62741352efe72aec5ca2329b45edd85cca8ad3254a9c57e3d8f66319 ruby-3.1.2.tar.gz=9155d1150398eaea7c9954af61ecf8dfdb885cfcf63a67bbcf6c92e282cd3ccac0ff9234d039286a9623297b65197441438c37f707e31d270ce2fe11e8f38a44 ruby-3.1.3.tar.gz=550cfda2ae492312009a58316e18fd77ea92852718b37443bcd76aac84ba6694fb841fe19bf23bee099f96f5aeed9d03e77c8c02fb194e414eca5f707adbbf90 ruby-3.1.4.tar.gz=41cf1561dd7eb249bb2c2f5ea958884880648cc1d11da9315f14158a2d0ff94b2c5c7d75291a67e57e1813d2ec7b618e5372a9f18ee93be6ed306f47b0d3199a ruby-3.1.5.tar.gz=23661cb1b61013d912b7433f8707bbcd723391694d91f413747c71428e74f8c7385c1304de7d08b70c9fa3bd649e4eb5e9acb472d89dc2ad5678cc54855a24ae ruby-3.2.0-preview1.tar.gz=d24e77161996c2085f613a86d1ed5ef5c5bf0e18eb459f6a93a0014a5d2ce41079283b4283d24cb96448a0986c8c6c52a04584abd4e73911ea59cefeb786836e ruby-3.2.0-preview2.tar.gz=5e9ddcb1a43cff449b0062cc716bfb80a9ebbb14a1b063f34005e2998c2c5033badb44e882232db9b2fceda9376f6615986e983511fda2575d60894752b605cc ruby-3.2.0-preview3.tar.gz=860634d95e4b9c48f18d38146dfbdc3c389666d45454248a4ccdfc3a5d3cd0c71c73533aabf359558117de9add1472af228d8eaec989c9336b1a3a6f03f1ae88 ruby-3.2.0-rc1.tar.gz=798157d785ebae94cb128d3c134fa35e0e90c654972e531cb6562823042f3fb68a270226f7b1cf0c42572ef2b1488a1a3e44f88389ad2a6f9ca4b280a2a8e759 ruby-3.2.0.tar.gz=94203051d20475b95a66660016721a0457d7ea57656a9f16cdd4264d8aa6c4cd8ea2fab659082611bfbd7b00ebbcf0391e883e2ebf384e4fab91869e0a877d35 ruby-3.2.1.tar.gz=f8bbff5e237b501f4042ddc70a19ac1ce74f72f147c90daf7f3007a940136abde37c12a0f7444f713ede09ba847c2cc2897a1742823832e3dc8cce80073164e1 ruby-3.2.2.tar.gz=bcc68f3f24c1c8987d9c80b57332e5791f25b935ba38daf5addf60dbfe3a05f9dcaf21909681b88e862c67c6ed103150f73259c6e35c564f13a00f432e3c1e46 ruby-3.2.3.tar.gz=75aecd9cf87f1fa66b24ecda8837a53162071b4f8801dcfd79119a24c6e81df3e3e2ba478e1cc48c60103dfaab12a00cfa2039a621f8651298eba8bd8d576360 ruby-3.2.4.tar.gz=b695b98dac7bb2c8755a106d949cb1b1b91551092fad263765171ddf8a4d86585259ffab5f7cc9bace70143d645dbe5932cfc61c6dba7817177de391d76bcd79 ruby-3.2.5.tar.gz=d86c0151fabf21b418b007465e3f5b3fd0b2de0a9652057fd465b1f7e91b01d00f83a737e972ea994a5d9231e8cb27e64e576852390fe6c2ad502f0d099fe5f4 ruby-3.2.6.tar.gz=26ae9439043cf40e5eddde6b92ae51c9e1fa4e89c8ec6da36732c59c14873b022c683fb3007950d372f35de9b62a4fabbbc3ef1f4ef58cd53058bd56e1552cbe ruby-3.3.0-preview1.tar.gz=0f891f140ddc6372aa7c4459f8784126e0c341db7b80e72c51e441c5153c43c2d7b965f7807c076862ac84b9b8b0c6a66bbf66fc341746016151397bb21c782a ruby-3.3.0-preview2.tar.gz=1c5a13e519e8487fd40d932b96d14fa729521925c288e7841ab5eada628e506ceca2605bae36eea1aa505d9253383d53cd933b7a4bff96e6de5b1130c7c558e6 ruby-3.3.0-preview3.tar.gz=94db07a6958c09809b2e5b597fa55a121074e8bacb3bf588c83cf0d35b07a8b070172035a49d1abf0d8ee364a9ace824f34e677f7327ffe1acdbab0938ac49c4 ruby-3.3.0.tar.gz=26074009b501fc793d71a74e419f34a6033c9353433919ca74ba2d24a3de432dbb11fd92c2bc285f0e4d951a6d6c74bf5b69a2ab36200c8c26e871746d6e0fc6 ruby-3.3.1.tar.gz=0c8ea922a79152ac7adbfb2541320565bce6a631692fd39d499a06f53ad6339c16fad8374d171351ed63f7bda3312b26d4f8c058c5b6df3d7548fde372c718f1 ruby-3.3.2.tar.gz=a15ba8d6c2830fcd1f2b36f671acf9028c303ec78608fd268da0585db8e95ddd971666e8029bcfa2584da2184a6534e1f2f2da07fa7ca4494e8d842eed206f00 ruby-3.3.3.tar.gz=0388a96127eb6e53b836f7954af51ff62b84cdb7abeab823cb1349993d805b151204e426b9ac04ca8333fbd5e01c386d58bc37d34c4e9286b219dcda7542a150 ruby-3.3.4.tar.gz=56a0b88954a4efd0236626e49cc90cdb15d9bfd42b27d7fc34efae61f500058e58cb32c73fdef5f1505a36602f4632d6148bf3bd1df539cb5581ae157c78c22b ruby-3.3.5.tar.gz=5c482059628ef9de5d8a6ad4751f8043f2fc2b159b768265be7f3ee0574ad51d9500ee4fc9146c5978fbd51313039c3de39e7b7a4dedc9bcd5d09a41a713f1a7 ruby-3.3.6.tar.gz=4ae22f5c2a1f7ed84aab7587ff04ce4d9933cffe4347deaef0ab88d22c9780f274c1664a4ee1dd8235bc3cc749be828ffa8db7cb5f5002339a59a599acf3c729 +ruby-3.3.7.tar.gz=9b48be05d1210e9194c8a6d77dfc3227599bff2b55fc9bb2049b11547927deef530ece9a2a505600cdc492c8517b1bef7ab5f2520ebd79ffcf76f0a734fa763d ruby-3.4.0-preview1.tar.gz=29c0e32179f7b823b6708f5328e495cd333fe8dd88f7df7d9051deab47add67b14d899bba565bba1a77e1b04c9693d9708541445c112925777bb6891cb7b2b62 ruby-3.4.0.tar.gz=bc70ecba27d1cdea00879f03487cad137a7d9ab2ad376cfb7a65780ad14da637fa3944eeeede2c04ab31eeafb970c64ccfeeb854c99c1093937ecc1165731562 ruby-3.4.1.tar.gz=93acc262e3b7cf86aeddebdad5b8938c187b9c44a73b0c252b6f873745964001459ae45ece7376745916e317c24895596a42b4544e836670fc6e90058e6f0de4 rubygems-2.6.11.tgz=3b0dd38c0aaf313c59e299dcf54f7bfb6e6d84b8b739573ddaf599e584da45ed7b1465f6521131b32f237e31a4796d9ef455b8be685064b3fd77a0355dfff13e rubygems-2.6.12.tgz=ebb672488b50f5fc988eab66ab14ce8e887dcc635f71239a85e32fbf1e919ca70196eb4d3f2fee3486cace7064bab0b8b08339c754b723198e1b0b0a0984ab54 rubygems-2.6.13.tgz=c952b6061a9a0778db304c3aa5bea693e71ae2564abfb19f8b123eef66eb1e3877fc7c36f4f1527da97bb320870cbfd4574ac57ad88e850a44fadd67ebdac152 rubygems-2.6.14.tgz=7743845bc5265df3782f85a23896cbb250d8a2bbc9934a27f274b001afa7aa62f7f00f616296f74747ea612d2cb37dd7f533c931aa72550d84c64d2a73d60daf rubygems-2.7.0.tgz=0bd08fbabcc33687c98365ffe6794ca2a5e82160b0297479d4f19bd899d176b7f4efb95248898b26d873f9fc7d86c10cada6e40cdc48738b0bac261c3aad261f rubygems-2.7.1.tgz=fa4ea123760b03b8b8e8ececc55c9dc34249073fb267d310bd903aa7a613267e5d27990bbf28e32c9a746bf884af8a84a0dc202297272f9d477f7710c21bfb60 rubygems-2.7.2.tgz=0f48c6e46663780a571c7ee0e6e772f2e18a755031e7dd8ede7870f238c214b9e3e38153b1ae8f1f78a9aad63c1a079b86573b3a25c57a600d842bdf92b9c4d1 rubygems-2.7.3.tgz=2782331b31947a23f85b285a3d5e7b66e34fe5847bc84dca4f1e6bfe33ce187ab0cbc814229de8111aa19490b656ca78b7c821e4ea6b425449991c01371b7565 rubygems-2.7.4.tgz=90f72a46709ef847666a6a23eecf24521abd5c294b2da8a246bb4c7f85daf4af39a0634fc8093c7bb7ded2ac137ea27fac5ed94af3b70c49e78594285c7a40ce rubygems-2.7.5.tgz=86957f1c438070135df527a15102e40487fcee93a55251463095e4c8794a8616d16ed9bdead0e0ef83c44806bd5016ecd9e178bef608b66af2e68e2c9c49e941 rubygems-2.7.6.tgz=bc168afc40c974dbc7c37eb5678432ba2ed7469c3f007a159699467ff2cff5205c508237193ee8becaa6eb555b043969cc5f92b2aaa6bf7c958dd7c187e258a7 rubygems-2.7.7.tgz=f93b7eacf5ef8725c40d618daf9deabc7e9eed74b3b7f13ecd16f89205fe24958e782314c52f8a8fe3205b93e20b830b4fbf7ff8944ff1cf56feb7de2d773252 rubygems-2.7.8.tgz=3d1cf68377dfcf102028342258aaff5a7257d2d2b34a80508c85aa258d810add46e65a157f902c271b0b7b568c437372d17246e89cd88f8500e47c008d17f1a6 rubygems-2.7.9.tgz=5f699f47bc24d8ffd4f8f44a509a9df71fcd945ca2574dc9d5050bfe06a44830a368f45d204112d7a4f1877e1600a6fe4d1b6b68f9a55288664667b4220a7d72 rubygems-2.7.10.tgz=48a18c0f202f463c38cf5dafecfbc7cc39245e63c7a059ef2cefadda478483794a929ea6b7e0ef062dd4423230746f1f09d7bec06a97fe3ceccc3325397a3e71 rubygems-3.0.0.tgz=047f4d446aae414e4803517088ef47d5cc66319ff08a3795c6d69e83eee9f3e7c3b05419858f7e5b6a8ec224990ca01178a9259961ef2d7ab737bac352a0f18d rubygems-3.0.1.tgz=dc29ad51ec67b1dca82a23973ea92153482788964d0755bdcd3c650116915c461c6e5fb1c826be3ee04a497fec4ac2826904bd406f24611e77cd8c9eaf4d8729 rubygems-3.0.2.tgz=90b46c2cd4f8baee74eb488a40691cc00e754cefc42029d485163d6ad7782df78ba5cbeab08eec6a4f71febe0f6e635e12a9381393008c58eb5e16396df93fbe rubygems-3.0.3.tgz=1dd585243341901c7b4cc60a4902000c10ce57fe2cc9c28e27e274a2e6029f936cde1c99d7097c93c2c5b2c8bcee5d692c8fe5cc00c996a040e4954b674e330e rubygems-3.0.4.tgz=887c64226ec0b32d33f2ea331936683406d54dc74d19e658a23521e25ab50aa23534fe9eecaf696154247ad1df1d24c233d8900b9aabc79096eebd6afef3f775 rubygems-3.0.5.tgz=f5a97cf67d7d043afba7c1aed014f1b64ff6376ea74d3d6533496bc5ca9742e0ccce1a157e6f67d8fcbe59d8e34bbfbcf4ed8be97acf2970603de6381043cb78 rubygems-3.0.6.tgz=1ef1822a2b19790a36a6d242b7d4584222617baa27787ec58961a9cfeb2733f19f9085490ffc72ee375d3153c7114e050c42e68fc8039e727fe5961b09365ee5 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=5dfb040b746e462c297ebcdf84e0f07cd74b86852055dcf0a7cf1814112099bc674bcccd94b03726aee76b253c9345a45d046cbfea230647644f0fd6b1c1ec96 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=17983c442c54d19196be3626e25c64f5474139c0b973624832ba8730efb047bc747c02e59c82f38397bf012c63ab83f79a9c1b64311cab796f08fe96d7d12a1a truffleruby-1.0.0-rc3-linux-amd64.tar.gz=b0b57082d61317911f101da617333d81ee6bede6b6e18f9bed86544dc413339c830198d90cad7ac94c0c8fb690adcfc559dd9f530abb70507ff6a76eee552b61 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=18f9782de56269389320ddad779ec69c168909198d4572e2ea4c18bc8082a539569a76760a6a6da58722fe08d77d83904aaba14baf4075a2833cbd2efc45dff3 truffleruby-1.0.0-rc5-linux-amd64.tar.gz=134d9ba5db7b8a1960d3a88390cd6f7503a0e8565094fb127333d122cd773bfbf9dc976c659029007e6fb68e93486293bac2ee29ab21dae9cb0c06ba57dd2c72 truffleruby-1.0.0-rc5-macos-amd64.tar.gz=5804f1f27916176f5a270de8aac85bc48c38ba37c4e719b09f5777e5c42429271819378cfe096c3cc33d406cd0726f2e37658020f97a438fd53751019831569a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=2597b375f590755b851d3b8cbad3eeab4c965eb02d0c944044f57e39f6c3db1e2f513e2aa55db789e4a885c697f81ce5c8bdbe9a7e44ee30fc09d234e44fb512 truffleruby-1.0.0-rc6-macos-amd64.tar.gz=2eb177190de0408dfdaf30264132955d1db7783ddfb63880d97d5933f66c5662794c3bb6198edf230fbff348674203e61f7f5481e74ac875974467f2f128e939 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=ab3a3dc19f903e68e36b135729693fa025a7c1950139277255e48c972387ef8399beceb3252ac37cc70c0df92838f8a0ba8c45f53665ac4286ef23f9b240806a truffleruby-1.0.0-rc7-macos-amd64.tar.gz=b8423f50a5292e211db7ebd7e2b987fd5c9eaaf34eba86b0644d2716a7f068f2e56deb4357c516b87b437e64fd5ce8515bc181165cc1042c6763f27d71baa59d truffleruby-1.0.0-rc8-linux-amd64.tar.gz=bcd05d304ee9b4da97193575fb1ad78041a0c7710bb444af6aef12ab4261b1873f472175ec51a187a5e99da481d66b81a132fb691643b793e87d655f31d54657 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=2c758221793c38ca8af1831a5d9f3abd555c406569508ac3a86d3c1ea5baeeacf65abb6e904ed3b1e58f555f51bc85ab171135ff4c3d0e08cdae994a861cbda4 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=42e60b69957f77a8623e0dccb7d215e800c27c622364fa76b9c574e8b1d3a4056a058b61ed91eac2375ecf4e51e482a6e17550aa2894a44d1db70687958033da truffleruby-1.0.0-rc9-macos-amd64.tar.gz=18556ee8d2fdec6907fbc8fc33d8b32ea0c58d40ee3df084ffb233e2fcd3a514a553f97c31dcc25dda3f86b1b805ca5fe3c9bf8cb078b92325515f09db6b88ba truffleruby-1.0.0-rc10-linux-amd64.tar.gz=10a7cb1be6214347469d5797091f73c3d7824bfb32a47c13566573a383380b1df9b79b7901ce0fa3af1c97285c90afac21e2de7a66ed88d9495846743b3b25e2 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=53f0939d9d8c3470cb79316d865b765816032528d77a3cf497134f3aa667a6253ae037410801261a8e7d0628198ac5f6aea5ecf9b7313f06ccc1d5e9f94e74ea truffleruby-1.0.0-rc11-linux-amd64.tar.gz=f89bc9a3310634d39f68006307da0b0ddafae036089bdd663e8372777a9562d201a4e69b2e1a602cff5fba6c78a8d4861b6d1020679bd0c72c71b938a4f36a27 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=3f461c12fa9fa57a55cc390eb9887df88f404661a77bffb44f82b4c7e9021513a6df9f6d5f332a36ce0c28ae7e3d5afbbe15cc4b814bc7f86dac2e5ec280f947 truffleruby-1.0.0-rc12-linux-amd64.tar.gz=85f042c308ccdfbeb318cec37056d8d970cab51cb0779425b85b8f76b0a1dd9cdec3191ae2b6b9b6be6e95767db814496450ed20076addd9bd495742f9de3c8c truffleruby-1.0.0-rc12-macos-amd64.tar.gz=067a0f63bbaaed4c8d4120f758c8ecf8c52afd1d30ea9d41489e26289d57a574d2d4ae29e29655378510adfb3f4a07b04b403d6ee98ee6b3d3aa8bff9c8d718f truffleruby-1.0.0-rc13-linux-amd64.tar.gz=1eb6b80cb05133d253f20629a11ed9ec3f37da002d5668cdc6577b2a20524e0cdd4d739d3f1aa2e8c518e2f7ebfd519ec1c647293714a1133ad4d569375c0e69 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=e3cddb0d0ae48f7d5ee4dd094ddb5a13f6a7aff1521b1adf25710971664b235cf67144e3b81525fd710dc49b6f6f6ba06e10eee1df5dc08119e9494c6be86934 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=c982194675b66a0433bd5517fc6f1564db669f595f8c7ba4819bf37e0599474d49a0c606577a898c27fa5ba40ab793c62d8211e7ea398d6b3e2bcc31eb5d55f4 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c14e396396385644333fb4c4aa1fb4b934a3f4e46312146821e5dcdaa097cb5b1efbf397c1dd6117d909803fd27ba8d835904672e98d43dc565e907fed752e1b truffleruby-1.0.0-rc15-linux-amd64.tar.gz=f27a75f929a6e945e49ceaad12f484fdaa918469a2f639b572fc4737b78e1cde0881697057e13a58b2fab7ac64c3a71bc9951561c3a8728e3dec814ef5e95fee truffleruby-1.0.0-rc15-macos-amd64.tar.gz=7aa029c4999d4608c9bcc491771b0434267032dbe9dbf504728079f87ce93e6a90e0fa839295b88c00e5a025186ed0fcc42361428b7874c05e222edb108d6c02 truffleruby-1.0.0-rc16-linux-amd64.tar.gz=e8c508dede11d4f54cf0b15cf92b50caad93076a6065bd2d6784c5ca739f5923ea2b894c6b2b52131f62187c8b305cd11a960fb5a670789802d59b6b2999f0af truffleruby-1.0.0-rc16-macos-amd64.tar.gz=841eff077c38bf594b101edb15942f601ba0dada2122b21b016f53251aa2a635b8d0b63b49bdfb50259b2545d1f498bca95d5f771a15a28edb0dd07216c9b709 truffleruby-19.0.0-linux-amd64.tar.gz=8ec6c7829351e0dc2cce57305947cd540734fe5a0b95b9501d4179993727ab2c331e9fb639b9865c0fed596df3906adf3dcf2efb22c4cfdd23a3dc2137025fd4 truffleruby-19.0.0-macos-amd64.tar.gz=912e0c15d32e40c884b2caaaf9a86a71450d441c960ef98a63dfce80353619073b146dcfe03d9af4273b2811d0899eebe922cc84a51d6f5e6826cc436d793f78 truffleruby-19.0.2-linux-amd64.tar.gz=eec92bfbd776acd61709a428b90b1029c5ea83e5ea839304d23cae3a541dd4fab3b387691fa76643f55d5939c9cac0cbe70dc0b5786e5e0e5d20f3fcd9a21356 truffleruby-19.0.2-macos-amd64.tar.gz=ce647b76c9931feac55baa5acd2c87d8335c606bc5cd7e462bd92ba1b09f4bab5db927f021e3119abfd85c33377003d060f36cf64eb121954fce8878112f01b5 truffleruby-19.1.0-linux-amd64.tar.gz=db01e6dc09fc5f39ca466aa94f725023d49a8f52343f129bf8c32b7f5f76ccf2d573ee3344fce3d5aff9983bc9af618cc5ca6e1dbba93b3f604e4f33f8a69b3f truffleruby-19.1.0-macos-amd64.tar.gz=f002bc0b6efca11eb97c4aa6df33d2e0fcc1de3443efd39d912b028df9dd8954cb76ef3ca7fbe140f4e922d6ae4c1a6a20853490ef1ea0749293e2fcd4ffe8fc truffleruby-19.1.1-linux-amd64.tar.gz=ec031e8c216e31f034d97aaccd6441869221d6946e18f375b44a866550b8e8eb4b2fb923f9ce1a62853bdcd5b9201e0f5d2732ca6525d80171d5732ef522bd25 truffleruby-19.1.1-macos-amd64.tar.gz=1c15918af939a8fe1779b71d9e53d2ce09ca7353173a3b357905d9fe1981ff013cf0f90c6b47e1ca66dd168c2f2d742f28a5fb134cc0231d36146da99f91c3cc truffleruby-19.2.0-linux-amd64.tar.gz=1248bdde9cd3651d7042fe4cecff4ad35534868d543fe2e6f3a5bfc3bc9d10d57b4139fc070f0a03861436a1aabc9a8ebdf3356f39b77a4b8f6a1dcf492f70a4 truffleruby-19.2.0-macos-amd64.tar.gz=92c3154ed229a115cf392826494745aae06dd9228dd0996c2c44c550552f13f9c254367d068452fa4a84eef79c19601c79b87e10f3121fd7b83b803514a41cfd truffleruby-19.2.0.1-linux-amd64.tar.gz=53c78cd1f255f2b7031a70a42b65c0bf80c510b9254f5d7ba82b4787f55f5b09cfa9544c424a90f4619a74179fed07c168bd501e34772ef836a773e89c467cc5 truffleruby-19.2.0.1-macos-amd64.tar.gz=ac11523cd49fac50de1e441039e429fb8cd6c7051d537e5083b64fa68eaa19c9f0a966b269da906c367985f229af82a4811282dbfd0a76ef6565162e1081a659 truffleruby-19.2.1-linux-amd64.tar.gz=c5ffc1b592a74e836a4f6ec75b0e103150a4a40d3183ae853ead38c951a85378163111cf0bd2b81e44548c0a7aeaded3ae8a7ae558d5a02dc9e2cce992b79b58 truffleruby-19.2.1-macos-amd64.tar.gz=bb467b91f66eb7d1e6f1a54a7bc0a3d9503bcbd935e8a02da9ea0b749a51e354b1140d4a4dad6fc05312b560bb9ccdcce4f6583bccd19bb5afee19bf494102fe truffleruby-19.3.0-linux-amd64.tar.gz=0e94777a3feabbf0107ed40847e20dd4e3696ff2b7c3f6ceddf3a53ccd812bd003c84c62a750e8fac9d2490374bf792d69174b48c3ed36b593485d86729136c1 truffleruby-19.3.0-macos-amd64.tar.gz=95470c389e24c865ecdc3d299005cd98f8221a128f3cd75f899b6b7ae5d6dc07962443ce0ff38dfd014589d5aaf08b718dc870a72eb7ea6ced18ec2b2db63095 truffleruby-19.3.0.2-linux-amd64.tar.gz=dc5309b71980657f750b4dd4f8b3bc4e191bc305b638b1e562ff5b0ad7fbba40079ba674caf46226a46b5ca58c10f812354786696264742f351b129fb088a672 truffleruby-19.3.0.2-macos-amd64.tar.gz=ff1c37485ebeff3edcc7081ce09bebe5541012dedff6997662c7f8a064e0ab10bef9a5cdf834263a06ae04ca0391743948bcdea6e6c9d7e1cfef9f21523c2bdb truffleruby-19.3.1-linux-amd64.tar.gz=c724547a9eacfdd135ce05eac9dcfe74e58a5e77c97f88103f83b8513c15c975a0ecf623f623a425ec81fad1b64d3b5e135660d6943608ad08048cda00eace79 truffleruby-19.3.1-macos-amd64.tar.gz=d746b2ad410c15d145d36c676a070ae454ba8e5ec6c594d5ebcf54b1fc719f98e8b8f71b6fd504c3d38df286bd11c5114f73b5ba39be312b11d42d4ca1a17d02 truffleruby-20.0.0-linux-amd64.tar.gz=4efea5ded5fcc6886befba3a3720fe1e5b2e376d46738565e8871a1ce0201a33ed52e78b8af2fb389618bdea99466d126d8537dd0919b0c13f8ff1940cb3e52e truffleruby-20.0.0-macos-amd64.tar.gz=b36488330514b77c7115689042cf2482a0beb9f72a0b05fb4c7a6ecb0835a3da47c3b15c41abd6ffced023e65ecf7eabcfbcc6e41901dcddd0fb3dfed46564c6 truffleruby-20.1.0-linux-amd64.tar.gz=116d57404540b85c15b321793a6f985624a2044af544e659b3607e50159703af5d445e22bff28ae2182dfa752f7500d420e250f6deccc98a2f01e89adba8ac3a truffleruby-20.1.0-macos-amd64.tar.gz=9b1267101dfe78b85c79f7528eb4de96b16933e66d5771efa6272372dac0fb35b199bb9d42773d61f4fa7a15d6cbd18b5753c148f7c3e477c7c4b21633f12b88 truffleruby-20.2.0-linux-amd64.tar.gz=a37eaf8475364b74d948979ac13dc6e6423bf11949ad1d0f2925f78a4495e80de9767001ccdb777c8cfd7f545839fad4d842522620c3acad179404bc4ce6752c truffleruby-20.2.0-macos-amd64.tar.gz=964c1e02cc53e1646060334a9911771e679a8344d811a0f77d5cae3529dfefff259c45505ac84b7debb958514cd5d2276ffd435802085494e0229dd140ce8f00 truffleruby-20.3.0-linux-amd64.tar.gz=ec2d8ff6a5d45fd7091e26430c67cbbdc0f8ffa41e9ac574d48802766fcd144e1f446db807700247ad6d8046b7ed070b5da70ef667e576d6fea60cc64ea5484f truffleruby-20.3.0-macos-amd64.tar.gz=1878f94e05a3c40484bf944a72412b179aa5415a16a7ebc1610cb512a1e1c4a2ce0e98685257ad6e5c14745245c35bb5b28205fb687292c4f17193cbfb3bb606 truffleruby-21.0.0-linux-amd64.tar.gz=b7d1b76cc015d136dbd74515431f4447730850475f81b00885b71b95819134db2656d941736048db42d519f03e1f2df066226513b77208adbdbbeda1f49cab11 truffleruby-21.0.0-macos-amd64.tar.gz=7677b827a9c1758d5f941c512cb0fe8daaa19c3db77b485d7dfa43940151d6b9094c4d9271e18ef5014630142dffb93d168c7ac631a3b5eef6fc61b2f9eecf88 truffleruby-21.1.0-linux-amd64.tar.gz=010e9fb78cab12486641780392be0f284da08dfd955f3a0d1ef72adb52e1c9024b54dc880173645aea2af680b3670a6bb01409198b757239edda4cd9bf2b1e90 truffleruby-21.1.0-macos-amd64.tar.gz=96ef8481faef1bfa7f01bb4d396818ef6f0943d19c6a23dedb68f8346740b72bf06efc707bdd29158cf991cc7073c97f429a07b02c2a48050512b46369850058 truffleruby-21.2.0-linux-amd64.tar.gz=c20af04909a852cb676c90403d852fb367d56eac0f9cf8ba42caa4cad1013ba393cc4611e434614ad132b7b0ed61160aadd887001b08de0767cf58f5e149efe7 truffleruby-21.2.0-macos-amd64.tar.gz=0b8d9633fde53aad78f0baf52858cd5a5716f53ff21698baab17da4a625b4369b88dbd664193e3f0d1b40e64c88699ab4f04bbe40f54189a588c93678962a7be truffleruby-21.2.0.1-linux-amd64.tar.gz=15ceeee383114f974aed5f16c99131d56947e13cfe248b97e55d61263ccd51aa56fc3e0df215196ef7f80ccba9e7f19e7f261d7a91d54bde2d9992caba682d82 truffleruby-21.2.0.1-macos-amd64.tar.gz=8a8762d90c19db4f48433ce0e3f3339e290685d79c6ee9bb7d4359c741edfa6a7360ff65124433d964730ac25b2cc6d8b581191b0a51479f11c2a80031a6c1c8 truffleruby-21.3.0-linux-amd64.tar.gz=b0c07b1ea797de92447a81b350d460c125a2efaff3c290637c4bcf1c216b5abd11148cfb143ad397062a96f36beade8234d0785c42f58fceac0011f629a5220b truffleruby-21.3.0-macos-amd64.tar.gz=42e607fa52a534123989ad232691ede65aa1c615f39320d93aa8ab9c21924eea7bc0aa49aef1a540ec972e2b3dc775d22a99eca3e0c9bc450c525f9020fbb975 truffleruby-22.0.0.2-linux-amd64.tar.gz=2231a0cfd27238c34ea0bbad27ba387453e48f39032607cbb829b347ea6ac804df15eb3f84d50b09248782d6202284498e7bc9aaa2060f0ce81bb83a84d700ad truffleruby-22.0.0.2-macos-amd64.tar.gz=1d7ac44f0862ad23cf17a7bba73d23dfd4727aadd9a3aa9633361e9bcd19655d163e160eae9c8db8ec9892f8fbf82d7a38b1cd689475bf41609a828208098623 truffleruby-22.1.0-linux-amd64.tar.gz=c4c2f9bf4236118c8ea62c08bad89e1034ecdfa0c4815693961c4d2b1b30ca043fe958abfec9cf36a8638aa2e005e71fcc244ebffd9ce11eb68cf48bd98c29d3 truffleruby-22.1.0-macos-amd64.tar.gz=507004ade838e614955e23331845839be656aaeae7869ed3d989c10e6491775a12313ac9ef03e14945f20f5e76d46ce6f7bb860af68a627c48065399cea3c567 truffleruby-22.2.0-linux-amd64.tar.gz=37c09249ef387df3e0614f646abb444cb5b7b2751538ab0432e703abe92a81b82e0d15f89d5ad7cd58afe5f30d9a92dc8471d19f1c1ce10b50478ac74f247739 truffleruby-22.2.0-linux-aarch64.tar.gz=49a7cfb4c81980d9c7a1588ef9f76a9bfb759d4b1925ab11f230d99c15a62e162a08249d23cf5646e2d38ecc2005e27103f2e5d92b83b0a182a4e64319b70c0d truffleruby-22.2.0-macos-amd64.tar.gz=d4c206fb0a5e63c5b7f61f2e62de854e4d0817075ef9ded237d98cd821c286e88d7b150d140d9907a957209f39be96c7025560e3908c89aa337925d2fba690af truffleruby-22.2.0-macos-aarch64.tar.gz=a01c18803777a74717ad699b6ee51eb759d881fb436d24338b557c52d4a693079d7b55f108394ccad0dd69c974cb895f4a36854355e84fecb67e41bf9eb18514 truffleruby-22.3.0-linux-amd64.tar.gz=d53472ae892dadc81c6fe63a597ccfb67e133958431b11716db4d920c78fc86f7496e4b10322d041c900bed77d27e02850da20aa95b297d63a9de2e72cdf3c76 truffleruby-22.3.0-linux-aarch64.tar.gz=dab63d49db4722f0c174ce8b882413102520ff649182946ba332ef5ba0fc6b58913595539a20b59e460faab2fba36f762dc8eb66aa729d4a6bb90feb2a95f053 truffleruby-22.3.0-macos-amd64.tar.gz=15c91d25fd6fb1d9f3f2a0b36676da5c8a76d62be86cff463ebe6c7e6aed2d9b6de9062021ab1b9b29cfb7a92b5682c860939acd71d12dba7e4a6bf3964fef3d truffleruby-22.3.0-macos-aarch64.tar.gz=7c44d0dd07e4ecd84a92f6dd574dc185906121b8eb75f6fe097b9d4738aa30751664d70e9027e072eeaa1dffa05fe7bcfc06be0c2dc950142f60664baf5eac69 truffleruby-22.3.1-linux-amd64.tar.gz=f41d3bd22500b7291121368169f8558df4563c840a01b70ff7feea3593f0152d8d77d4437af362bad62f25b79bce1ce8ddaa1bd8172a2a7ef8b61cdb6e478c9e truffleruby-22.3.1-linux-aarch64.tar.gz=1ca5221f0dc5ae3e0bd9545be474e115b2e62737701df95c6ee6cdaae5d82815acbe6af961ff23afee64dc26e655c7786d4347e3694c140773f065534322ee59 truffleruby-22.3.1-macos-amd64.tar.gz=bae16cc04c6018703833121f4258c3f18fa5062309d0600458be3c51c838bc63976a026db0f28d23005df9b640ccad0a9cafc56610a5ca9c24951c66b62097d9 truffleruby-22.3.1-macos-aarch64.tar.gz=b56e230d8fbc95d19364e695aaf1e552238b02ace7056f636808a7d7510777cddfde572ace5238ea1e314351bdd1a053ab3912d0889f51f55c722797c83eaaee truffleruby-23.0.0-preview1-linux-amd64.tar.gz=d538412f12d5ce743c351acbaa483b8b85dd2cf84fe06b3e90ca21f3c2fc0465df9c1773b3515fe4296d599f45e9cbb935dc5a69fe45668321e5639d58608ef4 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=f10b5ac749b11f93c2469f2c8a713ad090cb653761ae0a3e1ba4c19b0c96bd61c5e8da74d8944f9487c2d327d268a188f2cb56028d2beaca2a7816e63123600b truffleruby-23.0.0-preview1-macos-amd64.tar.gz=cd9db49c4253bd66cad6f9ae111c83d3befd0102a7ccb72a2407d22dc576ba7f3a26a90cd479f26dee3565d2f893a2b7c8b549e2351336f35d2632e57966657c truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=28b77d9943cd1617e0445633a9fea8911cfa975f5c581192439cd0944d2a17c2b0558e3e4112588b5fc77b57c48d857ad68ac51fcb867250625ad85406d87acc truffleruby-23.0.0-linux-amd64.tar.gz=da702de2e8c994f2646a3de5b44824210dbd37129cd2f91c3bdd990a1b0d0b05dee4443ad0f6cf98fdb4e489c9f4cde64f3561baf486dc642d4981a1a1812925 truffleruby-23.0.0-linux-aarch64.tar.gz=808254a154adcfd1bbd6e22bcdafebb6169c6f8cfd1c55382d446bb66002384ee844dcd8b5f642703ef440f7566645d190081f45e04a7d8d59bf87571cb4430a truffleruby-23.0.0-macos-amd64.tar.gz=f775d57e63c606eef424a1115408ed8539ef47d6bea0125ad1de7ee4fd5971e96747cb7f5d22d91d2f004edbd6ed6b9b5bd014127dc1abe7821a3a987a72d9dc truffleruby-23.0.0-macos-aarch64.tar.gz=000069854458f81d97eefe14123fbb69937942825e77d35602d55fa279123808177a34f252aec9dcfa48b93feacbee81ae0f0e7043c2d8a9ace2a4bb61ab253f truffleruby-23.1.0-linux-amd64.tar.gz=1868799d989c51798cf07b5243457af7ae2436dd19805fd634c98b2f1885266b5c3ec81dde668c2e5a290e9028f6f9fd223d153489df6ffcc74d45240aa020ad truffleruby-23.1.0-linux-aarch64.tar.gz=2766621877996ad35fddb94f978feed531307e8abf601dcf863754c96782b8149c3ac512dfe6dd2bdef0fe0e8a968bdd77608c41020434aaef4e7250c09edd74 truffleruby-23.1.0-macos-amd64.tar.gz=06c5a1d6ad644fd81737f0a1fd24c1529f712abe2a4485ad597aca7c35ca2af898121bb5883552cf518e2afdcb4221c8ad013759b46a69e34249e7c5ebe2b170 truffleruby-23.1.0-macos-aarch64.tar.gz=496cacc5cf413a48b60184e097a962ab5d2236c539f07cc0a9a2d9ef57dfc911a26b125cc3ad9408f6170c6f93c7562f35729c8313be0301972be21c10097942 truffleruby-23.1.1-linux-amd64.tar.gz=dbca85e281bf2484371a0bbcc202ca700acc704304d966b9202cf3835e82f6eb502e43522355f4c9e5a743877d93f5609006fbba2c5e6343a89de130e5209f6a truffleruby-23.1.1-linux-aarch64.tar.gz=6a58842d79247d8a64c513d68db9d53ea5640c02f71a1bc45f103baaaca67bb224939ae5f21ef55daa9d9b9697404052d39a3c382768ca366ab7892b8bf1abbe truffleruby-23.1.1-macos-amd64.tar.gz=7cc6bc957b7ffa42e9fbfe2f6e3014bf1e7996f2754e9e74377078c2c7bc7ac8e10598f1e1452839fc5b9583c823a2a735731ca193a6af2814a02566cc4cd9e4 truffleruby-23.1.1-macos-aarch64.tar.gz=a85b8189ef8a280f6a27d4c1c93893f844266dbdc15b8c4988cdf581613a353508fae4872ac9380efcc47f36357e137861521712c00ce8548041762a8987a9b2 truffleruby-23.1.2-linux-amd64.tar.gz=6307fd71fb1431fb12346d1f13dee4b3afe53947e8a9c1f3e3aa0baae5f9fc9e1496ede0a7d86b169d912ffef9625af998b4e698dc57a2a649140150e3fae28a truffleruby-23.1.2-linux-aarch64.tar.gz=0f0c5e4aa4e9fbc9b9f91d2b3d3fbfe26e78c5bc5b369fc78dd54775a7582b8c084a64f02848058bec79387fd80b09a5a5594ecfb268635fe76e1f9d957c2e92 truffleruby-23.1.2-macos-amd64.tar.gz=648401a73b29c28862a1fa077c2e1bf8fff65015c8bc690ff883a00a3dfd99389ffdb71f39ad85a4f16c531470f4cc891ae51ec927a426b0fa05fa85c9c6a2f9 truffleruby-23.1.2-macos-aarch64.tar.gz=4ec88684c09aacfa1d8bfed9a17243579ededacecd869e98e12841710bae29ed6e5f080611e53fc217a853f730bb2a9cb3d47ef15443eb8a1ad76a120118c8a5 truffleruby-24.0.0-linux-amd64.tar.gz=3a59a4dc58ad03549d8e63db1485767757715fc9aec21b2b67b1440b13871a04541abeff9bc8201b3088e1865360b1667459e536d3cfb09687dbffca95deafeb truffleruby-24.0.0-linux-aarch64.tar.gz=50f3993b7362bb6e7da80f7327df3d079bb02f98b67012e2135005d77e61648e4f3268f767d8ca245ec5889ff934fbcccb94fd5ecbd55bb0cd9cca900fe10509 truffleruby-24.0.0-macos-amd64.tar.gz=9ec8bb340b15e29550448e123e3ab0f183edb9bbe7e052743cb2306cbd1956a5789c5a367c80c5e8d913dce2b804448dd6815e4d3421515166daf8db51d37c7d truffleruby-24.0.0-macos-aarch64.tar.gz=499f83bf65dcb6ecc92414a3550673e6a0baaddfe3ab13c0bd7aa1bdde1ae2a61d9d0ca8001c0d12688d9e09f98f9e2946a651220fe7d200bb0ec6f285394701 truffleruby-24.0.1-linux-amd64.tar.gz=62b4e8508eba8cdaac70e99ac9cb0b33a663b4195d79b2dad3d771ef538c6c41d1d91bb7bb07fbbafbcbbcaf17814ffaf6d6bdbafd474ba6a8ecdac30315a8c9 truffleruby-24.0.1-linux-aarch64.tar.gz=817d877848ea4bb55658ce34bbda52926be12426a8a5e1c4588bc0ec1896018b06dce176336b382f80a7c6d073d4331b20694a7797ee8fdf0177e973053bf929 truffleruby-24.0.1-macos-amd64.tar.gz=2ea65bea154aa38cce3f00f24fc9a4aab5e7478fafd070d0cc966878371c070d5a1776b7405e2c9e4cfa14e5c51219ed0fa988294eb4708690983b348886f439 truffleruby-24.0.1-macos-aarch64.tar.gz=bc1923e21768d34779c1bcd7850456a01ddc01acd1ccf20f4fb4a446fb847f8c51b1ff4a7c0cdc317ef8ce057ac24f18f25b778a02a6e2b185e0055d946ecaf2 truffleruby-24.0.2-linux-amd64.tar.gz=5d111beb862b618c4e6a7f8aea1d3d6476740513efdd59bf980a2b6d525a017f46fe02017b075962a4919a001b60bd9a070e69fedfa8a85533c0adbad2a8d86b truffleruby-24.0.2-linux-aarch64.tar.gz=8e3ba19df4e5509c4719bc3bb621f70ca6a0e683d48a296703649b88abd83a165e8a64ad2d7dc45394b6de0b214a95a395fa449f5393dd9e67deab9e149cf494 truffleruby-24.0.2-macos-amd64.tar.gz=06d3b5533c4e26aa1356e602c672efad99208aaee96110904216e16dcfb1d99a7535c3ef275f9a14635dd2f05110798b3c75d71199f6010f23c92c6990492cef truffleruby-24.0.2-macos-aarch64.tar.gz=ba36d3f1680112e6623b14a4bb902a5f65f11e9827f44462161b1c79ee344ca340566289aa1f841c1e213daef5608c159343cc203d07f41c2a55eaeb25db0987 truffleruby-24.1.0-linux-amd64.tar.gz=9a93fd61086fabcb6c4f3a0fcb16e81f42b0203a24a04209fe446eb5f88d78e2ac59ab54d42cc30ef5417199a88b452973eecdfafc57c7877e11edf0a3d42b13 truffleruby-24.1.0-linux-aarch64.tar.gz=ca23edf279ee9b4693630df9596c6e269bb544e06bfd02620447f51108d9e9b4dc8b3ecbcc7a8ba1280560c0eb4b59474e75acead81799e4c51365acb5676d24 truffleruby-24.1.0-macos-amd64.tar.gz=65b661b3bf497bbb090a2cb49607aa00c3e5bfe95eb19c7736d798715d55fe07ddb4e8d8c25c1ec4b7b304b37205c7de9d8ac2d56005c9fc43e4dc81ae699c9b truffleruby-24.1.0-macos-aarch64.tar.gz=ab665d995bd63839c0bf6ed1171875cce7974d49ed79953a05ecdcf13d815c0a5cd471f40839f3f51a1b3128b40a4ed34d9b89e4c3f343b38c78276aed667956 truffleruby-24.1.1-linux-amd64.tar.gz=78e4e8bd910e4b3b41e927f6158cf8cfc74da5187969727d5c5303416310c5b7f72fde239993ecd5ab51724785cd80b2bb9a422a0475320fca57ad40b26d2786 truffleruby-24.1.1-linux-aarch64.tar.gz=c4e3aa72433622f96216b053862beb65861ab20ab28cfc50f51452720173f0a836ee69335281c4c89c6289ffa6f42517b9487d1b6fe16926aecfd9180d6f8195 truffleruby-24.1.1-macos-amd64.tar.gz=099d1abaa8677ecfd298e974fbb37e21bff2ad45313090cecf9a2799b79b74223ca4f95fb873cb7148bb2754ea3f923cfb553dd1dbdf6f1c088a3793bd991871 truffleruby-24.1.1-macos-aarch64.tar.gz=8980a71fc423c454ceaa16b46ba085a0164bf22e3e2040e960623148f09fea4c467b304774afc2ea37d9e072905eab3ad65b3c4acdc7b01ba238e24829cc16d2
rvm/rvm
58ee4a444157f46c14f8f8293523550828f9f48d
Add support for Ruby 3.4.0, 3.4.1 (#5533)
diff --git a/CHANGELOG.md b/CHANGELOG.md index eea86a0..d502d46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,587 +1,588 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Use OpenSSL 3 for Ruby 3.2 and 3.3 [\#5480](https://github.com/rvm/rvm/pull/5480) * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) * Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) * Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) * Install `libncurses-dev` instead of `libncurses5-dev` on newer Debian and Ubuntu versions [\#5477](https://github.com/rvm/rvm/pull/5477) * Use `zlib-ng-compat` packages for Fedora 40+ [\#5479](https://github.com/rvm/rvm/pull/5479) * Detect core count on ARM-based machines [\#5498](https://github.com/rvm/rvm/pull/5498) * Fix requirement check for Ubuntu [\#5500](https://github.com/rvm/rvm/pull/5500) * Update location of homebrew install script on osx [\#5505](https://github.com/rvm/rvm/pull/5505) * Fix detection of Homebrew's write permissions when using Workbrew [\#5528](https://github.com/rvm/rvm/pull/5528) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) * 3.3.3 [\#5474](https://github.com/rvm/rvm/pull/5474) * 3.3.4 [\#5488](https://github.com/rvm/rvm/pull/5488) * 3.2.5 [\#5490](https://github.com/rvm/rvm/pull/5490) * 3.3.5 [\#5499](https://github.com/rvm/rvm/pull/5499) * 3.2.6, 3.3.6 [\#5513](https://github.com/rvm/rvm/pull/5513) +* 3.4.0, 3.4.1 [\#5533](https://github.com/rvm/rvm/pull/5533) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) * 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1, 24.0.2, 24.1.0, 24.1.1 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.3.15.0 [\#5482](https://github.com/rvm/rvm/pull/5482) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) * 9.4.8.0 [\#5484](https://github.com/rvm/rvm/pull/5484) * 9.4.9.0 [\#5512](https://github.com/rvm/rvm/pull/5512) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) * 3.1.6, 3.2.5, 3.3.2, 3.3.3 and 3.3.4 [\#5491](https://github.com/rvm/rvm/pull/5491) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 24.04 (Noble Numbat) x64 binaries * 3.2.6 and 3.3.6 [\#5529](https://github.com/rvm/rvm/pull/5529) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) #### Upgraded Ruby interpreters: * Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159), 2.5.0-preview1 [\#4204](https://github.com/rvm/rvm/pull/4204), 2.2.9, 2.3.6, 2.4.3 and 2.5.0-rc1 [\#4261](https://github.com/rvm/rvm/pull/4261), 2.5.0 [\#4265](https://github.com/rvm/rvm/pull/4265), 2.6.0-preview1 [\#4317](https://github.com/rvm/rvm/pull/4317), 2.2.10, 2.3.7, 2.4.4, 2.5.1 [\#4340](https://github.com/rvm/rvm/pull/4340) and 2.6.0-preview2[\#4395](https://github.com/rvm/rvm/pull/4395) * Add support for Rubinius 3.85-3.100 * Add support for JRuby 9.1.14.0 [\#4224](https://github.com/rvm/rvm/pull/4224), 9.1.15.0 [\#4258](https://github.com/rvm/rvm/pull/4258), 9.1.16.0 [\#4316](https://github.com/rvm/rvm/pull/4316), 9.1.17.0 [\#4366](https://github.com/rvm/rvm/pull/4366), 9.2.0.0 [\#4390](https://github.com/rvm/rvm/pull/4390) * Add support for mruby 1.4.0 [\#4286](https://github.com/rvm/rvm/pull/4286) * Add support for MagLev 1.1* and 1.2Alpha-1.2Alpha4 [\#4289](https://github.com/rvm/rvm/pull/4289) * Add support for RubyGems 2.6.14 [\#4205](https://github.com/rvm/rvm/pull/4205), 2.7.0-2.7.4 [\#4276](https://github.com/rvm/rvm/issues/4276) and 2.7.5-6 #### Binaries: * Ubuntu 16.04 x64 binaries for Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4362](https://github.com/rvm/rvm/issues/4362), 2.2.9, 2.3.6 and 2.4.3 [\#4259](https://github.com/rvm/rvm/issues/4259), 2.2.8, 2.3.5 and 2.4.2 [\#4161](https://github.com/rvm/rvm/issues/4161), 2.5.0 [\#4272](https://github.com/rvm/rvm/pull/4272) * Ubuntu 17.04 for Ruby 2.1.\*, 2.2.\* [\#4233](https://github.com/rvm/rvm/pull/4233) ## [1.29.3](https://github.com/rvm/rvm/releases/tag/1.29.3) 10 September 2017 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.2...1.29.3) #### New features: * Add RVM commands missing in bash shell completion [\#4078](https://github.com/rvm/rvm/pull/4078) * Railsexpress patches for 2.3.4, 2.3-head [\#4084](https://github.com/rvm/rvm/pull/4084), 2.2.5 and 2.2.6 [\#4153](https://github.com/rvm/rvm/pull/4153) * Update `gem-wrappers` to 1.3.0: Show warnings when the target binary is missing or is not executable [gem-wrappers \#9](https://github.com/rvm/gem-wrappers/issues/9) * Detect Zorin OS as Ubuntu [\#4140](https://github.com/rvm/rvm/issues/4140) #### Bug fixes: * Infinite loop in `gemset_create` [\#4102](https://github.com/rvm/rvm/issues/4102) * Command not found `__rvm_remote_version` error [\#4085](https://github.com/rvm/rvm/pull/4085) * Fix path of version script in `environment` [\#4117](https://github.com/rvm/rvm/pull/4117) * Define `cd()`, `pushd()` and `popd()` properly when using zsh [\#4132](https://github.com/rvm/rvm/pull/4132) * Update gem-wrappers to 1.3.1: Avoid warnings for missing ruby binaries [\#4104](https://github.com/rvm/rvm/issues/4104) * Handles :engine=> and :engine_version=> in Gemfile * Makes $rvm_ruby_string is not installed searchable by adding a fixed keyword * Correctly quotes suggested install command * Fix path to version script in rvm-installer [\#4134](https://github.com/rvm/rvm/pull/4134) * Fix rvm autolibs status, fix [\#4123](https://github.com/rvm/rvm/issues/4123) * Ruby 2.3.x and older are not compatible with OpenSSL 1.1.x on Arch [\#4006](https://github.com/rvm/rvm/issues/4006) * Allow comments after ruby directive in Gemfile [\#4056](https://github.com/rvm/rvm/issues/4056) * Ruby 2.3/4 compilation fix for GCC 7 [\#4080](https://github.com/rvm/rvm/issues/4080) [\#4115](https://github.com/rvm/rvm/issues/4115) * Add warning for sudo users [\#4009](https://github.com/rvm/rvm/issues/4009) * Allows running RVM shell function in Bash with `set -o nounset` [\#4013](https://github.com/rvm/rvm/issues/4013) * Ensure `rvm_hooks_path` is set [\#3902](https://github.com/rvm/rvm/issues/3902) * Allow building static ruby with `--disbale-shared` [\#4091](https://github.com/rvm/rvm/issues/4091) * Restore detection of `gpg` command for veryfication of signatures [\#4059](https://github.com/rvm/rvm/issues/4059) diff --git a/config/db b/config/db index 25546e0..2847e7e 100644 --- a/config/db +++ b/config/db @@ -1,154 +1,154 @@ # General default_ruby=ruby interpreter=ruby niceness=0 # # RVM # rvm_remote_server_path1=maven2/org/jruby/jruby-dist rvm_remote_server_url1=https://repo1.maven.org rvm_remote_server_url2=https://rubies.travis-ci.org rvm_remote_server_url=https://rvm-io.global.ssl.fastly.net/binaries # # RubyGems # gem_gem-empty_version=>=1.1.2 gem_gem-wrappers_version=>=1.4.0 gem_rdoc_version=>=4.1.1 gem_rvm_version=>=1.11.3.9 rubygems_repo_url=https://github.com/rubygems/rubygems.git rubygems_url=https://rubygems.org/rubygems rubygems_url_fallback_1=https://github.com/rubygems/rubygems/archive/v\1.tar.gz rubygems_url_fallback_1_pattern=https://rubygems.org/rubygems/rubygems-([[:digit:]\.]+).tgz rubygems_version=latest-3.0 # # Packages # autoconf_url=https://ftp.gnu.org/gnu/autoconf curl_url=https://github.com/bagder/curl/archive gettext_url=https://ftp.gnu.org/pub/gnu/gettext glib_url=http://ftp.gnome.org/pub/gnome/sources/glib/2.23 libiconv_url=https://ftp.gnu.org/pub/gnu/libiconv libxml2_url=ftp://xmlsoft.org/libxml2 libxslt_url=ftp://xmlsoft.org/libxslt llvm_url=https://llvm.org/svn/llvm-project/llvm/trunk mono_url=http://ftp.novell.com/pub/mono/sources/mono ncurses_url=https://ftp.gnu.org/pub/gnu/ncurses openssl_url=https://www.openssl.org/source/old/1.0.1 openssl_version=1.0.1i pkg-config_url=http://pkgconfig.freedesktop.org/releases readline_url=https://ftp.gnu.org/gnu/readline yaml_url=http://pyyaml.org/download/libyaml yaml_version=0.1.6 zlib_url=https://prdownloads.sourceforge.net/libpng # # CentOS / Fedora EPEL # epel5_i386_rpm=https://dl.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm epel5_key=https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-5 epel5_x86_64_rpm=https://dl.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm epel6_i386_rpm=https://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm epel6_key=https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-6 epel6_x86_64_rpm=https://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm epel7_key=https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-7 epel7_x86_64_rpm=https://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-8.noarch.rpm # # MRI Ruby # CentOS_5_ruby_1.8.7_patch_level=p374 CentOS_5_ruby_1.8.7_patch_level_warn=Warning, Centos 5 can not build head version of ruby, falling back to latest patchlevel, your ruby will be less secure because of this. CentOS_5_ruby_1.9.2_patch_level=p320 CentOS_5_ruby_1.9.2_patch_level_warn=Warning, Centos 5 can not build head version of ruby, falling back to latest patchlevel, your ruby will be less secure because of this. ruby_1.8.4_rubygems_version=1.3.5 ruby_1.8.5_patch_level=p231 ruby_1.8.5_rubygems_version=1.3.5 ruby_1.8.6_patch_level=p420 ruby_1.8.6_rubygems_version=1.3.7 ruby_1.8.7_patch_level=head ruby_1.8.7_rubygems_version=latest-2.0 ruby_1.9.1_patch_level=p431 ruby_1.9.1_rubygems_version=latest-1.8 ruby_1.9.2_patch_level=p330 ruby_1.9.3_patch_level=p551 ruby_2.0.0_patch_level=p648 ruby_head_rubygems_version=ignore ruby_repo_url=https://github.com/ruby/ruby.git ruby_unmaintained_date=2017-04-01 ruby_unmaintained_version=2.1.0 ruby_url=https://cache.ruby-lang.org/pub/ruby ruby_url_fallback_1=https://ftp.ruby-lang.org/pub/ruby -ruby_version=3.3.6 +ruby_version=3.4.1 # # REE # ree_1.8.6_patch_level=20090610 ree_1.8.6_repo_url=https://github.com/FooBarWidget/rubyenterpriseedition.git ree_1.8.6_rubygems_version=1.3.7 ree_1.8.6_url=http://rubyforge.org/frs/download.php/58677 ree_1.8.7_2010.02_url=https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/rubyenterpriseedition/ruby-enterprise-1.8.7-2012.02.tar.gz ree_1.8.7_patch_level=2012.02 ree_1.8.7_repo_url=https://github.com/FooBarWidget/rubyenterpriseedition187-330 ree_1.8.7_rubygems_version=latest-2.0 ree_1.8.7_url=https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/rubyenterpriseedition ree_configure_flags=--dont-install-useful-gems ree_version=1.8.7 # # Rubinius # rbx_1.0.0_patch_level=20100514 rbx_1.0.1_patch_level=20100603 rbx_1.1.0_patch_level=20100923 rbx_1.1.1_patch_level=20101116 rbx_1.2.0_patch_level=20101221 rbx_1.2.1_patch_level=20110215 rbx_1.2.2_patch_level=20110222 rbx_1.2.3_patch_level=20110315 rbx_1.2.4_patch_level=20110705 rbx_repo_url=https://github.com/rubinius/rubinius.git rbx_url=https://s3.amazonaws.com/asset.rubini.us rbx_url_2.0_and_newer=https://rubinius-releases-rubinius-com.s3.amazonaws.com rbx_version=4.1 # # MRuby # mruby_repo_url=https://github.com/mruby/mruby.git mruby_url=https://github.com/mruby/mruby/archive mruby_version=2.0.1 # # JRuby # jruby_repo_url=https://github.com/jruby/jruby.git jruby_url=https://repo1.maven.org/maven2/org/jruby/jruby-dist jruby_version=9.4.9.0 maven_version=3.5.0 # # TruffleRuby # truffleruby_url=https://github.com/oracle/truffleruby/releases/download truffleruby_version=24.1.1 # # MacRuby # macruby_0.10_url=http://macruby.macosforge.org/files macruby_nightly_url=http://macruby.jp/files/nightlies macruby_repo_url=https://github.com/MacRuby/MacRuby.git macruby_url=https://github.com/downloads/MacRuby/MacRuby macruby_version=0.12 # # Maglev # maglev_repo_url=https://github.com/MagLev/maglev.git maglev_url=http://seaside.gemtalksystems.com/maglev maglev_version=1.2Alpha4 # # IronRuby # ironruby_1.1.3_url=https://download-codeplex.sec.s-msft.com/Download/Release?ProjectName=ironruby&DownloadId=217153&FileTime=129445296766130000&Build=19727 ironruby_repo_url=https://github.com/ironruby/ironruby.git ironruby_version=1.1.3 # # Topaz # topaz_repo_url=https://github.com/topazproject/topaz.git topaz_url=https://d3sgc2zfsedosj.cloudfront.net topaz_version=head diff --git a/config/known b/config/known index 0fffbf6..6ced786 100644 --- a/config/known +++ b/config/known @@ -1,81 +1,81 @@ # MRI Rubies [ruby-]1.8.6[-p420] [ruby-]1.8.7[-head] # security released on head [ruby-]1.9.1[-p431] [ruby-]1.9.2[-p330] [ruby-]1.9.3[-p551] [ruby-]2.0.0[-p648] [ruby-]2.1[.10] [ruby-]2.2[.10] [ruby-]2.3[.8] [ruby-]2.4[.10] [ruby-]2.5[.9] [ruby-]2.6[.10] [ruby-]2.7[.8] [ruby-]3.0[.7] [ruby-]3.1[.5] [ruby-]3.2[.6] [ruby-]3[.3.6] -[ruby-]3.4[.0-preview1] +[ruby-]3.4[.1] ruby-head # for forks use: rvm install ruby-head-<name> --url https://github.com/github/ruby.git --branch 2.2 # JRuby jruby-1.6[.8] jruby-1.7[.27] jruby-9.1[.17.0] jruby-9.2[.21.0] jruby-9.3[.15.0] jruby[-9.4.9.0] jruby-head # Rubinius rbx-1[.4.3] rbx-2.3[.0] rbx-2.4[.1] rbx-2[.5.8] rbx-3[.107] rbx-4[.20] rbx-5[.0] rbx-head # TruffleRuby truffleruby[-24.1.1] # Opal opal # Minimalistic ruby implementation - ISO 30170:2012 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1[.4.1] mruby-2.0.1 mruby-2[.1.1] mruby[-head] # Ruby Enterprise Edition ree-1.8.6 ree[-1.8.7][-2012.02] # Topaz topaz # MagLev maglev-1.0.0 maglev-1.1[RC1] maglev[-1.2Alpha4] maglev-head # Mac OS X Snow Leopard Or Newer macruby-0.10 macruby-0.11 macruby[-0.12] macruby-nightly macruby-head # IronRuby ironruby[-1.1.3] ironruby-head diff --git a/config/known_strings b/config/known_strings index 78cbbd5..ed91469 100644 --- a/config/known_strings +++ b/config/known_strings @@ -12,560 +12,562 @@ jruby-1.0 jruby-1.0.1 jruby-1.0.2 jruby-1.0.3 jruby-1.1b1 jruby-1.1RC1 jruby-1.1RC2 jruby-1.1RC3 jruby-1.1 jruby-1.1.1 jruby-1.1.2 jruby-1.1.3 jruby-1.1.4 jruby-1.1.5 jruby-1.1.6RC1 jruby-1.1.6 jruby-1.2.0RC1 jruby-1.2.0RC2 jruby-1.2.0 jruby-1.3.0RC1 jruby-1.3.0RC2 jruby-1.3.0 jruby-1.3.1 jruby-1.4.0RC1 jruby-1.4.0RC2 jruby-1.4.0RC3 jruby-1.4.0 jruby-1.4.1 jruby-1.5.0.RC1 jruby-1.5.0.RC2 jruby-1.5.0.RC3 jruby-1.5.0 jruby-1.5.1 jruby-1.5.2 jruby-1.5.3 jruby-1.5.4 jruby-1.5.5 jruby-1.5.6 jruby-1.6.0.RC1 jruby-1.6.0.RC2 jruby-1.6.0.RC3 jruby-1.6.0 jruby-1.6.1 jruby-1.6.2 jruby-1.6.3 jruby-1.6.4 jruby-1.6.5 jruby-1.6.5.1 jruby-1.6.7 jruby-1.6.7.2 jruby-1.6.8 jruby-1.7.0.preview1 jruby-1.7.0.preview2 jruby-1.7.0.RC1 jruby-1.7.0.RC2 jruby-1.7.0 jruby-1.7.1 jruby-1.7.2 jruby-1.7.3 jruby-1.7.4 jruby-1.7.5 jruby-1.7.6 jruby-1.7.7 jruby-1.7.8 jruby-1.7.9 jruby-1.7.10 jruby-1.7.11 jruby-1.7.12 jruby-1.7.13 jruby-1.7.14 jruby-1.7.15 jruby-1.7.16 jruby-1.7.16.1 jruby-1.7.16.2 jruby-1.7.17 jruby-1.7.18 jruby-1.7.19 jruby-1.7.20 jruby-1.7.20.1 jruby-1.7.21 jruby-1.7.22 jruby-1.7.23 jruby-1.7.24 jruby-1.7.25 jruby-1.7.26 jruby-1.7.27 jruby-9.0.0.0.pre1 jruby-9.0.0.0.pre2 jruby-9.0.0.0.rc1 jruby-9.0.0.0.rc2 jruby-9.0.0.0 jruby-9.0.1.0 jruby-9.0.2.0 jruby-9.0.3.0 jruby-9.0.4.0 jruby-9.0.5.0 jruby-9.1.0.0 jruby-9.1.1.0 jruby-9.1.2.0 jruby-9.1.3.0 jruby-9.1.4.0 jruby-9.1.5.0 jruby-9.1.6.0 jruby-9.1.7.0 jruby-9.1.8.0 jruby-9.1.9.0 jruby-9.1.10.0 jruby-9.1.11.0 jruby-9.1.12.0 jruby-9.1.13.0 jruby-9.1.14.0 jruby-9.1.15.0 jruby-9.1.16.0 jruby-9.1.17.0 jruby-9.2.0.0 jruby-9.2.1.0 jruby-9.2.2.0 jruby-9.2.3.0 jruby-9.2.4.0 jruby-9.2.4.1 jruby-9.2.5.0 jruby-9.2.6.0 jruby-9.2.7.0 jruby-9.2.8.0 jruby-9.2.9.0 jruby-9.2.10.0 jruby-9.2.11.0 jruby-9.2.11.1 jruby-9.2.12.0 jruby-9.2.13.0 jruby-9.2.14.0 jruby-9.2.15.0 jruby-9.2.16.0 jruby-9.2.17.0 jruby-9.2.18.0 jruby-9.2.19.0 jruby-9.2.20.0 jruby-9.2.20.1 jruby-9.2.21.0 jruby-9.3.0.0 jruby-9.3.1.0 jruby-9.3.2.0 jruby-9.3.3.0 jruby-9.3.4.0 jruby-9.3.6.0 jruby-9.3.7.0 jruby-9.3.8.0 jruby-9.3.9.0 jruby-9.3.10.0 jruby-9.3.11.0 jruby-9.3.13.0 jruby-9.3.14.0 jruby-9.3.15.0 jruby-9.4.0.0 jruby-9.4.1.0 jruby-9.4.2.0 jruby-9.4.3.0 jruby-9.4.4.0 jruby-9.4.5.0 jruby-9.4.6.0 jruby-9.4.7.0 jruby-9.4.8.0 jruby-9.4.9.0 macruby-0.12 maglev-1.0.0 maglev-1.1beta maglev-1.1beta2 maglev-1.1RC1 maglev-1.2Alpha maglev-1.2Alpha2 maglev-1.2Alpha3 maglev-1.2Alpha4 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1.4.0 mruby-1.4.1 mruby-2.0.0 mruby-2.0.1 mruby-2.1.0-rc mruby-2.1.0 mruby-2.1.1-rc mruby-2.1.1-rc2 mruby-2.1.1 rbx-1.0.0-20100514 rbx-1.0.1-20100603 rbx-1.1.0-20100923 rbx-1.1.1-20101116 rbx-1.2.0-20101221 rbx-1.2.1-20110215 rbx-1.2.2-20110222 rbx-1.2.3-20110315 rbx-1.2.4-20110705 rbx-1.3.2 rbx-1.3.3 rbx-1.4.1 rbx-1.4.3 rbx-2.0.0 rbx-2.1.0 rbx-2.1.1 rbx-2.2.0 rbx-2.2.2 rbx-2.2.3 rbx-2.2.4 rbx-2.2.5 rbx-2.2.6 rbx-2.2.7 rbx-2.2.8 rbx-2.2.9 rbx-2.2.10 rbx-2.3.0 rbx-2.4.0 rbx-2.4.1 rbx-2.5.0 rbx-2.5.1 rbx-2.5.2 rbx-2.5.3 rbx-2.5.4 rbx-2.5.5 rbx-2.5.6 rbx-2.5.7 rbx-2.5.8 rbx-3.70 rbx-3.71 rbx-3.72 rbx-3.73 rbx-3.74 rbx-3.75 rbx-3.76 rbx-3.77 rbx-3.78 rbx-3.79 rbx-3.80 rbx-3.81 rbx-3.82 rbx-3.83 rbx-3.84 rbx-3.85 rbx-3.86 rbx-3.87 rbx-3.88 rbx-3.89 rbx-3.90 rbx-3.91 rbx-3.92 rbx-3.93 rbx-3.94 rbx-3.95 rbx-3.96 rbx-3.97 rbx-3.98 rbx-3.99 rbx-3.100 rbx-3.101 rbx-3.102 rbx-3.103 rbx-3.104 rbx-3.105 rbx-3.106 rbx-3.107 rbx-4.0 rbx-4.1 rbx-4.2 rbx-4.3 rbx-4.4 rbx-4.5 rbx-4.6 rbx-4.7 rbx-4.8 rbx-4.9 rbx-4.10 rbx-4.11 rbx-4.12 rbx-4.13 rbx-4.14 rbx-4.15 rbx-4.16 rbx-4.17 rbx-4.18 rbx-4.19 rbx-4.20 rbx-5.0 ree-1.8.6-20080507 ree-1.8.6-20080621 ree-1.8.6-20080623 ree-1.8.6-20080624 ree-1.8.6-20080709 ree-1.8.6-20080810 ree-1.8.6-20081205 ree-1.8.6-20081215 ree-1.8.6-20090113 ree-1.8.6-20090201 ree-1.8.6-20090421 ree-1.8.6-20090520 ree-1.8.6-20090610 ree-1.8.6-20090928 ree-1.8.7-2009.10 ree-1.8.7-2010.01 ree-1.8.7-2010.02 ree-1.8.7-2011.01 ree-1.8.7-2011.02 ree-1.8.7-2011.03 ree-1.8.7-2011.12 ree-1.8.7-2012.02 ruby-1.8.5-p115 ruby-1.8.5-p231 ruby-1.8.6-p286 ruby-1.8.6-p287 ruby-1.8.6-p369 ruby-1.8.6-p383 ruby-1.8.6-p398 ruby-1.8.6-p399 ruby-1.8.6-p420 ruby-1.8.7-p160 ruby-1.8.7-p174 ruby-1.8.7-p248 ruby-1.8.7-p249 ruby-1.8.7-p299 ruby-1.8.7-p302 ruby-1.8.7-p330 ruby-1.8.7-p334 ruby-1.8.7-p352 ruby-1.8.7-p357 ruby-1.8.7-p358 ruby-1.8.7-p370 ruby-1.8.7-p371 ruby-1.8.7-p374 ruby-1.9.0 ruby-1.9.1-p129 ruby-1.9.1-p243 ruby-1.9.1-p376 ruby-1.9.1-p378 ruby-1.9.1-p429 ruby-1.9.1-p431 ruby-1.9.2-p0 ruby-1.9.2-p136 ruby-1.9.2-p180 ruby-1.9.2-p290 ruby-1.9.2-p318 ruby-1.9.2-p320 ruby-1.9.2-p330 ruby-1.9.3-preview1 ruby-1.9.3-rc1 ruby-1.9.3-p0 ruby-1.9.3-p125 ruby-1.9.3-p194 ruby-1.9.3-p286 ruby-1.9.3-p327 ruby-1.9.3-p362 ruby-1.9.3-p374 ruby-1.9.3-p385 ruby-1.9.3-p392 ruby-1.9.3-p429 ruby-1.9.3-p448 ruby-1.9.3-p484 ruby-1.9.3-p545 ruby-1.9.3-p547 ruby-1.9.3-p550 ruby-1.9.3-p551 ruby-2.0.0-preview1 ruby-2.0.0-preview2 ruby-2.0.0-rc1 ruby-2.0.0-rc2 ruby-2.0.0-p0 ruby-2.0.0-p195 ruby-2.0.0-p247 ruby-2.0.0-p353 ruby-2.0.0-p451 ruby-2.0.0-p481 ruby-2.0.0-p576 ruby-2.0.0-p594 ruby-2.0.0-p598 ruby-2.0.0-p643 ruby-2.0.0-p645 ruby-2.0.0-p647 ruby-2.0.0-p648 ruby-2.1.0-preview1 ruby-2.1.0-preview2 ruby-2.1.0-rc1 ruby-2.1.0 ruby-2.1.1 ruby-2.1.2 ruby-2.1.3 ruby-2.1.4 ruby-2.1.5 ruby-2.1.6 ruby-2.1.7 ruby-2.1.8 ruby-2.1.9 ruby-2.1.10 ruby-2.2.0-preview1 ruby-2.2.0-preview2 ruby-2.2.0-rc1 ruby-2.2.0 ruby-2.2.1 ruby-2.2.2 ruby-2.2.3 ruby-2.2.4 ruby-2.2.5 ruby-2.2.6 ruby-2.2.7 ruby-2.2.8 ruby-2.2.9 ruby-2.2.10 ruby-2.3.0-preview1 ruby-2.3.0-preview2 ruby-2.3.0 ruby-2.3.1 ruby-2.3.2 ruby-2.3.3 ruby-2.3.4 ruby-2.3.5 ruby-2.3.6 ruby-2.3.7 ruby-2.3.8 ruby-2.4.0-preview1 ruby-2.4.0-preview2 ruby-2.4.0-preview3 ruby-2.4.0-rc1 ruby-2.4.0 ruby-2.4.1 ruby-2.4.2 ruby-2.4.3 ruby-2.4.4 ruby-2.4.5 ruby-2.4.6 ruby-2.4.7 ruby-2.4.8 ruby-2.4.9 ruby-2.4.10 ruby-2.5.0-preview1 ruby-2.5.0-rc1 ruby-2.5.0 ruby-2.5.1 ruby-2.5.2 ruby-2.5.3 ruby-2.5.4 ruby-2.5.5 ruby-2.5.6 ruby-2.5.7 ruby-2.5.8 ruby-2.5.9 ruby-2.6.0-preview1 ruby-2.6.0-preview2 ruby-2.6.0-preview3 ruby-2.6.0-rc1 ruby-2.6.0-rc2 ruby-2.6.0 ruby-2.6.1 ruby-2.6.2 ruby-2.6.3 ruby-2.6.4 ruby-2.6.5 ruby-2.6.6 ruby-2.6.7 ruby-2.6.8 ruby-2.6.9 ruby-2.6.10 ruby-2.7.0-preview1 ruby-2.7.0-preview2 ruby-2.7.0-preview3 ruby-2.7.0-rc1 ruby-2.7.0-rc2 ruby-2.7.0 ruby-2.7.1 ruby-2.7.2 ruby-2.7.3 ruby-2.7.4 ruby-2.7.5 ruby-2.7.6 ruby-2.7.7 ruby-2.7.8 ruby-3.0.0-preview1 ruby-3.0.0-preview2 ruby-3.0.0-rc1 ruby-3.0.0 ruby-3.0.1 ruby-3.0.2 ruby-3.0.3 ruby-3.0.4 ruby-3.0.5 ruby-3.0.6 ruby-3.0.7 ruby-3.1.0-preview1 ruby-3.1.0 ruby-3.1.1 ruby-3.1.2 ruby-3.1.3 ruby-3.1.4 ruby-3.1.5 ruby-3.2.0-preview1 ruby-3.2.0-preview2 ruby-3.2.0-preview3 ruby-3.2.0-rc1 ruby-3.2.0 ruby-3.2.1 ruby-3.2.2 ruby-3.2.3 ruby-3.2.4 ruby-3.2.5 ruby-3.2.6 ruby-3.3.0-preview1 ruby-3.3.0-preview2 ruby-3.3.0-preview3 ruby-3.3.0 ruby-3.3.1 ruby-3.3.2 ruby-3.3.3 ruby-3.3.4 ruby-3.3.5 ruby-3.3.6 ruby-3.4.0-preview1 +ruby-3.4.0 +ruby-3.4.1 truffleruby-1.0.0-rc2 truffleruby-1.0.0-rc3 truffleruby-1.0.0-rc5 truffleruby-1.0.0-rc6 truffleruby-1.0.0-rc7 truffleruby-1.0.0-rc8 truffleruby-1.0.0-rc9 truffleruby-1.0.0-rc10 truffleruby-1.0.0-rc11 truffleruby-1.0.0-rc12 truffleruby-1.0.0-rc13 truffleruby-1.0.0-rc14 truffleruby-1.0.0-rc15 truffleruby-1.0.0-rc16 truffleruby-19.0.0 truffleruby-19.0.2 truffleruby-19.1.0 truffleruby-19.1.1 truffleruby-19.2.0 truffleruby-19.2.0.1 truffleruby-19.2.1 truffleruby-19.3.0 truffleruby-19.3.0.2 truffleruby-19.3.1 truffleruby-20.0.0 truffleruby-20.1.0 truffleruby-20.2.0 truffleruby-20.3.0 truffleruby-21.0.0 truffleruby-21.1.0 truffleruby-21.2.0 truffleruby-21.2.0.1 truffleruby-21.3.0 truffleruby-22.0.0.2 truffleruby-22.1.0 truffleruby-22.2.0 truffleruby-22.3.0 truffleruby-22.3.1 truffleruby-23.0.0-preview1 truffleruby-23.0.0 truffleruby-23.1.0 truffleruby-23.1.1 truffleruby-23.1.2 truffleruby-24.0.0 truffleruby-24.0.1 truffleruby-24.0.2 truffleruby-24.1.0 truffleruby-24.1.1 diff --git a/config/md5 b/config/md5 index eb34c34..3846457 100644 --- a/config/md5 +++ b/config/md5 @@ -1287,767 +1287,769 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=873b63cc2e4abbb6ec5126ab07ce429a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=84658482a83ee3a4c80d145d0bd7ccb8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=d3af42a4fd701e0710d5f6a16e6bb9a3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c5f56b0149ab787d89c69056eb45e483 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=13f1011cc048aef7199ae8f14bc2ac62 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=fba1bf0b819f52561deab198fd36743d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=3ec8f383026889e2f3c328d86839a7b2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=9c3775365cab8e1e82aa19e87b9711dd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=cce17e87cc9bfcb6b995e5f1996c423c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=b80a93441133b85258d97085aeead20a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=74c45b08a2dc28871ff158b608cc8685 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=469b22a4b12f23e86ac25b3d797ff559 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=ea7767cbfacd744813ccaedd1b4e0013 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=0d9f69db1bd665c9e5c9592b483b31a1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=068f5c90b5b381cd58d8804ca2b3be64 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=6181192273efab4aabaa8628fc83c7be https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=fa690cb7132706fb25dfc625e949e96a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=c443f32cd4c91fb37ff79bd86906e1bc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=6fa3edab1bbacf7328074a7fba22be50 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=a950bc4af16446fce2f9266e95629bdb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=d9bce275c2f36dbde8a6c25f9fa10c2e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=6486c5ce9ec697039b0bb36d2bf18a0d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=79f0927984b8e6e7934b34bdb2a3e5e5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=214ac1e49a75291a68c63134bc246a8a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=94a39d1b226350362666f6305866b20b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=4db7d99d775a7f24bb55c6053d4eb864 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=c0db831a97b8427e0777adeaebf7a9d8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=830b4845fbfd45df75758e311a013ffc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=3fc39c824b2060a3a2766ca01037dd15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=0b395f3884c78c6938896ff253c5251b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=2be294a056a45a50262d1796906f8860 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=0270733b808489a91e41f73d9fe971e9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=33db4a687e4943faf6c2853179b67935 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=dea6663b2c113190e9b99a6dcedb3aa0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=835e563bfbe3c8311326660a51f3394c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=66e3c1e1140300c8236c13e3178cb8ab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=07b12bd2a7d8242c34d824882e654c22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=fe12c0e211f90076b51c7916c830971f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=65ab3105b0c6d5e8a2e9977a3ab7ed94 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=08547ad8e760e0776c74401ae5bbd8e5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=631b4ea065d18df96c6ccbc141904bb3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=03a67e234d886f3c698c1571e42cc7a6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=0ded0cb8ce18a846d71d7e04d24c2e78 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=5251aed0ba4d8349413d6bf4c261bea3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=f09694c4f23d7625f72606bce0efb710 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=340db3acb58829b51e4a7ac1c77246d4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1bd86cb46a9e6c40c285258879a3d59 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=d86b2a1e9721b9459e1283006e03fa92 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.2.6.tar.bz2=7d7e84912bb4d1f9915bb391fac54694 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.3.6.tar.bz2=3148fa25b5cd308156c567181ccf5ac3 ironruby-1.0.zip=7a92888837b3507355ed391dbfc0ab83 ironruby-1.1.3.zip=4f2af6253a459cc054d6c55956e514a9 jruby-bin-1.3.1.tar.gz=4a95db8fc93ed7219663fbede98b6117 jruby-bin-1.4.tar.gz=54dba9a88b2b3f99ac86a79828d0178b jruby-bin-1.4.0.tar.gz=f37322c18e9134e91e064aebb4baa4c7 jruby-bin-1.4.0.zip=3a9c8a5115a679da7d7a49a56d57d4c0 jruby-bin-1.4.1.tar.gz=a4aa8c43d1b9ffd9dbc6cb738d55a034 jruby-bin-1.5.0.tar.gz=ee2b4e326e8b87858e5dd0c8e94102e6 jruby-bin-1.5.1.tar.gz=74251383e08e8c339cacc35a7900d3af jruby-bin-1.5.2.tar.gz=d239deb9a108a6abbfbd6cb79cf8255b jruby-bin-1.5.3.tar.gz=ccb0b2dbc300d8dd4ad1bd4da48b8320 jruby-bin-1.5.5.tar.gz=8e00f7d40cbf221f733d6f7a15784e9a jruby-bin-1.5.6.tar.gz=94033a36517645b7a7ec781a3507c654 jruby-bin-1.6.0.tar.gz=f4d7e339dfc0fbaef5b878d1c0a66fbe jruby-bin-1.6.2.tar.gz=a46f978c24a208717023bb4b8995c678 jruby-bin-1.6.3.tar.gz=694b80e4eea784cdc1eb39fb1e3132c9 jruby-bin-1.6.4.tar.gz=0e96b6f4d1c6f12b5ac480cd7ab7da78 jruby-bin-1.6.5.tar.gz=54354082673bd115f945890dc6864413 jruby-bin-1.6.5.1.tar.gz=246a7aa2b7d7e6e9e8a0c2e282cbcfd0 jruby-bin-1.6.7.tar.gz=fd1b8d7389aa92da69ea6efb4782e40a jruby-bin-1.6.7.2.tar.gz=1e520f1b5130114464e5f1950cb24774 jruby-bin-1.6.8.tar.gz=a76ac5845640e4a1ebdfa74421efc935 jruby-bin-1.7.0.preview1.tar.gz=7b9e5e1cd0d818d0199086d948f948b4 jruby-bin-1.7.0.preview2.tar.gz=e8f1623759590aadbf49e4cc53f1cb61 jruby-bin-1.7.0.RC1.tar.gz=bdddcee3d126cddd9a85b5a066a7e25e jruby-bin-1.7.0.RC2.tar.gz=ffe2dd61711f4574fed344af151e5de5 jruby-bin-1.7.0.tar.gz=21861e0ecdbf48cda713c8ade82fdddb jruby-bin-1.7.1.tar.gz=86e659863541d8b987cb7bfbe3b4cfb0 jruby-bin-1.7.2.tar.gz=6ec9293b6dffd1e8ee57e9b7c6d18cbe jruby-bin-1.7.3.tar.gz=f0adf8ccee6f6777f7ab8e5e1d7a1f47 jruby-bin-1.7.4.tar.gz=c6a56eae78db28dddba911ccd0848c32 jruby-bin-1.7.5.tar.gz=c2a28c43c8095127d4a4aee0cf9b1439 jruby-bin-1.7.6.tar.gz=5d10011516a3d3bde10209b60cfcc0ef jruby-bin-1.7.7.tar.gz=9d6df2188fa57f12bf6fde4e4b2e3f09 jruby-bin-1.7.8.tar.gz=1e68f39d6dba7b6d9db81e24bb6b7d0a jruby-bin-1.7.9.tar.gz=b2e44f1f44837c07068ee453a89f4b55 jruby-bin-1.7.10.tar.gz=c84fe9245a73f9cd29f56343b7d2e39a jruby-bin-1.7.11.tar.gz=d6e6ab72426fa7fdc9ae55950980d877 jruby-bin-1.7.12.tar.gz=2073aa6dfc7c701ef7c3d3143d181582 jruby-bin-1.7.14.tar.gz=bc33284f27a3508a70d2ade100a2f6bd jruby-bin-1.7.15.tar.gz=92e63cffcb86842511aeeed95bdf96ed jruby-bin-1.7.16.tar.gz=92cb058d1a896257b5ac1c26dc433506 jruby-bin-1.7.16.1.tar.gz=eec2f0e03560bacf02a09c0096a99cad jruby-bin-1.7.16.2.tar.gz=cd31909b67239c5c6a795521fca5c239 jruby-bin-1.7.17.tar.gz=8b78ba1acdb718431f71c38287c07967 jruby-bin-1.7.18.tar.gz=aa7286140be0f6f60534ebffededc708 jruby-bin-1.7.19.tar.gz=bc38596757d8000d6ca4c4c3f8eacea6 jruby-bin-1.7.20.tar.gz=0c2adc160cb85c888b269e8ac4f886fc jruby-bin-1.7.21.tar.gz=bc91594072032023d146f330764d3274 jruby-bin-1.7.22.tar.gz=1da904bf41d362d0d0b366d9e781168f jruby-bin-1.7.23.tar.gz=41e3f45c28c94a275f9eeb22721da35d jruby-bin-1.7.25.tar.gz=fc43ead73f657f5261428923974fd605 jruby-bin-1.7.26.tar.gz=4ca60264a9560f37fdba8108543e72c2 jruby-bin-1.7.27.tar.gz=b98b0a2c52e885a868a2b60092e1cd3d jruby-bin-9.0.0.0.pre1.tar.gz=d5c8b30648348aa883f893d464d46bf1 jruby-bin-9.0.0.0.pre2.tar.gz=86994a9d7ed2cf318c75392623a3e6da jruby-bin-9.0.0.0.tar.gz=fe9036ea69bf23dc3b69cfc94adb5404 jruby-bin-9.0.1.0.tar.gz=a82bc640e0080b1d9a21d1477c8400e3 jruby-bin-9.0.3.0.tar.gz=828dd6c6dd18e5b186ccfd65753077bd jruby-bin-9.0.4.0.tar.gz=645bf4a1dcde3f19dc0fff75c8b4b685 jruby-bin-9.0.5.0.tar.gz=1d2dc649cbacbe26418ef3ba421018b1 jruby-bin-9.1.0.0.tar.gz=fe26e6308d006d35eb613cdd47d1dc99 jruby-bin-9.1.1.0.tar.gz=8356334270df07a214590d00a986837b jruby-bin-9.1.2.0.tar.gz=749bb917dde9666e365e12bbe776a5c2 jruby-bin-9.1.3.0.tar.gz=91c246cd623702032e88283565da5480 jruby-bin-9.1.4.0.tar.gz=5b80b78c09bf0cd4dcbcb9e1fe3e8b73 jruby-bin-9.1.5.0.tar.gz=e9b2cc44757db4cfbe7da79601d0169a jruby-bin-9.1.6.0.tar.gz=4092a89b01b55d1fb5498113f97ab0ca jruby-bin-9.1.7.0.tar.gz=b120c3eaeef7ff2aed3a57701e414e78 jruby-bin-9.1.8.0.tar.gz=0fdee002c56ec91dff1efffce205265c jruby-bin-9.1.9.0.tar.gz=170efc34297d7ac2a56bb1163e96b363 jruby-bin-9.1.10.0.tar.gz=b75e0d1a200e8f790d8bbc84f91e3002 jruby-bin-9.1.11.0.tar.gz=0502a14141da25a460ce197720bab4c3 jruby-bin-9.1.12.0.tar.gz=74bd7ae08c159fc62cb6f64845a868cc jruby-bin-9.1.13.0.tar.gz=6c642c8a2653a585779f453d8c843fd7 jruby-bin-9.1.14.0.tar.gz=a7e0ecd529690025d327c45744f60fa4 jruby-bin-9.1.15.0.tar.gz=01c29690324d7eb414fba66e4c009c9e jruby-bin-9.1.16.0.tar.gz=e64c3aa1310c272194fd1750b0b79fac jruby-bin-9.1.17.0.tar.gz=f28d1fcbb60e550f3abd839102ad0069 jruby-bin-9.2.0.0.tar.gz=bd476da4bed39ffcfff7116f448a5365 jruby-bin-9.2.1.0.tar.gz=4b78b0a40ca541556f5ee75a815e0be0 jruby-bin-9.2.2.0.tar.gz=be678559801be029fe233c33396e34d2 jruby-bin-9.2.3.0.tar.gz=79328ab1ed37d612da35271183e46bbd jruby-bin-9.2.4.0.tar.gz=f538f2be459f0f0e517a53446e78a354 jruby-bin-9.2.4.1.tar.gz=d373bbc2bd6caabfcc9914c4067e9d24 jruby-bin-9.2.5.0.tar.gz=14582fd6eee19610f0a7433ce5dd5ce4 jruby-bin-9.2.6.0.tar.gz=dba182ac9943b726b609ca61747c1835 jruby-bin-9.2.7.0.tar.gz=c0111b2cafa920df76284044e1aeedc7 jruby-bin-9.2.8.0.tar.gz=7d652b586a18f1c665289fd7e6edf4f5 jruby-bin-9.2.9.0.tar.gz=74b3451f79c13c2fc66c6dee69d46699 jruby-bin-9.2.10.0.tar.gz=e6ce97eae6e35b622c1b572f9297705b jruby-bin-9.2.11.0.tar.gz=22b003adfb03b253721cc85db248698f jruby-bin-9.2.11.1.tar.gz=687586132f7b649b1bdd7b823577c9d8 jruby-bin-9.2.12.0.tar.gz=cc7599837fbd0839cce7293577a34f2c jruby-bin-9.2.13.0.tar.gz=99df4eb89f88c7582bfe7c313daec7b4 jruby-bin-9.2.14.0.tar.gz=421c5b8146701177a738a0a691190018 jruby-bin-9.2.15.0.tar.gz=ba593f1de2c4e592a8ca9b9e903af457 jruby-bin-9.2.16.0.tar.gz=d8d954ee0ab6f4868c3fc63339660af9 jruby-bin-9.2.17.0.tar.gz=382fb3d9d2982efd5396f1a42e3fa6a1 jruby-bin-9.2.18.0.tar.gz=002ac95859a2176cb0a58d81d6e0fb14 jruby-bin-9.2.19.0.tar.gz=0961867a77838853f32ee72dbde7c00e jruby-bin-9.2.20.0.tar.gz=840876dd0ca0098452dd2667fe9dd7f4 jruby-bin-9.2.20.1.tar.gz=5856ed030f0d9e75d2384cf42f62a4de jruby-bin-9.2.21.0.tar.gz=9957c1d2bd9265144fe55f9f7093272a jruby-bin-9.3.0.0.tar.gz=501a3c975b3c9478b72d4b0cd37170b9 jruby-bin-9.3.1.0.tar.gz=201d3e483bf847f5c59f4b1f3bf594d5 jruby-bin-9.3.2.0.tar.gz=259c276f68a01495dda24407394a382d jruby-bin-9.3.3.0.tar.gz=cd49b81753048cee9c8ffdd2ce1cb3e2 jruby-bin-9.3.4.0.tar.gz=7292dd9a56155aa015ec08c03855b3fc jruby-bin-9.3.6.0.tar.gz=bc5a7b02be69fdf3f5584e8880fc7dcc jruby-bin-9.3.7.0.tar.gz=49b17b5cd7cf8bfb09d8f64147d992ef jruby-bin-9.3.8.0.tar.gz=6ea209b699a06944d0653d8048d8bfec jruby-bin-9.3.9.0.tar.gz=9a0f0a931346bc6ea34196a5c88002ec jruby-bin-9.3.10.0.tar.gz=83c9d776dfc8cf33bfa60f7e78077160 jruby-bin-9.3.11.0.tar.gz=6ccc04e658c49db19fc0c452db0f2931 jruby-bin-9.3.13.0.tar.gz=3f20268b494da900504e921507248183 jruby-bin-9.3.14.0.tar.gz=87a96fd3af448ec8fd5ca45c6469ecc9 jruby-bin-9.3.15.0.tar.gz=385fabe180b68fb8cd3743b315109e5f jruby-bin-9.4.0.0.tar.gz=d0136daa4910f6e6b21858260eb00fe2 jruby-bin-9.4.1.0.tar.gz=abe2669672ac973f1b41a4d3860eb7ae jruby-bin-9.4.2.0.tar.gz=486e50f3c74e7400e71631819fde91da jruby-bin-9.4.3.0.tar.gz=526006fefb3e5ffc5095ab5599cc38c6 jruby-bin-9.4.4.0.tar.gz=287b5c3a9b63ff93e49ae9dc0347263b jruby-bin-9.4.5.0.tar.gz=09c6fceb38d6c086af2e4d5f21f9fe65 jruby-bin-9.4.6.0.tar.gz=5e2fe4ed897d938332ee0d85d2aa60bc jruby-bin-9.4.7.0.tar.gz=a0633ca837efff62edca84ceae1f5515 jruby-bin-9.4.8.0.tar.gz=9f520a3a416b598b4e53916e7180b623 jruby-bin-9.4.9.0.tar.gz=b7a789e9ff1b87d0e8c7bda7fae31c16 libiconv-1.13.1.tar.gz=7ab33ebd26687c744a37264a330bbe9a MacRuby%200.5.zip=675454a8c7bc19d606d90a726e08427c MacRuby%200.6.zip=a80afd3700c88cf95c539fc63b272faf MacRuby%200.7.1.zip=e8245dcd03c0757dfae7e6fee913947a MacRuby%200.7.zip=0bb60588c9ec9b1517665743bb05132f MacRuby%200.8.zip=735ac0a70f539e00b5de6fbec09c2c5c MacRuby%200.9.zip=fa01345e8fbfee620bbac64743a45f69 MacRuby%200.10.zip=1662d13d2f73cfc26258598f6988dcbc MacRuby%200.11.zip=b0cc23d60484a07012bcad549cef6054 MacRuby%200.12.zip=e1c5fa1b007a1cdc38c527a47302bf5e MagLev-1.0.0.tar.gz=e02cb8ee04438451eb78df14f91a68a9 MagLev-1.1beta.tar.gz=d542c7af290ce3b588b57629906b19e9 MagLev-1.1beta2.tar.gz=0ef88d5d145611aef324cb51be0aaafd MagLev-1.1RC1.tar.gz=41f4a0994daf1e5271cbd0ebe57816f4 MagLev-1.2Alpha.tar.gz=5c7dd3acef9dbddc0829bb1daa087abb MagLev-1.2Alpha2.tar.gz=cbbeae109854a6bf107a747a93fd478b MagLev-1.2Alpha3.tar.gz=b7470518f2b697eb1a5a39eff9b6d749 MagLev-1.2Alpha4.tar.gz=d54f04a611ce838b9d7009627065b7ca mruby-1.0.0.tar.gz=d9aec6a20fc1add65ee07ff6cf0e1ef2 mruby-1.1.0.tar.gz=60d75ea704c9285f3c80b3ad1d2b68de mruby-1.2.0.tar.gz=b5a3b7962d9db8cb8fb8105aa914d16c mruby-1.3.0.tar.gz=9714dd2804064d0043e099b7211d72b9 mruby-1.4.0.tar.gz=25efc35511070454074b36863c4d5b5e mruby-1.4.1.tar.gz=b40bf09af3f4c6e2bc443b9ac803a3ad mruby-2.0.0.tar.gz=b86c6a1dd86cb4ebe51e3fe38964a830 mruby-2.0.1.tar.gz=15b426a8a94a610c45414578786d05e3 mruby-2.1.0-rc.tar.gz=58a85fcb102d72900a25190da670e01d mruby-2.1.0.tar.gz=c01a4bbf62e6f5765c70b8813e0ce7da mruby-2.1.1-rc.tar.gz=809edd80e680855e7c4cf3c569972f28 mruby-2.1.1-rc2.tar.gz=24879fa5eb587f9415f03f8f3701842e mruby-2.1.1.tar.gz=c0ee4a112695046b9e4f177e31096d6c ncurses.tar.gz=cce05daf61a64501ef6cd8da1f727ec6 openssl-0.9.8k.tar.gz=e555c6d58d276aec7fdc53363e338ab3 openssl-0.9.8n.tar.gz=076d8efc3ed93646bd01f04e23c07066 openssl-1.0.1c.tar.gz=ae412727c8c15b67880aef7bd2999b2e openssl-1.0.1i.tar.gz=c8dc151a671b9b92ff3e4c118b174972 pkg-config-0.23.tar.gz=d922a88782b64441d06547632fd85744 readline-5.2.tar.gz=e39331f32ad14009b9ff49cc10c5e751 readline-6.0.tar.gz=b7f65a48add447693be6e86f04a63019 readline-6.2.tar.gz=67948acb2ca081f23359d0256e9a271c release-2.0.0-rc1.zip=b05b5e3c2712a294e4b09ebf450c1bfe rubinius-1.0.0-20100514.tar.gz=b05f4e791d3712c5a50b3d210dac6eb0 rubinius-1.0.1-20100603.tar.gz=eb185703c7ae0c0210e8dcb7f783ee8e rubinius-1.1.0-20100923.tar.gz=e2ae16238b201de09975abe19da09ea9 rubinius-1.1.1-20101116.tar.gz=b39f618eeba37c3aff215da8bca55fd7 rubinius-1.2.0-20101221.tar.gz=4284c2660f1f648942de35d4fc871f70 rubinius-1.2.1-20110215.tar.gz=e4a5127480062fddddc7ce2860b3b813 rubinius-1.2.2-20110222.tar.gz=59124378fb7ee040e9ee4e4736d89fc0 rubinius-1.2.3-20110315.tar.gz=9782dab18c2dd440af6b76e8eb5bc0f0 rubinius-1.2.4-20110705.tar.gz=403c777d19b3553e9cb36701fe002c5e rubinius-1.3.2.tar.bz2=64801ad8dd4e5e4fcb74ff313fec0a69 rubinius-1.3.3.tar.bz2=79f1f860ed8242257bd7f3e88c81a197 rubinius-1.4.1.tar.bz2=76b840405d4b9303261c27cf15002386 rubinius-2.0.0.tar.bz2=62e379e044c822b81e7b20a27daf133e rubinius-2.1.0.tar.bz2=908053f38fd840c75a93aab7487c20a5 rubinius-2.1.1.tar.bz2=6b4df0caec5ea88373e113f97a3b4c72 rubinius-2.2.0.tar.bz2=f1fbc6f3baf1da5ad86b3858f30f3349 rubinius-2.2.2.tar.bz2=ac70d629ea43525d91e81f4ccf135299 rubinius-2.2.3.tar.bz2=d9978cf1a4e8f0310db63e49834f9837 rubinius-2.2.4.tar.bz2=c10699da85a8eb5861a37b29077213bd rubinius-2.2.5.tar.bz2=5996dc8529b2ffe5921c5e7020bee20e rubinius-2.2.6.tar.bz2=85339bb6dd525eee719edf0551868f56 rubinius-2.2.7.tar.bz2=de2e6f4c3bd9a90bcb89f2ea27ddee9e rubinius-2.2.8.tar.bz2=c4db1ffb8dbdf864240cabe8b7758b49 rubinius-2.2.9.tar.bz2=0bf87ba617fa989e47d20942410028af rubinius-2.2.10.tar.bz2=8680da7eb921e6f595a1d716915ca7e0 rubinius-2.3.0.tar.bz2=e003a30af6689c8198116b3405d09d8e rubinius-2.4.0.tar.bz2=62391a51f49820daa51463066c3ce007 rubinius-2.4.1.tar.bz2=7758721b6e848387c3943ddb9ebd9479 rubinius-2.5.0.tar.bz2=178baa1ad172df0801765ea93bc36d87 rubinius-2.5.1.tar.bz2=77e1b87dc357691ad44b561a5f45c188 rubinius-2.5.2.tar.bz2=e5973d6e0a16f0390dc2a7478db83ff5 rubinius-2.5.3.tar.bz2=b19709eb3fa9e05b3fa6a357b33e3b5b rubinius-2.5.4.tar.bz2=64587916e5d445ed9bc630017a04498e rubinius-2.5.5.tar.bz2=ef671bbab50cbe2f70f953c491311261 rubinius-2.5.6.tar.bz2=597e4b049f49966c646faf699856c1b9 rubinius-2.5.7.tar.bz2=9a7f404019bce9fc34a7af7feb7cbb74 rubinius-2.5.8.tar.bz2=a24520892cada1f660e719a25abf63e3 ruby-1.8.5-p115.tar.bz2=03955e3c367b9beb3efe144c9f00d689 ruby-1.8.5-p115.tar.gz=20ca6cc87eb077296806412feaac0356 ruby-1.8.5-p231.tar.bz2=327f5aa6573787432222e96195cffd1e ruby-1.8.5-p231.tar.gz=e900cf225d55414bffe878f00a85807c ruby-1.8.6-p286.tar.bz2=e6b6bf8f34370e433936adb7a7065e63 ruby-1.8.6-p286.tar.gz=797ea136fe43e4286c9362ee4516674e ruby-1.8.6-p287.tar.bz2=80b5f3db12531d36e6c81fac6d05dda9 ruby-1.8.6-p287.tar.gz=6ff3420094711266c3201a0c7c2faa38 ruby-1.8.6-p369.tar.bz2=c3c1f3dd0dfbd2e17a04e59c2f12cfc8 ruby-1.8.6-p369.tar.gz=8c140ae28b4c3947b92dfad69109d90b ruby-1.8.6-p383.tar.bz2=a48703cd982b9f0e3002700a50b0e88e ruby-1.8.6-p383.tar.gz=4f49544d4a4d0d34e9d86c41e853db2e ruby-1.8.6-p398.tar.bz2=fbd43dc44ee26be4d37e6bebbed6f8bd ruby-1.8.6-p398.tar.gz=736db5f56c2d9b0136e563d049249fa8 ruby-1.8.6-p399.tar.bz2=f77c307cb72fb8808b0e85af5d05cefc ruby-1.8.6-p399.tar.gz=c3d16cdd3c1ee8f3b7d1c399d4884e33 ruby-1.8.6-p420.tar.bz2=1c7a978e9ffd4f56dc2ad74bbd2c34f3 ruby-1.8.6-p420.tar.gz=ca1eee44f842e93b5098bc5a2bb9a40b ruby-1.8.7-p160.tar.bz2=f8ddb886b8a81cf005f53e9a9541091d ruby-1.8.7-p160.tar.gz=945398f97e2de6dd8ab6df68d10bb1a1 ruby-1.8.7-p174.tar.bz2=88c45aaf627b4404e5e4273cb03ba2ee ruby-1.8.7-p174.tar.gz=18dcdfef761a745ac7da45b61776afa5 ruby-1.8.7-p248.tar.bz2=37e19d46b7d4b845f57d3389084b94a6 ruby-1.8.7-p248.tar.gz=60a65374689ac8b90be54ca9c61c48e3 ruby-1.8.7-p249.tar.bz2=37200cc956a16996bbfd25bb4068f242 ruby-1.8.7-p249.tar.gz=d7db7763cffad279952eb7e9bbfc221c ruby-1.8.7-p299.tar.bz2=244439a87d75ab24170a9c2b451ce351 ruby-1.8.7-p299.tar.gz=43533980ee0ea57381040d4135cf9677 ruby-1.8.7-p302.tar.bz2=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p302.tar.gz=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p330.tar.bz2=2689719fb42c8cf0aa336f8c8933f413 ruby-1.8.7-p330.tar.gz=50a49edb787211598d08e756e733e42e ruby-1.8.7-p334.tar.bz2=2f14f604bf981bb938ab5fc8b09eb1a6 ruby-1.8.7-p334.tar.gz=aacb6ee5dfe2367682bba56af7f415b8 ruby-1.8.7-p352.tar.bz2=0c61ea41d1b1183b219b9afe97f18f52 ruby-1.8.7-p352.tar.gz=0c33f663a10a540ea65677bb755e57a7 ruby-1.8.7-p357.tar.bz2=3abd9e2a29f756a0d30c7bfca578cdeb ruby-1.8.7-p357.tar.gz=b2b8248ff5097cfd629f5b9768d1df82 ruby-1.8.7-p358.tar.bz2=de35f00997f4ccee3e22dff0f2d01b8a ruby-1.8.7-p370.tar.bz2=1e4c3194537dd8ff92e756993e55a29d ruby-1.8.7-p371.tar.bz2=c27526b298659a186bdb5107fcec2341 ruby-1.8.7-p371.tar.gz=653f07bb45f03d0bf3910491288764df ruby-1.8.7-p374.tar.bz2=83c92e2b57ea08f31187060098b2200b ruby-1.8.7-p374.tar.gz=b72a0bc5b824398537762e5272bbb8dc ruby-1.9.0.tar.bz2=17eb66ac3721340d21db352d8f5dec76 ruby-1.9.1-p129.tar.bz2=6fa62b20f72da471195830dec4eb2013 ruby-1.9.1-p129.tar.gz=c71f413514ee6341c627be2957023a5c ruby-1.9.1-p243.tar.bz2=66d4f8403d13623051091347764881a0 ruby-1.9.1-p243.tar.gz=515bfd965814e718c0943abf3dde5494 ruby-1.9.1-p376.tar.bz2=e019ae9c643c5efe91be49e29781fb94 ruby-1.9.1-p376.tar.gz=ebb20550a11e7f1a2fbd6fdec2a3e0a3 ruby-1.9.1-p378.tar.bz2=5922459622a23612eb9b68a3586cb5f8 ruby-1.9.1-p378.tar.gz=9fc5941bda150ac0a33b299e1e53654c ruby-1.9.1-p429.tar.bz2=09df32ae51b6337f7a2e3b1909b26213 ruby-1.9.1-p429.tar.gz=0f6d7630f26042e00bc59875755cf879 ruby-1.9.1-p431.tar.bz2=03179138ae95dbfae872ef49e9cc6da7 ruby-1.9.1-p431.tar.gz=23f28cffc007ed5ac72c8e9bec6837ce ruby-1.9.2-p0.tar.bz2=d8a02cadf57d2571cd4250e248ea7e4b ruby-1.9.2-p0.tar.gz=755aba44607c580fddc25e7c89260460 ruby-1.9.2-p136.tar.bz2=52958d35d1b437f5d9d225690de94c13 ruby-1.9.2-p136.tar.gz=6e17b200b907244478582b7d06cd512e ruby-1.9.2-p180.tar.bz2=68510eeb7511c403b91fe5476f250538 ruby-1.9.2-p180.tar.gz=0d6953820c9918820dd916e79f4bfde8 ruby-1.9.2-p290.tar.bz2=096758c3e853b839dc980b183227b182 ruby-1.9.2-p290.tar.gz=604da71839a6ae02b5b5b5e1b792d5eb ruby-1.9.2-p318.tar.bz2=be431c6cbfa27e3836a06c6315717747 ruby-1.9.2-p318.tar.gz=cc7bf1025128e1985882ae243f348802 ruby-1.9.2-p320.tar.bz2=b226dfe95d92750ee7163e899b33af00 ruby-1.9.2-p320.tar.gz=5ef5d9c07af207710bd9c2ad1cef4b42 ruby-1.9.2-p330.tar.bz2=8ba4aaf707023e76f80fc8f455c99858 ruby-1.9.2-p330.tar.gz=4b9330730491f96b402adc4a561e859a ruby-1.9.3-p0.tar.bz2=65401fb3194cdccd6c1175ab29b8fdb8 ruby-1.9.3-p0.tar.gz=8e2fef56185cfbaf29d0c8329fc77c05 ruby-1.9.3-p125.tar.bz2=702529a7f8417ed79f628b77d8061aa5 ruby-1.9.3-p125.tar.gz=e3ea86b9d3fc2d3ec867f66969ae3b92 ruby-1.9.3-p194.tar.bz2=2278eff4cfed3cbc0653bc73085caa34 ruby-1.9.3-p194.tar.gz=bc0c715c69da4d1d8bd57069c19f6c0e ruby-1.9.3-p286.tar.bz2=e76848a86606a4fd5dcf14fc4b4e755e ruby-1.9.3-p327.tar.bz2=7d602aba93f31ceef32800999855fbca ruby-1.9.3-p327.tar.gz=96118e856b502b5d7b3a4398e6c6e98c ruby-1.9.3-p362.tar.bz2=13c26ea368d88a560f07cc8c5eb4fa05 ruby-1.9.3-p374.tar.bz2=944e73eba9ee9e1f2647ff32ec0b14b2 ruby-1.9.3-p385.tar.bz2=5ec9aff670f4912b0f6f0e11e855ef6c ruby-1.9.3-p392.tar.bz2=a810d64e2255179d2f334eb61fb8519c ruby-1.9.3-p392.tar.gz=f689a7b61379f83cbbed3c7077d83859 ruby-1.9.3-p429.tar.bz2=c2b2de5ef15ea9b1aaa3152f9112af1b ruby-1.9.3-p429.tar.gz=993c72f7f805a9eb453f90b0b7fe0d2b ruby-1.9.3-p448.tar.bz2=aa710d386e5903f78f0231868255e6af ruby-1.9.3-p448.tar.gz=a893cff26bcf351b8975ebf2a63b1023 ruby-1.9.3-p484.tar.bz2=03f5b08804927ceabe5122cb90f5d0a9 ruby-1.9.3-p484.tar.gz=8ac0dee72fe12d75c8b2d0ef5d0c2968 ruby-1.9.3-p545.tar.bz2=4743c1dc48491070bae8fc8b423bc1a7 ruby-1.9.3-p545.tar.gz=8e8f6e4d7d0bb54e0edf8d9c4120f40c ruby-1.9.3-p547.tar.bz2=5363d399be7f827c77bf8ae5d1a69b38 ruby-1.9.3-p547.tar.gz=7531f9b1b35b16f3eb3d7bea786babfd ruby-1.9.3-p550.tar.bz2=c2169c8b14ccefd036081aba5ffa96da ruby-1.9.3-p551.tar.bz2=0d8b272b05c3449dc848bb7570f65bfe ruby-1.9.3-preview1.tar.bz2=7d93dc773c5824f05c6e6630d8c4bf9b ruby-1.9.3-preview1.tar.gz=0f0220be4cc7c51a82c1bd8f6a0969f3 ruby-1.9.3-rc1.tar.bz2=26f0dc51ad981e12c58b48380112fa4d ruby-1.9.3-rc1.tar.gz=46a2a481536ca0ca0b80ad2b091df68e ruby-2.0.0-p0.tar.bz2=895c1c581f8d28e8b3bb02472b2ccf6a ruby-2.0.0-p195.tar.bz2=2f54faea6ee1ca500632ec3c0cb59cb6 ruby-2.0.0-p247.tar.bz2=60913f3eec0c4071f44df42600be2604 ruby-2.0.0-p353.tar.bz2=20eb8f067d20f6b76b7e16cce2a85a55 ruby-2.0.0-p451.tar.bz2=908e4d1dbfe7362b15892f16af05adf8 ruby-2.0.0-p481.tar.bz2=ea406a8d415a1a5d8365596d4288f3da ruby-2.0.0-p576.tar.bz2=eccd42d43620544a085c5e3834572f37 ruby-2.0.0-p594.tar.bz2=58469c0daf5f3a892a70cc674ea59c7f ruby-2.0.0-p598.tar.bz2=a3f3908103a7d209d1d1cf4712e3953c ruby-2.0.0-p643.tar.bz2=1390888cac6cd175e6f164eff378cdde ruby-2.0.0-p645.tar.bz2=d576240c97cfcc3ed9bdc457eb1e8280 ruby-2.0.0-p647.tar.bz2=27a3ea1a8b8bca1a6de43a7d08e88b69 ruby-2.0.0-p648.tar.bz2=3544031334f4665aa2eb1414babc9345 ruby-2.0.0-preview1.tar.bz2=47a0f662f0e258aa1c5e429c310861b3 ruby-2.0.0-preview2.tar.bz2=a645a783c3302cc094a9963a5e700a4d ruby-2.0.0-rc1.tar.bz2=24cebdda11e01ff4889ac983cd7dc02c ruby-2.0.0-rc2.tar.bz2=e92420131bd7994513e0bf09a3e2a19b ruby-2.1.0-preview1.tar.bz2=d32d1ea23988399afadbd21c5a7a37fc ruby-2.1.0-preview2.tar.bz2=9d566a9b2d2e7e35ad6125e2a14ce672 ruby-2.1.0-rc1.tar.bz2=cae095b90349b5b0f7026060cc3dd2c5 ruby-2.1.0.tar.bz2=1546eeb763ac7754365664be763a1e8f ruby-2.1.1.tar.bz2=53edc33b2f590ecdd9f6a344b9d92d0d ruby-2.1.1.tar.gz=e57fdbb8ed56e70c43f39c79da1654b2 ruby-2.1.2.tar.bz2=ed9b8565bdeccb401d628ec8d54a0774 ruby-2.1.2.tar.gz=a5b5c83565f8bd954ee522bd287d2ca1 ruby-2.1.3.tar.bz2=02b7da3bb06037c777ca52e1194efccb ruby-2.1.4.tar.bz2=f4136e781d261e3cc20748005e1740b7 ruby-2.1.5.tar.bz2=a7c3e5fec47eff23091b566e9e1dac1b ruby-2.1.6.tar.bz2=e1a8e6c6bfbb09bb7f8d6be8f508e4a1 ruby-2.1.7.tar.bz2=3a878e98311d543e5de3533b82ef4a5a ruby-2.1.8.tar.bz2=b17130b5f02a61640ae3b629af931610 ruby-2.1.9.tar.bz2=62bd1cbfcbc22e4d137462bce992f6d1 ruby-2.1.10.tar.bz2=5155c624807ff2418a9e9f15202954d0 ruby-2.2.0-preview1.tar.bz2=767b132eec3e70b14afe5884a7a767b1 ruby-2.2.0-preview2.tar.bz2=d7abace25a8ffe861cb2807bef1c58a6 ruby-2.2.0-rc1.tar.bz2=7144732d30dd4547c0a59862b3345d54 ruby-2.2.0.tar.bz2=d03cd4690fec1fff81d096d1c1255fde ruby-2.2.1.tar.bz2=06973777736d8e6bdad8dcaa469a9da3 ruby-2.2.2.tar.bz2=af6eb4fa7247f1f7b2e19c8e6f3e3145 ruby-2.2.3.tar.bz2=f49a734729a71774d4a94a9a603114b2 ruby-2.2.4.tar.bz2=c3d65f6d2ebe90dda81a37885ea244f5 ruby-2.2.5.tar.bz2=0c7edd1ff3650c3b74da2efaf641bf34 ruby-2.2.6.tar.bz2=3d13cf447142b8a11cd9beb7bc63fee0 ruby-2.2.7.tar.bz2=ca7224d80c08b015bc3b8c226d0914c3 ruby-2.2.8.tar.bz2=054d2e2904d5175662293e29c3bdb927 ruby-2.2.9.tar.bz2=575adf8ede6b1ca7236a5341e73536b0 ruby-2.2.10.tar.bz2=bef1909a4c885157870ef69548cdad3a ruby-2.3.0-preview1.tar.bz2=776000d74ec6dd34bf355ff6921c8311 ruby-2.3.0-preview2.tar.bz2=3ad442ccb337e77e4acaa4113f25b76a ruby-2.3.0.tar.bz2=f0d9f9bbdc87372ca98988a571875819 ruby-2.3.1.tar.bz2=c194281f63d7fcd816747fe78474be5e ruby-2.3.2.tar.bz2=9d00f3772f1c8fa5eecdfea089e3032f ruby-2.3.3.tar.bz2=04b9c461a2bc1eec0535ad1947cad4fb ruby-2.3.4.tar.bz2=99961e97566aee6d63635e2da4cf73ac ruby-2.3.5.tar.bz2=e1efc3d5a948ca1f552005efe5925513 ruby-2.3.6.tar.bz2=b2443b11ee80319a119f7ec0c9b8d79a ruby-2.3.7.tar.bz2=5eb580d5cd13ffb5aacfb96580c0043d ruby-2.3.8.tar.bz2=78045332e298dfd859ceef9fe946950f ruby-2.4.0-preview1.tar.bz2=64b8983b5f53d053906e394f734aa296 ruby-2.4.0-preview2.tar.bz2=1074e8dea5baa89af7f7c2d1d2b9ebaa ruby-2.4.0-preview3.tar.bz2=9f767e6bc61830735ea7dc9cd5a63653 ruby-2.4.0-rc1.tar.bz2=0f8b665acf4e883334adc121a42a206f ruby-2.4.0.tar.bz2=98f29161860fe1b6c65396717847a358 ruby-2.4.1.tar.bz2=07b2ae5d2f46321c95b37066c8415900 ruby-2.4.2.tar.bz2=5ff3ad6ec816bcce8806a55090936ab6 ruby-2.4.3.tar.bz2=ac8215ba561cc7c79b4f61daee11b706 ruby-2.4.4.tar.bz2=d994274eaa95b82aa5d31ec2188253c6 ruby-2.4.5.tar.bz2=45d70a8bb9397d818795ffe992163d27 ruby-2.4.6.tar.bz2=4abd13c50c1fc273a0a81a0ae74ed39f ruby-2.4.7.tar.bz2=1ce166ced489908993d78e8bb68325e0 ruby-2.4.8.tar.bz2=396d35f1a2d1deaf303f59cb5245d4ae ruby-2.4.9.tar.bz2=0b3447370651df55a2014a170c0cb1d5 ruby-2.4.10.tar.bz2=b10a7d2fcaf218c98edbaf57efc36e58 ruby-2.5.0-preview1.tar.bz2=889454189f41e271ae5ba15382911b6a ruby-2.5.0-rc1.tar.bz2=f5acdeacf56aced3c00ae6a8fa816bbc ruby-2.5.0.tar.bz2=63a6cd49546783d62de25a0ffc4aecc3 ruby-2.5.1.tar.bz2=5aaaf2fb4893214fa316516f3ac43519 ruby-2.5.2.tar.bz2=e90ab127e2ac3ee1d8840835e8ba1f13 ruby-2.5.3.tar.bz2=49aea0bf56d25351ccaf938c642400df ruby-2.5.4.tar.bz2=0c923215470f1debe593fe21e66fd37b ruby-2.5.5.tar.bz2=8f41b5cb683d48b5cb6cdfe03d135d6b ruby-2.5.6.tar.bz2=f2a74416ab3016434896194120796f04 ruby-2.5.7.tar.bz2=65597b69aa54bdca8745502c10349f96 ruby-2.5.8.tar.bz2=9ec96e7a590ef801ede294b6184c9c0f ruby-2.5.9.tar.bz2=9e905a545a729af1f1620ddfc2976fe5 ruby-2.6.0-preview1.tar.bz2=1ce507e27fa02aeb36100dabcf1da94f ruby-2.6.0-preview2.tar.bz2=e45011116334d21857b9e1712a01e6b3 ruby-2.6.0-preview3.tar.bz2=b326ceee3d3756f892515009e148f4b2 ruby-2.6.0-rc1.tar.bz2=40457a72e36cbecd0c51d9f895347302 ruby-2.6.0-rc2.tar.bz2=9665e6d886a9da2d4076fa75836798f1 ruby-2.6.0.tar.bz2=d3372daec93f83e7a91c669821053014 ruby-2.6.1.tar.bz2=73d19ac478db1a178be5ae2f2fb8c9ec ruby-2.6.2.tar.bz2=658fcc0da15578c2420ded807b11cce1 ruby-2.6.3.tar.bz2=52e609b756735115814b9c8463f185e2 ruby-2.6.4.tar.bz2=d9b35753c65f54c745ab6b0094511839 ruby-2.6.5.tar.bz2=d1b89c88effb71d75cd7ef77c35e1985 ruby-2.6.6.tar.bz2=abc030870bfbe18ae9c356abebd95cb6 ruby-2.6.7.tar.bz2=46f24740181f91247c72f19d52334379 ruby-2.6.8.tar.bz2=c53761123d17e929cfe248f50429bcab ruby-2.6.9.tar.bz2=ddc24495adaf215c8ee40630b4a55041 ruby-2.6.10.tar.bz2=6ad76db639ab308e3b6c19408729a0cf ruby-2.7.0-preview1.tar.bz2=82fab0496947acd847a6b2eb758acfc6 ruby-2.7.0-preview2.tar.bz2=966a544ab59114591898403c23d91397 ruby-2.7.0-preview3.tar.bz2=2fa6c213774744b287e7e0212b43f626 ruby-2.7.0-rc1.tar.bz2=48a8837cb352f5b95e97a1ae0d62a9d0 ruby-2.7.0-rc2.tar.bz2=cca58fdb8c5e8be8273842d54199c42d ruby-2.7.0.tar.bz2=89347748b7414f5bc7aeb8f4a87ebef4 ruby-2.7.1.tar.bz2=4bb2b2b2f0c6953859e30af140cf249a ruby-2.7.2.tar.bz2=a8acc9c24708fe29dfc287823ecaae65 ruby-2.7.3.tar.bz2=604acb258b1d8228f55799e846cfe6d3 ruby-2.7.4.tar.bz2=52705d799ed851dd3bfd5634265cde46 ruby-2.7.5.tar.bz2=d97d4377eee18b0e790510c3afed648c ruby-2.7.6.tar.bz2=1b6efacb9f129d0253d8a9faa9c21f99 ruby-2.7.7.tar.bz2=63c55e75150251d3ba092b662138e4af ruby-2.7.8.tar.bz2=f44dedf51fdb7441a7dba592d6a4a14d ruby-3.0.0-preview1.tar.gz=991df063b86a8f8412ca07f548579f39 ruby-3.0.0-preview2.tar.gz=ce14b24e923f2e269fea6441791a7248 ruby-3.0.0-rc1.tar.gz=848a8628c8abde270b66e2474049a4a3 ruby-3.0.0.tar.gz=d6af36269a1b0bc278236d371543ad97 ruby-3.0.1.tar.gz=8d1c460a9a9d48a353de3eb0f338bbfd ruby-3.0.2.tar.gz=b973af486291a1e17ad50d88472bfa86 ruby-3.0.3.tar.gz=9ecae293da9547c1438a970f04f64655 ruby-3.0.4.tar.gz=ec9de9a15acc4f205b08816d94267415 ruby-3.0.5.tar.gz=cdff2395625dc1d632fc5400c8fec103 ruby-3.0.6.tar.gz=6b5a7b14505697e6fc2b40b345679f40 ruby-3.0.7.tar.gz=147a3467facc704b5d479e809c131603 ruby-3.1.0-preview1.tar.gz=d131b9bca700ee87ea276f8233ea4c0b ruby-3.1.0.tar.gz=1ca89d713f2c18a20104befed51b3b9a ruby-3.1.1.tar.gz=702778a0ef8b7a01ef7530a541002e19 ruby-3.1.2.tar.gz=9daf064899cccc32fd564117c7a7e0dd ruby-3.1.3.tar.gz=cce38a2b2c589d59f440f67c7d8cc697 ruby-3.1.4.tar.gz=3e601ae6db76a487219a1084e5cb4c9c ruby-3.1.5.tar.gz=ce1e92ddb1230fa2d4f4367882542555 ruby-3.2.0-preview1.tar.gz=a83c91d53e130fe232e4c27ecc8738da ruby-3.2.0-preview2.tar.gz=56e7801b37612b82285c9a09cfeb28ce ruby-3.2.0-preview3.tar.gz=0ed16faae50403b4e2ba2e85ec2314a1 ruby-3.2.0-rc1.tar.gz=4657d7013702adce21ca21dfe71ea4a0 ruby-3.2.0.tar.gz=76ca7e7d71898ab1e85155d69403754e ruby-3.2.1.tar.gz=055101c924538467c63fcbf42abddc75 ruby-3.2.2.tar.gz=eb6f18605e1e1be5dfb5b45f31bf6a93 ruby-3.2.3.tar.gz=e0ba90554f7ea41c587ffa7fcfd064ca ruby-3.2.4.tar.gz=c48283a23c72d7aae19b7f510b89444a ruby-3.2.5.tar.gz=3bd6f2b26918c8637abf56c2f208833e ruby-3.2.6.tar.gz=fa9bd65bc429a43a3e6dda8ff0b97022 ruby-3.3.0-preview1.tar.gz=0833f555b1b8d5423953600fb4146639 ruby-3.3.0-preview2.tar.gz=4f82f4c9e512ec0a53baa1be8d35ebf7 ruby-3.3.0-preview3.tar.gz=a32ede198a9da50d4afc4421a4a993ad ruby-3.3.0.tar.gz=f57422a0f995cd5a93c726f6c42c310a ruby-3.3.1.tar.gz=368e331a35145ace4948390ed76cf1df ruby-3.3.2.tar.gz=9a7efebc6a0e4810c716ec6d401dc372 ruby-3.3.3.tar.gz=beb9773cc4d9d8da29463ab175e4db28 ruby-3.3.4.tar.gz=f2e16c1a56e07e185214e85c62657941 ruby-3.3.5.tar.gz=ccad73b02d942d1e6b4c27873d4c08e4 ruby-3.3.6.tar.gz=51bcf91da64e5889e2e59c7adc7189c5 ruby-3.4.0-preview1.tar.gz=93b9b1040a2dd7be7514a7870aa7da03 +ruby-3.4.0.tar.gz=2acf769caa47f692fea932ab81e75639 +ruby-3.4.1.tar.gz=43e587b9a6de2a51dd1fa2613615542b ruby-enterprise-1.8.6-20080507.tar.gz=17e3c52e73e42809f57ad0000a6cb4ab ruby-enterprise-1.8.6-20080621.tar.gz=626fc3811eee2dc92ac27ea63d37a8b2 ruby-enterprise-1.8.6-20080623.tar.gz=0bf8a3a93c6b37bb1260cc09b05e81fd ruby-enterprise-1.8.6-20080624.tar.gz=de58b97128aa65209f291c66eab7c4a7 ruby-enterprise-1.8.6-20080709.tar.gz=f0ded08cec64959fa388ec6a237b9c47 ruby-enterprise-1.8.6-20080810.tar.gz=bfdcf06f437af825cd9f2d321f9d1896 ruby-enterprise-1.8.6-20081205.tar.gz=50206bec9be2e08a862e5ec2e70fa693 ruby-enterprise-1.8.6-20081215.tar.gz=aab57b7d5061c1980bec5dbe311ec9b2 ruby-enterprise-1.8.6-20090113.tar.gz=e8d796a5bae0ec1029a88ba95c5d901d ruby-enterprise-1.8.6-20090201.tar.gz=a965e6789b553efaed72191825b13713 ruby-enterprise-1.8.6-20090421.tar.gz=c777b361aadccda7988be16ede7ab15f ruby-enterprise-1.8.6-20090520.tar.gz=156572a8296bd0440970a6bb95018a13 ruby-enterprise-1.8.6-20090610.tar.gz=0bf66ee626918464a6eccdd83c99d63a ruby-enterprise-1.8.7-2009.10.tar.gz=3727eef7b6b1b2f31db7d091328d966e ruby-enterprise-1.8.7-2010.01.tar.gz=587aaea02c86ddbb87394a340a25e554 ruby-enterprise-1.8.7-2010.02.tar.gz=4df7b09c01adfd711b0ab76837611542 ruby-enterprise-1.8.7-2011.01.tar.gz=4640634347cd8e5469cb718853e2112e ruby-enterprise-1.8.7-2011.02.tar.gz=8c5faa11c1ddaed3f44b7294711980cc ruby-enterprise-1.8.7-2011.03.tar.gz=038604ce25349e54363c5df9cd535ec8 ruby-enterprise-1.8.7-2011.12.tar.gz=1e5f3059d52a67ab5d91d472b756de08 ruby-enterprise-1.8.7-2012.02.tar.gz=8d086d2fe68a4c57ba76228e97fb3116 ruby-enterprise-1.8.7-20090928.tar.gz=ae00018ce89d95419dfde370fcd485ac rubygems-0.4.0.tgz=86a64616548a793e1a5f825f0dd385b9 rubygems-0.5.0.tgz=80d151edd94a06bcd2452a7e272b4d96 rubygems-0.6.0.tgz=5df803f5a04654833690dd32283de741 rubygems-0.6.1.tgz=c4a0faa9f876ad805ae80d1396a29d97 rubygems-0.7.0.tgz=ede9b55343219e8b3491793aa12c46f3 rubygems-0.8.0.tgz=9ef6e3c34dcb54e295c8e57321ddc079 rubygems-0.8.1.tgz=6276d268b420c0d61796cdbf6d28dae4 rubygems-0.8.3.tgz=6e6da80f61d6e77d0ad9e531767f6fd5 rubygems-0.8.4.tgz=a2ad2d03dae8a98002c2a7cd6c3ed352 rubygems-0.8.5.tgz=b917c084e1e6e99d8e102af8dd687ddb rubygems-0.8.6.tgz=9de98d2f62e3f91521b0207a4dcdeb5b rubygems-0.8.7.tgz=7fc04b9f9acc0c18cbbe6222be8d0bd3 rubygems-0.8.8.tgz=a8535e9c35a4c215d6ef9268d4bc69ed rubygems-0.8.10.tgz=d26592e280c0fb24c51f2837c3f48e67 rubygems-0.8.11.tgz=aa363b428c4c1fc2e076a4ff77b957d7 rubygems-0.9.0.tgz=5d496e1f415b8b4033ab867f01d1161f rubygems-0.9.1.tgz=a62314cdb174ccc88a27b8924fa79e4a rubygems-0.9.2.tgz=cc525053dd465ab6e33af382166fa808 rubygems-0.9.3.tgz=600940a22ecd79e28e0fd37ad1f1d871 rubygems-0.9.4.tgz=b5680acaa019c80ea44fe87cc2e227da rubygems-0.9.5.tgz=91f7036a724e34cc66dd8d09348733d9 rubygems-1.0.0.tgz=b0b74eac0cbfc5a13f895ab6f803edc1 rubygems-1.0.1.tgz=0d5851084955c327ee1dc9cbd631aa5f rubygems-1.1.0.tgz=85f994904c5b4045f0a859b29d0be717 rubygems-1.1.1.tgz=1a77c5b6b293a3ccd5261dc120641ccc rubygems-1.2.0.tgz=b77a4234360735174d1692e6fc598402 rubygems-1.3.0.tgz=63d3dfc038710eaf532b6a133225115a rubygems-1.3.1.tgz=a04ee6f6897077c5b75f5fd1e134c5a9 rubygems-1.3.2.tgz=6204d0a4c526a1d8fdbce746647b179a rubygems-1.3.3.tgz=0e9697db44d812712350baf28016b4a7 rubygems-1.3.4.tgz=b17b398503253bf36a101c58f02a226f rubygems-1.3.5.tgz=6e317335898e73beab15623cdd5f8cff rubygems-1.3.6.tgz=789ca8e9ad1d4d3fe5f0534fcc038a0d rubygems-1.3.7.tgz=e85cfadd025ff6ab689375adbf344bbe rubygems-1.4.1.tgz=e915dbf79e22249d10c0fcf503a5adda rubygems-1.4.2.tgz=b5badb7c5adda38d9866fa21ae46bbcc rubygems-1.5.0.tgz=49bef7186bf3c0ca6ee7adf4b585bccc rubygems-1.5.1.tgz=47577a5e33c9c6f1e3a56aff7f51d0ff rubygems-1.5.2.tgz=3951f94c09c16c774c8bcebc94fa5374 rubygems-1.5.3.tgz=38bbbdc17aef923fb41f054cf8421116 rubygems-1.6.0.tgz=abd27b5a9002100ff74ddb398a1c9689 rubygems-1.6.1.tgz=a77c64896aaa10d64aaf34f5c1488173 rubygems-1.6.2.tgz=0c95a9869914ba1a45bf71d3b8048420 rubygems-1.8.6.tgz=8e95d0c5b377a003f3d54a49461e81d9 rubygems-1.8.9.tgz=fc399445d693c29778779e5828ee5e90 rubygems-1.8.10.tgz=5b08ee31740c9b0bd36f6c04d537e7d4 rubygems-1.8.23.1.tgz=5259ce3eb7988950fa3aff9051a5de91 rubygems-1.8.23.2.tgz=fb377c7fd387df14a33e529153adc316 rubygems-1.8.23.tgz=178b0ebae78dbb46963c51ad29bb6bd9 rubygems-1.8.24.tgz=3a555b9d579f6a1a1e110628f5110c6b rubygems-1.8.25.tgz=1376a258d43c53750a8df30e67853e10 rubygems-1.8.26.tgz=0ea47f1efd010f4c82b8a51a934f48dc rubygems-1.8.27.tgz=6686ad26735c21d0d6e58b6192c7da5d rubygems-1.8.28.tgz=2df78039f391fb1f71c02c2fc5671c94 rubygems-1.8.29.tgz=a57fec0af33e2e2e1dbb3a68f6cc7269 rubygems-2.0.0.tgz=89ce467eb2d55657e9965a46559acbcf rubygems-2.0.1.tgz=2652ab6f001a873b8933e2ca09505974 rubygems-2.0.2.tgz=3471f140a70bcd32a7495b545cfce790 rubygems-2.0.3.tgz=854691f145cea98b4100e5b0831b73ed rubygems-2.0.4.tgz=3ec32dbe783bab37a87f50758f8efe13 rubygems-2.0.5.tgz=641d82672937d40d664dbc18f49cdcec rubygems-2.0.6.tgz=0633f50db16112bf6c3cf9bfb9ceb9bd rubygems-2.0.7.tgz=9046700f1222712fedfb836fafa08c50 rubygems-2.0.8.tgz=5432214a740c0d13482e43a5328a6518 rubygems-2.0.9.tgz=bc55898247297ffa190223276b1b1bd7 rubygems-2.0.10.tgz=5457ba403cd9a5f4f5fb2ef4a2a1c03e rubygems-2.0.11.tgz=0f28e3fde3348c0f23ceecba73a6cbef rubygems-2.0.12.tgz=99c416517e2de1146d2c6fbb4c4c1441 rubygems-2.0.13.tgz=3970e66a670ddb6d1aade9c7b18033d4 rubygems-2.0.14.tgz=4a7aa0b144e465230ab5d7b59dfd7e8f rubygems-2.1.0.tgz=9a9d242baef5e58fbfe79ec5206cd316 rubygems-2.1.1.tgz=b34d6f4028b69a84123a6b7cb0ac8028 rubygems-2.1.2.tgz=b5c5c4430be60f911014216d41886ef3 rubygems-2.1.3.tgz=ac7bbdfecd49f9304756aa5ebeb51400 rubygems-2.1.4.tgz=aa502b1ea90fbdd14ca9b32634795c2b rubygems-2.1.5.tgz=60564b762d4e186815997653b1c876ab rubygems-2.1.6.tgz=e11237a8f87dbd8c085770551d64a8f8 rubygems-2.1.7.tgz=b721ed7d5fd57ed05f77eb21a3a592ee rubygems-2.1.8.tgz=cc4c84c0482840389a457740e8083ed9 rubygems-2.1.9.tgz=2636bf26c0a9ec889c7bd938887bd9a3 rubygems-2.1.10.tgz=6fa671d7d6605de73d16f529cf7bffb8 rubygems-2.1.11.tgz=b561b7aaa70d387e230688066e46e448 rubygems-2.2.0.rc.1.tgz=f7d80b612339169569f2675155c202f1 rubygems-2.2.0.tgz=3c16e50673adb99d1ce76d5231f764bd rubygems-2.4.8.tgz=dc77b51449dffe5b31776bff826bf559 rubygems-2.6.10.tgz=ab5a0028d2a0653691b29d7463bd0892 rubygems-2.6.11.tgz=8d514b836fcf3ae2c20b4fe8d5cdc3c5 rubygems-2.6.12.tgz=7c454ef88b716c1a123f62b26bb9612b rubygems-2.6.13.tgz=e6f19b51614055d826e431549a12a80b rubygems-2.6.14.tgz=e0a6914ce03b91dfc6d448ebf292f145 rubygems-2.7.0.tgz=771c40015538c0f225c5249e4bc7d441 rubygems-2.7.1.tgz=65646f28f3c36ccaa7f991c17e15b8a9 rubygems-2.7.2.tgz=312a238ed98a61d2b3d165b790b6062b rubygems-2.7.3.tgz=fb3a1927a1842b75677a24f48dd63ddc rubygems-2.7.4.tgz=e9bbf5a4cc9a74293884b91f49603ea0 rubygems-2.7.5.tgz=516a4f219976003feb4b4f797cbc66b0 rubygems-2.7.6.tgz=366cea352c2b1243db726013c3d76fc4 rubygems-2.7.7.tgz=b6721f6ce4af08f68c6f513bbddfe484 rubygems-2.7.8.tgz=a3ed89a34e1ae8f9da0c620a8aa35f12 rubygems-2.7.9.tgz=173272ed55405caf7f858b6981fff526 rubygems-2.7.10.tgz=464754059d8ca01c1121a1233d866e8c rubygems-3.0.0.tgz=3908105894e531f7ad3aceb8b41dcbcd rubygems-3.0.1.tgz=1e8af9b87a67f15841ad2be7d5725a5f rubygems-3.0.2.tgz=d8db1b516ae1e35b8f6f56cb526f879a rubygems-3.0.3.tgz=b7a7dd5f85485334a6cb61b7dac20cff rubygems-3.0.4.tgz=7d0c49077a2d19f48d88567cfa3cf17a rubygems-3.0.5.tgz=4664467d621d719688e4778d147c306a rubygems-3.0.6.tgz=60d84e843b131fb87c8fd67e8fac6470 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=3e9afdf72f153e2f66259fc2b6fca594 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=c30459287aec83548cfcb17340fa73d5 truffleruby-1.0.0-rc3-linux-amd64.tar.gz=138f6814451ce634b0fae3aca5579248 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=94ed54ecb65bea2166a2159431b0362b truffleruby-1.0.0-rc5-linux-amd64.tar.gz=9e5428611e22b093d05afebbe0ccbc2b truffleruby-1.0.0-rc5-macos-amd64.tar.gz=b32a254fed71434c3431fb2effb35c5a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=7f394a8c7fe356b7bd36683c57f74ebd truffleruby-1.0.0-rc6-macos-amd64.tar.gz=f033329d03f1f846d25728c2af9d7524 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=184e98f2d6939f63db4b915943ff60c6 truffleruby-1.0.0-rc7-macos-amd64.tar.gz=d19213b33011f7a55e0f32d25e19184f truffleruby-1.0.0-rc8-linux-amd64.tar.gz=a394167c0331c6d8c1123e1f992e5411 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=dc1bf0fcfdd5837ae0ca56d6d6e5f7b0 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=f6ec25bd532bf0551d35327d1aa4caf9 truffleruby-1.0.0-rc9-macos-amd64.tar.gz=c80a345f9071521cf1961ab75ebc7dd1 truffleruby-1.0.0-rc10-linux-amd64.tar.gz=3a889726efcdf33feb7ef3df13fd5f39 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=bba618b4483b79eebf9f0e7af4078502 truffleruby-1.0.0-rc11-linux-amd64.tar.gz=a25e179ca0be96a1bc737a600729c195 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=bb8d8f5525e1ba86bb039e56291c6c7c truffleruby-1.0.0-rc12-linux-amd64.tar.gz=872774837057489250527bf863192115 truffleruby-1.0.0-rc12-macos-amd64.tar.gz=bb4a64e6c4882fd0c5e412bf9c57720b truffleruby-1.0.0-rc13-linux-amd64.tar.gz=0f36eed2eb36846785fdd4eae24adfa0 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=1bd3087a0f2df4c006b87c9488ada6d4 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=9eddd1aa98c9649e7c01bb10bf28c471 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c93643f1d00b370411310ee7a1dd5330 truffleruby-1.0.0-rc15-linux-amd64.tar.gz=bc7339a6218ea991f2c72ce8759cb6e3 truffleruby-1.0.0-rc15-macos-amd64.tar.gz=1671d08dd2f5026d58b326fd55c9b7de truffleruby-1.0.0-rc16-linux-amd64.tar.gz=5564d17f19b8ee0edb96ab5b1bfbda98 truffleruby-1.0.0-rc16-macos-amd64.tar.gz=61583b529b6a1337398b0966db952d24 truffleruby-19.0.0-linux-amd64.tar.gz=006220c7bde7d0b5c72481133624a83f truffleruby-19.0.0-macos-amd64.tar.gz=9ef7f5a311465d35e54ac6e00ec3d169 truffleruby-19.0.2-linux-amd64.tar.gz=2f7fe574e0695fb6001f4f5282aa2f79 truffleruby-19.0.2-macos-amd64.tar.gz=aa20f76b3eac1f4976a507364201d1ad truffleruby-19.1.0-linux-amd64.tar.gz=71368f8371069017d911528f052b0a55 truffleruby-19.1.0-macos-amd64.tar.gz=7f086adbc89fdfaed35273394ac3ac66 truffleruby-19.1.1-linux-amd64.tar.gz=c1ad4d17bb40e214b124222f3a7c6db6 truffleruby-19.1.1-macos-amd64.tar.gz=f4e76b0612319b4a82480cbd1fc90210 truffleruby-19.2.0-linux-amd64.tar.gz=458ed5fec1a849ef5b00e19b0e25d5e9 truffleruby-19.2.0-macos-amd64.tar.gz=dc324575ad20e3054980835c24ea7161 truffleruby-19.2.0.1-linux-amd64.tar.gz=ad7444145550d89931199159163077c1 truffleruby-19.2.0.1-macos-amd64.tar.gz=b5bcfb0aaded1e2d1763089ab6c9a14d truffleruby-19.2.1-linux-amd64.tar.gz=fc4879d2b0cc22c152a8bf893a72c346 truffleruby-19.2.1-macos-amd64.tar.gz=71448ff3f8f1da086f222751d3f853bc truffleruby-19.3.0-linux-amd64.tar.gz=dd44ac30b5a1ef3a7d61172cda9b30b6 truffleruby-19.3.0-macos-amd64.tar.gz=41daa52f0f308abb77a2b91c1b7e0f3d truffleruby-19.3.0.2-linux-amd64.tar.gz=2db2cb5c29523c9bdb6f59dfa0bd74ce truffleruby-19.3.0.2-macos-amd64.tar.gz=edf1603643938686dce57139aadf7d3c truffleruby-19.3.1-linux-amd64.tar.gz=a14c028351f7a3965bcb56e9b22364de truffleruby-19.3.1-macos-amd64.tar.gz=a8707d0af3eda694ec07a5387d3443fb truffleruby-20.0.0-linux-amd64.tar.gz=b30110ecbc50c4fce402fdf44c45dad5 truffleruby-20.0.0-macos-amd64.tar.gz=0671e5909cefb9a2c12c473fc0110821 truffleruby-20.1.0-linux-amd64.tar.gz=4592b5fc3636d82fc998ab6fe0a43584 truffleruby-20.1.0-macos-amd64.tar.gz=3c0be43db86817c7037d3ff5053d322d truffleruby-20.2.0-linux-amd64.tar.gz=e9859decb24829f9a189d88b3c2e9b79 truffleruby-20.2.0-macos-amd64.tar.gz=49e7ccf8f9e60d6c59b3b07b854466cf truffleruby-20.3.0-linux-amd64.tar.gz=93a20845f7d9d39100761424dfc0a734 truffleruby-20.3.0-macos-amd64.tar.gz=b178b7a94fac58400450417612fe3441 truffleruby-21.0.0-linux-amd64.tar.gz=c03304a505c8699e697acecf5030d95f truffleruby-21.0.0-macos-amd64.tar.gz=019796be37a58ef8e186a625f2ff5d07 truffleruby-21.1.0-linux-amd64.tar.gz=065bfcc48f6925410e0da21e16428b64 truffleruby-21.1.0-macos-amd64.tar.gz=325f6854c10d8a3a114c80da582c469f truffleruby-21.2.0-linux-amd64.tar.gz=0aec44721a040845347f18c1f72ceb75 truffleruby-21.2.0-macos-amd64.tar.gz=76d27715b20902df5779f7a0c00852b1 truffleruby-21.2.0.1-linux-amd64.tar.gz=f68e9b8a9f9cae5efc5ac45a7d9e760d truffleruby-21.2.0.1-macos-amd64.tar.gz=b021e50fc94cab590b49d27f2ea821b0 truffleruby-21.3.0-linux-amd64.tar.gz=359aca79cba4e08f9955d9c6543c2189 truffleruby-21.3.0-macos-amd64.tar.gz=d9e2e2c6fcd3ac16f0c37b0ccffb4f41 truffleruby-22.0.0.2-linux-amd64.tar.gz=324327026e9b2963a8e5fb4ee3f4e216 truffleruby-22.0.0.2-macos-amd64.tar.gz=7029d0e291d498a264d9b413729a3e17 truffleruby-22.1.0-linux-amd64.tar.gz=9329cf507ba8ac529e93156cacc1425d truffleruby-22.1.0-macos-amd64.tar.gz=353242978b46cafc34b05e2c81206096 truffleruby-22.2.0-linux-amd64.tar.gz=5d676377056ae94fe847be721c20405b truffleruby-22.2.0-linux-aarch64.tar.gz=b774f4b7d330842521f1e6e56cb41db5 truffleruby-22.2.0-macos-amd64.tar.gz=e45fdd9a05aec6220a76fb707b0a5ae8 truffleruby-22.2.0-macos-aarch64.tar.gz=ebcbfe056d90d06de4bd0a9d699bad8f truffleruby-22.3.0-linux-amd64.tar.gz=ada8bc5dc52aca8317eaeab04d91e877 truffleruby-22.3.0-linux-aarch64.tar.gz=11493301d5519aa73e8f0e140cefb581 truffleruby-22.3.0-macos-amd64.tar.gz=9e27c677637b69b0460fb0a4569a5cca truffleruby-22.3.0-macos-aarch64.tar.gz=eaa1c9020b521226f8bb48b8c7e5c596 truffleruby-22.3.1-linux-amd64.tar.gz=243d926f038fd2220c03dfbe40ef58c3 truffleruby-22.3.1-linux-aarch64.tar.gz=01487fe680863381489bf2a0a2ac162b truffleruby-22.3.1-macos-amd64.tar.gz=b3d5a777d94856e51034d81076e8ef72 truffleruby-22.3.1-macos-aarch64.tar.gz=320ce75730a5b9f16f111eb7ef5e4e09 truffleruby-23.0.0-preview1-linux-amd64.tar.gz=76c1cb23ee63ba4de93a0c23784bfca9 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=eec3fc74565f08e9468982692f7f9010 truffleruby-23.0.0-preview1-macos-amd64.tar.gz=50e38f3cd548dfe78f397f76ed577bf1 truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=b769bcf9b843d9b2980def1e2139284f truffleruby-23.0.0-linux-amd64.tar.gz=6e1a491406c5dbf42de10fcb3ed7dc1c truffleruby-23.0.0-linux-aarch64.tar.gz=5c3663f64bee707173b2684355a9a42e truffleruby-23.0.0-macos-amd64.tar.gz=515a9a8a0f39ba9399e869cd418ebff5 truffleruby-23.0.0-macos-aarch64.tar.gz=57e5fa52270e692b82c445107fe6b6a6 truffleruby-23.1.0-linux-amd64.tar.gz=f7511c19045e57e72f9b5415bc17c8e8 truffleruby-23.1.0-linux-aarch64.tar.gz=e8a20dd919a2ff77b7cc5457e853d15d truffleruby-23.1.0-macos-amd64.tar.gz=d3b6a3cbc0a230ebae6f3a462a32ddd3 truffleruby-23.1.0-macos-aarch64.tar.gz=ee74fc5d192c2fb8afd0458d2d429c02 truffleruby-23.1.1-linux-amd64.tar.gz=d7e1c040da170aaa36b5f5a1d106d237 truffleruby-23.1.1-linux-aarch64.tar.gz=cf508ba3787be20c03bac690f3bdbac5 truffleruby-23.1.1-macos-amd64.tar.gz=a662a8672871524808500dddef3808c1 truffleruby-23.1.1-macos-aarch64.tar.gz=de543312024993a533e3caa63b396127 truffleruby-23.1.2-linux-amd64.tar.gz=e3e5b01b291d7fea61be2be842c7e8dc truffleruby-23.1.2-linux-aarch64.tar.gz=8fe26f643fa81eec6de3bde7024c858a truffleruby-23.1.2-macos-amd64.tar.gz=83bc41bf699fa847df7e60412bee2823 truffleruby-23.1.2-macos-aarch64.tar.gz=7dbd2e182cfec0cf2d2e37784721903f truffleruby-24.0.0-linux-amd64.tar.gz=202f05706d28faca75d5e3cd0f9bef78 truffleruby-24.0.0-linux-aarch64.tar.gz=4faaf4edde4f6a516246b7c2f4ee80b3 truffleruby-24.0.0-macos-amd64.tar.gz=d07f27e0e29398c6de836b0049105c12 truffleruby-24.0.0-macos-aarch64.tar.gz=10cf176718968893468caba617c02141 truffleruby-24.0.1-linux-amd64.tar.gz=2914bfb81b136cd1fb5736c0a40068e3 truffleruby-24.0.1-linux-aarch64.tar.gz=429e6ada9a95ea23ebb95d01f90eb0f4 truffleruby-24.0.1-macos-amd64.tar.gz=e3aa5ab128f5d169d93f2d6df98c4e77 truffleruby-24.0.1-macos-aarch64.tar.gz=6f81a1afe1b89a40f00c9bd4216ec45d truffleruby-24.0.2-linux-amd64.tar.gz=1a826ea6323a25becce5940d8e6c4642 truffleruby-24.0.2-linux-aarch64.tar.gz=45429f35653bd8cbc328eafe81d15e8a truffleruby-24.0.2-macos-amd64.tar.gz=f68aeb26783d048ae5f78e1c13739747 truffleruby-24.0.2-macos-aarch64.tar.gz=df05f94696b4f4584a259001a3d4d1d0 truffleruby-24.1.0-linux-amd64.tar.gz=14aa05250088f17491072e500c22c039 truffleruby-24.1.0-linux-aarch64.tar.gz=3e26495f8aa7b810ec5794a69e93483a truffleruby-24.1.0-macos-amd64.tar.gz=53b6251cdd359176f9e52fe05f05e949 truffleruby-24.1.0-macos-aarch64.tar.gz=28d61b8a1a307cbdf988313c8a1f77f1 truffleruby-24.1.1-linux-amd64.tar.gz=9ef530c2ac5f597100e69e4b374182c3 truffleruby-24.1.1-linux-aarch64.tar.gz=efcc6f5c51be84d2ec99e6cebccc586a truffleruby-24.1.1-macos-amd64.tar.gz=11e2f0f62c55fcc8330cd66393abb1fc truffleruby-24.1.1-macos-aarch64.tar.gz=eaba15df3e46cd3976bedaf6f086aae2 yaml-0.1.4.tar.gz=36c852831d02cf90508c29852361d01b zlib-1.2.3.tar.gz=debc62758716a169df9f62e6ab2bc634 zlib-1.2.5.tar.gz=c735eab2d659a96e5a594c9e8541ad63 diff --git a/config/sha512 b/config/sha512 index 8029236..375d39f 100644 --- a/config/sha512 +++ b/config/sha512 @@ -1098,656 +1098,658 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.8.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.0.tar.bz2=e1fea7c85410615f76b02df366ee49f929cd3bf3e52c3fef8b848a8a6d2b982de03c325aac664c6550b216a11cde64ae571bd5a5467ddd4a8b61039d874b2955 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.1.tar.bz2=e8b6b5dafc4b46e97fd905a5396d09ee1cfd1c0b4b74b9c3bd9e1056684f05345ac1599817cd9cb1dcd410e4e3ea23d5f2fc86da12e01fd076434c1b2917f117 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.3.tar.bz2=8172c35a381adfdbf0f90fddf526e3a5c5d4590e133e041aeb339137c1c31f16a47b904c61048c29906dfd2245572dd69caec507432628bbc98bb3eb94891575 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.4.tar.bz2=fe9370f2f45c557fd24574219e9597826f4614a8c59f092bce54338a2e927d16bfd4abbcaf0203a60a35a11169310d45e79c4a33fa4d45916bd6e4eefcc7b888 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.5.tar.bz2=e42fe5b628b6a6cfc87abaadbd9140cbc5c0000993c3272740ee6e20d07d2bacffe5148213f9628d6bc6f97211c0905e55d7bd304763ae095d86df8c2b2d15fa https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.0.tar.bz2=baadb5c405fab06da091e75af6497370757cb694d50c9f76fb06bc0a281df13f4ae893df49657c7dd7e86dfbd052d2cb7297961f9739cda4089ed71e52ae7bed https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.1.tar.bz2=71ad68ef1317ce5ba51353cc226fc7b11923d9022770b355cb1180be7c2ba4bdd87b079a8dec15c09ef3ad42056018a41a603bd0a10b8124433f36b0930153d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.2.tar.bz2=440f27f682a7f9d2a99ff8c0687c1fecebd8bce494b9db48ab9d303250b8ea12dee51eed0f68d940f141d8e2699653fca7d2a6811eddc5c512a9fe39430fde3f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-1.9.3-p392.tar.bz2=3582744ce4a4ca8b497c918e129823167e80909367d65484c2a09a8e6fa185a38bfda8c1b6676742acb492472d0687fc5b6eb18965201e0f54268d835f618df4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-1.9.3-p551.tar.bz2=fc04b976fa02fc5c1cd4ccdd49948b5e289b3a5bba16ef99266b65fbb35f0c20a0ed02d5b147f2fc4469db6a7b6665d34e0373dba242ff04c95fa27642cfde1e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.0.0-p648.tar.bz2=7dd451549e9c1a43ef86be51eaa746344c424d1accbc9cfd360067c3aec20db8ffee277e1108d40c280f1b8ec0851c6e51bc448f25505508d9af153878d9b091 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.0.tar.bz2=cfe087a9daa6de2ef00a6501d568a25a3386da730304697e1bdb9fbb098617a143f073e58629876de4f09a1e8a60a48ec05864fcbccbd6733d9e1b3d309a1100 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.1.tar.bz2=b74cc64103a31b9b9545474fe202ab9f9b15569681262438056865e4dcad08419c44bb696c7dc8a18f72b3bd8e5e98201d0c3608ea652c907372c3c95cb7e16f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.2.tar.bz2=fafffbcd24eb3c55c89704e6e8ea48ad6be286bbb4e38f56c3b3d61f9bf4f6bec28882da2ff60f17f79516476ae50cc4cb8c6a8cf4a0f31b910d6153727caed2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.3.tar.bz2=4daaf8bba3a04d46e04720ff2af1469e1caa68168f5c27d1d3e0cab922055b1f9c0b26ee64c3cb46c17b6a9651ee7a11bad19e9414102455e96454f1a7929408 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.4.tar.bz2=988c13e900168b901a3a3deb4bb96e19b15205cf4c2793b56854b58924fff652946a083be6615b2053fb5285df0fd218d1f9f91562798f0386f0758973765dcd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.5.tar.bz2=c7396627e45d8df68b18c2491fa756085aeb4ec28c1cc707617cd903fcd47d4fdd3cd6ed225dccc14497afb14200b9bea5ba38f1e8dc621c4aea8b8f0f1ccc7d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.6.tar.bz2=389aa514d93d165fe299856a5348b1667f295aaeb49094bb5ff49e9c6861bac603e698c36bf81777797d05a1d3c405e37c1a00a4dbb85f262bf02c1b0e16ff04 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.7.tar.bz2=5a38bc1dd227658347114b935ad66e27fab67b8da9529a7f9083d6aac5743c40aea8c33ca95d4f10ed1d56f29bcc2c0747a3e88b87425a5786245792d8851301 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.8.tar.bz2=44e36e4918ab4c354cacdd20be30acf12f060aab808172184251186758f750ce688eef72f39ea110ab6429fbaaa5a792b1915a5c2d845b6e22a3cc4bc851c6b9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.9.tar.bz2=358f12ae2d4e177a080bbcde8b275691418884eae9a42c98161170c7b0f6029ffebf7ffad27961bfc8a50a393796934a2dd2c7f0ad2a35992c35dbd6c8c6349f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.10.tar.bz2=e7e98be6cf658eaab81486360f4d5d22f86805582feee4aa11a8e2fe6b461db69b850c7ea98840af0811910be7f534317ab5887bc48f47a9591b65fa7262feea https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.0.tar.bz2=307ee69b3051fcec2942fce075232a62f6adf6486239a89fab7bd63a9bf068e36371e67a5e42f86ed60e31b8219ff431c2d4bcf519b2c10393504942d2d90a9d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.1.tar.bz2=a0a30a805be9c43cfe52793d103e9f0dc6076d02b0c5af36d650564aa43958164a278958f7a7e1132ee5d3357cdcfaa8d59a4cc0bab027e288d935a44958b743 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.2.tar.bz2=d3218d01a18f5dbcdb65f216469a463215784170d32110f06372fda6325bc17e2c2aec1601a5bf3319ad753b123de056e6bee8aacdd7c64c4859570d40571ec6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.3.tar.bz2=4fb3bc10aa46a85cc37fb041d351b2a8f74d70c3de32fbceefebcd6e757cd8dffdfc86cd14fa6ae7d5273f875e1d4e13e6446b6dd1882c8fb015d1d34ab5ed2a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.4.tar.bz2=a008439e903b1e97eb5a66a88cf72c2e7438b12b78750411ba0ffa496c68beb8cacc2037763be1c8c8841fe9a248d4be0d0976420db0520b4b8456aed5480f3d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.5.tar.bz2=14573495aadfabb81b985aa485c0090a816f459a0db8e790a7d1bd948897cf650fef4e8aad7d2ab8232d2ebf56bf08363730dbbfbc2318625dcab04d3904b3dc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.6.tar.bz2=e915bc10ecd1129d7ed55a12fdefdd6b6fccc281cb3cc0790e5970978f17652068ccd7fdc160608cadc8556abb73a2c187d041899adfcfcb4a311285415145ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.7.tar.bz2=d80b934273b84d7ccc4e17fa07c9e0a0f95cb4a38224bd60ff73772ef7ecb3d1974e686bb10aa319642709e49789c0886f98f4fc1ccc5312a19ca19f03674e7e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.8.tar.bz2=9bf0cc35deab5f53900bc8e8264dc1b57f91a3477f241848df48109f4b5c97f3140470f523fa768a7543c61cdb7a93427866d871d09ebf8060a5cb75ac6d3790 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.9.tar.bz2=0cdefbcc88c5b9d34c08c8871c548772bd473dbaf54738f9855afddae8da5eecda607b36c546077efd0165114da385cd1f296433afe411f57a524fbff0a69291 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.10.tar.bz2=3aed1b12ca46e34fce66ac23bdd97ef815918275d91ca4723f9a6f2a2b93cb2b66f845747951593eaaf078bd0d982e06efa7641fc3e11d141b7605b086f93393 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.0.tar.bz2=ac6a699d5d08b33e7580a24c9357c0c8e8378208fc7385f5582f088a879f61e48a4654d72f03263a1dcf33fb0838b01c8c21fd39c5e2549d683466e0441381d5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.1.tar.bz2=77cb7698c66ccede33f558f6ab9ebe4be3b775a567d1d4dc12fd85d7b0f28d7bd446b18ef48ba1c879dadd76b50540b57f283e9f226e904e620afc3ba6585bae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.2.tar.bz2=9592c8e2fd9266f5d1cc780706f558e15d775cece995f5b6e933c54be7b7f2be2839b28ef1898b2072c5cdce36b830e72f967062ece4393765f8dbc88c6dff88 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.3.tar.bz2=8243575f30eb38409003b0450ddece621a589e29a4ffe219410820bc2afb97b7daec4c81d59d95dcfc83138414a2df707c925f0eb56907d565dac4bbd5a929d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.4.tar.bz2=ae16edab6e55d1b2506c4cb30d836639035a7fc153511125b578d6da8a8b40cd87650855fc6b4cf777c1fa0428c593325af88d9ad25d53acfbde0051a730eaa5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.5.tar.bz2=10f4aff595d12bdb425eb3268c868e0efb92059e6aed8683fefa5abedc1ef21d23a45e17802edd8e5e0924ba1c3277b653c0559ef4ad4c9dd2be2fee17226f8d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.6.tar.bz2=bc352df203155008da7a1099f7f7d26eb9f80e0d2e41c8adec5eb47f976529c6126bccc207563de87ccc2867d1e4c43797efbf295c9a7a4afce002ee19116074 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.7.tar.bz2=d71dc217011d154ef7b33780366bff07e4232ae77321ad6d16f19090f924ed3867c31f2af4aca4ffbc6a536b0320b676716ffb43e34b0323e81eafab13f17fa1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.8.tar.bz2=aae74010426e2a1288280f3611ba6aac842ff573f9b122fda9a4f1c514e09cb3d22281e6957b4acfcc753c94113852e083a9a80d0cae6b33682b83669c475eab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.0.tar.bz2=4a083c168d9facf3346b67dde02d9705109feef6fcd4e3c7c59c2bcb35c83597305e09ee143915fd993799a888d6d9ffffadb386bd57e9477312566dd6164deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.1.tar.bz2=58b30b00156691de2acc5d21d3255029fc3f9f2536e668298ab160d300fa0bf3eb0705aa524c9123ff09d770807cda0154bae012632b7e87120d7538f844560f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.2.tar.bz2=4c3c586765fd5afb55383d16eb9d0e7ffa5b1ff988a2b1d847e3f972a211b2401f035ff6c02d71de558cc161655438727079aafcc8ab80c97e07e16cd7fb1304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.3.tar.bz2=e66a4ca4b95496964ff4d77e36caf0894d913c1116f901c9b589da5a0e388302b64a79ad6acfe7eb1ca5917825bc0f866b482f074f1d5fed96d91e238f7ef454 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.4.tar.bz2=f95eee611be949327224b89942f4344e7d8e075b958ce3418b5874e9b23981113e4fd58254629fa9f6c2fdaf5840d44785ecf5f04433987f8fc4415df5c3e367 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.5.tar.bz2=447b28420be5b19f6b1381d232920e3c20bc894c2e0d1d2e394cc44e7859d02d177ec3ee09ce96e922f55b7fe2651918805f00fb783af3780e5f25c21f330195 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.6.tar.bz2=5f60bde5843fdc0b05bb852a2f1b30ce085dbcf7acaf105d5af951398b845c766113ff3740d44585ce3814b4953c004230eb4dc2ce8746b6236ea4b7a1d1cb10 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.7.tar.bz2=929a03725dba7de8d7eee3fe8987b858b9b9d6d377beee710af5c3e84b02501996444aa7b2c1db458aefc3e765da17cd17ac30fb0b4d77ab1e54239e72fa2a63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.8.tar.bz2=227849b5809072b3aee211125c2aad3e2e4984e9d9b4415dd8c01dbff70eb9c3758c3cf54f2b97fe282f7a42f205a2becf7b86e1e6ebb4a4d048ca32659603e1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.9.tar.bz2=c15a46ba1e89cc41523a21eec90d4e3af5b9739d27c2f2b51047f2c1db832e2773cbc04871a176f71e7124eb3f7b53262e40a1baab87262f8811a8d69d8e5358 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.10.tar.bz2=b83334e272e78995b699de28bff67accfc151cc7fb193d5c5746fcf06087643564b3a0b538cb64f50706642a620dba2cc54191357321852db42cc8c5648270df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.0.tar.bz2=82038a66827fbdaf60f404103b3956ead4e03c999893f0095109e7d853919992cab615f85cd96ba9158402b2de5a68fcbdb8b32e9d07c6f754e0591f72851b40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.1.tar.bz2=31e9f176ba61480b33b7761d2a19119a200ad61c8f85145f736eb196de50babaf278d023b274274c6a31f2173c5d022bb93e0f8d46a88223659d8ebcf6f5e278 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.2.tar.bz2=75d25fa6dc81ce8a62d02adc2e163e7c222c5946116c4880cec19460e2309457ee1a11a8eac94243ee8437514bfbba9ebee939218b6ccc7e5c1f15b673d432e7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.3.tar.bz2=84c93c85aa3733f2ac82e695c19e714ad4afd096edd6abda8a4915311d1f604453fc3fdc290c6ae1f9055d305ef400f8f8f152c5e15eb230baf7cfd5e192b7fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.4.tar.bz2=131b874ac376f42f3427dcbeb0adb0edd18ece834514ff5cc15f3b3e29b8f14697050051224d7ba2b509d428f780c653a4d7101149b8ded41ae373aab871e90a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.5.tar.bz2=f55d2ff7f2eae4d30fbc14226c928d1caff21db1f2cd559d3caeb0c07a7a3f034fa369d95f783e6f38cecb493d99aa1928def9d8574698e3edea3d33515749f4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.6.tar.bz2=06b12b2a1e85248311cf55620499806078b3b67110fb45dad9cb11cbaf1e230ce8a0da23c7de0a5abfccdeada8eb799f038b1a09980ee9572ec415e24fcf8c76 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.7.tar.bz2=49128b7845954f1f04502a484f17d5c0c6ecf8990047f5a383b2752ea9e09839e5994b210c2f60307d44ffa8b440472116fa1231ea899caf639e1b8a72f7f97c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.8.tar.bz2=24290aab4e0d48719659f8c1153d2b08020f17ae845e9ac6d6b6d3203e4a5b19061e907a214e8d4390277584ff4b46dd4a0113c6b201fa37e8a95c42fab5aea5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.9.tar.bz2=c2771d6b12f4240200926b2c40ec1bd3058c9ef213e2c6032e44799fa34b75b00f2564a0f7c0d9f972870d34c7742174310bfe3b15e2742a17ba2fa05e5a27cd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.0.tar.bz2=1be48c38da41f462c23d516f465ed34e2fe90c6fd53ee06f1efc9107077d9937413bee589d5d3384aee5c09da7087fa84864a50089bd1cf3c385ba3399e9b0a2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.1.tar.bz2=b7e1204e0e501312828ca0e30b77434b2d8d94581627196f0195ba93fb10a11046d44942393bd8a261585c564bc721313152a9087aa56b57b433ed14cc7922be https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.2.tar.bz2=e91a187a9e726ed26ddfaf09cc49473c8379545e2265934fcd1a1fa78ba99f9a119fe2c3c8247eab583389c3af7ec40a0e71da19f6ecc17ffc086759cebaaa15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.3.tar.bz2=77d9be5bbcd115131ec7c842a4449729d1515bf2106a6a235472dc96b58a56873c2d0fe6a3b824dd15ad00194b30e72a75813d8b4e10ee11cc793973130e2401 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.4.tar.bz2=a2e5409a1a88557bef747ca9b1ea65ac90e430500a8f9370023b4314cb5d1e0679a1b03761980ab2e933ac3521188e2151e521408e33cb4dde5f0bf802d81a41 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.5.tar.bz2=ed6288a4d81a740d722b43925db8f22f794cc704bf834a1f9c844e2072baceb8938547abb8f4fb1a50f92c34a8616904fc2679a44bf4adec4e78ce00e8456b45 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.6.tar.bz2=08cda5ff00b9297b46d1fb620301066b21240951924337b8b87d27526e55024e61121e51d9b35feea2ac5eed4027658b39ff487195140e7abe9158181c3349af https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.7.tar.bz2=3cc5695814c4ca49b6a0d7790093e85f5a359c5411618a12e60f4bda75c3635b94736762983e287cd04ce3ee3155d824bd9bb202aa929f85387a741d1685dd06 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.8.tar.bz2=91e371298a6dc1083c8b6265cc8d3d388d17a21d59e0103bba7e68640f80bdd12b98547584b1cd0feb7f8dad6ad530ef5660a154075960e1a76061d534609296 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.9.tar.bz2=7e3d0f7f42d644cf4eecfd88801afe088260d5fc8f490895378d5e4ede76b2bd67959b9803db59f7b19287801df43eba920885aa1bcd29f60d225745d67093c0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.10.tar.bz2=64683129da9a476d268ffde06bd7aa1c67b3c7c97b539d856833ffb127f458a55176d8b4a101e60b18ee923485097f3bd98e8216c3092c3d0527f6111cf7a051 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.0.tar.bz2=cada908be34428bc2f302bad6ebd778a2c7a8e979476e00e45c9444b65d7f48f397b838549d56ceb91f0e5593ffd663e9facc4ea5f5c6a4aecda85a5a1136496 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.1.tar.bz2=06cb5f2f0c0941802119dbdf34995446d6d69ee59eed9a5e9d7f9e7f0e14de440a9e77eee330357fa305e81ee39a6868651c740ebc91bb9a2085a74b33685f4c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.2.tar.bz2=23654c65e6e62354857f86098852af0ba50a15643df5e7f6fc8b710e35a3872f6eb7dc1bf9266375361f696d8ded0bcdb9ee9acdc8d0c975955d299292da7e21 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.3.tar.bz2=ac02a93a62c55a2a10dc260cd52749bd8f4bcf1a2d43dad3cfd2e5c0bf7800c51a5b00779526d84f759f6d50ce673c7f3e526392c4ab68322649f4fe980f2ac3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.4.tar.bz2=88651ffa2f1623ca3b93b60a591e828ea0dcfc73daf1eead2629531beef291331f8ed1a4a33d682828ca60bacfdd7fea77bcd67f1a0bdbfa9d1e4f173da53208 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.5.tar.bz2=001486271268cd1d2252f46b32001b25d493bbbc8ce981ecb608eaf8d2c2e6d6361f6d9bf052b9b2d7694e228bc302a1082689f2038564439705fbecc00de1ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.6.tar.bz2=a48c974f341cd10143eacf46a9d0eef45cfca3ed91ebc9f7fcbba73d408408eebc60c55e15dab391bc4a9ada6777e2be3ec4b9e849927c5782f4443a813a6ea9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.7.tar.bz2=b9e99d1df4a772441edf7fa4e05dd5aaa62efcc5a8c89fee68aa80c4bf1d17ad0e5ecae5682a10d2eb0ff78ee79c583f0cec46f5ac11ae874126082b9f8d76e4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.0-preview1.tar.bz2=8fe71fdb37955b031769359dadc5062b6c15e0618fd8961c932212a6a2610829aba8b1dbdcf4bdcc2e133665e043b29088f714874e3ef3a41d688b7beba78928 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.0.tar.bz2=c51f55af33e09ed425715dae0dd59dfa253e909bbd44b4bf3dc34452656438c23a754f6b2ccf0a3e878463519043361dc7ad8a757c87a3ae0e747599547dc7cc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.1.tar.bz2=fd09a4d721388c2b9f2fd09b68175dbd620e11df02ff7cea4e438d3205494a9883c25def06d6c1ae4207e7f82bc48fdd122fe12630bb9af9da451ce6be19d86a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.2.tar.bz2=2ade19f26f6e2eaf65a8ac3e9ca21cc8fe04252df58f9b14c6d0f92aba3c0eff27b1c68b1b05041496c367051e020dca7b0c64bf44fb07b4fbdee9e68b78fdf7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.3.tar.bz2=11d81f71ec3d293916bd6a00d28dfbcc93e721d12c6137fd58febb79e7399f8fd1ab5a66915863311db9539009dac06612a4b2daf0408fc1f1e84db8f8f4fdb8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.4.tar.bz2=bff3db8c69e85d503bb0686644f2d60b97c599e0cacbdb7cd4b18d630c50d04ed0dd90ea97be01c3b3220589abefc1e4dbef39246860e3c70993f0f2de738053 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.5.tar.bz2=32f69f0e33f7f7d41f4c0e5c5a1cd859a4c6032b0978c317ec3d333da42047b7f8f8dee9c4d72afe890b47b9f17901139142cfbbf228018d8ab5d02f7a01f0a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.0.tar.bz2=f7fb515855de32badd6e5ebbb03980312144b69dd8b696fb56320981e4f0964065cd13853a34dd321fca1ab160510dee8fc3b6c99f2a5e007e6974d70a564db5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.1.tar.bz2=de183d962dd4a8c95bea54f8740cc34931c2d856783fe7506f0252c5c71bb7125db00c9c7eaf8e80f8fa1c97208ba4b2a4d6c1a76e38d2b6251a92166749fb37 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.2.tar.bz2=7589f0292f72a2217e5024b51791f9a719ff0862bf39480f1460b5106f1c11172c72ccc1fe2a00b166d80610d76fcbefe64b7c9df0ed3a72c58964c2402982c0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.3.tar.bz2=d79cbc4812ebe9b308a145e96f6e7f64c2692b04370ecba0bcbaae5427afcc7e57ee83b4537914b6b90494fd45a11bbf2b27999a7a74c7fd569687a93c43961f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.2.0.tar.bz2=2d11ad1c89c1ce9873dcdc87c41cf38105b00e265277a173d721fce4bd350af73caf01fa4a5797e926f1a0cb180f1c6e969149d1d524c4df797939cdbbe9657f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.2.1.tar.bz2=cbfe8a92e732675ca1f7d51c04775dfdedec1b9f21b3b7f0760ef61b7c375cc4b0758a17302242087b55faac7c3f1217fab0f6a2e713a05dac082cd6a5d5df3c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.0.tar.bz2=172189c66b3c721e7413f0088f50e4eb8dd80d87779c3a4e74231f7036eeaacb8e373b7f5ff017f8aa274c1e1c872066f2f93485a2a369a7e9b442d157840bf2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.1.tar.bz2=829fcc1a3d878ee28e89a58a2f6d4221cec115d241a007b048953672d57548002c3a105ea4e65e344137091baaf5d5c54232a54c116afe03d0f3d61c07547c2c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.2.tar.bz2=ec2e7bd32e2d574773486e1c1d733611465765cf14895fa6b017b6ed6301ef40cd062496a3926788851e7ff3bdd62b488d03385aeacc66bed53aed18a6dec225 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.3.tar.bz2=79f822725d4e3bb7daf416e736d87f3b01c21d011423a2b3c65d9019a47ad4df256fd4a1f171961267ab8f20387019fec8f3f4ebfb6664f682bdf36914f6a329 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.4.tar.bz2=aba571bed773554b18863e6b942f2bca743729834657689a016938a34b7e4352e68d9fffc440b2fd4fcdd1bed4d1ba5dde689da535088d7ff8ae7dc364ac3b2a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.5.tar.bz2=0e46655028859f5abb64d71a5585db638d00edb9d20a487739d307bc1dfa2fca4ad196e04044dceab0e279286379e73110590c772a06786214c4eb23557324f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.6.tar.bz2=177e9f0a193f9dc45f8653306cf6a87bffba16780220fedbd8be67a3608a8f8d370011f3993590d58805a8ea4833d95196385fede4b513d908fd4263a82f113b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.7.tar.bz2=88bfad0d6258372d4e9739613a07352e954db3deb43c0e2d2a176f9cf55bc5e2df73e4cb04bda75e2dbb210799649f020a7284cd2acb5fb92d2b115a933a4f03 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.8.tar.bz2=3710f83ed7f3f30c9b5d3dd515c168534d01811cd33f20d3a54e654dfb5140afc8198f46dd823ac45072a83d844ad866af1e2b8265f54f9997356be88fa254a6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.9.tar.bz2=078ce0d7433e63d947fe4cb0cd5a14e6f5fca00b7309d7288359ed90989dbf618bd8c1f5f31b607f3ad6b0cf540d715dec2c38cfbf71cd170e572321598bde7e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.10.tar.bz2=f97f877f7afa604dfa7e8f1b399a4c034e79b616c95bd4e48927d88d1e8adf8e203901fa178f93c6af4511d26a38e2d8cced7225c2e75457bb02dc27b8feedad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.0.tar.bz2=ad619ccf77132166151e4982996e93135fb91d97701ef9aea12b6bd05e18e585dc4d5fc34883b3369ebba15474741db238fb90192eb273dd5428864429525d9b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.1.tar.bz2=9094c9bbda4c3d830382e89e4e1c24fe43cebd9d733b6878a43a34d679092bdb6c7b23cb3cc08d4efc6e15449c68862799713006703f95e2862bad1c0b0bb94a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.2.tar.bz2=54c8fc2f2a99f834292b83ef8e68e2b120f20fc4ff74856c13137065b95262f62188ed5c6ffea8fc4b0c1034d9f8a1b497878d6a581391d422994911f5fcb35d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.3.tar.bz2=b26daf1825cbc9cbe51e1abea84f3aae542beec7c26628201325026b4d4bdeeb46f8053a1c105973242ef532e66bd4eda5199dc1aa4faba1a6393f9cc126d856 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.4.tar.bz2=e5718fb13f2fe7f6b34fbc2b1a6db95576fcf9cbed481fea59fd4dd28d064104a912a1000533810221141ec09e9fd8d1e59850ae5a26ae441bb6d8878f42c418 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.5.tar.bz2=71ae2c5bac04a97694310daf76e896a1a02c245274e9c96ca96740f78a0e245302564bce757f1688d3e83b7c0c88989f702814c434101f8df786c1276a4f5a2d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.6.tar.bz2=1693ebd7cd3a452f51ce2ef32144aa36f6fa8121ec68cd0fff715db8981214ea9fc729099e4495e1e8bc346409551d4b93c6c3803fe187fc0c25360b80caab72 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.7.tar.bz2=53b05c51b970a239fab953dcf3bb433f59465fa0b4dfe58066132a1bf6247cbe4adcafe41b219ba453ea392f88a521349df14d58a91a855c53c9b9ba4cc16c4c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.8.tar.bz2=b9b0d99e590a48ceedbd1d6318c29b8fecc12b02ce5a6f1555593eb1b3e284c766f2f8800ee3070fb7a041593e4a3806d53590be760381268ef0f9588e127b08 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.0.tar.bz2=90491968190f4809fefb4068fcc37fb7e2ef179454f57c90bf2af308541f1ec175a72ded53202c1e86dbb63cb6b47678656f753574bf6ba525e982f3278a7602 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.1.tar.bz2=7f9ce1b6872352a6feb539948d26dbdfefb3d4225ba582ef8730be8fd85d5c350bd6f21346d43cfe26a8501c4ad145d733d94da5dbf25b15e7610ca037ad4227 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.2.tar.bz2=8544797f46d54cc4098227809561023bb7bd01eb2330724a94921c5a79ac64b44bd56069d7a77a3e6d2d3dbc504ec25157daf7fdf921c3acb3b4289ce1bbfb5c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.3.tar.bz2=fe086aad84ac7fe8009ea2bc16f0ccb7c60a5fc9034690af38fce1a05582a6226dc3d7b80d08d1952d03a9abcebd7b361f5fa2d506d71e1f5aae9b5f31ac22af https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.4.tar.bz2=ce06ce97ea1554972b00781332f126e767a3ab98f5023d3dc83195bb36b954b1b497961c74bf31340827d9a5de2e0bb34240accbadad550b2e692d26cb097d4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.5.tar.bz2=6fa248065a48cebd1e9950ae07f3e653b3e29e369fdd914908be0b215257fa2766b0182e392fb869af51cd498e258435f6d9b45a03452356dc08da0e96877ae4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.6.tar.bz2=ce912342033f395ba6298051b081c89832f656d61ecf2064e9568692552a938599c816d2cd1fd1f9bee721611f890b8329985c69f4d5b2bdbfa6635b48afe3b1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.0.tar.bz2=cbfc7a1cddff0385187a7bf2eb9dc71a8d14912cbbe4e9529b79414e49e681302ac9009b7c8e6fcf92a9f19a0ca5053a6ed25edfdb510e3e4e247474d471c58c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.1.tar.bz2=29b99b3e04325ceca89b64c7846aeadb412215270f6f7c390fb1e275ebe19b2faef811778c0615b2d4720ddd942a2cc209c72e623f559e6c04e78849cc1c1b1e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.2.tar.bz2=f67ab3ac13ae90622fb3664a869b0c584b97df0500384a28bda9c5c36cf2a27ac1f66afafea08bb29bbfbfc1e0ddc444427993ff4163987f5510c4158a90a96d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-3.0.0-preview1.tar.bz2=aaeeafee545dd1ba1c4df5b7e46e82f7e89e0dcf4fb10677b7e177e66f86e6825e85fa5ae3e74062363883768b3485495a3378f97693d45f675a6e547e989cba https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.0.tar.bz2=3e78b2a73167c3680aebb1ed015c583d4f6c58804d3b272253bee2cef37fd2d1cb3852fd2b408f4af1abca17725d923a1f28d40d2a33896e5cc21c4c6711d7ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.1.tar.bz2=14e7962e180b9ae16607347ba5360b9ec086eb8055b88d2f60b1c9284fafd93fea905aceb441f07d594a34b53647520f9dec38e4e9f6ad3e5a6850750d981a27 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.2.tar.bz2=5b7d88d4405cd45a6a720295cb0b7d3152dd757aac996c8d1a576c6ab2a45cf9ed0b0ac006423791cb038a14153048e96308ecc8ba1e761d4b7671dd6f880d15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.3.tar.bz2=320734a124e26de068457237b5f973278286d7e529e92405c1b856b6e57441b5e76c59d0f519fe43fbdd2c8c48c9dd37dc5094831c0e6a81d804e88888ab6237 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.4.tar.bz2=ca34ccbfc24adc4b2c6c5c0e3b27bd2754c2c5be61e9dfa7b919b4902174e351f45128d887c179c37ccd5163a7f51c213fae96be4d0c356e2d7f96acdd4f164b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.5.tar.bz2=fabb151c29ad7ef7432efd4d51ea1e20180006601617ba896f8b1379555f4088d398e96f7bddd7c9815b266acf5ea94527ef4acfad2446950da6fabc3770f788 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.6.tar.bz2=2728c38987d41169b7110fce2b507b5d3e971d5b043b60c9a3b8d6d385ec2a40d24e464f6cf081844282d6b9fadd4abce670e79f02e4606bdd5aeacd1b57f773 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.7.tar.bz2=f98f4dacd9d8c6c9515ddc2597da8b868c66897577cc5a76819db742f3649881ef5a7f85a880f1e359772b1ab08750dda6fa74ee826938e06b93a9848699b929 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.8.tar.bz2=47fb4b41e60b1e536b3a54e18e9ee92aefee7eef92d49716b46884b2a3d73a02e88e4815df64baedebff80e9e17ac7b0af6e65b406a2c53a4f90421dbc948415 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.9.tar.bz2=c81ad5e16aa18beb7c34eeee68ffa96da243f99ff69cf00932ad5ebe427c1f80e3f7fee31b15ec0d96c1be5c2007dfa6e96c38114f61e958c6b7ecc40270db4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.10.tar.bz2=856210b3eb2bf338c5da2668e830b95d48feb82c1c4407371b18c772df12878703a9eec948a2778acd098bcc8eb402ba6d57b2b935766847f3e652c3dadaf6f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.0.tar.bz2=6ea5e6338319e5d6861d420b10f93b5e6634a9925380c61acfbb258b6609ada76bf2a6b474b53a30b0a81f0dd81cfdd1e610b68698df73f69091f479ad39bc63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.1.tar.bz2=8e8e4ef137b9394ee34b760dbeaf4d23953bec083e5775a423ef6c16b75faf8bdfe99df975ab6b6d762509536b017f3510a9a5e9ab63060208edd4d2d96371eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.2.tar.bz2=756c9ecbe3c9801a0a364143478903318c524f7aba026239a1fb42d7390f74110805543a9ac2a9f8bbbeaee48bc867fd15d400d8bd46576bf4fd417d6136a3b2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.3.tar.bz2=594ff95e33d0f7af7be448a781ac68f895f8344ebb1c9a03898813baa5963024aa84b11baa405fa584070e4195fbfda9b908f1fe171f75f19e5e1d7879bdaaf9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.4.tar.bz2=a9703c6edcfa2ddb87bb73c070d963fc4d59599919865be9b1d93989906698c6f3b9c4fd7f2d597e5d710276555de0b5865676b92aa3aba1f1f41be4052bedc1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.5.tar.bz2=dbd91cccc0a00a1ca7e901d56f9840e62e4f139ff4dbae530169f41897d06523c7e8977138ffc6212e1b60589f3091a4e2f6b6714c0fad22fa65e442b248f61e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.6.tar.bz2=ec967415b5bec95154cd9ff8338a602a6d005fa647afb1e1cff54a0fd4e9c0697b9e952c2dfd8e4b30068a697f5391b9cd165d5d33f3b146fe35f2a8fdf9823c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.7.tar.bz2=b8786ef31db7d950b1309646f81e6a99d56b76223bb8d2d20ae045f09917332a869b14cee1bf235675c7d8eebc6942b5ebd6cf0cbd290ea75d9f9be1475352f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.8.tar.bz2=4d949a715a04cd45f6817b1b26093f7bbf03ca630aaa015972e7d0ca72bae094add18664e1489ebf8ade27c160d2fbcebdb105701d719461af13c4d5fcf2cd22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.9.tar.bz2=ec6cd8bd90ee99aa6470d9d524d89531f96f992efab8a9d6a709a3959ef4c314828276e67b84ed97d415cb3e0c837458d13732dc940c93d4d069d9b881d7f92c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.10.tar.bz2=1f60cae30581e3467c7ec07391de5045f238b61a49661ef0cf76d72ef78d220b7ae70b86b1e72625cf37085b6507fb1dfccfbe5554195f0c6eefaa996e199c16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.0.tar.bz2=343f5dd6703b6b58d61fabefc8a50ce5d02d98c32c8b4e52b8deacc9824369a9f0dc8faff69e90ca7585a194a4d742791765b16c3f5e2417b0f54e0e6f6220b4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.1.tar.bz2=aaf7f9e30b3998b8586764f61d09e434c32aba7479aa79fb6afa71ab11c067384ef3a4b9215a1a3639da807f4f642b9efc62b37b55e989b7ed7d75cedc7cab40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.2.tar.bz2=b834ef95d52abc1f0c224193391bded9b4d2089c694378dd5aa45f8b2b1ea41b1c300445f766841cbb8cdb1114491ffe0095f518e1600746f5f583dd0cff9c1f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.3.tar.bz2=9df5ba9423e0a8af9d825e59f8c69889c70af0f6d67f96708a02d7d61260c83474e2f7b2f240af399911bdfc56850255b4f34554f7013d0417a13bb782403aa4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.4.tar.bz2=1d4b55a6a34249e82880fbacfc1d97a093600005deb982c6b42ccb14bbd7bf1db14e0f6d73bc25f1addd72378850f7edcd63738f2b3cbab569e34e89d563188d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.5.tar.bz2=29a76dbb28d5b63ee0ce64cc2e7d022118350a550d3693b8e38d559bbc4f42fdb6b63af4bcc4ebfffc5c0fbabbf2e18db7228e655de3bb416e344a61737870c7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.6.tar.bz2=122322fb462f8fdcb065e6f9d9968027c320ba9be9ad6fba9011760a7296cec1892a0780d7436903cb7763f5d18cce11860c5c7fce82890eaa139a94d5e89428 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.7.tar.bz2=0c17f52a74b73041c588ed76f73862d179d7b9abf9de61279dc74ba7b7f170179e0db5672a403dcc209b6dec9a865a88a382f5df01f5e6ba4cfe0f66232b4a15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.8.tar.bz2=1a30bbda34fee311762a2f05ac7fbcfb4f373f8840f86b9762b0c07f1cd397e3eb3be83210221384333b625a243c7161ef4f368602a613760391265309e4f304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.0.tar.bz2=edf31b2dd02208c96be25c2f4f7d35e2b122e5d327133545e16038836b848b90f81079be4df47c5493bf4ead1d464fa72a8d0d405bb2509ab0db6335c58ff793 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.1.tar.bz2=91cc7a9cf493c7361f3d507cdbb8e258b7dd710100cca8053b77569c07c04fbc2f72fdceb9fd9a3a5d01f4c423a206da97730c356d017157bc2454041e1f1fd4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.2.tar.bz2=8ea603a27560ddde5fc639b86381a303f886ce80384d8edd0e7bc806f10649760d75a76dd5f2ee445371254e727544ec12df49d7fc8876890b73237f4eecea1c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.3.tar.bz2=c42f24668695be5c291836ae6f39b4366e0357c9bb63cf8be2ad36cefe0c6d19cb921a43159d49d4d062dccc15902ec1698a1a6842d13ccaec45c6cb628da4b7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.4.tar.bz2=3ac89131407faefde80bf2e1bed4baa51c371ab4bffc18c8dcf2624f4d1068c9f933eb66486a2bc7c6c67f674c5bd06747bddfe1f1f9dcd939458a08e1bc6108 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.5.tar.bz2=8ca9a9387b8cb434828fa36e5886bc8a28d70fa46d3e20df60389880477fa2ee54fe63c0c14611a2cb0168ef1149d205640c6003e6a507400ad5fc34fa641bd2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.6.tar.bz2=52795cd7d112ff437adf603f58130ce539209628d2224a685d060d67a07325717981fc6f91736d4abfe014ccc8057bb40a097fcf85f5046aabde0019d08bef16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.7.tar.bz2=bc179a31c746ac6e632ce08f57a8f403d4e463ad72285c0ce008d7fa39b88a22be3a43014c9eb019f6a39d022f9448ef151a8d03e89a4d2e767c4f77684e3750 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.8.tar.bz2=d693e3a800c2200c74b24c207425f41cef206a0b3f20625d18b1590e9891f409d6643ee0e7ab8fdb6e1e85de6fea52c6a307bf8f65324ee0f9ac33306ed1e876 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.9.tar.bz2=4b6cab99f6b7be7705efa5eb6f321b5eeb1d1c6e96d4113bf96b57378aaa4950b39f40ad555f630f17d216d235972f028617ea43c28b1970772ffd16be3d9a67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.10.tar.bz2=40bd90d231fcedbe34ec9963eb59645fdd1036b03056b9b8fa3b56900deb86d94e2a256f90e6aed297288d6797857a3ef9fc27bc6ed05c017b5c8e8ddc465df1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.0.tar.bz2=c1df39ae526da7ebf87510017d7694e6f78c59871baac4e9c5f2d13c22cbecc30925e2783ad93f741110b7c3802e9f25a6c3ff85160b33a4080b0f1fb02f7740 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.1.tar.bz2=930f6f7f654fa14076c84365fbc771d5b09679588c4c478d8f6944770c53fdd37213bdad159fd231efbc079b85ab7ab648b0a97fafd666c38d0e280046c6e2ef https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.2.tar.bz2=cb62ca82d57dfc0e21e532d4b523f49c559c4ed5f3d73adbd9d650bbf23c694d382f3cc25eed6a8630f23e4780db127b4b8b6ecf6fc24b0f6febc820dbc6af3e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.3.tar.bz2=708209a89a18cd99c02392307d2bc63e46bd38c72c8ab0e982b28285f8e006d4ed77e04da3900c880eff01c3350033cd00ffc3be1d3a12c4ee5b263282f0dd05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.4.tar.bz2=c94f5b3129ff41da1b07da1cf742592e9822febf6bcfd0e9eb7145c00b732fc66625056bddc72fe9b631742c70d0e731cc6a9a16a089c7b559ae963b072578eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.5.tar.bz2=b4d20f79eebc5496768fc6adb0735c6a23cffbb39ceaf9c2da42851ff7842dd2318c07877d89564176d206e22b8824d2a3c637b5ef02c5caed0b2b5276581032 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.6.tar.bz2=a09ab93c3d6936d30065236ff2abbd0295988a9359f5a76425cecab47af0ca5b6829530d1708e9ddc9e78d1fbb7c0359b9c7e90227870537d099ccc89c73844b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.7.tar.bz2=f6086c879f8737eaf6eef4461d23270e9e43811186a22f35ed69a8303eb933136e7a690bce2d9e18bcff730725292075e09db0f2384d0e26018b7f2a0df70b32 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.8.tar.bz2=62c631026560ee310a849483f1b48690075477942ce86e0564e92f5ca7834553c435a35a1d6d8dd957c3a7be24c63c32104518995eb3a96e61066a04887bb0d6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.9.tar.bz2=0f10741772d2498167c1eb2aa263292f99748518a4ec03dc19440eb5befa075fa69e68b08a09af6eb2e02e462ff20ab10e4121cfeea7bdc938c04762d81fbc4a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.0.tar.bz2=908132a47bd996f8c76bed54078e71abb154294f97dcba779b4cf0d3b82e31c4635dff89e97d5f6b4f1d797d854c6d020afdf9dc77b10c0e522755fa194a17c3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.1.tar.bz2=39c867ac0af48410c0bc6b01f1ecac00616a59cc07f3f5a3e7cfe8f786b70c7cacab65550dfee777d11b8b7a3ac173bb22c602df370eef6a04b40f8e539025ae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.2.tar.bz2=2f04566f6d778121281bc6ba23ec57ad408049e649b351585bc9a3184848c71873910e159f7fd3909c7372378152f5ed264070aefd45933b97980e80f6df4deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.3.tar.bz2=940375b11c525e3f0bf00e19013eeb886bf85b8d8b66d86d53740170b0ae16b14faa491dbcbec29238f875f84204cb0d52ade17c180d71e129cef5254f338f0c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.4.tar.bz2=1c9d41d7ab7bd69d7e3baa3c4149b1938cc147beb2a63923dadf2fd959732c8cc824e2add0946bcd62f44b0e1d509b80b4796a5929841cda8d28f3a8207b17df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar.bz2=f47443a53e3008cb7b7b7afcbbf1adf44887769e42b3defafceacc1e50e349c9000b98010f853c6b7cafdb54b85b640732a56a8e11ad8e58fedb5fa4724f68d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=fc1c9a08c48ad91edb4afcac5244f386d63940fa906dadaabe02a1eb025375443c8174a6ad1acd50f4583d6c57a88feae86e697ec15c8a25bb49f280b1357783 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=aa611f7c350374d2c5c8652a694022e038cb5a65fde795c43e927067f155d0ccb368b281b1575e679b84cd7ba6042216dc28149e138256faf62dd3060ec0a6a7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=ab04071b90ddb81b68f064fbc9f2bf726729220e4359113556d9b71f3549483f122b796b3b1e4dc8404e6f44a4bdd02e9db2c8066974acf190448c4d5a97dc6b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c769fd3814bf31728b83f2bcdaf0928e6423150609f3db903631f9db68ce0a0f9c87bfce5f93983cd962662148a66cc55f5f42bffc1a1b5a237e6938726629ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=c231f8ecd46760db49796519645bcb5cc9fa1c0582abbc419a2ca81805c81fe8912dc32dcc2c5192ca9ef0d502da8f61ce1ce7ecc87b29edad3a144a8a0c200e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=b41557c83084c8e5bb263aa944499932ce7d84457e4e307f1cffecf62aa44f8543a06299e38fee17ba64f8952048612f9289e24c35acfe2ba02b913c15dc1405 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=001d10af5833a03b42d9a254bde844731d3a796d98ce2efea90fc68e4638c7cc3be31a34fa163d4c5ac18c60e685e5cf2ccf88fac46ae6bc587a48ea35cfb09b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=0a8681afc19372ccd9409bb017967f86c2e6642e083ca47ec904cccc34242040f710392d916a69a327ae6a0bb287d97bc05bbe116a1d93478ae282b32e5fcfab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=e505ff2f00334870d07f4ec9348648b7f3b91dbbad1fddb2f60f7a38572a66a7bf081fc7b386f800d86113aac1ce3cb739c86cf0d6da2bab916a4432ad557c54 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=aee6000ac886cdd4e4044a7b43ab20d54d1e99f6b893af69d0d7e7a202f4ae861f939898580c60996b0bb7c6481eecad69a20acc83c75cc594dfbfde3a22c476 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=86f4e6948eaf2586e018570f09232b94f907766590eb75f00992531ef74676070ac5a2308e121ecc1c23388ece4dbe1ee8a4b2a7ab99ca00a28d6583d6df3d0a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=1bf867b0af84eae4e7996047727fbc7ef459afd3b2ca5885f658a74d62910d00eecddbf0c11b23265c625c26b420421ca5add40079438edca8eacd8b5c0149a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=92a3b217079f9d960cc4fbb5908f7fc7ef71cc3ec8e5e404341e2b8875534c0542167d03b61577776e0b0f049f9ba2e3235842be381b4d484845768adaa6e3f7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=608f0f9eafd72226fd1b39f6c92d0f1c6d3aa7ede096cc390fc4f8bee4326b0937767bc6de84fff536dea48cbf9bdb8ef5598670235e013ccd630b06c5b8fb05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=40cccacc66cc4b7891b01c35375ca913efe008157ae540308b649e14f5753f34f1827861c6e16b500c49ac95e1aa22e1c01444faca5dce71f981452a9e0f1b67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=5a33d600e55f7b8755725d7e2f2102cd76720d524d7b378d85fc21ea8d853166dd97e2e615ab18f9e44122e3404b439dd123f8e23d6ade5328982fe72db2af0b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=37e3a4011b3603807c6e0fd48818b256caf272b3720ee654f38c0ae202cffa21600f9cc751b5335b57905ce67db185b37f548ac9c84d6acfc567f0ef4866635f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=6648c1b6bd962e30e89eacdb6130b1788ccdf6ed05ea13eac32eefc222438a298de8121937262851cf5c4cdcc1a804d5d8bf19667819db6599bfcf79e57b0e17 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=ac690170a6801fd741efb88e67961c0c3d717029b3bd9c6e243074799641c940416fc9cde7b4ba2c56e79551d6cb7fe5f7977649404da0d20d1819d7d3ce0bd3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=e6edfed2dd9d6649c47b1dc1b102f933f76a148e6dd8441add2316073dd255cac851e972366e4821fcd665e55b375fac757d189b7552baaa0b49e82349c71b77 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=69c4895076690037199f2a9b98e622f6b5e3c23ea02de79bcade6193da2b1b88ed0c28006059f4ecc502298442275e7e7324232de04a2f0ce430665057410a05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=175777563303c6d6a04393938ffa7e36e0bc6db33f7d2cf1d42ec852b41ea26dd7d50569eee4cb00497e6bceae95592365ea6718a35451e5c929d8a085aa9649 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=b668f0cd853615fec38253b264115ef0fedd21a7879a663ba844f4c3fa8b87e5ccd8adffbaa12ffa3aa16b108a2a439cecf827e7d8e19ec8041d46e758abc391 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=2039b1fcf55cca35ed3c8446eea45819368016ec1a05a5fd4c6a761b54f5cd56cb3301d5d2674af1ff75bda41eba41b7156e71ac48b88ca7a6474f0e944efd89 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=b4bb324a53c316da488c5f60803933eade9ad5c59a6d58e76787d2dd89dc2d2f18016d2ac4ab0853a40976b4beab70864a9c2d23de194bcd63ad089b2159fa7a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=3a9b5868d707d6a4580a44ab7504cb46a2713f78918142b185f0d62c5b7e0dfebc1ff551b2a52e9726befb70abbde867d2802345a01fd3e4568b9f58ac83c168 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=39007e736b28ca599ea244bf4e54b52e86597c950c0ebd8f1696a02c8eef575a734d089b52c7013d00c02aeb261dd7e2facb45f24b34c75c4bbf14cb8bdc3ae2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=0fc4e39f7382c29fa2119119a78040c611fc8298bd4765025599d3018775cb2bb28f51d38efd4306e9f04eeea20e7c2365f2fbba1233e0494a8258c3c184278a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=5dfbcefa70f5b81887d34e776713bb9c6f7bcecbda8f1c9561daa3e235c725417ab0a930f594303723f226d36306e6a73f228abfa3533280659ab387708182da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=00936db899bca33dfa8d0e6ffd4bd6b0453ad5823a450e50e3a055ea696dcf94b317357732e26208a6f34224c33a8b4a6130e5613262d62381179a52cc8f3a1d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=15b816d190fd58382a2f6f6e087f358b54003f186462abf59dbef545af9044a2b9c65576119185adc6bfd9ebcdb49f03a2a268eed4fb0f0d37aa35fa18adc1fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=3a481c35668be459688a66e4e480e11b4e58c13aecc3751da9de8a3e3282bb4a152128528a804742aa0b4380eb537b666a2b29fd79be0d6968c4ff1fa428eb7b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=c604871b39f396c539c52dd4849d1d42f37530003601f60162860efc777c85e7e1a1ee88a77cfc9ca8ca20f0448a5dde4f39cbdae67470d8d2d283d6fbbf0239 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=12042b5c30179da275fcb6155142ff2787e86cf577caef44b7c4d8175ac671cd461814e9a19f4c9b1e78bbdf041fdd06bd463aa972e194caa91e80778a56bce0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=2bf1c13616b2e255b8c269bcb2f979a45009c079ffdcb10a13e238e5d13b0978e8a974bdc1e7bf8519e15264ed5f577cc8f85a5861b3ea3a4589eb78138a3f2f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=2e7876c8c8a1f4e3cd1913023c564d9e74972ce427e85765bbe9ddf237285d7b96017c1ed17868eb912509881e05aaf96e4a6b353a69989e61c733b346511715 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=06de4f6f2761bc58d94659f826c7c86be50192b7dfdb5c8b6710b384a50299ad161309e2a8c333fa5249d0e7112f74dd0c0b0faa2950a6e74bdba68833f68702 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=597374487d196abdfb389c79d7d09b81026fe3e8043f8811497646eaf47bfa432cfb96e2af9be1a35ad2d05f2f5c800afa3f9e5adb0ea2b2d31812d219232a00 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=ba56050ce3fdbb9117c6c9e767f818ce3d467030713b7693ebb039f6888bd5d7e5f7b1986ed117414037e56e550707c3625a88bfd5d00d7319d0c7ad642fc811 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=395facf2f7a15eecc94e554a60d87c269ba70c5063b24b7bc504f579c0d12a7d858eb0b98c502016ff8bf02aaf11ef765e2291b542759fc96affa186206ffe4f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=d1d527b2e95e3a16f521214c5352bcb379b946e8be1a943da872aff0ab4b8edd93a507d693abd7a8ef1cd5ea1ee6e6bf1f838683f5a447a6cb7992de61f744ad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=e47a50392c4f3ee13a565103e0c5f9474ba0a8f5ff60fc9fe7d290b7f5f9a9ddec962fcbb103a8d3b9c7765a28ba59237975f90aa3637a06a128802ede28b3da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=77fdbe62d1694732a7307c29b4f45d0dcab7e8a729f04f45b216345336c5820715bf3f8f7cab52175c4ca1a431d867c7feef7d802dec61c2cffa4abfa8746e90 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=24da0cfc93ac536c505dfaf2dbddc7b312a3cc5c72a9f47e28b3bba760a53b584422b73da8546ca01cc44d3906a31eed7f27a3dfc0bb574f01f9c08f7c589d20 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=aee8267c4855e95a55b7ab858ca6359d635049743b8e38d34ad1430522a0cd746cd572e77884f7e10af14a731ccd8ebb9cad6ea035b0fca4ae534913a38f43f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=ba3e66bd3dde28e7193b90c44194cf7732d294e592321c482deb3b31ddd9655630f5b04aa89a43eb9d1bc222da10884e9da332bc9da78e9e1b655300db52a444 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1df8a2ad9256985b4ffb3da5b545af4160ccebdd8265711d1b642cd2285a004a42cc2ea51ce3ee78854e599f5196c66448b8e0b043846ef6e6bf992828aefb6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=cc460b3d17d460abec27d77f734e1c1e7a649769c3374f02d32a4ad00f989ff3150dab926a203b209c92475100667dd524774fc37633d71f98737ea2d8868968 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.2.6.tar.bz2=335cddbfcf26c82cf9bf9c7ec6637c1c3e30e1b10d00553f5dcc60822d40b560e412d404fa65faefbd1c9022a2d7f0e4d93c25d054681d109c7cdb5968989005 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/24.04/x86_64/ruby-3.3.6.tar.bz2=5531048adec175ad23e3bb050ba6295352cfe17ce27203c356145008434107831186a09c00ff158f4ce9109776f381661f3047e828a177906a52143096249dbc jruby-bin-1.7.0.tar.gz=1e466a3f8d52b553c9def09827fda4b8433576b0262c40ee505602754521a00defd821d5ead5052be52baf281c6cb080fd03a8b15c628a0ee67b4e417633e5e2 jruby-bin-1.7.1.tar.gz=ef28381ca30664cf450f9d3df9927530db771d30e86ebcf535af38e1a7e26724ae2bcfe8487cd2eb349bf609a733a25528aae14beab4d13d298b5604ac7353cc jruby-bin-1.7.2.tar.gz=8155c81eea6743951db7383bd9f6b1750614927c9c0b25a6574f6d64898bb3ada2f626c6e0df6c5486561a03cc7d472fc12fe804ce66a3972d2fe02e3f407100 jruby-bin-1.7.3.tar.gz=1d19be25bf4a7dbb0edad71008704377893d3967aa4204a0d59d6883aa04462ef6798c64d0c0fdd3f5129c16ccb42e8507f3fef38ed56054bf6e689de745935a jruby-bin-1.7.4.tar.gz=d7c0ee0316c50ae5413757e956c18ca68e9d99a25cf85be978da0787c13b8978d4ff2712a3effa564cfdf07144be4a56a0cb8acc794a01f43264fe8baeb125e5 jruby-bin-1.7.5.tar.gz=a4984591a3809330b93f4ce79fd1b9c24360f89d88a03bbc76351be623893c4bfc6441375bbea452ba4f24ca8b9357e03ac938fd6c065b3e2348c0f896b22a1b jruby-bin-1.7.6.tar.gz=98600a2d46bfce14111c7eebc62716352a4b685043afdd696b8fe51c6b205eb9569fc2860423a653b842b173198c76c59767156aa48e0d23482dff3358d884f3 jruby-bin-1.7.7.tar.gz=71da2e72c65899216fa15ec568b51aa7004e2ed7dff99ca376b332d3692c83a674c688dc21ee04d177a3961a2bb3973714509d88cc14d0ba9f79c864c6258a06 jruby-bin-1.7.8.tar.gz=42d54243653ec260abdafecce1143161be63fcc38a80f71ab70fcece4bf91545a2b12ed2319f9fd6f6b41916c398a9a8e89e7f0389f59da56f2739665e74522d jruby-bin-1.7.9.tar.gz=f519f53b1d9f57cfe28982ad70b892dc6fc20fe6601d98d65a1dca9f617a0eb8fff74d0fd82ddb858fe105d05ca7c7bbf3a987677ae0363caa2981bea358c096 jruby-bin-1.7.10.tar.gz=160b701f2f500dfab64beb635e5c4dc57760dd422d0fffe8d3cf8d84ee6ea17a877ef77a0087b4888ea9db64ce7750de01a73a51530aa6666a2efdcdccdb89e0 jruby-bin-1.7.11.tar.gz=a53b0fa327b98344cb4a8aad1ba537ddacb709a0e173b1e32656de8a610cb9896e9a4554d54d0d01d2361f8ff1539a0e2ee01308f670df2004225231b704065c jruby-bin-1.7.12.tar.gz=bf2be8a37b53d38c75712a6331f96b999fa6b0e87f453fac7b9d11eeb1b66098ea0778172f1a6a84345e1881f05d63012e28d4068a0bd31122bf2473bbdae5bf jruby-bin-1.7.14.tar.gz=f14e658da7f2abd469edcfd657dbc2505d6a2c04ba1e5f65f2164256f54625da154b338bd3d286ea6a18da61d04d90a61ad6b012bd9461182753483efcd0f603 jruby-bin-1.7.16.tar.gz=47ca714c3211c95c84e9c80ae4fbc894bfd7ee03e1bcc494cb48d839f8538db4aaca7029a4913b8d323e7227450e4e41bb943dc670f43df8a654eb127012033f jruby-bin-1.7.16.1.tar.gz=9bacdf6e212d08e46ac2c49183c8611873f6ecebfcb0e928b5110bdebfeb8751ac087cf8aba09afb9a8ccb58e59f3c3e06a241c1db445835d7a875b0c3deb4b5 jruby-bin-1.7.16.2.tar.gz=349283bb5344a62f282021ce39648a0c8d0b41ecf8f800ab5099b5ce161ff771e688f205a918324cef6ba0ded6b3694b8dd83f46f56be584202b8fee496b37e7 jruby-bin-1.7.17.tar.gz=a3b171df08e789f91c260c5a57ec842a5d62cc8d6b462b772905ec5284e394ed7b78f5b327ca1ff20f5deba8371a86cb03fade75b5f34f233df47bc3f08d469e jruby-bin-1.7.18.tar.gz=b259da2967e246a387687117eb13e8986b57de6ca8e570d6f8f8f07b8097db6e01cea8b0ec3a860b091fde14de535260dc6dbfc638f9e9b49d348f726e969642 jruby-bin-1.7.19.tar.gz=da91efcd51cfc833666f8b7cf949d3b5c41cd8da99ae1559c88a7358fb48df1245c66702c7cf23e7ca012cbefae98787c200352976d4e8aa3e9120057a89dc8c jruby-bin-1.7.20.tar.gz=77131afe46e72c406ab4250e43cd1f98e59a8351c494044ac89f97a7c9a81492f8a8194541055fcf1fc59569e99a577fd6a36a9f6a3952a99f399d4970e80e69 jruby-bin-1.7.21.tar.gz=111883df12a60d06e9924d33057ba72094fcffd44f7e3954d6c6d2190f8e6442804e739cc525a9e75159251a8dc1cc487570792b1b4f5773f4d0082f0eb360d0 jruby-bin-1.7.22.tar.gz=6ed6cbe7b81a8aee60906fdf965bc217b3db794698e2cb37559f36ac119a0cd2a1ae1a7a766535ab491d647e8b4e6b2f63e62011714b757f8691455831ef365c jruby-bin-1.7.23.tar.gz=6f4b97c4e08274f96195deb176e3126e8d047c981cb655cded9665624033fb905d60d5586704a3f91b2ca06d7e78918d9d31131c93e4c90c75a38182e309ac9c jruby-bin-1.7.25.tar.gz=a89ab8d539bff346ad56d345b6a205f74890b9aafe82a2c82e7c19cfc30b77fefde1003e8bd7ed15f141151bc0fd21946203219691383a64f2234fa586e1905b jruby-bin-1.7.26.tar.gz=feee03a50900e459d9ed7d2096056bef126c4551c02c335c4132e2307411f3fc4fd435e8fe44411184773c80f0630a7812b3d798b7e9be2818e1b5a712bc6995 jruby-bin-1.7.27.tar.gz=656f4313fbfe5db8d2d4fc2087a012c91efef848394c48aeaa0041e9a19b87ab74686702955413d2c51d6b4b11c758ba0555b30fdc42e86d66094411324139b6 jruby-bin-9.0.0.0.pre1.tar.gz=988c6a058336ab9ac8b27c7501ceccf3940837f9b9d3ed32a466b891bda1bc13f76199f5bc3baaa1240dd0dfdaee40775f721294d667f3b8b5bb9ac8206e2e83 jruby-bin-9.0.0.0.pre2.tar.gz=f207f9477a12d7ffacd92b1bb5154ba8101dda8f7b2eeadd4fa83eadec9a75727bc1831733d27fde63ba63322ec491201dd23cc6e2c2b5a4b8381a8fbe49e8f2 jruby-bin-9.0.0.0.tar.gz=33308a983533c129cffbf521bdb8c1996a10a6159a4a436248e645bda682c5a5395ac1aa767e971ae679c935f3b61573cb22d5b8c64af026752db3411a6356e1 jruby-bin-9.0.1.0.tar.gz=277dca63f3faad01c98a793f06bb4d558a970a10a66a38482e8372b25f4cf4fea85f1d5624fce7fb5b4310c42ea8aa360f24f6b9b6ef4bb0ebcb036736009ccd jruby-bin-9.0.3.0.tar.gz=d82f83e20ef17a0675843e306ec5e90993e5952cf5a53957a91e369d2c90d92306aa515b1e135c04b45844a81a0f4ae34289b966821ae5f46ea51fe012627352 jruby-bin-9.0.4.0.tar.gz=b9cd4f4a00da8152740b468914046633d5341b10aa26b0ac56835d5896531030c8afbc4c965b30c36923555ed5b145de8ada69e05ca38b01d43621914a331335 jruby-bin-9.0.5.0.tar.gz=7c61cf010fbae571cd6ba334aefcfd917f6de8224d014026297b840d0b890523e94b2fea20f154c82c25c4f9d5992b9481fb569646a7023e5ddb42db1baf5f34 jruby-bin-9.1.0.0.tar.gz=1ffdd352823436086ebfd37c03401a1f3a9cb8a8c5f75476af1f704c4764396a20f49ddb7fb7f0911e1608f7c88a332944330b8849d13e6badb170efb736dbe2 jruby-bin-9.1.1.0.tar.gz=475acda79ab8c54467ae70094aa86842959200127c1e92709f0a731014c469d3e52e4c48770b64ab1bf31e1b710ac4570b421077c85c08071c1356bee55a2900 jruby-bin-9.1.2.0.tar.gz=cc6b1e1a2907c128dd04edf9da11933a54bbed5e861ab6f0208505bca5aa2aa9d9acdd04bfde65824346fbb435584081fc8ec2e2e9a3aeea1bef8047915e0c61 jruby-bin-9.1.3.0.tar.gz=88339f4cc05f7f0ded21f100755156ade33f19873f49c0c64110916da8c0b059df541a77bb36e54fda9cebf042591450d2d6312ffaa879df926870806985e774 jruby-bin-9.1.4.0.tar.gz=ebe0e9d67cb91721d589461e93e26338e3e3a1f0f98de53f25906684140b49d989ca6d3704cd3f6cbf650f30aed9a3989f117bb4732c83ed870364ce4c31fa36 jruby-bin-9.1.5.0.tar.gz=f2a11e6fc88d37fc1b640ea8c9feda4607bea6da5e6520f61ff85e8d6a51543612ae267b45c033214f8fd0e2283153da02001cbc9fd90be4761b7544e1413b9f jruby-bin-9.1.6.0.tar.gz=ca59d199a0fe791efc57f05801ae26c6cf6402bdc0f1a795250b1a2dda39b233ed24c8cb005016e79727f4bcdceb1bad726a60c16935e76fc87e5d1a078fb5bd jruby-bin-9.1.7.0.tar.gz=f2569d4858a33280e90d984aac53662c25ef057ef9903bace6a2214aa2e6a537c9bc8fc76b08f846b3093cc4a12c70c98d725576a4ac771e640b95cfe3697c7d jruby-bin-9.1.8.0.tar.gz=dba3b41b65ff27dbaa203a5cfc78ac7cb9d952c52b452bc774f593383e4ef9389c0bc37549b798f48b63497ce7007b1ac2d2fa252d9a7c3e52146b4ae192ee49 jruby-bin-9.1.9.0.tar.gz=f8f6419be34aeb7b7577e946a62a094f5921d7319b51876c5e07322d99249b3a9f29fea4ee5c2b8184dfccbd5da8f8262fa97f5e93874887f3355dabfccfa0df jruby-bin-9.1.10.0.tar.gz=857783bb45fc5d62148bd687b43af9ce776099dfea75ec4b5d947a46ed270568bceba2a630a3277746a3a9c1fd3111caa9a4cd13493ea8824c1ee190e6d2abf1 jruby-bin-9.1.11.0.tar.gz=718ed3f5a39cd9f9b45c4e11ba44cd32e035f8d9f26fe59230dbaecb71adfb2513ee1bb86ff72e075b02f20151f3f30e53bfa30b6c4b011a93a138d4f479fbf7 jruby-bin-9.1.12.0.tar.gz=8a9f88d517d8002be570aa95aebb0063eb62a47efee191155f9fa4f045854910f78431514f857c438167ec42f4241faf74d4a8d236ae36feae58732312e4bbed jruby-bin-9.1.13.0.tar.gz=ef88f613ada2665d4f63b2e2f15594739de8ba501406e76de417821f44847b0e258524687b0ae0cf5b737520aa4dd9bb59d80a4b89a81408cda638f28bebbead jruby-bin-9.1.14.0.tar.gz=d15ae0c60421951b830524acd21a0f2a56f480e983b148a2722cd36afed8e99a41f518eb8a679bfa2cf87f08637e81c24ea88be40c0a5390e081322f1fc6f8da jruby-bin-9.1.15.0.tar.gz=74a411f42149510180706b2c70610caeea357f6fc3d2a12ff0227586862e6a9dedf09e752596d6c486af7a310a07241f311a1dfc73ead229d7225c09d4508605 jruby-bin-9.1.16.0.tar.gz=94e88dbeb2545250ba5bef50bbe0baa6f3851e9817f67f879ffaab50048bb0d41cd7a0e87ac9ef547e37c2b82cf1d7aae6b8caa43d03c6a9931b8ce0ad4b2afe jruby-bin-9.1.17.0.tar.gz=4c06b9674e20f48d3815b4084bb38e6994670eac804fbc56d717cde7abdb74d57e0ac17b7fa0b500318de405c187c3eaa01441c22621139dfdbeef62a5467a63 jruby-bin-9.2.0.0.tar.gz=79f5e8674089d2f6b260e033e3ceb4571f54cb5cedbca74ba76b52dd7cb30085a8c6c2676e9be57a8ecd9e962fbcb3682a8de38e1cdde2dc6e05bd179556edc3 jruby-bin-9.2.1.0.tar.gz=185e67da4964c9cf1d9142446efa77605e77894444bdc96bbd10fee22637f197aea9fbb0f60d3a42540e5f383d5b06fcf095d572f432544a40c2145deec81926 jruby-bin-9.2.2.0.tar.gz=85e16e38748b6ec5f237eabc8a17eb225c484c20f7ab6728f2a0f650061bc50c8a9601c04b0128e73c410ffe84dacd2b8bb37167aae5595728aa25e88c4c9b92 jruby-bin-9.2.3.0.tar.gz=97ee210157c451567946b38d33380051f82e7e8cb5f7649fffe050542ff6cd627e2c42f4c46739d1f0995c87e7338865b18844741285bf3f72364aa3c841c54c jruby-bin-9.2.4.0.tar.gz=9fe1506e862a17e261cf726e1bb70a9f612a6d7beda919a01405899660d1f4b79ee690ddf9aeed1d2b2f3cbd698be8df4f98d3815352772cc680e9646d721761 jruby-bin-9.2.4.1.tar.gz=2c41e7884cc54819da17ea9b2b773d05d3240d53a2ecb57ba430ab61308066eeb1bfbe6627e6c261f5f27ab5df7f5972656366a04a191a81b0379f620b74512d jruby-bin-9.2.5.0.tar.gz=d548eba8de420c80062021f5b6e6b203f8b7b36e3f11409919eeab87a028a18f9346f27d2cd8b1f33419adcc83fc804a36dbc3cee169ef1d93383b8f5835ba2c jruby-bin-9.2.6.0.tar.gz=20c7897da0d2b585616ea5848998fe8770517e24e16955797db2e5bff4622c348082628d304240a71a97e9551ef7aa63271cfb728eb5fb7e7d19bb48aff20d4c jruby-bin-9.2.7.0.tar.gz=8e71e27fdb149cb7470fb736e7ce858719d13ce6ff8a1e9ab1c1dc71fcc068fb601946bb28ed2feee3670b5e6ebfa8a655a6618d1badfc3763897912c41b1c82 jruby-bin-9.2.8.0.tar.gz=7f71fb5bc8c6c31b31b4c0430ae091871b21aa345777662f264c728c60212365dadb63a7a4b2fff31adbbf8a2e7cfa678d47486e28840f57b86cd45fe9354013 jruby-bin-9.2.9.0.tar.gz=7df33150858ddff586b3bd86120d4bdd80546c7f8e62245f61facbaa5527400a1aebbb33e4a1a8af52066487e3d29760eb96c7ecb9875eb9bc954ccbcb37a4d2 jruby-bin-9.2.10.0.tar.gz=f4ca024602ddab37154f5547132accb26e7c0ac2e913ebe1b5c7806727eb148249e76031ed4623ab53814beb8fb3f472e386f44d57adb5d2b3b00fb2773c8a63 jruby-bin-9.2.11.0.tar.gz=f736a9e139694c84d0a5ea42f36b972adc82c9be13e0b80bd61045c026e4fe31ccdd4be3dd3e94781c846f356e026465e41716fd2744ded2ab0ca39cd33bb46b jruby-bin-9.2.11.1.tar.gz=2f758fabf5910ea01e9c04c7600d9c666f2df3db8622f3eeb3534578075ce65013c42fe9ea6f95d4499945f795e6d566eed2b1545e149af823eb1d29167a1223 jruby-bin-9.2.12.0.tar.gz=1dbc5bb3814a6590f5e8ecf4889152684b5625fe81794a2c4064d598614a85129256002dcd239e294f209b98e3abaf9bfe70467fff48ef66b1531162dc6c3be6 jruby-bin-9.2.13.0.tar.gz=2cba016ad6a376252083122d51335610209d860c41de1902f5cd49ffc2f6b49c350b68df8fc4113c221255af4db7ec07980267b9888369811faf66db369e757c jruby-bin-9.2.14.0.tar.gz=ee3d17e875dd197f92744c7cba62320bfd3f166bbb2ca117f2910780a7c571779c0940e024351e9d4685ee9781dd207e773ace57a4a8a7011869c8b6209513c5 jruby-bin-9.2.15.0.tar.gz=678abfa7654b53b049e4103ae3647775d970c5a7192539378957c1731a3037c852e03f00a496c022c1c438d159a93be6e6f04d7563c811aeb7d261ced643d9e5 jruby-bin-9.2.16.0.tar.gz=f77e314d578a980071bddc25c65659d62e0644927ebc4e7d7d4523935b6c893e611d47ae7478a26ce7acff38b1525eac11b4a329188cdf76aeb07fab667d99d4 jruby-bin-9.2.17.0.tar.gz=e90ac1890a54a892b13adbbeab3cc5242889ff2a4b6cae535c0a3172072bda6ab01b960705ba608d6d7ebe9de5984d8384dbbb6399ab3b2e53a9e347e7849e1b jruby-bin-9.2.18.0.tar.gz=c5816ee0f7b0f559dac70ffc5277f85ae9c41ad176e43d277f820c2727387baba93998b915cadf9708fa78b5cdf3911a9c39c2ebb61a77a38dcff359f7d88a73 jruby-bin-9.2.19.0.tar.gz=3740674035e27cf7961b3570ad65536c30faab1c9a71a42a696b173379e79647411d57e0d1d06b5f9c9a970eb02a595a559191af08a083773dc4601dcfd07491 jruby-bin-9.2.20.0.tar.gz=1961f52f41e7eb9f50b0f382c8166ad988a6b3c0311c342658edb34486b073ed45c1ca5731aa319196db02cec208a4dfc86aa6b436959b80243bfa4f62629735 jruby-bin-9.2.20.1.tar.gz=598e28cbad682fbb30a9a9a9f708e6e1f4b7903300de2477e88a646c42ae594df5b768ff5379ed447f1a7168e93dbe35cc2d5db7087cb2228233a05bc4687908 jruby-bin-9.2.21.0.tar.gz=8f6cfc43ce3ebbd69781da71c5a70746ada090162bf6cb709dca41a6d968e6072ae62f657cb0bd471c648ff294044bfec3079828bdc410bd64758f76a93c3214 jruby-bin-9.3.0.0.tar.gz=06331ce32ee88aaad5e5bc0668d164ec3263f8ef3ed34bb32981b76ca33f8c817e3632550775706481094159f4feb43916ad1f9ec0f0775ad756b16cb7bd9417 jruby-bin-9.3.1.0.tar.gz=bfcbe6dc5ba736fc944af15eb387b545f6c5b987a7db88045913a02a1d30726c5d1255c4dd609aa7c2d2823ddf9d8360223b0575c93302aeef4c54eb37af9abe jruby-bin-9.3.2.0.tar.gz=b1777bfdf1964d7e527bb3dfc47b4b9e8c589cdb301c38ee8ee988bd0c392ca978ee3c1c24e4b5a65bdecff67d1bd96e2d8645e58ff7e891e3622097ea29e925 jruby-bin-9.3.3.0.tar.gz=648e70de0bda710e2dc70fd03c3dc6b798dd4c7b92584c54306c426f59ebe1168a595c4cf94328f6b44674f5507bee354efdb1cd73060b73b0171a3605051c9c jruby-bin-9.3.4.0.tar.gz=6b09decf412a76578179cefaabf01cc8740f70ab5324954e6aa43b1d8b81c37db7a99b1f94d6ced2b459f1c44c3086892b9a2c06b3ea838baf75a8fd5e0447c8 jruby-bin-9.3.6.0.tar.gz=f730522eff27462192808773cbd071cdaefae11f20bc808a8f22515a33960a730f3c87ec727ddfd9dc9b6b35acffeb50c31d75a4794a3f8daa75e1963ebd246b jruby-bin-9.3.7.0.tar.gz=265051c68d3b9dcce708b75f8267303ae84008859c88d7fe4f282395366c3f52fcf1bb161210555c0fd0a2427ff5a728ea9e337feea3d9b69559cadb2f300aed jruby-bin-9.3.8.0.tar.gz=12e795b7e1f14141bde68f52a29b0aa9f1db20515240dce83cffec351cefd25959579e01059d42dc8c8e4280493a70819d9beb1e0523e9bc10a72af16d9abd60 jruby-bin-9.3.9.0.tar.gz=f0b31d98f39a2bd4436764db0b0139433d6868bce7c30c5d6e3552616ba879c93478c499f3e4c884fd3728502916aed5c9ca1be150ae3e80ff47b36710c3f6df jruby-bin-9.3.10.0.tar.gz=aa36fd4c5de7b17f5fdcca1d1314d309e7b4470d46822c45baefbc0ad5180e5530a7054502b97b414352af485e7936659390690dc6198512ba6733d8f8d503ed jruby-bin-9.3.11.0.tar.gz=d9fd90bc64028dcc45687d2be51414b1561add20d20d1392525f4434cc684d505427f5e56827afffbbb0ce2c9cd7c1ef846b0bffa737679afb95d4c160232da5 jruby-bin-9.3.13.0.tar.gz=eb24641fb7a6b9d2039ec953388053e7333b306056f9a5bf745331b04cfc05dc4211a9b7780ce88bcee9184b8cbb219b574574d308bc2720547c116f4d4721dc jruby-bin-9.3.14.0.tar.gz=d9b02fc35133f71140cc7d891061f8190b61b3d1065f00092a2aa9a4beaf7d67297dfb0529691bd24d29607d698f39c62af9018e8307c1e6624c3104a61bb74c jruby-bin-9.3.15.0.tar.gz=e41521ebf453d6b6a9de937556fcaa972c60268285d0af4a41bfb95aad790eb47dd507e182958ca6f4889a0e03eedee0fa4bbc58e3d0407a2b6ba64a8b87a21a jruby-bin-9.4.0.0.tar.gz=fb72f8e087ea08653fa4e4225fa26694c3ff97c41f3deb8731cdb6571c6c9b21e0d8f69e2096f82ee81e2b5c283f912e2a5228c15873dbbd56de96a2ba35d59b jruby-bin-9.4.1.0.tar.gz=46003ef6192718a6372b79ebc89bee37957686224a08fe2f9a6be3c9e479784409d0269f0885c4d1f1351585c5d2cd31fd2ad45014e425bcaf2d44d66b98d299 jruby-bin-9.4.2.0.tar.gz=77e484ab73ece93e7d7283f876f0d541607c6080eee696b702b485be9794cf7e6d464f250a6d75387ee69aef3ba40ccf4f6d9fcfe324c5bc7a14376177ea2bb8 jruby-bin-9.4.3.0.tar.gz=2361f4bb2989f5951b0d3e9d49bf31e6805ce39bdc987ad3c6934daa98ab7c8e69763d40d7412ccef8adbbc198e52f4b83d00998ee12ac43fbfc6b5d88930c15 jruby-bin-9.4.4.0.tar.gz=e89dff0cc5b4a948daa95196d4bd4fee0c6901bb4aa023ae35b3679d9739967c2a74e8a4388b1835465dd39f1332a1f321b450b40c54ad2b81802645b4a31ca4 jruby-bin-9.4.5.0.tar.gz=06db948e5fa6f8559abd3b6891c7b4867b9f54b7bddf0e36d6f20cc1bfb394cdba8ea920213e545c927d1cb865e083cb1089c8e925bc608e0f8784a79b5d330f jruby-bin-9.4.6.0.tar.gz=ebdc671622baf3c42a988d6ebe24af6bfefa1f717f050f602a1b35909a3220316329aad080ee2cd9cd330da9428f8d736502573efa64bd70f093ccc123ab32b0 jruby-bin-9.4.7.0.tar.gz=4fc8b12deba7b8a53a523a41a31c248895adc9bd54a62664a27107e7205369af39c0eaa508a9a70611c3bb845524d8c5f39451c09b8b9cd87059ae15139703b9 jruby-bin-9.4.8.0.tar.gz=0d65fdfd63e2049ab3b8ccbcb4caaaab20aea5a63276aeb20ed4092191a8814f144425dd0d926aeed757ad6b4daa308a98fafe1bbd1647f3db44368066f61868 jruby-bin-9.4.9.0.tar.gz=1321e2ef5fdce909008ed764051d1bf9be0a4b8cb4a2515fa888c7c0ea48f0f4a2ab7b5c881633dba3d03449c6340255d9411a58836ed059f62d801d48565d1a MagLev-1.0.0.tar.gz=8da29f16e08f657b0d2f147b64f2202ac027db26f85da8dec29f926898f178ac8d11260fd6c0a539a9b9b15eb92d8c7ced86a8cab1861ae7f8a33b6fa468e5cb MagLev-1.1beta.tar.gz=7122af70530e76b9a4cee93244d6872b49616e78086bc8a5db0f32d2b846560b352c4831addbbecc72e0e3158bd52f26c2da14f5d83a515ead30efe7c538b62e MagLev-1.1beta2.tar.gz=43b4b831791074f6e8c12f6fbe6ccec2bd0446dae029d3e6717cde1e7adca8462a2d7dc49c14112cb568b5b3adc8cd051767044b41d57ae51f38aca035ff8597 MagLev-1.1RC1.tar.gz=942c1cf43f1a911230aa43bbac1cea2e2e61b5e19af755e29a6a71139d66d304efcc519072dcc3487a2da7462847530564aff4a2159d675e3270cc938a297dd9 MagLev-1.2Alpha.tar.gz=2672e3e5425df2d2ecc49f85df5845fdb083f74a7b242cac75e33d0c1837079ced8ec8b273807326d08e7bf6f95cb4f1d8351f37af8bb38c4150e6292fc553dc MagLev-1.2Alpha2.tar.gz=4492ed58b6c2b852502a2195836f1db5a80f0619467e4d7b44981a993a5e9a9ea5c9fecf1198de1891583e334bbc3c3a86648ce8afea1137ae9c73a4d76b0f4a MagLev-1.2Alpha3.tar.gz=6290895b22efb986ffd7305b7d651f20a051ab6869d51310bf891fa3eed48526a8617b69f72793e8ac0b57f99bc5de75f34235ef94de967bbdcd51857efc2af6 MagLev-1.2Alpha4.tar.gz=a621e9c615ffec503910540db770754f29bab1646d8e67650d5b82413bd551adfb0bbbb8155407ccb6f80933bfe8ae1bf9b688eb0defbc88710308bde1325683 mruby-1.0.0.tar.gz=4a0f2927da3401df23d5c19ba566995f76775def3badbb14f16510a271e7b40a833fc61841f89d8adc6d57b5b12cb453708961c16a22133c092fab8ecfcd1e3c mruby-1.1.0.tar.gz=afa99a973e9c1b72a5a418d709c4aca08dc7449c427cedef5f12db4ccefb15e11a4fd1c23ceb7e31e49d4d2e602c0b1f9dcf2e0f6cf8ea3466f0b9bee23b53df mruby-1.2.0.tar.gz=bd5de32ba52b6642358752755329fa45a954082122a8983012930056c286ac328fb52fbdd11f34ff7c80af2c0e9a6348abcd5214602aca1150f2e7ae25cad1f2 mruby-1.3.0.tar.gz=13a57306706d2d60693151919ae15bb3621e6e7ed3b5e9c6d3b1c8d44e52b898c1ad394b39946d730ff82a19f5e3b7c2a374f9dcc3b6c6f990581e504f1cb9cb mruby-1.4.0.tar.gz=d2dd6e17c7f8e890ef5b6887538cccdea08a2376ba8f9a478d7d5c4377fd4c31a4af6323b1fc73952ef80e5a4778ca22eac3d724ce7d50b76770f7e614df7da0 mruby-1.4.1.tar.gz=2cbf155ba7819211b6410ea606c4d0db3adf4f47a4018ac45285ab3e32b94f280aa0af0936ead7233411957cfca62979d14bbaaf0d8f40521cba5c12272f2af4 mruby-2.0.0.tar.gz=8379f76b7a06d280e2a2552eec2975ffa3fe85b99028f6f7c009cd908f95faf3cd36a9975f502a5779559baf3c45a4297da0b6bcc038d213a0fdee851f9d01ea mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.1.0-rc.tar.gz=f310b385cbf80c6b6ab67e2a41b931411149639c0bf778799e3358d6a9a59f508f42e3faf72fef9e8ef91088d6184c445af7933a47e4e2b2fe114362d579bac0 mruby-2.1.0.tar.gz=da28b5a078e121c75edf62fc68fad6d5810212bd53a3424d4f585ffe5bbd09f652393ffea0f4b3ddd802e5fe178554dc67040c39c9d5069bdfad4ef22ead7e8d mruby-2.1.1-rc.tar.gz=97c9cc2c79a5dbf2f634ea08532f0f512f8af6ffb99ab4eefd83fc336ca9d97b943e76643971047b4508aaddb5e40176d6cc8fa39a17022455aa15d774eb5b98 mruby-2.1.1-rc2.tar.gz=13aa32a35bd5d8f02a9bfd08d17818dbae78ce46c8b0224a029f9f191cb64ac330eddf3871f4396b9221b987a91e4cd6f8933f59814ac0018155ec8454abff18 mruby-2.1.1.tar.gz=66f9b4bebb5a7b19f5cb1be2bd8b9bc65e4dbb5d4350d238ad5f947c9195fd431f2069f7334036ea63a750e9257e59ae1aef16ac99c7e1f4e17724cd1cbe2e50 rubinius-1.3.3.tar.bz2=8b91baf429dac60663d0e4da3152a60ec6e007f5d6c17ffa430876ec88eb87ade44efae90f2e32e238fd74f1b3d54e27492315f08e7bb073220b402e1e2d3163 rubinius-1.4.1.tar.bz2=928d12aa01a1d0f6c80175d67d3b1f8b9840f69f045c8148786612316421223f4cea71e3c373ee18a3f686b1457557ae547645afe758a99d21c4818dff47b9d1 rubinius-2.0.0.tar.bz2=5c81a6b8cf7b59e08c3b9353b0eb37ce985aaf391f5064df65ffb10f6d12b668287e4d4e61e2c6b560d9234c10f0b64bba74259f2c06f1dac488928544d4131d rubinius-2.1.1.tar.bz2=154cfa93ed59835814b8b974f6d738b049942fcc2b75095d21c87647d002c879fd55aa3d1ec95414b5b66eb9926c25a5c6e3e19a7c0da7dec6edbf434acb9c68 rubinius-2.2.10.tar.bz2=c2168e676059c197123916dd948b83e39bb96e99786bdcaef2e690936b761fedb13740b9f19883f991f1b475f3249ea1696213e8448c41ae15dfc14b3d4e1fda rubinius-2.3.0.tar.bz2=d0f3dd5e3b891bff2eb79b7810c6041e15fbbf0606c379f89575cefd829ac7a394b0c12ed3c5a4d452730797bc0a2c6c82646a19a078b56dcac7acad015a4559 rubinius-2.4.1.tar.bz2=7bcea320006b8cd3d122c407d89c325973a74c32456ba0b649657ac848f4682f2eb7455c13e3007709c22932bc2e1b65e2dd43fda0d3c9f993ddf8a74d1e2cb1 rubinius-2.5.0.tar.bz2=ac94d5bc11524e715fc24c1de33f4d358c2cd65e92fbb64c850dc8151d2a712d268227733c99fcffe298c3bdd6ce080c5e9553e4e8f3238868323498a9d10cae rubinius-2.5.1.tar.bz2=9315f76126d0aa754ee63b190385c24cb084f36293a99aa30fc482fd880d5393aabce361e09ff5514bc2540dfede8e179b7e9212b2dd59bd14ca2aa69d209a83 rubinius-2.5.2.tar.bz2=b48bd8d54a450441a50904b07c75c8d31b59822830a74c952720d6f8d2d86e6a27a84775e975ff2bf55bf3346f34e69d742f308933a9d8476e5e78109cb525f6 rubinius-2.5.3.tar.bz2=b923446d325dc3ce5ad28af9ee527607fae3259b85e85aeff97c1bebbb4520daf70616957b1c0ded900ed19e59025826dee66977c19cd2a2d4e9a0296811eb20 rubinius-2.5.4.tar.bz2=75b7ddbe218e4c92210dbf5a06eb8b3c3aa028d16146982a4e813e3af10a90d33f3e239f4508469c6aba17f02cb8bd10e96a204839975e06519869cacd456c92 rubinius-2.5.5.tar.bz2=a862146ddbbdcd4439eb64e78bfe6d09ae4cca540d19869618426d3f451544658713fe8eb7d46493785eb0cc721077e624293cc44d68eea3ef584967b43a18d7 rubinius-2.5.6.tar.bz2=9a0bdb5d77f80f163925ce409d00be3cee34871baae8bcfdb34c3c7545b92fd14102fecb970e42b3012588d299e504b724025f397a5a00e181ab75f1448e426a rubinius-2.5.7.tar.bz2=8048110b3ba4e5ff8c3f35282896067e1b1b46dccaf9ef4f6c9b6098782f27591ff59ccae0234fd7e881e3aaf17a0b420286b1b52ecd2cb672249655795a6982 rubinius-2.5.8.tar.bz2=23fca2f9747d2b0e544af890c3baacfb7b3a009cc59cbe653762ccdd827a6c915dcc57902d317fa1f7a81f8c12682f6c3a93195331b6de0f705b118e2e8c13f1 ruby-1.9.3-p550.tar.bz2=38767e98df25484f7292437f3cb0f798b3a43e9a7414a5401677e96ad1cc367cb3fa23ac3abe568d5bf2b2ca553713469a8770d41b79bc63daf3fa59cb4e15c6 ruby-1.9.3-p551.tar.bz2=5ea40f8c40cf116030ffdedbe436c1fdbf9a50b7bb44bc890845c9c2a885c34da711bc1a9e9694788c2f4710f7e6e0adc4410aec1ab18a25a27168f25ac3d68c ruby-2.0.0-p576.tar.bz2=e089cca4867cd9c715f4f37e40a1db9af6ba0c74b47e79568121bb980476f8877a87ccb848b973381edb4667c0c73165f5e1761f60db839e67f6326302dbd864 ruby-2.0.0-p594.tar.bz2=8301a51c73fb63a8cfeb14af47d0c18b5bc3c45e3d62fc2ed56a673a1cd6b0015c41f275e70eb14a9e40036b1530977199321e05285e107a6adf58514bef1b3d ruby-2.0.0-p598.tar.bz2=10026a04e01a8ad14ea9c99bbdf4f7d04029b73ee0c01bbf6c2eb2817332d49adacf127b646693b67b5dd7010eaf3b696b23b6335cc0f7ee5a6b56dbba0f6f82 ruby-2.0.0-p643.tar.bz2=453117152e6facdcd5bedaa9c3b1e349382bc5bc1dd3d650ec58b398cb9d2519a2822d05da10bcc5dbbb4f513fc5fef310caa3529d176fa2d453befb28e4d83a ruby-2.0.0-p645.tar.bz2=e9ca186b1cf0877cdbecd43dcab2c5161a53103e926609d5e1b769a4980eab4571bfd0951788b4fc92dfd9d10175b0f5f36ea2c7289e575a9db9b62c02f93185 ruby-2.0.0-p647.tar.bz2=3416af771ebb0b27ceacf23d309bd2a1ede832c2edf48a5ca46f0b0b84b2ab94fb6362a0c7fe4f77b21253539db8161ae26d23a78d1ba729bf03812454d93d04 ruby-2.0.0-p648.tar.bz2=609acf6d6352c9746e21cd7f0e7d29f5eb522e6fff2d5fad0431d63c568cc084ed5b7141f84cd33512d8213200d2d1a22e8d7df71469a980a3a92886133fea38 ruby-2.1.3.tar.bz2=9b48adb161e5e4550a71f61252c8edf59944affb82250babcb64240749af4b672e4a54ccd0feac5b36ea447a358b350b5080125ef2d4acf6e9e8b1ab82612f48 ruby-2.1.4.tar.bz2=68db1567751166c5e7d24b6e5015124b8a15568c50556e1f429486395352fa56c4a195a74820ab135697924149d014b445b345a1b9755678aaf824fba79c606b ruby-2.1.5.tar.bz2=d4b1e3c2b6a0dc79846cce056043c48a2a2a97599c76e9a07af21a77fd10e04c8a34f3a60b6975181bff17b2c452af874fa073ad029549f3203e59095ab70196 ruby-2.1.6.tar.bz2=75d58120b5f387bcadbf6d19e85624f78c74f81b9018baef39207214673f7ebc0700ab31145acd88b4071c896ba8e1302a29c90955bcf5f8c863634125022aa6 ruby-2.1.7.tar.bz2=f610d2dd6a93f0a5e84e04ddedf847bbcea5dd3289b3164cdf60be64f67a80dfd5f9836ea5d169970cd0ce24a7e05ea6190699706567cb0d5cf450de6a70e445 ruby-2.1.8.tar.bz2=7129c012bca7f0e7cfa51c73ba0898697f7a9f31abd5ae57d38be5b6b646fd80ab33be9b262cd3e2486c66f65aaf4ec6e881ae6e5a82ec9df62f00fa072510fc ruby-2.1.9.tar.bz2=a86422132e4c64007a84a91696f4557bdcbc8716fbfe1962f1eef3754ee7f994f4de0b5b7e7231c25057515767040d5c4af33339750b6db15744662e9bd24f38 ruby-2.1.10.tar.bz2=4b7213695416876e4de3cbce912f61ac89db052c74f0daa8424477991cfc49b07300e960177ff576b634a97ee8afef3c5aded5d5806329dbd01d0ce7b42b9b63 ruby-2.2.0-preview1.tar.bz2=2f1190f5d8cd1fa9962d1ff416dae97759d032a96801d77bc6b10136eba59dde1a554ff8c0c2d9ce0d3c1361d4dd12ad573b1266fd53b90ab238d8ce39e6b862 ruby-2.2.0-preview2.tar.bz2=c654d4c047f9463a5fb81eaea0fa5ab7bf316962bc7fb0fb356861e6336ce8ce2162c7779d8b27f72d7bc0e9604b5e5af2910abcb0b0a1f197b3138eaddfd4a5 ruby-2.2.0-rc1.tar.bz2=181201168360bee37dceeef3481a69e8a333a5d329680031fd9d371d30ac64460bbdf4db07546133024f541774e51301f1630cfd988c5e5bf2464834f3abe6bf ruby-2.2.0.tar.bz2=04edc53e8cd1732c3ca61ebeb1d6133614beb10f77f9abb80d8d36352fe8aa205112068e460bf600b2c7e81e0ddcc3b311e7e027c320366f1bd992b3e378a6ad ruby-2.2.1.tar.bz2=af6a8e75a66b953ff33ecbca5111bcf1c6560b6b48b370b700820fcbe91363146c5ac8abd670a14e693b44343ae598bab472ed2902834304c03ffcd9550886d1 ruby-2.2.2.tar.bz2=d6693251296e9c6e8452786ce6b0447c8730aff7f92d0a92733444dbf298a1e7504b7bd29bb6ee4f2155ef94ccb63148311c3ed7ac3403b60120a3ab5c70a162 ruby-2.2.3.tar.bz2=795f1b66a6d4f0baef897068899c3a1a4370ce1268618e6a7d6d4720234444259f371d1ba2e174b2f7580265e9f18eda3f295fbb087447aa6e8fb7a0f07526ce ruby-2.2.4.tar.bz2=d27ca2f19c214ce87f906b57edd41f2f8af35b2871c191470facded9cfda15ba46e5c3bc7d5540225a38da6bd65050fcc8aaa4ffbadbb6bf7dc891c1821da0df ruby-2.2.5.tar.bz2=d3224814361c297bc36646c2e40f63c461ccf5a77fea5a3acdcb2c7ad1705bb229ac6abbd7ad1ae61cbe0fefd7a008c6102568d11366ad3107179302cd3e734e ruby-2.2.6.tar.bz2=7a93f72d236521ac28c8a0bc0c73cf805797a8813d22e02f42c5fc05dd39f6e422817272e0db6a24c245f6f97ad4b2b412a9a47ac50156ab186df596918a5f34 ruby-2.2.7.tar.bz2=83756cd1c91516962b83961e0de59d858618f7ed3e9795f930aab4f199d47a95ed8f867d8aa9b51d508be26d9babf2140117c88241168bac41e6ef702cfadf20 ruby-2.2.8.tar.bz2=aa1c65f76a51a57d9059a38a13a823112b53850a9e7d6f72c3f3e38d381412014521049f7065c1b00877501b3b554235135d0f308045c2a9da133c766f5b9e46 ruby-2.2.9.tar.bz2=2a8c8770fda20a22b79c9115b6f468f8e7ea1092c84a5089af7a3122163e5ad298b493e6637e4d93ba02d899d8a619c94064dda8ac98cf3b93f64f45d5401085 ruby-2.2.10.tar.bz2=f8ec96c2a5f4ecf22052ee0b1029989ded52d7bf5d41be24fef67e732e76f72119302240bca08f0547510a9cd29e941a32e263cad9c8a2bf80023d6bc97b2373 ruby-2.3.0-preview1.tar.bz2=ae6d46c87f59e1fd3703b76dfc45bfcf208625f95ab9f4559f0b9f7050e8681f1a6e419f5fa06b704c83e56879c3a9ff1337dba443bcfca76fadb49c97d97a93 ruby-2.3.0-preview2.tar.bz2=e397f321d4338edba8d005d871408775f03d975da90c8abcfdb457a1bc7e6c87efe58c53b2c3bc122e9f58f619767b271bcc8d5d9663ed4b4288c60556e8d288 ruby-2.3.0.tar.bz2=77b707359e754c3616699d21697752741497c719dc3d6fdfb55ed639e76d52560d293ae54cbe5c63be78dc73fbe60f1b8615d704d017bdfe1994aa9747d26a6c ruby-2.3.1.tar.bz2=a8659b96a3a481a3dbdbb6997eb18ff1f8cd926a9707a90d071e937315c21d372c89252f0d44732ae5007d2678fda8c8fbceafa4e4b4ff500d236fb796284d8d ruby-2.3.2.tar.bz2=78699bae5b0a2382a58f9d51f7d891341f00ad3a90d9ca06b68b1b245cf5acebc3a82133e39bf6a412ac999a5c0f778a0dab177c2569ffbee085ffff6f6ec38e ruby-2.3.3.tar.bz2=88f7782effd35bfe0b4c33140b5eb147d09b63fbb35b9c42d2200c010f387e2b70984ead1eca86569e8ec31f08b35289d440c0ca76b662dadb760f848e863d91 ruby-2.3.4.tar.bz2=ad1f16142615498232d0de85149585be1d2c5de2bc40ec160d272a09e098ef6f317d8b25026001735261fd1c5bc0d1f8513a8474e89f0d86eed5b2fe7338d64e ruby-2.3.5.tar.bz2=3ecc7c0ac10672166e1a58cfcd5ae45dfc637c22cec549a30975575cbe59ec39945d806e47661f45071962ef9404566007a982aedccb7d4241b4459cb88507df ruby-2.3.6.tar.bz2=bc3c7a115745a38e44bd91eb5637b1e412011c471d9749db7960185ef75737b944dd0e524f22432809649952ca7d93f46d458990e9cd2b0db5ca8abf4bc8ea99 ruby-2.3.7.tar.bz2=e72754f7703f0706c4b0bccd053035536053451fe069a55427984cc0bc5692b86bd51c243c5f62f78527c66b08300d2e4aa19b73e6ded13d6020aa2450e66a7d rubu-2.3.8.tar.bz2=6d79e0d25757fd37188a8db3e630a52539bce7927fcb779a2ce9a97b9e5f330753035c16843552f1a1fb6c9a1e5c0f916b3cc8b5c0bfe81e20f35f8442e40ae8 ruby-2.4.0-preview1.tar.bz2=c9873e8686eb54dbde61d6e23cd5197beebccd6cb31fd12c82763ebe1fde17095d7514d9d93c2c82b238032c98691df5479dc2d666a8a590e0fc54450ec29cb5 ruby-2.4.0-preview2.tar.bz2=0c9a59a2f57a99c4ee8539a30f41da1de7547566203f89d856e1be9dbb44365754e6c470145dc9336eb324e0feb2f53d9fef18a1564968ac21f9ee528905949f ruby-2.4.0-preview3.tar.bz2=6602c65a7b1e3bc680acc48217108f4335e84fdd74a9cf06f2e2f9ad00a2fccacf9fa035a912bc9d5cc3f0c7a5e21475971dfac37b0364311ef3645f25c7ddf9 ruby-2.4.0-rc1.tar.bz2=b43902ac7794487197df55a45256819d2e7540b77f1ed4eb68def3e0473ee98860a400862075bafadbde74f242e1dfe36a18cd6fe05ac42aae1ea6dddc9978ce ruby-2.4.0.tar.bz2=bef7bb53f63fb74073d071cc125fb67b273ed0779ef43c2d2969089b9ca21fff1bd012281c5b748f7a3c24dd26e71730d7248c05a01cb23ab2089eb4d02115fe ruby-2.4.1.tar.bz2=1c80d4c30ecb51758a193b26b76802a06d214de7f15570f1e85b5fae4cec81bda7237f086b81f6f2b5767f2e93d347ad1fa3f49d7b5c2e084d5f57c419503f74 ruby-2.4.2.tar.bz2=1a5302d2558089a6b91b815fff9b75a29e690f10861de5fdd48211f3f45025a70dad7495f216e6af9c62d72e69ed316f1a52fada704bdc7e6d8c094d141ea77c ruby-2.4.3.tar.bz2=fb4339e30c04d03b1422b6c32ede45902e072cd26325b36f3fc05c341d42eea6431d88718242dcc9ce24d9cad26f3d26772f2e806bd7d93f40be50268c318409 ruby-2.4.4.tar.bz2=ae632852a5f413561d8134e9ef3bb82adb37317696dd293ef92cb76709ecd45718f14116ecce35b12f1c2dd53ccae8dabc7a924a270072b697512d11f4922347 ruby-2.4.5.tar.bz2=7034fcaeaee41f14bc0ecce0d3d93bd1abe95310e1a0b95fac66eaba867adfb2bf7ba4d0d70d67a15ce8df16052dee405c38cdb18987602e64a2f701d37d3df0 ruby-2.4.6.tar.bz2=292802984e5cff6d526d817bde08216fe801d255c4cede0646e450f22d4a3a81ae612ec5d193dcc2a888e3e98b2531af845b6b863a2952bcf3fb863f95368bcf ruby-2.4.7.tar.bz2=2665bca5f55d4b37f100eec0e2e632d41158139b85fcb8d5806c6dc1699e64194f17b9fe757b5afd6aa2c6e7ccabba8710a9aa8182a2d697add11f2b76cf6958 ruby-2.4.8.tar.bz2=2d7e0f5ad766e2a12a1b53ff838e6bfe86244ffb7202196769c25e9df6f71f3ccdd8605e7ef35c53e54310bc82caf6b368ad5111dd0a3ad70a3aae1a7be93f08 ruby-2.4.9.tar.bz2=d485444dcd025a261a16bd740dae63c0aa23e4138a095584e7a83aec47af34415c7d9cbc1313e92da2ec416b11bfddf20bb1a7b60c80f12906d11ef27409b3e8 ruby-2.4.10.tar.bz2=4d730d2d7cb96b002167ee358258f2620862a5a6d8627cfa5b49bd43c6e59c50c0f437b959d4689b231d57706ec7d5910d9b144f4ca1c1ed56bc879ed92e8a59 ruby-2.5.0-preview1.tar.bz2=2d39ef64aaf7a52014905f4ad59b53e83b71433e50a9227f9f50cbb7a2c9a5db9cd69fa7dbe01234819f7edd2216b3d915f21676f07d12bb5f0f3276358bce7f ruby-2.5.0-rc1.tar.bz2=bf0eb114097f9e505ff846f25e7556a2fb393573b4e8b773f94cf5b47998e221f3962a291db15a3cdbdf4ced5a523812937f80d95f4ee3f7b13c4e37f178d7a7 ruby-2.5.0.tar.bz2=8f6fdf6708e7470f55bc009db2567cd8d4e633ad0678d83a015441ecf5b5d88bd7da8fb8533a42157ff83b74d00b6dc617d39bbb17fc2c6c12287a1d8eaa0f2c ruby-2.5.1.tar.bz2=82e799ecf7257a9f5fe8691c50a478b0f91bd4bdca50341c839634b0da5cd76c5556965cb9437264b66438434c94210c949fe9dab88cbc5b3b7fa34b5382659b ruby-2.5.2.tar.bz2=9f9388a162a3ae9c14ec8999fa3b12ff5397de14f55996cc8761d21c757113db37ace4d326b9606de7ad3a5875aa94fec900dd9b81b2fb0dff558c39422f4aa1 ruby-2.5.3.tar.bz2=6fe89fe9d406bb454457442f908774577369ab2501da4fd15725ccbab77675b88faad739a6c8ad1c7b6690b439a27de5e08035b7546406cdeca65c7b295e2c77 ruby-2.5.4.tar.bz2=3c4f54f38ee50914a44d07e4fd299e53dddd045f2d38da2140586b8a9c45d1172fec2ad5b0411c228a9b31f5e161214820903a65b98caf3b0dfeeaabf2cab6ad ruby-2.5.5.tar.bz2=1b56aa79569b818446440b9f2d13122bf7c2976ab9b2865f5fb62d247d7768dd4ac5b5e463709ffec0f757bff7088afd293c2a8c5349c3780763b6444bb354a8 ruby-2.5.6.tar.bz2=e4511d42d19a7bb39ea79f66bb4eca54b63c2a9d27addc035d6d670c1e59ee48a0c6e9c6bc7d082d1f1114b0668831dce3b7422034517f3c4a06ced0e47a7914 ruby-2.5.7.tar.bz2=7d6a7d41b4f3789f46be5f996099f3eb8321aa4778b2a8ff44142654e769ba4ba2df127dd0f267547e4c8cd6ff46364f18e79838df54fcd7e3fb714294ee0099 ruby-2.5.8.tar.bz2=037a5a0510d50b4da85f081d934b07bd6e1c9b5a1ab9b069b3d6eb131ee811351cf02b61988dda7d7aa248aec91612a58d00929d342f0b19ddd7302712caec58 ruby-2.5.9.tar.bz2=12f58e14cfa6337065b0e82941e39b167813920eb54cbdb4ac4a680dd0cb75d2684d341059e7b4d0da1292bfc4e53041443bd14891a66f50991858b440a835c8 ruby-2.6.0-preview1.tar.bz2=d9cb270529a97670d54f43a0236fab072714e715c39277dab70b7a1843ec818e6700e47e1384c7256f9e0ae41ab2c0b768a0de38a5ecf4f4fff5da6ef5ad4944 ruby-2.6.0-preview2.tar.bz2=3872227e9b1c97c206d19bf1e6ce15a38ee15a26c431b4436605dea67affcf16372358984df76b35e7abaa902c15c16f533ac7af47e3031dea9451bbe459b693 ruby-2.6.0-preview3.tar.bz2=d1693625723796e8902f3e4c4fae444f2912af9173489f7cf18c99db2a217afc971b082fce7089e39f8edd54d762d2b4e72843c8306ed29b05ccb15ac03dbb5b ruby-2.6.0-rc1.tar.bz2=cbd6281b2aab6fbce3f699c1ab57e5423304dca7a547a0b3cd4e8e980326dc7b85b2ca2bfaf3f3a648d40f4222fdf1740d81d422790ee7ae1ba1ed33eb11e3e8 ruby-2.6.0-rc2.tar.bz2=9bfbe83fd3699b71bae2350801d8c967eb128e79b62a9d36fc0f011b83c53cab28a280939f4cc9f0a28f9bf02dce8eea30866ca4d06480dc44289400abf580ba ruby-2.6.0.tar.bz2=ca3daf9acf11d3db2900af21b66231bd1f025427a9d2212b35f6137ca03f77f57171ddfdb99022c8c8bcd730ff92a7a4af54e8a2a770a67d8e16c5807aa391f1 ruby-2.6.1.tar.bz2=fc41429491935b89532733b95476ab9f8a4efc310aad8f4c2bd3b68fba08fd7b6e9ac84c6c88ca892022d1ba76435295f3299ea466f9b5453c07d41cb539af59 ruby-2.6.2.tar.bz2=cad678d2ced4085e99009e4fef83c067dd0e6ead27a8695bc212c0e5112a7fa09ceb27f82638faf91932ef8bdd090f844e0a878ffdf6845a891da4b858588aa0 ruby-2.6.3.tar.bz2=c63c3f527bef88922345f4abb4b9ad467117b63f2132e41722ea6b4234cec3446626c3338e673065a06d2894feee92472807c284cbe613a442c8fda234ea7f88 ruby-2.6.4.tar.bz2=a9fa2f51fb5f86cd8dcaa0925fe6f13d4f19f110b5d4c5fd251f199d16aaf920db39ad3bb50460eb94ab8d471ab2ac8bb54daea4a3bb080eaf45250aac3437fe ruby-2.6.5.tar.bz2=28e0b04ac8ca85203eb8939137b5e5de4850c933faf7f62fc69648fe1886faaabf6cdf48382f9d9585c1720876d10b41dafd33efaeb23341c309917fbd8a6e21 ruby-2.6.6.tar.bz2=001851cf55c4529287ca7cc132afc8c7af4293cdef71feb1922da4901ece255ec453d7697b102a9a90aef2a048fe3d09017ea9378ab4a4df998c21ec3890cdbb ruby-2.6.7.tar.bz2=311ec56d23d0de7a163f66c1ef4e5369b822f8409f8e1f3a25785c803f01c68dd13aa8ddcfb3a0fe6a97bf321950f8d6cd75b2babcb04158e791601914666f7a ruby-2.6.8.tar.bz2=51806d48187dfcce269ff904943dd008df800216ad4797f95481bdeecc2fbac40016bc02eabfff32414839ebb2087511d25eebfd6acead1a1d3813be6c10edf7 ruby-2.6.9.tar.bz2=ff067ebc059094c0a9a0debf54a37aad2c85f7ed47be59299041c9c03a7701529f5063ff32a1b8c56d48ee8585015acba63602ed0176b2797d263d43d67aa241 ruby-2.6.10.tar.bz2=275a0f329641e6c3d3d3c33ffabf585195187eb3baa4fb1dfd35999fa0a80bd5925943fa2711827ac00dffb6c9a1deeadabaf2e9ee401d56926fc167db5ae4a4 ruby-2.7.0-preview1.tar.bz2=a36b241fc1eccba121bb7c2cc5675b11609e0153e25a3a8961b67270c05414b1aa669ce5d4a5ebe4c6b2328ea2b8f8635fbba046b70de103320b3fdcb3d51248 ruby-2.7.0-preview2.tar.bz2=7066ececebbbba4b2933ba1a4f70cdef373169910802259a3e52b4fc144ba298f3cffda4be5fe8a7be8ef769ed43076fa046a9ac2c13bb733475b9852112c6f0 ruby-2.7.0-preview3.tar.bz2=5d8e99e3fd984c7d05c0bc483e1504e81ccdb920cbb2d78cad3c314e197b30316b692fd0199f836acac41246e3a713cb81dc6dd64c27cba56f807df4c193db1a ruby-2.7.0-rc1.tar.bz2=b5f96227775f8bdf19f944a555d0a83d7e84b37bd31fe4b8ac008a3272b1a28a4d94abbb1b5570ee32ec0690ba9d476b837a020a5194bee14bebf6f0e768bc79 ruby-2.7.0-rc2.tar.bz2=9010f72bb3f33b6cd3f515531e6e05198f295bb2a8a788e3a46cdfd776a9f6176b6ba8612f07f0236a11359302d2b77fdecca1dc6be33581edbb028069397a0a ruby-2.7.0.tar.bz2=8b8dd0ceba65bdde53b7c59e6a84bc6bf634c676bfeb2ff0b3604c362c663b465397f31ff6c936441b3daabb78fb7a619be5569480c95f113dd0453488761ce7 ruby-2.7.1.tar.bz2=4af568f5210379239531dbc54d35739f6ff7ab1d7ffcafc54fed2afeb2b30450d2df386504edf96a494465b3f5fd90cb030974668aa7a1fde5a6b042ea9ca858 ruby-2.7.2.tar.bz2=f07592cce4de3532c0fa1c84d53a134527d28ba95e310cd3487ac321c49ee680faeace285de544ee6db432a90aa7538a1d49ff10c72b235968ca362ef9be621d ruby-2.7.3.tar.bz2=e9236138be3e61380140f2e0d42f8fb82ad8f5219d454de2f6c2ec546bb208acc8b0f2020f23e6446660d2b3b9ae873cdd8298471f166a5f1efba8e80b05e746 ruby-2.7.4.tar.bz2=f144c32c9cb0006dfcfa7d297f83f88b881f68c94f0130346c74dfd8758583a68d22accfd0fc9f31db304ab5ff0bc135bfb2868145c0dec1ee6cec5ac6c3725d ruby-2.7.5.tar.bz2=0aa2ac44bc22859a39c43d08b7c7f457df05c2dc36b2574fd70ca399143ef1000dc5e496212db9eb055bc4258523d47d26db3c57a1a5a5d63cf1b3de9f81645a ruby-2.7.6.tar.bz2=4f7f3624afc43da25ebf0f01d5a2f92f72f94bab7423587cfd3920e089b479bf559b159adf2891b996f7e6a98c008a4f73a4a2170e2f8619417660ac1ab24bdc ruby-2.7.7.tar.bz2=24cc772ac1b56d3bb423f1b33716f221bf534f3717a506bf8235a698f8a454db7d79d94ae9a84067153c2f737b3f8f6085f34e36cc04be0d75ae2fdd57718870 ruby-2.7.8.tar.bz2=3a9db8d9e79318f869417f2ebf3365907febc0d1428116eabf3253c51d8420f255782b32fa30a54802b9f5f4187fad80dab0611cc80436feec84db87b0456ec6 ruby-3.0.0-preview1.tar.gz=b94892951f842a1538f4b99022606ac2c0b5031f1ede7eef3833a8caa9ed63e9b22868509173bfefb406f263c65211db75597b152b61f49e5ba2a875fce63a27 ruby-3.0.0-preview2.tar.gz=6fa4191425ae71e41894b60bd9c31d483a562ee8216886360ce18238ab48115b95be0367708612c45f634e7584fba8940a524ba0113ce0f36ce4df78a112d0b7 ruby-3.0.0-rc1.tar.gz=798926db82d27366b39be97556ac5cb322986b96df913c398449bd3ece533e484a3047fe35e7a6241dfbd0f7da803438f5b04b805b33f95c73e3e41d0bb51183 ruby-3.0.0.tar.gz=e62f4f63dc12cff424e8a09adc06477e1fa1ee2a9b2b6e28ca22fd52a211e8b8891c0045d47935014a83f2df2d6fc7c8a4fd87f01e63c585afc5ef753e1dd1c1 ruby-3.0.1.tar.gz=cb81db2c9b698cf8159b2ca6507f4c7f171e4eb387f5730c4b658ed632b7900a169808e6fbec0ee80598d937030ad5d9c56b63a2a339373ec5d9e1c06b7661d0 ruby-3.0.2.tar.gz=e1fba6f5429b5fca9c3f52a32535615fcf95fafa415efc71c46db4cce159f249112c01574c305026be5c50140335696042e47a74194caea045acbfaa4da738cd ruby-3.0.3.tar.gz=39dab51a0d784a38302372b99f96205817d466245202586d22123745761e9cb39db128ec2b984ebc3919b9faf2adf828d19c97d3fb1e56d44be0a81dc5d11b87 ruby-3.0.4.tar.gz=0dfded6826063c1b39bf625a6e13b46c109cb160c8648b78f0965f70e7c7a1a65f1c117fc8f2cf8bdb34d7cbf79fecf1f45d169d2323406d66ab27b18bde1d22 ruby-3.0.5.tar.gz=ea45fcd2ca53b87f18fd8696d00a1e340d2495443216aaf87d3f643cb5bd8bb614a1faacd82d07e7f2b72172397c728316a82d7c34a7b4566191268ea517ccf7 ruby-3.0.6.tar.gz=d596bfd374ae777717379b409afe8ee1655ade0c0539ada7a10af4780b818efe25a28aa50a2a7226741d1776d744e10ad916641f9d12fb31c7444b0a01d0e0cc ruby-3.0.7.tar.gz=66e5116ddd027ab1b27d466104a5b440889318b4f2f74b5fdf3099812bf5f7ef77be62fe1df37e0dc7cd5b2f5efe7fee5b9096910ce815ca4126577cb2abfaa7 ruby-3.1.0-preview1.tar.gz=63f528f20905827d03649ed9804e4a4e5c15078f9c6c8efcfb306baa7baafa17a406eb09a2c08b42e151e14af33b1aadbd9fb1cc84f9353d070b54bbf1ff950d ruby-3.1.0.tar.gz=76009d325e961e601d9a287e36490cbc1f3b5dbf4878fa6eab2c4daa5ff2fed78cbc7525cd87b09828f97cbe2beb30f528928bcc5647af745d03dffe7c5baaa9 ruby-3.1.1.tar.gz=a60d69d35d6d4ad8926b324a6092f962510183d9759b096ba4ce9db2e254e0f436030c2a62741352efe72aec5ca2329b45edd85cca8ad3254a9c57e3d8f66319 ruby-3.1.2.tar.gz=9155d1150398eaea7c9954af61ecf8dfdb885cfcf63a67bbcf6c92e282cd3ccac0ff9234d039286a9623297b65197441438c37f707e31d270ce2fe11e8f38a44 ruby-3.1.3.tar.gz=550cfda2ae492312009a58316e18fd77ea92852718b37443bcd76aac84ba6694fb841fe19bf23bee099f96f5aeed9d03e77c8c02fb194e414eca5f707adbbf90 ruby-3.1.4.tar.gz=41cf1561dd7eb249bb2c2f5ea958884880648cc1d11da9315f14158a2d0ff94b2c5c7d75291a67e57e1813d2ec7b618e5372a9f18ee93be6ed306f47b0d3199a ruby-3.1.5.tar.gz=23661cb1b61013d912b7433f8707bbcd723391694d91f413747c71428e74f8c7385c1304de7d08b70c9fa3bd649e4eb5e9acb472d89dc2ad5678cc54855a24ae ruby-3.2.0-preview1.tar.gz=d24e77161996c2085f613a86d1ed5ef5c5bf0e18eb459f6a93a0014a5d2ce41079283b4283d24cb96448a0986c8c6c52a04584abd4e73911ea59cefeb786836e ruby-3.2.0-preview2.tar.gz=5e9ddcb1a43cff449b0062cc716bfb80a9ebbb14a1b063f34005e2998c2c5033badb44e882232db9b2fceda9376f6615986e983511fda2575d60894752b605cc ruby-3.2.0-preview3.tar.gz=860634d95e4b9c48f18d38146dfbdc3c389666d45454248a4ccdfc3a5d3cd0c71c73533aabf359558117de9add1472af228d8eaec989c9336b1a3a6f03f1ae88 ruby-3.2.0-rc1.tar.gz=798157d785ebae94cb128d3c134fa35e0e90c654972e531cb6562823042f3fb68a270226f7b1cf0c42572ef2b1488a1a3e44f88389ad2a6f9ca4b280a2a8e759 ruby-3.2.0.tar.gz=94203051d20475b95a66660016721a0457d7ea57656a9f16cdd4264d8aa6c4cd8ea2fab659082611bfbd7b00ebbcf0391e883e2ebf384e4fab91869e0a877d35 ruby-3.2.1.tar.gz=f8bbff5e237b501f4042ddc70a19ac1ce74f72f147c90daf7f3007a940136abde37c12a0f7444f713ede09ba847c2cc2897a1742823832e3dc8cce80073164e1 ruby-3.2.2.tar.gz=bcc68f3f24c1c8987d9c80b57332e5791f25b935ba38daf5addf60dbfe3a05f9dcaf21909681b88e862c67c6ed103150f73259c6e35c564f13a00f432e3c1e46 ruby-3.2.3.tar.gz=75aecd9cf87f1fa66b24ecda8837a53162071b4f8801dcfd79119a24c6e81df3e3e2ba478e1cc48c60103dfaab12a00cfa2039a621f8651298eba8bd8d576360 ruby-3.2.4.tar.gz=b695b98dac7bb2c8755a106d949cb1b1b91551092fad263765171ddf8a4d86585259ffab5f7cc9bace70143d645dbe5932cfc61c6dba7817177de391d76bcd79 ruby-3.2.5.tar.gz=d86c0151fabf21b418b007465e3f5b3fd0b2de0a9652057fd465b1f7e91b01d00f83a737e972ea994a5d9231e8cb27e64e576852390fe6c2ad502f0d099fe5f4 ruby-3.2.6.tar.gz=26ae9439043cf40e5eddde6b92ae51c9e1fa4e89c8ec6da36732c59c14873b022c683fb3007950d372f35de9b62a4fabbbc3ef1f4ef58cd53058bd56e1552cbe ruby-3.3.0-preview1.tar.gz=0f891f140ddc6372aa7c4459f8784126e0c341db7b80e72c51e441c5153c43c2d7b965f7807c076862ac84b9b8b0c6a66bbf66fc341746016151397bb21c782a ruby-3.3.0-preview2.tar.gz=1c5a13e519e8487fd40d932b96d14fa729521925c288e7841ab5eada628e506ceca2605bae36eea1aa505d9253383d53cd933b7a4bff96e6de5b1130c7c558e6 ruby-3.3.0-preview3.tar.gz=94db07a6958c09809b2e5b597fa55a121074e8bacb3bf588c83cf0d35b07a8b070172035a49d1abf0d8ee364a9ace824f34e677f7327ffe1acdbab0938ac49c4 ruby-3.3.0.tar.gz=26074009b501fc793d71a74e419f34a6033c9353433919ca74ba2d24a3de432dbb11fd92c2bc285f0e4d951a6d6c74bf5b69a2ab36200c8c26e871746d6e0fc6 ruby-3.3.1.tar.gz=0c8ea922a79152ac7adbfb2541320565bce6a631692fd39d499a06f53ad6339c16fad8374d171351ed63f7bda3312b26d4f8c058c5b6df3d7548fde372c718f1 ruby-3.3.2.tar.gz=a15ba8d6c2830fcd1f2b36f671acf9028c303ec78608fd268da0585db8e95ddd971666e8029bcfa2584da2184a6534e1f2f2da07fa7ca4494e8d842eed206f00 ruby-3.3.3.tar.gz=0388a96127eb6e53b836f7954af51ff62b84cdb7abeab823cb1349993d805b151204e426b9ac04ca8333fbd5e01c386d58bc37d34c4e9286b219dcda7542a150 ruby-3.3.4.tar.gz=56a0b88954a4efd0236626e49cc90cdb15d9bfd42b27d7fc34efae61f500058e58cb32c73fdef5f1505a36602f4632d6148bf3bd1df539cb5581ae157c78c22b ruby-3.3.5.tar.gz=5c482059628ef9de5d8a6ad4751f8043f2fc2b159b768265be7f3ee0574ad51d9500ee4fc9146c5978fbd51313039c3de39e7b7a4dedc9bcd5d09a41a713f1a7 ruby-3.3.6.tar.gz=4ae22f5c2a1f7ed84aab7587ff04ce4d9933cffe4347deaef0ab88d22c9780f274c1664a4ee1dd8235bc3cc749be828ffa8db7cb5f5002339a59a599acf3c729 ruby-3.4.0-preview1.tar.gz=29c0e32179f7b823b6708f5328e495cd333fe8dd88f7df7d9051deab47add67b14d899bba565bba1a77e1b04c9693d9708541445c112925777bb6891cb7b2b62 +ruby-3.4.0.tar.gz=bc70ecba27d1cdea00879f03487cad137a7d9ab2ad376cfb7a65780ad14da637fa3944eeeede2c04ab31eeafb970c64ccfeeb854c99c1093937ecc1165731562 +ruby-3.4.1.tar.gz=93acc262e3b7cf86aeddebdad5b8938c187b9c44a73b0c252b6f873745964001459ae45ece7376745916e317c24895596a42b4544e836670fc6e90058e6f0de4 rubygems-2.6.11.tgz=3b0dd38c0aaf313c59e299dcf54f7bfb6e6d84b8b739573ddaf599e584da45ed7b1465f6521131b32f237e31a4796d9ef455b8be685064b3fd77a0355dfff13e rubygems-2.6.12.tgz=ebb672488b50f5fc988eab66ab14ce8e887dcc635f71239a85e32fbf1e919ca70196eb4d3f2fee3486cace7064bab0b8b08339c754b723198e1b0b0a0984ab54 rubygems-2.6.13.tgz=c952b6061a9a0778db304c3aa5bea693e71ae2564abfb19f8b123eef66eb1e3877fc7c36f4f1527da97bb320870cbfd4574ac57ad88e850a44fadd67ebdac152 rubygems-2.6.14.tgz=7743845bc5265df3782f85a23896cbb250d8a2bbc9934a27f274b001afa7aa62f7f00f616296f74747ea612d2cb37dd7f533c931aa72550d84c64d2a73d60daf rubygems-2.7.0.tgz=0bd08fbabcc33687c98365ffe6794ca2a5e82160b0297479d4f19bd899d176b7f4efb95248898b26d873f9fc7d86c10cada6e40cdc48738b0bac261c3aad261f rubygems-2.7.1.tgz=fa4ea123760b03b8b8e8ececc55c9dc34249073fb267d310bd903aa7a613267e5d27990bbf28e32c9a746bf884af8a84a0dc202297272f9d477f7710c21bfb60 rubygems-2.7.2.tgz=0f48c6e46663780a571c7ee0e6e772f2e18a755031e7dd8ede7870f238c214b9e3e38153b1ae8f1f78a9aad63c1a079b86573b3a25c57a600d842bdf92b9c4d1 rubygems-2.7.3.tgz=2782331b31947a23f85b285a3d5e7b66e34fe5847bc84dca4f1e6bfe33ce187ab0cbc814229de8111aa19490b656ca78b7c821e4ea6b425449991c01371b7565 rubygems-2.7.4.tgz=90f72a46709ef847666a6a23eecf24521abd5c294b2da8a246bb4c7f85daf4af39a0634fc8093c7bb7ded2ac137ea27fac5ed94af3b70c49e78594285c7a40ce rubygems-2.7.5.tgz=86957f1c438070135df527a15102e40487fcee93a55251463095e4c8794a8616d16ed9bdead0e0ef83c44806bd5016ecd9e178bef608b66af2e68e2c9c49e941 rubygems-2.7.6.tgz=bc168afc40c974dbc7c37eb5678432ba2ed7469c3f007a159699467ff2cff5205c508237193ee8becaa6eb555b043969cc5f92b2aaa6bf7c958dd7c187e258a7 rubygems-2.7.7.tgz=f93b7eacf5ef8725c40d618daf9deabc7e9eed74b3b7f13ecd16f89205fe24958e782314c52f8a8fe3205b93e20b830b4fbf7ff8944ff1cf56feb7de2d773252 rubygems-2.7.8.tgz=3d1cf68377dfcf102028342258aaff5a7257d2d2b34a80508c85aa258d810add46e65a157f902c271b0b7b568c437372d17246e89cd88f8500e47c008d17f1a6 rubygems-2.7.9.tgz=5f699f47bc24d8ffd4f8f44a509a9df71fcd945ca2574dc9d5050bfe06a44830a368f45d204112d7a4f1877e1600a6fe4d1b6b68f9a55288664667b4220a7d72 rubygems-2.7.10.tgz=48a18c0f202f463c38cf5dafecfbc7cc39245e63c7a059ef2cefadda478483794a929ea6b7e0ef062dd4423230746f1f09d7bec06a97fe3ceccc3325397a3e71 rubygems-3.0.0.tgz=047f4d446aae414e4803517088ef47d5cc66319ff08a3795c6d69e83eee9f3e7c3b05419858f7e5b6a8ec224990ca01178a9259961ef2d7ab737bac352a0f18d rubygems-3.0.1.tgz=dc29ad51ec67b1dca82a23973ea92153482788964d0755bdcd3c650116915c461c6e5fb1c826be3ee04a497fec4ac2826904bd406f24611e77cd8c9eaf4d8729 rubygems-3.0.2.tgz=90b46c2cd4f8baee74eb488a40691cc00e754cefc42029d485163d6ad7782df78ba5cbeab08eec6a4f71febe0f6e635e12a9381393008c58eb5e16396df93fbe rubygems-3.0.3.tgz=1dd585243341901c7b4cc60a4902000c10ce57fe2cc9c28e27e274a2e6029f936cde1c99d7097c93c2c5b2c8bcee5d692c8fe5cc00c996a040e4954b674e330e rubygems-3.0.4.tgz=887c64226ec0b32d33f2ea331936683406d54dc74d19e658a23521e25ab50aa23534fe9eecaf696154247ad1df1d24c233d8900b9aabc79096eebd6afef3f775 rubygems-3.0.5.tgz=f5a97cf67d7d043afba7c1aed014f1b64ff6376ea74d3d6533496bc5ca9742e0ccce1a157e6f67d8fcbe59d8e34bbfbcf4ed8be97acf2970603de6381043cb78 rubygems-3.0.6.tgz=1ef1822a2b19790a36a6d242b7d4584222617baa27787ec58961a9cfeb2733f19f9085490ffc72ee375d3153c7114e050c42e68fc8039e727fe5961b09365ee5 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=5dfb040b746e462c297ebcdf84e0f07cd74b86852055dcf0a7cf1814112099bc674bcccd94b03726aee76b253c9345a45d046cbfea230647644f0fd6b1c1ec96 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=17983c442c54d19196be3626e25c64f5474139c0b973624832ba8730efb047bc747c02e59c82f38397bf012c63ab83f79a9c1b64311cab796f08fe96d7d12a1a truffleruby-1.0.0-rc3-linux-amd64.tar.gz=b0b57082d61317911f101da617333d81ee6bede6b6e18f9bed86544dc413339c830198d90cad7ac94c0c8fb690adcfc559dd9f530abb70507ff6a76eee552b61 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=18f9782de56269389320ddad779ec69c168909198d4572e2ea4c18bc8082a539569a76760a6a6da58722fe08d77d83904aaba14baf4075a2833cbd2efc45dff3 truffleruby-1.0.0-rc5-linux-amd64.tar.gz=134d9ba5db7b8a1960d3a88390cd6f7503a0e8565094fb127333d122cd773bfbf9dc976c659029007e6fb68e93486293bac2ee29ab21dae9cb0c06ba57dd2c72 truffleruby-1.0.0-rc5-macos-amd64.tar.gz=5804f1f27916176f5a270de8aac85bc48c38ba37c4e719b09f5777e5c42429271819378cfe096c3cc33d406cd0726f2e37658020f97a438fd53751019831569a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=2597b375f590755b851d3b8cbad3eeab4c965eb02d0c944044f57e39f6c3db1e2f513e2aa55db789e4a885c697f81ce5c8bdbe9a7e44ee30fc09d234e44fb512 truffleruby-1.0.0-rc6-macos-amd64.tar.gz=2eb177190de0408dfdaf30264132955d1db7783ddfb63880d97d5933f66c5662794c3bb6198edf230fbff348674203e61f7f5481e74ac875974467f2f128e939 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=ab3a3dc19f903e68e36b135729693fa025a7c1950139277255e48c972387ef8399beceb3252ac37cc70c0df92838f8a0ba8c45f53665ac4286ef23f9b240806a truffleruby-1.0.0-rc7-macos-amd64.tar.gz=b8423f50a5292e211db7ebd7e2b987fd5c9eaaf34eba86b0644d2716a7f068f2e56deb4357c516b87b437e64fd5ce8515bc181165cc1042c6763f27d71baa59d truffleruby-1.0.0-rc8-linux-amd64.tar.gz=bcd05d304ee9b4da97193575fb1ad78041a0c7710bb444af6aef12ab4261b1873f472175ec51a187a5e99da481d66b81a132fb691643b793e87d655f31d54657 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=2c758221793c38ca8af1831a5d9f3abd555c406569508ac3a86d3c1ea5baeeacf65abb6e904ed3b1e58f555f51bc85ab171135ff4c3d0e08cdae994a861cbda4 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=42e60b69957f77a8623e0dccb7d215e800c27c622364fa76b9c574e8b1d3a4056a058b61ed91eac2375ecf4e51e482a6e17550aa2894a44d1db70687958033da truffleruby-1.0.0-rc9-macos-amd64.tar.gz=18556ee8d2fdec6907fbc8fc33d8b32ea0c58d40ee3df084ffb233e2fcd3a514a553f97c31dcc25dda3f86b1b805ca5fe3c9bf8cb078b92325515f09db6b88ba truffleruby-1.0.0-rc10-linux-amd64.tar.gz=10a7cb1be6214347469d5797091f73c3d7824bfb32a47c13566573a383380b1df9b79b7901ce0fa3af1c97285c90afac21e2de7a66ed88d9495846743b3b25e2 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=53f0939d9d8c3470cb79316d865b765816032528d77a3cf497134f3aa667a6253ae037410801261a8e7d0628198ac5f6aea5ecf9b7313f06ccc1d5e9f94e74ea truffleruby-1.0.0-rc11-linux-amd64.tar.gz=f89bc9a3310634d39f68006307da0b0ddafae036089bdd663e8372777a9562d201a4e69b2e1a602cff5fba6c78a8d4861b6d1020679bd0c72c71b938a4f36a27 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=3f461c12fa9fa57a55cc390eb9887df88f404661a77bffb44f82b4c7e9021513a6df9f6d5f332a36ce0c28ae7e3d5afbbe15cc4b814bc7f86dac2e5ec280f947 truffleruby-1.0.0-rc12-linux-amd64.tar.gz=85f042c308ccdfbeb318cec37056d8d970cab51cb0779425b85b8f76b0a1dd9cdec3191ae2b6b9b6be6e95767db814496450ed20076addd9bd495742f9de3c8c truffleruby-1.0.0-rc12-macos-amd64.tar.gz=067a0f63bbaaed4c8d4120f758c8ecf8c52afd1d30ea9d41489e26289d57a574d2d4ae29e29655378510adfb3f4a07b04b403d6ee98ee6b3d3aa8bff9c8d718f truffleruby-1.0.0-rc13-linux-amd64.tar.gz=1eb6b80cb05133d253f20629a11ed9ec3f37da002d5668cdc6577b2a20524e0cdd4d739d3f1aa2e8c518e2f7ebfd519ec1c647293714a1133ad4d569375c0e69 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=e3cddb0d0ae48f7d5ee4dd094ddb5a13f6a7aff1521b1adf25710971664b235cf67144e3b81525fd710dc49b6f6f6ba06e10eee1df5dc08119e9494c6be86934 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=c982194675b66a0433bd5517fc6f1564db669f595f8c7ba4819bf37e0599474d49a0c606577a898c27fa5ba40ab793c62d8211e7ea398d6b3e2bcc31eb5d55f4 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c14e396396385644333fb4c4aa1fb4b934a3f4e46312146821e5dcdaa097cb5b1efbf397c1dd6117d909803fd27ba8d835904672e98d43dc565e907fed752e1b truffleruby-1.0.0-rc15-linux-amd64.tar.gz=f27a75f929a6e945e49ceaad12f484fdaa918469a2f639b572fc4737b78e1cde0881697057e13a58b2fab7ac64c3a71bc9951561c3a8728e3dec814ef5e95fee truffleruby-1.0.0-rc15-macos-amd64.tar.gz=7aa029c4999d4608c9bcc491771b0434267032dbe9dbf504728079f87ce93e6a90e0fa839295b88c00e5a025186ed0fcc42361428b7874c05e222edb108d6c02 truffleruby-1.0.0-rc16-linux-amd64.tar.gz=e8c508dede11d4f54cf0b15cf92b50caad93076a6065bd2d6784c5ca739f5923ea2b894c6b2b52131f62187c8b305cd11a960fb5a670789802d59b6b2999f0af truffleruby-1.0.0-rc16-macos-amd64.tar.gz=841eff077c38bf594b101edb15942f601ba0dada2122b21b016f53251aa2a635b8d0b63b49bdfb50259b2545d1f498bca95d5f771a15a28edb0dd07216c9b709 truffleruby-19.0.0-linux-amd64.tar.gz=8ec6c7829351e0dc2cce57305947cd540734fe5a0b95b9501d4179993727ab2c331e9fb639b9865c0fed596df3906adf3dcf2efb22c4cfdd23a3dc2137025fd4 truffleruby-19.0.0-macos-amd64.tar.gz=912e0c15d32e40c884b2caaaf9a86a71450d441c960ef98a63dfce80353619073b146dcfe03d9af4273b2811d0899eebe922cc84a51d6f5e6826cc436d793f78 truffleruby-19.0.2-linux-amd64.tar.gz=eec92bfbd776acd61709a428b90b1029c5ea83e5ea839304d23cae3a541dd4fab3b387691fa76643f55d5939c9cac0cbe70dc0b5786e5e0e5d20f3fcd9a21356 truffleruby-19.0.2-macos-amd64.tar.gz=ce647b76c9931feac55baa5acd2c87d8335c606bc5cd7e462bd92ba1b09f4bab5db927f021e3119abfd85c33377003d060f36cf64eb121954fce8878112f01b5 truffleruby-19.1.0-linux-amd64.tar.gz=db01e6dc09fc5f39ca466aa94f725023d49a8f52343f129bf8c32b7f5f76ccf2d573ee3344fce3d5aff9983bc9af618cc5ca6e1dbba93b3f604e4f33f8a69b3f truffleruby-19.1.0-macos-amd64.tar.gz=f002bc0b6efca11eb97c4aa6df33d2e0fcc1de3443efd39d912b028df9dd8954cb76ef3ca7fbe140f4e922d6ae4c1a6a20853490ef1ea0749293e2fcd4ffe8fc truffleruby-19.1.1-linux-amd64.tar.gz=ec031e8c216e31f034d97aaccd6441869221d6946e18f375b44a866550b8e8eb4b2fb923f9ce1a62853bdcd5b9201e0f5d2732ca6525d80171d5732ef522bd25 truffleruby-19.1.1-macos-amd64.tar.gz=1c15918af939a8fe1779b71d9e53d2ce09ca7353173a3b357905d9fe1981ff013cf0f90c6b47e1ca66dd168c2f2d742f28a5fb134cc0231d36146da99f91c3cc truffleruby-19.2.0-linux-amd64.tar.gz=1248bdde9cd3651d7042fe4cecff4ad35534868d543fe2e6f3a5bfc3bc9d10d57b4139fc070f0a03861436a1aabc9a8ebdf3356f39b77a4b8f6a1dcf492f70a4 truffleruby-19.2.0-macos-amd64.tar.gz=92c3154ed229a115cf392826494745aae06dd9228dd0996c2c44c550552f13f9c254367d068452fa4a84eef79c19601c79b87e10f3121fd7b83b803514a41cfd truffleruby-19.2.0.1-linux-amd64.tar.gz=53c78cd1f255f2b7031a70a42b65c0bf80c510b9254f5d7ba82b4787f55f5b09cfa9544c424a90f4619a74179fed07c168bd501e34772ef836a773e89c467cc5 truffleruby-19.2.0.1-macos-amd64.tar.gz=ac11523cd49fac50de1e441039e429fb8cd6c7051d537e5083b64fa68eaa19c9f0a966b269da906c367985f229af82a4811282dbfd0a76ef6565162e1081a659 truffleruby-19.2.1-linux-amd64.tar.gz=c5ffc1b592a74e836a4f6ec75b0e103150a4a40d3183ae853ead38c951a85378163111cf0bd2b81e44548c0a7aeaded3ae8a7ae558d5a02dc9e2cce992b79b58 truffleruby-19.2.1-macos-amd64.tar.gz=bb467b91f66eb7d1e6f1a54a7bc0a3d9503bcbd935e8a02da9ea0b749a51e354b1140d4a4dad6fc05312b560bb9ccdcce4f6583bccd19bb5afee19bf494102fe truffleruby-19.3.0-linux-amd64.tar.gz=0e94777a3feabbf0107ed40847e20dd4e3696ff2b7c3f6ceddf3a53ccd812bd003c84c62a750e8fac9d2490374bf792d69174b48c3ed36b593485d86729136c1 truffleruby-19.3.0-macos-amd64.tar.gz=95470c389e24c865ecdc3d299005cd98f8221a128f3cd75f899b6b7ae5d6dc07962443ce0ff38dfd014589d5aaf08b718dc870a72eb7ea6ced18ec2b2db63095 truffleruby-19.3.0.2-linux-amd64.tar.gz=dc5309b71980657f750b4dd4f8b3bc4e191bc305b638b1e562ff5b0ad7fbba40079ba674caf46226a46b5ca58c10f812354786696264742f351b129fb088a672 truffleruby-19.3.0.2-macos-amd64.tar.gz=ff1c37485ebeff3edcc7081ce09bebe5541012dedff6997662c7f8a064e0ab10bef9a5cdf834263a06ae04ca0391743948bcdea6e6c9d7e1cfef9f21523c2bdb truffleruby-19.3.1-linux-amd64.tar.gz=c724547a9eacfdd135ce05eac9dcfe74e58a5e77c97f88103f83b8513c15c975a0ecf623f623a425ec81fad1b64d3b5e135660d6943608ad08048cda00eace79 truffleruby-19.3.1-macos-amd64.tar.gz=d746b2ad410c15d145d36c676a070ae454ba8e5ec6c594d5ebcf54b1fc719f98e8b8f71b6fd504c3d38df286bd11c5114f73b5ba39be312b11d42d4ca1a17d02 truffleruby-20.0.0-linux-amd64.tar.gz=4efea5ded5fcc6886befba3a3720fe1e5b2e376d46738565e8871a1ce0201a33ed52e78b8af2fb389618bdea99466d126d8537dd0919b0c13f8ff1940cb3e52e truffleruby-20.0.0-macos-amd64.tar.gz=b36488330514b77c7115689042cf2482a0beb9f72a0b05fb4c7a6ecb0835a3da47c3b15c41abd6ffced023e65ecf7eabcfbcc6e41901dcddd0fb3dfed46564c6 truffleruby-20.1.0-linux-amd64.tar.gz=116d57404540b85c15b321793a6f985624a2044af544e659b3607e50159703af5d445e22bff28ae2182dfa752f7500d420e250f6deccc98a2f01e89adba8ac3a truffleruby-20.1.0-macos-amd64.tar.gz=9b1267101dfe78b85c79f7528eb4de96b16933e66d5771efa6272372dac0fb35b199bb9d42773d61f4fa7a15d6cbd18b5753c148f7c3e477c7c4b21633f12b88 truffleruby-20.2.0-linux-amd64.tar.gz=a37eaf8475364b74d948979ac13dc6e6423bf11949ad1d0f2925f78a4495e80de9767001ccdb777c8cfd7f545839fad4d842522620c3acad179404bc4ce6752c truffleruby-20.2.0-macos-amd64.tar.gz=964c1e02cc53e1646060334a9911771e679a8344d811a0f77d5cae3529dfefff259c45505ac84b7debb958514cd5d2276ffd435802085494e0229dd140ce8f00 truffleruby-20.3.0-linux-amd64.tar.gz=ec2d8ff6a5d45fd7091e26430c67cbbdc0f8ffa41e9ac574d48802766fcd144e1f446db807700247ad6d8046b7ed070b5da70ef667e576d6fea60cc64ea5484f truffleruby-20.3.0-macos-amd64.tar.gz=1878f94e05a3c40484bf944a72412b179aa5415a16a7ebc1610cb512a1e1c4a2ce0e98685257ad6e5c14745245c35bb5b28205fb687292c4f17193cbfb3bb606 truffleruby-21.0.0-linux-amd64.tar.gz=b7d1b76cc015d136dbd74515431f4447730850475f81b00885b71b95819134db2656d941736048db42d519f03e1f2df066226513b77208adbdbbeda1f49cab11 truffleruby-21.0.0-macos-amd64.tar.gz=7677b827a9c1758d5f941c512cb0fe8daaa19c3db77b485d7dfa43940151d6b9094c4d9271e18ef5014630142dffb93d168c7ac631a3b5eef6fc61b2f9eecf88 truffleruby-21.1.0-linux-amd64.tar.gz=010e9fb78cab12486641780392be0f284da08dfd955f3a0d1ef72adb52e1c9024b54dc880173645aea2af680b3670a6bb01409198b757239edda4cd9bf2b1e90 truffleruby-21.1.0-macos-amd64.tar.gz=96ef8481faef1bfa7f01bb4d396818ef6f0943d19c6a23dedb68f8346740b72bf06efc707bdd29158cf991cc7073c97f429a07b02c2a48050512b46369850058 truffleruby-21.2.0-linux-amd64.tar.gz=c20af04909a852cb676c90403d852fb367d56eac0f9cf8ba42caa4cad1013ba393cc4611e434614ad132b7b0ed61160aadd887001b08de0767cf58f5e149efe7 truffleruby-21.2.0-macos-amd64.tar.gz=0b8d9633fde53aad78f0baf52858cd5a5716f53ff21698baab17da4a625b4369b88dbd664193e3f0d1b40e64c88699ab4f04bbe40f54189a588c93678962a7be truffleruby-21.2.0.1-linux-amd64.tar.gz=15ceeee383114f974aed5f16c99131d56947e13cfe248b97e55d61263ccd51aa56fc3e0df215196ef7f80ccba9e7f19e7f261d7a91d54bde2d9992caba682d82 truffleruby-21.2.0.1-macos-amd64.tar.gz=8a8762d90c19db4f48433ce0e3f3339e290685d79c6ee9bb7d4359c741edfa6a7360ff65124433d964730ac25b2cc6d8b581191b0a51479f11c2a80031a6c1c8 truffleruby-21.3.0-linux-amd64.tar.gz=b0c07b1ea797de92447a81b350d460c125a2efaff3c290637c4bcf1c216b5abd11148cfb143ad397062a96f36beade8234d0785c42f58fceac0011f629a5220b truffleruby-21.3.0-macos-amd64.tar.gz=42e607fa52a534123989ad232691ede65aa1c615f39320d93aa8ab9c21924eea7bc0aa49aef1a540ec972e2b3dc775d22a99eca3e0c9bc450c525f9020fbb975 truffleruby-22.0.0.2-linux-amd64.tar.gz=2231a0cfd27238c34ea0bbad27ba387453e48f39032607cbb829b347ea6ac804df15eb3f84d50b09248782d6202284498e7bc9aaa2060f0ce81bb83a84d700ad truffleruby-22.0.0.2-macos-amd64.tar.gz=1d7ac44f0862ad23cf17a7bba73d23dfd4727aadd9a3aa9633361e9bcd19655d163e160eae9c8db8ec9892f8fbf82d7a38b1cd689475bf41609a828208098623 truffleruby-22.1.0-linux-amd64.tar.gz=c4c2f9bf4236118c8ea62c08bad89e1034ecdfa0c4815693961c4d2b1b30ca043fe958abfec9cf36a8638aa2e005e71fcc244ebffd9ce11eb68cf48bd98c29d3 truffleruby-22.1.0-macos-amd64.tar.gz=507004ade838e614955e23331845839be656aaeae7869ed3d989c10e6491775a12313ac9ef03e14945f20f5e76d46ce6f7bb860af68a627c48065399cea3c567 truffleruby-22.2.0-linux-amd64.tar.gz=37c09249ef387df3e0614f646abb444cb5b7b2751538ab0432e703abe92a81b82e0d15f89d5ad7cd58afe5f30d9a92dc8471d19f1c1ce10b50478ac74f247739 truffleruby-22.2.0-linux-aarch64.tar.gz=49a7cfb4c81980d9c7a1588ef9f76a9bfb759d4b1925ab11f230d99c15a62e162a08249d23cf5646e2d38ecc2005e27103f2e5d92b83b0a182a4e64319b70c0d truffleruby-22.2.0-macos-amd64.tar.gz=d4c206fb0a5e63c5b7f61f2e62de854e4d0817075ef9ded237d98cd821c286e88d7b150d140d9907a957209f39be96c7025560e3908c89aa337925d2fba690af truffleruby-22.2.0-macos-aarch64.tar.gz=a01c18803777a74717ad699b6ee51eb759d881fb436d24338b557c52d4a693079d7b55f108394ccad0dd69c974cb895f4a36854355e84fecb67e41bf9eb18514 truffleruby-22.3.0-linux-amd64.tar.gz=d53472ae892dadc81c6fe63a597ccfb67e133958431b11716db4d920c78fc86f7496e4b10322d041c900bed77d27e02850da20aa95b297d63a9de2e72cdf3c76 truffleruby-22.3.0-linux-aarch64.tar.gz=dab63d49db4722f0c174ce8b882413102520ff649182946ba332ef5ba0fc6b58913595539a20b59e460faab2fba36f762dc8eb66aa729d4a6bb90feb2a95f053 truffleruby-22.3.0-macos-amd64.tar.gz=15c91d25fd6fb1d9f3f2a0b36676da5c8a76d62be86cff463ebe6c7e6aed2d9b6de9062021ab1b9b29cfb7a92b5682c860939acd71d12dba7e4a6bf3964fef3d truffleruby-22.3.0-macos-aarch64.tar.gz=7c44d0dd07e4ecd84a92f6dd574dc185906121b8eb75f6fe097b9d4738aa30751664d70e9027e072eeaa1dffa05fe7bcfc06be0c2dc950142f60664baf5eac69 truffleruby-22.3.1-linux-amd64.tar.gz=f41d3bd22500b7291121368169f8558df4563c840a01b70ff7feea3593f0152d8d77d4437af362bad62f25b79bce1ce8ddaa1bd8172a2a7ef8b61cdb6e478c9e truffleruby-22.3.1-linux-aarch64.tar.gz=1ca5221f0dc5ae3e0bd9545be474e115b2e62737701df95c6ee6cdaae5d82815acbe6af961ff23afee64dc26e655c7786d4347e3694c140773f065534322ee59 truffleruby-22.3.1-macos-amd64.tar.gz=bae16cc04c6018703833121f4258c3f18fa5062309d0600458be3c51c838bc63976a026db0f28d23005df9b640ccad0a9cafc56610a5ca9c24951c66b62097d9 truffleruby-22.3.1-macos-aarch64.tar.gz=b56e230d8fbc95d19364e695aaf1e552238b02ace7056f636808a7d7510777cddfde572ace5238ea1e314351bdd1a053ab3912d0889f51f55c722797c83eaaee truffleruby-23.0.0-preview1-linux-amd64.tar.gz=d538412f12d5ce743c351acbaa483b8b85dd2cf84fe06b3e90ca21f3c2fc0465df9c1773b3515fe4296d599f45e9cbb935dc5a69fe45668321e5639d58608ef4 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=f10b5ac749b11f93c2469f2c8a713ad090cb653761ae0a3e1ba4c19b0c96bd61c5e8da74d8944f9487c2d327d268a188f2cb56028d2beaca2a7816e63123600b truffleruby-23.0.0-preview1-macos-amd64.tar.gz=cd9db49c4253bd66cad6f9ae111c83d3befd0102a7ccb72a2407d22dc576ba7f3a26a90cd479f26dee3565d2f893a2b7c8b549e2351336f35d2632e57966657c truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=28b77d9943cd1617e0445633a9fea8911cfa975f5c581192439cd0944d2a17c2b0558e3e4112588b5fc77b57c48d857ad68ac51fcb867250625ad85406d87acc truffleruby-23.0.0-linux-amd64.tar.gz=da702de2e8c994f2646a3de5b44824210dbd37129cd2f91c3bdd990a1b0d0b05dee4443ad0f6cf98fdb4e489c9f4cde64f3561baf486dc642d4981a1a1812925 truffleruby-23.0.0-linux-aarch64.tar.gz=808254a154adcfd1bbd6e22bcdafebb6169c6f8cfd1c55382d446bb66002384ee844dcd8b5f642703ef440f7566645d190081f45e04a7d8d59bf87571cb4430a truffleruby-23.0.0-macos-amd64.tar.gz=f775d57e63c606eef424a1115408ed8539ef47d6bea0125ad1de7ee4fd5971e96747cb7f5d22d91d2f004edbd6ed6b9b5bd014127dc1abe7821a3a987a72d9dc truffleruby-23.0.0-macos-aarch64.tar.gz=000069854458f81d97eefe14123fbb69937942825e77d35602d55fa279123808177a34f252aec9dcfa48b93feacbee81ae0f0e7043c2d8a9ace2a4bb61ab253f truffleruby-23.1.0-linux-amd64.tar.gz=1868799d989c51798cf07b5243457af7ae2436dd19805fd634c98b2f1885266b5c3ec81dde668c2e5a290e9028f6f9fd223d153489df6ffcc74d45240aa020ad truffleruby-23.1.0-linux-aarch64.tar.gz=2766621877996ad35fddb94f978feed531307e8abf601dcf863754c96782b8149c3ac512dfe6dd2bdef0fe0e8a968bdd77608c41020434aaef4e7250c09edd74 truffleruby-23.1.0-macos-amd64.tar.gz=06c5a1d6ad644fd81737f0a1fd24c1529f712abe2a4485ad597aca7c35ca2af898121bb5883552cf518e2afdcb4221c8ad013759b46a69e34249e7c5ebe2b170 truffleruby-23.1.0-macos-aarch64.tar.gz=496cacc5cf413a48b60184e097a962ab5d2236c539f07cc0a9a2d9ef57dfc911a26b125cc3ad9408f6170c6f93c7562f35729c8313be0301972be21c10097942 truffleruby-23.1.1-linux-amd64.tar.gz=dbca85e281bf2484371a0bbcc202ca700acc704304d966b9202cf3835e82f6eb502e43522355f4c9e5a743877d93f5609006fbba2c5e6343a89de130e5209f6a truffleruby-23.1.1-linux-aarch64.tar.gz=6a58842d79247d8a64c513d68db9d53ea5640c02f71a1bc45f103baaaca67bb224939ae5f21ef55daa9d9b9697404052d39a3c382768ca366ab7892b8bf1abbe truffleruby-23.1.1-macos-amd64.tar.gz=7cc6bc957b7ffa42e9fbfe2f6e3014bf1e7996f2754e9e74377078c2c7bc7ac8e10598f1e1452839fc5b9583c823a2a735731ca193a6af2814a02566cc4cd9e4 truffleruby-23.1.1-macos-aarch64.tar.gz=a85b8189ef8a280f6a27d4c1c93893f844266dbdc15b8c4988cdf581613a353508fae4872ac9380efcc47f36357e137861521712c00ce8548041762a8987a9b2 truffleruby-23.1.2-linux-amd64.tar.gz=6307fd71fb1431fb12346d1f13dee4b3afe53947e8a9c1f3e3aa0baae5f9fc9e1496ede0a7d86b169d912ffef9625af998b4e698dc57a2a649140150e3fae28a truffleruby-23.1.2-linux-aarch64.tar.gz=0f0c5e4aa4e9fbc9b9f91d2b3d3fbfe26e78c5bc5b369fc78dd54775a7582b8c084a64f02848058bec79387fd80b09a5a5594ecfb268635fe76e1f9d957c2e92 truffleruby-23.1.2-macos-amd64.tar.gz=648401a73b29c28862a1fa077c2e1bf8fff65015c8bc690ff883a00a3dfd99389ffdb71f39ad85a4f16c531470f4cc891ae51ec927a426b0fa05fa85c9c6a2f9 truffleruby-23.1.2-macos-aarch64.tar.gz=4ec88684c09aacfa1d8bfed9a17243579ededacecd869e98e12841710bae29ed6e5f080611e53fc217a853f730bb2a9cb3d47ef15443eb8a1ad76a120118c8a5 truffleruby-24.0.0-linux-amd64.tar.gz=3a59a4dc58ad03549d8e63db1485767757715fc9aec21b2b67b1440b13871a04541abeff9bc8201b3088e1865360b1667459e536d3cfb09687dbffca95deafeb truffleruby-24.0.0-linux-aarch64.tar.gz=50f3993b7362bb6e7da80f7327df3d079bb02f98b67012e2135005d77e61648e4f3268f767d8ca245ec5889ff934fbcccb94fd5ecbd55bb0cd9cca900fe10509 truffleruby-24.0.0-macos-amd64.tar.gz=9ec8bb340b15e29550448e123e3ab0f183edb9bbe7e052743cb2306cbd1956a5789c5a367c80c5e8d913dce2b804448dd6815e4d3421515166daf8db51d37c7d truffleruby-24.0.0-macos-aarch64.tar.gz=499f83bf65dcb6ecc92414a3550673e6a0baaddfe3ab13c0bd7aa1bdde1ae2a61d9d0ca8001c0d12688d9e09f98f9e2946a651220fe7d200bb0ec6f285394701 truffleruby-24.0.1-linux-amd64.tar.gz=62b4e8508eba8cdaac70e99ac9cb0b33a663b4195d79b2dad3d771ef538c6c41d1d91bb7bb07fbbafbcbbcaf17814ffaf6d6bdbafd474ba6a8ecdac30315a8c9 truffleruby-24.0.1-linux-aarch64.tar.gz=817d877848ea4bb55658ce34bbda52926be12426a8a5e1c4588bc0ec1896018b06dce176336b382f80a7c6d073d4331b20694a7797ee8fdf0177e973053bf929 truffleruby-24.0.1-macos-amd64.tar.gz=2ea65bea154aa38cce3f00f24fc9a4aab5e7478fafd070d0cc966878371c070d5a1776b7405e2c9e4cfa14e5c51219ed0fa988294eb4708690983b348886f439 truffleruby-24.0.1-macos-aarch64.tar.gz=bc1923e21768d34779c1bcd7850456a01ddc01acd1ccf20f4fb4a446fb847f8c51b1ff4a7c0cdc317ef8ce057ac24f18f25b778a02a6e2b185e0055d946ecaf2 truffleruby-24.0.2-linux-amd64.tar.gz=5d111beb862b618c4e6a7f8aea1d3d6476740513efdd59bf980a2b6d525a017f46fe02017b075962a4919a001b60bd9a070e69fedfa8a85533c0adbad2a8d86b truffleruby-24.0.2-linux-aarch64.tar.gz=8e3ba19df4e5509c4719bc3bb621f70ca6a0e683d48a296703649b88abd83a165e8a64ad2d7dc45394b6de0b214a95a395fa449f5393dd9e67deab9e149cf494 truffleruby-24.0.2-macos-amd64.tar.gz=06d3b5533c4e26aa1356e602c672efad99208aaee96110904216e16dcfb1d99a7535c3ef275f9a14635dd2f05110798b3c75d71199f6010f23c92c6990492cef truffleruby-24.0.2-macos-aarch64.tar.gz=ba36d3f1680112e6623b14a4bb902a5f65f11e9827f44462161b1c79ee344ca340566289aa1f841c1e213daef5608c159343cc203d07f41c2a55eaeb25db0987 truffleruby-24.1.0-linux-amd64.tar.gz=9a93fd61086fabcb6c4f3a0fcb16e81f42b0203a24a04209fe446eb5f88d78e2ac59ab54d42cc30ef5417199a88b452973eecdfafc57c7877e11edf0a3d42b13 truffleruby-24.1.0-linux-aarch64.tar.gz=ca23edf279ee9b4693630df9596c6e269bb544e06bfd02620447f51108d9e9b4dc8b3ecbcc7a8ba1280560c0eb4b59474e75acead81799e4c51365acb5676d24 truffleruby-24.1.0-macos-amd64.tar.gz=65b661b3bf497bbb090a2cb49607aa00c3e5bfe95eb19c7736d798715d55fe07ddb4e8d8c25c1ec4b7b304b37205c7de9d8ac2d56005c9fc43e4dc81ae699c9b truffleruby-24.1.0-macos-aarch64.tar.gz=ab665d995bd63839c0bf6ed1171875cce7974d49ed79953a05ecdcf13d815c0a5cd471f40839f3f51a1b3128b40a4ed34d9b89e4c3f343b38c78276aed667956 truffleruby-24.1.1-linux-amd64.tar.gz=78e4e8bd910e4b3b41e927f6158cf8cfc74da5187969727d5c5303416310c5b7f72fde239993ecd5ab51724785cd80b2bb9a422a0475320fca57ad40b26d2786 truffleruby-24.1.1-linux-aarch64.tar.gz=c4e3aa72433622f96216b053862beb65861ab20ab28cfc50f51452720173f0a836ee69335281c4c89c6289ffa6f42517b9487d1b6fe16926aecfd9180d6f8195 truffleruby-24.1.1-macos-amd64.tar.gz=099d1abaa8677ecfd298e974fbb37e21bff2ad45313090cecf9a2799b79b74223ca4f95fb873cb7148bb2754ea3f923cfb553dd1dbdf6f1c088a3793bd991871 truffleruby-24.1.1-macos-aarch64.tar.gz=8980a71fc423c454ceaa16b46ba085a0164bf22e3e2040e960623148f09fea4c467b304774afc2ea37d9e072905eab3ad65b3c4acdc7b01ba238e24829cc16d2
rvm/rvm
c27ef2499124e9a09dd42b6e7184c265400565ab
requirements/osx_brew: handle Workbrew. (#5528)
diff --git a/CHANGELOG.md b/CHANGELOG.md index ff70177..1569dd1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,556 +1,557 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Use OpenSSL 3 for Ruby 3.2 and 3.3 [\#5480](https://github.com/rvm/rvm/pull/5480) * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) * Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) * Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) * Install `libncurses-dev` instead of `libncurses5-dev` on newer Debian and Ubuntu versions [\#5477](https://github.com/rvm/rvm/pull/5477) * Use `zlib-ng-compat` packages for Fedora 40+ [\#5479](https://github.com/rvm/rvm/pull/5479) * Detect core count on ARM-based machines [\#5498](https://github.com/rvm/rvm/pull/5498) * Fix requirement check for Ubuntu [\#5500](https://github.com/rvm/rvm/pull/5500) * Update location of homebrew install script on osx [\#5505](https://github.com/rvm/rvm/pull/5505) +* Fix detection of Homebrew's write permissions when using Workbrew [\#5528](https://github.com/rvm/rvm/pull/5528) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) * 3.3.3 [\#5474](https://github.com/rvm/rvm/pull/5474) * 3.3.4 [\#5488](https://github.com/rvm/rvm/pull/5488) * 3.2.5 [\#5490](https://github.com/rvm/rvm/pull/5490) * 3.3.5 [\#5499](https://github.com/rvm/rvm/pull/5499) * 3.2.6, 3.3.6 [\#5513](https://github.com/rvm/rvm/pull/5513) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) * 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1, 24.0.2, 24.1.0, 24.1.1 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.3.15.0 [\#5482](https://github.com/rvm/rvm/pull/5482) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) * 9.4.8.0 [\#5484](https://github.com/rvm/rvm/pull/5484) * 9.4.9.0 [\#5512](https://github.com/rvm/rvm/pull/5512) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) * 3.1.6, 3.2.5, 3.3.2, 3.3.3 and 3.3.4 [\#5491](https://github.com/rvm/rvm/pull/5491) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) #### Upgraded Ruby interpreters: * Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159), 2.5.0-preview1 [\#4204](https://github.com/rvm/rvm/pull/4204), 2.2.9, 2.3.6, 2.4.3 and 2.5.0-rc1 [\#4261](https://github.com/rvm/rvm/pull/4261), 2.5.0 [\#4265](https://github.com/rvm/rvm/pull/4265), 2.6.0-preview1 [\#4317](https://github.com/rvm/rvm/pull/4317), 2.2.10, 2.3.7, 2.4.4, 2.5.1 [\#4340](https://github.com/rvm/rvm/pull/4340) and 2.6.0-preview2[\#4395](https://github.com/rvm/rvm/pull/4395) * Add support for Rubinius 3.85-3.100 * Add support for JRuby 9.1.14.0 [\#4224](https://github.com/rvm/rvm/pull/4224), 9.1.15.0 [\#4258](https://github.com/rvm/rvm/pull/4258), 9.1.16.0 [\#4316](https://github.com/rvm/rvm/pull/4316), 9.1.17.0 [\#4366](https://github.com/rvm/rvm/pull/4366), 9.2.0.0 [\#4390](https://github.com/rvm/rvm/pull/4390) * Add support for mruby 1.4.0 [\#4286](https://github.com/rvm/rvm/pull/4286) * Add support for MagLev 1.1* and 1.2Alpha-1.2Alpha4 [\#4289](https://github.com/rvm/rvm/pull/4289) * Add support for RubyGems 2.6.14 [\#4205](https://github.com/rvm/rvm/pull/4205), 2.7.0-2.7.4 [\#4276](https://github.com/rvm/rvm/issues/4276) and 2.7.5-6 #### Binaries: * Ubuntu 16.04 x64 binaries for Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4362](https://github.com/rvm/rvm/issues/4362), 2.2.9, 2.3.6 and 2.4.3 [\#4259](https://github.com/rvm/rvm/issues/4259), 2.2.8, 2.3.5 and 2.4.2 [\#4161](https://github.com/rvm/rvm/issues/4161), 2.5.0 [\#4272](https://github.com/rvm/rvm/pull/4272) * Ubuntu 17.04 for Ruby 2.1.\*, 2.2.\* [\#4233](https://github.com/rvm/rvm/pull/4233) diff --git a/scripts/functions/requirements/osx_brew b/scripts/functions/requirements/osx_brew index 74e3d44..a384777 100644 --- a/scripts/functions/requirements/osx_brew +++ b/scripts/functions/requirements/osx_brew @@ -32,531 +32,536 @@ requirements_osx_brew_version_list() requirements_osx_brew_lib_installed_prefix_check() { brew_lib_prefix="$( brew --prefix "$1" 2>/dev/null )" && [[ -n "${brew_lib_prefix}" && -d "${brew_lib_prefix}" ]] || return $? } requirements_osx_brew_lib_installed() { \typeset brew_lib_prefix # Test for older versions of Homebrew before adding the `--formula` flag. brew_version=$( brew --version | awk 'NR==1 { print $2 }' ) if __rvm_version_compare $brew_version -ge 2.5.7 then brew_ls_flags="--formula" fi brew list -1 $brew_ls_flags | __rvm_grep "^${1}$" >/dev/null && requirements_osx_brew_lib_installed_prefix_check "$1" || return $? } requirements_osx_brew_lib_available() { brew search "/^${1}$/" | __rvm_grep "^${1}$" >/dev/null || return $? } requirements_osx_brew_libs_error() { rvm_warn "There were package ${1} errors, make sure to read the log. Try \`brew tap --repair\` and make sure \`brew doctor\` looks reasonable. Check Homebrew requirements https://docs.brew.sh/Installation" } requirements_osx_brew_libs_install() { brew install "$@" --force || { \typeset ret=$? requirements_osx_brew_libs_error "installation" return $ret } } requirements_osx_brew_libs_remove() { brew remove "$@" || { \typeset ret=$? requirements_osx_brew_libs_error "removal" return $ret } } requirements_osx_brew_check_custom() { brew tap | __rvm_grep "$1" >/dev/null || __rvm_add_once packages_custom "$1" } requirements_osx_brew_install_custom() { \typeset __tap for __tap do brew tap "${__tap}" || return $? done } requirements_osx_brew_libs_outdated_filter() { \typeset IFS IFS="|" brew outdated --quiet | __rvm_grep -E "$*" } requirements_osx_brew_libs_try_upgrade() { (( rvm_autolibs_flag_number > 0 )) || return 0 \typeset -a outdated_libs __rvm_read_lines outdated_libs <( requirements_osx_brew_libs_outdated_filter "$@" ) if (( ${#outdated_libs[@]} )) then rvm_requiremnts_fail_or_run_action 2 \ "Homebrew libs '${outdated_libs[*]}' require update - skipping." \ brew upgrade "${outdated_libs[@]}" || return $? fi } requirements_osx_brew_libs_set_path() { \typeset brew_lib brew_lib_prefix for brew_lib do if requirements_osx_brew_lib_installed_prefix_check "${brew_lib}" then __rvm_add_to_path prepend "${brew_lib_prefix}/bin" fi done rvm_debug "PATH=$PATH" } requirements_osx_brew_libs_configure() { \typeset package brew_lib brew_lib_prefix package="$1" shift for brew_lib do if requirements_osx_brew_lib_installed_prefix_check "${brew_lib}" then __rvm_update_configure_opt_dir "${package}" "${brew_lib_prefix}" fi done } requirements_osx_brew_after() { (( ${#packages_installed[@]} == 0 )) || requirements_osx_brew_libs_try_upgrade "${packages_installed[@]}" || return $? requirements_osx_brew_libs_set_path "${brew_libs[@]}" || return $? requirements_osx_brew_libs_configure "$1" "${brew_libs_conf[@]}" || return $? case "$1" in (jruby*) true ;; (*) requirements_osx_brew_after_update_certs_openssl "$1" ;; esac unset brew_libs brew_libs_conf brew_openssl_package } requirements_osx_brew_after_update_certs_openssl() { \typeset brew_lib_prefix if requirements_osx_brew_lib_installed_prefix_check "$brew_openssl_package" && [[ -x "${brew_lib_prefix}/bin/openssl" ]] then requirements_osx_update_openssl_cert "${brew_lib_prefix}/bin/openssl" || return $? else rvm_requiremnts_fail_always 2 \ "Somehow it happened there is no executable 'openssl', run 'brew doctor' and make sure latest '$brew_openssl_package' is installed properly." || return 12 # passing by 127 could be read as missing rvm. fi } requirements_osx_brew_libs_default_check_gcc() { if requirements_detect_installed gcc gcc@8 gcc@7 gcc@6 gcc@5 [email protected] then case "${packages_installed[*]}" in (*gcc*) export CC="$(brew --prefix gcc )/bin/gcc-8" ;; (*gcc@8*) export CC="$(brew --prefix gcc@8 )/bin/gcc-8" ;; (*gcc@7*) export CC="$(brew --prefix gcc@7 )/bin/gcc-7" ;; (*gcc@6*) export CC="$(brew --prefix gcc@6 )/bin/gcc-6" ;; (*gcc@5*) export CC="$(brew --prefix gcc@5 )/bin/gcc-5" ;; (*[email protected]*) export CC="$(brew --prefix [email protected] )/bin/gcc-4.9" ;; (*) return 1 ;; esac else return $? fi } requirements_osx_brew_libs_default_add_gcc_v_auto() { # Install gcc from brew only for macOS earlier then Mojave (10.14) if __rvm_version_compare "${_system_version}" -lt 10.14 then if __rvm_version_compare "${_system_version}" -ge 10.10 then requirements_osx_brew_libs_default_add_gcc_v 6.0 else requirements_osx_brew_libs_default_add_gcc_v 4.9 fi fi } requirements_osx_brew_libs_default_add_gcc_v() { case "$1" in (4.9) requirements_osx_brew_libs_default_add_gcc "$2" gcc-4.9 [email protected] ;; (5.0) requirements_osx_brew_libs_default_add_gcc "$2" gcc-5.0 gcc@5 ;; (6.0) requirements_osx_brew_libs_default_add_gcc "$2" gcc-6.0 gcc@6 ;; (7.0) requirements_osx_brew_libs_default_add_gcc "$2" gcc-7.0 gcc@7 ;; (8.0) requirements_osx_brew_libs_default_add_gcc "$2" gcc-8.0 gcc@8 ;; (*) rvm_error "Do not know how to check/install gcc '$1'." return 1 ;; esac } requirements_osx_brew_libs_default_add_gcc() { if [[ -n "$1" ]] && __rvm_which "$1" >/dev/null then true else export CC="$2" if __rvm_which "$2" >/dev/null then true else if [[ -z "${3:-}" ]] then false # no package known and binary not found else if [[ -z "$(brew --prefix $3 2>/dev/null)" ]] then rvm_error "We don't know how to install <code>$3</code>" rvm_log "Try to run <code>brew install $3</code> and re-run the same rvm command afterwards." false else export CC="$(brew --prefix $3 2>/dev/null || brew --prefix)/bin/$2" brew_libs+=( "$3" ) fi fi fi fi } requirements_osx_brew_define_gcc() { # Old gcc46 but it will most likely not work on OSX 10.10+ if __rvm_version_compare "${_system_version}" -ge 10.10 then undesired_check gcc46 fi \typeset selected_compiler="$( __rvm_selected_compiler )" case "${selected_compiler:-}" in ("") case "$1" in (rbx-2*|rubinius-2*) brew_libs_conf+=( [email protected] ) ;; (rbx-3*|rubinius-3*|rbx*head|rubinius*head) requirements_check git openssl readline libyaml gdbm llvm@5 rvm_configure_flags+=( --llvm-config="$(brew --prefix llvm@5)/bin/llvm-config" ) ;; (truffleruby*) requirements_check libyaml ;; (*) # Install gcc from brew only for macOS earlier then Mojave (10.14) if __rvm_version_compare "${_system_version}" -lt 10.14 then __ruby_clang_ok "$1" || requirements_osx_brew_libs_default_check_gcc || requirements_osx_brew_libs_default_add_gcc_v_auto || return $? fi ;; esac ;; (*gcc-4.9|*gcc-5|*gcc-6|*gcc-7|*gcc-8|*gcc) requirements_osx_brew_libs_default_add_gcc_v ${selected_compiler##*-} "${selected_compiler}" || return $? # version # full_path ;; (*) rvm_warn "We don't know how to ensure that selected compiler '${selected_compiler}' exists." ;; esac } requirements_osx_brew_define_openssl() { # OpenSSL version depends on the version of Ruby being installed undesired_check openssl098 case "$1" in (ruby-2.3*|ruby-2.2*|ruby-2.1*|ruby-2.0*|ruby-1.9*|ruby-1.8*) brew_openssl_package="openssl" ;; (ruby-2*|ruby-3.0*) brew_openssl_package="[email protected]" # Needed for older openssl: https://bugs.ruby-lang.org/issues/18763 export PKG_CONFIG_PATH="$(brew --prefix [email protected])/lib/pkgconfig:$PKG_CONFIG_PATH" ;; (ree-1.8*) brew_openssl_package="openssl" ;; (rbx-1*|rbx-2*) brew_openssl_package="openssl" ;; (truffleruby*) brew_openssl_package="openssl" ;; (*) brew_openssl_package="openssl@3" export PKG_CONFIG_PATH="$(brew --prefix openssl@3)/lib/pkgconfig:$PKG_CONFIG_PATH" ;; esac brew_libs_conf+=( "$brew_openssl_package" ) } requirements_osx_brew_libs_default() { brew_libs=( autoconf automake libtool pkg-config coreutils ) brew_libs_conf=( libyaml libksba readline zlib ) requirements_osx_brew_define_gcc "$1" requirements_osx_brew_define_openssl "$1" requirements_check "${brew_libs[@]}" "${brew_libs_conf[@]}" || return $? } requirements_osx_brew_define() { case "$1" in (rvm) true ;; (jruby*) requirements_check make if is_head_or_disable_binary "$1" then __rvm_which git >/dev/null || requirements_check git case $( jruby_installation_method "$1" ) in mvn) requirements_check_custom_after mvn=maven ;; esac fi requiremnts_osx_java_fail || return $? ;; (ir*) __rvm_which mono >/dev/null 2>&1 || return $? ;; (opal) requirements_check node ;; (truffleruby*) requirements_osx_brew_libs_default "$1" ;; (ruby*head) __rvm_which git >/dev/null || requirements_check git requirements_osx_brew_libs_default "$1" requirements_version_minimal autoconf 2.67 ;; (*-head) __rvm_which git >/dev/null || requirements_check git requirements_osx_brew_libs_default "$1" ;; (*) requirements_osx_brew_libs_default "$1" ;; esac } __CLT_version_at_least() { \typeset __version="$( pkgutil --pkg-info com.apple.pkg.DeveloperToolsCLI 2>/dev/null | __rvm_awk '$1~/version:/{print $2}' )" [[ -n "${__version}" ]] || __version="$( pkgutil --pkg-info com.apple.pkg.CLTools_Executables 2>/dev/null | __rvm_awk '$1~/version:/{print $2}' )" [[ -n "${__version}" ]] ||return $? __rvm_version_compare "${__version}" -ge "$1" || return $? } requirements_osx_brew_update_system() { if __rvm_version_compare "${_system_version}" -ge 10.7 then __rvm_detect_xcode_version_at_least 4.6.2 || __CLT_version_at_least 4.6.0 || { \typeset ret=$? rvm_error " Xcode version older than 4.6.2 installed, download and install newer version from: http://connect.apple.com After installation open Xcode, go to Downloads and install Command Line Tools. " return $ret } fi [ -n "$RVM_SKIP_BREW_UPDATE" ] || brew update || { \typeset ret=$? rvm_error "Failed to update Homebrew, follow instructions at https://docs.brew.sh/Common-Issues and make sure \`brew update\` works before continuing." return $ret } } requirements_osx_brew_install_brew_setup() { if __rvm_version_compare "${_system_version}" -ge 10.5 then homebrew_repo="Homebrew/brew" homebrew_installer="https://raw.githubusercontent.com/Homebrew/install/master/install.sh" homebrew_name="Homebrew" else homebrew_repo="mistydemeo/tigerbrew" homebrew_installer="https://raw.githubusercontent.com/mistydemeo/tigerbrew/go/install" homebrew_name="Tigerbrew" fi if (( UID == 0 )) && [[ -z "${SUDO_USER:-}" ]] then rvm_error "Requested installation of ${homebrew_name} but the process is running as 'root', make sure to run with 'sudo' from normal user and try again." return 1 fi homebrew_home_default="/usr/local" printf "%b" "About to install ${homebrew_name} in the default location \`$homebrew_home_default\`.\n It is possible to select a custom location, however it is not recommended and some things might not work. You should do it only if you do not have write rights to \`$homebrew_home_default\`. Press ENTER to install ${homebrew_name} in the default location \`$homebrew_home_default\` or type a custom path (needs to be writable for the current user)\n: " read homebrew_home || return $? rvm_debug "homebrew_home=${homebrew_home:=$homebrew_home_default}" } requirements_osx_brew_install_brew_install() { if [[ "${homebrew_home}" == "${homebrew_home_default}" ]] then rvm_debug "Default homebrew installation from: $homebrew_installer" if [[ -n "${SUDO_USER:-}" ]] then su - ${SUDO_USER} -c "ruby -e \"$(curl -fsSL $homebrew_installer)\"" || return $? else ruby -e "$(curl -fsSL $homebrew_installer)" || return $? fi else rvm_debug "Simplified homebrew installation from: https://github.com/${homebrew_repo}/tarball/master" mkdir -p "${homebrew_home}" || return $? __rvm_curl https://github.com/${homebrew_repo}/tarball/master | tar xz --strip 1 -C "${homebrew_home}" __rvm_check_pipestatus ${PIPESTATUS[@]} ${pipestatus[@]} || return $? chmod +x "${homebrew_home}/bin/brew" # just in case if [[ -n "${SUDO_USER:-}" ]] then chown -R ${SUDO_USER} "${homebrew_home}" fi fi PATH="$PATH:${homebrew_home}/bin" } requirements_osx_brew_install_brew() { \typeset homebrew_home_default homebrew_home homebrew_repo homebrew_installer homebrew_name requirements_osx_brew_install_brew_setup || return $? requirements_osx_brew_install_brew_install || return $? } requirements_osx_brew_ensure_brew_available() { __rvm_which brew >/dev/null || { rvm_requiremnts_fail_or_run_action 2 \ "Requested installation with Homebrew libs, but Homebrew is not available." \ requirements_osx_brew_install_brew || return $? } __rvm_which brew >/dev/null || { \typeset __result=$? rvm_error "\ Something went wrong during Homebrew installation, can not find 'brew' command, please report a bug: https://github.com/rvm/rvm/issues" return $__result } } requirements_osx_brew_ensure_brew_can_install() { # only check for 3+ (packages install, enabled) (( rvm_autolibs_flag_number > 2 )) || return 0 \typeset __celar_path __celar_path="$(brew --cellar)" if + [[ -x /opt/workbrew/bin/brew ]] + then + # Workbrew still installs with a non-writable Homebrew. + return 0 + elif [[ ! -w "${__celar_path%/*}/bin" ]] then rvm_error "ERROR: '${__celar_path%/*}/bin' is not writable - it is required for Homebrew, try 'brew doctor' to fix it!" return 1 elif [[ ! -w "${__celar_path}" && -e "${__celar_path}" ]] then rvm_error "ERROR: '${__celar_path}' is not writable - it is required for Homebrew, try 'brew doctor' to fix it!" return 1 else rvm_debug "brew seems to be writable" fi } requirements_osx_brew_before() { requirements_osx_brew_ensure_brew_available || return $? requirements_osx_brew_ensure_brew_can_install || return $? }
rvm/rvm
692f7f464ae7a5062d76adff270bd330b3318066
Improve formatting of curl install command (#5515)
diff --git a/README.md b/README.md index 2297110..45e1f94 100644 --- a/README.md +++ b/README.md @@ -1,181 +1,183 @@ [![Tests](https://github.com/rvm/rvm/actions/workflows/specs.yml/badge.svg?branch=master)](https://github.com/rvm/rvm/actions/workflows/specs.yml) [![GPG signature check](https://github.com/rvm/rvm/actions/workflows/gpg_signature.yml/badge.svg?branch=master)](https://github.com/rvm/rvm/actions/workflows/gpg_signature.yml) [![OpenCollective](https://opencollective.com/rvm/backers/badge.svg)](#backers) [![OpenCollective](https://opencollective.com/rvm/sponsors/badge.svg)](#sponsors) # What's RVM RVM is the acronym of Ruby enVironment Manager. It manages Ruby application environments and enables switching between them. Homepage and more info at [https://rvm.io](https://rvm.io) ## Table of Contents - [Installing RVM](#installing-rvm) - [Ubuntu](#ubuntu) - [Any other operating system](#any-other-operating-system) - [Additional installation options](#additional-installation-options) - [Upgrading RVM](#upgrading-rvm) - [Basic RVM usage](#basic-rvm-usage) - [Installing ruby](#installing-ruby) - [Switching between ruby versions](#switching-between-ruby-versions) - [Other RVM commands](#other-rvm-commands) - [Reporting issues](#reporting-issues) - [Check documentation](#check-documentation) - [Try again with latest RVM](#try-again-with-latest-rvm) - [File an issue](#file-an-issue) - [Contributing](#contributing) - [License](#license) ## Installing RVM ### Ubuntu RVM have dedicated Ubuntu package, so please follow instructions posted here: https://github.com/rvm/ubuntu_rvm If you need a different (newer) version of RVM, after installing base version of RVM check the [Upgrading](#upgrading) section below. ### Any other operating system Make sure you have following required packages installed: * `curl` * `gpg2` And then run: -`\curl -sSL https://get.rvm.io | bash -s stable` +``` +curl -sSL https://get.rvm.io | bash -s stable +``` ### Additional installation options Additional installation options and details about the installation process are described here: https://rvm.io/rvm/install ## Upgrading RVM You can upgrade RVM any time by running: `rvm get VERSION` Where `VERSION` should be replaced by one of the following values: * `stable` - latest stable RVM (good for servers) * `master` - latest RVM (might not be stable) * `branch /path/branch` - branched version of RVM (for testing new features or bug fixes) Additional upgrading options are described here: https://rvm.io/rvm/upgrading ## Basic RVM usage Basic RVM usage scenarios include installing and switching between different ruby versions. ### Installing ruby To install ruby you have to call `rvm install INTERPRETER[-VERSION] OPTIONS` When no version specified, RVM will install latest stable version or selected interpreter. If you omit to specify interpreter, RVM will assume that you wanted to install MRI ruby. Following examples would have exactly the same effect: ``` rvm install ruby-2.3.1 rvm install ruby-2.3 rvm install 2.3.1 rvm install 2.3 ``` Passing additional `--default` option makes selected ruby your default. We currently supported following ruby interpreters: * `ruby` - MRI ruby (The Gold Standard) * `ironruby` - a .NET ruby * `jruby` - Java implementation of the ruby * `macruby` - implementation of ruby 1.9 directly on top of macOS core technologies * `maglev` - 64-bit implementation on top of VMware's GemStone * `mruby` - lightweight ruby * `opal` - ruby to JavaScript compiler * `rbx` - Rubinius - a next generation virtual machine VM for ruby * `topaz` - high performance ruby, written in RPython * `truffleruby` - high performance ruby using GraalVM Historical interpreters which you can still install with RVM, but are not anymore developed and supported by their authors: * `ree` - Ruby Enterprise Edition - MRI Ruby with several custom patches for performance, stability, and memory ### Switching between ruby versions To switch between ruby versions you should call `rvm use INTERPRETER[-VERSION]` Same rules and options apply as for `install` command with two special _interpreters_. * `default` - [default](https://rvm.io/rubies/default/) ruby (or the system ruby if a default hasn't been set) * `system` - system ruby (state before RVM was installed) Additionally you might want to list your preferred ruby version in a `.ruby-version` file stored in your project folder. This would cause automatic switch to selected ruby whenever you enter the folder. ### Other RVM commands RVM comes bundled with many different tools for managing your ruby environment. More detailed information about every command listed below can be read after executing `rvm help COMMAND` or browsing documentation on RVM homepage [https://rvm.io](https://rvm.io). ## Reporting issues Here at RVM we get a high amount of bug reports, and often they are connected with specific environment settings which might be hard for us to replicate. That's why we would kindly ask you to follow the steps below so we can maximize our time helping you and minimize the time requesting more information. ### Check documentation We know, you hear this over and over and be rest assured we are working hard to improve the usability of https://rvm.io but we must always ask that you first please check the documentation if you are requesting a feature or if you are not sure if you did it right. ### Try again with latest RVM We try to release a new RVM as soon as we feel that we achieved certain stability. This might take a while and it could be the case that your issue has been already resolved in our development branch. Please get the latest RVM and try again: `rvm get master` ### File an issue If the documentation is not clear, an error message is not clear or you are stuck with the problem, please do file a bug. When in doubt as to whether your issue might relate to another, simply file a new bug, and we will mark it as duplicate if it needs to be. It's always better to file a new ticket and let us sort it out than to accidentally add noise to another ticket. For filing issues, we have prepared a template for you to use. Please try to fill all sections as best as you can. Always make sure to split up each command and its output into its own fenced code block. If the output is long, please put it in a separate [gist](https://gist.github.com). Otherwise it's hard for us to process all the information and respond quickly. Note that if there is a lot of `debug` or `trace` output you can redirect it to a file with the `>` character like `rvm [command] > output.txt`. ## Contributing You are very warmly welcome to help. Please follow our [contribution guidelines](CONTRIBUTING.md) Any and all contributions offered in any form, past present or future are understood to be in complete agreement and acceptance with our [Apache License](LICENSE) v2.0. ### Backers [Become a backer](https://opencollective.com/rvm#backer) and support us with a small monthly donation to help us continue our activities. Thank you if you are already one of them! 🙏 [![Backers](https://opencollective.com/rvm/backers.svg?width=890)](https://opencollective.com/rvm) ### Sponsors Support this project by becoming a [sponsor](https://opencollective.com/rvm#sponsor). Your logo will show up here with a link to your website. [![Sponsors](https://opencollective.com/rvm/sponsors.svg?width=890)](https://opencollective.com/rvm) ## License Copyright (C) Michal Papis (2011-2021), Piotr Kuczynski (2016-2021), Wayne E. Seguin (2009-2011) Licensed under the [Apache License](LICENSE), Version 2.0
rvm/rvm
9afa10a901401807f639052ca43db1188081069c
Add support for Ruby 3.2.6 and 3.3.6 (#5513) (#5513)
diff --git a/CHANGELOG.md b/CHANGELOG.md index ab94d9a..5641701 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,585 +1,586 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Use OpenSSL 3 for Ruby 3.2 and 3.3 [\#5480](https://github.com/rvm/rvm/pull/5480) * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) * Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) * Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) * Install `libncurses-dev` instead of `libncurses5-dev` on newer Debian and Ubuntu versions [\#5477](https://github.com/rvm/rvm/pull/5477) * Use `zlib-ng-compat` packages for Fedora 40+ [\#5479](https://github.com/rvm/rvm/pull/5479) * Detect core count on ARM-based machines [\#5498](https://github.com/rvm/rvm/pull/5498) * Fix requirement check for Ubuntu [\#5500](https://github.com/rvm/rvm/pull/5500) * Update location of homebrew install script on osx [\#5505](https://github.com/rvm/rvm/pull/5505) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) * 3.3.3 [\#5474](https://github.com/rvm/rvm/pull/5474) * 3.3.4 [\#5488](https://github.com/rvm/rvm/pull/5488) * 3.2.5 [\#5490](https://github.com/rvm/rvm/pull/5490) * 3.3.5 [\#5499](https://github.com/rvm/rvm/pull/5499) +* 3.2.6, 3.3.6 [\#5513](https://github.com/rvm/rvm/pull/5513) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) * 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1, 24.0.2, 24.1.0, 24.1.1 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.3.15.0 [\#5482](https://github.com/rvm/rvm/pull/5482) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) * 9.4.8.0 [\#5484](https://github.com/rvm/rvm/pull/5484) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) * 3.1.6, 3.2.5, 3.3.2, 3.3.3 and 3.3.4 [\#5491](https://github.com/rvm/rvm/pull/5491) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) #### Upgraded Ruby interpreters: * Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159), 2.5.0-preview1 [\#4204](https://github.com/rvm/rvm/pull/4204), 2.2.9, 2.3.6, 2.4.3 and 2.5.0-rc1 [\#4261](https://github.com/rvm/rvm/pull/4261), 2.5.0 [\#4265](https://github.com/rvm/rvm/pull/4265), 2.6.0-preview1 [\#4317](https://github.com/rvm/rvm/pull/4317), 2.2.10, 2.3.7, 2.4.4, 2.5.1 [\#4340](https://github.com/rvm/rvm/pull/4340) and 2.6.0-preview2[\#4395](https://github.com/rvm/rvm/pull/4395) * Add support for Rubinius 3.85-3.100 * Add support for JRuby 9.1.14.0 [\#4224](https://github.com/rvm/rvm/pull/4224), 9.1.15.0 [\#4258](https://github.com/rvm/rvm/pull/4258), 9.1.16.0 [\#4316](https://github.com/rvm/rvm/pull/4316), 9.1.17.0 [\#4366](https://github.com/rvm/rvm/pull/4366), 9.2.0.0 [\#4390](https://github.com/rvm/rvm/pull/4390) * Add support for mruby 1.4.0 [\#4286](https://github.com/rvm/rvm/pull/4286) * Add support for MagLev 1.1* and 1.2Alpha-1.2Alpha4 [\#4289](https://github.com/rvm/rvm/pull/4289) * Add support for RubyGems 2.6.14 [\#4205](https://github.com/rvm/rvm/pull/4205), 2.7.0-2.7.4 [\#4276](https://github.com/rvm/rvm/issues/4276) and 2.7.5-6 #### Binaries: * Ubuntu 16.04 x64 binaries for Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4362](https://github.com/rvm/rvm/issues/4362), 2.2.9, 2.3.6 and 2.4.3 [\#4259](https://github.com/rvm/rvm/issues/4259), 2.2.8, 2.3.5 and 2.4.2 [\#4161](https://github.com/rvm/rvm/issues/4161), 2.5.0 [\#4272](https://github.com/rvm/rvm/pull/4272) * Ubuntu 17.04 for Ruby 2.1.\*, 2.2.\* [\#4233](https://github.com/rvm/rvm/pull/4233) ## [1.29.3](https://github.com/rvm/rvm/releases/tag/1.29.3) 10 September 2017 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.2...1.29.3) #### New features: * Add RVM commands missing in bash shell completion [\#4078](https://github.com/rvm/rvm/pull/4078) * Railsexpress patches for 2.3.4, 2.3-head [\#4084](https://github.com/rvm/rvm/pull/4084), 2.2.5 and 2.2.6 [\#4153](https://github.com/rvm/rvm/pull/4153) * Update `gem-wrappers` to 1.3.0: Show warnings when the target binary is missing or is not executable [gem-wrappers \#9](https://github.com/rvm/gem-wrappers/issues/9) * Detect Zorin OS as Ubuntu [\#4140](https://github.com/rvm/rvm/issues/4140) #### Bug fixes: * Infinite loop in `gemset_create` [\#4102](https://github.com/rvm/rvm/issues/4102) * Command not found `__rvm_remote_version` error [\#4085](https://github.com/rvm/rvm/pull/4085) * Fix path of version script in `environment` [\#4117](https://github.com/rvm/rvm/pull/4117) * Define `cd()`, `pushd()` and `popd()` properly when using zsh [\#4132](https://github.com/rvm/rvm/pull/4132) * Update gem-wrappers to 1.3.1: Avoid warnings for missing ruby binaries [\#4104](https://github.com/rvm/rvm/issues/4104) * Handles :engine=> and :engine_version=> in Gemfile * Makes $rvm_ruby_string is not installed searchable by adding a fixed keyword * Correctly quotes suggested install command * Fix path to version script in rvm-installer [\#4134](https://github.com/rvm/rvm/pull/4134) * Fix rvm autolibs status, fix [\#4123](https://github.com/rvm/rvm/issues/4123) * Ruby 2.3.x and older are not compatible with OpenSSL 1.1.x on Arch [\#4006](https://github.com/rvm/rvm/issues/4006) * Allow comments after ruby directive in Gemfile [\#4056](https://github.com/rvm/rvm/issues/4056) * Ruby 2.3/4 compilation fix for GCC 7 [\#4080](https://github.com/rvm/rvm/issues/4080) [\#4115](https://github.com/rvm/rvm/issues/4115) * Add warning for sudo users [\#4009](https://github.com/rvm/rvm/issues/4009) * Allows running RVM shell function in Bash with `set -o nounset` [\#4013](https://github.com/rvm/rvm/issues/4013) * Ensure `rvm_hooks_path` is set [\#3902](https://github.com/rvm/rvm/issues/3902) * Allow building static ruby with `--disbale-shared` [\#4091](https://github.com/rvm/rvm/issues/4091) * Restore detection of `gpg` command for veryfication of signatures [\#4059](https://github.com/rvm/rvm/issues/4059) * Update `gem-wrappers` to 1.3.2: Avoid nested chdir warnings [gem-wrappers \#11](https://github.com/rvm/gem-wrappers/pull/11) * Fix RVM folder cleanup during installation [\#4333](https://github.com/rvm/rvm/issues/4333) * Fix found project file reject reasons for bash -e [\#4314](https://github.com/rvm/rvm/pull/4314) diff --git a/config/db b/config/db index 2f10686..2246d49 100644 --- a/config/db +++ b/config/db @@ -1,154 +1,154 @@ # General default_ruby=ruby interpreter=ruby niceness=0 # # RVM # rvm_remote_server_path1=maven2/org/jruby/jruby-dist rvm_remote_server_url1=https://repo1.maven.org rvm_remote_server_url2=https://rubies.travis-ci.org rvm_remote_server_url=https://rvm-io.global.ssl.fastly.net/binaries # # RubyGems # gem_gem-empty_version=>=1.1.2 gem_gem-wrappers_version=>=1.4.0 gem_rdoc_version=>=4.1.1 gem_rvm_version=>=1.11.3.9 rubygems_repo_url=https://github.com/rubygems/rubygems.git rubygems_url=https://rubygems.org/rubygems rubygems_url_fallback_1=https://github.com/rubygems/rubygems/archive/v\1.tar.gz rubygems_url_fallback_1_pattern=https://rubygems.org/rubygems/rubygems-([[:digit:]\.]+).tgz rubygems_version=latest-3.0 # # Packages # autoconf_url=https://ftp.gnu.org/gnu/autoconf curl_url=https://github.com/bagder/curl/archive gettext_url=https://ftp.gnu.org/pub/gnu/gettext glib_url=http://ftp.gnome.org/pub/gnome/sources/glib/2.23 libiconv_url=https://ftp.gnu.org/pub/gnu/libiconv libxml2_url=ftp://xmlsoft.org/libxml2 libxslt_url=ftp://xmlsoft.org/libxslt llvm_url=https://llvm.org/svn/llvm-project/llvm/trunk mono_url=http://ftp.novell.com/pub/mono/sources/mono ncurses_url=https://ftp.gnu.org/pub/gnu/ncurses openssl_url=https://www.openssl.org/source/old/1.0.1 openssl_version=1.0.1i pkg-config_url=http://pkgconfig.freedesktop.org/releases readline_url=https://ftp.gnu.org/gnu/readline yaml_url=http://pyyaml.org/download/libyaml yaml_version=0.1.6 zlib_url=https://prdownloads.sourceforge.net/libpng # # CentOS / Fedora EPEL # epel5_i386_rpm=https://dl.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm epel5_key=https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-5 epel5_x86_64_rpm=https://dl.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm epel6_i386_rpm=https://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm epel6_key=https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-6 epel6_x86_64_rpm=https://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm epel7_key=https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-7 epel7_x86_64_rpm=https://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-8.noarch.rpm # # MRI Ruby # CentOS_5_ruby_1.8.7_patch_level=p374 CentOS_5_ruby_1.8.7_patch_level_warn=Warning, Centos 5 can not build head version of ruby, falling back to latest patchlevel, your ruby will be less secure because of this. CentOS_5_ruby_1.9.2_patch_level=p320 CentOS_5_ruby_1.9.2_patch_level_warn=Warning, Centos 5 can not build head version of ruby, falling back to latest patchlevel, your ruby will be less secure because of this. ruby_1.8.4_rubygems_version=1.3.5 ruby_1.8.5_patch_level=p231 ruby_1.8.5_rubygems_version=1.3.5 ruby_1.8.6_patch_level=p420 ruby_1.8.6_rubygems_version=1.3.7 ruby_1.8.7_patch_level=head ruby_1.8.7_rubygems_version=latest-2.0 ruby_1.9.1_patch_level=p431 ruby_1.9.1_rubygems_version=latest-1.8 ruby_1.9.2_patch_level=p330 ruby_1.9.3_patch_level=p551 ruby_2.0.0_patch_level=p648 ruby_head_rubygems_version=ignore ruby_repo_url=https://github.com/ruby/ruby.git ruby_unmaintained_date=2017-04-01 ruby_unmaintained_version=2.1.0 ruby_url=https://cache.ruby-lang.org/pub/ruby ruby_url_fallback_1=https://ftp.ruby-lang.org/pub/ruby -ruby_version=3.3.5 +ruby_version=3.3.6 # # REE # ree_1.8.6_patch_level=20090610 ree_1.8.6_repo_url=https://github.com/FooBarWidget/rubyenterpriseedition.git ree_1.8.6_rubygems_version=1.3.7 ree_1.8.6_url=http://rubyforge.org/frs/download.php/58677 ree_1.8.7_2010.02_url=https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/rubyenterpriseedition/ruby-enterprise-1.8.7-2012.02.tar.gz ree_1.8.7_patch_level=2012.02 ree_1.8.7_repo_url=https://github.com/FooBarWidget/rubyenterpriseedition187-330 ree_1.8.7_rubygems_version=latest-2.0 ree_1.8.7_url=https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/rubyenterpriseedition ree_configure_flags=--dont-install-useful-gems ree_version=1.8.7 # # Rubinius # rbx_1.0.0_patch_level=20100514 rbx_1.0.1_patch_level=20100603 rbx_1.1.0_patch_level=20100923 rbx_1.1.1_patch_level=20101116 rbx_1.2.0_patch_level=20101221 rbx_1.2.1_patch_level=20110215 rbx_1.2.2_patch_level=20110222 rbx_1.2.3_patch_level=20110315 rbx_1.2.4_patch_level=20110705 rbx_repo_url=https://github.com/rubinius/rubinius.git rbx_url=https://s3.amazonaws.com/asset.rubini.us rbx_url_2.0_and_newer=https://rubinius-releases-rubinius-com.s3.amazonaws.com rbx_version=4.1 # # MRuby # mruby_repo_url=https://github.com/mruby/mruby.git mruby_url=https://github.com/mruby/mruby/archive mruby_version=2.0.1 # # JRuby # jruby_repo_url=https://github.com/jruby/jruby.git jruby_url=https://repo1.maven.org/maven2/org/jruby/jruby-dist jruby_version=9.4.8.0 maven_version=3.5.0 # # TruffleRuby # truffleruby_url=https://github.com/oracle/truffleruby/releases/download truffleruby_version=24.1.1 # # MacRuby # macruby_0.10_url=http://macruby.macosforge.org/files macruby_nightly_url=http://macruby.jp/files/nightlies macruby_repo_url=https://github.com/MacRuby/MacRuby.git macruby_url=https://github.com/downloads/MacRuby/MacRuby macruby_version=0.12 # # Maglev # maglev_repo_url=https://github.com/MagLev/maglev.git maglev_url=http://seaside.gemtalksystems.com/maglev maglev_version=1.2Alpha4 # # IronRuby # ironruby_1.1.3_url=https://download-codeplex.sec.s-msft.com/Download/Release?ProjectName=ironruby&DownloadId=217153&FileTime=129445296766130000&Build=19727 ironruby_repo_url=https://github.com/ironruby/ironruby.git ironruby_version=1.1.3 # # Topaz # topaz_repo_url=https://github.com/topazproject/topaz.git topaz_url=https://d3sgc2zfsedosj.cloudfront.net topaz_version=head diff --git a/config/known b/config/known index 8e8eb26..eb965dc 100644 --- a/config/known +++ b/config/known @@ -1,81 +1,81 @@ # MRI Rubies [ruby-]1.8.6[-p420] [ruby-]1.8.7[-head] # security released on head [ruby-]1.9.1[-p431] [ruby-]1.9.2[-p330] [ruby-]1.9.3[-p551] [ruby-]2.0.0[-p648] [ruby-]2.1[.10] [ruby-]2.2[.10] [ruby-]2.3[.8] [ruby-]2.4[.10] [ruby-]2.5[.9] [ruby-]2.6[.10] [ruby-]2.7[.8] [ruby-]3.0[.7] [ruby-]3.1[.5] -[ruby-]3.2[.5] -[ruby-]3[.3.5] +[ruby-]3.2[.6] +[ruby-]3[.3.6] [ruby-]3.4[.0-preview1] ruby-head # for forks use: rvm install ruby-head-<name> --url https://github.com/github/ruby.git --branch 2.2 # JRuby jruby-1.6[.8] jruby-1.7[.27] jruby-9.1[.17.0] jruby-9.2[.21.0] jruby-9.3[.15.0] jruby[-9.4.8.0] jruby-head # Rubinius rbx-1[.4.3] rbx-2.3[.0] rbx-2.4[.1] rbx-2[.5.8] rbx-3[.107] rbx-4[.20] rbx-5[.0] rbx-head # TruffleRuby truffleruby[-24.1.1] # Opal opal # Minimalistic ruby implementation - ISO 30170:2012 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1[.4.1] mruby-2.0.1 mruby-2[.1.1] mruby[-head] # Ruby Enterprise Edition ree-1.8.6 ree[-1.8.7][-2012.02] # Topaz topaz # MagLev maglev-1.0.0 maglev-1.1[RC1] maglev[-1.2Alpha4] maglev-head # Mac OS X Snow Leopard Or Newer macruby-0.10 macruby-0.11 macruby[-0.12] macruby-nightly macruby-head # IronRuby ironruby[-1.1.3] ironruby-head diff --git a/config/known_strings b/config/known_strings index 12402b0..267d8ad 100644 --- a/config/known_strings +++ b/config/known_strings @@ -1,568 +1,570 @@ ironruby-1.0 ironruby-1.1.3 jruby-0.9.0 jruby-0.9.1 jruby-0.9.2 jruby-0.9.8 jruby-0.9.9 jruby-1.0.0RC1 jruby-1.0.0RC2 jruby-1.0.0RC3 jruby-1.0 jruby-1.0.1 jruby-1.0.2 jruby-1.0.3 jruby-1.1b1 jruby-1.1RC1 jruby-1.1RC2 jruby-1.1RC3 jruby-1.1 jruby-1.1.1 jruby-1.1.2 jruby-1.1.3 jruby-1.1.4 jruby-1.1.5 jruby-1.1.6RC1 jruby-1.1.6 jruby-1.2.0RC1 jruby-1.2.0RC2 jruby-1.2.0 jruby-1.3.0RC1 jruby-1.3.0RC2 jruby-1.3.0 jruby-1.3.1 jruby-1.4.0RC1 jruby-1.4.0RC2 jruby-1.4.0RC3 jruby-1.4.0 jruby-1.4.1 jruby-1.5.0.RC1 jruby-1.5.0.RC2 jruby-1.5.0.RC3 jruby-1.5.0 jruby-1.5.1 jruby-1.5.2 jruby-1.5.3 jruby-1.5.4 jruby-1.5.5 jruby-1.5.6 jruby-1.6.0.RC1 jruby-1.6.0.RC2 jruby-1.6.0.RC3 jruby-1.6.0 jruby-1.6.1 jruby-1.6.2 jruby-1.6.3 jruby-1.6.4 jruby-1.6.5 jruby-1.6.5.1 jruby-1.6.7 jruby-1.6.7.2 jruby-1.6.8 jruby-1.7.0.preview1 jruby-1.7.0.preview2 jruby-1.7.0.RC1 jruby-1.7.0.RC2 jruby-1.7.0 jruby-1.7.1 jruby-1.7.2 jruby-1.7.3 jruby-1.7.4 jruby-1.7.5 jruby-1.7.6 jruby-1.7.7 jruby-1.7.8 jruby-1.7.9 jruby-1.7.10 jruby-1.7.11 jruby-1.7.12 jruby-1.7.13 jruby-1.7.14 jruby-1.7.15 jruby-1.7.16 jruby-1.7.16.1 jruby-1.7.16.2 jruby-1.7.17 jruby-1.7.18 jruby-1.7.19 jruby-1.7.20 jruby-1.7.20.1 jruby-1.7.21 jruby-1.7.22 jruby-1.7.23 jruby-1.7.24 jruby-1.7.25 jruby-1.7.26 jruby-1.7.27 jruby-9.0.0.0.pre1 jruby-9.0.0.0.pre2 jruby-9.0.0.0.rc1 jruby-9.0.0.0.rc2 jruby-9.0.0.0 jruby-9.0.1.0 jruby-9.0.2.0 jruby-9.0.3.0 jruby-9.0.4.0 jruby-9.0.5.0 jruby-9.1.0.0 jruby-9.1.1.0 jruby-9.1.2.0 jruby-9.1.3.0 jruby-9.1.4.0 jruby-9.1.5.0 jruby-9.1.6.0 jruby-9.1.7.0 jruby-9.1.8.0 jruby-9.1.9.0 jruby-9.1.10.0 jruby-9.1.11.0 jruby-9.1.12.0 jruby-9.1.13.0 jruby-9.1.14.0 jruby-9.1.15.0 jruby-9.1.16.0 jruby-9.1.17.0 jruby-9.2.0.0 jruby-9.2.1.0 jruby-9.2.2.0 jruby-9.2.3.0 jruby-9.2.4.0 jruby-9.2.4.1 jruby-9.2.5.0 jruby-9.2.6.0 jruby-9.2.7.0 jruby-9.2.8.0 jruby-9.2.9.0 jruby-9.2.10.0 jruby-9.2.11.0 jruby-9.2.11.1 jruby-9.2.12.0 jruby-9.2.13.0 jruby-9.2.14.0 jruby-9.2.15.0 jruby-9.2.16.0 jruby-9.2.17.0 jruby-9.2.18.0 jruby-9.2.19.0 jruby-9.2.20.0 jruby-9.2.20.1 jruby-9.2.21.0 jruby-9.3.0.0 jruby-9.3.1.0 jruby-9.3.2.0 jruby-9.3.3.0 jruby-9.3.4.0 jruby-9.3.6.0 jruby-9.3.7.0 jruby-9.3.8.0 jruby-9.3.9.0 jruby-9.3.10.0 jruby-9.3.11.0 jruby-9.3.13.0 jruby-9.3.14.0 jruby-9.3.15.0 jruby-9.4.0.0 jruby-9.4.1.0 jruby-9.4.2.0 jruby-9.4.3.0 jruby-9.4.4.0 jruby-9.4.5.0 jruby-9.4.6.0 jruby-9.4.7.0 jruby-9.4.8.0 macruby-0.12 maglev-1.0.0 maglev-1.1beta maglev-1.1beta2 maglev-1.1RC1 maglev-1.2Alpha maglev-1.2Alpha2 maglev-1.2Alpha3 maglev-1.2Alpha4 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1.4.0 mruby-1.4.1 mruby-2.0.0 mruby-2.0.1 mruby-2.1.0-rc mruby-2.1.0 mruby-2.1.1-rc mruby-2.1.1-rc2 mruby-2.1.1 rbx-1.0.0-20100514 rbx-1.0.1-20100603 rbx-1.1.0-20100923 rbx-1.1.1-20101116 rbx-1.2.0-20101221 rbx-1.2.1-20110215 rbx-1.2.2-20110222 rbx-1.2.3-20110315 rbx-1.2.4-20110705 rbx-1.3.2 rbx-1.3.3 rbx-1.4.1 rbx-1.4.3 rbx-2.0.0 rbx-2.1.0 rbx-2.1.1 rbx-2.2.0 rbx-2.2.2 rbx-2.2.3 rbx-2.2.4 rbx-2.2.5 rbx-2.2.6 rbx-2.2.7 rbx-2.2.8 rbx-2.2.9 rbx-2.2.10 rbx-2.3.0 rbx-2.4.0 rbx-2.4.1 rbx-2.5.0 rbx-2.5.1 rbx-2.5.2 rbx-2.5.3 rbx-2.5.4 rbx-2.5.5 rbx-2.5.6 rbx-2.5.7 rbx-2.5.8 rbx-3.70 rbx-3.71 rbx-3.72 rbx-3.73 rbx-3.74 rbx-3.75 rbx-3.76 rbx-3.77 rbx-3.78 rbx-3.79 rbx-3.80 rbx-3.81 rbx-3.82 rbx-3.83 rbx-3.84 rbx-3.85 rbx-3.86 rbx-3.87 rbx-3.88 rbx-3.89 rbx-3.90 rbx-3.91 rbx-3.92 rbx-3.93 rbx-3.94 rbx-3.95 rbx-3.96 rbx-3.97 rbx-3.98 rbx-3.99 rbx-3.100 rbx-3.101 rbx-3.102 rbx-3.103 rbx-3.104 rbx-3.105 rbx-3.106 rbx-3.107 rbx-4.0 rbx-4.1 rbx-4.2 rbx-4.3 rbx-4.4 rbx-4.5 rbx-4.6 rbx-4.7 rbx-4.8 rbx-4.9 rbx-4.10 rbx-4.11 rbx-4.12 rbx-4.13 rbx-4.14 rbx-4.15 rbx-4.16 rbx-4.17 rbx-4.18 rbx-4.19 rbx-4.20 rbx-5.0 ree-1.8.6-20080507 ree-1.8.6-20080621 ree-1.8.6-20080623 ree-1.8.6-20080624 ree-1.8.6-20080709 ree-1.8.6-20080810 ree-1.8.6-20081205 ree-1.8.6-20081215 ree-1.8.6-20090113 ree-1.8.6-20090201 ree-1.8.6-20090421 ree-1.8.6-20090520 ree-1.8.6-20090610 ree-1.8.6-20090928 ree-1.8.7-2009.10 ree-1.8.7-2010.01 ree-1.8.7-2010.02 ree-1.8.7-2011.01 ree-1.8.7-2011.02 ree-1.8.7-2011.03 ree-1.8.7-2011.12 ree-1.8.7-2012.02 ruby-1.8.5-p115 ruby-1.8.5-p231 ruby-1.8.6-p286 ruby-1.8.6-p287 ruby-1.8.6-p369 ruby-1.8.6-p383 ruby-1.8.6-p398 ruby-1.8.6-p399 ruby-1.8.6-p420 ruby-1.8.7-p160 ruby-1.8.7-p174 ruby-1.8.7-p248 ruby-1.8.7-p249 ruby-1.8.7-p299 ruby-1.8.7-p302 ruby-1.8.7-p330 ruby-1.8.7-p334 ruby-1.8.7-p352 ruby-1.8.7-p357 ruby-1.8.7-p358 ruby-1.8.7-p370 ruby-1.8.7-p371 ruby-1.8.7-p374 ruby-1.9.0 ruby-1.9.1-p129 ruby-1.9.1-p243 ruby-1.9.1-p376 ruby-1.9.1-p378 ruby-1.9.1-p429 ruby-1.9.1-p431 ruby-1.9.2-p0 ruby-1.9.2-p136 ruby-1.9.2-p180 ruby-1.9.2-p290 ruby-1.9.2-p318 ruby-1.9.2-p320 ruby-1.9.2-p330 ruby-1.9.3-preview1 ruby-1.9.3-rc1 ruby-1.9.3-p0 ruby-1.9.3-p125 ruby-1.9.3-p194 ruby-1.9.3-p286 ruby-1.9.3-p327 ruby-1.9.3-p362 ruby-1.9.3-p374 ruby-1.9.3-p385 ruby-1.9.3-p392 ruby-1.9.3-p429 ruby-1.9.3-p448 ruby-1.9.3-p484 ruby-1.9.3-p545 ruby-1.9.3-p547 ruby-1.9.3-p550 ruby-1.9.3-p551 ruby-2.0.0-preview1 ruby-2.0.0-preview2 ruby-2.0.0-rc1 ruby-2.0.0-rc2 ruby-2.0.0-p0 ruby-2.0.0-p195 ruby-2.0.0-p247 ruby-2.0.0-p353 ruby-2.0.0-p451 ruby-2.0.0-p481 ruby-2.0.0-p576 ruby-2.0.0-p594 ruby-2.0.0-p598 ruby-2.0.0-p643 ruby-2.0.0-p645 ruby-2.0.0-p647 ruby-2.0.0-p648 ruby-2.1.0-preview1 ruby-2.1.0-preview2 ruby-2.1.0-rc1 ruby-2.1.0 ruby-2.1.1 ruby-2.1.2 ruby-2.1.3 ruby-2.1.4 ruby-2.1.5 ruby-2.1.6 ruby-2.1.7 ruby-2.1.8 ruby-2.1.9 ruby-2.1.10 ruby-2.2.0-preview1 ruby-2.2.0-preview2 ruby-2.2.0-rc1 ruby-2.2.0 ruby-2.2.1 ruby-2.2.2 ruby-2.2.3 ruby-2.2.4 ruby-2.2.5 ruby-2.2.6 ruby-2.2.7 ruby-2.2.8 ruby-2.2.9 ruby-2.2.10 ruby-2.3.0-preview1 ruby-2.3.0-preview2 ruby-2.3.0 ruby-2.3.1 ruby-2.3.2 ruby-2.3.3 ruby-2.3.4 ruby-2.3.5 ruby-2.3.6 ruby-2.3.7 ruby-2.3.8 ruby-2.4.0-preview1 ruby-2.4.0-preview2 ruby-2.4.0-preview3 ruby-2.4.0-rc1 ruby-2.4.0 ruby-2.4.1 ruby-2.4.2 ruby-2.4.3 ruby-2.4.4 ruby-2.4.5 ruby-2.4.6 ruby-2.4.7 ruby-2.4.8 ruby-2.4.9 ruby-2.4.10 ruby-2.5.0-preview1 ruby-2.5.0-rc1 ruby-2.5.0 ruby-2.5.1 ruby-2.5.2 ruby-2.5.3 ruby-2.5.4 ruby-2.5.5 ruby-2.5.6 ruby-2.5.7 ruby-2.5.8 ruby-2.5.9 ruby-2.6.0-preview1 ruby-2.6.0-preview2 ruby-2.6.0-preview3 ruby-2.6.0-rc1 ruby-2.6.0-rc2 ruby-2.6.0 ruby-2.6.1 ruby-2.6.2 ruby-2.6.3 ruby-2.6.4 ruby-2.6.5 ruby-2.6.6 ruby-2.6.7 ruby-2.6.8 ruby-2.6.9 ruby-2.6.10 ruby-2.7.0-preview1 ruby-2.7.0-preview2 ruby-2.7.0-preview3 ruby-2.7.0-rc1 ruby-2.7.0-rc2 ruby-2.7.0 ruby-2.7.1 ruby-2.7.2 ruby-2.7.3 ruby-2.7.4 ruby-2.7.5 ruby-2.7.6 ruby-2.7.7 ruby-2.7.8 ruby-3.0.0-preview1 ruby-3.0.0-preview2 ruby-3.0.0-rc1 ruby-3.0.0 ruby-3.0.1 ruby-3.0.2 ruby-3.0.3 ruby-3.0.4 ruby-3.0.5 ruby-3.0.6 ruby-3.0.7 ruby-3.1.0-preview1 ruby-3.1.0 ruby-3.1.1 ruby-3.1.2 ruby-3.1.3 ruby-3.1.4 ruby-3.1.5 ruby-3.2.0-preview1 ruby-3.2.0-preview2 ruby-3.2.0-preview3 ruby-3.2.0-rc1 ruby-3.2.0 ruby-3.2.1 ruby-3.2.2 ruby-3.2.3 ruby-3.2.4 ruby-3.2.5 +ruby-3.2.6 ruby-3.3.0-preview1 ruby-3.3.0-preview2 ruby-3.3.0-preview3 ruby-3.3.0 ruby-3.3.1 ruby-3.3.2 ruby-3.3.3 ruby-3.3.4 ruby-3.3.5 +ruby-3.3.6 ruby-3.4.0-preview1 truffleruby-1.0.0-rc2 truffleruby-1.0.0-rc3 truffleruby-1.0.0-rc5 truffleruby-1.0.0-rc6 truffleruby-1.0.0-rc7 truffleruby-1.0.0-rc8 truffleruby-1.0.0-rc9 truffleruby-1.0.0-rc10 truffleruby-1.0.0-rc11 truffleruby-1.0.0-rc12 truffleruby-1.0.0-rc13 truffleruby-1.0.0-rc14 truffleruby-1.0.0-rc15 truffleruby-1.0.0-rc16 truffleruby-19.0.0 truffleruby-19.0.2 truffleruby-19.1.0 truffleruby-19.1.1 truffleruby-19.2.0 truffleruby-19.2.0.1 truffleruby-19.2.1 truffleruby-19.3.0 truffleruby-19.3.0.2 truffleruby-19.3.1 truffleruby-20.0.0 truffleruby-20.1.0 truffleruby-20.2.0 truffleruby-20.3.0 truffleruby-21.0.0 truffleruby-21.1.0 truffleruby-21.2.0 truffleruby-21.2.0.1 truffleruby-21.3.0 truffleruby-22.0.0.2 truffleruby-22.1.0 truffleruby-22.2.0 truffleruby-22.3.0 truffleruby-22.3.1 truffleruby-23.0.0-preview1 truffleruby-23.0.0 truffleruby-23.1.0 truffleruby-23.1.1 truffleruby-23.1.2 truffleruby-24.0.0 truffleruby-24.0.1 truffleruby-24.0.2 truffleruby-24.1.0 truffleruby-24.1.1 diff --git a/config/md5 b/config/md5 index 514a765..a57e03b 100644 --- a/config/md5 +++ b/config/md5 @@ -1272,777 +1272,779 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.0.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.1.tar.bz2=5a8c6a0955be75e5d461624b596a08e2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.2.tar.bz2=0071aeae2ad582f89c4704531d0e7a5d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.3.tar.bz2=5da9cf19b005948398f3541a1ded7105 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.4.tar.bz2=a27a413146d903d258fe9fc907e60c1a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.5.tar.bz2=77794ae2fb09dca79bfb636198ccaaed https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.6.tar.bz2=565f3c0dbc3211c6f86ebcb60cbd5de7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.7.tar.bz2=5cc60a18ac4cca5322994c6d19753846 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.8.tar.bz2=45b547a987088761a88143e5fabef13e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.9.tar.bz2=e993696c73e6be0017d90ccdddbcc644 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.0.tar.bz2=032a73d5182d84cbbf20b6e7e310c7c2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.1.tar.bz2=07c61bc0c9e09fc87808f62985cbff25 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.2.tar.bz2=62745ec761a45826841002e72cfca795 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.3.tar.bz2=538383cc35e5710a2175f36416ca3b7c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.4.tar.bz2=8a17255fa833fe3ff9c0275db79bfbff https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar.bz2=66dc3fdf49b1371fd6d362f3ea9d019b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=873b63cc2e4abbb6ec5126ab07ce429a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=84658482a83ee3a4c80d145d0bd7ccb8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=d3af42a4fd701e0710d5f6a16e6bb9a3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c5f56b0149ab787d89c69056eb45e483 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=13f1011cc048aef7199ae8f14bc2ac62 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=fba1bf0b819f52561deab198fd36743d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=3ec8f383026889e2f3c328d86839a7b2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=9c3775365cab8e1e82aa19e87b9711dd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=cce17e87cc9bfcb6b995e5f1996c423c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=b80a93441133b85258d97085aeead20a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=74c45b08a2dc28871ff158b608cc8685 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=469b22a4b12f23e86ac25b3d797ff559 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=ea7767cbfacd744813ccaedd1b4e0013 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=0d9f69db1bd665c9e5c9592b483b31a1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=068f5c90b5b381cd58d8804ca2b3be64 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=6181192273efab4aabaa8628fc83c7be https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=fa690cb7132706fb25dfc625e949e96a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=c443f32cd4c91fb37ff79bd86906e1bc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=6fa3edab1bbacf7328074a7fba22be50 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=a950bc4af16446fce2f9266e95629bdb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=d9bce275c2f36dbde8a6c25f9fa10c2e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=6486c5ce9ec697039b0bb36d2bf18a0d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=79f0927984b8e6e7934b34bdb2a3e5e5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=214ac1e49a75291a68c63134bc246a8a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=94a39d1b226350362666f6305866b20b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=4db7d99d775a7f24bb55c6053d4eb864 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=c0db831a97b8427e0777adeaebf7a9d8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=830b4845fbfd45df75758e311a013ffc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=3fc39c824b2060a3a2766ca01037dd15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=0b395f3884c78c6938896ff253c5251b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=2be294a056a45a50262d1796906f8860 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=0270733b808489a91e41f73d9fe971e9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=33db4a687e4943faf6c2853179b67935 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=dea6663b2c113190e9b99a6dcedb3aa0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=835e563bfbe3c8311326660a51f3394c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=66e3c1e1140300c8236c13e3178cb8ab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=07b12bd2a7d8242c34d824882e654c22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=fe12c0e211f90076b51c7916c830971f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=65ab3105b0c6d5e8a2e9977a3ab7ed94 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=08547ad8e760e0776c74401ae5bbd8e5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=631b4ea065d18df96c6ccbc141904bb3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=03a67e234d886f3c698c1571e42cc7a6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=0ded0cb8ce18a846d71d7e04d24c2e78 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=5251aed0ba4d8349413d6bf4c261bea3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=f09694c4f23d7625f72606bce0efb710 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=340db3acb58829b51e4a7ac1c77246d4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1bd86cb46a9e6c40c285258879a3d59 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=d86b2a1e9721b9459e1283006e03fa92 ironruby-1.0.zip=7a92888837b3507355ed391dbfc0ab83 ironruby-1.1.3.zip=4f2af6253a459cc054d6c55956e514a9 jruby-bin-1.3.1.tar.gz=4a95db8fc93ed7219663fbede98b6117 jruby-bin-1.4.tar.gz=54dba9a88b2b3f99ac86a79828d0178b jruby-bin-1.4.0.tar.gz=f37322c18e9134e91e064aebb4baa4c7 jruby-bin-1.4.0.zip=3a9c8a5115a679da7d7a49a56d57d4c0 jruby-bin-1.4.1.tar.gz=a4aa8c43d1b9ffd9dbc6cb738d55a034 jruby-bin-1.5.0.tar.gz=ee2b4e326e8b87858e5dd0c8e94102e6 jruby-bin-1.5.1.tar.gz=74251383e08e8c339cacc35a7900d3af jruby-bin-1.5.2.tar.gz=d239deb9a108a6abbfbd6cb79cf8255b jruby-bin-1.5.3.tar.gz=ccb0b2dbc300d8dd4ad1bd4da48b8320 jruby-bin-1.5.5.tar.gz=8e00f7d40cbf221f733d6f7a15784e9a jruby-bin-1.5.6.tar.gz=94033a36517645b7a7ec781a3507c654 jruby-bin-1.6.0.tar.gz=f4d7e339dfc0fbaef5b878d1c0a66fbe jruby-bin-1.6.2.tar.gz=a46f978c24a208717023bb4b8995c678 jruby-bin-1.6.3.tar.gz=694b80e4eea784cdc1eb39fb1e3132c9 jruby-bin-1.6.4.tar.gz=0e96b6f4d1c6f12b5ac480cd7ab7da78 jruby-bin-1.6.5.tar.gz=54354082673bd115f945890dc6864413 jruby-bin-1.6.5.1.tar.gz=246a7aa2b7d7e6e9e8a0c2e282cbcfd0 jruby-bin-1.6.7.tar.gz=fd1b8d7389aa92da69ea6efb4782e40a jruby-bin-1.6.7.2.tar.gz=1e520f1b5130114464e5f1950cb24774 jruby-bin-1.6.8.tar.gz=a76ac5845640e4a1ebdfa74421efc935 jruby-bin-1.7.0.preview1.tar.gz=7b9e5e1cd0d818d0199086d948f948b4 jruby-bin-1.7.0.preview2.tar.gz=e8f1623759590aadbf49e4cc53f1cb61 jruby-bin-1.7.0.RC1.tar.gz=bdddcee3d126cddd9a85b5a066a7e25e jruby-bin-1.7.0.RC2.tar.gz=ffe2dd61711f4574fed344af151e5de5 jruby-bin-1.7.0.tar.gz=21861e0ecdbf48cda713c8ade82fdddb jruby-bin-1.7.1.tar.gz=86e659863541d8b987cb7bfbe3b4cfb0 jruby-bin-1.7.2.tar.gz=6ec9293b6dffd1e8ee57e9b7c6d18cbe jruby-bin-1.7.3.tar.gz=f0adf8ccee6f6777f7ab8e5e1d7a1f47 jruby-bin-1.7.4.tar.gz=c6a56eae78db28dddba911ccd0848c32 jruby-bin-1.7.5.tar.gz=c2a28c43c8095127d4a4aee0cf9b1439 jruby-bin-1.7.6.tar.gz=5d10011516a3d3bde10209b60cfcc0ef jruby-bin-1.7.7.tar.gz=9d6df2188fa57f12bf6fde4e4b2e3f09 jruby-bin-1.7.8.tar.gz=1e68f39d6dba7b6d9db81e24bb6b7d0a jruby-bin-1.7.9.tar.gz=b2e44f1f44837c07068ee453a89f4b55 jruby-bin-1.7.10.tar.gz=c84fe9245a73f9cd29f56343b7d2e39a jruby-bin-1.7.11.tar.gz=d6e6ab72426fa7fdc9ae55950980d877 jruby-bin-1.7.12.tar.gz=2073aa6dfc7c701ef7c3d3143d181582 jruby-bin-1.7.14.tar.gz=bc33284f27a3508a70d2ade100a2f6bd jruby-bin-1.7.15.tar.gz=92e63cffcb86842511aeeed95bdf96ed jruby-bin-1.7.16.tar.gz=92cb058d1a896257b5ac1c26dc433506 jruby-bin-1.7.16.1.tar.gz=eec2f0e03560bacf02a09c0096a99cad jruby-bin-1.7.16.2.tar.gz=cd31909b67239c5c6a795521fca5c239 jruby-bin-1.7.17.tar.gz=8b78ba1acdb718431f71c38287c07967 jruby-bin-1.7.18.tar.gz=aa7286140be0f6f60534ebffededc708 jruby-bin-1.7.19.tar.gz=bc38596757d8000d6ca4c4c3f8eacea6 jruby-bin-1.7.20.tar.gz=0c2adc160cb85c888b269e8ac4f886fc jruby-bin-1.7.21.tar.gz=bc91594072032023d146f330764d3274 jruby-bin-1.7.22.tar.gz=1da904bf41d362d0d0b366d9e781168f jruby-bin-1.7.23.tar.gz=41e3f45c28c94a275f9eeb22721da35d jruby-bin-1.7.25.tar.gz=fc43ead73f657f5261428923974fd605 jruby-bin-1.7.26.tar.gz=4ca60264a9560f37fdba8108543e72c2 jruby-bin-1.7.27.tar.gz=b98b0a2c52e885a868a2b60092e1cd3d jruby-bin-9.0.0.0.pre1.tar.gz=d5c8b30648348aa883f893d464d46bf1 jruby-bin-9.0.0.0.pre2.tar.gz=86994a9d7ed2cf318c75392623a3e6da jruby-bin-9.0.0.0.tar.gz=fe9036ea69bf23dc3b69cfc94adb5404 jruby-bin-9.0.1.0.tar.gz=a82bc640e0080b1d9a21d1477c8400e3 jruby-bin-9.0.3.0.tar.gz=828dd6c6dd18e5b186ccfd65753077bd jruby-bin-9.0.4.0.tar.gz=645bf4a1dcde3f19dc0fff75c8b4b685 jruby-bin-9.0.5.0.tar.gz=1d2dc649cbacbe26418ef3ba421018b1 jruby-bin-9.1.0.0.tar.gz=fe26e6308d006d35eb613cdd47d1dc99 jruby-bin-9.1.1.0.tar.gz=8356334270df07a214590d00a986837b jruby-bin-9.1.2.0.tar.gz=749bb917dde9666e365e12bbe776a5c2 jruby-bin-9.1.3.0.tar.gz=91c246cd623702032e88283565da5480 jruby-bin-9.1.4.0.tar.gz=5b80b78c09bf0cd4dcbcb9e1fe3e8b73 jruby-bin-9.1.5.0.tar.gz=e9b2cc44757db4cfbe7da79601d0169a jruby-bin-9.1.6.0.tar.gz=4092a89b01b55d1fb5498113f97ab0ca jruby-bin-9.1.7.0.tar.gz=b120c3eaeef7ff2aed3a57701e414e78 jruby-bin-9.1.8.0.tar.gz=0fdee002c56ec91dff1efffce205265c jruby-bin-9.1.9.0.tar.gz=170efc34297d7ac2a56bb1163e96b363 jruby-bin-9.1.10.0.tar.gz=b75e0d1a200e8f790d8bbc84f91e3002 jruby-bin-9.1.11.0.tar.gz=0502a14141da25a460ce197720bab4c3 jruby-bin-9.1.12.0.tar.gz=74bd7ae08c159fc62cb6f64845a868cc jruby-bin-9.1.13.0.tar.gz=6c642c8a2653a585779f453d8c843fd7 jruby-bin-9.1.14.0.tar.gz=a7e0ecd529690025d327c45744f60fa4 jruby-bin-9.1.15.0.tar.gz=01c29690324d7eb414fba66e4c009c9e jruby-bin-9.1.16.0.tar.gz=e64c3aa1310c272194fd1750b0b79fac jruby-bin-9.1.17.0.tar.gz=f28d1fcbb60e550f3abd839102ad0069 jruby-bin-9.2.0.0.tar.gz=bd476da4bed39ffcfff7116f448a5365 jruby-bin-9.2.1.0.tar.gz=4b78b0a40ca541556f5ee75a815e0be0 jruby-bin-9.2.2.0.tar.gz=be678559801be029fe233c33396e34d2 jruby-bin-9.2.3.0.tar.gz=79328ab1ed37d612da35271183e46bbd jruby-bin-9.2.4.0.tar.gz=f538f2be459f0f0e517a53446e78a354 jruby-bin-9.2.4.1.tar.gz=d373bbc2bd6caabfcc9914c4067e9d24 jruby-bin-9.2.5.0.tar.gz=14582fd6eee19610f0a7433ce5dd5ce4 jruby-bin-9.2.6.0.tar.gz=dba182ac9943b726b609ca61747c1835 jruby-bin-9.2.7.0.tar.gz=c0111b2cafa920df76284044e1aeedc7 jruby-bin-9.2.8.0.tar.gz=7d652b586a18f1c665289fd7e6edf4f5 jruby-bin-9.2.9.0.tar.gz=74b3451f79c13c2fc66c6dee69d46699 jruby-bin-9.2.10.0.tar.gz=e6ce97eae6e35b622c1b572f9297705b jruby-bin-9.2.11.0.tar.gz=22b003adfb03b253721cc85db248698f jruby-bin-9.2.11.1.tar.gz=687586132f7b649b1bdd7b823577c9d8 jruby-bin-9.2.12.0.tar.gz=cc7599837fbd0839cce7293577a34f2c jruby-bin-9.2.13.0.tar.gz=99df4eb89f88c7582bfe7c313daec7b4 jruby-bin-9.2.14.0.tar.gz=421c5b8146701177a738a0a691190018 jruby-bin-9.2.15.0.tar.gz=ba593f1de2c4e592a8ca9b9e903af457 jruby-bin-9.2.16.0.tar.gz=d8d954ee0ab6f4868c3fc63339660af9 jruby-bin-9.2.17.0.tar.gz=382fb3d9d2982efd5396f1a42e3fa6a1 jruby-bin-9.2.18.0.tar.gz=002ac95859a2176cb0a58d81d6e0fb14 jruby-bin-9.2.19.0.tar.gz=0961867a77838853f32ee72dbde7c00e jruby-bin-9.2.20.0.tar.gz=840876dd0ca0098452dd2667fe9dd7f4 jruby-bin-9.2.20.1.tar.gz=5856ed030f0d9e75d2384cf42f62a4de jruby-bin-9.2.21.0.tar.gz=9957c1d2bd9265144fe55f9f7093272a jruby-bin-9.3.0.0.tar.gz=501a3c975b3c9478b72d4b0cd37170b9 jruby-bin-9.3.1.0.tar.gz=201d3e483bf847f5c59f4b1f3bf594d5 jruby-bin-9.3.2.0.tar.gz=259c276f68a01495dda24407394a382d jruby-bin-9.3.3.0.tar.gz=cd49b81753048cee9c8ffdd2ce1cb3e2 jruby-bin-9.3.4.0.tar.gz=7292dd9a56155aa015ec08c03855b3fc jruby-bin-9.3.6.0.tar.gz=bc5a7b02be69fdf3f5584e8880fc7dcc jruby-bin-9.3.7.0.tar.gz=49b17b5cd7cf8bfb09d8f64147d992ef jruby-bin-9.3.8.0.tar.gz=6ea209b699a06944d0653d8048d8bfec jruby-bin-9.3.9.0.tar.gz=9a0f0a931346bc6ea34196a5c88002ec jruby-bin-9.3.10.0.tar.gz=83c9d776dfc8cf33bfa60f7e78077160 jruby-bin-9.3.11.0.tar.gz=6ccc04e658c49db19fc0c452db0f2931 jruby-bin-9.3.13.0.tar.gz=3f20268b494da900504e921507248183 jruby-bin-9.3.14.0.tar.gz=87a96fd3af448ec8fd5ca45c6469ecc9 jruby-bin-9.3.15.0.tar.gz=385fabe180b68fb8cd3743b315109e5f jruby-bin-9.4.0.0.tar.gz=d0136daa4910f6e6b21858260eb00fe2 jruby-bin-9.4.1.0.tar.gz=abe2669672ac973f1b41a4d3860eb7ae jruby-bin-9.4.2.0.tar.gz=486e50f3c74e7400e71631819fde91da jruby-bin-9.4.3.0.tar.gz=526006fefb3e5ffc5095ab5599cc38c6 jruby-bin-9.4.4.0.tar.gz=287b5c3a9b63ff93e49ae9dc0347263b jruby-bin-9.4.5.0.tar.gz=09c6fceb38d6c086af2e4d5f21f9fe65 jruby-bin-9.4.6.0.tar.gz=5e2fe4ed897d938332ee0d85d2aa60bc jruby-bin-9.4.7.0.tar.gz=a0633ca837efff62edca84ceae1f5515 jruby-bin-9.4.8.0.tar.gz=9f520a3a416b598b4e53916e7180b623 libiconv-1.13.1.tar.gz=7ab33ebd26687c744a37264a330bbe9a MacRuby%200.5.zip=675454a8c7bc19d606d90a726e08427c MacRuby%200.6.zip=a80afd3700c88cf95c539fc63b272faf MacRuby%200.7.1.zip=e8245dcd03c0757dfae7e6fee913947a MacRuby%200.7.zip=0bb60588c9ec9b1517665743bb05132f MacRuby%200.8.zip=735ac0a70f539e00b5de6fbec09c2c5c MacRuby%200.9.zip=fa01345e8fbfee620bbac64743a45f69 MacRuby%200.10.zip=1662d13d2f73cfc26258598f6988dcbc MacRuby%200.11.zip=b0cc23d60484a07012bcad549cef6054 MacRuby%200.12.zip=e1c5fa1b007a1cdc38c527a47302bf5e MagLev-1.0.0.tar.gz=e02cb8ee04438451eb78df14f91a68a9 MagLev-1.1beta.tar.gz=d542c7af290ce3b588b57629906b19e9 MagLev-1.1beta2.tar.gz=0ef88d5d145611aef324cb51be0aaafd MagLev-1.1RC1.tar.gz=41f4a0994daf1e5271cbd0ebe57816f4 MagLev-1.2Alpha.tar.gz=5c7dd3acef9dbddc0829bb1daa087abb MagLev-1.2Alpha2.tar.gz=cbbeae109854a6bf107a747a93fd478b MagLev-1.2Alpha3.tar.gz=b7470518f2b697eb1a5a39eff9b6d749 MagLev-1.2Alpha4.tar.gz=d54f04a611ce838b9d7009627065b7ca mruby-1.0.0.tar.gz=d9aec6a20fc1add65ee07ff6cf0e1ef2 mruby-1.1.0.tar.gz=60d75ea704c9285f3c80b3ad1d2b68de mruby-1.2.0.tar.gz=b5a3b7962d9db8cb8fb8105aa914d16c mruby-1.3.0.tar.gz=9714dd2804064d0043e099b7211d72b9 mruby-1.4.0.tar.gz=25efc35511070454074b36863c4d5b5e mruby-1.4.1.tar.gz=b40bf09af3f4c6e2bc443b9ac803a3ad mruby-2.0.0.tar.gz=b86c6a1dd86cb4ebe51e3fe38964a830 mruby-2.0.1.tar.gz=15b426a8a94a610c45414578786d05e3 mruby-2.1.0-rc.tar.gz=58a85fcb102d72900a25190da670e01d mruby-2.1.0.tar.gz=c01a4bbf62e6f5765c70b8813e0ce7da mruby-2.1.1-rc.tar.gz=809edd80e680855e7c4cf3c569972f28 mruby-2.1.1-rc2.tar.gz=24879fa5eb587f9415f03f8f3701842e mruby-2.1.1.tar.gz=c0ee4a112695046b9e4f177e31096d6c ncurses.tar.gz=cce05daf61a64501ef6cd8da1f727ec6 openssl-0.9.8k.tar.gz=e555c6d58d276aec7fdc53363e338ab3 openssl-0.9.8n.tar.gz=076d8efc3ed93646bd01f04e23c07066 openssl-1.0.1c.tar.gz=ae412727c8c15b67880aef7bd2999b2e openssl-1.0.1i.tar.gz=c8dc151a671b9b92ff3e4c118b174972 pkg-config-0.23.tar.gz=d922a88782b64441d06547632fd85744 readline-5.2.tar.gz=e39331f32ad14009b9ff49cc10c5e751 readline-6.0.tar.gz=b7f65a48add447693be6e86f04a63019 readline-6.2.tar.gz=67948acb2ca081f23359d0256e9a271c release-2.0.0-rc1.zip=b05b5e3c2712a294e4b09ebf450c1bfe rubinius-1.0.0-20100514.tar.gz=b05f4e791d3712c5a50b3d210dac6eb0 rubinius-1.0.1-20100603.tar.gz=eb185703c7ae0c0210e8dcb7f783ee8e rubinius-1.1.0-20100923.tar.gz=e2ae16238b201de09975abe19da09ea9 rubinius-1.1.1-20101116.tar.gz=b39f618eeba37c3aff215da8bca55fd7 rubinius-1.2.0-20101221.tar.gz=4284c2660f1f648942de35d4fc871f70 rubinius-1.2.1-20110215.tar.gz=e4a5127480062fddddc7ce2860b3b813 rubinius-1.2.2-20110222.tar.gz=59124378fb7ee040e9ee4e4736d89fc0 rubinius-1.2.3-20110315.tar.gz=9782dab18c2dd440af6b76e8eb5bc0f0 rubinius-1.2.4-20110705.tar.gz=403c777d19b3553e9cb36701fe002c5e rubinius-1.3.2.tar.bz2=64801ad8dd4e5e4fcb74ff313fec0a69 rubinius-1.3.3.tar.bz2=79f1f860ed8242257bd7f3e88c81a197 rubinius-1.4.1.tar.bz2=76b840405d4b9303261c27cf15002386 rubinius-2.0.0.tar.bz2=62e379e044c822b81e7b20a27daf133e rubinius-2.1.0.tar.bz2=908053f38fd840c75a93aab7487c20a5 rubinius-2.1.1.tar.bz2=6b4df0caec5ea88373e113f97a3b4c72 rubinius-2.2.0.tar.bz2=f1fbc6f3baf1da5ad86b3858f30f3349 rubinius-2.2.2.tar.bz2=ac70d629ea43525d91e81f4ccf135299 rubinius-2.2.3.tar.bz2=d9978cf1a4e8f0310db63e49834f9837 rubinius-2.2.4.tar.bz2=c10699da85a8eb5861a37b29077213bd rubinius-2.2.5.tar.bz2=5996dc8529b2ffe5921c5e7020bee20e rubinius-2.2.6.tar.bz2=85339bb6dd525eee719edf0551868f56 rubinius-2.2.7.tar.bz2=de2e6f4c3bd9a90bcb89f2ea27ddee9e rubinius-2.2.8.tar.bz2=c4db1ffb8dbdf864240cabe8b7758b49 rubinius-2.2.9.tar.bz2=0bf87ba617fa989e47d20942410028af rubinius-2.2.10.tar.bz2=8680da7eb921e6f595a1d716915ca7e0 rubinius-2.3.0.tar.bz2=e003a30af6689c8198116b3405d09d8e rubinius-2.4.0.tar.bz2=62391a51f49820daa51463066c3ce007 rubinius-2.4.1.tar.bz2=7758721b6e848387c3943ddb9ebd9479 rubinius-2.5.0.tar.bz2=178baa1ad172df0801765ea93bc36d87 rubinius-2.5.1.tar.bz2=77e1b87dc357691ad44b561a5f45c188 rubinius-2.5.2.tar.bz2=e5973d6e0a16f0390dc2a7478db83ff5 rubinius-2.5.3.tar.bz2=b19709eb3fa9e05b3fa6a357b33e3b5b rubinius-2.5.4.tar.bz2=64587916e5d445ed9bc630017a04498e rubinius-2.5.5.tar.bz2=ef671bbab50cbe2f70f953c491311261 rubinius-2.5.6.tar.bz2=597e4b049f49966c646faf699856c1b9 rubinius-2.5.7.tar.bz2=9a7f404019bce9fc34a7af7feb7cbb74 rubinius-2.5.8.tar.bz2=a24520892cada1f660e719a25abf63e3 ruby-1.8.5-p115.tar.bz2=03955e3c367b9beb3efe144c9f00d689 ruby-1.8.5-p115.tar.gz=20ca6cc87eb077296806412feaac0356 ruby-1.8.5-p231.tar.bz2=327f5aa6573787432222e96195cffd1e ruby-1.8.5-p231.tar.gz=e900cf225d55414bffe878f00a85807c ruby-1.8.6-p286.tar.bz2=e6b6bf8f34370e433936adb7a7065e63 ruby-1.8.6-p286.tar.gz=797ea136fe43e4286c9362ee4516674e ruby-1.8.6-p287.tar.bz2=80b5f3db12531d36e6c81fac6d05dda9 ruby-1.8.6-p287.tar.gz=6ff3420094711266c3201a0c7c2faa38 ruby-1.8.6-p369.tar.bz2=c3c1f3dd0dfbd2e17a04e59c2f12cfc8 ruby-1.8.6-p369.tar.gz=8c140ae28b4c3947b92dfad69109d90b ruby-1.8.6-p383.tar.bz2=a48703cd982b9f0e3002700a50b0e88e ruby-1.8.6-p383.tar.gz=4f49544d4a4d0d34e9d86c41e853db2e ruby-1.8.6-p398.tar.bz2=fbd43dc44ee26be4d37e6bebbed6f8bd ruby-1.8.6-p398.tar.gz=736db5f56c2d9b0136e563d049249fa8 ruby-1.8.6-p399.tar.bz2=f77c307cb72fb8808b0e85af5d05cefc ruby-1.8.6-p399.tar.gz=c3d16cdd3c1ee8f3b7d1c399d4884e33 ruby-1.8.6-p420.tar.bz2=1c7a978e9ffd4f56dc2ad74bbd2c34f3 ruby-1.8.6-p420.tar.gz=ca1eee44f842e93b5098bc5a2bb9a40b ruby-1.8.7-p160.tar.bz2=f8ddb886b8a81cf005f53e9a9541091d ruby-1.8.7-p160.tar.gz=945398f97e2de6dd8ab6df68d10bb1a1 ruby-1.8.7-p174.tar.bz2=88c45aaf627b4404e5e4273cb03ba2ee ruby-1.8.7-p174.tar.gz=18dcdfef761a745ac7da45b61776afa5 ruby-1.8.7-p248.tar.bz2=37e19d46b7d4b845f57d3389084b94a6 ruby-1.8.7-p248.tar.gz=60a65374689ac8b90be54ca9c61c48e3 ruby-1.8.7-p249.tar.bz2=37200cc956a16996bbfd25bb4068f242 ruby-1.8.7-p249.tar.gz=d7db7763cffad279952eb7e9bbfc221c ruby-1.8.7-p299.tar.bz2=244439a87d75ab24170a9c2b451ce351 ruby-1.8.7-p299.tar.gz=43533980ee0ea57381040d4135cf9677 ruby-1.8.7-p302.tar.bz2=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p302.tar.gz=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p330.tar.bz2=2689719fb42c8cf0aa336f8c8933f413 ruby-1.8.7-p330.tar.gz=50a49edb787211598d08e756e733e42e ruby-1.8.7-p334.tar.bz2=2f14f604bf981bb938ab5fc8b09eb1a6 ruby-1.8.7-p334.tar.gz=aacb6ee5dfe2367682bba56af7f415b8 ruby-1.8.7-p352.tar.bz2=0c61ea41d1b1183b219b9afe97f18f52 ruby-1.8.7-p352.tar.gz=0c33f663a10a540ea65677bb755e57a7 ruby-1.8.7-p357.tar.bz2=3abd9e2a29f756a0d30c7bfca578cdeb ruby-1.8.7-p357.tar.gz=b2b8248ff5097cfd629f5b9768d1df82 ruby-1.8.7-p358.tar.bz2=de35f00997f4ccee3e22dff0f2d01b8a ruby-1.8.7-p370.tar.bz2=1e4c3194537dd8ff92e756993e55a29d ruby-1.8.7-p371.tar.bz2=c27526b298659a186bdb5107fcec2341 ruby-1.8.7-p371.tar.gz=653f07bb45f03d0bf3910491288764df ruby-1.8.7-p374.tar.bz2=83c92e2b57ea08f31187060098b2200b ruby-1.8.7-p374.tar.gz=b72a0bc5b824398537762e5272bbb8dc ruby-1.9.0.tar.bz2=17eb66ac3721340d21db352d8f5dec76 ruby-1.9.1-p129.tar.bz2=6fa62b20f72da471195830dec4eb2013 ruby-1.9.1-p129.tar.gz=c71f413514ee6341c627be2957023a5c ruby-1.9.1-p243.tar.bz2=66d4f8403d13623051091347764881a0 ruby-1.9.1-p243.tar.gz=515bfd965814e718c0943abf3dde5494 ruby-1.9.1-p376.tar.bz2=e019ae9c643c5efe91be49e29781fb94 ruby-1.9.1-p376.tar.gz=ebb20550a11e7f1a2fbd6fdec2a3e0a3 ruby-1.9.1-p378.tar.bz2=5922459622a23612eb9b68a3586cb5f8 ruby-1.9.1-p378.tar.gz=9fc5941bda150ac0a33b299e1e53654c ruby-1.9.1-p429.tar.bz2=09df32ae51b6337f7a2e3b1909b26213 ruby-1.9.1-p429.tar.gz=0f6d7630f26042e00bc59875755cf879 ruby-1.9.1-p431.tar.bz2=03179138ae95dbfae872ef49e9cc6da7 ruby-1.9.1-p431.tar.gz=23f28cffc007ed5ac72c8e9bec6837ce ruby-1.9.2-p0.tar.bz2=d8a02cadf57d2571cd4250e248ea7e4b ruby-1.9.2-p0.tar.gz=755aba44607c580fddc25e7c89260460 ruby-1.9.2-p136.tar.bz2=52958d35d1b437f5d9d225690de94c13 ruby-1.9.2-p136.tar.gz=6e17b200b907244478582b7d06cd512e ruby-1.9.2-p180.tar.bz2=68510eeb7511c403b91fe5476f250538 ruby-1.9.2-p180.tar.gz=0d6953820c9918820dd916e79f4bfde8 ruby-1.9.2-p290.tar.bz2=096758c3e853b839dc980b183227b182 ruby-1.9.2-p290.tar.gz=604da71839a6ae02b5b5b5e1b792d5eb ruby-1.9.2-p318.tar.bz2=be431c6cbfa27e3836a06c6315717747 ruby-1.9.2-p318.tar.gz=cc7bf1025128e1985882ae243f348802 ruby-1.9.2-p320.tar.bz2=b226dfe95d92750ee7163e899b33af00 ruby-1.9.2-p320.tar.gz=5ef5d9c07af207710bd9c2ad1cef4b42 ruby-1.9.2-p330.tar.bz2=8ba4aaf707023e76f80fc8f455c99858 ruby-1.9.2-p330.tar.gz=4b9330730491f96b402adc4a561e859a ruby-1.9.3-p0.tar.bz2=65401fb3194cdccd6c1175ab29b8fdb8 ruby-1.9.3-p0.tar.gz=8e2fef56185cfbaf29d0c8329fc77c05 ruby-1.9.3-p125.tar.bz2=702529a7f8417ed79f628b77d8061aa5 ruby-1.9.3-p125.tar.gz=e3ea86b9d3fc2d3ec867f66969ae3b92 ruby-1.9.3-p194.tar.bz2=2278eff4cfed3cbc0653bc73085caa34 ruby-1.9.3-p194.tar.gz=bc0c715c69da4d1d8bd57069c19f6c0e ruby-1.9.3-p286.tar.bz2=e76848a86606a4fd5dcf14fc4b4e755e ruby-1.9.3-p327.tar.bz2=7d602aba93f31ceef32800999855fbca ruby-1.9.3-p327.tar.gz=96118e856b502b5d7b3a4398e6c6e98c ruby-1.9.3-p362.tar.bz2=13c26ea368d88a560f07cc8c5eb4fa05 ruby-1.9.3-p374.tar.bz2=944e73eba9ee9e1f2647ff32ec0b14b2 ruby-1.9.3-p385.tar.bz2=5ec9aff670f4912b0f6f0e11e855ef6c ruby-1.9.3-p392.tar.bz2=a810d64e2255179d2f334eb61fb8519c ruby-1.9.3-p392.tar.gz=f689a7b61379f83cbbed3c7077d83859 ruby-1.9.3-p429.tar.bz2=c2b2de5ef15ea9b1aaa3152f9112af1b ruby-1.9.3-p429.tar.gz=993c72f7f805a9eb453f90b0b7fe0d2b ruby-1.9.3-p448.tar.bz2=aa710d386e5903f78f0231868255e6af ruby-1.9.3-p448.tar.gz=a893cff26bcf351b8975ebf2a63b1023 ruby-1.9.3-p484.tar.bz2=03f5b08804927ceabe5122cb90f5d0a9 ruby-1.9.3-p484.tar.gz=8ac0dee72fe12d75c8b2d0ef5d0c2968 ruby-1.9.3-p545.tar.bz2=4743c1dc48491070bae8fc8b423bc1a7 ruby-1.9.3-p545.tar.gz=8e8f6e4d7d0bb54e0edf8d9c4120f40c ruby-1.9.3-p547.tar.bz2=5363d399be7f827c77bf8ae5d1a69b38 ruby-1.9.3-p547.tar.gz=7531f9b1b35b16f3eb3d7bea786babfd ruby-1.9.3-p550.tar.bz2=c2169c8b14ccefd036081aba5ffa96da ruby-1.9.3-p551.tar.bz2=0d8b272b05c3449dc848bb7570f65bfe ruby-1.9.3-preview1.tar.bz2=7d93dc773c5824f05c6e6630d8c4bf9b ruby-1.9.3-preview1.tar.gz=0f0220be4cc7c51a82c1bd8f6a0969f3 ruby-1.9.3-rc1.tar.bz2=26f0dc51ad981e12c58b48380112fa4d ruby-1.9.3-rc1.tar.gz=46a2a481536ca0ca0b80ad2b091df68e ruby-2.0.0-p0.tar.bz2=895c1c581f8d28e8b3bb02472b2ccf6a ruby-2.0.0-p195.tar.bz2=2f54faea6ee1ca500632ec3c0cb59cb6 ruby-2.0.0-p247.tar.bz2=60913f3eec0c4071f44df42600be2604 ruby-2.0.0-p353.tar.bz2=20eb8f067d20f6b76b7e16cce2a85a55 ruby-2.0.0-p451.tar.bz2=908e4d1dbfe7362b15892f16af05adf8 ruby-2.0.0-p481.tar.bz2=ea406a8d415a1a5d8365596d4288f3da ruby-2.0.0-p576.tar.bz2=eccd42d43620544a085c5e3834572f37 ruby-2.0.0-p594.tar.bz2=58469c0daf5f3a892a70cc674ea59c7f ruby-2.0.0-p598.tar.bz2=a3f3908103a7d209d1d1cf4712e3953c ruby-2.0.0-p643.tar.bz2=1390888cac6cd175e6f164eff378cdde ruby-2.0.0-p645.tar.bz2=d576240c97cfcc3ed9bdc457eb1e8280 ruby-2.0.0-p647.tar.bz2=27a3ea1a8b8bca1a6de43a7d08e88b69 ruby-2.0.0-p648.tar.bz2=3544031334f4665aa2eb1414babc9345 ruby-2.0.0-preview1.tar.bz2=47a0f662f0e258aa1c5e429c310861b3 ruby-2.0.0-preview2.tar.bz2=a645a783c3302cc094a9963a5e700a4d ruby-2.0.0-rc1.tar.bz2=24cebdda11e01ff4889ac983cd7dc02c ruby-2.0.0-rc2.tar.bz2=e92420131bd7994513e0bf09a3e2a19b ruby-2.1.0-preview1.tar.bz2=d32d1ea23988399afadbd21c5a7a37fc ruby-2.1.0-preview2.tar.bz2=9d566a9b2d2e7e35ad6125e2a14ce672 ruby-2.1.0-rc1.tar.bz2=cae095b90349b5b0f7026060cc3dd2c5 ruby-2.1.0.tar.bz2=1546eeb763ac7754365664be763a1e8f ruby-2.1.1.tar.bz2=53edc33b2f590ecdd9f6a344b9d92d0d ruby-2.1.1.tar.gz=e57fdbb8ed56e70c43f39c79da1654b2 ruby-2.1.2.tar.bz2=ed9b8565bdeccb401d628ec8d54a0774 ruby-2.1.2.tar.gz=a5b5c83565f8bd954ee522bd287d2ca1 ruby-2.1.3.tar.bz2=02b7da3bb06037c777ca52e1194efccb ruby-2.1.4.tar.bz2=f4136e781d261e3cc20748005e1740b7 ruby-2.1.5.tar.bz2=a7c3e5fec47eff23091b566e9e1dac1b ruby-2.1.6.tar.bz2=e1a8e6c6bfbb09bb7f8d6be8f508e4a1 ruby-2.1.7.tar.bz2=3a878e98311d543e5de3533b82ef4a5a ruby-2.1.8.tar.bz2=b17130b5f02a61640ae3b629af931610 ruby-2.1.9.tar.bz2=62bd1cbfcbc22e4d137462bce992f6d1 ruby-2.1.10.tar.bz2=5155c624807ff2418a9e9f15202954d0 ruby-2.2.0-preview1.tar.bz2=767b132eec3e70b14afe5884a7a767b1 ruby-2.2.0-preview2.tar.bz2=d7abace25a8ffe861cb2807bef1c58a6 ruby-2.2.0-rc1.tar.bz2=7144732d30dd4547c0a59862b3345d54 ruby-2.2.0.tar.bz2=d03cd4690fec1fff81d096d1c1255fde ruby-2.2.1.tar.bz2=06973777736d8e6bdad8dcaa469a9da3 ruby-2.2.2.tar.bz2=af6eb4fa7247f1f7b2e19c8e6f3e3145 ruby-2.2.3.tar.bz2=f49a734729a71774d4a94a9a603114b2 ruby-2.2.4.tar.bz2=c3d65f6d2ebe90dda81a37885ea244f5 ruby-2.2.5.tar.bz2=0c7edd1ff3650c3b74da2efaf641bf34 ruby-2.2.6.tar.bz2=3d13cf447142b8a11cd9beb7bc63fee0 ruby-2.2.7.tar.bz2=ca7224d80c08b015bc3b8c226d0914c3 ruby-2.2.8.tar.bz2=054d2e2904d5175662293e29c3bdb927 ruby-2.2.9.tar.bz2=575adf8ede6b1ca7236a5341e73536b0 ruby-2.2.10.tar.bz2=bef1909a4c885157870ef69548cdad3a ruby-2.3.0-preview1.tar.bz2=776000d74ec6dd34bf355ff6921c8311 ruby-2.3.0-preview2.tar.bz2=3ad442ccb337e77e4acaa4113f25b76a ruby-2.3.0.tar.bz2=f0d9f9bbdc87372ca98988a571875819 ruby-2.3.1.tar.bz2=c194281f63d7fcd816747fe78474be5e ruby-2.3.2.tar.bz2=9d00f3772f1c8fa5eecdfea089e3032f ruby-2.3.3.tar.bz2=04b9c461a2bc1eec0535ad1947cad4fb ruby-2.3.4.tar.bz2=99961e97566aee6d63635e2da4cf73ac ruby-2.3.5.tar.bz2=e1efc3d5a948ca1f552005efe5925513 ruby-2.3.6.tar.bz2=b2443b11ee80319a119f7ec0c9b8d79a ruby-2.3.7.tar.bz2=5eb580d5cd13ffb5aacfb96580c0043d ruby-2.3.8.tar.bz2=78045332e298dfd859ceef9fe946950f ruby-2.4.0-preview1.tar.bz2=64b8983b5f53d053906e394f734aa296 ruby-2.4.0-preview2.tar.bz2=1074e8dea5baa89af7f7c2d1d2b9ebaa ruby-2.4.0-preview3.tar.bz2=9f767e6bc61830735ea7dc9cd5a63653 ruby-2.4.0-rc1.tar.bz2=0f8b665acf4e883334adc121a42a206f ruby-2.4.0.tar.bz2=98f29161860fe1b6c65396717847a358 ruby-2.4.1.tar.bz2=07b2ae5d2f46321c95b37066c8415900 ruby-2.4.2.tar.bz2=5ff3ad6ec816bcce8806a55090936ab6 ruby-2.4.3.tar.bz2=ac8215ba561cc7c79b4f61daee11b706 ruby-2.4.4.tar.bz2=d994274eaa95b82aa5d31ec2188253c6 ruby-2.4.5.tar.bz2=45d70a8bb9397d818795ffe992163d27 ruby-2.4.6.tar.bz2=4abd13c50c1fc273a0a81a0ae74ed39f ruby-2.4.7.tar.bz2=1ce166ced489908993d78e8bb68325e0 ruby-2.4.8.tar.bz2=396d35f1a2d1deaf303f59cb5245d4ae ruby-2.4.9.tar.bz2=0b3447370651df55a2014a170c0cb1d5 ruby-2.4.10.tar.bz2=b10a7d2fcaf218c98edbaf57efc36e58 ruby-2.5.0-preview1.tar.bz2=889454189f41e271ae5ba15382911b6a ruby-2.5.0-rc1.tar.bz2=f5acdeacf56aced3c00ae6a8fa816bbc ruby-2.5.0.tar.bz2=63a6cd49546783d62de25a0ffc4aecc3 ruby-2.5.1.tar.bz2=5aaaf2fb4893214fa316516f3ac43519 ruby-2.5.2.tar.bz2=e90ab127e2ac3ee1d8840835e8ba1f13 ruby-2.5.3.tar.bz2=49aea0bf56d25351ccaf938c642400df ruby-2.5.4.tar.bz2=0c923215470f1debe593fe21e66fd37b ruby-2.5.5.tar.bz2=8f41b5cb683d48b5cb6cdfe03d135d6b ruby-2.5.6.tar.bz2=f2a74416ab3016434896194120796f04 ruby-2.5.7.tar.bz2=65597b69aa54bdca8745502c10349f96 ruby-2.5.8.tar.bz2=9ec96e7a590ef801ede294b6184c9c0f ruby-2.5.9.tar.bz2=9e905a545a729af1f1620ddfc2976fe5 ruby-2.6.0-preview1.tar.bz2=1ce507e27fa02aeb36100dabcf1da94f ruby-2.6.0-preview2.tar.bz2=e45011116334d21857b9e1712a01e6b3 ruby-2.6.0-preview3.tar.bz2=b326ceee3d3756f892515009e148f4b2 ruby-2.6.0-rc1.tar.bz2=40457a72e36cbecd0c51d9f895347302 ruby-2.6.0-rc2.tar.bz2=9665e6d886a9da2d4076fa75836798f1 ruby-2.6.0.tar.bz2=d3372daec93f83e7a91c669821053014 ruby-2.6.1.tar.bz2=73d19ac478db1a178be5ae2f2fb8c9ec ruby-2.6.2.tar.bz2=658fcc0da15578c2420ded807b11cce1 ruby-2.6.3.tar.bz2=52e609b756735115814b9c8463f185e2 ruby-2.6.4.tar.bz2=d9b35753c65f54c745ab6b0094511839 ruby-2.6.5.tar.bz2=d1b89c88effb71d75cd7ef77c35e1985 ruby-2.6.6.tar.bz2=abc030870bfbe18ae9c356abebd95cb6 ruby-2.6.7.tar.bz2=46f24740181f91247c72f19d52334379 ruby-2.6.8.tar.bz2=c53761123d17e929cfe248f50429bcab ruby-2.6.9.tar.bz2=ddc24495adaf215c8ee40630b4a55041 ruby-2.6.10.tar.bz2=6ad76db639ab308e3b6c19408729a0cf ruby-2.7.0-preview1.tar.bz2=82fab0496947acd847a6b2eb758acfc6 ruby-2.7.0-preview2.tar.bz2=966a544ab59114591898403c23d91397 ruby-2.7.0-preview3.tar.bz2=2fa6c213774744b287e7e0212b43f626 ruby-2.7.0-rc1.tar.bz2=48a8837cb352f5b95e97a1ae0d62a9d0 ruby-2.7.0-rc2.tar.bz2=cca58fdb8c5e8be8273842d54199c42d ruby-2.7.0.tar.bz2=89347748b7414f5bc7aeb8f4a87ebef4 ruby-2.7.1.tar.bz2=4bb2b2b2f0c6953859e30af140cf249a ruby-2.7.2.tar.bz2=a8acc9c24708fe29dfc287823ecaae65 ruby-2.7.3.tar.bz2=604acb258b1d8228f55799e846cfe6d3 ruby-2.7.4.tar.bz2=52705d799ed851dd3bfd5634265cde46 ruby-2.7.5.tar.bz2=d97d4377eee18b0e790510c3afed648c ruby-2.7.6.tar.bz2=1b6efacb9f129d0253d8a9faa9c21f99 ruby-2.7.7.tar.bz2=63c55e75150251d3ba092b662138e4af ruby-2.7.8.tar.bz2=f44dedf51fdb7441a7dba592d6a4a14d ruby-3.0.0-preview1.tar.gz=991df063b86a8f8412ca07f548579f39 ruby-3.0.0-preview2.tar.gz=ce14b24e923f2e269fea6441791a7248 ruby-3.0.0-rc1.tar.gz=848a8628c8abde270b66e2474049a4a3 ruby-3.0.0.tar.gz=d6af36269a1b0bc278236d371543ad97 ruby-3.0.1.tar.gz=8d1c460a9a9d48a353de3eb0f338bbfd ruby-3.0.2.tar.gz=b973af486291a1e17ad50d88472bfa86 ruby-3.0.3.tar.gz=9ecae293da9547c1438a970f04f64655 ruby-3.0.4.tar.gz=ec9de9a15acc4f205b08816d94267415 ruby-3.0.5.tar.gz=cdff2395625dc1d632fc5400c8fec103 ruby-3.0.6.tar.gz=6b5a7b14505697e6fc2b40b345679f40 ruby-3.0.7.tar.gz=147a3467facc704b5d479e809c131603 ruby-3.1.0-preview1.tar.gz=d131b9bca700ee87ea276f8233ea4c0b ruby-3.1.0.tar.gz=1ca89d713f2c18a20104befed51b3b9a ruby-3.1.1.tar.gz=702778a0ef8b7a01ef7530a541002e19 ruby-3.1.2.tar.gz=9daf064899cccc32fd564117c7a7e0dd ruby-3.1.3.tar.gz=cce38a2b2c589d59f440f67c7d8cc697 ruby-3.1.4.tar.gz=3e601ae6db76a487219a1084e5cb4c9c ruby-3.1.5.tar.gz=ce1e92ddb1230fa2d4f4367882542555 ruby-3.2.0-preview1.tar.gz=a83c91d53e130fe232e4c27ecc8738da ruby-3.2.0-preview2.tar.gz=56e7801b37612b82285c9a09cfeb28ce ruby-3.2.0-preview3.tar.gz=0ed16faae50403b4e2ba2e85ec2314a1 ruby-3.2.0-rc1.tar.gz=4657d7013702adce21ca21dfe71ea4a0 ruby-3.2.0.tar.gz=76ca7e7d71898ab1e85155d69403754e ruby-3.2.1.tar.gz=055101c924538467c63fcbf42abddc75 ruby-3.2.2.tar.gz=eb6f18605e1e1be5dfb5b45f31bf6a93 ruby-3.2.3.tar.gz=e0ba90554f7ea41c587ffa7fcfd064ca ruby-3.2.4.tar.gz=c48283a23c72d7aae19b7f510b89444a ruby-3.2.5.tar.gz=3bd6f2b26918c8637abf56c2f208833e +ruby-3.2.6.tar.gz=fa9bd65bc429a43a3e6dda8ff0b97022 ruby-3.3.0-preview1.tar.gz=0833f555b1b8d5423953600fb4146639 ruby-3.3.0-preview2.tar.gz=4f82f4c9e512ec0a53baa1be8d35ebf7 ruby-3.3.0-preview3.tar.gz=a32ede198a9da50d4afc4421a4a993ad ruby-3.3.0.tar.gz=f57422a0f995cd5a93c726f6c42c310a ruby-3.3.1.tar.gz=368e331a35145ace4948390ed76cf1df ruby-3.3.2.tar.gz=9a7efebc6a0e4810c716ec6d401dc372 ruby-3.3.3.tar.gz=beb9773cc4d9d8da29463ab175e4db28 ruby-3.3.4.tar.gz=f2e16c1a56e07e185214e85c62657941 ruby-3.3.5.tar.gz=ccad73b02d942d1e6b4c27873d4c08e4 +ruby-3.3.6.tar.gz=51bcf91da64e5889e2e59c7adc7189c5 ruby-3.4.0-preview1.tar.gz=93b9b1040a2dd7be7514a7870aa7da03 ruby-enterprise-1.8.6-20080507.tar.gz=17e3c52e73e42809f57ad0000a6cb4ab ruby-enterprise-1.8.6-20080621.tar.gz=626fc3811eee2dc92ac27ea63d37a8b2 ruby-enterprise-1.8.6-20080623.tar.gz=0bf8a3a93c6b37bb1260cc09b05e81fd ruby-enterprise-1.8.6-20080624.tar.gz=de58b97128aa65209f291c66eab7c4a7 ruby-enterprise-1.8.6-20080709.tar.gz=f0ded08cec64959fa388ec6a237b9c47 ruby-enterprise-1.8.6-20080810.tar.gz=bfdcf06f437af825cd9f2d321f9d1896 ruby-enterprise-1.8.6-20081205.tar.gz=50206bec9be2e08a862e5ec2e70fa693 ruby-enterprise-1.8.6-20081215.tar.gz=aab57b7d5061c1980bec5dbe311ec9b2 ruby-enterprise-1.8.6-20090113.tar.gz=e8d796a5bae0ec1029a88ba95c5d901d ruby-enterprise-1.8.6-20090201.tar.gz=a965e6789b553efaed72191825b13713 ruby-enterprise-1.8.6-20090421.tar.gz=c777b361aadccda7988be16ede7ab15f ruby-enterprise-1.8.6-20090520.tar.gz=156572a8296bd0440970a6bb95018a13 ruby-enterprise-1.8.6-20090610.tar.gz=0bf66ee626918464a6eccdd83c99d63a ruby-enterprise-1.8.7-2009.10.tar.gz=3727eef7b6b1b2f31db7d091328d966e ruby-enterprise-1.8.7-2010.01.tar.gz=587aaea02c86ddbb87394a340a25e554 ruby-enterprise-1.8.7-2010.02.tar.gz=4df7b09c01adfd711b0ab76837611542 ruby-enterprise-1.8.7-2011.01.tar.gz=4640634347cd8e5469cb718853e2112e ruby-enterprise-1.8.7-2011.02.tar.gz=8c5faa11c1ddaed3f44b7294711980cc ruby-enterprise-1.8.7-2011.03.tar.gz=038604ce25349e54363c5df9cd535ec8 ruby-enterprise-1.8.7-2011.12.tar.gz=1e5f3059d52a67ab5d91d472b756de08 ruby-enterprise-1.8.7-2012.02.tar.gz=8d086d2fe68a4c57ba76228e97fb3116 ruby-enterprise-1.8.7-20090928.tar.gz=ae00018ce89d95419dfde370fcd485ac rubygems-0.4.0.tgz=86a64616548a793e1a5f825f0dd385b9 rubygems-0.5.0.tgz=80d151edd94a06bcd2452a7e272b4d96 rubygems-0.6.0.tgz=5df803f5a04654833690dd32283de741 rubygems-0.6.1.tgz=c4a0faa9f876ad805ae80d1396a29d97 rubygems-0.7.0.tgz=ede9b55343219e8b3491793aa12c46f3 rubygems-0.8.0.tgz=9ef6e3c34dcb54e295c8e57321ddc079 rubygems-0.8.1.tgz=6276d268b420c0d61796cdbf6d28dae4 rubygems-0.8.3.tgz=6e6da80f61d6e77d0ad9e531767f6fd5 rubygems-0.8.4.tgz=a2ad2d03dae8a98002c2a7cd6c3ed352 rubygems-0.8.5.tgz=b917c084e1e6e99d8e102af8dd687ddb rubygems-0.8.6.tgz=9de98d2f62e3f91521b0207a4dcdeb5b rubygems-0.8.7.tgz=7fc04b9f9acc0c18cbbe6222be8d0bd3 rubygems-0.8.8.tgz=a8535e9c35a4c215d6ef9268d4bc69ed rubygems-0.8.10.tgz=d26592e280c0fb24c51f2837c3f48e67 rubygems-0.8.11.tgz=aa363b428c4c1fc2e076a4ff77b957d7 rubygems-0.9.0.tgz=5d496e1f415b8b4033ab867f01d1161f rubygems-0.9.1.tgz=a62314cdb174ccc88a27b8924fa79e4a rubygems-0.9.2.tgz=cc525053dd465ab6e33af382166fa808 rubygems-0.9.3.tgz=600940a22ecd79e28e0fd37ad1f1d871 rubygems-0.9.4.tgz=b5680acaa019c80ea44fe87cc2e227da rubygems-0.9.5.tgz=91f7036a724e34cc66dd8d09348733d9 rubygems-1.0.0.tgz=b0b74eac0cbfc5a13f895ab6f803edc1 rubygems-1.0.1.tgz=0d5851084955c327ee1dc9cbd631aa5f rubygems-1.1.0.tgz=85f994904c5b4045f0a859b29d0be717 rubygems-1.1.1.tgz=1a77c5b6b293a3ccd5261dc120641ccc rubygems-1.2.0.tgz=b77a4234360735174d1692e6fc598402 rubygems-1.3.0.tgz=63d3dfc038710eaf532b6a133225115a rubygems-1.3.1.tgz=a04ee6f6897077c5b75f5fd1e134c5a9 rubygems-1.3.2.tgz=6204d0a4c526a1d8fdbce746647b179a rubygems-1.3.3.tgz=0e9697db44d812712350baf28016b4a7 rubygems-1.3.4.tgz=b17b398503253bf36a101c58f02a226f rubygems-1.3.5.tgz=6e317335898e73beab15623cdd5f8cff rubygems-1.3.6.tgz=789ca8e9ad1d4d3fe5f0534fcc038a0d rubygems-1.3.7.tgz=e85cfadd025ff6ab689375adbf344bbe rubygems-1.4.1.tgz=e915dbf79e22249d10c0fcf503a5adda rubygems-1.4.2.tgz=b5badb7c5adda38d9866fa21ae46bbcc rubygems-1.5.0.tgz=49bef7186bf3c0ca6ee7adf4b585bccc rubygems-1.5.1.tgz=47577a5e33c9c6f1e3a56aff7f51d0ff rubygems-1.5.2.tgz=3951f94c09c16c774c8bcebc94fa5374 rubygems-1.5.3.tgz=38bbbdc17aef923fb41f054cf8421116 rubygems-1.6.0.tgz=abd27b5a9002100ff74ddb398a1c9689 rubygems-1.6.1.tgz=a77c64896aaa10d64aaf34f5c1488173 rubygems-1.6.2.tgz=0c95a9869914ba1a45bf71d3b8048420 rubygems-1.8.6.tgz=8e95d0c5b377a003f3d54a49461e81d9 rubygems-1.8.9.tgz=fc399445d693c29778779e5828ee5e90 rubygems-1.8.10.tgz=5b08ee31740c9b0bd36f6c04d537e7d4 rubygems-1.8.23.1.tgz=5259ce3eb7988950fa3aff9051a5de91 rubygems-1.8.23.2.tgz=fb377c7fd387df14a33e529153adc316 rubygems-1.8.23.tgz=178b0ebae78dbb46963c51ad29bb6bd9 rubygems-1.8.24.tgz=3a555b9d579f6a1a1e110628f5110c6b rubygems-1.8.25.tgz=1376a258d43c53750a8df30e67853e10 rubygems-1.8.26.tgz=0ea47f1efd010f4c82b8a51a934f48dc rubygems-1.8.27.tgz=6686ad26735c21d0d6e58b6192c7da5d rubygems-1.8.28.tgz=2df78039f391fb1f71c02c2fc5671c94 rubygems-1.8.29.tgz=a57fec0af33e2e2e1dbb3a68f6cc7269 rubygems-2.0.0.tgz=89ce467eb2d55657e9965a46559acbcf rubygems-2.0.1.tgz=2652ab6f001a873b8933e2ca09505974 rubygems-2.0.2.tgz=3471f140a70bcd32a7495b545cfce790 rubygems-2.0.3.tgz=854691f145cea98b4100e5b0831b73ed rubygems-2.0.4.tgz=3ec32dbe783bab37a87f50758f8efe13 rubygems-2.0.5.tgz=641d82672937d40d664dbc18f49cdcec rubygems-2.0.6.tgz=0633f50db16112bf6c3cf9bfb9ceb9bd rubygems-2.0.7.tgz=9046700f1222712fedfb836fafa08c50 rubygems-2.0.8.tgz=5432214a740c0d13482e43a5328a6518 rubygems-2.0.9.tgz=bc55898247297ffa190223276b1b1bd7 rubygems-2.0.10.tgz=5457ba403cd9a5f4f5fb2ef4a2a1c03e rubygems-2.0.11.tgz=0f28e3fde3348c0f23ceecba73a6cbef rubygems-2.0.12.tgz=99c416517e2de1146d2c6fbb4c4c1441 rubygems-2.0.13.tgz=3970e66a670ddb6d1aade9c7b18033d4 rubygems-2.0.14.tgz=4a7aa0b144e465230ab5d7b59dfd7e8f rubygems-2.1.0.tgz=9a9d242baef5e58fbfe79ec5206cd316 rubygems-2.1.1.tgz=b34d6f4028b69a84123a6b7cb0ac8028 rubygems-2.1.2.tgz=b5c5c4430be60f911014216d41886ef3 rubygems-2.1.3.tgz=ac7bbdfecd49f9304756aa5ebeb51400 rubygems-2.1.4.tgz=aa502b1ea90fbdd14ca9b32634795c2b rubygems-2.1.5.tgz=60564b762d4e186815997653b1c876ab rubygems-2.1.6.tgz=e11237a8f87dbd8c085770551d64a8f8 rubygems-2.1.7.tgz=b721ed7d5fd57ed05f77eb21a3a592ee rubygems-2.1.8.tgz=cc4c84c0482840389a457740e8083ed9 rubygems-2.1.9.tgz=2636bf26c0a9ec889c7bd938887bd9a3 rubygems-2.1.10.tgz=6fa671d7d6605de73d16f529cf7bffb8 rubygems-2.1.11.tgz=b561b7aaa70d387e230688066e46e448 rubygems-2.2.0.rc.1.tgz=f7d80b612339169569f2675155c202f1 rubygems-2.2.0.tgz=3c16e50673adb99d1ce76d5231f764bd rubygems-2.4.8.tgz=dc77b51449dffe5b31776bff826bf559 rubygems-2.6.10.tgz=ab5a0028d2a0653691b29d7463bd0892 rubygems-2.6.11.tgz=8d514b836fcf3ae2c20b4fe8d5cdc3c5 rubygems-2.6.12.tgz=7c454ef88b716c1a123f62b26bb9612b rubygems-2.6.13.tgz=e6f19b51614055d826e431549a12a80b rubygems-2.6.14.tgz=e0a6914ce03b91dfc6d448ebf292f145 rubygems-2.7.0.tgz=771c40015538c0f225c5249e4bc7d441 rubygems-2.7.1.tgz=65646f28f3c36ccaa7f991c17e15b8a9 rubygems-2.7.2.tgz=312a238ed98a61d2b3d165b790b6062b rubygems-2.7.3.tgz=fb3a1927a1842b75677a24f48dd63ddc rubygems-2.7.4.tgz=e9bbf5a4cc9a74293884b91f49603ea0 rubygems-2.7.5.tgz=516a4f219976003feb4b4f797cbc66b0 rubygems-2.7.6.tgz=366cea352c2b1243db726013c3d76fc4 rubygems-2.7.7.tgz=b6721f6ce4af08f68c6f513bbddfe484 rubygems-2.7.8.tgz=a3ed89a34e1ae8f9da0c620a8aa35f12 rubygems-2.7.9.tgz=173272ed55405caf7f858b6981fff526 rubygems-2.7.10.tgz=464754059d8ca01c1121a1233d866e8c rubygems-3.0.0.tgz=3908105894e531f7ad3aceb8b41dcbcd rubygems-3.0.1.tgz=1e8af9b87a67f15841ad2be7d5725a5f rubygems-3.0.2.tgz=d8db1b516ae1e35b8f6f56cb526f879a rubygems-3.0.3.tgz=b7a7dd5f85485334a6cb61b7dac20cff rubygems-3.0.4.tgz=7d0c49077a2d19f48d88567cfa3cf17a rubygems-3.0.5.tgz=4664467d621d719688e4778d147c306a rubygems-3.0.6.tgz=60d84e843b131fb87c8fd67e8fac6470 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=3e9afdf72f153e2f66259fc2b6fca594 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=c30459287aec83548cfcb17340fa73d5 truffleruby-1.0.0-rc3-linux-amd64.tar.gz=138f6814451ce634b0fae3aca5579248 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=94ed54ecb65bea2166a2159431b0362b truffleruby-1.0.0-rc5-linux-amd64.tar.gz=9e5428611e22b093d05afebbe0ccbc2b truffleruby-1.0.0-rc5-macos-amd64.tar.gz=b32a254fed71434c3431fb2effb35c5a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=7f394a8c7fe356b7bd36683c57f74ebd truffleruby-1.0.0-rc6-macos-amd64.tar.gz=f033329d03f1f846d25728c2af9d7524 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=184e98f2d6939f63db4b915943ff60c6 truffleruby-1.0.0-rc7-macos-amd64.tar.gz=d19213b33011f7a55e0f32d25e19184f truffleruby-1.0.0-rc8-linux-amd64.tar.gz=a394167c0331c6d8c1123e1f992e5411 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=dc1bf0fcfdd5837ae0ca56d6d6e5f7b0 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=f6ec25bd532bf0551d35327d1aa4caf9 truffleruby-1.0.0-rc9-macos-amd64.tar.gz=c80a345f9071521cf1961ab75ebc7dd1 truffleruby-1.0.0-rc10-linux-amd64.tar.gz=3a889726efcdf33feb7ef3df13fd5f39 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=bba618b4483b79eebf9f0e7af4078502 truffleruby-1.0.0-rc11-linux-amd64.tar.gz=a25e179ca0be96a1bc737a600729c195 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=bb8d8f5525e1ba86bb039e56291c6c7c truffleruby-1.0.0-rc12-linux-amd64.tar.gz=872774837057489250527bf863192115 truffleruby-1.0.0-rc12-macos-amd64.tar.gz=bb4a64e6c4882fd0c5e412bf9c57720b truffleruby-1.0.0-rc13-linux-amd64.tar.gz=0f36eed2eb36846785fdd4eae24adfa0 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=1bd3087a0f2df4c006b87c9488ada6d4 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=9eddd1aa98c9649e7c01bb10bf28c471 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c93643f1d00b370411310ee7a1dd5330 truffleruby-1.0.0-rc15-linux-amd64.tar.gz=bc7339a6218ea991f2c72ce8759cb6e3 truffleruby-1.0.0-rc15-macos-amd64.tar.gz=1671d08dd2f5026d58b326fd55c9b7de truffleruby-1.0.0-rc16-linux-amd64.tar.gz=5564d17f19b8ee0edb96ab5b1bfbda98 truffleruby-1.0.0-rc16-macos-amd64.tar.gz=61583b529b6a1337398b0966db952d24 truffleruby-19.0.0-linux-amd64.tar.gz=006220c7bde7d0b5c72481133624a83f truffleruby-19.0.0-macos-amd64.tar.gz=9ef7f5a311465d35e54ac6e00ec3d169 truffleruby-19.0.2-linux-amd64.tar.gz=2f7fe574e0695fb6001f4f5282aa2f79 truffleruby-19.0.2-macos-amd64.tar.gz=aa20f76b3eac1f4976a507364201d1ad truffleruby-19.1.0-linux-amd64.tar.gz=71368f8371069017d911528f052b0a55 truffleruby-19.1.0-macos-amd64.tar.gz=7f086adbc89fdfaed35273394ac3ac66 truffleruby-19.1.1-linux-amd64.tar.gz=c1ad4d17bb40e214b124222f3a7c6db6 truffleruby-19.1.1-macos-amd64.tar.gz=f4e76b0612319b4a82480cbd1fc90210 truffleruby-19.2.0-linux-amd64.tar.gz=458ed5fec1a849ef5b00e19b0e25d5e9 truffleruby-19.2.0-macos-amd64.tar.gz=dc324575ad20e3054980835c24ea7161 truffleruby-19.2.0.1-linux-amd64.tar.gz=ad7444145550d89931199159163077c1 truffleruby-19.2.0.1-macos-amd64.tar.gz=b5bcfb0aaded1e2d1763089ab6c9a14d truffleruby-19.2.1-linux-amd64.tar.gz=fc4879d2b0cc22c152a8bf893a72c346 truffleruby-19.2.1-macos-amd64.tar.gz=71448ff3f8f1da086f222751d3f853bc truffleruby-19.3.0-linux-amd64.tar.gz=dd44ac30b5a1ef3a7d61172cda9b30b6 truffleruby-19.3.0-macos-amd64.tar.gz=41daa52f0f308abb77a2b91c1b7e0f3d truffleruby-19.3.0.2-linux-amd64.tar.gz=2db2cb5c29523c9bdb6f59dfa0bd74ce truffleruby-19.3.0.2-macos-amd64.tar.gz=edf1603643938686dce57139aadf7d3c truffleruby-19.3.1-linux-amd64.tar.gz=a14c028351f7a3965bcb56e9b22364de truffleruby-19.3.1-macos-amd64.tar.gz=a8707d0af3eda694ec07a5387d3443fb truffleruby-20.0.0-linux-amd64.tar.gz=b30110ecbc50c4fce402fdf44c45dad5 truffleruby-20.0.0-macos-amd64.tar.gz=0671e5909cefb9a2c12c473fc0110821 truffleruby-20.1.0-linux-amd64.tar.gz=4592b5fc3636d82fc998ab6fe0a43584 truffleruby-20.1.0-macos-amd64.tar.gz=3c0be43db86817c7037d3ff5053d322d truffleruby-20.2.0-linux-amd64.tar.gz=e9859decb24829f9a189d88b3c2e9b79 truffleruby-20.2.0-macos-amd64.tar.gz=49e7ccf8f9e60d6c59b3b07b854466cf truffleruby-20.3.0-linux-amd64.tar.gz=93a20845f7d9d39100761424dfc0a734 truffleruby-20.3.0-macos-amd64.tar.gz=b178b7a94fac58400450417612fe3441 truffleruby-21.0.0-linux-amd64.tar.gz=c03304a505c8699e697acecf5030d95f truffleruby-21.0.0-macos-amd64.tar.gz=019796be37a58ef8e186a625f2ff5d07 truffleruby-21.1.0-linux-amd64.tar.gz=065bfcc48f6925410e0da21e16428b64 truffleruby-21.1.0-macos-amd64.tar.gz=325f6854c10d8a3a114c80da582c469f truffleruby-21.2.0-linux-amd64.tar.gz=0aec44721a040845347f18c1f72ceb75 truffleruby-21.2.0-macos-amd64.tar.gz=76d27715b20902df5779f7a0c00852b1 truffleruby-21.2.0.1-linux-amd64.tar.gz=f68e9b8a9f9cae5efc5ac45a7d9e760d truffleruby-21.2.0.1-macos-amd64.tar.gz=b021e50fc94cab590b49d27f2ea821b0 truffleruby-21.3.0-linux-amd64.tar.gz=359aca79cba4e08f9955d9c6543c2189 truffleruby-21.3.0-macos-amd64.tar.gz=d9e2e2c6fcd3ac16f0c37b0ccffb4f41 truffleruby-22.0.0.2-linux-amd64.tar.gz=324327026e9b2963a8e5fb4ee3f4e216 truffleruby-22.0.0.2-macos-amd64.tar.gz=7029d0e291d498a264d9b413729a3e17 truffleruby-22.1.0-linux-amd64.tar.gz=9329cf507ba8ac529e93156cacc1425d truffleruby-22.1.0-macos-amd64.tar.gz=353242978b46cafc34b05e2c81206096 truffleruby-22.2.0-linux-amd64.tar.gz=5d676377056ae94fe847be721c20405b truffleruby-22.2.0-linux-aarch64.tar.gz=b774f4b7d330842521f1e6e56cb41db5 truffleruby-22.2.0-macos-amd64.tar.gz=e45fdd9a05aec6220a76fb707b0a5ae8 truffleruby-22.2.0-macos-aarch64.tar.gz=ebcbfe056d90d06de4bd0a9d699bad8f truffleruby-22.3.0-linux-amd64.tar.gz=ada8bc5dc52aca8317eaeab04d91e877 truffleruby-22.3.0-linux-aarch64.tar.gz=11493301d5519aa73e8f0e140cefb581 truffleruby-22.3.0-macos-amd64.tar.gz=9e27c677637b69b0460fb0a4569a5cca truffleruby-22.3.0-macos-aarch64.tar.gz=eaa1c9020b521226f8bb48b8c7e5c596 truffleruby-22.3.1-linux-amd64.tar.gz=243d926f038fd2220c03dfbe40ef58c3 truffleruby-22.3.1-linux-aarch64.tar.gz=01487fe680863381489bf2a0a2ac162b truffleruby-22.3.1-macos-amd64.tar.gz=b3d5a777d94856e51034d81076e8ef72 truffleruby-22.3.1-macos-aarch64.tar.gz=320ce75730a5b9f16f111eb7ef5e4e09 truffleruby-23.0.0-preview1-linux-amd64.tar.gz=76c1cb23ee63ba4de93a0c23784bfca9 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=eec3fc74565f08e9468982692f7f9010 truffleruby-23.0.0-preview1-macos-amd64.tar.gz=50e38f3cd548dfe78f397f76ed577bf1 truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=b769bcf9b843d9b2980def1e2139284f truffleruby-23.0.0-linux-amd64.tar.gz=6e1a491406c5dbf42de10fcb3ed7dc1c truffleruby-23.0.0-linux-aarch64.tar.gz=5c3663f64bee707173b2684355a9a42e truffleruby-23.0.0-macos-amd64.tar.gz=515a9a8a0f39ba9399e869cd418ebff5 truffleruby-23.0.0-macos-aarch64.tar.gz=57e5fa52270e692b82c445107fe6b6a6 truffleruby-23.1.0-linux-amd64.tar.gz=f7511c19045e57e72f9b5415bc17c8e8 truffleruby-23.1.0-linux-aarch64.tar.gz=e8a20dd919a2ff77b7cc5457e853d15d truffleruby-23.1.0-macos-amd64.tar.gz=d3b6a3cbc0a230ebae6f3a462a32ddd3 truffleruby-23.1.0-macos-aarch64.tar.gz=ee74fc5d192c2fb8afd0458d2d429c02 truffleruby-23.1.1-linux-amd64.tar.gz=d7e1c040da170aaa36b5f5a1d106d237 truffleruby-23.1.1-linux-aarch64.tar.gz=cf508ba3787be20c03bac690f3bdbac5 truffleruby-23.1.1-macos-amd64.tar.gz=a662a8672871524808500dddef3808c1 truffleruby-23.1.1-macos-aarch64.tar.gz=de543312024993a533e3caa63b396127 truffleruby-23.1.2-linux-amd64.tar.gz=e3e5b01b291d7fea61be2be842c7e8dc truffleruby-23.1.2-linux-aarch64.tar.gz=8fe26f643fa81eec6de3bde7024c858a truffleruby-23.1.2-macos-amd64.tar.gz=83bc41bf699fa847df7e60412bee2823 truffleruby-23.1.2-macos-aarch64.tar.gz=7dbd2e182cfec0cf2d2e37784721903f truffleruby-24.0.0-linux-amd64.tar.gz=202f05706d28faca75d5e3cd0f9bef78 truffleruby-24.0.0-linux-aarch64.tar.gz=4faaf4edde4f6a516246b7c2f4ee80b3 truffleruby-24.0.0-macos-amd64.tar.gz=d07f27e0e29398c6de836b0049105c12 truffleruby-24.0.0-macos-aarch64.tar.gz=10cf176718968893468caba617c02141 truffleruby-24.0.1-linux-amd64.tar.gz=2914bfb81b136cd1fb5736c0a40068e3 truffleruby-24.0.1-linux-aarch64.tar.gz=429e6ada9a95ea23ebb95d01f90eb0f4 truffleruby-24.0.1-macos-amd64.tar.gz=e3aa5ab128f5d169d93f2d6df98c4e77 truffleruby-24.0.1-macos-aarch64.tar.gz=6f81a1afe1b89a40f00c9bd4216ec45d truffleruby-24.0.2-linux-amd64.tar.gz=1a826ea6323a25becce5940d8e6c4642 truffleruby-24.0.2-linux-aarch64.tar.gz=45429f35653bd8cbc328eafe81d15e8a truffleruby-24.0.2-macos-amd64.tar.gz=f68aeb26783d048ae5f78e1c13739747 truffleruby-24.0.2-macos-aarch64.tar.gz=df05f94696b4f4584a259001a3d4d1d0 truffleruby-24.1.0-linux-amd64.tar.gz=14aa05250088f17491072e500c22c039 truffleruby-24.1.0-linux-aarch64.tar.gz=3e26495f8aa7b810ec5794a69e93483a truffleruby-24.1.0-macos-amd64.tar.gz=53b6251cdd359176f9e52fe05f05e949 truffleruby-24.1.0-macos-aarch64.tar.gz=28d61b8a1a307cbdf988313c8a1f77f1 truffleruby-24.1.1-linux-amd64.tar.gz=9ef530c2ac5f597100e69e4b374182c3 truffleruby-24.1.1-linux-aarch64.tar.gz=efcc6f5c51be84d2ec99e6cebccc586a truffleruby-24.1.1-macos-amd64.tar.gz=11e2f0f62c55fcc8330cd66393abb1fc truffleruby-24.1.1-macos-aarch64.tar.gz=eaba15df3e46cd3976bedaf6f086aae2 yaml-0.1.4.tar.gz=36c852831d02cf90508c29852361d01b zlib-1.2.3.tar.gz=debc62758716a169df9f62e6ab2bc634 zlib-1.2.5.tar.gz=c735eab2d659a96e5a594c9e8541ad63 diff --git a/config/sha512 b/config/sha512 index 8a1b642..43654ed 100644 --- a/config/sha512 +++ b/config/sha512 @@ -1083,666 +1083,668 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/16.10/x86_64/ruby-2.3.2.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/16.10/x86_64/ruby-2.3.3.tar.bz2=d77a51c0b1d0cfcf0b0385d32fd87adc57896f64729ca822f7c1bd7ecce79264b8b5e1799ebe0f7b079f4590e7740db97d027ef4fe5387556dce2c689630f118 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.1.6.tar.bz2=e80ebc162e44f407f5c830fb55f995ce29e28ed871d365631764db395860239bd570aff3092b18b169ef0b9b70495bf86600677c616cbd63c80f1ab50eddaadf https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.1.7.tar.bz2=af76486c65259084dcc3afbff212b7cd5d9e17d5ac6b496db37c6c28285b41f0a72523b92505df2c7efbf5e64ff7dd6d86610f84c5efa7452d2bd01908ca0390 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.1.8.tar.bz2=8f8829fda202863105c0453ad40e1f8806833446d44fa01f97e742e83cb086da7eeaf3349899c9120879395ede20a192ef4546a00062585e47b6b2fe2253c89d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.1.9.tar.bz2=3c249490017b902b43e58a199dc420b9dc038ec139949d9bc620f58a70c7f8dd093d12313f695899ad53ee314c4bdcfeaa50cb72c196b889f38faa22936137c3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.1.10.tar.bz2=6bcfe2a2983f6b476adfb7863c9b483aa0c7cd84abd70c59f4de427ee6274bed71200cd91269bc0b3cd418645aee6371cfd3cd77e93b98a2c6c64efac6e817d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.0.tar.bz2=e610c0029dd68d15b582f09086ac39a6e5d039ffa9c18e5fefaffe4b0279445258050327bf7c02c8ef672a7ec58a32f5850c044d9083694d0b55424f2b75e945 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.1.tar.bz2=d841aff173f5a0af71384b56e1430395b287a771f80131279e22647e368acb20b5c22e5c0d4858510525b9783da499b6f6fade081e1d37fac3fe7a50cb34cee0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.2.tar.bz2=17be6eea903f162178edae84c67f263b9532405c0cb5bb320fa51b019869d114e0dc4ad7fafd6cb2597e45b73d4777d3c4e0d4f22141de30bd2ad02ccdd41ee3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.3.tar.bz2=8dd4bb1cafb2d82586b199bf032edaf23fd9bcf8a05b7e2087de172b8a8c6c4fb96584fb15372033b97bbe11a7f8aab25057c03d71e5ee21ec4a647f95687413 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.4.tar.bz2=54f9fceb0496f647b3c59dd7411a583c74e7886d8f127aba10379de739c85e45d62c2688280ba5d21a45c5054f42a2645ac2a9d990ec1a16cbb2c533edd9eff4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.5.tar.bz2=1aee7aa974a08c6bb5a29b0782efa2950c1e530bc2100e018d66450e8e89701673a034a45adcf70bdc37f52d4027ae263d7e4410d64fc637b594ad624f10a25c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.6.tar.bz2=693173e4e235300cf30ce1592bada6aba5bb29a123157aa419ba8403757682cff31c9b2b0a4e97daed557953f52c26ebe0e49605e1d12f5e4247e0096d736630 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.7.tar.bz2=8af3b57425f7cac45e7bc61029f872facc87e9ffeb3243f8fb43407cbc0a581491f38091b0fa45c8c148b730fd8cd493aa5286177b68092d7944dd73ba585299 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.8.tar.bz2=f1a7801bd0116914a055ff4013840faeac0e432b55aaae4c0bb61eda3d812eb5b3093c2c536fd9e2e28eca81137300f84418d8bc8dd9e48ffe245ad90dd3eab7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.0.tar.bz2=e1fea7c85410615f76b02df366ee49f929cd3bf3e52c3fef8b848a8a6d2b982de03c325aac664c6550b216a11cde64ae571bd5a5467ddd4a8b61039d874b2955 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.1.tar.bz2=e8b6b5dafc4b46e97fd905a5396d09ee1cfd1c0b4b74b9c3bd9e1056684f05345ac1599817cd9cb1dcd410e4e3ea23d5f2fc86da12e01fd076434c1b2917f117 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.3.tar.bz2=8172c35a381adfdbf0f90fddf526e3a5c5d4590e133e041aeb339137c1c31f16a47b904c61048c29906dfd2245572dd69caec507432628bbc98bb3eb94891575 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.4.tar.bz2=fe9370f2f45c557fd24574219e9597826f4614a8c59f092bce54338a2e927d16bfd4abbcaf0203a60a35a11169310d45e79c4a33fa4d45916bd6e4eefcc7b888 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.5.tar.bz2=e42fe5b628b6a6cfc87abaadbd9140cbc5c0000993c3272740ee6e20d07d2bacffe5148213f9628d6bc6f97211c0905e55d7bd304763ae095d86df8c2b2d15fa https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.0.tar.bz2=baadb5c405fab06da091e75af6497370757cb694d50c9f76fb06bc0a281df13f4ae893df49657c7dd7e86dfbd052d2cb7297961f9739cda4089ed71e52ae7bed https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.1.tar.bz2=71ad68ef1317ce5ba51353cc226fc7b11923d9022770b355cb1180be7c2ba4bdd87b079a8dec15c09ef3ad42056018a41a603bd0a10b8124433f36b0930153d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.2.tar.bz2=440f27f682a7f9d2a99ff8c0687c1fecebd8bce494b9db48ab9d303250b8ea12dee51eed0f68d940f141d8e2699653fca7d2a6811eddc5c512a9fe39430fde3f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-1.9.3-p392.tar.bz2=3582744ce4a4ca8b497c918e129823167e80909367d65484c2a09a8e6fa185a38bfda8c1b6676742acb492472d0687fc5b6eb18965201e0f54268d835f618df4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-1.9.3-p551.tar.bz2=fc04b976fa02fc5c1cd4ccdd49948b5e289b3a5bba16ef99266b65fbb35f0c20a0ed02d5b147f2fc4469db6a7b6665d34e0373dba242ff04c95fa27642cfde1e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.0.0-p648.tar.bz2=7dd451549e9c1a43ef86be51eaa746344c424d1accbc9cfd360067c3aec20db8ffee277e1108d40c280f1b8ec0851c6e51bc448f25505508d9af153878d9b091 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.0.tar.bz2=cfe087a9daa6de2ef00a6501d568a25a3386da730304697e1bdb9fbb098617a143f073e58629876de4f09a1e8a60a48ec05864fcbccbd6733d9e1b3d309a1100 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.1.tar.bz2=b74cc64103a31b9b9545474fe202ab9f9b15569681262438056865e4dcad08419c44bb696c7dc8a18f72b3bd8e5e98201d0c3608ea652c907372c3c95cb7e16f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.2.tar.bz2=fafffbcd24eb3c55c89704e6e8ea48ad6be286bbb4e38f56c3b3d61f9bf4f6bec28882da2ff60f17f79516476ae50cc4cb8c6a8cf4a0f31b910d6153727caed2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.3.tar.bz2=4daaf8bba3a04d46e04720ff2af1469e1caa68168f5c27d1d3e0cab922055b1f9c0b26ee64c3cb46c17b6a9651ee7a11bad19e9414102455e96454f1a7929408 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.4.tar.bz2=988c13e900168b901a3a3deb4bb96e19b15205cf4c2793b56854b58924fff652946a083be6615b2053fb5285df0fd218d1f9f91562798f0386f0758973765dcd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.5.tar.bz2=c7396627e45d8df68b18c2491fa756085aeb4ec28c1cc707617cd903fcd47d4fdd3cd6ed225dccc14497afb14200b9bea5ba38f1e8dc621c4aea8b8f0f1ccc7d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.6.tar.bz2=389aa514d93d165fe299856a5348b1667f295aaeb49094bb5ff49e9c6861bac603e698c36bf81777797d05a1d3c405e37c1a00a4dbb85f262bf02c1b0e16ff04 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.7.tar.bz2=5a38bc1dd227658347114b935ad66e27fab67b8da9529a7f9083d6aac5743c40aea8c33ca95d4f10ed1d56f29bcc2c0747a3e88b87425a5786245792d8851301 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.8.tar.bz2=44e36e4918ab4c354cacdd20be30acf12f060aab808172184251186758f750ce688eef72f39ea110ab6429fbaaa5a792b1915a5c2d845b6e22a3cc4bc851c6b9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.9.tar.bz2=358f12ae2d4e177a080bbcde8b275691418884eae9a42c98161170c7b0f6029ffebf7ffad27961bfc8a50a393796934a2dd2c7f0ad2a35992c35dbd6c8c6349f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.10.tar.bz2=e7e98be6cf658eaab81486360f4d5d22f86805582feee4aa11a8e2fe6b461db69b850c7ea98840af0811910be7f534317ab5887bc48f47a9591b65fa7262feea https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.0.tar.bz2=307ee69b3051fcec2942fce075232a62f6adf6486239a89fab7bd63a9bf068e36371e67a5e42f86ed60e31b8219ff431c2d4bcf519b2c10393504942d2d90a9d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.1.tar.bz2=a0a30a805be9c43cfe52793d103e9f0dc6076d02b0c5af36d650564aa43958164a278958f7a7e1132ee5d3357cdcfaa8d59a4cc0bab027e288d935a44958b743 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.2.tar.bz2=d3218d01a18f5dbcdb65f216469a463215784170d32110f06372fda6325bc17e2c2aec1601a5bf3319ad753b123de056e6bee8aacdd7c64c4859570d40571ec6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.3.tar.bz2=4fb3bc10aa46a85cc37fb041d351b2a8f74d70c3de32fbceefebcd6e757cd8dffdfc86cd14fa6ae7d5273f875e1d4e13e6446b6dd1882c8fb015d1d34ab5ed2a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.4.tar.bz2=a008439e903b1e97eb5a66a88cf72c2e7438b12b78750411ba0ffa496c68beb8cacc2037763be1c8c8841fe9a248d4be0d0976420db0520b4b8456aed5480f3d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.5.tar.bz2=14573495aadfabb81b985aa485c0090a816f459a0db8e790a7d1bd948897cf650fef4e8aad7d2ab8232d2ebf56bf08363730dbbfbc2318625dcab04d3904b3dc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.6.tar.bz2=e915bc10ecd1129d7ed55a12fdefdd6b6fccc281cb3cc0790e5970978f17652068ccd7fdc160608cadc8556abb73a2c187d041899adfcfcb4a311285415145ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.7.tar.bz2=d80b934273b84d7ccc4e17fa07c9e0a0f95cb4a38224bd60ff73772ef7ecb3d1974e686bb10aa319642709e49789c0886f98f4fc1ccc5312a19ca19f03674e7e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.8.tar.bz2=9bf0cc35deab5f53900bc8e8264dc1b57f91a3477f241848df48109f4b5c97f3140470f523fa768a7543c61cdb7a93427866d871d09ebf8060a5cb75ac6d3790 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.9.tar.bz2=0cdefbcc88c5b9d34c08c8871c548772bd473dbaf54738f9855afddae8da5eecda607b36c546077efd0165114da385cd1f296433afe411f57a524fbff0a69291 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.10.tar.bz2=3aed1b12ca46e34fce66ac23bdd97ef815918275d91ca4723f9a6f2a2b93cb2b66f845747951593eaaf078bd0d982e06efa7641fc3e11d141b7605b086f93393 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.0.tar.bz2=ac6a699d5d08b33e7580a24c9357c0c8e8378208fc7385f5582f088a879f61e48a4654d72f03263a1dcf33fb0838b01c8c21fd39c5e2549d683466e0441381d5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.1.tar.bz2=77cb7698c66ccede33f558f6ab9ebe4be3b775a567d1d4dc12fd85d7b0f28d7bd446b18ef48ba1c879dadd76b50540b57f283e9f226e904e620afc3ba6585bae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.2.tar.bz2=9592c8e2fd9266f5d1cc780706f558e15d775cece995f5b6e933c54be7b7f2be2839b28ef1898b2072c5cdce36b830e72f967062ece4393765f8dbc88c6dff88 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.3.tar.bz2=8243575f30eb38409003b0450ddece621a589e29a4ffe219410820bc2afb97b7daec4c81d59d95dcfc83138414a2df707c925f0eb56907d565dac4bbd5a929d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.4.tar.bz2=ae16edab6e55d1b2506c4cb30d836639035a7fc153511125b578d6da8a8b40cd87650855fc6b4cf777c1fa0428c593325af88d9ad25d53acfbde0051a730eaa5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.5.tar.bz2=10f4aff595d12bdb425eb3268c868e0efb92059e6aed8683fefa5abedc1ef21d23a45e17802edd8e5e0924ba1c3277b653c0559ef4ad4c9dd2be2fee17226f8d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.6.tar.bz2=bc352df203155008da7a1099f7f7d26eb9f80e0d2e41c8adec5eb47f976529c6126bccc207563de87ccc2867d1e4c43797efbf295c9a7a4afce002ee19116074 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.7.tar.bz2=d71dc217011d154ef7b33780366bff07e4232ae77321ad6d16f19090f924ed3867c31f2af4aca4ffbc6a536b0320b676716ffb43e34b0323e81eafab13f17fa1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.8.tar.bz2=aae74010426e2a1288280f3611ba6aac842ff573f9b122fda9a4f1c514e09cb3d22281e6957b4acfcc753c94113852e083a9a80d0cae6b33682b83669c475eab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.0.tar.bz2=4a083c168d9facf3346b67dde02d9705109feef6fcd4e3c7c59c2bcb35c83597305e09ee143915fd993799a888d6d9ffffadb386bd57e9477312566dd6164deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.1.tar.bz2=58b30b00156691de2acc5d21d3255029fc3f9f2536e668298ab160d300fa0bf3eb0705aa524c9123ff09d770807cda0154bae012632b7e87120d7538f844560f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.2.tar.bz2=4c3c586765fd5afb55383d16eb9d0e7ffa5b1ff988a2b1d847e3f972a211b2401f035ff6c02d71de558cc161655438727079aafcc8ab80c97e07e16cd7fb1304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.3.tar.bz2=e66a4ca4b95496964ff4d77e36caf0894d913c1116f901c9b589da5a0e388302b64a79ad6acfe7eb1ca5917825bc0f866b482f074f1d5fed96d91e238f7ef454 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.4.tar.bz2=f95eee611be949327224b89942f4344e7d8e075b958ce3418b5874e9b23981113e4fd58254629fa9f6c2fdaf5840d44785ecf5f04433987f8fc4415df5c3e367 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.5.tar.bz2=447b28420be5b19f6b1381d232920e3c20bc894c2e0d1d2e394cc44e7859d02d177ec3ee09ce96e922f55b7fe2651918805f00fb783af3780e5f25c21f330195 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.6.tar.bz2=5f60bde5843fdc0b05bb852a2f1b30ce085dbcf7acaf105d5af951398b845c766113ff3740d44585ce3814b4953c004230eb4dc2ce8746b6236ea4b7a1d1cb10 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.7.tar.bz2=929a03725dba7de8d7eee3fe8987b858b9b9d6d377beee710af5c3e84b02501996444aa7b2c1db458aefc3e765da17cd17ac30fb0b4d77ab1e54239e72fa2a63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.8.tar.bz2=227849b5809072b3aee211125c2aad3e2e4984e9d9b4415dd8c01dbff70eb9c3758c3cf54f2b97fe282f7a42f205a2becf7b86e1e6ebb4a4d048ca32659603e1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.9.tar.bz2=c15a46ba1e89cc41523a21eec90d4e3af5b9739d27c2f2b51047f2c1db832e2773cbc04871a176f71e7124eb3f7b53262e40a1baab87262f8811a8d69d8e5358 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.10.tar.bz2=b83334e272e78995b699de28bff67accfc151cc7fb193d5c5746fcf06087643564b3a0b538cb64f50706642a620dba2cc54191357321852db42cc8c5648270df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.0.tar.bz2=82038a66827fbdaf60f404103b3956ead4e03c999893f0095109e7d853919992cab615f85cd96ba9158402b2de5a68fcbdb8b32e9d07c6f754e0591f72851b40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.1.tar.bz2=31e9f176ba61480b33b7761d2a19119a200ad61c8f85145f736eb196de50babaf278d023b274274c6a31f2173c5d022bb93e0f8d46a88223659d8ebcf6f5e278 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.2.tar.bz2=75d25fa6dc81ce8a62d02adc2e163e7c222c5946116c4880cec19460e2309457ee1a11a8eac94243ee8437514bfbba9ebee939218b6ccc7e5c1f15b673d432e7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.3.tar.bz2=84c93c85aa3733f2ac82e695c19e714ad4afd096edd6abda8a4915311d1f604453fc3fdc290c6ae1f9055d305ef400f8f8f152c5e15eb230baf7cfd5e192b7fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.4.tar.bz2=131b874ac376f42f3427dcbeb0adb0edd18ece834514ff5cc15f3b3e29b8f14697050051224d7ba2b509d428f780c653a4d7101149b8ded41ae373aab871e90a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.5.tar.bz2=f55d2ff7f2eae4d30fbc14226c928d1caff21db1f2cd559d3caeb0c07a7a3f034fa369d95f783e6f38cecb493d99aa1928def9d8574698e3edea3d33515749f4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.6.tar.bz2=06b12b2a1e85248311cf55620499806078b3b67110fb45dad9cb11cbaf1e230ce8a0da23c7de0a5abfccdeada8eb799f038b1a09980ee9572ec415e24fcf8c76 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.7.tar.bz2=49128b7845954f1f04502a484f17d5c0c6ecf8990047f5a383b2752ea9e09839e5994b210c2f60307d44ffa8b440472116fa1231ea899caf639e1b8a72f7f97c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.8.tar.bz2=24290aab4e0d48719659f8c1153d2b08020f17ae845e9ac6d6b6d3203e4a5b19061e907a214e8d4390277584ff4b46dd4a0113c6b201fa37e8a95c42fab5aea5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.9.tar.bz2=c2771d6b12f4240200926b2c40ec1bd3058c9ef213e2c6032e44799fa34b75b00f2564a0f7c0d9f972870d34c7742174310bfe3b15e2742a17ba2fa05e5a27cd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.0.tar.bz2=1be48c38da41f462c23d516f465ed34e2fe90c6fd53ee06f1efc9107077d9937413bee589d5d3384aee5c09da7087fa84864a50089bd1cf3c385ba3399e9b0a2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.1.tar.bz2=b7e1204e0e501312828ca0e30b77434b2d8d94581627196f0195ba93fb10a11046d44942393bd8a261585c564bc721313152a9087aa56b57b433ed14cc7922be https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.2.tar.bz2=e91a187a9e726ed26ddfaf09cc49473c8379545e2265934fcd1a1fa78ba99f9a119fe2c3c8247eab583389c3af7ec40a0e71da19f6ecc17ffc086759cebaaa15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.3.tar.bz2=77d9be5bbcd115131ec7c842a4449729d1515bf2106a6a235472dc96b58a56873c2d0fe6a3b824dd15ad00194b30e72a75813d8b4e10ee11cc793973130e2401 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.4.tar.bz2=a2e5409a1a88557bef747ca9b1ea65ac90e430500a8f9370023b4314cb5d1e0679a1b03761980ab2e933ac3521188e2151e521408e33cb4dde5f0bf802d81a41 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.5.tar.bz2=ed6288a4d81a740d722b43925db8f22f794cc704bf834a1f9c844e2072baceb8938547abb8f4fb1a50f92c34a8616904fc2679a44bf4adec4e78ce00e8456b45 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.6.tar.bz2=08cda5ff00b9297b46d1fb620301066b21240951924337b8b87d27526e55024e61121e51d9b35feea2ac5eed4027658b39ff487195140e7abe9158181c3349af https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.7.tar.bz2=3cc5695814c4ca49b6a0d7790093e85f5a359c5411618a12e60f4bda75c3635b94736762983e287cd04ce3ee3155d824bd9bb202aa929f85387a741d1685dd06 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.8.tar.bz2=91e371298a6dc1083c8b6265cc8d3d388d17a21d59e0103bba7e68640f80bdd12b98547584b1cd0feb7f8dad6ad530ef5660a154075960e1a76061d534609296 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.9.tar.bz2=7e3d0f7f42d644cf4eecfd88801afe088260d5fc8f490895378d5e4ede76b2bd67959b9803db59f7b19287801df43eba920885aa1bcd29f60d225745d67093c0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.10.tar.bz2=64683129da9a476d268ffde06bd7aa1c67b3c7c97b539d856833ffb127f458a55176d8b4a101e60b18ee923485097f3bd98e8216c3092c3d0527f6111cf7a051 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.0.tar.bz2=cada908be34428bc2f302bad6ebd778a2c7a8e979476e00e45c9444b65d7f48f397b838549d56ceb91f0e5593ffd663e9facc4ea5f5c6a4aecda85a5a1136496 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.1.tar.bz2=06cb5f2f0c0941802119dbdf34995446d6d69ee59eed9a5e9d7f9e7f0e14de440a9e77eee330357fa305e81ee39a6868651c740ebc91bb9a2085a74b33685f4c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.2.tar.bz2=23654c65e6e62354857f86098852af0ba50a15643df5e7f6fc8b710e35a3872f6eb7dc1bf9266375361f696d8ded0bcdb9ee9acdc8d0c975955d299292da7e21 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.3.tar.bz2=ac02a93a62c55a2a10dc260cd52749bd8f4bcf1a2d43dad3cfd2e5c0bf7800c51a5b00779526d84f759f6d50ce673c7f3e526392c4ab68322649f4fe980f2ac3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.4.tar.bz2=88651ffa2f1623ca3b93b60a591e828ea0dcfc73daf1eead2629531beef291331f8ed1a4a33d682828ca60bacfdd7fea77bcd67f1a0bdbfa9d1e4f173da53208 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.5.tar.bz2=001486271268cd1d2252f46b32001b25d493bbbc8ce981ecb608eaf8d2c2e6d6361f6d9bf052b9b2d7694e228bc302a1082689f2038564439705fbecc00de1ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.6.tar.bz2=a48c974f341cd10143eacf46a9d0eef45cfca3ed91ebc9f7fcbba73d408408eebc60c55e15dab391bc4a9ada6777e2be3ec4b9e849927c5782f4443a813a6ea9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.7.tar.bz2=b9e99d1df4a772441edf7fa4e05dd5aaa62efcc5a8c89fee68aa80c4bf1d17ad0e5ecae5682a10d2eb0ff78ee79c583f0cec46f5ac11ae874126082b9f8d76e4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.0-preview1.tar.bz2=8fe71fdb37955b031769359dadc5062b6c15e0618fd8961c932212a6a2610829aba8b1dbdcf4bdcc2e133665e043b29088f714874e3ef3a41d688b7beba78928 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.0.tar.bz2=c51f55af33e09ed425715dae0dd59dfa253e909bbd44b4bf3dc34452656438c23a754f6b2ccf0a3e878463519043361dc7ad8a757c87a3ae0e747599547dc7cc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.1.tar.bz2=fd09a4d721388c2b9f2fd09b68175dbd620e11df02ff7cea4e438d3205494a9883c25def06d6c1ae4207e7f82bc48fdd122fe12630bb9af9da451ce6be19d86a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.2.tar.bz2=2ade19f26f6e2eaf65a8ac3e9ca21cc8fe04252df58f9b14c6d0f92aba3c0eff27b1c68b1b05041496c367051e020dca7b0c64bf44fb07b4fbdee9e68b78fdf7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.3.tar.bz2=11d81f71ec3d293916bd6a00d28dfbcc93e721d12c6137fd58febb79e7399f8fd1ab5a66915863311db9539009dac06612a4b2daf0408fc1f1e84db8f8f4fdb8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.4.tar.bz2=bff3db8c69e85d503bb0686644f2d60b97c599e0cacbdb7cd4b18d630c50d04ed0dd90ea97be01c3b3220589abefc1e4dbef39246860e3c70993f0f2de738053 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.5.tar.bz2=32f69f0e33f7f7d41f4c0e5c5a1cd859a4c6032b0978c317ec3d333da42047b7f8f8dee9c4d72afe890b47b9f17901139142cfbbf228018d8ab5d02f7a01f0a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.0.tar.bz2=f7fb515855de32badd6e5ebbb03980312144b69dd8b696fb56320981e4f0964065cd13853a34dd321fca1ab160510dee8fc3b6c99f2a5e007e6974d70a564db5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.1.tar.bz2=de183d962dd4a8c95bea54f8740cc34931c2d856783fe7506f0252c5c71bb7125db00c9c7eaf8e80f8fa1c97208ba4b2a4d6c1a76e38d2b6251a92166749fb37 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.2.tar.bz2=7589f0292f72a2217e5024b51791f9a719ff0862bf39480f1460b5106f1c11172c72ccc1fe2a00b166d80610d76fcbefe64b7c9df0ed3a72c58964c2402982c0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.3.tar.bz2=d79cbc4812ebe9b308a145e96f6e7f64c2692b04370ecba0bcbaae5427afcc7e57ee83b4537914b6b90494fd45a11bbf2b27999a7a74c7fd569687a93c43961f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.2.0.tar.bz2=2d11ad1c89c1ce9873dcdc87c41cf38105b00e265277a173d721fce4bd350af73caf01fa4a5797e926f1a0cb180f1c6e969149d1d524c4df797939cdbbe9657f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.2.1.tar.bz2=cbfe8a92e732675ca1f7d51c04775dfdedec1b9f21b3b7f0760ef61b7c375cc4b0758a17302242087b55faac7c3f1217fab0f6a2e713a05dac082cd6a5d5df3c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.0.tar.bz2=172189c66b3c721e7413f0088f50e4eb8dd80d87779c3a4e74231f7036eeaacb8e373b7f5ff017f8aa274c1e1c872066f2f93485a2a369a7e9b442d157840bf2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.1.tar.bz2=829fcc1a3d878ee28e89a58a2f6d4221cec115d241a007b048953672d57548002c3a105ea4e65e344137091baaf5d5c54232a54c116afe03d0f3d61c07547c2c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.2.tar.bz2=ec2e7bd32e2d574773486e1c1d733611465765cf14895fa6b017b6ed6301ef40cd062496a3926788851e7ff3bdd62b488d03385aeacc66bed53aed18a6dec225 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.3.tar.bz2=79f822725d4e3bb7daf416e736d87f3b01c21d011423a2b3c65d9019a47ad4df256fd4a1f171961267ab8f20387019fec8f3f4ebfb6664f682bdf36914f6a329 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.4.tar.bz2=aba571bed773554b18863e6b942f2bca743729834657689a016938a34b7e4352e68d9fffc440b2fd4fcdd1bed4d1ba5dde689da535088d7ff8ae7dc364ac3b2a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.5.tar.bz2=0e46655028859f5abb64d71a5585db638d00edb9d20a487739d307bc1dfa2fca4ad196e04044dceab0e279286379e73110590c772a06786214c4eb23557324f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.6.tar.bz2=177e9f0a193f9dc45f8653306cf6a87bffba16780220fedbd8be67a3608a8f8d370011f3993590d58805a8ea4833d95196385fede4b513d908fd4263a82f113b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.7.tar.bz2=88bfad0d6258372d4e9739613a07352e954db3deb43c0e2d2a176f9cf55bc5e2df73e4cb04bda75e2dbb210799649f020a7284cd2acb5fb92d2b115a933a4f03 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.8.tar.bz2=3710f83ed7f3f30c9b5d3dd515c168534d01811cd33f20d3a54e654dfb5140afc8198f46dd823ac45072a83d844ad866af1e2b8265f54f9997356be88fa254a6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.9.tar.bz2=078ce0d7433e63d947fe4cb0cd5a14e6f5fca00b7309d7288359ed90989dbf618bd8c1f5f31b607f3ad6b0cf540d715dec2c38cfbf71cd170e572321598bde7e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.10.tar.bz2=f97f877f7afa604dfa7e8f1b399a4c034e79b616c95bd4e48927d88d1e8adf8e203901fa178f93c6af4511d26a38e2d8cced7225c2e75457bb02dc27b8feedad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.0.tar.bz2=ad619ccf77132166151e4982996e93135fb91d97701ef9aea12b6bd05e18e585dc4d5fc34883b3369ebba15474741db238fb90192eb273dd5428864429525d9b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.1.tar.bz2=9094c9bbda4c3d830382e89e4e1c24fe43cebd9d733b6878a43a34d679092bdb6c7b23cb3cc08d4efc6e15449c68862799713006703f95e2862bad1c0b0bb94a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.2.tar.bz2=54c8fc2f2a99f834292b83ef8e68e2b120f20fc4ff74856c13137065b95262f62188ed5c6ffea8fc4b0c1034d9f8a1b497878d6a581391d422994911f5fcb35d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.3.tar.bz2=b26daf1825cbc9cbe51e1abea84f3aae542beec7c26628201325026b4d4bdeeb46f8053a1c105973242ef532e66bd4eda5199dc1aa4faba1a6393f9cc126d856 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.4.tar.bz2=e5718fb13f2fe7f6b34fbc2b1a6db95576fcf9cbed481fea59fd4dd28d064104a912a1000533810221141ec09e9fd8d1e59850ae5a26ae441bb6d8878f42c418 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.5.tar.bz2=71ae2c5bac04a97694310daf76e896a1a02c245274e9c96ca96740f78a0e245302564bce757f1688d3e83b7c0c88989f702814c434101f8df786c1276a4f5a2d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.6.tar.bz2=1693ebd7cd3a452f51ce2ef32144aa36f6fa8121ec68cd0fff715db8981214ea9fc729099e4495e1e8bc346409551d4b93c6c3803fe187fc0c25360b80caab72 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.7.tar.bz2=53b05c51b970a239fab953dcf3bb433f59465fa0b4dfe58066132a1bf6247cbe4adcafe41b219ba453ea392f88a521349df14d58a91a855c53c9b9ba4cc16c4c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.8.tar.bz2=b9b0d99e590a48ceedbd1d6318c29b8fecc12b02ce5a6f1555593eb1b3e284c766f2f8800ee3070fb7a041593e4a3806d53590be760381268ef0f9588e127b08 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.0.tar.bz2=90491968190f4809fefb4068fcc37fb7e2ef179454f57c90bf2af308541f1ec175a72ded53202c1e86dbb63cb6b47678656f753574bf6ba525e982f3278a7602 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.1.tar.bz2=7f9ce1b6872352a6feb539948d26dbdfefb3d4225ba582ef8730be8fd85d5c350bd6f21346d43cfe26a8501c4ad145d733d94da5dbf25b15e7610ca037ad4227 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.2.tar.bz2=8544797f46d54cc4098227809561023bb7bd01eb2330724a94921c5a79ac64b44bd56069d7a77a3e6d2d3dbc504ec25157daf7fdf921c3acb3b4289ce1bbfb5c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.3.tar.bz2=fe086aad84ac7fe8009ea2bc16f0ccb7c60a5fc9034690af38fce1a05582a6226dc3d7b80d08d1952d03a9abcebd7b361f5fa2d506d71e1f5aae9b5f31ac22af https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.4.tar.bz2=ce06ce97ea1554972b00781332f126e767a3ab98f5023d3dc83195bb36b954b1b497961c74bf31340827d9a5de2e0bb34240accbadad550b2e692d26cb097d4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.5.tar.bz2=6fa248065a48cebd1e9950ae07f3e653b3e29e369fdd914908be0b215257fa2766b0182e392fb869af51cd498e258435f6d9b45a03452356dc08da0e96877ae4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.6.tar.bz2=ce912342033f395ba6298051b081c89832f656d61ecf2064e9568692552a938599c816d2cd1fd1f9bee721611f890b8329985c69f4d5b2bdbfa6635b48afe3b1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.0.tar.bz2=cbfc7a1cddff0385187a7bf2eb9dc71a8d14912cbbe4e9529b79414e49e681302ac9009b7c8e6fcf92a9f19a0ca5053a6ed25edfdb510e3e4e247474d471c58c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.1.tar.bz2=29b99b3e04325ceca89b64c7846aeadb412215270f6f7c390fb1e275ebe19b2faef811778c0615b2d4720ddd942a2cc209c72e623f559e6c04e78849cc1c1b1e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.2.tar.bz2=f67ab3ac13ae90622fb3664a869b0c584b97df0500384a28bda9c5c36cf2a27ac1f66afafea08bb29bbfbfc1e0ddc444427993ff4163987f5510c4158a90a96d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-3.0.0-preview1.tar.bz2=aaeeafee545dd1ba1c4df5b7e46e82f7e89e0dcf4fb10677b7e177e66f86e6825e85fa5ae3e74062363883768b3485495a3378f97693d45f675a6e547e989cba https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.0.tar.bz2=3e78b2a73167c3680aebb1ed015c583d4f6c58804d3b272253bee2cef37fd2d1cb3852fd2b408f4af1abca17725d923a1f28d40d2a33896e5cc21c4c6711d7ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.1.tar.bz2=14e7962e180b9ae16607347ba5360b9ec086eb8055b88d2f60b1c9284fafd93fea905aceb441f07d594a34b53647520f9dec38e4e9f6ad3e5a6850750d981a27 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.2.tar.bz2=5b7d88d4405cd45a6a720295cb0b7d3152dd757aac996c8d1a576c6ab2a45cf9ed0b0ac006423791cb038a14153048e96308ecc8ba1e761d4b7671dd6f880d15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.3.tar.bz2=320734a124e26de068457237b5f973278286d7e529e92405c1b856b6e57441b5e76c59d0f519fe43fbdd2c8c48c9dd37dc5094831c0e6a81d804e88888ab6237 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.4.tar.bz2=ca34ccbfc24adc4b2c6c5c0e3b27bd2754c2c5be61e9dfa7b919b4902174e351f45128d887c179c37ccd5163a7f51c213fae96be4d0c356e2d7f96acdd4f164b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.5.tar.bz2=fabb151c29ad7ef7432efd4d51ea1e20180006601617ba896f8b1379555f4088d398e96f7bddd7c9815b266acf5ea94527ef4acfad2446950da6fabc3770f788 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.6.tar.bz2=2728c38987d41169b7110fce2b507b5d3e971d5b043b60c9a3b8d6d385ec2a40d24e464f6cf081844282d6b9fadd4abce670e79f02e4606bdd5aeacd1b57f773 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.7.tar.bz2=f98f4dacd9d8c6c9515ddc2597da8b868c66897577cc5a76819db742f3649881ef5a7f85a880f1e359772b1ab08750dda6fa74ee826938e06b93a9848699b929 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.8.tar.bz2=47fb4b41e60b1e536b3a54e18e9ee92aefee7eef92d49716b46884b2a3d73a02e88e4815df64baedebff80e9e17ac7b0af6e65b406a2c53a4f90421dbc948415 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.9.tar.bz2=c81ad5e16aa18beb7c34eeee68ffa96da243f99ff69cf00932ad5ebe427c1f80e3f7fee31b15ec0d96c1be5c2007dfa6e96c38114f61e958c6b7ecc40270db4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.10.tar.bz2=856210b3eb2bf338c5da2668e830b95d48feb82c1c4407371b18c772df12878703a9eec948a2778acd098bcc8eb402ba6d57b2b935766847f3e652c3dadaf6f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.0.tar.bz2=6ea5e6338319e5d6861d420b10f93b5e6634a9925380c61acfbb258b6609ada76bf2a6b474b53a30b0a81f0dd81cfdd1e610b68698df73f69091f479ad39bc63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.1.tar.bz2=8e8e4ef137b9394ee34b760dbeaf4d23953bec083e5775a423ef6c16b75faf8bdfe99df975ab6b6d762509536b017f3510a9a5e9ab63060208edd4d2d96371eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.2.tar.bz2=756c9ecbe3c9801a0a364143478903318c524f7aba026239a1fb42d7390f74110805543a9ac2a9f8bbbeaee48bc867fd15d400d8bd46576bf4fd417d6136a3b2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.3.tar.bz2=594ff95e33d0f7af7be448a781ac68f895f8344ebb1c9a03898813baa5963024aa84b11baa405fa584070e4195fbfda9b908f1fe171f75f19e5e1d7879bdaaf9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.4.tar.bz2=a9703c6edcfa2ddb87bb73c070d963fc4d59599919865be9b1d93989906698c6f3b9c4fd7f2d597e5d710276555de0b5865676b92aa3aba1f1f41be4052bedc1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.5.tar.bz2=dbd91cccc0a00a1ca7e901d56f9840e62e4f139ff4dbae530169f41897d06523c7e8977138ffc6212e1b60589f3091a4e2f6b6714c0fad22fa65e442b248f61e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.6.tar.bz2=ec967415b5bec95154cd9ff8338a602a6d005fa647afb1e1cff54a0fd4e9c0697b9e952c2dfd8e4b30068a697f5391b9cd165d5d33f3b146fe35f2a8fdf9823c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.7.tar.bz2=b8786ef31db7d950b1309646f81e6a99d56b76223bb8d2d20ae045f09917332a869b14cee1bf235675c7d8eebc6942b5ebd6cf0cbd290ea75d9f9be1475352f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.8.tar.bz2=4d949a715a04cd45f6817b1b26093f7bbf03ca630aaa015972e7d0ca72bae094add18664e1489ebf8ade27c160d2fbcebdb105701d719461af13c4d5fcf2cd22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.9.tar.bz2=ec6cd8bd90ee99aa6470d9d524d89531f96f992efab8a9d6a709a3959ef4c314828276e67b84ed97d415cb3e0c837458d13732dc940c93d4d069d9b881d7f92c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.10.tar.bz2=1f60cae30581e3467c7ec07391de5045f238b61a49661ef0cf76d72ef78d220b7ae70b86b1e72625cf37085b6507fb1dfccfbe5554195f0c6eefaa996e199c16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.0.tar.bz2=343f5dd6703b6b58d61fabefc8a50ce5d02d98c32c8b4e52b8deacc9824369a9f0dc8faff69e90ca7585a194a4d742791765b16c3f5e2417b0f54e0e6f6220b4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.1.tar.bz2=aaf7f9e30b3998b8586764f61d09e434c32aba7479aa79fb6afa71ab11c067384ef3a4b9215a1a3639da807f4f642b9efc62b37b55e989b7ed7d75cedc7cab40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.2.tar.bz2=b834ef95d52abc1f0c224193391bded9b4d2089c694378dd5aa45f8b2b1ea41b1c300445f766841cbb8cdb1114491ffe0095f518e1600746f5f583dd0cff9c1f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.3.tar.bz2=9df5ba9423e0a8af9d825e59f8c69889c70af0f6d67f96708a02d7d61260c83474e2f7b2f240af399911bdfc56850255b4f34554f7013d0417a13bb782403aa4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.4.tar.bz2=1d4b55a6a34249e82880fbacfc1d97a093600005deb982c6b42ccb14bbd7bf1db14e0f6d73bc25f1addd72378850f7edcd63738f2b3cbab569e34e89d563188d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.5.tar.bz2=29a76dbb28d5b63ee0ce64cc2e7d022118350a550d3693b8e38d559bbc4f42fdb6b63af4bcc4ebfffc5c0fbabbf2e18db7228e655de3bb416e344a61737870c7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.6.tar.bz2=122322fb462f8fdcb065e6f9d9968027c320ba9be9ad6fba9011760a7296cec1892a0780d7436903cb7763f5d18cce11860c5c7fce82890eaa139a94d5e89428 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.7.tar.bz2=0c17f52a74b73041c588ed76f73862d179d7b9abf9de61279dc74ba7b7f170179e0db5672a403dcc209b6dec9a865a88a382f5df01f5e6ba4cfe0f66232b4a15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.8.tar.bz2=1a30bbda34fee311762a2f05ac7fbcfb4f373f8840f86b9762b0c07f1cd397e3eb3be83210221384333b625a243c7161ef4f368602a613760391265309e4f304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.0.tar.bz2=edf31b2dd02208c96be25c2f4f7d35e2b122e5d327133545e16038836b848b90f81079be4df47c5493bf4ead1d464fa72a8d0d405bb2509ab0db6335c58ff793 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.1.tar.bz2=91cc7a9cf493c7361f3d507cdbb8e258b7dd710100cca8053b77569c07c04fbc2f72fdceb9fd9a3a5d01f4c423a206da97730c356d017157bc2454041e1f1fd4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.2.tar.bz2=8ea603a27560ddde5fc639b86381a303f886ce80384d8edd0e7bc806f10649760d75a76dd5f2ee445371254e727544ec12df49d7fc8876890b73237f4eecea1c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.3.tar.bz2=c42f24668695be5c291836ae6f39b4366e0357c9bb63cf8be2ad36cefe0c6d19cb921a43159d49d4d062dccc15902ec1698a1a6842d13ccaec45c6cb628da4b7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.4.tar.bz2=3ac89131407faefde80bf2e1bed4baa51c371ab4bffc18c8dcf2624f4d1068c9f933eb66486a2bc7c6c67f674c5bd06747bddfe1f1f9dcd939458a08e1bc6108 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.5.tar.bz2=8ca9a9387b8cb434828fa36e5886bc8a28d70fa46d3e20df60389880477fa2ee54fe63c0c14611a2cb0168ef1149d205640c6003e6a507400ad5fc34fa641bd2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.6.tar.bz2=52795cd7d112ff437adf603f58130ce539209628d2224a685d060d67a07325717981fc6f91736d4abfe014ccc8057bb40a097fcf85f5046aabde0019d08bef16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.7.tar.bz2=bc179a31c746ac6e632ce08f57a8f403d4e463ad72285c0ce008d7fa39b88a22be3a43014c9eb019f6a39d022f9448ef151a8d03e89a4d2e767c4f77684e3750 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.8.tar.bz2=d693e3a800c2200c74b24c207425f41cef206a0b3f20625d18b1590e9891f409d6643ee0e7ab8fdb6e1e85de6fea52c6a307bf8f65324ee0f9ac33306ed1e876 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.9.tar.bz2=4b6cab99f6b7be7705efa5eb6f321b5eeb1d1c6e96d4113bf96b57378aaa4950b39f40ad555f630f17d216d235972f028617ea43c28b1970772ffd16be3d9a67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.10.tar.bz2=40bd90d231fcedbe34ec9963eb59645fdd1036b03056b9b8fa3b56900deb86d94e2a256f90e6aed297288d6797857a3ef9fc27bc6ed05c017b5c8e8ddc465df1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.0.tar.bz2=c1df39ae526da7ebf87510017d7694e6f78c59871baac4e9c5f2d13c22cbecc30925e2783ad93f741110b7c3802e9f25a6c3ff85160b33a4080b0f1fb02f7740 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.1.tar.bz2=930f6f7f654fa14076c84365fbc771d5b09679588c4c478d8f6944770c53fdd37213bdad159fd231efbc079b85ab7ab648b0a97fafd666c38d0e280046c6e2ef https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.2.tar.bz2=cb62ca82d57dfc0e21e532d4b523f49c559c4ed5f3d73adbd9d650bbf23c694d382f3cc25eed6a8630f23e4780db127b4b8b6ecf6fc24b0f6febc820dbc6af3e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.3.tar.bz2=708209a89a18cd99c02392307d2bc63e46bd38c72c8ab0e982b28285f8e006d4ed77e04da3900c880eff01c3350033cd00ffc3be1d3a12c4ee5b263282f0dd05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.4.tar.bz2=c94f5b3129ff41da1b07da1cf742592e9822febf6bcfd0e9eb7145c00b732fc66625056bddc72fe9b631742c70d0e731cc6a9a16a089c7b559ae963b072578eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.5.tar.bz2=b4d20f79eebc5496768fc6adb0735c6a23cffbb39ceaf9c2da42851ff7842dd2318c07877d89564176d206e22b8824d2a3c637b5ef02c5caed0b2b5276581032 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.6.tar.bz2=a09ab93c3d6936d30065236ff2abbd0295988a9359f5a76425cecab47af0ca5b6829530d1708e9ddc9e78d1fbb7c0359b9c7e90227870537d099ccc89c73844b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.7.tar.bz2=f6086c879f8737eaf6eef4461d23270e9e43811186a22f35ed69a8303eb933136e7a690bce2d9e18bcff730725292075e09db0f2384d0e26018b7f2a0df70b32 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.8.tar.bz2=62c631026560ee310a849483f1b48690075477942ce86e0564e92f5ca7834553c435a35a1d6d8dd957c3a7be24c63c32104518995eb3a96e61066a04887bb0d6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.9.tar.bz2=0f10741772d2498167c1eb2aa263292f99748518a4ec03dc19440eb5befa075fa69e68b08a09af6eb2e02e462ff20ab10e4121cfeea7bdc938c04762d81fbc4a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.0.tar.bz2=908132a47bd996f8c76bed54078e71abb154294f97dcba779b4cf0d3b82e31c4635dff89e97d5f6b4f1d797d854c6d020afdf9dc77b10c0e522755fa194a17c3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.1.tar.bz2=39c867ac0af48410c0bc6b01f1ecac00616a59cc07f3f5a3e7cfe8f786b70c7cacab65550dfee777d11b8b7a3ac173bb22c602df370eef6a04b40f8e539025ae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.2.tar.bz2=2f04566f6d778121281bc6ba23ec57ad408049e649b351585bc9a3184848c71873910e159f7fd3909c7372378152f5ed264070aefd45933b97980e80f6df4deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.3.tar.bz2=940375b11c525e3f0bf00e19013eeb886bf85b8d8b66d86d53740170b0ae16b14faa491dbcbec29238f875f84204cb0d52ade17c180d71e129cef5254f338f0c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.4.tar.bz2=1c9d41d7ab7bd69d7e3baa3c4149b1938cc147beb2a63923dadf2fd959732c8cc824e2add0946bcd62f44b0e1d509b80b4796a5929841cda8d28f3a8207b17df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar.bz2=f47443a53e3008cb7b7b7afcbbf1adf44887769e42b3defafceacc1e50e349c9000b98010f853c6b7cafdb54b85b640732a56a8e11ad8e58fedb5fa4724f68d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=fc1c9a08c48ad91edb4afcac5244f386d63940fa906dadaabe02a1eb025375443c8174a6ad1acd50f4583d6c57a88feae86e697ec15c8a25bb49f280b1357783 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=aa611f7c350374d2c5c8652a694022e038cb5a65fde795c43e927067f155d0ccb368b281b1575e679b84cd7ba6042216dc28149e138256faf62dd3060ec0a6a7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=ab04071b90ddb81b68f064fbc9f2bf726729220e4359113556d9b71f3549483f122b796b3b1e4dc8404e6f44a4bdd02e9db2c8066974acf190448c4d5a97dc6b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c769fd3814bf31728b83f2bcdaf0928e6423150609f3db903631f9db68ce0a0f9c87bfce5f93983cd962662148a66cc55f5f42bffc1a1b5a237e6938726629ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=c231f8ecd46760db49796519645bcb5cc9fa1c0582abbc419a2ca81805c81fe8912dc32dcc2c5192ca9ef0d502da8f61ce1ce7ecc87b29edad3a144a8a0c200e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=b41557c83084c8e5bb263aa944499932ce7d84457e4e307f1cffecf62aa44f8543a06299e38fee17ba64f8952048612f9289e24c35acfe2ba02b913c15dc1405 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=001d10af5833a03b42d9a254bde844731d3a796d98ce2efea90fc68e4638c7cc3be31a34fa163d4c5ac18c60e685e5cf2ccf88fac46ae6bc587a48ea35cfb09b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=0a8681afc19372ccd9409bb017967f86c2e6642e083ca47ec904cccc34242040f710392d916a69a327ae6a0bb287d97bc05bbe116a1d93478ae282b32e5fcfab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=e505ff2f00334870d07f4ec9348648b7f3b91dbbad1fddb2f60f7a38572a66a7bf081fc7b386f800d86113aac1ce3cb739c86cf0d6da2bab916a4432ad557c54 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=aee6000ac886cdd4e4044a7b43ab20d54d1e99f6b893af69d0d7e7a202f4ae861f939898580c60996b0bb7c6481eecad69a20acc83c75cc594dfbfde3a22c476 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=86f4e6948eaf2586e018570f09232b94f907766590eb75f00992531ef74676070ac5a2308e121ecc1c23388ece4dbe1ee8a4b2a7ab99ca00a28d6583d6df3d0a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=1bf867b0af84eae4e7996047727fbc7ef459afd3b2ca5885f658a74d62910d00eecddbf0c11b23265c625c26b420421ca5add40079438edca8eacd8b5c0149a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=92a3b217079f9d960cc4fbb5908f7fc7ef71cc3ec8e5e404341e2b8875534c0542167d03b61577776e0b0f049f9ba2e3235842be381b4d484845768adaa6e3f7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=608f0f9eafd72226fd1b39f6c92d0f1c6d3aa7ede096cc390fc4f8bee4326b0937767bc6de84fff536dea48cbf9bdb8ef5598670235e013ccd630b06c5b8fb05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=40cccacc66cc4b7891b01c35375ca913efe008157ae540308b649e14f5753f34f1827861c6e16b500c49ac95e1aa22e1c01444faca5dce71f981452a9e0f1b67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=5a33d600e55f7b8755725d7e2f2102cd76720d524d7b378d85fc21ea8d853166dd97e2e615ab18f9e44122e3404b439dd123f8e23d6ade5328982fe72db2af0b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=37e3a4011b3603807c6e0fd48818b256caf272b3720ee654f38c0ae202cffa21600f9cc751b5335b57905ce67db185b37f548ac9c84d6acfc567f0ef4866635f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=6648c1b6bd962e30e89eacdb6130b1788ccdf6ed05ea13eac32eefc222438a298de8121937262851cf5c4cdcc1a804d5d8bf19667819db6599bfcf79e57b0e17 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=ac690170a6801fd741efb88e67961c0c3d717029b3bd9c6e243074799641c940416fc9cde7b4ba2c56e79551d6cb7fe5f7977649404da0d20d1819d7d3ce0bd3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=e6edfed2dd9d6649c47b1dc1b102f933f76a148e6dd8441add2316073dd255cac851e972366e4821fcd665e55b375fac757d189b7552baaa0b49e82349c71b77 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=69c4895076690037199f2a9b98e622f6b5e3c23ea02de79bcade6193da2b1b88ed0c28006059f4ecc502298442275e7e7324232de04a2f0ce430665057410a05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=175777563303c6d6a04393938ffa7e36e0bc6db33f7d2cf1d42ec852b41ea26dd7d50569eee4cb00497e6bceae95592365ea6718a35451e5c929d8a085aa9649 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=b668f0cd853615fec38253b264115ef0fedd21a7879a663ba844f4c3fa8b87e5ccd8adffbaa12ffa3aa16b108a2a439cecf827e7d8e19ec8041d46e758abc391 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=2039b1fcf55cca35ed3c8446eea45819368016ec1a05a5fd4c6a761b54f5cd56cb3301d5d2674af1ff75bda41eba41b7156e71ac48b88ca7a6474f0e944efd89 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=b4bb324a53c316da488c5f60803933eade9ad5c59a6d58e76787d2dd89dc2d2f18016d2ac4ab0853a40976b4beab70864a9c2d23de194bcd63ad089b2159fa7a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=3a9b5868d707d6a4580a44ab7504cb46a2713f78918142b185f0d62c5b7e0dfebc1ff551b2a52e9726befb70abbde867d2802345a01fd3e4568b9f58ac83c168 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=39007e736b28ca599ea244bf4e54b52e86597c950c0ebd8f1696a02c8eef575a734d089b52c7013d00c02aeb261dd7e2facb45f24b34c75c4bbf14cb8bdc3ae2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=0fc4e39f7382c29fa2119119a78040c611fc8298bd4765025599d3018775cb2bb28f51d38efd4306e9f04eeea20e7c2365f2fbba1233e0494a8258c3c184278a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=5dfbcefa70f5b81887d34e776713bb9c6f7bcecbda8f1c9561daa3e235c725417ab0a930f594303723f226d36306e6a73f228abfa3533280659ab387708182da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=00936db899bca33dfa8d0e6ffd4bd6b0453ad5823a450e50e3a055ea696dcf94b317357732e26208a6f34224c33a8b4a6130e5613262d62381179a52cc8f3a1d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=15b816d190fd58382a2f6f6e087f358b54003f186462abf59dbef545af9044a2b9c65576119185adc6bfd9ebcdb49f03a2a268eed4fb0f0d37aa35fa18adc1fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=3a481c35668be459688a66e4e480e11b4e58c13aecc3751da9de8a3e3282bb4a152128528a804742aa0b4380eb537b666a2b29fd79be0d6968c4ff1fa428eb7b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=c604871b39f396c539c52dd4849d1d42f37530003601f60162860efc777c85e7e1a1ee88a77cfc9ca8ca20f0448a5dde4f39cbdae67470d8d2d283d6fbbf0239 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=12042b5c30179da275fcb6155142ff2787e86cf577caef44b7c4d8175ac671cd461814e9a19f4c9b1e78bbdf041fdd06bd463aa972e194caa91e80778a56bce0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=2bf1c13616b2e255b8c269bcb2f979a45009c079ffdcb10a13e238e5d13b0978e8a974bdc1e7bf8519e15264ed5f577cc8f85a5861b3ea3a4589eb78138a3f2f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=2e7876c8c8a1f4e3cd1913023c564d9e74972ce427e85765bbe9ddf237285d7b96017c1ed17868eb912509881e05aaf96e4a6b353a69989e61c733b346511715 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=06de4f6f2761bc58d94659f826c7c86be50192b7dfdb5c8b6710b384a50299ad161309e2a8c333fa5249d0e7112f74dd0c0b0faa2950a6e74bdba68833f68702 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=597374487d196abdfb389c79d7d09b81026fe3e8043f8811497646eaf47bfa432cfb96e2af9be1a35ad2d05f2f5c800afa3f9e5adb0ea2b2d31812d219232a00 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=ba56050ce3fdbb9117c6c9e767f818ce3d467030713b7693ebb039f6888bd5d7e5f7b1986ed117414037e56e550707c3625a88bfd5d00d7319d0c7ad642fc811 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=395facf2f7a15eecc94e554a60d87c269ba70c5063b24b7bc504f579c0d12a7d858eb0b98c502016ff8bf02aaf11ef765e2291b542759fc96affa186206ffe4f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=d1d527b2e95e3a16f521214c5352bcb379b946e8be1a943da872aff0ab4b8edd93a507d693abd7a8ef1cd5ea1ee6e6bf1f838683f5a447a6cb7992de61f744ad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=e47a50392c4f3ee13a565103e0c5f9474ba0a8f5ff60fc9fe7d290b7f5f9a9ddec962fcbb103a8d3b9c7765a28ba59237975f90aa3637a06a128802ede28b3da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=77fdbe62d1694732a7307c29b4f45d0dcab7e8a729f04f45b216345336c5820715bf3f8f7cab52175c4ca1a431d867c7feef7d802dec61c2cffa4abfa8746e90 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=24da0cfc93ac536c505dfaf2dbddc7b312a3cc5c72a9f47e28b3bba760a53b584422b73da8546ca01cc44d3906a31eed7f27a3dfc0bb574f01f9c08f7c589d20 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=aee8267c4855e95a55b7ab858ca6359d635049743b8e38d34ad1430522a0cd746cd572e77884f7e10af14a731ccd8ebb9cad6ea035b0fca4ae534913a38f43f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=ba3e66bd3dde28e7193b90c44194cf7732d294e592321c482deb3b31ddd9655630f5b04aa89a43eb9d1bc222da10884e9da332bc9da78e9e1b655300db52a444 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1df8a2ad9256985b4ffb3da5b545af4160ccebdd8265711d1b642cd2285a004a42cc2ea51ce3ee78854e599f5196c66448b8e0b043846ef6e6bf992828aefb6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=cc460b3d17d460abec27d77f734e1c1e7a649769c3374f02d32a4ad00f989ff3150dab926a203b209c92475100667dd524774fc37633d71f98737ea2d8868968 jruby-bin-1.7.0.tar.gz=1e466a3f8d52b553c9def09827fda4b8433576b0262c40ee505602754521a00defd821d5ead5052be52baf281c6cb080fd03a8b15c628a0ee67b4e417633e5e2 jruby-bin-1.7.1.tar.gz=ef28381ca30664cf450f9d3df9927530db771d30e86ebcf535af38e1a7e26724ae2bcfe8487cd2eb349bf609a733a25528aae14beab4d13d298b5604ac7353cc jruby-bin-1.7.2.tar.gz=8155c81eea6743951db7383bd9f6b1750614927c9c0b25a6574f6d64898bb3ada2f626c6e0df6c5486561a03cc7d472fc12fe804ce66a3972d2fe02e3f407100 jruby-bin-1.7.3.tar.gz=1d19be25bf4a7dbb0edad71008704377893d3967aa4204a0d59d6883aa04462ef6798c64d0c0fdd3f5129c16ccb42e8507f3fef38ed56054bf6e689de745935a jruby-bin-1.7.4.tar.gz=d7c0ee0316c50ae5413757e956c18ca68e9d99a25cf85be978da0787c13b8978d4ff2712a3effa564cfdf07144be4a56a0cb8acc794a01f43264fe8baeb125e5 jruby-bin-1.7.5.tar.gz=a4984591a3809330b93f4ce79fd1b9c24360f89d88a03bbc76351be623893c4bfc6441375bbea452ba4f24ca8b9357e03ac938fd6c065b3e2348c0f896b22a1b jruby-bin-1.7.6.tar.gz=98600a2d46bfce14111c7eebc62716352a4b685043afdd696b8fe51c6b205eb9569fc2860423a653b842b173198c76c59767156aa48e0d23482dff3358d884f3 jruby-bin-1.7.7.tar.gz=71da2e72c65899216fa15ec568b51aa7004e2ed7dff99ca376b332d3692c83a674c688dc21ee04d177a3961a2bb3973714509d88cc14d0ba9f79c864c6258a06 jruby-bin-1.7.8.tar.gz=42d54243653ec260abdafecce1143161be63fcc38a80f71ab70fcece4bf91545a2b12ed2319f9fd6f6b41916c398a9a8e89e7f0389f59da56f2739665e74522d jruby-bin-1.7.9.tar.gz=f519f53b1d9f57cfe28982ad70b892dc6fc20fe6601d98d65a1dca9f617a0eb8fff74d0fd82ddb858fe105d05ca7c7bbf3a987677ae0363caa2981bea358c096 jruby-bin-1.7.10.tar.gz=160b701f2f500dfab64beb635e5c4dc57760dd422d0fffe8d3cf8d84ee6ea17a877ef77a0087b4888ea9db64ce7750de01a73a51530aa6666a2efdcdccdb89e0 jruby-bin-1.7.11.tar.gz=a53b0fa327b98344cb4a8aad1ba537ddacb709a0e173b1e32656de8a610cb9896e9a4554d54d0d01d2361f8ff1539a0e2ee01308f670df2004225231b704065c jruby-bin-1.7.12.tar.gz=bf2be8a37b53d38c75712a6331f96b999fa6b0e87f453fac7b9d11eeb1b66098ea0778172f1a6a84345e1881f05d63012e28d4068a0bd31122bf2473bbdae5bf jruby-bin-1.7.14.tar.gz=f14e658da7f2abd469edcfd657dbc2505d6a2c04ba1e5f65f2164256f54625da154b338bd3d286ea6a18da61d04d90a61ad6b012bd9461182753483efcd0f603 jruby-bin-1.7.16.tar.gz=47ca714c3211c95c84e9c80ae4fbc894bfd7ee03e1bcc494cb48d839f8538db4aaca7029a4913b8d323e7227450e4e41bb943dc670f43df8a654eb127012033f jruby-bin-1.7.16.1.tar.gz=9bacdf6e212d08e46ac2c49183c8611873f6ecebfcb0e928b5110bdebfeb8751ac087cf8aba09afb9a8ccb58e59f3c3e06a241c1db445835d7a875b0c3deb4b5 jruby-bin-1.7.16.2.tar.gz=349283bb5344a62f282021ce39648a0c8d0b41ecf8f800ab5099b5ce161ff771e688f205a918324cef6ba0ded6b3694b8dd83f46f56be584202b8fee496b37e7 jruby-bin-1.7.17.tar.gz=a3b171df08e789f91c260c5a57ec842a5d62cc8d6b462b772905ec5284e394ed7b78f5b327ca1ff20f5deba8371a86cb03fade75b5f34f233df47bc3f08d469e jruby-bin-1.7.18.tar.gz=b259da2967e246a387687117eb13e8986b57de6ca8e570d6f8f8f07b8097db6e01cea8b0ec3a860b091fde14de535260dc6dbfc638f9e9b49d348f726e969642 jruby-bin-1.7.19.tar.gz=da91efcd51cfc833666f8b7cf949d3b5c41cd8da99ae1559c88a7358fb48df1245c66702c7cf23e7ca012cbefae98787c200352976d4e8aa3e9120057a89dc8c jruby-bin-1.7.20.tar.gz=77131afe46e72c406ab4250e43cd1f98e59a8351c494044ac89f97a7c9a81492f8a8194541055fcf1fc59569e99a577fd6a36a9f6a3952a99f399d4970e80e69 jruby-bin-1.7.21.tar.gz=111883df12a60d06e9924d33057ba72094fcffd44f7e3954d6c6d2190f8e6442804e739cc525a9e75159251a8dc1cc487570792b1b4f5773f4d0082f0eb360d0 jruby-bin-1.7.22.tar.gz=6ed6cbe7b81a8aee60906fdf965bc217b3db794698e2cb37559f36ac119a0cd2a1ae1a7a766535ab491d647e8b4e6b2f63e62011714b757f8691455831ef365c jruby-bin-1.7.23.tar.gz=6f4b97c4e08274f96195deb176e3126e8d047c981cb655cded9665624033fb905d60d5586704a3f91b2ca06d7e78918d9d31131c93e4c90c75a38182e309ac9c jruby-bin-1.7.25.tar.gz=a89ab8d539bff346ad56d345b6a205f74890b9aafe82a2c82e7c19cfc30b77fefde1003e8bd7ed15f141151bc0fd21946203219691383a64f2234fa586e1905b jruby-bin-1.7.26.tar.gz=feee03a50900e459d9ed7d2096056bef126c4551c02c335c4132e2307411f3fc4fd435e8fe44411184773c80f0630a7812b3d798b7e9be2818e1b5a712bc6995 jruby-bin-1.7.27.tar.gz=656f4313fbfe5db8d2d4fc2087a012c91efef848394c48aeaa0041e9a19b87ab74686702955413d2c51d6b4b11c758ba0555b30fdc42e86d66094411324139b6 jruby-bin-9.0.0.0.pre1.tar.gz=988c6a058336ab9ac8b27c7501ceccf3940837f9b9d3ed32a466b891bda1bc13f76199f5bc3baaa1240dd0dfdaee40775f721294d667f3b8b5bb9ac8206e2e83 jruby-bin-9.0.0.0.pre2.tar.gz=f207f9477a12d7ffacd92b1bb5154ba8101dda8f7b2eeadd4fa83eadec9a75727bc1831733d27fde63ba63322ec491201dd23cc6e2c2b5a4b8381a8fbe49e8f2 jruby-bin-9.0.0.0.tar.gz=33308a983533c129cffbf521bdb8c1996a10a6159a4a436248e645bda682c5a5395ac1aa767e971ae679c935f3b61573cb22d5b8c64af026752db3411a6356e1 jruby-bin-9.0.1.0.tar.gz=277dca63f3faad01c98a793f06bb4d558a970a10a66a38482e8372b25f4cf4fea85f1d5624fce7fb5b4310c42ea8aa360f24f6b9b6ef4bb0ebcb036736009ccd jruby-bin-9.0.3.0.tar.gz=d82f83e20ef17a0675843e306ec5e90993e5952cf5a53957a91e369d2c90d92306aa515b1e135c04b45844a81a0f4ae34289b966821ae5f46ea51fe012627352 jruby-bin-9.0.4.0.tar.gz=b9cd4f4a00da8152740b468914046633d5341b10aa26b0ac56835d5896531030c8afbc4c965b30c36923555ed5b145de8ada69e05ca38b01d43621914a331335 jruby-bin-9.0.5.0.tar.gz=7c61cf010fbae571cd6ba334aefcfd917f6de8224d014026297b840d0b890523e94b2fea20f154c82c25c4f9d5992b9481fb569646a7023e5ddb42db1baf5f34 jruby-bin-9.1.0.0.tar.gz=1ffdd352823436086ebfd37c03401a1f3a9cb8a8c5f75476af1f704c4764396a20f49ddb7fb7f0911e1608f7c88a332944330b8849d13e6badb170efb736dbe2 jruby-bin-9.1.1.0.tar.gz=475acda79ab8c54467ae70094aa86842959200127c1e92709f0a731014c469d3e52e4c48770b64ab1bf31e1b710ac4570b421077c85c08071c1356bee55a2900 jruby-bin-9.1.2.0.tar.gz=cc6b1e1a2907c128dd04edf9da11933a54bbed5e861ab6f0208505bca5aa2aa9d9acdd04bfde65824346fbb435584081fc8ec2e2e9a3aeea1bef8047915e0c61 jruby-bin-9.1.3.0.tar.gz=88339f4cc05f7f0ded21f100755156ade33f19873f49c0c64110916da8c0b059df541a77bb36e54fda9cebf042591450d2d6312ffaa879df926870806985e774 jruby-bin-9.1.4.0.tar.gz=ebe0e9d67cb91721d589461e93e26338e3e3a1f0f98de53f25906684140b49d989ca6d3704cd3f6cbf650f30aed9a3989f117bb4732c83ed870364ce4c31fa36 jruby-bin-9.1.5.0.tar.gz=f2a11e6fc88d37fc1b640ea8c9feda4607bea6da5e6520f61ff85e8d6a51543612ae267b45c033214f8fd0e2283153da02001cbc9fd90be4761b7544e1413b9f jruby-bin-9.1.6.0.tar.gz=ca59d199a0fe791efc57f05801ae26c6cf6402bdc0f1a795250b1a2dda39b233ed24c8cb005016e79727f4bcdceb1bad726a60c16935e76fc87e5d1a078fb5bd jruby-bin-9.1.7.0.tar.gz=f2569d4858a33280e90d984aac53662c25ef057ef9903bace6a2214aa2e6a537c9bc8fc76b08f846b3093cc4a12c70c98d725576a4ac771e640b95cfe3697c7d jruby-bin-9.1.8.0.tar.gz=dba3b41b65ff27dbaa203a5cfc78ac7cb9d952c52b452bc774f593383e4ef9389c0bc37549b798f48b63497ce7007b1ac2d2fa252d9a7c3e52146b4ae192ee49 jruby-bin-9.1.9.0.tar.gz=f8f6419be34aeb7b7577e946a62a094f5921d7319b51876c5e07322d99249b3a9f29fea4ee5c2b8184dfccbd5da8f8262fa97f5e93874887f3355dabfccfa0df jruby-bin-9.1.10.0.tar.gz=857783bb45fc5d62148bd687b43af9ce776099dfea75ec4b5d947a46ed270568bceba2a630a3277746a3a9c1fd3111caa9a4cd13493ea8824c1ee190e6d2abf1 jruby-bin-9.1.11.0.tar.gz=718ed3f5a39cd9f9b45c4e11ba44cd32e035f8d9f26fe59230dbaecb71adfb2513ee1bb86ff72e075b02f20151f3f30e53bfa30b6c4b011a93a138d4f479fbf7 jruby-bin-9.1.12.0.tar.gz=8a9f88d517d8002be570aa95aebb0063eb62a47efee191155f9fa4f045854910f78431514f857c438167ec42f4241faf74d4a8d236ae36feae58732312e4bbed jruby-bin-9.1.13.0.tar.gz=ef88f613ada2665d4f63b2e2f15594739de8ba501406e76de417821f44847b0e258524687b0ae0cf5b737520aa4dd9bb59d80a4b89a81408cda638f28bebbead jruby-bin-9.1.14.0.tar.gz=d15ae0c60421951b830524acd21a0f2a56f480e983b148a2722cd36afed8e99a41f518eb8a679bfa2cf87f08637e81c24ea88be40c0a5390e081322f1fc6f8da jruby-bin-9.1.15.0.tar.gz=74a411f42149510180706b2c70610caeea357f6fc3d2a12ff0227586862e6a9dedf09e752596d6c486af7a310a07241f311a1dfc73ead229d7225c09d4508605 jruby-bin-9.1.16.0.tar.gz=94e88dbeb2545250ba5bef50bbe0baa6f3851e9817f67f879ffaab50048bb0d41cd7a0e87ac9ef547e37c2b82cf1d7aae6b8caa43d03c6a9931b8ce0ad4b2afe jruby-bin-9.1.17.0.tar.gz=4c06b9674e20f48d3815b4084bb38e6994670eac804fbc56d717cde7abdb74d57e0ac17b7fa0b500318de405c187c3eaa01441c22621139dfdbeef62a5467a63 jruby-bin-9.2.0.0.tar.gz=79f5e8674089d2f6b260e033e3ceb4571f54cb5cedbca74ba76b52dd7cb30085a8c6c2676e9be57a8ecd9e962fbcb3682a8de38e1cdde2dc6e05bd179556edc3 jruby-bin-9.2.1.0.tar.gz=185e67da4964c9cf1d9142446efa77605e77894444bdc96bbd10fee22637f197aea9fbb0f60d3a42540e5f383d5b06fcf095d572f432544a40c2145deec81926 jruby-bin-9.2.2.0.tar.gz=85e16e38748b6ec5f237eabc8a17eb225c484c20f7ab6728f2a0f650061bc50c8a9601c04b0128e73c410ffe84dacd2b8bb37167aae5595728aa25e88c4c9b92 jruby-bin-9.2.3.0.tar.gz=97ee210157c451567946b38d33380051f82e7e8cb5f7649fffe050542ff6cd627e2c42f4c46739d1f0995c87e7338865b18844741285bf3f72364aa3c841c54c jruby-bin-9.2.4.0.tar.gz=9fe1506e862a17e261cf726e1bb70a9f612a6d7beda919a01405899660d1f4b79ee690ddf9aeed1d2b2f3cbd698be8df4f98d3815352772cc680e9646d721761 jruby-bin-9.2.4.1.tar.gz=2c41e7884cc54819da17ea9b2b773d05d3240d53a2ecb57ba430ab61308066eeb1bfbe6627e6c261f5f27ab5df7f5972656366a04a191a81b0379f620b74512d jruby-bin-9.2.5.0.tar.gz=d548eba8de420c80062021f5b6e6b203f8b7b36e3f11409919eeab87a028a18f9346f27d2cd8b1f33419adcc83fc804a36dbc3cee169ef1d93383b8f5835ba2c jruby-bin-9.2.6.0.tar.gz=20c7897da0d2b585616ea5848998fe8770517e24e16955797db2e5bff4622c348082628d304240a71a97e9551ef7aa63271cfb728eb5fb7e7d19bb48aff20d4c jruby-bin-9.2.7.0.tar.gz=8e71e27fdb149cb7470fb736e7ce858719d13ce6ff8a1e9ab1c1dc71fcc068fb601946bb28ed2feee3670b5e6ebfa8a655a6618d1badfc3763897912c41b1c82 jruby-bin-9.2.8.0.tar.gz=7f71fb5bc8c6c31b31b4c0430ae091871b21aa345777662f264c728c60212365dadb63a7a4b2fff31adbbf8a2e7cfa678d47486e28840f57b86cd45fe9354013 jruby-bin-9.2.9.0.tar.gz=7df33150858ddff586b3bd86120d4bdd80546c7f8e62245f61facbaa5527400a1aebbb33e4a1a8af52066487e3d29760eb96c7ecb9875eb9bc954ccbcb37a4d2 jruby-bin-9.2.10.0.tar.gz=f4ca024602ddab37154f5547132accb26e7c0ac2e913ebe1b5c7806727eb148249e76031ed4623ab53814beb8fb3f472e386f44d57adb5d2b3b00fb2773c8a63 jruby-bin-9.2.11.0.tar.gz=f736a9e139694c84d0a5ea42f36b972adc82c9be13e0b80bd61045c026e4fe31ccdd4be3dd3e94781c846f356e026465e41716fd2744ded2ab0ca39cd33bb46b jruby-bin-9.2.11.1.tar.gz=2f758fabf5910ea01e9c04c7600d9c666f2df3db8622f3eeb3534578075ce65013c42fe9ea6f95d4499945f795e6d566eed2b1545e149af823eb1d29167a1223 jruby-bin-9.2.12.0.tar.gz=1dbc5bb3814a6590f5e8ecf4889152684b5625fe81794a2c4064d598614a85129256002dcd239e294f209b98e3abaf9bfe70467fff48ef66b1531162dc6c3be6 jruby-bin-9.2.13.0.tar.gz=2cba016ad6a376252083122d51335610209d860c41de1902f5cd49ffc2f6b49c350b68df8fc4113c221255af4db7ec07980267b9888369811faf66db369e757c jruby-bin-9.2.14.0.tar.gz=ee3d17e875dd197f92744c7cba62320bfd3f166bbb2ca117f2910780a7c571779c0940e024351e9d4685ee9781dd207e773ace57a4a8a7011869c8b6209513c5 jruby-bin-9.2.15.0.tar.gz=678abfa7654b53b049e4103ae3647775d970c5a7192539378957c1731a3037c852e03f00a496c022c1c438d159a93be6e6f04d7563c811aeb7d261ced643d9e5 jruby-bin-9.2.16.0.tar.gz=f77e314d578a980071bddc25c65659d62e0644927ebc4e7d7d4523935b6c893e611d47ae7478a26ce7acff38b1525eac11b4a329188cdf76aeb07fab667d99d4 jruby-bin-9.2.17.0.tar.gz=e90ac1890a54a892b13adbbeab3cc5242889ff2a4b6cae535c0a3172072bda6ab01b960705ba608d6d7ebe9de5984d8384dbbb6399ab3b2e53a9e347e7849e1b jruby-bin-9.2.18.0.tar.gz=c5816ee0f7b0f559dac70ffc5277f85ae9c41ad176e43d277f820c2727387baba93998b915cadf9708fa78b5cdf3911a9c39c2ebb61a77a38dcff359f7d88a73 jruby-bin-9.2.19.0.tar.gz=3740674035e27cf7961b3570ad65536c30faab1c9a71a42a696b173379e79647411d57e0d1d06b5f9c9a970eb02a595a559191af08a083773dc4601dcfd07491 jruby-bin-9.2.20.0.tar.gz=1961f52f41e7eb9f50b0f382c8166ad988a6b3c0311c342658edb34486b073ed45c1ca5731aa319196db02cec208a4dfc86aa6b436959b80243bfa4f62629735 jruby-bin-9.2.20.1.tar.gz=598e28cbad682fbb30a9a9a9f708e6e1f4b7903300de2477e88a646c42ae594df5b768ff5379ed447f1a7168e93dbe35cc2d5db7087cb2228233a05bc4687908 jruby-bin-9.2.21.0.tar.gz=8f6cfc43ce3ebbd69781da71c5a70746ada090162bf6cb709dca41a6d968e6072ae62f657cb0bd471c648ff294044bfec3079828bdc410bd64758f76a93c3214 jruby-bin-9.3.0.0.tar.gz=06331ce32ee88aaad5e5bc0668d164ec3263f8ef3ed34bb32981b76ca33f8c817e3632550775706481094159f4feb43916ad1f9ec0f0775ad756b16cb7bd9417 jruby-bin-9.3.1.0.tar.gz=bfcbe6dc5ba736fc944af15eb387b545f6c5b987a7db88045913a02a1d30726c5d1255c4dd609aa7c2d2823ddf9d8360223b0575c93302aeef4c54eb37af9abe jruby-bin-9.3.2.0.tar.gz=b1777bfdf1964d7e527bb3dfc47b4b9e8c589cdb301c38ee8ee988bd0c392ca978ee3c1c24e4b5a65bdecff67d1bd96e2d8645e58ff7e891e3622097ea29e925 jruby-bin-9.3.3.0.tar.gz=648e70de0bda710e2dc70fd03c3dc6b798dd4c7b92584c54306c426f59ebe1168a595c4cf94328f6b44674f5507bee354efdb1cd73060b73b0171a3605051c9c jruby-bin-9.3.4.0.tar.gz=6b09decf412a76578179cefaabf01cc8740f70ab5324954e6aa43b1d8b81c37db7a99b1f94d6ced2b459f1c44c3086892b9a2c06b3ea838baf75a8fd5e0447c8 jruby-bin-9.3.6.0.tar.gz=f730522eff27462192808773cbd071cdaefae11f20bc808a8f22515a33960a730f3c87ec727ddfd9dc9b6b35acffeb50c31d75a4794a3f8daa75e1963ebd246b jruby-bin-9.3.7.0.tar.gz=265051c68d3b9dcce708b75f8267303ae84008859c88d7fe4f282395366c3f52fcf1bb161210555c0fd0a2427ff5a728ea9e337feea3d9b69559cadb2f300aed jruby-bin-9.3.8.0.tar.gz=12e795b7e1f14141bde68f52a29b0aa9f1db20515240dce83cffec351cefd25959579e01059d42dc8c8e4280493a70819d9beb1e0523e9bc10a72af16d9abd60 jruby-bin-9.3.9.0.tar.gz=f0b31d98f39a2bd4436764db0b0139433d6868bce7c30c5d6e3552616ba879c93478c499f3e4c884fd3728502916aed5c9ca1be150ae3e80ff47b36710c3f6df jruby-bin-9.3.10.0.tar.gz=aa36fd4c5de7b17f5fdcca1d1314d309e7b4470d46822c45baefbc0ad5180e5530a7054502b97b414352af485e7936659390690dc6198512ba6733d8f8d503ed jruby-bin-9.3.11.0.tar.gz=d9fd90bc64028dcc45687d2be51414b1561add20d20d1392525f4434cc684d505427f5e56827afffbbb0ce2c9cd7c1ef846b0bffa737679afb95d4c160232da5 jruby-bin-9.3.13.0.tar.gz=eb24641fb7a6b9d2039ec953388053e7333b306056f9a5bf745331b04cfc05dc4211a9b7780ce88bcee9184b8cbb219b574574d308bc2720547c116f4d4721dc jruby-bin-9.3.14.0.tar.gz=d9b02fc35133f71140cc7d891061f8190b61b3d1065f00092a2aa9a4beaf7d67297dfb0529691bd24d29607d698f39c62af9018e8307c1e6624c3104a61bb74c jruby-bin-9.3.15.0.tar.gz=e41521ebf453d6b6a9de937556fcaa972c60268285d0af4a41bfb95aad790eb47dd507e182958ca6f4889a0e03eedee0fa4bbc58e3d0407a2b6ba64a8b87a21a jruby-bin-9.4.0.0.tar.gz=fb72f8e087ea08653fa4e4225fa26694c3ff97c41f3deb8731cdb6571c6c9b21e0d8f69e2096f82ee81e2b5c283f912e2a5228c15873dbbd56de96a2ba35d59b jruby-bin-9.4.1.0.tar.gz=46003ef6192718a6372b79ebc89bee37957686224a08fe2f9a6be3c9e479784409d0269f0885c4d1f1351585c5d2cd31fd2ad45014e425bcaf2d44d66b98d299 jruby-bin-9.4.2.0.tar.gz=77e484ab73ece93e7d7283f876f0d541607c6080eee696b702b485be9794cf7e6d464f250a6d75387ee69aef3ba40ccf4f6d9fcfe324c5bc7a14376177ea2bb8 jruby-bin-9.4.3.0.tar.gz=2361f4bb2989f5951b0d3e9d49bf31e6805ce39bdc987ad3c6934daa98ab7c8e69763d40d7412ccef8adbbc198e52f4b83d00998ee12ac43fbfc6b5d88930c15 jruby-bin-9.4.4.0.tar.gz=e89dff0cc5b4a948daa95196d4bd4fee0c6901bb4aa023ae35b3679d9739967c2a74e8a4388b1835465dd39f1332a1f321b450b40c54ad2b81802645b4a31ca4 jruby-bin-9.4.5.0.tar.gz=06db948e5fa6f8559abd3b6891c7b4867b9f54b7bddf0e36d6f20cc1bfb394cdba8ea920213e545c927d1cb865e083cb1089c8e925bc608e0f8784a79b5d330f jruby-bin-9.4.6.0.tar.gz=ebdc671622baf3c42a988d6ebe24af6bfefa1f717f050f602a1b35909a3220316329aad080ee2cd9cd330da9428f8d736502573efa64bd70f093ccc123ab32b0 jruby-bin-9.4.7.0.tar.gz=4fc8b12deba7b8a53a523a41a31c248895adc9bd54a62664a27107e7205369af39c0eaa508a9a70611c3bb845524d8c5f39451c09b8b9cd87059ae15139703b9 jruby-bin-9.4.8.0.tar.gz=0d65fdfd63e2049ab3b8ccbcb4caaaab20aea5a63276aeb20ed4092191a8814f144425dd0d926aeed757ad6b4daa308a98fafe1bbd1647f3db44368066f61868 MagLev-1.0.0.tar.gz=8da29f16e08f657b0d2f147b64f2202ac027db26f85da8dec29f926898f178ac8d11260fd6c0a539a9b9b15eb92d8c7ced86a8cab1861ae7f8a33b6fa468e5cb MagLev-1.1beta.tar.gz=7122af70530e76b9a4cee93244d6872b49616e78086bc8a5db0f32d2b846560b352c4831addbbecc72e0e3158bd52f26c2da14f5d83a515ead30efe7c538b62e MagLev-1.1beta2.tar.gz=43b4b831791074f6e8c12f6fbe6ccec2bd0446dae029d3e6717cde1e7adca8462a2d7dc49c14112cb568b5b3adc8cd051767044b41d57ae51f38aca035ff8597 MagLev-1.1RC1.tar.gz=942c1cf43f1a911230aa43bbac1cea2e2e61b5e19af755e29a6a71139d66d304efcc519072dcc3487a2da7462847530564aff4a2159d675e3270cc938a297dd9 MagLev-1.2Alpha.tar.gz=2672e3e5425df2d2ecc49f85df5845fdb083f74a7b242cac75e33d0c1837079ced8ec8b273807326d08e7bf6f95cb4f1d8351f37af8bb38c4150e6292fc553dc MagLev-1.2Alpha2.tar.gz=4492ed58b6c2b852502a2195836f1db5a80f0619467e4d7b44981a993a5e9a9ea5c9fecf1198de1891583e334bbc3c3a86648ce8afea1137ae9c73a4d76b0f4a MagLev-1.2Alpha3.tar.gz=6290895b22efb986ffd7305b7d651f20a051ab6869d51310bf891fa3eed48526a8617b69f72793e8ac0b57f99bc5de75f34235ef94de967bbdcd51857efc2af6 MagLev-1.2Alpha4.tar.gz=a621e9c615ffec503910540db770754f29bab1646d8e67650d5b82413bd551adfb0bbbb8155407ccb6f80933bfe8ae1bf9b688eb0defbc88710308bde1325683 mruby-1.0.0.tar.gz=4a0f2927da3401df23d5c19ba566995f76775def3badbb14f16510a271e7b40a833fc61841f89d8adc6d57b5b12cb453708961c16a22133c092fab8ecfcd1e3c mruby-1.1.0.tar.gz=afa99a973e9c1b72a5a418d709c4aca08dc7449c427cedef5f12db4ccefb15e11a4fd1c23ceb7e31e49d4d2e602c0b1f9dcf2e0f6cf8ea3466f0b9bee23b53df mruby-1.2.0.tar.gz=bd5de32ba52b6642358752755329fa45a954082122a8983012930056c286ac328fb52fbdd11f34ff7c80af2c0e9a6348abcd5214602aca1150f2e7ae25cad1f2 mruby-1.3.0.tar.gz=13a57306706d2d60693151919ae15bb3621e6e7ed3b5e9c6d3b1c8d44e52b898c1ad394b39946d730ff82a19f5e3b7c2a374f9dcc3b6c6f990581e504f1cb9cb mruby-1.4.0.tar.gz=d2dd6e17c7f8e890ef5b6887538cccdea08a2376ba8f9a478d7d5c4377fd4c31a4af6323b1fc73952ef80e5a4778ca22eac3d724ce7d50b76770f7e614df7da0 mruby-1.4.1.tar.gz=2cbf155ba7819211b6410ea606c4d0db3adf4f47a4018ac45285ab3e32b94f280aa0af0936ead7233411957cfca62979d14bbaaf0d8f40521cba5c12272f2af4 mruby-2.0.0.tar.gz=8379f76b7a06d280e2a2552eec2975ffa3fe85b99028f6f7c009cd908f95faf3cd36a9975f502a5779559baf3c45a4297da0b6bcc038d213a0fdee851f9d01ea mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.1.0-rc.tar.gz=f310b385cbf80c6b6ab67e2a41b931411149639c0bf778799e3358d6a9a59f508f42e3faf72fef9e8ef91088d6184c445af7933a47e4e2b2fe114362d579bac0 mruby-2.1.0.tar.gz=da28b5a078e121c75edf62fc68fad6d5810212bd53a3424d4f585ffe5bbd09f652393ffea0f4b3ddd802e5fe178554dc67040c39c9d5069bdfad4ef22ead7e8d mruby-2.1.1-rc.tar.gz=97c9cc2c79a5dbf2f634ea08532f0f512f8af6ffb99ab4eefd83fc336ca9d97b943e76643971047b4508aaddb5e40176d6cc8fa39a17022455aa15d774eb5b98 mruby-2.1.1-rc2.tar.gz=13aa32a35bd5d8f02a9bfd08d17818dbae78ce46c8b0224a029f9f191cb64ac330eddf3871f4396b9221b987a91e4cd6f8933f59814ac0018155ec8454abff18 mruby-2.1.1.tar.gz=66f9b4bebb5a7b19f5cb1be2bd8b9bc65e4dbb5d4350d238ad5f947c9195fd431f2069f7334036ea63a750e9257e59ae1aef16ac99c7e1f4e17724cd1cbe2e50 rubinius-1.3.3.tar.bz2=8b91baf429dac60663d0e4da3152a60ec6e007f5d6c17ffa430876ec88eb87ade44efae90f2e32e238fd74f1b3d54e27492315f08e7bb073220b402e1e2d3163 rubinius-1.4.1.tar.bz2=928d12aa01a1d0f6c80175d67d3b1f8b9840f69f045c8148786612316421223f4cea71e3c373ee18a3f686b1457557ae547645afe758a99d21c4818dff47b9d1 rubinius-2.0.0.tar.bz2=5c81a6b8cf7b59e08c3b9353b0eb37ce985aaf391f5064df65ffb10f6d12b668287e4d4e61e2c6b560d9234c10f0b64bba74259f2c06f1dac488928544d4131d rubinius-2.1.1.tar.bz2=154cfa93ed59835814b8b974f6d738b049942fcc2b75095d21c87647d002c879fd55aa3d1ec95414b5b66eb9926c25a5c6e3e19a7c0da7dec6edbf434acb9c68 rubinius-2.2.10.tar.bz2=c2168e676059c197123916dd948b83e39bb96e99786bdcaef2e690936b761fedb13740b9f19883f991f1b475f3249ea1696213e8448c41ae15dfc14b3d4e1fda rubinius-2.3.0.tar.bz2=d0f3dd5e3b891bff2eb79b7810c6041e15fbbf0606c379f89575cefd829ac7a394b0c12ed3c5a4d452730797bc0a2c6c82646a19a078b56dcac7acad015a4559 rubinius-2.4.1.tar.bz2=7bcea320006b8cd3d122c407d89c325973a74c32456ba0b649657ac848f4682f2eb7455c13e3007709c22932bc2e1b65e2dd43fda0d3c9f993ddf8a74d1e2cb1 rubinius-2.5.0.tar.bz2=ac94d5bc11524e715fc24c1de33f4d358c2cd65e92fbb64c850dc8151d2a712d268227733c99fcffe298c3bdd6ce080c5e9553e4e8f3238868323498a9d10cae rubinius-2.5.1.tar.bz2=9315f76126d0aa754ee63b190385c24cb084f36293a99aa30fc482fd880d5393aabce361e09ff5514bc2540dfede8e179b7e9212b2dd59bd14ca2aa69d209a83 rubinius-2.5.2.tar.bz2=b48bd8d54a450441a50904b07c75c8d31b59822830a74c952720d6f8d2d86e6a27a84775e975ff2bf55bf3346f34e69d742f308933a9d8476e5e78109cb525f6 rubinius-2.5.3.tar.bz2=b923446d325dc3ce5ad28af9ee527607fae3259b85e85aeff97c1bebbb4520daf70616957b1c0ded900ed19e59025826dee66977c19cd2a2d4e9a0296811eb20 rubinius-2.5.4.tar.bz2=75b7ddbe218e4c92210dbf5a06eb8b3c3aa028d16146982a4e813e3af10a90d33f3e239f4508469c6aba17f02cb8bd10e96a204839975e06519869cacd456c92 rubinius-2.5.5.tar.bz2=a862146ddbbdcd4439eb64e78bfe6d09ae4cca540d19869618426d3f451544658713fe8eb7d46493785eb0cc721077e624293cc44d68eea3ef584967b43a18d7 rubinius-2.5.6.tar.bz2=9a0bdb5d77f80f163925ce409d00be3cee34871baae8bcfdb34c3c7545b92fd14102fecb970e42b3012588d299e504b724025f397a5a00e181ab75f1448e426a rubinius-2.5.7.tar.bz2=8048110b3ba4e5ff8c3f35282896067e1b1b46dccaf9ef4f6c9b6098782f27591ff59ccae0234fd7e881e3aaf17a0b420286b1b52ecd2cb672249655795a6982 rubinius-2.5.8.tar.bz2=23fca2f9747d2b0e544af890c3baacfb7b3a009cc59cbe653762ccdd827a6c915dcc57902d317fa1f7a81f8c12682f6c3a93195331b6de0f705b118e2e8c13f1 ruby-1.9.3-p550.tar.bz2=38767e98df25484f7292437f3cb0f798b3a43e9a7414a5401677e96ad1cc367cb3fa23ac3abe568d5bf2b2ca553713469a8770d41b79bc63daf3fa59cb4e15c6 ruby-1.9.3-p551.tar.bz2=5ea40f8c40cf116030ffdedbe436c1fdbf9a50b7bb44bc890845c9c2a885c34da711bc1a9e9694788c2f4710f7e6e0adc4410aec1ab18a25a27168f25ac3d68c ruby-2.0.0-p576.tar.bz2=e089cca4867cd9c715f4f37e40a1db9af6ba0c74b47e79568121bb980476f8877a87ccb848b973381edb4667c0c73165f5e1761f60db839e67f6326302dbd864 ruby-2.0.0-p594.tar.bz2=8301a51c73fb63a8cfeb14af47d0c18b5bc3c45e3d62fc2ed56a673a1cd6b0015c41f275e70eb14a9e40036b1530977199321e05285e107a6adf58514bef1b3d ruby-2.0.0-p598.tar.bz2=10026a04e01a8ad14ea9c99bbdf4f7d04029b73ee0c01bbf6c2eb2817332d49adacf127b646693b67b5dd7010eaf3b696b23b6335cc0f7ee5a6b56dbba0f6f82 ruby-2.0.0-p643.tar.bz2=453117152e6facdcd5bedaa9c3b1e349382bc5bc1dd3d650ec58b398cb9d2519a2822d05da10bcc5dbbb4f513fc5fef310caa3529d176fa2d453befb28e4d83a ruby-2.0.0-p645.tar.bz2=e9ca186b1cf0877cdbecd43dcab2c5161a53103e926609d5e1b769a4980eab4571bfd0951788b4fc92dfd9d10175b0f5f36ea2c7289e575a9db9b62c02f93185 ruby-2.0.0-p647.tar.bz2=3416af771ebb0b27ceacf23d309bd2a1ede832c2edf48a5ca46f0b0b84b2ab94fb6362a0c7fe4f77b21253539db8161ae26d23a78d1ba729bf03812454d93d04 ruby-2.0.0-p648.tar.bz2=609acf6d6352c9746e21cd7f0e7d29f5eb522e6fff2d5fad0431d63c568cc084ed5b7141f84cd33512d8213200d2d1a22e8d7df71469a980a3a92886133fea38 ruby-2.1.3.tar.bz2=9b48adb161e5e4550a71f61252c8edf59944affb82250babcb64240749af4b672e4a54ccd0feac5b36ea447a358b350b5080125ef2d4acf6e9e8b1ab82612f48 ruby-2.1.4.tar.bz2=68db1567751166c5e7d24b6e5015124b8a15568c50556e1f429486395352fa56c4a195a74820ab135697924149d014b445b345a1b9755678aaf824fba79c606b ruby-2.1.5.tar.bz2=d4b1e3c2b6a0dc79846cce056043c48a2a2a97599c76e9a07af21a77fd10e04c8a34f3a60b6975181bff17b2c452af874fa073ad029549f3203e59095ab70196 ruby-2.1.6.tar.bz2=75d58120b5f387bcadbf6d19e85624f78c74f81b9018baef39207214673f7ebc0700ab31145acd88b4071c896ba8e1302a29c90955bcf5f8c863634125022aa6 ruby-2.1.7.tar.bz2=f610d2dd6a93f0a5e84e04ddedf847bbcea5dd3289b3164cdf60be64f67a80dfd5f9836ea5d169970cd0ce24a7e05ea6190699706567cb0d5cf450de6a70e445 ruby-2.1.8.tar.bz2=7129c012bca7f0e7cfa51c73ba0898697f7a9f31abd5ae57d38be5b6b646fd80ab33be9b262cd3e2486c66f65aaf4ec6e881ae6e5a82ec9df62f00fa072510fc ruby-2.1.9.tar.bz2=a86422132e4c64007a84a91696f4557bdcbc8716fbfe1962f1eef3754ee7f994f4de0b5b7e7231c25057515767040d5c4af33339750b6db15744662e9bd24f38 ruby-2.1.10.tar.bz2=4b7213695416876e4de3cbce912f61ac89db052c74f0daa8424477991cfc49b07300e960177ff576b634a97ee8afef3c5aded5d5806329dbd01d0ce7b42b9b63 ruby-2.2.0-preview1.tar.bz2=2f1190f5d8cd1fa9962d1ff416dae97759d032a96801d77bc6b10136eba59dde1a554ff8c0c2d9ce0d3c1361d4dd12ad573b1266fd53b90ab238d8ce39e6b862 ruby-2.2.0-preview2.tar.bz2=c654d4c047f9463a5fb81eaea0fa5ab7bf316962bc7fb0fb356861e6336ce8ce2162c7779d8b27f72d7bc0e9604b5e5af2910abcb0b0a1f197b3138eaddfd4a5 ruby-2.2.0-rc1.tar.bz2=181201168360bee37dceeef3481a69e8a333a5d329680031fd9d371d30ac64460bbdf4db07546133024f541774e51301f1630cfd988c5e5bf2464834f3abe6bf ruby-2.2.0.tar.bz2=04edc53e8cd1732c3ca61ebeb1d6133614beb10f77f9abb80d8d36352fe8aa205112068e460bf600b2c7e81e0ddcc3b311e7e027c320366f1bd992b3e378a6ad ruby-2.2.1.tar.bz2=af6a8e75a66b953ff33ecbca5111bcf1c6560b6b48b370b700820fcbe91363146c5ac8abd670a14e693b44343ae598bab472ed2902834304c03ffcd9550886d1 ruby-2.2.2.tar.bz2=d6693251296e9c6e8452786ce6b0447c8730aff7f92d0a92733444dbf298a1e7504b7bd29bb6ee4f2155ef94ccb63148311c3ed7ac3403b60120a3ab5c70a162 ruby-2.2.3.tar.bz2=795f1b66a6d4f0baef897068899c3a1a4370ce1268618e6a7d6d4720234444259f371d1ba2e174b2f7580265e9f18eda3f295fbb087447aa6e8fb7a0f07526ce ruby-2.2.4.tar.bz2=d27ca2f19c214ce87f906b57edd41f2f8af35b2871c191470facded9cfda15ba46e5c3bc7d5540225a38da6bd65050fcc8aaa4ffbadbb6bf7dc891c1821da0df ruby-2.2.5.tar.bz2=d3224814361c297bc36646c2e40f63c461ccf5a77fea5a3acdcb2c7ad1705bb229ac6abbd7ad1ae61cbe0fefd7a008c6102568d11366ad3107179302cd3e734e ruby-2.2.6.tar.bz2=7a93f72d236521ac28c8a0bc0c73cf805797a8813d22e02f42c5fc05dd39f6e422817272e0db6a24c245f6f97ad4b2b412a9a47ac50156ab186df596918a5f34 ruby-2.2.7.tar.bz2=83756cd1c91516962b83961e0de59d858618f7ed3e9795f930aab4f199d47a95ed8f867d8aa9b51d508be26d9babf2140117c88241168bac41e6ef702cfadf20 ruby-2.2.8.tar.bz2=aa1c65f76a51a57d9059a38a13a823112b53850a9e7d6f72c3f3e38d381412014521049f7065c1b00877501b3b554235135d0f308045c2a9da133c766f5b9e46 ruby-2.2.9.tar.bz2=2a8c8770fda20a22b79c9115b6f468f8e7ea1092c84a5089af7a3122163e5ad298b493e6637e4d93ba02d899d8a619c94064dda8ac98cf3b93f64f45d5401085 ruby-2.2.10.tar.bz2=f8ec96c2a5f4ecf22052ee0b1029989ded52d7bf5d41be24fef67e732e76f72119302240bca08f0547510a9cd29e941a32e263cad9c8a2bf80023d6bc97b2373 ruby-2.3.0-preview1.tar.bz2=ae6d46c87f59e1fd3703b76dfc45bfcf208625f95ab9f4559f0b9f7050e8681f1a6e419f5fa06b704c83e56879c3a9ff1337dba443bcfca76fadb49c97d97a93 ruby-2.3.0-preview2.tar.bz2=e397f321d4338edba8d005d871408775f03d975da90c8abcfdb457a1bc7e6c87efe58c53b2c3bc122e9f58f619767b271bcc8d5d9663ed4b4288c60556e8d288 ruby-2.3.0.tar.bz2=77b707359e754c3616699d21697752741497c719dc3d6fdfb55ed639e76d52560d293ae54cbe5c63be78dc73fbe60f1b8615d704d017bdfe1994aa9747d26a6c ruby-2.3.1.tar.bz2=a8659b96a3a481a3dbdbb6997eb18ff1f8cd926a9707a90d071e937315c21d372c89252f0d44732ae5007d2678fda8c8fbceafa4e4b4ff500d236fb796284d8d ruby-2.3.2.tar.bz2=78699bae5b0a2382a58f9d51f7d891341f00ad3a90d9ca06b68b1b245cf5acebc3a82133e39bf6a412ac999a5c0f778a0dab177c2569ffbee085ffff6f6ec38e ruby-2.3.3.tar.bz2=88f7782effd35bfe0b4c33140b5eb147d09b63fbb35b9c42d2200c010f387e2b70984ead1eca86569e8ec31f08b35289d440c0ca76b662dadb760f848e863d91 ruby-2.3.4.tar.bz2=ad1f16142615498232d0de85149585be1d2c5de2bc40ec160d272a09e098ef6f317d8b25026001735261fd1c5bc0d1f8513a8474e89f0d86eed5b2fe7338d64e ruby-2.3.5.tar.bz2=3ecc7c0ac10672166e1a58cfcd5ae45dfc637c22cec549a30975575cbe59ec39945d806e47661f45071962ef9404566007a982aedccb7d4241b4459cb88507df ruby-2.3.6.tar.bz2=bc3c7a115745a38e44bd91eb5637b1e412011c471d9749db7960185ef75737b944dd0e524f22432809649952ca7d93f46d458990e9cd2b0db5ca8abf4bc8ea99 ruby-2.3.7.tar.bz2=e72754f7703f0706c4b0bccd053035536053451fe069a55427984cc0bc5692b86bd51c243c5f62f78527c66b08300d2e4aa19b73e6ded13d6020aa2450e66a7d rubu-2.3.8.tar.bz2=6d79e0d25757fd37188a8db3e630a52539bce7927fcb779a2ce9a97b9e5f330753035c16843552f1a1fb6c9a1e5c0f916b3cc8b5c0bfe81e20f35f8442e40ae8 ruby-2.4.0-preview1.tar.bz2=c9873e8686eb54dbde61d6e23cd5197beebccd6cb31fd12c82763ebe1fde17095d7514d9d93c2c82b238032c98691df5479dc2d666a8a590e0fc54450ec29cb5 ruby-2.4.0-preview2.tar.bz2=0c9a59a2f57a99c4ee8539a30f41da1de7547566203f89d856e1be9dbb44365754e6c470145dc9336eb324e0feb2f53d9fef18a1564968ac21f9ee528905949f ruby-2.4.0-preview3.tar.bz2=6602c65a7b1e3bc680acc48217108f4335e84fdd74a9cf06f2e2f9ad00a2fccacf9fa035a912bc9d5cc3f0c7a5e21475971dfac37b0364311ef3645f25c7ddf9 ruby-2.4.0-rc1.tar.bz2=b43902ac7794487197df55a45256819d2e7540b77f1ed4eb68def3e0473ee98860a400862075bafadbde74f242e1dfe36a18cd6fe05ac42aae1ea6dddc9978ce ruby-2.4.0.tar.bz2=bef7bb53f63fb74073d071cc125fb67b273ed0779ef43c2d2969089b9ca21fff1bd012281c5b748f7a3c24dd26e71730d7248c05a01cb23ab2089eb4d02115fe ruby-2.4.1.tar.bz2=1c80d4c30ecb51758a193b26b76802a06d214de7f15570f1e85b5fae4cec81bda7237f086b81f6f2b5767f2e93d347ad1fa3f49d7b5c2e084d5f57c419503f74 ruby-2.4.2.tar.bz2=1a5302d2558089a6b91b815fff9b75a29e690f10861de5fdd48211f3f45025a70dad7495f216e6af9c62d72e69ed316f1a52fada704bdc7e6d8c094d141ea77c ruby-2.4.3.tar.bz2=fb4339e30c04d03b1422b6c32ede45902e072cd26325b36f3fc05c341d42eea6431d88718242dcc9ce24d9cad26f3d26772f2e806bd7d93f40be50268c318409 ruby-2.4.4.tar.bz2=ae632852a5f413561d8134e9ef3bb82adb37317696dd293ef92cb76709ecd45718f14116ecce35b12f1c2dd53ccae8dabc7a924a270072b697512d11f4922347 ruby-2.4.5.tar.bz2=7034fcaeaee41f14bc0ecce0d3d93bd1abe95310e1a0b95fac66eaba867adfb2bf7ba4d0d70d67a15ce8df16052dee405c38cdb18987602e64a2f701d37d3df0 ruby-2.4.6.tar.bz2=292802984e5cff6d526d817bde08216fe801d255c4cede0646e450f22d4a3a81ae612ec5d193dcc2a888e3e98b2531af845b6b863a2952bcf3fb863f95368bcf ruby-2.4.7.tar.bz2=2665bca5f55d4b37f100eec0e2e632d41158139b85fcb8d5806c6dc1699e64194f17b9fe757b5afd6aa2c6e7ccabba8710a9aa8182a2d697add11f2b76cf6958 ruby-2.4.8.tar.bz2=2d7e0f5ad766e2a12a1b53ff838e6bfe86244ffb7202196769c25e9df6f71f3ccdd8605e7ef35c53e54310bc82caf6b368ad5111dd0a3ad70a3aae1a7be93f08 ruby-2.4.9.tar.bz2=d485444dcd025a261a16bd740dae63c0aa23e4138a095584e7a83aec47af34415c7d9cbc1313e92da2ec416b11bfddf20bb1a7b60c80f12906d11ef27409b3e8 ruby-2.4.10.tar.bz2=4d730d2d7cb96b002167ee358258f2620862a5a6d8627cfa5b49bd43c6e59c50c0f437b959d4689b231d57706ec7d5910d9b144f4ca1c1ed56bc879ed92e8a59 ruby-2.5.0-preview1.tar.bz2=2d39ef64aaf7a52014905f4ad59b53e83b71433e50a9227f9f50cbb7a2c9a5db9cd69fa7dbe01234819f7edd2216b3d915f21676f07d12bb5f0f3276358bce7f ruby-2.5.0-rc1.tar.bz2=bf0eb114097f9e505ff846f25e7556a2fb393573b4e8b773f94cf5b47998e221f3962a291db15a3cdbdf4ced5a523812937f80d95f4ee3f7b13c4e37f178d7a7 ruby-2.5.0.tar.bz2=8f6fdf6708e7470f55bc009db2567cd8d4e633ad0678d83a015441ecf5b5d88bd7da8fb8533a42157ff83b74d00b6dc617d39bbb17fc2c6c12287a1d8eaa0f2c ruby-2.5.1.tar.bz2=82e799ecf7257a9f5fe8691c50a478b0f91bd4bdca50341c839634b0da5cd76c5556965cb9437264b66438434c94210c949fe9dab88cbc5b3b7fa34b5382659b ruby-2.5.2.tar.bz2=9f9388a162a3ae9c14ec8999fa3b12ff5397de14f55996cc8761d21c757113db37ace4d326b9606de7ad3a5875aa94fec900dd9b81b2fb0dff558c39422f4aa1 ruby-2.5.3.tar.bz2=6fe89fe9d406bb454457442f908774577369ab2501da4fd15725ccbab77675b88faad739a6c8ad1c7b6690b439a27de5e08035b7546406cdeca65c7b295e2c77 ruby-2.5.4.tar.bz2=3c4f54f38ee50914a44d07e4fd299e53dddd045f2d38da2140586b8a9c45d1172fec2ad5b0411c228a9b31f5e161214820903a65b98caf3b0dfeeaabf2cab6ad ruby-2.5.5.tar.bz2=1b56aa79569b818446440b9f2d13122bf7c2976ab9b2865f5fb62d247d7768dd4ac5b5e463709ffec0f757bff7088afd293c2a8c5349c3780763b6444bb354a8 ruby-2.5.6.tar.bz2=e4511d42d19a7bb39ea79f66bb4eca54b63c2a9d27addc035d6d670c1e59ee48a0c6e9c6bc7d082d1f1114b0668831dce3b7422034517f3c4a06ced0e47a7914 ruby-2.5.7.tar.bz2=7d6a7d41b4f3789f46be5f996099f3eb8321aa4778b2a8ff44142654e769ba4ba2df127dd0f267547e4c8cd6ff46364f18e79838df54fcd7e3fb714294ee0099 ruby-2.5.8.tar.bz2=037a5a0510d50b4da85f081d934b07bd6e1c9b5a1ab9b069b3d6eb131ee811351cf02b61988dda7d7aa248aec91612a58d00929d342f0b19ddd7302712caec58 ruby-2.5.9.tar.bz2=12f58e14cfa6337065b0e82941e39b167813920eb54cbdb4ac4a680dd0cb75d2684d341059e7b4d0da1292bfc4e53041443bd14891a66f50991858b440a835c8 ruby-2.6.0-preview1.tar.bz2=d9cb270529a97670d54f43a0236fab072714e715c39277dab70b7a1843ec818e6700e47e1384c7256f9e0ae41ab2c0b768a0de38a5ecf4f4fff5da6ef5ad4944 ruby-2.6.0-preview2.tar.bz2=3872227e9b1c97c206d19bf1e6ce15a38ee15a26c431b4436605dea67affcf16372358984df76b35e7abaa902c15c16f533ac7af47e3031dea9451bbe459b693 ruby-2.6.0-preview3.tar.bz2=d1693625723796e8902f3e4c4fae444f2912af9173489f7cf18c99db2a217afc971b082fce7089e39f8edd54d762d2b4e72843c8306ed29b05ccb15ac03dbb5b ruby-2.6.0-rc1.tar.bz2=cbd6281b2aab6fbce3f699c1ab57e5423304dca7a547a0b3cd4e8e980326dc7b85b2ca2bfaf3f3a648d40f4222fdf1740d81d422790ee7ae1ba1ed33eb11e3e8 ruby-2.6.0-rc2.tar.bz2=9bfbe83fd3699b71bae2350801d8c967eb128e79b62a9d36fc0f011b83c53cab28a280939f4cc9f0a28f9bf02dce8eea30866ca4d06480dc44289400abf580ba ruby-2.6.0.tar.bz2=ca3daf9acf11d3db2900af21b66231bd1f025427a9d2212b35f6137ca03f77f57171ddfdb99022c8c8bcd730ff92a7a4af54e8a2a770a67d8e16c5807aa391f1 ruby-2.6.1.tar.bz2=fc41429491935b89532733b95476ab9f8a4efc310aad8f4c2bd3b68fba08fd7b6e9ac84c6c88ca892022d1ba76435295f3299ea466f9b5453c07d41cb539af59 ruby-2.6.2.tar.bz2=cad678d2ced4085e99009e4fef83c067dd0e6ead27a8695bc212c0e5112a7fa09ceb27f82638faf91932ef8bdd090f844e0a878ffdf6845a891da4b858588aa0 ruby-2.6.3.tar.bz2=c63c3f527bef88922345f4abb4b9ad467117b63f2132e41722ea6b4234cec3446626c3338e673065a06d2894feee92472807c284cbe613a442c8fda234ea7f88 ruby-2.6.4.tar.bz2=a9fa2f51fb5f86cd8dcaa0925fe6f13d4f19f110b5d4c5fd251f199d16aaf920db39ad3bb50460eb94ab8d471ab2ac8bb54daea4a3bb080eaf45250aac3437fe ruby-2.6.5.tar.bz2=28e0b04ac8ca85203eb8939137b5e5de4850c933faf7f62fc69648fe1886faaabf6cdf48382f9d9585c1720876d10b41dafd33efaeb23341c309917fbd8a6e21 ruby-2.6.6.tar.bz2=001851cf55c4529287ca7cc132afc8c7af4293cdef71feb1922da4901ece255ec453d7697b102a9a90aef2a048fe3d09017ea9378ab4a4df998c21ec3890cdbb ruby-2.6.7.tar.bz2=311ec56d23d0de7a163f66c1ef4e5369b822f8409f8e1f3a25785c803f01c68dd13aa8ddcfb3a0fe6a97bf321950f8d6cd75b2babcb04158e791601914666f7a ruby-2.6.8.tar.bz2=51806d48187dfcce269ff904943dd008df800216ad4797f95481bdeecc2fbac40016bc02eabfff32414839ebb2087511d25eebfd6acead1a1d3813be6c10edf7 ruby-2.6.9.tar.bz2=ff067ebc059094c0a9a0debf54a37aad2c85f7ed47be59299041c9c03a7701529f5063ff32a1b8c56d48ee8585015acba63602ed0176b2797d263d43d67aa241 ruby-2.6.10.tar.bz2=275a0f329641e6c3d3d3c33ffabf585195187eb3baa4fb1dfd35999fa0a80bd5925943fa2711827ac00dffb6c9a1deeadabaf2e9ee401d56926fc167db5ae4a4 ruby-2.7.0-preview1.tar.bz2=a36b241fc1eccba121bb7c2cc5675b11609e0153e25a3a8961b67270c05414b1aa669ce5d4a5ebe4c6b2328ea2b8f8635fbba046b70de103320b3fdcb3d51248 ruby-2.7.0-preview2.tar.bz2=7066ececebbbba4b2933ba1a4f70cdef373169910802259a3e52b4fc144ba298f3cffda4be5fe8a7be8ef769ed43076fa046a9ac2c13bb733475b9852112c6f0 ruby-2.7.0-preview3.tar.bz2=5d8e99e3fd984c7d05c0bc483e1504e81ccdb920cbb2d78cad3c314e197b30316b692fd0199f836acac41246e3a713cb81dc6dd64c27cba56f807df4c193db1a ruby-2.7.0-rc1.tar.bz2=b5f96227775f8bdf19f944a555d0a83d7e84b37bd31fe4b8ac008a3272b1a28a4d94abbb1b5570ee32ec0690ba9d476b837a020a5194bee14bebf6f0e768bc79 ruby-2.7.0-rc2.tar.bz2=9010f72bb3f33b6cd3f515531e6e05198f295bb2a8a788e3a46cdfd776a9f6176b6ba8612f07f0236a11359302d2b77fdecca1dc6be33581edbb028069397a0a ruby-2.7.0.tar.bz2=8b8dd0ceba65bdde53b7c59e6a84bc6bf634c676bfeb2ff0b3604c362c663b465397f31ff6c936441b3daabb78fb7a619be5569480c95f113dd0453488761ce7 ruby-2.7.1.tar.bz2=4af568f5210379239531dbc54d35739f6ff7ab1d7ffcafc54fed2afeb2b30450d2df386504edf96a494465b3f5fd90cb030974668aa7a1fde5a6b042ea9ca858 ruby-2.7.2.tar.bz2=f07592cce4de3532c0fa1c84d53a134527d28ba95e310cd3487ac321c49ee680faeace285de544ee6db432a90aa7538a1d49ff10c72b235968ca362ef9be621d ruby-2.7.3.tar.bz2=e9236138be3e61380140f2e0d42f8fb82ad8f5219d454de2f6c2ec546bb208acc8b0f2020f23e6446660d2b3b9ae873cdd8298471f166a5f1efba8e80b05e746 ruby-2.7.4.tar.bz2=f144c32c9cb0006dfcfa7d297f83f88b881f68c94f0130346c74dfd8758583a68d22accfd0fc9f31db304ab5ff0bc135bfb2868145c0dec1ee6cec5ac6c3725d ruby-2.7.5.tar.bz2=0aa2ac44bc22859a39c43d08b7c7f457df05c2dc36b2574fd70ca399143ef1000dc5e496212db9eb055bc4258523d47d26db3c57a1a5a5d63cf1b3de9f81645a ruby-2.7.6.tar.bz2=4f7f3624afc43da25ebf0f01d5a2f92f72f94bab7423587cfd3920e089b479bf559b159adf2891b996f7e6a98c008a4f73a4a2170e2f8619417660ac1ab24bdc ruby-2.7.7.tar.bz2=24cc772ac1b56d3bb423f1b33716f221bf534f3717a506bf8235a698f8a454db7d79d94ae9a84067153c2f737b3f8f6085f34e36cc04be0d75ae2fdd57718870 ruby-2.7.8.tar.bz2=3a9db8d9e79318f869417f2ebf3365907febc0d1428116eabf3253c51d8420f255782b32fa30a54802b9f5f4187fad80dab0611cc80436feec84db87b0456ec6 ruby-3.0.0-preview1.tar.gz=b94892951f842a1538f4b99022606ac2c0b5031f1ede7eef3833a8caa9ed63e9b22868509173bfefb406f263c65211db75597b152b61f49e5ba2a875fce63a27 ruby-3.0.0-preview2.tar.gz=6fa4191425ae71e41894b60bd9c31d483a562ee8216886360ce18238ab48115b95be0367708612c45f634e7584fba8940a524ba0113ce0f36ce4df78a112d0b7 ruby-3.0.0-rc1.tar.gz=798926db82d27366b39be97556ac5cb322986b96df913c398449bd3ece533e484a3047fe35e7a6241dfbd0f7da803438f5b04b805b33f95c73e3e41d0bb51183 ruby-3.0.0.tar.gz=e62f4f63dc12cff424e8a09adc06477e1fa1ee2a9b2b6e28ca22fd52a211e8b8891c0045d47935014a83f2df2d6fc7c8a4fd87f01e63c585afc5ef753e1dd1c1 ruby-3.0.1.tar.gz=cb81db2c9b698cf8159b2ca6507f4c7f171e4eb387f5730c4b658ed632b7900a169808e6fbec0ee80598d937030ad5d9c56b63a2a339373ec5d9e1c06b7661d0 ruby-3.0.2.tar.gz=e1fba6f5429b5fca9c3f52a32535615fcf95fafa415efc71c46db4cce159f249112c01574c305026be5c50140335696042e47a74194caea045acbfaa4da738cd ruby-3.0.3.tar.gz=39dab51a0d784a38302372b99f96205817d466245202586d22123745761e9cb39db128ec2b984ebc3919b9faf2adf828d19c97d3fb1e56d44be0a81dc5d11b87 ruby-3.0.4.tar.gz=0dfded6826063c1b39bf625a6e13b46c109cb160c8648b78f0965f70e7c7a1a65f1c117fc8f2cf8bdb34d7cbf79fecf1f45d169d2323406d66ab27b18bde1d22 ruby-3.0.5.tar.gz=ea45fcd2ca53b87f18fd8696d00a1e340d2495443216aaf87d3f643cb5bd8bb614a1faacd82d07e7f2b72172397c728316a82d7c34a7b4566191268ea517ccf7 ruby-3.0.6.tar.gz=d596bfd374ae777717379b409afe8ee1655ade0c0539ada7a10af4780b818efe25a28aa50a2a7226741d1776d744e10ad916641f9d12fb31c7444b0a01d0e0cc ruby-3.0.7.tar.gz=66e5116ddd027ab1b27d466104a5b440889318b4f2f74b5fdf3099812bf5f7ef77be62fe1df37e0dc7cd5b2f5efe7fee5b9096910ce815ca4126577cb2abfaa7 ruby-3.1.0-preview1.tar.gz=63f528f20905827d03649ed9804e4a4e5c15078f9c6c8efcfb306baa7baafa17a406eb09a2c08b42e151e14af33b1aadbd9fb1cc84f9353d070b54bbf1ff950d ruby-3.1.0.tar.gz=76009d325e961e601d9a287e36490cbc1f3b5dbf4878fa6eab2c4daa5ff2fed78cbc7525cd87b09828f97cbe2beb30f528928bcc5647af745d03dffe7c5baaa9 ruby-3.1.1.tar.gz=a60d69d35d6d4ad8926b324a6092f962510183d9759b096ba4ce9db2e254e0f436030c2a62741352efe72aec5ca2329b45edd85cca8ad3254a9c57e3d8f66319 ruby-3.1.2.tar.gz=9155d1150398eaea7c9954af61ecf8dfdb885cfcf63a67bbcf6c92e282cd3ccac0ff9234d039286a9623297b65197441438c37f707e31d270ce2fe11e8f38a44 ruby-3.1.3.tar.gz=550cfda2ae492312009a58316e18fd77ea92852718b37443bcd76aac84ba6694fb841fe19bf23bee099f96f5aeed9d03e77c8c02fb194e414eca5f707adbbf90 ruby-3.1.4.tar.gz=41cf1561dd7eb249bb2c2f5ea958884880648cc1d11da9315f14158a2d0ff94b2c5c7d75291a67e57e1813d2ec7b618e5372a9f18ee93be6ed306f47b0d3199a ruby-3.1.5.tar.gz=23661cb1b61013d912b7433f8707bbcd723391694d91f413747c71428e74f8c7385c1304de7d08b70c9fa3bd649e4eb5e9acb472d89dc2ad5678cc54855a24ae ruby-3.2.0-preview1.tar.gz=d24e77161996c2085f613a86d1ed5ef5c5bf0e18eb459f6a93a0014a5d2ce41079283b4283d24cb96448a0986c8c6c52a04584abd4e73911ea59cefeb786836e ruby-3.2.0-preview2.tar.gz=5e9ddcb1a43cff449b0062cc716bfb80a9ebbb14a1b063f34005e2998c2c5033badb44e882232db9b2fceda9376f6615986e983511fda2575d60894752b605cc ruby-3.2.0-preview3.tar.gz=860634d95e4b9c48f18d38146dfbdc3c389666d45454248a4ccdfc3a5d3cd0c71c73533aabf359558117de9add1472af228d8eaec989c9336b1a3a6f03f1ae88 ruby-3.2.0-rc1.tar.gz=798157d785ebae94cb128d3c134fa35e0e90c654972e531cb6562823042f3fb68a270226f7b1cf0c42572ef2b1488a1a3e44f88389ad2a6f9ca4b280a2a8e759 ruby-3.2.0.tar.gz=94203051d20475b95a66660016721a0457d7ea57656a9f16cdd4264d8aa6c4cd8ea2fab659082611bfbd7b00ebbcf0391e883e2ebf384e4fab91869e0a877d35 ruby-3.2.1.tar.gz=f8bbff5e237b501f4042ddc70a19ac1ce74f72f147c90daf7f3007a940136abde37c12a0f7444f713ede09ba847c2cc2897a1742823832e3dc8cce80073164e1 ruby-3.2.2.tar.gz=bcc68f3f24c1c8987d9c80b57332e5791f25b935ba38daf5addf60dbfe3a05f9dcaf21909681b88e862c67c6ed103150f73259c6e35c564f13a00f432e3c1e46 ruby-3.2.3.tar.gz=75aecd9cf87f1fa66b24ecda8837a53162071b4f8801dcfd79119a24c6e81df3e3e2ba478e1cc48c60103dfaab12a00cfa2039a621f8651298eba8bd8d576360 ruby-3.2.4.tar.gz=b695b98dac7bb2c8755a106d949cb1b1b91551092fad263765171ddf8a4d86585259ffab5f7cc9bace70143d645dbe5932cfc61c6dba7817177de391d76bcd79 ruby-3.2.5.tar.gz=d86c0151fabf21b418b007465e3f5b3fd0b2de0a9652057fd465b1f7e91b01d00f83a737e972ea994a5d9231e8cb27e64e576852390fe6c2ad502f0d099fe5f4 +ruby-3.2.6.tar.gz=26ae9439043cf40e5eddde6b92ae51c9e1fa4e89c8ec6da36732c59c14873b022c683fb3007950d372f35de9b62a4fabbbc3ef1f4ef58cd53058bd56e1552cbe ruby-3.3.0-preview1.tar.gz=0f891f140ddc6372aa7c4459f8784126e0c341db7b80e72c51e441c5153c43c2d7b965f7807c076862ac84b9b8b0c6a66bbf66fc341746016151397bb21c782a ruby-3.3.0-preview2.tar.gz=1c5a13e519e8487fd40d932b96d14fa729521925c288e7841ab5eada628e506ceca2605bae36eea1aa505d9253383d53cd933b7a4bff96e6de5b1130c7c558e6 ruby-3.3.0-preview3.tar.gz=94db07a6958c09809b2e5b597fa55a121074e8bacb3bf588c83cf0d35b07a8b070172035a49d1abf0d8ee364a9ace824f34e677f7327ffe1acdbab0938ac49c4 ruby-3.3.0.tar.gz=26074009b501fc793d71a74e419f34a6033c9353433919ca74ba2d24a3de432dbb11fd92c2bc285f0e4d951a6d6c74bf5b69a2ab36200c8c26e871746d6e0fc6 ruby-3.3.1.tar.gz=0c8ea922a79152ac7adbfb2541320565bce6a631692fd39d499a06f53ad6339c16fad8374d171351ed63f7bda3312b26d4f8c058c5b6df3d7548fde372c718f1 ruby-3.3.2.tar.gz=a15ba8d6c2830fcd1f2b36f671acf9028c303ec78608fd268da0585db8e95ddd971666e8029bcfa2584da2184a6534e1f2f2da07fa7ca4494e8d842eed206f00 ruby-3.3.3.tar.gz=0388a96127eb6e53b836f7954af51ff62b84cdb7abeab823cb1349993d805b151204e426b9ac04ca8333fbd5e01c386d58bc37d34c4e9286b219dcda7542a150 ruby-3.3.4.tar.gz=56a0b88954a4efd0236626e49cc90cdb15d9bfd42b27d7fc34efae61f500058e58cb32c73fdef5f1505a36602f4632d6148bf3bd1df539cb5581ae157c78c22b ruby-3.3.5.tar.gz=5c482059628ef9de5d8a6ad4751f8043f2fc2b159b768265be7f3ee0574ad51d9500ee4fc9146c5978fbd51313039c3de39e7b7a4dedc9bcd5d09a41a713f1a7 +ruby-3.3.6.tar.gz=4ae22f5c2a1f7ed84aab7587ff04ce4d9933cffe4347deaef0ab88d22c9780f274c1664a4ee1dd8235bc3cc749be828ffa8db7cb5f5002339a59a599acf3c729 ruby-3.4.0-preview1.tar.gz=29c0e32179f7b823b6708f5328e495cd333fe8dd88f7df7d9051deab47add67b14d899bba565bba1a77e1b04c9693d9708541445c112925777bb6891cb7b2b62 rubygems-2.6.11.tgz=3b0dd38c0aaf313c59e299dcf54f7bfb6e6d84b8b739573ddaf599e584da45ed7b1465f6521131b32f237e31a4796d9ef455b8be685064b3fd77a0355dfff13e rubygems-2.6.12.tgz=ebb672488b50f5fc988eab66ab14ce8e887dcc635f71239a85e32fbf1e919ca70196eb4d3f2fee3486cace7064bab0b8b08339c754b723198e1b0b0a0984ab54 rubygems-2.6.13.tgz=c952b6061a9a0778db304c3aa5bea693e71ae2564abfb19f8b123eef66eb1e3877fc7c36f4f1527da97bb320870cbfd4574ac57ad88e850a44fadd67ebdac152 rubygems-2.6.14.tgz=7743845bc5265df3782f85a23896cbb250d8a2bbc9934a27f274b001afa7aa62f7f00f616296f74747ea612d2cb37dd7f533c931aa72550d84c64d2a73d60daf rubygems-2.7.0.tgz=0bd08fbabcc33687c98365ffe6794ca2a5e82160b0297479d4f19bd899d176b7f4efb95248898b26d873f9fc7d86c10cada6e40cdc48738b0bac261c3aad261f rubygems-2.7.1.tgz=fa4ea123760b03b8b8e8ececc55c9dc34249073fb267d310bd903aa7a613267e5d27990bbf28e32c9a746bf884af8a84a0dc202297272f9d477f7710c21bfb60 rubygems-2.7.2.tgz=0f48c6e46663780a571c7ee0e6e772f2e18a755031e7dd8ede7870f238c214b9e3e38153b1ae8f1f78a9aad63c1a079b86573b3a25c57a600d842bdf92b9c4d1 rubygems-2.7.3.tgz=2782331b31947a23f85b285a3d5e7b66e34fe5847bc84dca4f1e6bfe33ce187ab0cbc814229de8111aa19490b656ca78b7c821e4ea6b425449991c01371b7565 rubygems-2.7.4.tgz=90f72a46709ef847666a6a23eecf24521abd5c294b2da8a246bb4c7f85daf4af39a0634fc8093c7bb7ded2ac137ea27fac5ed94af3b70c49e78594285c7a40ce rubygems-2.7.5.tgz=86957f1c438070135df527a15102e40487fcee93a55251463095e4c8794a8616d16ed9bdead0e0ef83c44806bd5016ecd9e178bef608b66af2e68e2c9c49e941 rubygems-2.7.6.tgz=bc168afc40c974dbc7c37eb5678432ba2ed7469c3f007a159699467ff2cff5205c508237193ee8becaa6eb555b043969cc5f92b2aaa6bf7c958dd7c187e258a7 rubygems-2.7.7.tgz=f93b7eacf5ef8725c40d618daf9deabc7e9eed74b3b7f13ecd16f89205fe24958e782314c52f8a8fe3205b93e20b830b4fbf7ff8944ff1cf56feb7de2d773252 rubygems-2.7.8.tgz=3d1cf68377dfcf102028342258aaff5a7257d2d2b34a80508c85aa258d810add46e65a157f902c271b0b7b568c437372d17246e89cd88f8500e47c008d17f1a6 rubygems-2.7.9.tgz=5f699f47bc24d8ffd4f8f44a509a9df71fcd945ca2574dc9d5050bfe06a44830a368f45d204112d7a4f1877e1600a6fe4d1b6b68f9a55288664667b4220a7d72 rubygems-2.7.10.tgz=48a18c0f202f463c38cf5dafecfbc7cc39245e63c7a059ef2cefadda478483794a929ea6b7e0ef062dd4423230746f1f09d7bec06a97fe3ceccc3325397a3e71 rubygems-3.0.0.tgz=047f4d446aae414e4803517088ef47d5cc66319ff08a3795c6d69e83eee9f3e7c3b05419858f7e5b6a8ec224990ca01178a9259961ef2d7ab737bac352a0f18d rubygems-3.0.1.tgz=dc29ad51ec67b1dca82a23973ea92153482788964d0755bdcd3c650116915c461c6e5fb1c826be3ee04a497fec4ac2826904bd406f24611e77cd8c9eaf4d8729 rubygems-3.0.2.tgz=90b46c2cd4f8baee74eb488a40691cc00e754cefc42029d485163d6ad7782df78ba5cbeab08eec6a4f71febe0f6e635e12a9381393008c58eb5e16396df93fbe rubygems-3.0.3.tgz=1dd585243341901c7b4cc60a4902000c10ce57fe2cc9c28e27e274a2e6029f936cde1c99d7097c93c2c5b2c8bcee5d692c8fe5cc00c996a040e4954b674e330e rubygems-3.0.4.tgz=887c64226ec0b32d33f2ea331936683406d54dc74d19e658a23521e25ab50aa23534fe9eecaf696154247ad1df1d24c233d8900b9aabc79096eebd6afef3f775 rubygems-3.0.5.tgz=f5a97cf67d7d043afba7c1aed014f1b64ff6376ea74d3d6533496bc5ca9742e0ccce1a157e6f67d8fcbe59d8e34bbfbcf4ed8be97acf2970603de6381043cb78 rubygems-3.0.6.tgz=1ef1822a2b19790a36a6d242b7d4584222617baa27787ec58961a9cfeb2733f19f9085490ffc72ee375d3153c7114e050c42e68fc8039e727fe5961b09365ee5 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=5dfb040b746e462c297ebcdf84e0f07cd74b86852055dcf0a7cf1814112099bc674bcccd94b03726aee76b253c9345a45d046cbfea230647644f0fd6b1c1ec96 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=17983c442c54d19196be3626e25c64f5474139c0b973624832ba8730efb047bc747c02e59c82f38397bf012c63ab83f79a9c1b64311cab796f08fe96d7d12a1a truffleruby-1.0.0-rc3-linux-amd64.tar.gz=b0b57082d61317911f101da617333d81ee6bede6b6e18f9bed86544dc413339c830198d90cad7ac94c0c8fb690adcfc559dd9f530abb70507ff6a76eee552b61 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=18f9782de56269389320ddad779ec69c168909198d4572e2ea4c18bc8082a539569a76760a6a6da58722fe08d77d83904aaba14baf4075a2833cbd2efc45dff3 truffleruby-1.0.0-rc5-linux-amd64.tar.gz=134d9ba5db7b8a1960d3a88390cd6f7503a0e8565094fb127333d122cd773bfbf9dc976c659029007e6fb68e93486293bac2ee29ab21dae9cb0c06ba57dd2c72 truffleruby-1.0.0-rc5-macos-amd64.tar.gz=5804f1f27916176f5a270de8aac85bc48c38ba37c4e719b09f5777e5c42429271819378cfe096c3cc33d406cd0726f2e37658020f97a438fd53751019831569a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=2597b375f590755b851d3b8cbad3eeab4c965eb02d0c944044f57e39f6c3db1e2f513e2aa55db789e4a885c697f81ce5c8bdbe9a7e44ee30fc09d234e44fb512 truffleruby-1.0.0-rc6-macos-amd64.tar.gz=2eb177190de0408dfdaf30264132955d1db7783ddfb63880d97d5933f66c5662794c3bb6198edf230fbff348674203e61f7f5481e74ac875974467f2f128e939 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=ab3a3dc19f903e68e36b135729693fa025a7c1950139277255e48c972387ef8399beceb3252ac37cc70c0df92838f8a0ba8c45f53665ac4286ef23f9b240806a truffleruby-1.0.0-rc7-macos-amd64.tar.gz=b8423f50a5292e211db7ebd7e2b987fd5c9eaaf34eba86b0644d2716a7f068f2e56deb4357c516b87b437e64fd5ce8515bc181165cc1042c6763f27d71baa59d truffleruby-1.0.0-rc8-linux-amd64.tar.gz=bcd05d304ee9b4da97193575fb1ad78041a0c7710bb444af6aef12ab4261b1873f472175ec51a187a5e99da481d66b81a132fb691643b793e87d655f31d54657 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=2c758221793c38ca8af1831a5d9f3abd555c406569508ac3a86d3c1ea5baeeacf65abb6e904ed3b1e58f555f51bc85ab171135ff4c3d0e08cdae994a861cbda4 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=42e60b69957f77a8623e0dccb7d215e800c27c622364fa76b9c574e8b1d3a4056a058b61ed91eac2375ecf4e51e482a6e17550aa2894a44d1db70687958033da truffleruby-1.0.0-rc9-macos-amd64.tar.gz=18556ee8d2fdec6907fbc8fc33d8b32ea0c58d40ee3df084ffb233e2fcd3a514a553f97c31dcc25dda3f86b1b805ca5fe3c9bf8cb078b92325515f09db6b88ba truffleruby-1.0.0-rc10-linux-amd64.tar.gz=10a7cb1be6214347469d5797091f73c3d7824bfb32a47c13566573a383380b1df9b79b7901ce0fa3af1c97285c90afac21e2de7a66ed88d9495846743b3b25e2 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=53f0939d9d8c3470cb79316d865b765816032528d77a3cf497134f3aa667a6253ae037410801261a8e7d0628198ac5f6aea5ecf9b7313f06ccc1d5e9f94e74ea truffleruby-1.0.0-rc11-linux-amd64.tar.gz=f89bc9a3310634d39f68006307da0b0ddafae036089bdd663e8372777a9562d201a4e69b2e1a602cff5fba6c78a8d4861b6d1020679bd0c72c71b938a4f36a27 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=3f461c12fa9fa57a55cc390eb9887df88f404661a77bffb44f82b4c7e9021513a6df9f6d5f332a36ce0c28ae7e3d5afbbe15cc4b814bc7f86dac2e5ec280f947 truffleruby-1.0.0-rc12-linux-amd64.tar.gz=85f042c308ccdfbeb318cec37056d8d970cab51cb0779425b85b8f76b0a1dd9cdec3191ae2b6b9b6be6e95767db814496450ed20076addd9bd495742f9de3c8c truffleruby-1.0.0-rc12-macos-amd64.tar.gz=067a0f63bbaaed4c8d4120f758c8ecf8c52afd1d30ea9d41489e26289d57a574d2d4ae29e29655378510adfb3f4a07b04b403d6ee98ee6b3d3aa8bff9c8d718f truffleruby-1.0.0-rc13-linux-amd64.tar.gz=1eb6b80cb05133d253f20629a11ed9ec3f37da002d5668cdc6577b2a20524e0cdd4d739d3f1aa2e8c518e2f7ebfd519ec1c647293714a1133ad4d569375c0e69 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=e3cddb0d0ae48f7d5ee4dd094ddb5a13f6a7aff1521b1adf25710971664b235cf67144e3b81525fd710dc49b6f6f6ba06e10eee1df5dc08119e9494c6be86934 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=c982194675b66a0433bd5517fc6f1564db669f595f8c7ba4819bf37e0599474d49a0c606577a898c27fa5ba40ab793c62d8211e7ea398d6b3e2bcc31eb5d55f4 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c14e396396385644333fb4c4aa1fb4b934a3f4e46312146821e5dcdaa097cb5b1efbf397c1dd6117d909803fd27ba8d835904672e98d43dc565e907fed752e1b truffleruby-1.0.0-rc15-linux-amd64.tar.gz=f27a75f929a6e945e49ceaad12f484fdaa918469a2f639b572fc4737b78e1cde0881697057e13a58b2fab7ac64c3a71bc9951561c3a8728e3dec814ef5e95fee truffleruby-1.0.0-rc15-macos-amd64.tar.gz=7aa029c4999d4608c9bcc491771b0434267032dbe9dbf504728079f87ce93e6a90e0fa839295b88c00e5a025186ed0fcc42361428b7874c05e222edb108d6c02 truffleruby-1.0.0-rc16-linux-amd64.tar.gz=e8c508dede11d4f54cf0b15cf92b50caad93076a6065bd2d6784c5ca739f5923ea2b894c6b2b52131f62187c8b305cd11a960fb5a670789802d59b6b2999f0af truffleruby-1.0.0-rc16-macos-amd64.tar.gz=841eff077c38bf594b101edb15942f601ba0dada2122b21b016f53251aa2a635b8d0b63b49bdfb50259b2545d1f498bca95d5f771a15a28edb0dd07216c9b709 truffleruby-19.0.0-linux-amd64.tar.gz=8ec6c7829351e0dc2cce57305947cd540734fe5a0b95b9501d4179993727ab2c331e9fb639b9865c0fed596df3906adf3dcf2efb22c4cfdd23a3dc2137025fd4 truffleruby-19.0.0-macos-amd64.tar.gz=912e0c15d32e40c884b2caaaf9a86a71450d441c960ef98a63dfce80353619073b146dcfe03d9af4273b2811d0899eebe922cc84a51d6f5e6826cc436d793f78 truffleruby-19.0.2-linux-amd64.tar.gz=eec92bfbd776acd61709a428b90b1029c5ea83e5ea839304d23cae3a541dd4fab3b387691fa76643f55d5939c9cac0cbe70dc0b5786e5e0e5d20f3fcd9a21356 truffleruby-19.0.2-macos-amd64.tar.gz=ce647b76c9931feac55baa5acd2c87d8335c606bc5cd7e462bd92ba1b09f4bab5db927f021e3119abfd85c33377003d060f36cf64eb121954fce8878112f01b5 truffleruby-19.1.0-linux-amd64.tar.gz=db01e6dc09fc5f39ca466aa94f725023d49a8f52343f129bf8c32b7f5f76ccf2d573ee3344fce3d5aff9983bc9af618cc5ca6e1dbba93b3f604e4f33f8a69b3f truffleruby-19.1.0-macos-amd64.tar.gz=f002bc0b6efca11eb97c4aa6df33d2e0fcc1de3443efd39d912b028df9dd8954cb76ef3ca7fbe140f4e922d6ae4c1a6a20853490ef1ea0749293e2fcd4ffe8fc truffleruby-19.1.1-linux-amd64.tar.gz=ec031e8c216e31f034d97aaccd6441869221d6946e18f375b44a866550b8e8eb4b2fb923f9ce1a62853bdcd5b9201e0f5d2732ca6525d80171d5732ef522bd25 truffleruby-19.1.1-macos-amd64.tar.gz=1c15918af939a8fe1779b71d9e53d2ce09ca7353173a3b357905d9fe1981ff013cf0f90c6b47e1ca66dd168c2f2d742f28a5fb134cc0231d36146da99f91c3cc truffleruby-19.2.0-linux-amd64.tar.gz=1248bdde9cd3651d7042fe4cecff4ad35534868d543fe2e6f3a5bfc3bc9d10d57b4139fc070f0a03861436a1aabc9a8ebdf3356f39b77a4b8f6a1dcf492f70a4 truffleruby-19.2.0-macos-amd64.tar.gz=92c3154ed229a115cf392826494745aae06dd9228dd0996c2c44c550552f13f9c254367d068452fa4a84eef79c19601c79b87e10f3121fd7b83b803514a41cfd truffleruby-19.2.0.1-linux-amd64.tar.gz=53c78cd1f255f2b7031a70a42b65c0bf80c510b9254f5d7ba82b4787f55f5b09cfa9544c424a90f4619a74179fed07c168bd501e34772ef836a773e89c467cc5 truffleruby-19.2.0.1-macos-amd64.tar.gz=ac11523cd49fac50de1e441039e429fb8cd6c7051d537e5083b64fa68eaa19c9f0a966b269da906c367985f229af82a4811282dbfd0a76ef6565162e1081a659 truffleruby-19.2.1-linux-amd64.tar.gz=c5ffc1b592a74e836a4f6ec75b0e103150a4a40d3183ae853ead38c951a85378163111cf0bd2b81e44548c0a7aeaded3ae8a7ae558d5a02dc9e2cce992b79b58 truffleruby-19.2.1-macos-amd64.tar.gz=bb467b91f66eb7d1e6f1a54a7bc0a3d9503bcbd935e8a02da9ea0b749a51e354b1140d4a4dad6fc05312b560bb9ccdcce4f6583bccd19bb5afee19bf494102fe truffleruby-19.3.0-linux-amd64.tar.gz=0e94777a3feabbf0107ed40847e20dd4e3696ff2b7c3f6ceddf3a53ccd812bd003c84c62a750e8fac9d2490374bf792d69174b48c3ed36b593485d86729136c1 truffleruby-19.3.0-macos-amd64.tar.gz=95470c389e24c865ecdc3d299005cd98f8221a128f3cd75f899b6b7ae5d6dc07962443ce0ff38dfd014589d5aaf08b718dc870a72eb7ea6ced18ec2b2db63095 truffleruby-19.3.0.2-linux-amd64.tar.gz=dc5309b71980657f750b4dd4f8b3bc4e191bc305b638b1e562ff5b0ad7fbba40079ba674caf46226a46b5ca58c10f812354786696264742f351b129fb088a672 truffleruby-19.3.0.2-macos-amd64.tar.gz=ff1c37485ebeff3edcc7081ce09bebe5541012dedff6997662c7f8a064e0ab10bef9a5cdf834263a06ae04ca0391743948bcdea6e6c9d7e1cfef9f21523c2bdb truffleruby-19.3.1-linux-amd64.tar.gz=c724547a9eacfdd135ce05eac9dcfe74e58a5e77c97f88103f83b8513c15c975a0ecf623f623a425ec81fad1b64d3b5e135660d6943608ad08048cda00eace79 truffleruby-19.3.1-macos-amd64.tar.gz=d746b2ad410c15d145d36c676a070ae454ba8e5ec6c594d5ebcf54b1fc719f98e8b8f71b6fd504c3d38df286bd11c5114f73b5ba39be312b11d42d4ca1a17d02 truffleruby-20.0.0-linux-amd64.tar.gz=4efea5ded5fcc6886befba3a3720fe1e5b2e376d46738565e8871a1ce0201a33ed52e78b8af2fb389618bdea99466d126d8537dd0919b0c13f8ff1940cb3e52e truffleruby-20.0.0-macos-amd64.tar.gz=b36488330514b77c7115689042cf2482a0beb9f72a0b05fb4c7a6ecb0835a3da47c3b15c41abd6ffced023e65ecf7eabcfbcc6e41901dcddd0fb3dfed46564c6 truffleruby-20.1.0-linux-amd64.tar.gz=116d57404540b85c15b321793a6f985624a2044af544e659b3607e50159703af5d445e22bff28ae2182dfa752f7500d420e250f6deccc98a2f01e89adba8ac3a truffleruby-20.1.0-macos-amd64.tar.gz=9b1267101dfe78b85c79f7528eb4de96b16933e66d5771efa6272372dac0fb35b199bb9d42773d61f4fa7a15d6cbd18b5753c148f7c3e477c7c4b21633f12b88 truffleruby-20.2.0-linux-amd64.tar.gz=a37eaf8475364b74d948979ac13dc6e6423bf11949ad1d0f2925f78a4495e80de9767001ccdb777c8cfd7f545839fad4d842522620c3acad179404bc4ce6752c truffleruby-20.2.0-macos-amd64.tar.gz=964c1e02cc53e1646060334a9911771e679a8344d811a0f77d5cae3529dfefff259c45505ac84b7debb958514cd5d2276ffd435802085494e0229dd140ce8f00 truffleruby-20.3.0-linux-amd64.tar.gz=ec2d8ff6a5d45fd7091e26430c67cbbdc0f8ffa41e9ac574d48802766fcd144e1f446db807700247ad6d8046b7ed070b5da70ef667e576d6fea60cc64ea5484f truffleruby-20.3.0-macos-amd64.tar.gz=1878f94e05a3c40484bf944a72412b179aa5415a16a7ebc1610cb512a1e1c4a2ce0e98685257ad6e5c14745245c35bb5b28205fb687292c4f17193cbfb3bb606 truffleruby-21.0.0-linux-amd64.tar.gz=b7d1b76cc015d136dbd74515431f4447730850475f81b00885b71b95819134db2656d941736048db42d519f03e1f2df066226513b77208adbdbbeda1f49cab11 truffleruby-21.0.0-macos-amd64.tar.gz=7677b827a9c1758d5f941c512cb0fe8daaa19c3db77b485d7dfa43940151d6b9094c4d9271e18ef5014630142dffb93d168c7ac631a3b5eef6fc61b2f9eecf88 truffleruby-21.1.0-linux-amd64.tar.gz=010e9fb78cab12486641780392be0f284da08dfd955f3a0d1ef72adb52e1c9024b54dc880173645aea2af680b3670a6bb01409198b757239edda4cd9bf2b1e90 truffleruby-21.1.0-macos-amd64.tar.gz=96ef8481faef1bfa7f01bb4d396818ef6f0943d19c6a23dedb68f8346740b72bf06efc707bdd29158cf991cc7073c97f429a07b02c2a48050512b46369850058 truffleruby-21.2.0-linux-amd64.tar.gz=c20af04909a852cb676c90403d852fb367d56eac0f9cf8ba42caa4cad1013ba393cc4611e434614ad132b7b0ed61160aadd887001b08de0767cf58f5e149efe7 truffleruby-21.2.0-macos-amd64.tar.gz=0b8d9633fde53aad78f0baf52858cd5a5716f53ff21698baab17da4a625b4369b88dbd664193e3f0d1b40e64c88699ab4f04bbe40f54189a588c93678962a7be truffleruby-21.2.0.1-linux-amd64.tar.gz=15ceeee383114f974aed5f16c99131d56947e13cfe248b97e55d61263ccd51aa56fc3e0df215196ef7f80ccba9e7f19e7f261d7a91d54bde2d9992caba682d82 truffleruby-21.2.0.1-macos-amd64.tar.gz=8a8762d90c19db4f48433ce0e3f3339e290685d79c6ee9bb7d4359c741edfa6a7360ff65124433d964730ac25b2cc6d8b581191b0a51479f11c2a80031a6c1c8 truffleruby-21.3.0-linux-amd64.tar.gz=b0c07b1ea797de92447a81b350d460c125a2efaff3c290637c4bcf1c216b5abd11148cfb143ad397062a96f36beade8234d0785c42f58fceac0011f629a5220b truffleruby-21.3.0-macos-amd64.tar.gz=42e607fa52a534123989ad232691ede65aa1c615f39320d93aa8ab9c21924eea7bc0aa49aef1a540ec972e2b3dc775d22a99eca3e0c9bc450c525f9020fbb975 truffleruby-22.0.0.2-linux-amd64.tar.gz=2231a0cfd27238c34ea0bbad27ba387453e48f39032607cbb829b347ea6ac804df15eb3f84d50b09248782d6202284498e7bc9aaa2060f0ce81bb83a84d700ad truffleruby-22.0.0.2-macos-amd64.tar.gz=1d7ac44f0862ad23cf17a7bba73d23dfd4727aadd9a3aa9633361e9bcd19655d163e160eae9c8db8ec9892f8fbf82d7a38b1cd689475bf41609a828208098623 truffleruby-22.1.0-linux-amd64.tar.gz=c4c2f9bf4236118c8ea62c08bad89e1034ecdfa0c4815693961c4d2b1b30ca043fe958abfec9cf36a8638aa2e005e71fcc244ebffd9ce11eb68cf48bd98c29d3 truffleruby-22.1.0-macos-amd64.tar.gz=507004ade838e614955e23331845839be656aaeae7869ed3d989c10e6491775a12313ac9ef03e14945f20f5e76d46ce6f7bb860af68a627c48065399cea3c567 truffleruby-22.2.0-linux-amd64.tar.gz=37c09249ef387df3e0614f646abb444cb5b7b2751538ab0432e703abe92a81b82e0d15f89d5ad7cd58afe5f30d9a92dc8471d19f1c1ce10b50478ac74f247739 truffleruby-22.2.0-linux-aarch64.tar.gz=49a7cfb4c81980d9c7a1588ef9f76a9bfb759d4b1925ab11f230d99c15a62e162a08249d23cf5646e2d38ecc2005e27103f2e5d92b83b0a182a4e64319b70c0d truffleruby-22.2.0-macos-amd64.tar.gz=d4c206fb0a5e63c5b7f61f2e62de854e4d0817075ef9ded237d98cd821c286e88d7b150d140d9907a957209f39be96c7025560e3908c89aa337925d2fba690af truffleruby-22.2.0-macos-aarch64.tar.gz=a01c18803777a74717ad699b6ee51eb759d881fb436d24338b557c52d4a693079d7b55f108394ccad0dd69c974cb895f4a36854355e84fecb67e41bf9eb18514 truffleruby-22.3.0-linux-amd64.tar.gz=d53472ae892dadc81c6fe63a597ccfb67e133958431b11716db4d920c78fc86f7496e4b10322d041c900bed77d27e02850da20aa95b297d63a9de2e72cdf3c76 truffleruby-22.3.0-linux-aarch64.tar.gz=dab63d49db4722f0c174ce8b882413102520ff649182946ba332ef5ba0fc6b58913595539a20b59e460faab2fba36f762dc8eb66aa729d4a6bb90feb2a95f053 truffleruby-22.3.0-macos-amd64.tar.gz=15c91d25fd6fb1d9f3f2a0b36676da5c8a76d62be86cff463ebe6c7e6aed2d9b6de9062021ab1b9b29cfb7a92b5682c860939acd71d12dba7e4a6bf3964fef3d truffleruby-22.3.0-macos-aarch64.tar.gz=7c44d0dd07e4ecd84a92f6dd574dc185906121b8eb75f6fe097b9d4738aa30751664d70e9027e072eeaa1dffa05fe7bcfc06be0c2dc950142f60664baf5eac69 truffleruby-22.3.1-linux-amd64.tar.gz=f41d3bd22500b7291121368169f8558df4563c840a01b70ff7feea3593f0152d8d77d4437af362bad62f25b79bce1ce8ddaa1bd8172a2a7ef8b61cdb6e478c9e truffleruby-22.3.1-linux-aarch64.tar.gz=1ca5221f0dc5ae3e0bd9545be474e115b2e62737701df95c6ee6cdaae5d82815acbe6af961ff23afee64dc26e655c7786d4347e3694c140773f065534322ee59 truffleruby-22.3.1-macos-amd64.tar.gz=bae16cc04c6018703833121f4258c3f18fa5062309d0600458be3c51c838bc63976a026db0f28d23005df9b640ccad0a9cafc56610a5ca9c24951c66b62097d9 truffleruby-22.3.1-macos-aarch64.tar.gz=b56e230d8fbc95d19364e695aaf1e552238b02ace7056f636808a7d7510777cddfde572ace5238ea1e314351bdd1a053ab3912d0889f51f55c722797c83eaaee truffleruby-23.0.0-preview1-linux-amd64.tar.gz=d538412f12d5ce743c351acbaa483b8b85dd2cf84fe06b3e90ca21f3c2fc0465df9c1773b3515fe4296d599f45e9cbb935dc5a69fe45668321e5639d58608ef4 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=f10b5ac749b11f93c2469f2c8a713ad090cb653761ae0a3e1ba4c19b0c96bd61c5e8da74d8944f9487c2d327d268a188f2cb56028d2beaca2a7816e63123600b truffleruby-23.0.0-preview1-macos-amd64.tar.gz=cd9db49c4253bd66cad6f9ae111c83d3befd0102a7ccb72a2407d22dc576ba7f3a26a90cd479f26dee3565d2f893a2b7c8b549e2351336f35d2632e57966657c truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=28b77d9943cd1617e0445633a9fea8911cfa975f5c581192439cd0944d2a17c2b0558e3e4112588b5fc77b57c48d857ad68ac51fcb867250625ad85406d87acc truffleruby-23.0.0-linux-amd64.tar.gz=da702de2e8c994f2646a3de5b44824210dbd37129cd2f91c3bdd990a1b0d0b05dee4443ad0f6cf98fdb4e489c9f4cde64f3561baf486dc642d4981a1a1812925 truffleruby-23.0.0-linux-aarch64.tar.gz=808254a154adcfd1bbd6e22bcdafebb6169c6f8cfd1c55382d446bb66002384ee844dcd8b5f642703ef440f7566645d190081f45e04a7d8d59bf87571cb4430a truffleruby-23.0.0-macos-amd64.tar.gz=f775d57e63c606eef424a1115408ed8539ef47d6bea0125ad1de7ee4fd5971e96747cb7f5d22d91d2f004edbd6ed6b9b5bd014127dc1abe7821a3a987a72d9dc truffleruby-23.0.0-macos-aarch64.tar.gz=000069854458f81d97eefe14123fbb69937942825e77d35602d55fa279123808177a34f252aec9dcfa48b93feacbee81ae0f0e7043c2d8a9ace2a4bb61ab253f truffleruby-23.1.0-linux-amd64.tar.gz=1868799d989c51798cf07b5243457af7ae2436dd19805fd634c98b2f1885266b5c3ec81dde668c2e5a290e9028f6f9fd223d153489df6ffcc74d45240aa020ad truffleruby-23.1.0-linux-aarch64.tar.gz=2766621877996ad35fddb94f978feed531307e8abf601dcf863754c96782b8149c3ac512dfe6dd2bdef0fe0e8a968bdd77608c41020434aaef4e7250c09edd74 truffleruby-23.1.0-macos-amd64.tar.gz=06c5a1d6ad644fd81737f0a1fd24c1529f712abe2a4485ad597aca7c35ca2af898121bb5883552cf518e2afdcb4221c8ad013759b46a69e34249e7c5ebe2b170 truffleruby-23.1.0-macos-aarch64.tar.gz=496cacc5cf413a48b60184e097a962ab5d2236c539f07cc0a9a2d9ef57dfc911a26b125cc3ad9408f6170c6f93c7562f35729c8313be0301972be21c10097942 truffleruby-23.1.1-linux-amd64.tar.gz=dbca85e281bf2484371a0bbcc202ca700acc704304d966b9202cf3835e82f6eb502e43522355f4c9e5a743877d93f5609006fbba2c5e6343a89de130e5209f6a truffleruby-23.1.1-linux-aarch64.tar.gz=6a58842d79247d8a64c513d68db9d53ea5640c02f71a1bc45f103baaaca67bb224939ae5f21ef55daa9d9b9697404052d39a3c382768ca366ab7892b8bf1abbe truffleruby-23.1.1-macos-amd64.tar.gz=7cc6bc957b7ffa42e9fbfe2f6e3014bf1e7996f2754e9e74377078c2c7bc7ac8e10598f1e1452839fc5b9583c823a2a735731ca193a6af2814a02566cc4cd9e4 truffleruby-23.1.1-macos-aarch64.tar.gz=a85b8189ef8a280f6a27d4c1c93893f844266dbdc15b8c4988cdf581613a353508fae4872ac9380efcc47f36357e137861521712c00ce8548041762a8987a9b2 truffleruby-23.1.2-linux-amd64.tar.gz=6307fd71fb1431fb12346d1f13dee4b3afe53947e8a9c1f3e3aa0baae5f9fc9e1496ede0a7d86b169d912ffef9625af998b4e698dc57a2a649140150e3fae28a truffleruby-23.1.2-linux-aarch64.tar.gz=0f0c5e4aa4e9fbc9b9f91d2b3d3fbfe26e78c5bc5b369fc78dd54775a7582b8c084a64f02848058bec79387fd80b09a5a5594ecfb268635fe76e1f9d957c2e92 truffleruby-23.1.2-macos-amd64.tar.gz=648401a73b29c28862a1fa077c2e1bf8fff65015c8bc690ff883a00a3dfd99389ffdb71f39ad85a4f16c531470f4cc891ae51ec927a426b0fa05fa85c9c6a2f9 truffleruby-23.1.2-macos-aarch64.tar.gz=4ec88684c09aacfa1d8bfed9a17243579ededacecd869e98e12841710bae29ed6e5f080611e53fc217a853f730bb2a9cb3d47ef15443eb8a1ad76a120118c8a5 truffleruby-24.0.0-linux-amd64.tar.gz=3a59a4dc58ad03549d8e63db1485767757715fc9aec21b2b67b1440b13871a04541abeff9bc8201b3088e1865360b1667459e536d3cfb09687dbffca95deafeb truffleruby-24.0.0-linux-aarch64.tar.gz=50f3993b7362bb6e7da80f7327df3d079bb02f98b67012e2135005d77e61648e4f3268f767d8ca245ec5889ff934fbcccb94fd5ecbd55bb0cd9cca900fe10509 truffleruby-24.0.0-macos-amd64.tar.gz=9ec8bb340b15e29550448e123e3ab0f183edb9bbe7e052743cb2306cbd1956a5789c5a367c80c5e8d913dce2b804448dd6815e4d3421515166daf8db51d37c7d truffleruby-24.0.0-macos-aarch64.tar.gz=499f83bf65dcb6ecc92414a3550673e6a0baaddfe3ab13c0bd7aa1bdde1ae2a61d9d0ca8001c0d12688d9e09f98f9e2946a651220fe7d200bb0ec6f285394701 truffleruby-24.0.1-linux-amd64.tar.gz=62b4e8508eba8cdaac70e99ac9cb0b33a663b4195d79b2dad3d771ef538c6c41d1d91bb7bb07fbbafbcbbcaf17814ffaf6d6bdbafd474ba6a8ecdac30315a8c9 truffleruby-24.0.1-linux-aarch64.tar.gz=817d877848ea4bb55658ce34bbda52926be12426a8a5e1c4588bc0ec1896018b06dce176336b382f80a7c6d073d4331b20694a7797ee8fdf0177e973053bf929 truffleruby-24.0.1-macos-amd64.tar.gz=2ea65bea154aa38cce3f00f24fc9a4aab5e7478fafd070d0cc966878371c070d5a1776b7405e2c9e4cfa14e5c51219ed0fa988294eb4708690983b348886f439 truffleruby-24.0.1-macos-aarch64.tar.gz=bc1923e21768d34779c1bcd7850456a01ddc01acd1ccf20f4fb4a446fb847f8c51b1ff4a7c0cdc317ef8ce057ac24f18f25b778a02a6e2b185e0055d946ecaf2 truffleruby-24.0.2-linux-amd64.tar.gz=5d111beb862b618c4e6a7f8aea1d3d6476740513efdd59bf980a2b6d525a017f46fe02017b075962a4919a001b60bd9a070e69fedfa8a85533c0adbad2a8d86b truffleruby-24.0.2-linux-aarch64.tar.gz=8e3ba19df4e5509c4719bc3bb621f70ca6a0e683d48a296703649b88abd83a165e8a64ad2d7dc45394b6de0b214a95a395fa449f5393dd9e67deab9e149cf494 truffleruby-24.0.2-macos-amd64.tar.gz=06d3b5533c4e26aa1356e602c672efad99208aaee96110904216e16dcfb1d99a7535c3ef275f9a14635dd2f05110798b3c75d71199f6010f23c92c6990492cef truffleruby-24.0.2-macos-aarch64.tar.gz=ba36d3f1680112e6623b14a4bb902a5f65f11e9827f44462161b1c79ee344ca340566289aa1f841c1e213daef5608c159343cc203d07f41c2a55eaeb25db0987 truffleruby-24.1.0-linux-amd64.tar.gz=9a93fd61086fabcb6c4f3a0fcb16e81f42b0203a24a04209fe446eb5f88d78e2ac59ab54d42cc30ef5417199a88b452973eecdfafc57c7877e11edf0a3d42b13 truffleruby-24.1.0-linux-aarch64.tar.gz=ca23edf279ee9b4693630df9596c6e269bb544e06bfd02620447f51108d9e9b4dc8b3ecbcc7a8ba1280560c0eb4b59474e75acead81799e4c51365acb5676d24 truffleruby-24.1.0-macos-amd64.tar.gz=65b661b3bf497bbb090a2cb49607aa00c3e5bfe95eb19c7736d798715d55fe07ddb4e8d8c25c1ec4b7b304b37205c7de9d8ac2d56005c9fc43e4dc81ae699c9b truffleruby-24.1.0-macos-aarch64.tar.gz=ab665d995bd63839c0bf6ed1171875cce7974d49ed79953a05ecdcf13d815c0a5cd471f40839f3f51a1b3128b40a4ed34d9b89e4c3f343b38c78276aed667956 truffleruby-24.1.1-linux-amd64.tar.gz=78e4e8bd910e4b3b41e927f6158cf8cfc74da5187969727d5c5303416310c5b7f72fde239993ecd5ab51724785cd80b2bb9a422a0475320fca57ad40b26d2786 truffleruby-24.1.1-linux-aarch64.tar.gz=c4e3aa72433622f96216b053862beb65861ab20ab28cfc50f51452720173f0a836ee69335281c4c89c6289ffa6f42517b9487d1b6fe16926aecfd9180d6f8195 truffleruby-24.1.1-macos-amd64.tar.gz=099d1abaa8677ecfd298e974fbb37e21bff2ad45313090cecf9a2799b79b74223ca4f95fb873cb7148bb2754ea3f923cfb553dd1dbdf6f1c088a3793bd991871 truffleruby-24.1.1-macos-aarch64.tar.gz=8980a71fc423c454ceaa16b46ba085a0164bf22e3e2040e960623148f09fea4c467b304774afc2ea37d9e072905eab3ad65b3c4acdc7b01ba238e24829cc16d2
rvm/rvm
3e9c4188a8af60e54b09c8657fa0d05571dfdc32
Add TruffleRuby 24.1.1 (#5509)
diff --git a/CHANGELOG.md b/CHANGELOG.md index 74a4974..ab94d9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,594 +1,594 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Use OpenSSL 3 for Ruby 3.2 and 3.3 [\#5480](https://github.com/rvm/rvm/pull/5480) * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) * Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) * Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) * Install `libncurses-dev` instead of `libncurses5-dev` on newer Debian and Ubuntu versions [\#5477](https://github.com/rvm/rvm/pull/5477) * Use `zlib-ng-compat` packages for Fedora 40+ [\#5479](https://github.com/rvm/rvm/pull/5479) * Detect core count on ARM-based machines [\#5498](https://github.com/rvm/rvm/pull/5498) * Fix requirement check for Ubuntu [\#5500](https://github.com/rvm/rvm/pull/5500) * Update location of homebrew install script on osx [\#5505](https://github.com/rvm/rvm/pull/5505) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) * 3.3.3 [\#5474](https://github.com/rvm/rvm/pull/5474) * 3.3.4 [\#5488](https://github.com/rvm/rvm/pull/5488) * 3.2.5 [\#5490](https://github.com/rvm/rvm/pull/5490) * 3.3.5 [\#5499](https://github.com/rvm/rvm/pull/5499) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) -* 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1, 24.0.2, 24.1.0 +* 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1, 24.0.2, 24.1.0, 24.1.1 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.3.15.0 [\#5482](https://github.com/rvm/rvm/pull/5482) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) * 9.4.8.0 [\#5484](https://github.com/rvm/rvm/pull/5484) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) * 3.1.6, 3.2.5, 3.3.2, 3.3.3 and 3.3.4 [\#5491](https://github.com/rvm/rvm/pull/5491) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) #### Upgraded Ruby interpreters: * Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159), 2.5.0-preview1 [\#4204](https://github.com/rvm/rvm/pull/4204), 2.2.9, 2.3.6, 2.4.3 and 2.5.0-rc1 [\#4261](https://github.com/rvm/rvm/pull/4261), 2.5.0 [\#4265](https://github.com/rvm/rvm/pull/4265), 2.6.0-preview1 [\#4317](https://github.com/rvm/rvm/pull/4317), 2.2.10, 2.3.7, 2.4.4, 2.5.1 [\#4340](https://github.com/rvm/rvm/pull/4340) and 2.6.0-preview2[\#4395](https://github.com/rvm/rvm/pull/4395) * Add support for Rubinius 3.85-3.100 * Add support for JRuby 9.1.14.0 [\#4224](https://github.com/rvm/rvm/pull/4224), 9.1.15.0 [\#4258](https://github.com/rvm/rvm/pull/4258), 9.1.16.0 [\#4316](https://github.com/rvm/rvm/pull/4316), 9.1.17.0 [\#4366](https://github.com/rvm/rvm/pull/4366), 9.2.0.0 [\#4390](https://github.com/rvm/rvm/pull/4390) * Add support for mruby 1.4.0 [\#4286](https://github.com/rvm/rvm/pull/4286) * Add support for MagLev 1.1* and 1.2Alpha-1.2Alpha4 [\#4289](https://github.com/rvm/rvm/pull/4289) * Add support for RubyGems 2.6.14 [\#4205](https://github.com/rvm/rvm/pull/4205), 2.7.0-2.7.4 [\#4276](https://github.com/rvm/rvm/issues/4276) and 2.7.5-6 #### Binaries: * Ubuntu 16.04 x64 binaries for Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4362](https://github.com/rvm/rvm/issues/4362), 2.2.9, 2.3.6 and 2.4.3 [\#4259](https://github.com/rvm/rvm/issues/4259), 2.2.8, 2.3.5 and 2.4.2 [\#4161](https://github.com/rvm/rvm/issues/4161), 2.5.0 [\#4272](https://github.com/rvm/rvm/pull/4272) * Ubuntu 17.04 for Ruby 2.1.\*, 2.2.\* [\#4233](https://github.com/rvm/rvm/pull/4233) ## [1.29.3](https://github.com/rvm/rvm/releases/tag/1.29.3) 10 September 2017 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.2...1.29.3) #### New features: * Add RVM commands missing in bash shell completion [\#4078](https://github.com/rvm/rvm/pull/4078) * Railsexpress patches for 2.3.4, 2.3-head [\#4084](https://github.com/rvm/rvm/pull/4084), 2.2.5 and 2.2.6 [\#4153](https://github.com/rvm/rvm/pull/4153) * Update `gem-wrappers` to 1.3.0: Show warnings when the target binary is missing or is not executable [gem-wrappers \#9](https://github.com/rvm/gem-wrappers/issues/9) * Detect Zorin OS as Ubuntu [\#4140](https://github.com/rvm/rvm/issues/4140) #### Bug fixes: * Infinite loop in `gemset_create` [\#4102](https://github.com/rvm/rvm/issues/4102) * Command not found `__rvm_remote_version` error [\#4085](https://github.com/rvm/rvm/pull/4085) * Fix path of version script in `environment` [\#4117](https://github.com/rvm/rvm/pull/4117) * Define `cd()`, `pushd()` and `popd()` properly when using zsh [\#4132](https://github.com/rvm/rvm/pull/4132) * Update gem-wrappers to 1.3.1: Avoid warnings for missing ruby binaries [\#4104](https://github.com/rvm/rvm/issues/4104) * Handles :engine=> and :engine_version=> in Gemfile * Makes $rvm_ruby_string is not installed searchable by adding a fixed keyword * Correctly quotes suggested install command * Fix path to version script in rvm-installer [\#4134](https://github.com/rvm/rvm/pull/4134) * Fix rvm autolibs status, fix [\#4123](https://github.com/rvm/rvm/issues/4123) * Ruby 2.3.x and older are not compatible with OpenSSL 1.1.x on Arch [\#4006](https://github.com/rvm/rvm/issues/4006) * Allow comments after ruby directive in Gemfile [\#4056](https://github.com/rvm/rvm/issues/4056) * Ruby 2.3/4 compilation fix for GCC 7 [\#4080](https://github.com/rvm/rvm/issues/4080) [\#4115](https://github.com/rvm/rvm/issues/4115) * Add warning for sudo users [\#4009](https://github.com/rvm/rvm/issues/4009) * Allows running RVM shell function in Bash with `set -o nounset` [\#4013](https://github.com/rvm/rvm/issues/4013) * Ensure `rvm_hooks_path` is set [\#3902](https://github.com/rvm/rvm/issues/3902) * Allow building static ruby with `--disbale-shared` [\#4091](https://github.com/rvm/rvm/issues/4091) * Restore detection of `gpg` command for veryfication of signatures [\#4059](https://github.com/rvm/rvm/issues/4059) * Update `gem-wrappers` to 1.3.2: Avoid nested chdir warnings [gem-wrappers \#11](https://github.com/rvm/gem-wrappers/pull/11) * Fix RVM folder cleanup during installation [\#4333](https://github.com/rvm/rvm/issues/4333) * Fix found project file reject reasons for bash -e [\#4314](https://github.com/rvm/rvm/pull/4314) #### Upgraded Ruby interpreters: * Add support for Rubinius 3.82, 3.83, 3.84 * Add support for mruby 1.3.0 * Upgrade RubyGems to 2.6.13 [\#4142](https://github.com/rvm/rvm/pull/4142) * Add support for JRuby 9.1.13.0 [\#4147](https://github.com/rvm/rvm/pull/4147) #### Documentation * Remove `wayneeseguin` reference from RVM repo names [\#4086](https://github.com/rvm/rvm/pull/4086) diff --git a/config/db b/config/db index 0f1c2a0..2f10686 100644 --- a/config/db +++ b/config/db @@ -1,154 +1,154 @@ # General default_ruby=ruby interpreter=ruby niceness=0 # # RVM # rvm_remote_server_path1=maven2/org/jruby/jruby-dist rvm_remote_server_url1=https://repo1.maven.org rvm_remote_server_url2=https://rubies.travis-ci.org rvm_remote_server_url=https://rvm-io.global.ssl.fastly.net/binaries # # RubyGems # gem_gem-empty_version=>=1.1.2 gem_gem-wrappers_version=>=1.4.0 gem_rdoc_version=>=4.1.1 gem_rvm_version=>=1.11.3.9 rubygems_repo_url=https://github.com/rubygems/rubygems.git rubygems_url=https://rubygems.org/rubygems rubygems_url_fallback_1=https://github.com/rubygems/rubygems/archive/v\1.tar.gz rubygems_url_fallback_1_pattern=https://rubygems.org/rubygems/rubygems-([[:digit:]\.]+).tgz rubygems_version=latest-3.0 # # Packages # autoconf_url=https://ftp.gnu.org/gnu/autoconf curl_url=https://github.com/bagder/curl/archive gettext_url=https://ftp.gnu.org/pub/gnu/gettext glib_url=http://ftp.gnome.org/pub/gnome/sources/glib/2.23 libiconv_url=https://ftp.gnu.org/pub/gnu/libiconv libxml2_url=ftp://xmlsoft.org/libxml2 libxslt_url=ftp://xmlsoft.org/libxslt llvm_url=https://llvm.org/svn/llvm-project/llvm/trunk mono_url=http://ftp.novell.com/pub/mono/sources/mono ncurses_url=https://ftp.gnu.org/pub/gnu/ncurses openssl_url=https://www.openssl.org/source/old/1.0.1 openssl_version=1.0.1i pkg-config_url=http://pkgconfig.freedesktop.org/releases readline_url=https://ftp.gnu.org/gnu/readline yaml_url=http://pyyaml.org/download/libyaml yaml_version=0.1.6 zlib_url=https://prdownloads.sourceforge.net/libpng # # CentOS / Fedora EPEL # epel5_i386_rpm=https://dl.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm epel5_key=https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-5 epel5_x86_64_rpm=https://dl.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm epel6_i386_rpm=https://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm epel6_key=https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-6 epel6_x86_64_rpm=https://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm epel7_key=https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-7 epel7_x86_64_rpm=https://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-8.noarch.rpm # # MRI Ruby # CentOS_5_ruby_1.8.7_patch_level=p374 CentOS_5_ruby_1.8.7_patch_level_warn=Warning, Centos 5 can not build head version of ruby, falling back to latest patchlevel, your ruby will be less secure because of this. CentOS_5_ruby_1.9.2_patch_level=p320 CentOS_5_ruby_1.9.2_patch_level_warn=Warning, Centos 5 can not build head version of ruby, falling back to latest patchlevel, your ruby will be less secure because of this. ruby_1.8.4_rubygems_version=1.3.5 ruby_1.8.5_patch_level=p231 ruby_1.8.5_rubygems_version=1.3.5 ruby_1.8.6_patch_level=p420 ruby_1.8.6_rubygems_version=1.3.7 ruby_1.8.7_patch_level=head ruby_1.8.7_rubygems_version=latest-2.0 ruby_1.9.1_patch_level=p431 ruby_1.9.1_rubygems_version=latest-1.8 ruby_1.9.2_patch_level=p330 ruby_1.9.3_patch_level=p551 ruby_2.0.0_patch_level=p648 ruby_head_rubygems_version=ignore ruby_repo_url=https://github.com/ruby/ruby.git ruby_unmaintained_date=2017-04-01 ruby_unmaintained_version=2.1.0 ruby_url=https://cache.ruby-lang.org/pub/ruby ruby_url_fallback_1=https://ftp.ruby-lang.org/pub/ruby ruby_version=3.3.5 # # REE # ree_1.8.6_patch_level=20090610 ree_1.8.6_repo_url=https://github.com/FooBarWidget/rubyenterpriseedition.git ree_1.8.6_rubygems_version=1.3.7 ree_1.8.6_url=http://rubyforge.org/frs/download.php/58677 ree_1.8.7_2010.02_url=https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/rubyenterpriseedition/ruby-enterprise-1.8.7-2012.02.tar.gz ree_1.8.7_patch_level=2012.02 ree_1.8.7_repo_url=https://github.com/FooBarWidget/rubyenterpriseedition187-330 ree_1.8.7_rubygems_version=latest-2.0 ree_1.8.7_url=https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/rubyenterpriseedition ree_configure_flags=--dont-install-useful-gems ree_version=1.8.7 # # Rubinius # rbx_1.0.0_patch_level=20100514 rbx_1.0.1_patch_level=20100603 rbx_1.1.0_patch_level=20100923 rbx_1.1.1_patch_level=20101116 rbx_1.2.0_patch_level=20101221 rbx_1.2.1_patch_level=20110215 rbx_1.2.2_patch_level=20110222 rbx_1.2.3_patch_level=20110315 rbx_1.2.4_patch_level=20110705 rbx_repo_url=https://github.com/rubinius/rubinius.git rbx_url=https://s3.amazonaws.com/asset.rubini.us rbx_url_2.0_and_newer=https://rubinius-releases-rubinius-com.s3.amazonaws.com rbx_version=4.1 # # MRuby # mruby_repo_url=https://github.com/mruby/mruby.git mruby_url=https://github.com/mruby/mruby/archive mruby_version=2.0.1 # # JRuby # jruby_repo_url=https://github.com/jruby/jruby.git jruby_url=https://repo1.maven.org/maven2/org/jruby/jruby-dist jruby_version=9.4.8.0 maven_version=3.5.0 # # TruffleRuby # truffleruby_url=https://github.com/oracle/truffleruby/releases/download -truffleruby_version=24.1.0 +truffleruby_version=24.1.1 # # MacRuby # macruby_0.10_url=http://macruby.macosforge.org/files macruby_nightly_url=http://macruby.jp/files/nightlies macruby_repo_url=https://github.com/MacRuby/MacRuby.git macruby_url=https://github.com/downloads/MacRuby/MacRuby macruby_version=0.12 # # Maglev # maglev_repo_url=https://github.com/MagLev/maglev.git maglev_url=http://seaside.gemtalksystems.com/maglev maglev_version=1.2Alpha4 # # IronRuby # ironruby_1.1.3_url=https://download-codeplex.sec.s-msft.com/Download/Release?ProjectName=ironruby&DownloadId=217153&FileTime=129445296766130000&Build=19727 ironruby_repo_url=https://github.com/ironruby/ironruby.git ironruby_version=1.1.3 # # Topaz # topaz_repo_url=https://github.com/topazproject/topaz.git topaz_url=https://d3sgc2zfsedosj.cloudfront.net topaz_version=head diff --git a/config/known b/config/known index 875bf75..8e8eb26 100644 --- a/config/known +++ b/config/known @@ -1,81 +1,81 @@ # MRI Rubies [ruby-]1.8.6[-p420] [ruby-]1.8.7[-head] # security released on head [ruby-]1.9.1[-p431] [ruby-]1.9.2[-p330] [ruby-]1.9.3[-p551] [ruby-]2.0.0[-p648] [ruby-]2.1[.10] [ruby-]2.2[.10] [ruby-]2.3[.8] [ruby-]2.4[.10] [ruby-]2.5[.9] [ruby-]2.6[.10] [ruby-]2.7[.8] [ruby-]3.0[.7] [ruby-]3.1[.5] [ruby-]3.2[.5] [ruby-]3[.3.5] [ruby-]3.4[.0-preview1] ruby-head # for forks use: rvm install ruby-head-<name> --url https://github.com/github/ruby.git --branch 2.2 # JRuby jruby-1.6[.8] jruby-1.7[.27] jruby-9.1[.17.0] jruby-9.2[.21.0] jruby-9.3[.15.0] jruby[-9.4.8.0] jruby-head # Rubinius rbx-1[.4.3] rbx-2.3[.0] rbx-2.4[.1] rbx-2[.5.8] rbx-3[.107] rbx-4[.20] rbx-5[.0] rbx-head # TruffleRuby -truffleruby[-24.1.0] +truffleruby[-24.1.1] # Opal opal # Minimalistic ruby implementation - ISO 30170:2012 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1[.4.1] mruby-2.0.1 mruby-2[.1.1] mruby[-head] # Ruby Enterprise Edition ree-1.8.6 ree[-1.8.7][-2012.02] # Topaz topaz # MagLev maglev-1.0.0 maglev-1.1[RC1] maglev[-1.2Alpha4] maglev-head # Mac OS X Snow Leopard Or Newer macruby-0.10 macruby-0.11 macruby[-0.12] macruby-nightly macruby-head # IronRuby ironruby[-1.1.3] ironruby-head diff --git a/config/known_strings b/config/known_strings index 673bdc1..12402b0 100644 --- a/config/known_strings +++ b/config/known_strings @@ -56,512 +56,513 @@ jruby-1.6.3 jruby-1.6.4 jruby-1.6.5 jruby-1.6.5.1 jruby-1.6.7 jruby-1.6.7.2 jruby-1.6.8 jruby-1.7.0.preview1 jruby-1.7.0.preview2 jruby-1.7.0.RC1 jruby-1.7.0.RC2 jruby-1.7.0 jruby-1.7.1 jruby-1.7.2 jruby-1.7.3 jruby-1.7.4 jruby-1.7.5 jruby-1.7.6 jruby-1.7.7 jruby-1.7.8 jruby-1.7.9 jruby-1.7.10 jruby-1.7.11 jruby-1.7.12 jruby-1.7.13 jruby-1.7.14 jruby-1.7.15 jruby-1.7.16 jruby-1.7.16.1 jruby-1.7.16.2 jruby-1.7.17 jruby-1.7.18 jruby-1.7.19 jruby-1.7.20 jruby-1.7.20.1 jruby-1.7.21 jruby-1.7.22 jruby-1.7.23 jruby-1.7.24 jruby-1.7.25 jruby-1.7.26 jruby-1.7.27 jruby-9.0.0.0.pre1 jruby-9.0.0.0.pre2 jruby-9.0.0.0.rc1 jruby-9.0.0.0.rc2 jruby-9.0.0.0 jruby-9.0.1.0 jruby-9.0.2.0 jruby-9.0.3.0 jruby-9.0.4.0 jruby-9.0.5.0 jruby-9.1.0.0 jruby-9.1.1.0 jruby-9.1.2.0 jruby-9.1.3.0 jruby-9.1.4.0 jruby-9.1.5.0 jruby-9.1.6.0 jruby-9.1.7.0 jruby-9.1.8.0 jruby-9.1.9.0 jruby-9.1.10.0 jruby-9.1.11.0 jruby-9.1.12.0 jruby-9.1.13.0 jruby-9.1.14.0 jruby-9.1.15.0 jruby-9.1.16.0 jruby-9.1.17.0 jruby-9.2.0.0 jruby-9.2.1.0 jruby-9.2.2.0 jruby-9.2.3.0 jruby-9.2.4.0 jruby-9.2.4.1 jruby-9.2.5.0 jruby-9.2.6.0 jruby-9.2.7.0 jruby-9.2.8.0 jruby-9.2.9.0 jruby-9.2.10.0 jruby-9.2.11.0 jruby-9.2.11.1 jruby-9.2.12.0 jruby-9.2.13.0 jruby-9.2.14.0 jruby-9.2.15.0 jruby-9.2.16.0 jruby-9.2.17.0 jruby-9.2.18.0 jruby-9.2.19.0 jruby-9.2.20.0 jruby-9.2.20.1 jruby-9.2.21.0 jruby-9.3.0.0 jruby-9.3.1.0 jruby-9.3.2.0 jruby-9.3.3.0 jruby-9.3.4.0 jruby-9.3.6.0 jruby-9.3.7.0 jruby-9.3.8.0 jruby-9.3.9.0 jruby-9.3.10.0 jruby-9.3.11.0 jruby-9.3.13.0 jruby-9.3.14.0 jruby-9.3.15.0 jruby-9.4.0.0 jruby-9.4.1.0 jruby-9.4.2.0 jruby-9.4.3.0 jruby-9.4.4.0 jruby-9.4.5.0 jruby-9.4.6.0 jruby-9.4.7.0 jruby-9.4.8.0 macruby-0.12 maglev-1.0.0 maglev-1.1beta maglev-1.1beta2 maglev-1.1RC1 maglev-1.2Alpha maglev-1.2Alpha2 maglev-1.2Alpha3 maglev-1.2Alpha4 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1.4.0 mruby-1.4.1 mruby-2.0.0 mruby-2.0.1 mruby-2.1.0-rc mruby-2.1.0 mruby-2.1.1-rc mruby-2.1.1-rc2 mruby-2.1.1 rbx-1.0.0-20100514 rbx-1.0.1-20100603 rbx-1.1.0-20100923 rbx-1.1.1-20101116 rbx-1.2.0-20101221 rbx-1.2.1-20110215 rbx-1.2.2-20110222 rbx-1.2.3-20110315 rbx-1.2.4-20110705 rbx-1.3.2 rbx-1.3.3 rbx-1.4.1 rbx-1.4.3 rbx-2.0.0 rbx-2.1.0 rbx-2.1.1 rbx-2.2.0 rbx-2.2.2 rbx-2.2.3 rbx-2.2.4 rbx-2.2.5 rbx-2.2.6 rbx-2.2.7 rbx-2.2.8 rbx-2.2.9 rbx-2.2.10 rbx-2.3.0 rbx-2.4.0 rbx-2.4.1 rbx-2.5.0 rbx-2.5.1 rbx-2.5.2 rbx-2.5.3 rbx-2.5.4 rbx-2.5.5 rbx-2.5.6 rbx-2.5.7 rbx-2.5.8 rbx-3.70 rbx-3.71 rbx-3.72 rbx-3.73 rbx-3.74 rbx-3.75 rbx-3.76 rbx-3.77 rbx-3.78 rbx-3.79 rbx-3.80 rbx-3.81 rbx-3.82 rbx-3.83 rbx-3.84 rbx-3.85 rbx-3.86 rbx-3.87 rbx-3.88 rbx-3.89 rbx-3.90 rbx-3.91 rbx-3.92 rbx-3.93 rbx-3.94 rbx-3.95 rbx-3.96 rbx-3.97 rbx-3.98 rbx-3.99 rbx-3.100 rbx-3.101 rbx-3.102 rbx-3.103 rbx-3.104 rbx-3.105 rbx-3.106 rbx-3.107 rbx-4.0 rbx-4.1 rbx-4.2 rbx-4.3 rbx-4.4 rbx-4.5 rbx-4.6 rbx-4.7 rbx-4.8 rbx-4.9 rbx-4.10 rbx-4.11 rbx-4.12 rbx-4.13 rbx-4.14 rbx-4.15 rbx-4.16 rbx-4.17 rbx-4.18 rbx-4.19 rbx-4.20 rbx-5.0 ree-1.8.6-20080507 ree-1.8.6-20080621 ree-1.8.6-20080623 ree-1.8.6-20080624 ree-1.8.6-20080709 ree-1.8.6-20080810 ree-1.8.6-20081205 ree-1.8.6-20081215 ree-1.8.6-20090113 ree-1.8.6-20090201 ree-1.8.6-20090421 ree-1.8.6-20090520 ree-1.8.6-20090610 ree-1.8.6-20090928 ree-1.8.7-2009.10 ree-1.8.7-2010.01 ree-1.8.7-2010.02 ree-1.8.7-2011.01 ree-1.8.7-2011.02 ree-1.8.7-2011.03 ree-1.8.7-2011.12 ree-1.8.7-2012.02 ruby-1.8.5-p115 ruby-1.8.5-p231 ruby-1.8.6-p286 ruby-1.8.6-p287 ruby-1.8.6-p369 ruby-1.8.6-p383 ruby-1.8.6-p398 ruby-1.8.6-p399 ruby-1.8.6-p420 ruby-1.8.7-p160 ruby-1.8.7-p174 ruby-1.8.7-p248 ruby-1.8.7-p249 ruby-1.8.7-p299 ruby-1.8.7-p302 ruby-1.8.7-p330 ruby-1.8.7-p334 ruby-1.8.7-p352 ruby-1.8.7-p357 ruby-1.8.7-p358 ruby-1.8.7-p370 ruby-1.8.7-p371 ruby-1.8.7-p374 ruby-1.9.0 ruby-1.9.1-p129 ruby-1.9.1-p243 ruby-1.9.1-p376 ruby-1.9.1-p378 ruby-1.9.1-p429 ruby-1.9.1-p431 ruby-1.9.2-p0 ruby-1.9.2-p136 ruby-1.9.2-p180 ruby-1.9.2-p290 ruby-1.9.2-p318 ruby-1.9.2-p320 ruby-1.9.2-p330 ruby-1.9.3-preview1 ruby-1.9.3-rc1 ruby-1.9.3-p0 ruby-1.9.3-p125 ruby-1.9.3-p194 ruby-1.9.3-p286 ruby-1.9.3-p327 ruby-1.9.3-p362 ruby-1.9.3-p374 ruby-1.9.3-p385 ruby-1.9.3-p392 ruby-1.9.3-p429 ruby-1.9.3-p448 ruby-1.9.3-p484 ruby-1.9.3-p545 ruby-1.9.3-p547 ruby-1.9.3-p550 ruby-1.9.3-p551 ruby-2.0.0-preview1 ruby-2.0.0-preview2 ruby-2.0.0-rc1 ruby-2.0.0-rc2 ruby-2.0.0-p0 ruby-2.0.0-p195 ruby-2.0.0-p247 ruby-2.0.0-p353 ruby-2.0.0-p451 ruby-2.0.0-p481 ruby-2.0.0-p576 ruby-2.0.0-p594 ruby-2.0.0-p598 ruby-2.0.0-p643 ruby-2.0.0-p645 ruby-2.0.0-p647 ruby-2.0.0-p648 ruby-2.1.0-preview1 ruby-2.1.0-preview2 ruby-2.1.0-rc1 ruby-2.1.0 ruby-2.1.1 ruby-2.1.2 ruby-2.1.3 ruby-2.1.4 ruby-2.1.5 ruby-2.1.6 ruby-2.1.7 ruby-2.1.8 ruby-2.1.9 ruby-2.1.10 ruby-2.2.0-preview1 ruby-2.2.0-preview2 ruby-2.2.0-rc1 ruby-2.2.0 ruby-2.2.1 ruby-2.2.2 ruby-2.2.3 ruby-2.2.4 ruby-2.2.5 ruby-2.2.6 ruby-2.2.7 ruby-2.2.8 ruby-2.2.9 ruby-2.2.10 ruby-2.3.0-preview1 ruby-2.3.0-preview2 ruby-2.3.0 ruby-2.3.1 ruby-2.3.2 ruby-2.3.3 ruby-2.3.4 ruby-2.3.5 ruby-2.3.6 ruby-2.3.7 ruby-2.3.8 ruby-2.4.0-preview1 ruby-2.4.0-preview2 ruby-2.4.0-preview3 ruby-2.4.0-rc1 ruby-2.4.0 ruby-2.4.1 ruby-2.4.2 ruby-2.4.3 ruby-2.4.4 ruby-2.4.5 ruby-2.4.6 ruby-2.4.7 ruby-2.4.8 ruby-2.4.9 ruby-2.4.10 ruby-2.5.0-preview1 ruby-2.5.0-rc1 ruby-2.5.0 ruby-2.5.1 ruby-2.5.2 ruby-2.5.3 ruby-2.5.4 ruby-2.5.5 ruby-2.5.6 ruby-2.5.7 ruby-2.5.8 ruby-2.5.9 ruby-2.6.0-preview1 ruby-2.6.0-preview2 ruby-2.6.0-preview3 ruby-2.6.0-rc1 ruby-2.6.0-rc2 ruby-2.6.0 ruby-2.6.1 ruby-2.6.2 ruby-2.6.3 ruby-2.6.4 ruby-2.6.5 ruby-2.6.6 ruby-2.6.7 ruby-2.6.8 ruby-2.6.9 ruby-2.6.10 ruby-2.7.0-preview1 ruby-2.7.0-preview2 ruby-2.7.0-preview3 ruby-2.7.0-rc1 ruby-2.7.0-rc2 ruby-2.7.0 ruby-2.7.1 ruby-2.7.2 ruby-2.7.3 ruby-2.7.4 ruby-2.7.5 ruby-2.7.6 ruby-2.7.7 ruby-2.7.8 ruby-3.0.0-preview1 ruby-3.0.0-preview2 ruby-3.0.0-rc1 ruby-3.0.0 ruby-3.0.1 ruby-3.0.2 ruby-3.0.3 ruby-3.0.4 ruby-3.0.5 ruby-3.0.6 ruby-3.0.7 ruby-3.1.0-preview1 ruby-3.1.0 ruby-3.1.1 ruby-3.1.2 ruby-3.1.3 ruby-3.1.4 ruby-3.1.5 ruby-3.2.0-preview1 ruby-3.2.0-preview2 ruby-3.2.0-preview3 ruby-3.2.0-rc1 ruby-3.2.0 ruby-3.2.1 ruby-3.2.2 ruby-3.2.3 ruby-3.2.4 ruby-3.2.5 ruby-3.3.0-preview1 ruby-3.3.0-preview2 ruby-3.3.0-preview3 ruby-3.3.0 ruby-3.3.1 ruby-3.3.2 ruby-3.3.3 ruby-3.3.4 ruby-3.3.5 ruby-3.4.0-preview1 truffleruby-1.0.0-rc2 truffleruby-1.0.0-rc3 truffleruby-1.0.0-rc5 truffleruby-1.0.0-rc6 truffleruby-1.0.0-rc7 truffleruby-1.0.0-rc8 truffleruby-1.0.0-rc9 truffleruby-1.0.0-rc10 truffleruby-1.0.0-rc11 truffleruby-1.0.0-rc12 truffleruby-1.0.0-rc13 truffleruby-1.0.0-rc14 truffleruby-1.0.0-rc15 truffleruby-1.0.0-rc16 truffleruby-19.0.0 truffleruby-19.0.2 truffleruby-19.1.0 truffleruby-19.1.1 truffleruby-19.2.0 truffleruby-19.2.0.1 truffleruby-19.2.1 truffleruby-19.3.0 truffleruby-19.3.0.2 truffleruby-19.3.1 truffleruby-20.0.0 truffleruby-20.1.0 truffleruby-20.2.0 truffleruby-20.3.0 truffleruby-21.0.0 truffleruby-21.1.0 truffleruby-21.2.0 truffleruby-21.2.0.1 truffleruby-21.3.0 truffleruby-22.0.0.2 truffleruby-22.1.0 truffleruby-22.2.0 truffleruby-22.3.0 truffleruby-22.3.1 truffleruby-23.0.0-preview1 truffleruby-23.0.0 truffleruby-23.1.0 truffleruby-23.1.1 truffleruby-23.1.2 truffleruby-24.0.0 truffleruby-24.0.1 truffleruby-24.0.2 truffleruby-24.1.0 +truffleruby-24.1.1 diff --git a/config/md5 b/config/md5 index e175fb9..514a765 100644 --- a/config/md5 +++ b/config/md5 @@ -1530,515 +1530,519 @@ rubinius-2.4.0.tar.bz2=62391a51f49820daa51463066c3ce007 rubinius-2.4.1.tar.bz2=7758721b6e848387c3943ddb9ebd9479 rubinius-2.5.0.tar.bz2=178baa1ad172df0801765ea93bc36d87 rubinius-2.5.1.tar.bz2=77e1b87dc357691ad44b561a5f45c188 rubinius-2.5.2.tar.bz2=e5973d6e0a16f0390dc2a7478db83ff5 rubinius-2.5.3.tar.bz2=b19709eb3fa9e05b3fa6a357b33e3b5b rubinius-2.5.4.tar.bz2=64587916e5d445ed9bc630017a04498e rubinius-2.5.5.tar.bz2=ef671bbab50cbe2f70f953c491311261 rubinius-2.5.6.tar.bz2=597e4b049f49966c646faf699856c1b9 rubinius-2.5.7.tar.bz2=9a7f404019bce9fc34a7af7feb7cbb74 rubinius-2.5.8.tar.bz2=a24520892cada1f660e719a25abf63e3 ruby-1.8.5-p115.tar.bz2=03955e3c367b9beb3efe144c9f00d689 ruby-1.8.5-p115.tar.gz=20ca6cc87eb077296806412feaac0356 ruby-1.8.5-p231.tar.bz2=327f5aa6573787432222e96195cffd1e ruby-1.8.5-p231.tar.gz=e900cf225d55414bffe878f00a85807c ruby-1.8.6-p286.tar.bz2=e6b6bf8f34370e433936adb7a7065e63 ruby-1.8.6-p286.tar.gz=797ea136fe43e4286c9362ee4516674e ruby-1.8.6-p287.tar.bz2=80b5f3db12531d36e6c81fac6d05dda9 ruby-1.8.6-p287.tar.gz=6ff3420094711266c3201a0c7c2faa38 ruby-1.8.6-p369.tar.bz2=c3c1f3dd0dfbd2e17a04e59c2f12cfc8 ruby-1.8.6-p369.tar.gz=8c140ae28b4c3947b92dfad69109d90b ruby-1.8.6-p383.tar.bz2=a48703cd982b9f0e3002700a50b0e88e ruby-1.8.6-p383.tar.gz=4f49544d4a4d0d34e9d86c41e853db2e ruby-1.8.6-p398.tar.bz2=fbd43dc44ee26be4d37e6bebbed6f8bd ruby-1.8.6-p398.tar.gz=736db5f56c2d9b0136e563d049249fa8 ruby-1.8.6-p399.tar.bz2=f77c307cb72fb8808b0e85af5d05cefc ruby-1.8.6-p399.tar.gz=c3d16cdd3c1ee8f3b7d1c399d4884e33 ruby-1.8.6-p420.tar.bz2=1c7a978e9ffd4f56dc2ad74bbd2c34f3 ruby-1.8.6-p420.tar.gz=ca1eee44f842e93b5098bc5a2bb9a40b ruby-1.8.7-p160.tar.bz2=f8ddb886b8a81cf005f53e9a9541091d ruby-1.8.7-p160.tar.gz=945398f97e2de6dd8ab6df68d10bb1a1 ruby-1.8.7-p174.tar.bz2=88c45aaf627b4404e5e4273cb03ba2ee ruby-1.8.7-p174.tar.gz=18dcdfef761a745ac7da45b61776afa5 ruby-1.8.7-p248.tar.bz2=37e19d46b7d4b845f57d3389084b94a6 ruby-1.8.7-p248.tar.gz=60a65374689ac8b90be54ca9c61c48e3 ruby-1.8.7-p249.tar.bz2=37200cc956a16996bbfd25bb4068f242 ruby-1.8.7-p249.tar.gz=d7db7763cffad279952eb7e9bbfc221c ruby-1.8.7-p299.tar.bz2=244439a87d75ab24170a9c2b451ce351 ruby-1.8.7-p299.tar.gz=43533980ee0ea57381040d4135cf9677 ruby-1.8.7-p302.tar.bz2=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p302.tar.gz=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p330.tar.bz2=2689719fb42c8cf0aa336f8c8933f413 ruby-1.8.7-p330.tar.gz=50a49edb787211598d08e756e733e42e ruby-1.8.7-p334.tar.bz2=2f14f604bf981bb938ab5fc8b09eb1a6 ruby-1.8.7-p334.tar.gz=aacb6ee5dfe2367682bba56af7f415b8 ruby-1.8.7-p352.tar.bz2=0c61ea41d1b1183b219b9afe97f18f52 ruby-1.8.7-p352.tar.gz=0c33f663a10a540ea65677bb755e57a7 ruby-1.8.7-p357.tar.bz2=3abd9e2a29f756a0d30c7bfca578cdeb ruby-1.8.7-p357.tar.gz=b2b8248ff5097cfd629f5b9768d1df82 ruby-1.8.7-p358.tar.bz2=de35f00997f4ccee3e22dff0f2d01b8a ruby-1.8.7-p370.tar.bz2=1e4c3194537dd8ff92e756993e55a29d ruby-1.8.7-p371.tar.bz2=c27526b298659a186bdb5107fcec2341 ruby-1.8.7-p371.tar.gz=653f07bb45f03d0bf3910491288764df ruby-1.8.7-p374.tar.bz2=83c92e2b57ea08f31187060098b2200b ruby-1.8.7-p374.tar.gz=b72a0bc5b824398537762e5272bbb8dc ruby-1.9.0.tar.bz2=17eb66ac3721340d21db352d8f5dec76 ruby-1.9.1-p129.tar.bz2=6fa62b20f72da471195830dec4eb2013 ruby-1.9.1-p129.tar.gz=c71f413514ee6341c627be2957023a5c ruby-1.9.1-p243.tar.bz2=66d4f8403d13623051091347764881a0 ruby-1.9.1-p243.tar.gz=515bfd965814e718c0943abf3dde5494 ruby-1.9.1-p376.tar.bz2=e019ae9c643c5efe91be49e29781fb94 ruby-1.9.1-p376.tar.gz=ebb20550a11e7f1a2fbd6fdec2a3e0a3 ruby-1.9.1-p378.tar.bz2=5922459622a23612eb9b68a3586cb5f8 ruby-1.9.1-p378.tar.gz=9fc5941bda150ac0a33b299e1e53654c ruby-1.9.1-p429.tar.bz2=09df32ae51b6337f7a2e3b1909b26213 ruby-1.9.1-p429.tar.gz=0f6d7630f26042e00bc59875755cf879 ruby-1.9.1-p431.tar.bz2=03179138ae95dbfae872ef49e9cc6da7 ruby-1.9.1-p431.tar.gz=23f28cffc007ed5ac72c8e9bec6837ce ruby-1.9.2-p0.tar.bz2=d8a02cadf57d2571cd4250e248ea7e4b ruby-1.9.2-p0.tar.gz=755aba44607c580fddc25e7c89260460 ruby-1.9.2-p136.tar.bz2=52958d35d1b437f5d9d225690de94c13 ruby-1.9.2-p136.tar.gz=6e17b200b907244478582b7d06cd512e ruby-1.9.2-p180.tar.bz2=68510eeb7511c403b91fe5476f250538 ruby-1.9.2-p180.tar.gz=0d6953820c9918820dd916e79f4bfde8 ruby-1.9.2-p290.tar.bz2=096758c3e853b839dc980b183227b182 ruby-1.9.2-p290.tar.gz=604da71839a6ae02b5b5b5e1b792d5eb ruby-1.9.2-p318.tar.bz2=be431c6cbfa27e3836a06c6315717747 ruby-1.9.2-p318.tar.gz=cc7bf1025128e1985882ae243f348802 ruby-1.9.2-p320.tar.bz2=b226dfe95d92750ee7163e899b33af00 ruby-1.9.2-p320.tar.gz=5ef5d9c07af207710bd9c2ad1cef4b42 ruby-1.9.2-p330.tar.bz2=8ba4aaf707023e76f80fc8f455c99858 ruby-1.9.2-p330.tar.gz=4b9330730491f96b402adc4a561e859a ruby-1.9.3-p0.tar.bz2=65401fb3194cdccd6c1175ab29b8fdb8 ruby-1.9.3-p0.tar.gz=8e2fef56185cfbaf29d0c8329fc77c05 ruby-1.9.3-p125.tar.bz2=702529a7f8417ed79f628b77d8061aa5 ruby-1.9.3-p125.tar.gz=e3ea86b9d3fc2d3ec867f66969ae3b92 ruby-1.9.3-p194.tar.bz2=2278eff4cfed3cbc0653bc73085caa34 ruby-1.9.3-p194.tar.gz=bc0c715c69da4d1d8bd57069c19f6c0e ruby-1.9.3-p286.tar.bz2=e76848a86606a4fd5dcf14fc4b4e755e ruby-1.9.3-p327.tar.bz2=7d602aba93f31ceef32800999855fbca ruby-1.9.3-p327.tar.gz=96118e856b502b5d7b3a4398e6c6e98c ruby-1.9.3-p362.tar.bz2=13c26ea368d88a560f07cc8c5eb4fa05 ruby-1.9.3-p374.tar.bz2=944e73eba9ee9e1f2647ff32ec0b14b2 ruby-1.9.3-p385.tar.bz2=5ec9aff670f4912b0f6f0e11e855ef6c ruby-1.9.3-p392.tar.bz2=a810d64e2255179d2f334eb61fb8519c ruby-1.9.3-p392.tar.gz=f689a7b61379f83cbbed3c7077d83859 ruby-1.9.3-p429.tar.bz2=c2b2de5ef15ea9b1aaa3152f9112af1b ruby-1.9.3-p429.tar.gz=993c72f7f805a9eb453f90b0b7fe0d2b ruby-1.9.3-p448.tar.bz2=aa710d386e5903f78f0231868255e6af ruby-1.9.3-p448.tar.gz=a893cff26bcf351b8975ebf2a63b1023 ruby-1.9.3-p484.tar.bz2=03f5b08804927ceabe5122cb90f5d0a9 ruby-1.9.3-p484.tar.gz=8ac0dee72fe12d75c8b2d0ef5d0c2968 ruby-1.9.3-p545.tar.bz2=4743c1dc48491070bae8fc8b423bc1a7 ruby-1.9.3-p545.tar.gz=8e8f6e4d7d0bb54e0edf8d9c4120f40c ruby-1.9.3-p547.tar.bz2=5363d399be7f827c77bf8ae5d1a69b38 ruby-1.9.3-p547.tar.gz=7531f9b1b35b16f3eb3d7bea786babfd ruby-1.9.3-p550.tar.bz2=c2169c8b14ccefd036081aba5ffa96da ruby-1.9.3-p551.tar.bz2=0d8b272b05c3449dc848bb7570f65bfe ruby-1.9.3-preview1.tar.bz2=7d93dc773c5824f05c6e6630d8c4bf9b ruby-1.9.3-preview1.tar.gz=0f0220be4cc7c51a82c1bd8f6a0969f3 ruby-1.9.3-rc1.tar.bz2=26f0dc51ad981e12c58b48380112fa4d ruby-1.9.3-rc1.tar.gz=46a2a481536ca0ca0b80ad2b091df68e ruby-2.0.0-p0.tar.bz2=895c1c581f8d28e8b3bb02472b2ccf6a ruby-2.0.0-p195.tar.bz2=2f54faea6ee1ca500632ec3c0cb59cb6 ruby-2.0.0-p247.tar.bz2=60913f3eec0c4071f44df42600be2604 ruby-2.0.0-p353.tar.bz2=20eb8f067d20f6b76b7e16cce2a85a55 ruby-2.0.0-p451.tar.bz2=908e4d1dbfe7362b15892f16af05adf8 ruby-2.0.0-p481.tar.bz2=ea406a8d415a1a5d8365596d4288f3da ruby-2.0.0-p576.tar.bz2=eccd42d43620544a085c5e3834572f37 ruby-2.0.0-p594.tar.bz2=58469c0daf5f3a892a70cc674ea59c7f ruby-2.0.0-p598.tar.bz2=a3f3908103a7d209d1d1cf4712e3953c ruby-2.0.0-p643.tar.bz2=1390888cac6cd175e6f164eff378cdde ruby-2.0.0-p645.tar.bz2=d576240c97cfcc3ed9bdc457eb1e8280 ruby-2.0.0-p647.tar.bz2=27a3ea1a8b8bca1a6de43a7d08e88b69 ruby-2.0.0-p648.tar.bz2=3544031334f4665aa2eb1414babc9345 ruby-2.0.0-preview1.tar.bz2=47a0f662f0e258aa1c5e429c310861b3 ruby-2.0.0-preview2.tar.bz2=a645a783c3302cc094a9963a5e700a4d ruby-2.0.0-rc1.tar.bz2=24cebdda11e01ff4889ac983cd7dc02c ruby-2.0.0-rc2.tar.bz2=e92420131bd7994513e0bf09a3e2a19b ruby-2.1.0-preview1.tar.bz2=d32d1ea23988399afadbd21c5a7a37fc ruby-2.1.0-preview2.tar.bz2=9d566a9b2d2e7e35ad6125e2a14ce672 ruby-2.1.0-rc1.tar.bz2=cae095b90349b5b0f7026060cc3dd2c5 ruby-2.1.0.tar.bz2=1546eeb763ac7754365664be763a1e8f ruby-2.1.1.tar.bz2=53edc33b2f590ecdd9f6a344b9d92d0d ruby-2.1.1.tar.gz=e57fdbb8ed56e70c43f39c79da1654b2 ruby-2.1.2.tar.bz2=ed9b8565bdeccb401d628ec8d54a0774 ruby-2.1.2.tar.gz=a5b5c83565f8bd954ee522bd287d2ca1 ruby-2.1.3.tar.bz2=02b7da3bb06037c777ca52e1194efccb ruby-2.1.4.tar.bz2=f4136e781d261e3cc20748005e1740b7 ruby-2.1.5.tar.bz2=a7c3e5fec47eff23091b566e9e1dac1b ruby-2.1.6.tar.bz2=e1a8e6c6bfbb09bb7f8d6be8f508e4a1 ruby-2.1.7.tar.bz2=3a878e98311d543e5de3533b82ef4a5a ruby-2.1.8.tar.bz2=b17130b5f02a61640ae3b629af931610 ruby-2.1.9.tar.bz2=62bd1cbfcbc22e4d137462bce992f6d1 ruby-2.1.10.tar.bz2=5155c624807ff2418a9e9f15202954d0 ruby-2.2.0-preview1.tar.bz2=767b132eec3e70b14afe5884a7a767b1 ruby-2.2.0-preview2.tar.bz2=d7abace25a8ffe861cb2807bef1c58a6 ruby-2.2.0-rc1.tar.bz2=7144732d30dd4547c0a59862b3345d54 ruby-2.2.0.tar.bz2=d03cd4690fec1fff81d096d1c1255fde ruby-2.2.1.tar.bz2=06973777736d8e6bdad8dcaa469a9da3 ruby-2.2.2.tar.bz2=af6eb4fa7247f1f7b2e19c8e6f3e3145 ruby-2.2.3.tar.bz2=f49a734729a71774d4a94a9a603114b2 ruby-2.2.4.tar.bz2=c3d65f6d2ebe90dda81a37885ea244f5 ruby-2.2.5.tar.bz2=0c7edd1ff3650c3b74da2efaf641bf34 ruby-2.2.6.tar.bz2=3d13cf447142b8a11cd9beb7bc63fee0 ruby-2.2.7.tar.bz2=ca7224d80c08b015bc3b8c226d0914c3 ruby-2.2.8.tar.bz2=054d2e2904d5175662293e29c3bdb927 ruby-2.2.9.tar.bz2=575adf8ede6b1ca7236a5341e73536b0 ruby-2.2.10.tar.bz2=bef1909a4c885157870ef69548cdad3a ruby-2.3.0-preview1.tar.bz2=776000d74ec6dd34bf355ff6921c8311 ruby-2.3.0-preview2.tar.bz2=3ad442ccb337e77e4acaa4113f25b76a ruby-2.3.0.tar.bz2=f0d9f9bbdc87372ca98988a571875819 ruby-2.3.1.tar.bz2=c194281f63d7fcd816747fe78474be5e ruby-2.3.2.tar.bz2=9d00f3772f1c8fa5eecdfea089e3032f ruby-2.3.3.tar.bz2=04b9c461a2bc1eec0535ad1947cad4fb ruby-2.3.4.tar.bz2=99961e97566aee6d63635e2da4cf73ac ruby-2.3.5.tar.bz2=e1efc3d5a948ca1f552005efe5925513 ruby-2.3.6.tar.bz2=b2443b11ee80319a119f7ec0c9b8d79a ruby-2.3.7.tar.bz2=5eb580d5cd13ffb5aacfb96580c0043d ruby-2.3.8.tar.bz2=78045332e298dfd859ceef9fe946950f ruby-2.4.0-preview1.tar.bz2=64b8983b5f53d053906e394f734aa296 ruby-2.4.0-preview2.tar.bz2=1074e8dea5baa89af7f7c2d1d2b9ebaa ruby-2.4.0-preview3.tar.bz2=9f767e6bc61830735ea7dc9cd5a63653 ruby-2.4.0-rc1.tar.bz2=0f8b665acf4e883334adc121a42a206f ruby-2.4.0.tar.bz2=98f29161860fe1b6c65396717847a358 ruby-2.4.1.tar.bz2=07b2ae5d2f46321c95b37066c8415900 ruby-2.4.2.tar.bz2=5ff3ad6ec816bcce8806a55090936ab6 ruby-2.4.3.tar.bz2=ac8215ba561cc7c79b4f61daee11b706 ruby-2.4.4.tar.bz2=d994274eaa95b82aa5d31ec2188253c6 ruby-2.4.5.tar.bz2=45d70a8bb9397d818795ffe992163d27 ruby-2.4.6.tar.bz2=4abd13c50c1fc273a0a81a0ae74ed39f ruby-2.4.7.tar.bz2=1ce166ced489908993d78e8bb68325e0 ruby-2.4.8.tar.bz2=396d35f1a2d1deaf303f59cb5245d4ae ruby-2.4.9.tar.bz2=0b3447370651df55a2014a170c0cb1d5 ruby-2.4.10.tar.bz2=b10a7d2fcaf218c98edbaf57efc36e58 ruby-2.5.0-preview1.tar.bz2=889454189f41e271ae5ba15382911b6a ruby-2.5.0-rc1.tar.bz2=f5acdeacf56aced3c00ae6a8fa816bbc ruby-2.5.0.tar.bz2=63a6cd49546783d62de25a0ffc4aecc3 ruby-2.5.1.tar.bz2=5aaaf2fb4893214fa316516f3ac43519 ruby-2.5.2.tar.bz2=e90ab127e2ac3ee1d8840835e8ba1f13 ruby-2.5.3.tar.bz2=49aea0bf56d25351ccaf938c642400df ruby-2.5.4.tar.bz2=0c923215470f1debe593fe21e66fd37b ruby-2.5.5.tar.bz2=8f41b5cb683d48b5cb6cdfe03d135d6b ruby-2.5.6.tar.bz2=f2a74416ab3016434896194120796f04 ruby-2.5.7.tar.bz2=65597b69aa54bdca8745502c10349f96 ruby-2.5.8.tar.bz2=9ec96e7a590ef801ede294b6184c9c0f ruby-2.5.9.tar.bz2=9e905a545a729af1f1620ddfc2976fe5 ruby-2.6.0-preview1.tar.bz2=1ce507e27fa02aeb36100dabcf1da94f ruby-2.6.0-preview2.tar.bz2=e45011116334d21857b9e1712a01e6b3 ruby-2.6.0-preview3.tar.bz2=b326ceee3d3756f892515009e148f4b2 ruby-2.6.0-rc1.tar.bz2=40457a72e36cbecd0c51d9f895347302 ruby-2.6.0-rc2.tar.bz2=9665e6d886a9da2d4076fa75836798f1 ruby-2.6.0.tar.bz2=d3372daec93f83e7a91c669821053014 ruby-2.6.1.tar.bz2=73d19ac478db1a178be5ae2f2fb8c9ec ruby-2.6.2.tar.bz2=658fcc0da15578c2420ded807b11cce1 ruby-2.6.3.tar.bz2=52e609b756735115814b9c8463f185e2 ruby-2.6.4.tar.bz2=d9b35753c65f54c745ab6b0094511839 ruby-2.6.5.tar.bz2=d1b89c88effb71d75cd7ef77c35e1985 ruby-2.6.6.tar.bz2=abc030870bfbe18ae9c356abebd95cb6 ruby-2.6.7.tar.bz2=46f24740181f91247c72f19d52334379 ruby-2.6.8.tar.bz2=c53761123d17e929cfe248f50429bcab ruby-2.6.9.tar.bz2=ddc24495adaf215c8ee40630b4a55041 ruby-2.6.10.tar.bz2=6ad76db639ab308e3b6c19408729a0cf ruby-2.7.0-preview1.tar.bz2=82fab0496947acd847a6b2eb758acfc6 ruby-2.7.0-preview2.tar.bz2=966a544ab59114591898403c23d91397 ruby-2.7.0-preview3.tar.bz2=2fa6c213774744b287e7e0212b43f626 ruby-2.7.0-rc1.tar.bz2=48a8837cb352f5b95e97a1ae0d62a9d0 ruby-2.7.0-rc2.tar.bz2=cca58fdb8c5e8be8273842d54199c42d ruby-2.7.0.tar.bz2=89347748b7414f5bc7aeb8f4a87ebef4 ruby-2.7.1.tar.bz2=4bb2b2b2f0c6953859e30af140cf249a ruby-2.7.2.tar.bz2=a8acc9c24708fe29dfc287823ecaae65 ruby-2.7.3.tar.bz2=604acb258b1d8228f55799e846cfe6d3 ruby-2.7.4.tar.bz2=52705d799ed851dd3bfd5634265cde46 ruby-2.7.5.tar.bz2=d97d4377eee18b0e790510c3afed648c ruby-2.7.6.tar.bz2=1b6efacb9f129d0253d8a9faa9c21f99 ruby-2.7.7.tar.bz2=63c55e75150251d3ba092b662138e4af ruby-2.7.8.tar.bz2=f44dedf51fdb7441a7dba592d6a4a14d ruby-3.0.0-preview1.tar.gz=991df063b86a8f8412ca07f548579f39 ruby-3.0.0-preview2.tar.gz=ce14b24e923f2e269fea6441791a7248 ruby-3.0.0-rc1.tar.gz=848a8628c8abde270b66e2474049a4a3 ruby-3.0.0.tar.gz=d6af36269a1b0bc278236d371543ad97 ruby-3.0.1.tar.gz=8d1c460a9a9d48a353de3eb0f338bbfd ruby-3.0.2.tar.gz=b973af486291a1e17ad50d88472bfa86 ruby-3.0.3.tar.gz=9ecae293da9547c1438a970f04f64655 ruby-3.0.4.tar.gz=ec9de9a15acc4f205b08816d94267415 ruby-3.0.5.tar.gz=cdff2395625dc1d632fc5400c8fec103 ruby-3.0.6.tar.gz=6b5a7b14505697e6fc2b40b345679f40 ruby-3.0.7.tar.gz=147a3467facc704b5d479e809c131603 ruby-3.1.0-preview1.tar.gz=d131b9bca700ee87ea276f8233ea4c0b ruby-3.1.0.tar.gz=1ca89d713f2c18a20104befed51b3b9a ruby-3.1.1.tar.gz=702778a0ef8b7a01ef7530a541002e19 ruby-3.1.2.tar.gz=9daf064899cccc32fd564117c7a7e0dd ruby-3.1.3.tar.gz=cce38a2b2c589d59f440f67c7d8cc697 ruby-3.1.4.tar.gz=3e601ae6db76a487219a1084e5cb4c9c ruby-3.1.5.tar.gz=ce1e92ddb1230fa2d4f4367882542555 ruby-3.2.0-preview1.tar.gz=a83c91d53e130fe232e4c27ecc8738da ruby-3.2.0-preview2.tar.gz=56e7801b37612b82285c9a09cfeb28ce ruby-3.2.0-preview3.tar.gz=0ed16faae50403b4e2ba2e85ec2314a1 ruby-3.2.0-rc1.tar.gz=4657d7013702adce21ca21dfe71ea4a0 ruby-3.2.0.tar.gz=76ca7e7d71898ab1e85155d69403754e ruby-3.2.1.tar.gz=055101c924538467c63fcbf42abddc75 ruby-3.2.2.tar.gz=eb6f18605e1e1be5dfb5b45f31bf6a93 ruby-3.2.3.tar.gz=e0ba90554f7ea41c587ffa7fcfd064ca ruby-3.2.4.tar.gz=c48283a23c72d7aae19b7f510b89444a ruby-3.2.5.tar.gz=3bd6f2b26918c8637abf56c2f208833e ruby-3.3.0-preview1.tar.gz=0833f555b1b8d5423953600fb4146639 ruby-3.3.0-preview2.tar.gz=4f82f4c9e512ec0a53baa1be8d35ebf7 ruby-3.3.0-preview3.tar.gz=a32ede198a9da50d4afc4421a4a993ad ruby-3.3.0.tar.gz=f57422a0f995cd5a93c726f6c42c310a ruby-3.3.1.tar.gz=368e331a35145ace4948390ed76cf1df ruby-3.3.2.tar.gz=9a7efebc6a0e4810c716ec6d401dc372 ruby-3.3.3.tar.gz=beb9773cc4d9d8da29463ab175e4db28 ruby-3.3.4.tar.gz=f2e16c1a56e07e185214e85c62657941 ruby-3.3.5.tar.gz=ccad73b02d942d1e6b4c27873d4c08e4 ruby-3.4.0-preview1.tar.gz=93b9b1040a2dd7be7514a7870aa7da03 ruby-enterprise-1.8.6-20080507.tar.gz=17e3c52e73e42809f57ad0000a6cb4ab ruby-enterprise-1.8.6-20080621.tar.gz=626fc3811eee2dc92ac27ea63d37a8b2 ruby-enterprise-1.8.6-20080623.tar.gz=0bf8a3a93c6b37bb1260cc09b05e81fd ruby-enterprise-1.8.6-20080624.tar.gz=de58b97128aa65209f291c66eab7c4a7 ruby-enterprise-1.8.6-20080709.tar.gz=f0ded08cec64959fa388ec6a237b9c47 ruby-enterprise-1.8.6-20080810.tar.gz=bfdcf06f437af825cd9f2d321f9d1896 ruby-enterprise-1.8.6-20081205.tar.gz=50206bec9be2e08a862e5ec2e70fa693 ruby-enterprise-1.8.6-20081215.tar.gz=aab57b7d5061c1980bec5dbe311ec9b2 ruby-enterprise-1.8.6-20090113.tar.gz=e8d796a5bae0ec1029a88ba95c5d901d ruby-enterprise-1.8.6-20090201.tar.gz=a965e6789b553efaed72191825b13713 ruby-enterprise-1.8.6-20090421.tar.gz=c777b361aadccda7988be16ede7ab15f ruby-enterprise-1.8.6-20090520.tar.gz=156572a8296bd0440970a6bb95018a13 ruby-enterprise-1.8.6-20090610.tar.gz=0bf66ee626918464a6eccdd83c99d63a ruby-enterprise-1.8.7-2009.10.tar.gz=3727eef7b6b1b2f31db7d091328d966e ruby-enterprise-1.8.7-2010.01.tar.gz=587aaea02c86ddbb87394a340a25e554 ruby-enterprise-1.8.7-2010.02.tar.gz=4df7b09c01adfd711b0ab76837611542 ruby-enterprise-1.8.7-2011.01.tar.gz=4640634347cd8e5469cb718853e2112e ruby-enterprise-1.8.7-2011.02.tar.gz=8c5faa11c1ddaed3f44b7294711980cc ruby-enterprise-1.8.7-2011.03.tar.gz=038604ce25349e54363c5df9cd535ec8 ruby-enterprise-1.8.7-2011.12.tar.gz=1e5f3059d52a67ab5d91d472b756de08 ruby-enterprise-1.8.7-2012.02.tar.gz=8d086d2fe68a4c57ba76228e97fb3116 ruby-enterprise-1.8.7-20090928.tar.gz=ae00018ce89d95419dfde370fcd485ac rubygems-0.4.0.tgz=86a64616548a793e1a5f825f0dd385b9 rubygems-0.5.0.tgz=80d151edd94a06bcd2452a7e272b4d96 rubygems-0.6.0.tgz=5df803f5a04654833690dd32283de741 rubygems-0.6.1.tgz=c4a0faa9f876ad805ae80d1396a29d97 rubygems-0.7.0.tgz=ede9b55343219e8b3491793aa12c46f3 rubygems-0.8.0.tgz=9ef6e3c34dcb54e295c8e57321ddc079 rubygems-0.8.1.tgz=6276d268b420c0d61796cdbf6d28dae4 rubygems-0.8.3.tgz=6e6da80f61d6e77d0ad9e531767f6fd5 rubygems-0.8.4.tgz=a2ad2d03dae8a98002c2a7cd6c3ed352 rubygems-0.8.5.tgz=b917c084e1e6e99d8e102af8dd687ddb rubygems-0.8.6.tgz=9de98d2f62e3f91521b0207a4dcdeb5b rubygems-0.8.7.tgz=7fc04b9f9acc0c18cbbe6222be8d0bd3 rubygems-0.8.8.tgz=a8535e9c35a4c215d6ef9268d4bc69ed rubygems-0.8.10.tgz=d26592e280c0fb24c51f2837c3f48e67 rubygems-0.8.11.tgz=aa363b428c4c1fc2e076a4ff77b957d7 rubygems-0.9.0.tgz=5d496e1f415b8b4033ab867f01d1161f rubygems-0.9.1.tgz=a62314cdb174ccc88a27b8924fa79e4a rubygems-0.9.2.tgz=cc525053dd465ab6e33af382166fa808 rubygems-0.9.3.tgz=600940a22ecd79e28e0fd37ad1f1d871 rubygems-0.9.4.tgz=b5680acaa019c80ea44fe87cc2e227da rubygems-0.9.5.tgz=91f7036a724e34cc66dd8d09348733d9 rubygems-1.0.0.tgz=b0b74eac0cbfc5a13f895ab6f803edc1 rubygems-1.0.1.tgz=0d5851084955c327ee1dc9cbd631aa5f rubygems-1.1.0.tgz=85f994904c5b4045f0a859b29d0be717 rubygems-1.1.1.tgz=1a77c5b6b293a3ccd5261dc120641ccc rubygems-1.2.0.tgz=b77a4234360735174d1692e6fc598402 rubygems-1.3.0.tgz=63d3dfc038710eaf532b6a133225115a rubygems-1.3.1.tgz=a04ee6f6897077c5b75f5fd1e134c5a9 rubygems-1.3.2.tgz=6204d0a4c526a1d8fdbce746647b179a rubygems-1.3.3.tgz=0e9697db44d812712350baf28016b4a7 rubygems-1.3.4.tgz=b17b398503253bf36a101c58f02a226f rubygems-1.3.5.tgz=6e317335898e73beab15623cdd5f8cff rubygems-1.3.6.tgz=789ca8e9ad1d4d3fe5f0534fcc038a0d rubygems-1.3.7.tgz=e85cfadd025ff6ab689375adbf344bbe rubygems-1.4.1.tgz=e915dbf79e22249d10c0fcf503a5adda rubygems-1.4.2.tgz=b5badb7c5adda38d9866fa21ae46bbcc rubygems-1.5.0.tgz=49bef7186bf3c0ca6ee7adf4b585bccc rubygems-1.5.1.tgz=47577a5e33c9c6f1e3a56aff7f51d0ff rubygems-1.5.2.tgz=3951f94c09c16c774c8bcebc94fa5374 rubygems-1.5.3.tgz=38bbbdc17aef923fb41f054cf8421116 rubygems-1.6.0.tgz=abd27b5a9002100ff74ddb398a1c9689 rubygems-1.6.1.tgz=a77c64896aaa10d64aaf34f5c1488173 rubygems-1.6.2.tgz=0c95a9869914ba1a45bf71d3b8048420 rubygems-1.8.6.tgz=8e95d0c5b377a003f3d54a49461e81d9 rubygems-1.8.9.tgz=fc399445d693c29778779e5828ee5e90 rubygems-1.8.10.tgz=5b08ee31740c9b0bd36f6c04d537e7d4 rubygems-1.8.23.1.tgz=5259ce3eb7988950fa3aff9051a5de91 rubygems-1.8.23.2.tgz=fb377c7fd387df14a33e529153adc316 rubygems-1.8.23.tgz=178b0ebae78dbb46963c51ad29bb6bd9 rubygems-1.8.24.tgz=3a555b9d579f6a1a1e110628f5110c6b rubygems-1.8.25.tgz=1376a258d43c53750a8df30e67853e10 rubygems-1.8.26.tgz=0ea47f1efd010f4c82b8a51a934f48dc rubygems-1.8.27.tgz=6686ad26735c21d0d6e58b6192c7da5d rubygems-1.8.28.tgz=2df78039f391fb1f71c02c2fc5671c94 rubygems-1.8.29.tgz=a57fec0af33e2e2e1dbb3a68f6cc7269 rubygems-2.0.0.tgz=89ce467eb2d55657e9965a46559acbcf rubygems-2.0.1.tgz=2652ab6f001a873b8933e2ca09505974 rubygems-2.0.2.tgz=3471f140a70bcd32a7495b545cfce790 rubygems-2.0.3.tgz=854691f145cea98b4100e5b0831b73ed rubygems-2.0.4.tgz=3ec32dbe783bab37a87f50758f8efe13 rubygems-2.0.5.tgz=641d82672937d40d664dbc18f49cdcec rubygems-2.0.6.tgz=0633f50db16112bf6c3cf9bfb9ceb9bd rubygems-2.0.7.tgz=9046700f1222712fedfb836fafa08c50 rubygems-2.0.8.tgz=5432214a740c0d13482e43a5328a6518 rubygems-2.0.9.tgz=bc55898247297ffa190223276b1b1bd7 rubygems-2.0.10.tgz=5457ba403cd9a5f4f5fb2ef4a2a1c03e rubygems-2.0.11.tgz=0f28e3fde3348c0f23ceecba73a6cbef rubygems-2.0.12.tgz=99c416517e2de1146d2c6fbb4c4c1441 rubygems-2.0.13.tgz=3970e66a670ddb6d1aade9c7b18033d4 rubygems-2.0.14.tgz=4a7aa0b144e465230ab5d7b59dfd7e8f rubygems-2.1.0.tgz=9a9d242baef5e58fbfe79ec5206cd316 rubygems-2.1.1.tgz=b34d6f4028b69a84123a6b7cb0ac8028 rubygems-2.1.2.tgz=b5c5c4430be60f911014216d41886ef3 rubygems-2.1.3.tgz=ac7bbdfecd49f9304756aa5ebeb51400 rubygems-2.1.4.tgz=aa502b1ea90fbdd14ca9b32634795c2b rubygems-2.1.5.tgz=60564b762d4e186815997653b1c876ab rubygems-2.1.6.tgz=e11237a8f87dbd8c085770551d64a8f8 rubygems-2.1.7.tgz=b721ed7d5fd57ed05f77eb21a3a592ee rubygems-2.1.8.tgz=cc4c84c0482840389a457740e8083ed9 rubygems-2.1.9.tgz=2636bf26c0a9ec889c7bd938887bd9a3 rubygems-2.1.10.tgz=6fa671d7d6605de73d16f529cf7bffb8 rubygems-2.1.11.tgz=b561b7aaa70d387e230688066e46e448 rubygems-2.2.0.rc.1.tgz=f7d80b612339169569f2675155c202f1 rubygems-2.2.0.tgz=3c16e50673adb99d1ce76d5231f764bd rubygems-2.4.8.tgz=dc77b51449dffe5b31776bff826bf559 rubygems-2.6.10.tgz=ab5a0028d2a0653691b29d7463bd0892 rubygems-2.6.11.tgz=8d514b836fcf3ae2c20b4fe8d5cdc3c5 rubygems-2.6.12.tgz=7c454ef88b716c1a123f62b26bb9612b rubygems-2.6.13.tgz=e6f19b51614055d826e431549a12a80b rubygems-2.6.14.tgz=e0a6914ce03b91dfc6d448ebf292f145 rubygems-2.7.0.tgz=771c40015538c0f225c5249e4bc7d441 rubygems-2.7.1.tgz=65646f28f3c36ccaa7f991c17e15b8a9 rubygems-2.7.2.tgz=312a238ed98a61d2b3d165b790b6062b rubygems-2.7.3.tgz=fb3a1927a1842b75677a24f48dd63ddc rubygems-2.7.4.tgz=e9bbf5a4cc9a74293884b91f49603ea0 rubygems-2.7.5.tgz=516a4f219976003feb4b4f797cbc66b0 rubygems-2.7.6.tgz=366cea352c2b1243db726013c3d76fc4 rubygems-2.7.7.tgz=b6721f6ce4af08f68c6f513bbddfe484 rubygems-2.7.8.tgz=a3ed89a34e1ae8f9da0c620a8aa35f12 rubygems-2.7.9.tgz=173272ed55405caf7f858b6981fff526 rubygems-2.7.10.tgz=464754059d8ca01c1121a1233d866e8c rubygems-3.0.0.tgz=3908105894e531f7ad3aceb8b41dcbcd rubygems-3.0.1.tgz=1e8af9b87a67f15841ad2be7d5725a5f rubygems-3.0.2.tgz=d8db1b516ae1e35b8f6f56cb526f879a rubygems-3.0.3.tgz=b7a7dd5f85485334a6cb61b7dac20cff rubygems-3.0.4.tgz=7d0c49077a2d19f48d88567cfa3cf17a rubygems-3.0.5.tgz=4664467d621d719688e4778d147c306a rubygems-3.0.6.tgz=60d84e843b131fb87c8fd67e8fac6470 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=3e9afdf72f153e2f66259fc2b6fca594 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=c30459287aec83548cfcb17340fa73d5 truffleruby-1.0.0-rc3-linux-amd64.tar.gz=138f6814451ce634b0fae3aca5579248 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=94ed54ecb65bea2166a2159431b0362b truffleruby-1.0.0-rc5-linux-amd64.tar.gz=9e5428611e22b093d05afebbe0ccbc2b truffleruby-1.0.0-rc5-macos-amd64.tar.gz=b32a254fed71434c3431fb2effb35c5a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=7f394a8c7fe356b7bd36683c57f74ebd truffleruby-1.0.0-rc6-macos-amd64.tar.gz=f033329d03f1f846d25728c2af9d7524 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=184e98f2d6939f63db4b915943ff60c6 truffleruby-1.0.0-rc7-macos-amd64.tar.gz=d19213b33011f7a55e0f32d25e19184f truffleruby-1.0.0-rc8-linux-amd64.tar.gz=a394167c0331c6d8c1123e1f992e5411 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=dc1bf0fcfdd5837ae0ca56d6d6e5f7b0 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=f6ec25bd532bf0551d35327d1aa4caf9 truffleruby-1.0.0-rc9-macos-amd64.tar.gz=c80a345f9071521cf1961ab75ebc7dd1 truffleruby-1.0.0-rc10-linux-amd64.tar.gz=3a889726efcdf33feb7ef3df13fd5f39 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=bba618b4483b79eebf9f0e7af4078502 truffleruby-1.0.0-rc11-linux-amd64.tar.gz=a25e179ca0be96a1bc737a600729c195 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=bb8d8f5525e1ba86bb039e56291c6c7c truffleruby-1.0.0-rc12-linux-amd64.tar.gz=872774837057489250527bf863192115 truffleruby-1.0.0-rc12-macos-amd64.tar.gz=bb4a64e6c4882fd0c5e412bf9c57720b truffleruby-1.0.0-rc13-linux-amd64.tar.gz=0f36eed2eb36846785fdd4eae24adfa0 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=1bd3087a0f2df4c006b87c9488ada6d4 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=9eddd1aa98c9649e7c01bb10bf28c471 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c93643f1d00b370411310ee7a1dd5330 truffleruby-1.0.0-rc15-linux-amd64.tar.gz=bc7339a6218ea991f2c72ce8759cb6e3 truffleruby-1.0.0-rc15-macos-amd64.tar.gz=1671d08dd2f5026d58b326fd55c9b7de truffleruby-1.0.0-rc16-linux-amd64.tar.gz=5564d17f19b8ee0edb96ab5b1bfbda98 truffleruby-1.0.0-rc16-macos-amd64.tar.gz=61583b529b6a1337398b0966db952d24 truffleruby-19.0.0-linux-amd64.tar.gz=006220c7bde7d0b5c72481133624a83f truffleruby-19.0.0-macos-amd64.tar.gz=9ef7f5a311465d35e54ac6e00ec3d169 truffleruby-19.0.2-linux-amd64.tar.gz=2f7fe574e0695fb6001f4f5282aa2f79 truffleruby-19.0.2-macos-amd64.tar.gz=aa20f76b3eac1f4976a507364201d1ad truffleruby-19.1.0-linux-amd64.tar.gz=71368f8371069017d911528f052b0a55 truffleruby-19.1.0-macos-amd64.tar.gz=7f086adbc89fdfaed35273394ac3ac66 truffleruby-19.1.1-linux-amd64.tar.gz=c1ad4d17bb40e214b124222f3a7c6db6 truffleruby-19.1.1-macos-amd64.tar.gz=f4e76b0612319b4a82480cbd1fc90210 truffleruby-19.2.0-linux-amd64.tar.gz=458ed5fec1a849ef5b00e19b0e25d5e9 truffleruby-19.2.0-macos-amd64.tar.gz=dc324575ad20e3054980835c24ea7161 truffleruby-19.2.0.1-linux-amd64.tar.gz=ad7444145550d89931199159163077c1 truffleruby-19.2.0.1-macos-amd64.tar.gz=b5bcfb0aaded1e2d1763089ab6c9a14d truffleruby-19.2.1-linux-amd64.tar.gz=fc4879d2b0cc22c152a8bf893a72c346 truffleruby-19.2.1-macos-amd64.tar.gz=71448ff3f8f1da086f222751d3f853bc truffleruby-19.3.0-linux-amd64.tar.gz=dd44ac30b5a1ef3a7d61172cda9b30b6 truffleruby-19.3.0-macos-amd64.tar.gz=41daa52f0f308abb77a2b91c1b7e0f3d truffleruby-19.3.0.2-linux-amd64.tar.gz=2db2cb5c29523c9bdb6f59dfa0bd74ce truffleruby-19.3.0.2-macos-amd64.tar.gz=edf1603643938686dce57139aadf7d3c truffleruby-19.3.1-linux-amd64.tar.gz=a14c028351f7a3965bcb56e9b22364de truffleruby-19.3.1-macos-amd64.tar.gz=a8707d0af3eda694ec07a5387d3443fb truffleruby-20.0.0-linux-amd64.tar.gz=b30110ecbc50c4fce402fdf44c45dad5 truffleruby-20.0.0-macos-amd64.tar.gz=0671e5909cefb9a2c12c473fc0110821 truffleruby-20.1.0-linux-amd64.tar.gz=4592b5fc3636d82fc998ab6fe0a43584 truffleruby-20.1.0-macos-amd64.tar.gz=3c0be43db86817c7037d3ff5053d322d truffleruby-20.2.0-linux-amd64.tar.gz=e9859decb24829f9a189d88b3c2e9b79 truffleruby-20.2.0-macos-amd64.tar.gz=49e7ccf8f9e60d6c59b3b07b854466cf truffleruby-20.3.0-linux-amd64.tar.gz=93a20845f7d9d39100761424dfc0a734 truffleruby-20.3.0-macos-amd64.tar.gz=b178b7a94fac58400450417612fe3441 truffleruby-21.0.0-linux-amd64.tar.gz=c03304a505c8699e697acecf5030d95f truffleruby-21.0.0-macos-amd64.tar.gz=019796be37a58ef8e186a625f2ff5d07 truffleruby-21.1.0-linux-amd64.tar.gz=065bfcc48f6925410e0da21e16428b64 truffleruby-21.1.0-macos-amd64.tar.gz=325f6854c10d8a3a114c80da582c469f truffleruby-21.2.0-linux-amd64.tar.gz=0aec44721a040845347f18c1f72ceb75 truffleruby-21.2.0-macos-amd64.tar.gz=76d27715b20902df5779f7a0c00852b1 truffleruby-21.2.0.1-linux-amd64.tar.gz=f68e9b8a9f9cae5efc5ac45a7d9e760d truffleruby-21.2.0.1-macos-amd64.tar.gz=b021e50fc94cab590b49d27f2ea821b0 truffleruby-21.3.0-linux-amd64.tar.gz=359aca79cba4e08f9955d9c6543c2189 truffleruby-21.3.0-macos-amd64.tar.gz=d9e2e2c6fcd3ac16f0c37b0ccffb4f41 truffleruby-22.0.0.2-linux-amd64.tar.gz=324327026e9b2963a8e5fb4ee3f4e216 truffleruby-22.0.0.2-macos-amd64.tar.gz=7029d0e291d498a264d9b413729a3e17 truffleruby-22.1.0-linux-amd64.tar.gz=9329cf507ba8ac529e93156cacc1425d truffleruby-22.1.0-macos-amd64.tar.gz=353242978b46cafc34b05e2c81206096 truffleruby-22.2.0-linux-amd64.tar.gz=5d676377056ae94fe847be721c20405b truffleruby-22.2.0-linux-aarch64.tar.gz=b774f4b7d330842521f1e6e56cb41db5 truffleruby-22.2.0-macos-amd64.tar.gz=e45fdd9a05aec6220a76fb707b0a5ae8 truffleruby-22.2.0-macos-aarch64.tar.gz=ebcbfe056d90d06de4bd0a9d699bad8f truffleruby-22.3.0-linux-amd64.tar.gz=ada8bc5dc52aca8317eaeab04d91e877 truffleruby-22.3.0-linux-aarch64.tar.gz=11493301d5519aa73e8f0e140cefb581 truffleruby-22.3.0-macos-amd64.tar.gz=9e27c677637b69b0460fb0a4569a5cca truffleruby-22.3.0-macos-aarch64.tar.gz=eaa1c9020b521226f8bb48b8c7e5c596 truffleruby-22.3.1-linux-amd64.tar.gz=243d926f038fd2220c03dfbe40ef58c3 truffleruby-22.3.1-linux-aarch64.tar.gz=01487fe680863381489bf2a0a2ac162b truffleruby-22.3.1-macos-amd64.tar.gz=b3d5a777d94856e51034d81076e8ef72 truffleruby-22.3.1-macos-aarch64.tar.gz=320ce75730a5b9f16f111eb7ef5e4e09 truffleruby-23.0.0-preview1-linux-amd64.tar.gz=76c1cb23ee63ba4de93a0c23784bfca9 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=eec3fc74565f08e9468982692f7f9010 truffleruby-23.0.0-preview1-macos-amd64.tar.gz=50e38f3cd548dfe78f397f76ed577bf1 truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=b769bcf9b843d9b2980def1e2139284f truffleruby-23.0.0-linux-amd64.tar.gz=6e1a491406c5dbf42de10fcb3ed7dc1c truffleruby-23.0.0-linux-aarch64.tar.gz=5c3663f64bee707173b2684355a9a42e truffleruby-23.0.0-macos-amd64.tar.gz=515a9a8a0f39ba9399e869cd418ebff5 truffleruby-23.0.0-macos-aarch64.tar.gz=57e5fa52270e692b82c445107fe6b6a6 truffleruby-23.1.0-linux-amd64.tar.gz=f7511c19045e57e72f9b5415bc17c8e8 truffleruby-23.1.0-linux-aarch64.tar.gz=e8a20dd919a2ff77b7cc5457e853d15d truffleruby-23.1.0-macos-amd64.tar.gz=d3b6a3cbc0a230ebae6f3a462a32ddd3 truffleruby-23.1.0-macos-aarch64.tar.gz=ee74fc5d192c2fb8afd0458d2d429c02 truffleruby-23.1.1-linux-amd64.tar.gz=d7e1c040da170aaa36b5f5a1d106d237 truffleruby-23.1.1-linux-aarch64.tar.gz=cf508ba3787be20c03bac690f3bdbac5 truffleruby-23.1.1-macos-amd64.tar.gz=a662a8672871524808500dddef3808c1 truffleruby-23.1.1-macos-aarch64.tar.gz=de543312024993a533e3caa63b396127 truffleruby-23.1.2-linux-amd64.tar.gz=e3e5b01b291d7fea61be2be842c7e8dc truffleruby-23.1.2-linux-aarch64.tar.gz=8fe26f643fa81eec6de3bde7024c858a truffleruby-23.1.2-macos-amd64.tar.gz=83bc41bf699fa847df7e60412bee2823 truffleruby-23.1.2-macos-aarch64.tar.gz=7dbd2e182cfec0cf2d2e37784721903f truffleruby-24.0.0-linux-amd64.tar.gz=202f05706d28faca75d5e3cd0f9bef78 truffleruby-24.0.0-linux-aarch64.tar.gz=4faaf4edde4f6a516246b7c2f4ee80b3 truffleruby-24.0.0-macos-amd64.tar.gz=d07f27e0e29398c6de836b0049105c12 truffleruby-24.0.0-macos-aarch64.tar.gz=10cf176718968893468caba617c02141 truffleruby-24.0.1-linux-amd64.tar.gz=2914bfb81b136cd1fb5736c0a40068e3 truffleruby-24.0.1-linux-aarch64.tar.gz=429e6ada9a95ea23ebb95d01f90eb0f4 truffleruby-24.0.1-macos-amd64.tar.gz=e3aa5ab128f5d169d93f2d6df98c4e77 truffleruby-24.0.1-macos-aarch64.tar.gz=6f81a1afe1b89a40f00c9bd4216ec45d truffleruby-24.0.2-linux-amd64.tar.gz=1a826ea6323a25becce5940d8e6c4642 truffleruby-24.0.2-linux-aarch64.tar.gz=45429f35653bd8cbc328eafe81d15e8a truffleruby-24.0.2-macos-amd64.tar.gz=f68aeb26783d048ae5f78e1c13739747 truffleruby-24.0.2-macos-aarch64.tar.gz=df05f94696b4f4584a259001a3d4d1d0 truffleruby-24.1.0-linux-amd64.tar.gz=14aa05250088f17491072e500c22c039 truffleruby-24.1.0-linux-aarch64.tar.gz=3e26495f8aa7b810ec5794a69e93483a truffleruby-24.1.0-macos-amd64.tar.gz=53b6251cdd359176f9e52fe05f05e949 truffleruby-24.1.0-macos-aarch64.tar.gz=28d61b8a1a307cbdf988313c8a1f77f1 +truffleruby-24.1.1-linux-amd64.tar.gz=9ef530c2ac5f597100e69e4b374182c3 +truffleruby-24.1.1-linux-aarch64.tar.gz=efcc6f5c51be84d2ec99e6cebccc586a +truffleruby-24.1.1-macos-amd64.tar.gz=11e2f0f62c55fcc8330cd66393abb1fc +truffleruby-24.1.1-macos-aarch64.tar.gz=eaba15df3e46cd3976bedaf6f086aae2 yaml-0.1.4.tar.gz=36c852831d02cf90508c29852361d01b zlib-1.2.3.tar.gz=debc62758716a169df9f62e6ab2bc634 zlib-1.2.5.tar.gz=c735eab2d659a96e5a594c9e8541ad63 diff --git a/config/sha512 b/config/sha512 index e02206f..8a1b642 100644 --- a/config/sha512 +++ b/config/sha512 @@ -1233,512 +1233,516 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.8.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.9.tar.bz2=c81ad5e16aa18beb7c34eeee68ffa96da243f99ff69cf00932ad5ebe427c1f80e3f7fee31b15ec0d96c1be5c2007dfa6e96c38114f61e958c6b7ecc40270db4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.10.tar.bz2=856210b3eb2bf338c5da2668e830b95d48feb82c1c4407371b18c772df12878703a9eec948a2778acd098bcc8eb402ba6d57b2b935766847f3e652c3dadaf6f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.0.tar.bz2=6ea5e6338319e5d6861d420b10f93b5e6634a9925380c61acfbb258b6609ada76bf2a6b474b53a30b0a81f0dd81cfdd1e610b68698df73f69091f479ad39bc63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.1.tar.bz2=8e8e4ef137b9394ee34b760dbeaf4d23953bec083e5775a423ef6c16b75faf8bdfe99df975ab6b6d762509536b017f3510a9a5e9ab63060208edd4d2d96371eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.2.tar.bz2=756c9ecbe3c9801a0a364143478903318c524f7aba026239a1fb42d7390f74110805543a9ac2a9f8bbbeaee48bc867fd15d400d8bd46576bf4fd417d6136a3b2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.3.tar.bz2=594ff95e33d0f7af7be448a781ac68f895f8344ebb1c9a03898813baa5963024aa84b11baa405fa584070e4195fbfda9b908f1fe171f75f19e5e1d7879bdaaf9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.4.tar.bz2=a9703c6edcfa2ddb87bb73c070d963fc4d59599919865be9b1d93989906698c6f3b9c4fd7f2d597e5d710276555de0b5865676b92aa3aba1f1f41be4052bedc1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.5.tar.bz2=dbd91cccc0a00a1ca7e901d56f9840e62e4f139ff4dbae530169f41897d06523c7e8977138ffc6212e1b60589f3091a4e2f6b6714c0fad22fa65e442b248f61e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.6.tar.bz2=ec967415b5bec95154cd9ff8338a602a6d005fa647afb1e1cff54a0fd4e9c0697b9e952c2dfd8e4b30068a697f5391b9cd165d5d33f3b146fe35f2a8fdf9823c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.7.tar.bz2=b8786ef31db7d950b1309646f81e6a99d56b76223bb8d2d20ae045f09917332a869b14cee1bf235675c7d8eebc6942b5ebd6cf0cbd290ea75d9f9be1475352f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.8.tar.bz2=4d949a715a04cd45f6817b1b26093f7bbf03ca630aaa015972e7d0ca72bae094add18664e1489ebf8ade27c160d2fbcebdb105701d719461af13c4d5fcf2cd22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.9.tar.bz2=ec6cd8bd90ee99aa6470d9d524d89531f96f992efab8a9d6a709a3959ef4c314828276e67b84ed97d415cb3e0c837458d13732dc940c93d4d069d9b881d7f92c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.10.tar.bz2=1f60cae30581e3467c7ec07391de5045f238b61a49661ef0cf76d72ef78d220b7ae70b86b1e72625cf37085b6507fb1dfccfbe5554195f0c6eefaa996e199c16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.0.tar.bz2=343f5dd6703b6b58d61fabefc8a50ce5d02d98c32c8b4e52b8deacc9824369a9f0dc8faff69e90ca7585a194a4d742791765b16c3f5e2417b0f54e0e6f6220b4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.1.tar.bz2=aaf7f9e30b3998b8586764f61d09e434c32aba7479aa79fb6afa71ab11c067384ef3a4b9215a1a3639da807f4f642b9efc62b37b55e989b7ed7d75cedc7cab40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.2.tar.bz2=b834ef95d52abc1f0c224193391bded9b4d2089c694378dd5aa45f8b2b1ea41b1c300445f766841cbb8cdb1114491ffe0095f518e1600746f5f583dd0cff9c1f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.3.tar.bz2=9df5ba9423e0a8af9d825e59f8c69889c70af0f6d67f96708a02d7d61260c83474e2f7b2f240af399911bdfc56850255b4f34554f7013d0417a13bb782403aa4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.4.tar.bz2=1d4b55a6a34249e82880fbacfc1d97a093600005deb982c6b42ccb14bbd7bf1db14e0f6d73bc25f1addd72378850f7edcd63738f2b3cbab569e34e89d563188d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.5.tar.bz2=29a76dbb28d5b63ee0ce64cc2e7d022118350a550d3693b8e38d559bbc4f42fdb6b63af4bcc4ebfffc5c0fbabbf2e18db7228e655de3bb416e344a61737870c7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.6.tar.bz2=122322fb462f8fdcb065e6f9d9968027c320ba9be9ad6fba9011760a7296cec1892a0780d7436903cb7763f5d18cce11860c5c7fce82890eaa139a94d5e89428 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.7.tar.bz2=0c17f52a74b73041c588ed76f73862d179d7b9abf9de61279dc74ba7b7f170179e0db5672a403dcc209b6dec9a865a88a382f5df01f5e6ba4cfe0f66232b4a15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.8.tar.bz2=1a30bbda34fee311762a2f05ac7fbcfb4f373f8840f86b9762b0c07f1cd397e3eb3be83210221384333b625a243c7161ef4f368602a613760391265309e4f304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.0.tar.bz2=edf31b2dd02208c96be25c2f4f7d35e2b122e5d327133545e16038836b848b90f81079be4df47c5493bf4ead1d464fa72a8d0d405bb2509ab0db6335c58ff793 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.1.tar.bz2=91cc7a9cf493c7361f3d507cdbb8e258b7dd710100cca8053b77569c07c04fbc2f72fdceb9fd9a3a5d01f4c423a206da97730c356d017157bc2454041e1f1fd4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.2.tar.bz2=8ea603a27560ddde5fc639b86381a303f886ce80384d8edd0e7bc806f10649760d75a76dd5f2ee445371254e727544ec12df49d7fc8876890b73237f4eecea1c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.3.tar.bz2=c42f24668695be5c291836ae6f39b4366e0357c9bb63cf8be2ad36cefe0c6d19cb921a43159d49d4d062dccc15902ec1698a1a6842d13ccaec45c6cb628da4b7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.4.tar.bz2=3ac89131407faefde80bf2e1bed4baa51c371ab4bffc18c8dcf2624f4d1068c9f933eb66486a2bc7c6c67f674c5bd06747bddfe1f1f9dcd939458a08e1bc6108 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.5.tar.bz2=8ca9a9387b8cb434828fa36e5886bc8a28d70fa46d3e20df60389880477fa2ee54fe63c0c14611a2cb0168ef1149d205640c6003e6a507400ad5fc34fa641bd2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.6.tar.bz2=52795cd7d112ff437adf603f58130ce539209628d2224a685d060d67a07325717981fc6f91736d4abfe014ccc8057bb40a097fcf85f5046aabde0019d08bef16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.7.tar.bz2=bc179a31c746ac6e632ce08f57a8f403d4e463ad72285c0ce008d7fa39b88a22be3a43014c9eb019f6a39d022f9448ef151a8d03e89a4d2e767c4f77684e3750 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.8.tar.bz2=d693e3a800c2200c74b24c207425f41cef206a0b3f20625d18b1590e9891f409d6643ee0e7ab8fdb6e1e85de6fea52c6a307bf8f65324ee0f9ac33306ed1e876 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.9.tar.bz2=4b6cab99f6b7be7705efa5eb6f321b5eeb1d1c6e96d4113bf96b57378aaa4950b39f40ad555f630f17d216d235972f028617ea43c28b1970772ffd16be3d9a67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.10.tar.bz2=40bd90d231fcedbe34ec9963eb59645fdd1036b03056b9b8fa3b56900deb86d94e2a256f90e6aed297288d6797857a3ef9fc27bc6ed05c017b5c8e8ddc465df1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.0.tar.bz2=c1df39ae526da7ebf87510017d7694e6f78c59871baac4e9c5f2d13c22cbecc30925e2783ad93f741110b7c3802e9f25a6c3ff85160b33a4080b0f1fb02f7740 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.1.tar.bz2=930f6f7f654fa14076c84365fbc771d5b09679588c4c478d8f6944770c53fdd37213bdad159fd231efbc079b85ab7ab648b0a97fafd666c38d0e280046c6e2ef https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.2.tar.bz2=cb62ca82d57dfc0e21e532d4b523f49c559c4ed5f3d73adbd9d650bbf23c694d382f3cc25eed6a8630f23e4780db127b4b8b6ecf6fc24b0f6febc820dbc6af3e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.3.tar.bz2=708209a89a18cd99c02392307d2bc63e46bd38c72c8ab0e982b28285f8e006d4ed77e04da3900c880eff01c3350033cd00ffc3be1d3a12c4ee5b263282f0dd05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.4.tar.bz2=c94f5b3129ff41da1b07da1cf742592e9822febf6bcfd0e9eb7145c00b732fc66625056bddc72fe9b631742c70d0e731cc6a9a16a089c7b559ae963b072578eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.5.tar.bz2=b4d20f79eebc5496768fc6adb0735c6a23cffbb39ceaf9c2da42851ff7842dd2318c07877d89564176d206e22b8824d2a3c637b5ef02c5caed0b2b5276581032 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.6.tar.bz2=a09ab93c3d6936d30065236ff2abbd0295988a9359f5a76425cecab47af0ca5b6829530d1708e9ddc9e78d1fbb7c0359b9c7e90227870537d099ccc89c73844b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.7.tar.bz2=f6086c879f8737eaf6eef4461d23270e9e43811186a22f35ed69a8303eb933136e7a690bce2d9e18bcff730725292075e09db0f2384d0e26018b7f2a0df70b32 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.8.tar.bz2=62c631026560ee310a849483f1b48690075477942ce86e0564e92f5ca7834553c435a35a1d6d8dd957c3a7be24c63c32104518995eb3a96e61066a04887bb0d6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.9.tar.bz2=0f10741772d2498167c1eb2aa263292f99748518a4ec03dc19440eb5befa075fa69e68b08a09af6eb2e02e462ff20ab10e4121cfeea7bdc938c04762d81fbc4a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.0.tar.bz2=908132a47bd996f8c76bed54078e71abb154294f97dcba779b4cf0d3b82e31c4635dff89e97d5f6b4f1d797d854c6d020afdf9dc77b10c0e522755fa194a17c3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.1.tar.bz2=39c867ac0af48410c0bc6b01f1ecac00616a59cc07f3f5a3e7cfe8f786b70c7cacab65550dfee777d11b8b7a3ac173bb22c602df370eef6a04b40f8e539025ae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.2.tar.bz2=2f04566f6d778121281bc6ba23ec57ad408049e649b351585bc9a3184848c71873910e159f7fd3909c7372378152f5ed264070aefd45933b97980e80f6df4deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.3.tar.bz2=940375b11c525e3f0bf00e19013eeb886bf85b8d8b66d86d53740170b0ae16b14faa491dbcbec29238f875f84204cb0d52ade17c180d71e129cef5254f338f0c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.4.tar.bz2=1c9d41d7ab7bd69d7e3baa3c4149b1938cc147beb2a63923dadf2fd959732c8cc824e2add0946bcd62f44b0e1d509b80b4796a5929841cda8d28f3a8207b17df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar.bz2=f47443a53e3008cb7b7b7afcbbf1adf44887769e42b3defafceacc1e50e349c9000b98010f853c6b7cafdb54b85b640732a56a8e11ad8e58fedb5fa4724f68d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=fc1c9a08c48ad91edb4afcac5244f386d63940fa906dadaabe02a1eb025375443c8174a6ad1acd50f4583d6c57a88feae86e697ec15c8a25bb49f280b1357783 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=aa611f7c350374d2c5c8652a694022e038cb5a65fde795c43e927067f155d0ccb368b281b1575e679b84cd7ba6042216dc28149e138256faf62dd3060ec0a6a7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=ab04071b90ddb81b68f064fbc9f2bf726729220e4359113556d9b71f3549483f122b796b3b1e4dc8404e6f44a4bdd02e9db2c8066974acf190448c4d5a97dc6b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c769fd3814bf31728b83f2bcdaf0928e6423150609f3db903631f9db68ce0a0f9c87bfce5f93983cd962662148a66cc55f5f42bffc1a1b5a237e6938726629ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=c231f8ecd46760db49796519645bcb5cc9fa1c0582abbc419a2ca81805c81fe8912dc32dcc2c5192ca9ef0d502da8f61ce1ce7ecc87b29edad3a144a8a0c200e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=b41557c83084c8e5bb263aa944499932ce7d84457e4e307f1cffecf62aa44f8543a06299e38fee17ba64f8952048612f9289e24c35acfe2ba02b913c15dc1405 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=001d10af5833a03b42d9a254bde844731d3a796d98ce2efea90fc68e4638c7cc3be31a34fa163d4c5ac18c60e685e5cf2ccf88fac46ae6bc587a48ea35cfb09b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=0a8681afc19372ccd9409bb017967f86c2e6642e083ca47ec904cccc34242040f710392d916a69a327ae6a0bb287d97bc05bbe116a1d93478ae282b32e5fcfab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=e505ff2f00334870d07f4ec9348648b7f3b91dbbad1fddb2f60f7a38572a66a7bf081fc7b386f800d86113aac1ce3cb739c86cf0d6da2bab916a4432ad557c54 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=aee6000ac886cdd4e4044a7b43ab20d54d1e99f6b893af69d0d7e7a202f4ae861f939898580c60996b0bb7c6481eecad69a20acc83c75cc594dfbfde3a22c476 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=86f4e6948eaf2586e018570f09232b94f907766590eb75f00992531ef74676070ac5a2308e121ecc1c23388ece4dbe1ee8a4b2a7ab99ca00a28d6583d6df3d0a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=1bf867b0af84eae4e7996047727fbc7ef459afd3b2ca5885f658a74d62910d00eecddbf0c11b23265c625c26b420421ca5add40079438edca8eacd8b5c0149a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=92a3b217079f9d960cc4fbb5908f7fc7ef71cc3ec8e5e404341e2b8875534c0542167d03b61577776e0b0f049f9ba2e3235842be381b4d484845768adaa6e3f7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=608f0f9eafd72226fd1b39f6c92d0f1c6d3aa7ede096cc390fc4f8bee4326b0937767bc6de84fff536dea48cbf9bdb8ef5598670235e013ccd630b06c5b8fb05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=40cccacc66cc4b7891b01c35375ca913efe008157ae540308b649e14f5753f34f1827861c6e16b500c49ac95e1aa22e1c01444faca5dce71f981452a9e0f1b67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=5a33d600e55f7b8755725d7e2f2102cd76720d524d7b378d85fc21ea8d853166dd97e2e615ab18f9e44122e3404b439dd123f8e23d6ade5328982fe72db2af0b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=37e3a4011b3603807c6e0fd48818b256caf272b3720ee654f38c0ae202cffa21600f9cc751b5335b57905ce67db185b37f548ac9c84d6acfc567f0ef4866635f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=6648c1b6bd962e30e89eacdb6130b1788ccdf6ed05ea13eac32eefc222438a298de8121937262851cf5c4cdcc1a804d5d8bf19667819db6599bfcf79e57b0e17 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=ac690170a6801fd741efb88e67961c0c3d717029b3bd9c6e243074799641c940416fc9cde7b4ba2c56e79551d6cb7fe5f7977649404da0d20d1819d7d3ce0bd3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=e6edfed2dd9d6649c47b1dc1b102f933f76a148e6dd8441add2316073dd255cac851e972366e4821fcd665e55b375fac757d189b7552baaa0b49e82349c71b77 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=69c4895076690037199f2a9b98e622f6b5e3c23ea02de79bcade6193da2b1b88ed0c28006059f4ecc502298442275e7e7324232de04a2f0ce430665057410a05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=175777563303c6d6a04393938ffa7e36e0bc6db33f7d2cf1d42ec852b41ea26dd7d50569eee4cb00497e6bceae95592365ea6718a35451e5c929d8a085aa9649 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=b668f0cd853615fec38253b264115ef0fedd21a7879a663ba844f4c3fa8b87e5ccd8adffbaa12ffa3aa16b108a2a439cecf827e7d8e19ec8041d46e758abc391 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=2039b1fcf55cca35ed3c8446eea45819368016ec1a05a5fd4c6a761b54f5cd56cb3301d5d2674af1ff75bda41eba41b7156e71ac48b88ca7a6474f0e944efd89 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=b4bb324a53c316da488c5f60803933eade9ad5c59a6d58e76787d2dd89dc2d2f18016d2ac4ab0853a40976b4beab70864a9c2d23de194bcd63ad089b2159fa7a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=3a9b5868d707d6a4580a44ab7504cb46a2713f78918142b185f0d62c5b7e0dfebc1ff551b2a52e9726befb70abbde867d2802345a01fd3e4568b9f58ac83c168 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=39007e736b28ca599ea244bf4e54b52e86597c950c0ebd8f1696a02c8eef575a734d089b52c7013d00c02aeb261dd7e2facb45f24b34c75c4bbf14cb8bdc3ae2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=0fc4e39f7382c29fa2119119a78040c611fc8298bd4765025599d3018775cb2bb28f51d38efd4306e9f04eeea20e7c2365f2fbba1233e0494a8258c3c184278a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=5dfbcefa70f5b81887d34e776713bb9c6f7bcecbda8f1c9561daa3e235c725417ab0a930f594303723f226d36306e6a73f228abfa3533280659ab387708182da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=00936db899bca33dfa8d0e6ffd4bd6b0453ad5823a450e50e3a055ea696dcf94b317357732e26208a6f34224c33a8b4a6130e5613262d62381179a52cc8f3a1d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=15b816d190fd58382a2f6f6e087f358b54003f186462abf59dbef545af9044a2b9c65576119185adc6bfd9ebcdb49f03a2a268eed4fb0f0d37aa35fa18adc1fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=3a481c35668be459688a66e4e480e11b4e58c13aecc3751da9de8a3e3282bb4a152128528a804742aa0b4380eb537b666a2b29fd79be0d6968c4ff1fa428eb7b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=c604871b39f396c539c52dd4849d1d42f37530003601f60162860efc777c85e7e1a1ee88a77cfc9ca8ca20f0448a5dde4f39cbdae67470d8d2d283d6fbbf0239 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=12042b5c30179da275fcb6155142ff2787e86cf577caef44b7c4d8175ac671cd461814e9a19f4c9b1e78bbdf041fdd06bd463aa972e194caa91e80778a56bce0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=2bf1c13616b2e255b8c269bcb2f979a45009c079ffdcb10a13e238e5d13b0978e8a974bdc1e7bf8519e15264ed5f577cc8f85a5861b3ea3a4589eb78138a3f2f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=2e7876c8c8a1f4e3cd1913023c564d9e74972ce427e85765bbe9ddf237285d7b96017c1ed17868eb912509881e05aaf96e4a6b353a69989e61c733b346511715 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=06de4f6f2761bc58d94659f826c7c86be50192b7dfdb5c8b6710b384a50299ad161309e2a8c333fa5249d0e7112f74dd0c0b0faa2950a6e74bdba68833f68702 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=597374487d196abdfb389c79d7d09b81026fe3e8043f8811497646eaf47bfa432cfb96e2af9be1a35ad2d05f2f5c800afa3f9e5adb0ea2b2d31812d219232a00 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=ba56050ce3fdbb9117c6c9e767f818ce3d467030713b7693ebb039f6888bd5d7e5f7b1986ed117414037e56e550707c3625a88bfd5d00d7319d0c7ad642fc811 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=395facf2f7a15eecc94e554a60d87c269ba70c5063b24b7bc504f579c0d12a7d858eb0b98c502016ff8bf02aaf11ef765e2291b542759fc96affa186206ffe4f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=d1d527b2e95e3a16f521214c5352bcb379b946e8be1a943da872aff0ab4b8edd93a507d693abd7a8ef1cd5ea1ee6e6bf1f838683f5a447a6cb7992de61f744ad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=e47a50392c4f3ee13a565103e0c5f9474ba0a8f5ff60fc9fe7d290b7f5f9a9ddec962fcbb103a8d3b9c7765a28ba59237975f90aa3637a06a128802ede28b3da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=77fdbe62d1694732a7307c29b4f45d0dcab7e8a729f04f45b216345336c5820715bf3f8f7cab52175c4ca1a431d867c7feef7d802dec61c2cffa4abfa8746e90 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=24da0cfc93ac536c505dfaf2dbddc7b312a3cc5c72a9f47e28b3bba760a53b584422b73da8546ca01cc44d3906a31eed7f27a3dfc0bb574f01f9c08f7c589d20 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=aee8267c4855e95a55b7ab858ca6359d635049743b8e38d34ad1430522a0cd746cd572e77884f7e10af14a731ccd8ebb9cad6ea035b0fca4ae534913a38f43f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=ba3e66bd3dde28e7193b90c44194cf7732d294e592321c482deb3b31ddd9655630f5b04aa89a43eb9d1bc222da10884e9da332bc9da78e9e1b655300db52a444 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1df8a2ad9256985b4ffb3da5b545af4160ccebdd8265711d1b642cd2285a004a42cc2ea51ce3ee78854e599f5196c66448b8e0b043846ef6e6bf992828aefb6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=cc460b3d17d460abec27d77f734e1c1e7a649769c3374f02d32a4ad00f989ff3150dab926a203b209c92475100667dd524774fc37633d71f98737ea2d8868968 jruby-bin-1.7.0.tar.gz=1e466a3f8d52b553c9def09827fda4b8433576b0262c40ee505602754521a00defd821d5ead5052be52baf281c6cb080fd03a8b15c628a0ee67b4e417633e5e2 jruby-bin-1.7.1.tar.gz=ef28381ca30664cf450f9d3df9927530db771d30e86ebcf535af38e1a7e26724ae2bcfe8487cd2eb349bf609a733a25528aae14beab4d13d298b5604ac7353cc jruby-bin-1.7.2.tar.gz=8155c81eea6743951db7383bd9f6b1750614927c9c0b25a6574f6d64898bb3ada2f626c6e0df6c5486561a03cc7d472fc12fe804ce66a3972d2fe02e3f407100 jruby-bin-1.7.3.tar.gz=1d19be25bf4a7dbb0edad71008704377893d3967aa4204a0d59d6883aa04462ef6798c64d0c0fdd3f5129c16ccb42e8507f3fef38ed56054bf6e689de745935a jruby-bin-1.7.4.tar.gz=d7c0ee0316c50ae5413757e956c18ca68e9d99a25cf85be978da0787c13b8978d4ff2712a3effa564cfdf07144be4a56a0cb8acc794a01f43264fe8baeb125e5 jruby-bin-1.7.5.tar.gz=a4984591a3809330b93f4ce79fd1b9c24360f89d88a03bbc76351be623893c4bfc6441375bbea452ba4f24ca8b9357e03ac938fd6c065b3e2348c0f896b22a1b jruby-bin-1.7.6.tar.gz=98600a2d46bfce14111c7eebc62716352a4b685043afdd696b8fe51c6b205eb9569fc2860423a653b842b173198c76c59767156aa48e0d23482dff3358d884f3 jruby-bin-1.7.7.tar.gz=71da2e72c65899216fa15ec568b51aa7004e2ed7dff99ca376b332d3692c83a674c688dc21ee04d177a3961a2bb3973714509d88cc14d0ba9f79c864c6258a06 jruby-bin-1.7.8.tar.gz=42d54243653ec260abdafecce1143161be63fcc38a80f71ab70fcece4bf91545a2b12ed2319f9fd6f6b41916c398a9a8e89e7f0389f59da56f2739665e74522d jruby-bin-1.7.9.tar.gz=f519f53b1d9f57cfe28982ad70b892dc6fc20fe6601d98d65a1dca9f617a0eb8fff74d0fd82ddb858fe105d05ca7c7bbf3a987677ae0363caa2981bea358c096 jruby-bin-1.7.10.tar.gz=160b701f2f500dfab64beb635e5c4dc57760dd422d0fffe8d3cf8d84ee6ea17a877ef77a0087b4888ea9db64ce7750de01a73a51530aa6666a2efdcdccdb89e0 jruby-bin-1.7.11.tar.gz=a53b0fa327b98344cb4a8aad1ba537ddacb709a0e173b1e32656de8a610cb9896e9a4554d54d0d01d2361f8ff1539a0e2ee01308f670df2004225231b704065c jruby-bin-1.7.12.tar.gz=bf2be8a37b53d38c75712a6331f96b999fa6b0e87f453fac7b9d11eeb1b66098ea0778172f1a6a84345e1881f05d63012e28d4068a0bd31122bf2473bbdae5bf jruby-bin-1.7.14.tar.gz=f14e658da7f2abd469edcfd657dbc2505d6a2c04ba1e5f65f2164256f54625da154b338bd3d286ea6a18da61d04d90a61ad6b012bd9461182753483efcd0f603 jruby-bin-1.7.16.tar.gz=47ca714c3211c95c84e9c80ae4fbc894bfd7ee03e1bcc494cb48d839f8538db4aaca7029a4913b8d323e7227450e4e41bb943dc670f43df8a654eb127012033f jruby-bin-1.7.16.1.tar.gz=9bacdf6e212d08e46ac2c49183c8611873f6ecebfcb0e928b5110bdebfeb8751ac087cf8aba09afb9a8ccb58e59f3c3e06a241c1db445835d7a875b0c3deb4b5 jruby-bin-1.7.16.2.tar.gz=349283bb5344a62f282021ce39648a0c8d0b41ecf8f800ab5099b5ce161ff771e688f205a918324cef6ba0ded6b3694b8dd83f46f56be584202b8fee496b37e7 jruby-bin-1.7.17.tar.gz=a3b171df08e789f91c260c5a57ec842a5d62cc8d6b462b772905ec5284e394ed7b78f5b327ca1ff20f5deba8371a86cb03fade75b5f34f233df47bc3f08d469e jruby-bin-1.7.18.tar.gz=b259da2967e246a387687117eb13e8986b57de6ca8e570d6f8f8f07b8097db6e01cea8b0ec3a860b091fde14de535260dc6dbfc638f9e9b49d348f726e969642 jruby-bin-1.7.19.tar.gz=da91efcd51cfc833666f8b7cf949d3b5c41cd8da99ae1559c88a7358fb48df1245c66702c7cf23e7ca012cbefae98787c200352976d4e8aa3e9120057a89dc8c jruby-bin-1.7.20.tar.gz=77131afe46e72c406ab4250e43cd1f98e59a8351c494044ac89f97a7c9a81492f8a8194541055fcf1fc59569e99a577fd6a36a9f6a3952a99f399d4970e80e69 jruby-bin-1.7.21.tar.gz=111883df12a60d06e9924d33057ba72094fcffd44f7e3954d6c6d2190f8e6442804e739cc525a9e75159251a8dc1cc487570792b1b4f5773f4d0082f0eb360d0 jruby-bin-1.7.22.tar.gz=6ed6cbe7b81a8aee60906fdf965bc217b3db794698e2cb37559f36ac119a0cd2a1ae1a7a766535ab491d647e8b4e6b2f63e62011714b757f8691455831ef365c jruby-bin-1.7.23.tar.gz=6f4b97c4e08274f96195deb176e3126e8d047c981cb655cded9665624033fb905d60d5586704a3f91b2ca06d7e78918d9d31131c93e4c90c75a38182e309ac9c jruby-bin-1.7.25.tar.gz=a89ab8d539bff346ad56d345b6a205f74890b9aafe82a2c82e7c19cfc30b77fefde1003e8bd7ed15f141151bc0fd21946203219691383a64f2234fa586e1905b jruby-bin-1.7.26.tar.gz=feee03a50900e459d9ed7d2096056bef126c4551c02c335c4132e2307411f3fc4fd435e8fe44411184773c80f0630a7812b3d798b7e9be2818e1b5a712bc6995 jruby-bin-1.7.27.tar.gz=656f4313fbfe5db8d2d4fc2087a012c91efef848394c48aeaa0041e9a19b87ab74686702955413d2c51d6b4b11c758ba0555b30fdc42e86d66094411324139b6 jruby-bin-9.0.0.0.pre1.tar.gz=988c6a058336ab9ac8b27c7501ceccf3940837f9b9d3ed32a466b891bda1bc13f76199f5bc3baaa1240dd0dfdaee40775f721294d667f3b8b5bb9ac8206e2e83 jruby-bin-9.0.0.0.pre2.tar.gz=f207f9477a12d7ffacd92b1bb5154ba8101dda8f7b2eeadd4fa83eadec9a75727bc1831733d27fde63ba63322ec491201dd23cc6e2c2b5a4b8381a8fbe49e8f2 jruby-bin-9.0.0.0.tar.gz=33308a983533c129cffbf521bdb8c1996a10a6159a4a436248e645bda682c5a5395ac1aa767e971ae679c935f3b61573cb22d5b8c64af026752db3411a6356e1 jruby-bin-9.0.1.0.tar.gz=277dca63f3faad01c98a793f06bb4d558a970a10a66a38482e8372b25f4cf4fea85f1d5624fce7fb5b4310c42ea8aa360f24f6b9b6ef4bb0ebcb036736009ccd jruby-bin-9.0.3.0.tar.gz=d82f83e20ef17a0675843e306ec5e90993e5952cf5a53957a91e369d2c90d92306aa515b1e135c04b45844a81a0f4ae34289b966821ae5f46ea51fe012627352 jruby-bin-9.0.4.0.tar.gz=b9cd4f4a00da8152740b468914046633d5341b10aa26b0ac56835d5896531030c8afbc4c965b30c36923555ed5b145de8ada69e05ca38b01d43621914a331335 jruby-bin-9.0.5.0.tar.gz=7c61cf010fbae571cd6ba334aefcfd917f6de8224d014026297b840d0b890523e94b2fea20f154c82c25c4f9d5992b9481fb569646a7023e5ddb42db1baf5f34 jruby-bin-9.1.0.0.tar.gz=1ffdd352823436086ebfd37c03401a1f3a9cb8a8c5f75476af1f704c4764396a20f49ddb7fb7f0911e1608f7c88a332944330b8849d13e6badb170efb736dbe2 jruby-bin-9.1.1.0.tar.gz=475acda79ab8c54467ae70094aa86842959200127c1e92709f0a731014c469d3e52e4c48770b64ab1bf31e1b710ac4570b421077c85c08071c1356bee55a2900 jruby-bin-9.1.2.0.tar.gz=cc6b1e1a2907c128dd04edf9da11933a54bbed5e861ab6f0208505bca5aa2aa9d9acdd04bfde65824346fbb435584081fc8ec2e2e9a3aeea1bef8047915e0c61 jruby-bin-9.1.3.0.tar.gz=88339f4cc05f7f0ded21f100755156ade33f19873f49c0c64110916da8c0b059df541a77bb36e54fda9cebf042591450d2d6312ffaa879df926870806985e774 jruby-bin-9.1.4.0.tar.gz=ebe0e9d67cb91721d589461e93e26338e3e3a1f0f98de53f25906684140b49d989ca6d3704cd3f6cbf650f30aed9a3989f117bb4732c83ed870364ce4c31fa36 jruby-bin-9.1.5.0.tar.gz=f2a11e6fc88d37fc1b640ea8c9feda4607bea6da5e6520f61ff85e8d6a51543612ae267b45c033214f8fd0e2283153da02001cbc9fd90be4761b7544e1413b9f jruby-bin-9.1.6.0.tar.gz=ca59d199a0fe791efc57f05801ae26c6cf6402bdc0f1a795250b1a2dda39b233ed24c8cb005016e79727f4bcdceb1bad726a60c16935e76fc87e5d1a078fb5bd jruby-bin-9.1.7.0.tar.gz=f2569d4858a33280e90d984aac53662c25ef057ef9903bace6a2214aa2e6a537c9bc8fc76b08f846b3093cc4a12c70c98d725576a4ac771e640b95cfe3697c7d jruby-bin-9.1.8.0.tar.gz=dba3b41b65ff27dbaa203a5cfc78ac7cb9d952c52b452bc774f593383e4ef9389c0bc37549b798f48b63497ce7007b1ac2d2fa252d9a7c3e52146b4ae192ee49 jruby-bin-9.1.9.0.tar.gz=f8f6419be34aeb7b7577e946a62a094f5921d7319b51876c5e07322d99249b3a9f29fea4ee5c2b8184dfccbd5da8f8262fa97f5e93874887f3355dabfccfa0df jruby-bin-9.1.10.0.tar.gz=857783bb45fc5d62148bd687b43af9ce776099dfea75ec4b5d947a46ed270568bceba2a630a3277746a3a9c1fd3111caa9a4cd13493ea8824c1ee190e6d2abf1 jruby-bin-9.1.11.0.tar.gz=718ed3f5a39cd9f9b45c4e11ba44cd32e035f8d9f26fe59230dbaecb71adfb2513ee1bb86ff72e075b02f20151f3f30e53bfa30b6c4b011a93a138d4f479fbf7 jruby-bin-9.1.12.0.tar.gz=8a9f88d517d8002be570aa95aebb0063eb62a47efee191155f9fa4f045854910f78431514f857c438167ec42f4241faf74d4a8d236ae36feae58732312e4bbed jruby-bin-9.1.13.0.tar.gz=ef88f613ada2665d4f63b2e2f15594739de8ba501406e76de417821f44847b0e258524687b0ae0cf5b737520aa4dd9bb59d80a4b89a81408cda638f28bebbead jruby-bin-9.1.14.0.tar.gz=d15ae0c60421951b830524acd21a0f2a56f480e983b148a2722cd36afed8e99a41f518eb8a679bfa2cf87f08637e81c24ea88be40c0a5390e081322f1fc6f8da jruby-bin-9.1.15.0.tar.gz=74a411f42149510180706b2c70610caeea357f6fc3d2a12ff0227586862e6a9dedf09e752596d6c486af7a310a07241f311a1dfc73ead229d7225c09d4508605 jruby-bin-9.1.16.0.tar.gz=94e88dbeb2545250ba5bef50bbe0baa6f3851e9817f67f879ffaab50048bb0d41cd7a0e87ac9ef547e37c2b82cf1d7aae6b8caa43d03c6a9931b8ce0ad4b2afe jruby-bin-9.1.17.0.tar.gz=4c06b9674e20f48d3815b4084bb38e6994670eac804fbc56d717cde7abdb74d57e0ac17b7fa0b500318de405c187c3eaa01441c22621139dfdbeef62a5467a63 jruby-bin-9.2.0.0.tar.gz=79f5e8674089d2f6b260e033e3ceb4571f54cb5cedbca74ba76b52dd7cb30085a8c6c2676e9be57a8ecd9e962fbcb3682a8de38e1cdde2dc6e05bd179556edc3 jruby-bin-9.2.1.0.tar.gz=185e67da4964c9cf1d9142446efa77605e77894444bdc96bbd10fee22637f197aea9fbb0f60d3a42540e5f383d5b06fcf095d572f432544a40c2145deec81926 jruby-bin-9.2.2.0.tar.gz=85e16e38748b6ec5f237eabc8a17eb225c484c20f7ab6728f2a0f650061bc50c8a9601c04b0128e73c410ffe84dacd2b8bb37167aae5595728aa25e88c4c9b92 jruby-bin-9.2.3.0.tar.gz=97ee210157c451567946b38d33380051f82e7e8cb5f7649fffe050542ff6cd627e2c42f4c46739d1f0995c87e7338865b18844741285bf3f72364aa3c841c54c jruby-bin-9.2.4.0.tar.gz=9fe1506e862a17e261cf726e1bb70a9f612a6d7beda919a01405899660d1f4b79ee690ddf9aeed1d2b2f3cbd698be8df4f98d3815352772cc680e9646d721761 jruby-bin-9.2.4.1.tar.gz=2c41e7884cc54819da17ea9b2b773d05d3240d53a2ecb57ba430ab61308066eeb1bfbe6627e6c261f5f27ab5df7f5972656366a04a191a81b0379f620b74512d jruby-bin-9.2.5.0.tar.gz=d548eba8de420c80062021f5b6e6b203f8b7b36e3f11409919eeab87a028a18f9346f27d2cd8b1f33419adcc83fc804a36dbc3cee169ef1d93383b8f5835ba2c jruby-bin-9.2.6.0.tar.gz=20c7897da0d2b585616ea5848998fe8770517e24e16955797db2e5bff4622c348082628d304240a71a97e9551ef7aa63271cfb728eb5fb7e7d19bb48aff20d4c jruby-bin-9.2.7.0.tar.gz=8e71e27fdb149cb7470fb736e7ce858719d13ce6ff8a1e9ab1c1dc71fcc068fb601946bb28ed2feee3670b5e6ebfa8a655a6618d1badfc3763897912c41b1c82 jruby-bin-9.2.8.0.tar.gz=7f71fb5bc8c6c31b31b4c0430ae091871b21aa345777662f264c728c60212365dadb63a7a4b2fff31adbbf8a2e7cfa678d47486e28840f57b86cd45fe9354013 jruby-bin-9.2.9.0.tar.gz=7df33150858ddff586b3bd86120d4bdd80546c7f8e62245f61facbaa5527400a1aebbb33e4a1a8af52066487e3d29760eb96c7ecb9875eb9bc954ccbcb37a4d2 jruby-bin-9.2.10.0.tar.gz=f4ca024602ddab37154f5547132accb26e7c0ac2e913ebe1b5c7806727eb148249e76031ed4623ab53814beb8fb3f472e386f44d57adb5d2b3b00fb2773c8a63 jruby-bin-9.2.11.0.tar.gz=f736a9e139694c84d0a5ea42f36b972adc82c9be13e0b80bd61045c026e4fe31ccdd4be3dd3e94781c846f356e026465e41716fd2744ded2ab0ca39cd33bb46b jruby-bin-9.2.11.1.tar.gz=2f758fabf5910ea01e9c04c7600d9c666f2df3db8622f3eeb3534578075ce65013c42fe9ea6f95d4499945f795e6d566eed2b1545e149af823eb1d29167a1223 jruby-bin-9.2.12.0.tar.gz=1dbc5bb3814a6590f5e8ecf4889152684b5625fe81794a2c4064d598614a85129256002dcd239e294f209b98e3abaf9bfe70467fff48ef66b1531162dc6c3be6 jruby-bin-9.2.13.0.tar.gz=2cba016ad6a376252083122d51335610209d860c41de1902f5cd49ffc2f6b49c350b68df8fc4113c221255af4db7ec07980267b9888369811faf66db369e757c jruby-bin-9.2.14.0.tar.gz=ee3d17e875dd197f92744c7cba62320bfd3f166bbb2ca117f2910780a7c571779c0940e024351e9d4685ee9781dd207e773ace57a4a8a7011869c8b6209513c5 jruby-bin-9.2.15.0.tar.gz=678abfa7654b53b049e4103ae3647775d970c5a7192539378957c1731a3037c852e03f00a496c022c1c438d159a93be6e6f04d7563c811aeb7d261ced643d9e5 jruby-bin-9.2.16.0.tar.gz=f77e314d578a980071bddc25c65659d62e0644927ebc4e7d7d4523935b6c893e611d47ae7478a26ce7acff38b1525eac11b4a329188cdf76aeb07fab667d99d4 jruby-bin-9.2.17.0.tar.gz=e90ac1890a54a892b13adbbeab3cc5242889ff2a4b6cae535c0a3172072bda6ab01b960705ba608d6d7ebe9de5984d8384dbbb6399ab3b2e53a9e347e7849e1b jruby-bin-9.2.18.0.tar.gz=c5816ee0f7b0f559dac70ffc5277f85ae9c41ad176e43d277f820c2727387baba93998b915cadf9708fa78b5cdf3911a9c39c2ebb61a77a38dcff359f7d88a73 jruby-bin-9.2.19.0.tar.gz=3740674035e27cf7961b3570ad65536c30faab1c9a71a42a696b173379e79647411d57e0d1d06b5f9c9a970eb02a595a559191af08a083773dc4601dcfd07491 jruby-bin-9.2.20.0.tar.gz=1961f52f41e7eb9f50b0f382c8166ad988a6b3c0311c342658edb34486b073ed45c1ca5731aa319196db02cec208a4dfc86aa6b436959b80243bfa4f62629735 jruby-bin-9.2.20.1.tar.gz=598e28cbad682fbb30a9a9a9f708e6e1f4b7903300de2477e88a646c42ae594df5b768ff5379ed447f1a7168e93dbe35cc2d5db7087cb2228233a05bc4687908 jruby-bin-9.2.21.0.tar.gz=8f6cfc43ce3ebbd69781da71c5a70746ada090162bf6cb709dca41a6d968e6072ae62f657cb0bd471c648ff294044bfec3079828bdc410bd64758f76a93c3214 jruby-bin-9.3.0.0.tar.gz=06331ce32ee88aaad5e5bc0668d164ec3263f8ef3ed34bb32981b76ca33f8c817e3632550775706481094159f4feb43916ad1f9ec0f0775ad756b16cb7bd9417 jruby-bin-9.3.1.0.tar.gz=bfcbe6dc5ba736fc944af15eb387b545f6c5b987a7db88045913a02a1d30726c5d1255c4dd609aa7c2d2823ddf9d8360223b0575c93302aeef4c54eb37af9abe jruby-bin-9.3.2.0.tar.gz=b1777bfdf1964d7e527bb3dfc47b4b9e8c589cdb301c38ee8ee988bd0c392ca978ee3c1c24e4b5a65bdecff67d1bd96e2d8645e58ff7e891e3622097ea29e925 jruby-bin-9.3.3.0.tar.gz=648e70de0bda710e2dc70fd03c3dc6b798dd4c7b92584c54306c426f59ebe1168a595c4cf94328f6b44674f5507bee354efdb1cd73060b73b0171a3605051c9c jruby-bin-9.3.4.0.tar.gz=6b09decf412a76578179cefaabf01cc8740f70ab5324954e6aa43b1d8b81c37db7a99b1f94d6ced2b459f1c44c3086892b9a2c06b3ea838baf75a8fd5e0447c8 jruby-bin-9.3.6.0.tar.gz=f730522eff27462192808773cbd071cdaefae11f20bc808a8f22515a33960a730f3c87ec727ddfd9dc9b6b35acffeb50c31d75a4794a3f8daa75e1963ebd246b jruby-bin-9.3.7.0.tar.gz=265051c68d3b9dcce708b75f8267303ae84008859c88d7fe4f282395366c3f52fcf1bb161210555c0fd0a2427ff5a728ea9e337feea3d9b69559cadb2f300aed jruby-bin-9.3.8.0.tar.gz=12e795b7e1f14141bde68f52a29b0aa9f1db20515240dce83cffec351cefd25959579e01059d42dc8c8e4280493a70819d9beb1e0523e9bc10a72af16d9abd60 jruby-bin-9.3.9.0.tar.gz=f0b31d98f39a2bd4436764db0b0139433d6868bce7c30c5d6e3552616ba879c93478c499f3e4c884fd3728502916aed5c9ca1be150ae3e80ff47b36710c3f6df jruby-bin-9.3.10.0.tar.gz=aa36fd4c5de7b17f5fdcca1d1314d309e7b4470d46822c45baefbc0ad5180e5530a7054502b97b414352af485e7936659390690dc6198512ba6733d8f8d503ed jruby-bin-9.3.11.0.tar.gz=d9fd90bc64028dcc45687d2be51414b1561add20d20d1392525f4434cc684d505427f5e56827afffbbb0ce2c9cd7c1ef846b0bffa737679afb95d4c160232da5 jruby-bin-9.3.13.0.tar.gz=eb24641fb7a6b9d2039ec953388053e7333b306056f9a5bf745331b04cfc05dc4211a9b7780ce88bcee9184b8cbb219b574574d308bc2720547c116f4d4721dc jruby-bin-9.3.14.0.tar.gz=d9b02fc35133f71140cc7d891061f8190b61b3d1065f00092a2aa9a4beaf7d67297dfb0529691bd24d29607d698f39c62af9018e8307c1e6624c3104a61bb74c jruby-bin-9.3.15.0.tar.gz=e41521ebf453d6b6a9de937556fcaa972c60268285d0af4a41bfb95aad790eb47dd507e182958ca6f4889a0e03eedee0fa4bbc58e3d0407a2b6ba64a8b87a21a jruby-bin-9.4.0.0.tar.gz=fb72f8e087ea08653fa4e4225fa26694c3ff97c41f3deb8731cdb6571c6c9b21e0d8f69e2096f82ee81e2b5c283f912e2a5228c15873dbbd56de96a2ba35d59b jruby-bin-9.4.1.0.tar.gz=46003ef6192718a6372b79ebc89bee37957686224a08fe2f9a6be3c9e479784409d0269f0885c4d1f1351585c5d2cd31fd2ad45014e425bcaf2d44d66b98d299 jruby-bin-9.4.2.0.tar.gz=77e484ab73ece93e7d7283f876f0d541607c6080eee696b702b485be9794cf7e6d464f250a6d75387ee69aef3ba40ccf4f6d9fcfe324c5bc7a14376177ea2bb8 jruby-bin-9.4.3.0.tar.gz=2361f4bb2989f5951b0d3e9d49bf31e6805ce39bdc987ad3c6934daa98ab7c8e69763d40d7412ccef8adbbc198e52f4b83d00998ee12ac43fbfc6b5d88930c15 jruby-bin-9.4.4.0.tar.gz=e89dff0cc5b4a948daa95196d4bd4fee0c6901bb4aa023ae35b3679d9739967c2a74e8a4388b1835465dd39f1332a1f321b450b40c54ad2b81802645b4a31ca4 jruby-bin-9.4.5.0.tar.gz=06db948e5fa6f8559abd3b6891c7b4867b9f54b7bddf0e36d6f20cc1bfb394cdba8ea920213e545c927d1cb865e083cb1089c8e925bc608e0f8784a79b5d330f jruby-bin-9.4.6.0.tar.gz=ebdc671622baf3c42a988d6ebe24af6bfefa1f717f050f602a1b35909a3220316329aad080ee2cd9cd330da9428f8d736502573efa64bd70f093ccc123ab32b0 jruby-bin-9.4.7.0.tar.gz=4fc8b12deba7b8a53a523a41a31c248895adc9bd54a62664a27107e7205369af39c0eaa508a9a70611c3bb845524d8c5f39451c09b8b9cd87059ae15139703b9 jruby-bin-9.4.8.0.tar.gz=0d65fdfd63e2049ab3b8ccbcb4caaaab20aea5a63276aeb20ed4092191a8814f144425dd0d926aeed757ad6b4daa308a98fafe1bbd1647f3db44368066f61868 MagLev-1.0.0.tar.gz=8da29f16e08f657b0d2f147b64f2202ac027db26f85da8dec29f926898f178ac8d11260fd6c0a539a9b9b15eb92d8c7ced86a8cab1861ae7f8a33b6fa468e5cb MagLev-1.1beta.tar.gz=7122af70530e76b9a4cee93244d6872b49616e78086bc8a5db0f32d2b846560b352c4831addbbecc72e0e3158bd52f26c2da14f5d83a515ead30efe7c538b62e MagLev-1.1beta2.tar.gz=43b4b831791074f6e8c12f6fbe6ccec2bd0446dae029d3e6717cde1e7adca8462a2d7dc49c14112cb568b5b3adc8cd051767044b41d57ae51f38aca035ff8597 MagLev-1.1RC1.tar.gz=942c1cf43f1a911230aa43bbac1cea2e2e61b5e19af755e29a6a71139d66d304efcc519072dcc3487a2da7462847530564aff4a2159d675e3270cc938a297dd9 MagLev-1.2Alpha.tar.gz=2672e3e5425df2d2ecc49f85df5845fdb083f74a7b242cac75e33d0c1837079ced8ec8b273807326d08e7bf6f95cb4f1d8351f37af8bb38c4150e6292fc553dc MagLev-1.2Alpha2.tar.gz=4492ed58b6c2b852502a2195836f1db5a80f0619467e4d7b44981a993a5e9a9ea5c9fecf1198de1891583e334bbc3c3a86648ce8afea1137ae9c73a4d76b0f4a MagLev-1.2Alpha3.tar.gz=6290895b22efb986ffd7305b7d651f20a051ab6869d51310bf891fa3eed48526a8617b69f72793e8ac0b57f99bc5de75f34235ef94de967bbdcd51857efc2af6 MagLev-1.2Alpha4.tar.gz=a621e9c615ffec503910540db770754f29bab1646d8e67650d5b82413bd551adfb0bbbb8155407ccb6f80933bfe8ae1bf9b688eb0defbc88710308bde1325683 mruby-1.0.0.tar.gz=4a0f2927da3401df23d5c19ba566995f76775def3badbb14f16510a271e7b40a833fc61841f89d8adc6d57b5b12cb453708961c16a22133c092fab8ecfcd1e3c mruby-1.1.0.tar.gz=afa99a973e9c1b72a5a418d709c4aca08dc7449c427cedef5f12db4ccefb15e11a4fd1c23ceb7e31e49d4d2e602c0b1f9dcf2e0f6cf8ea3466f0b9bee23b53df mruby-1.2.0.tar.gz=bd5de32ba52b6642358752755329fa45a954082122a8983012930056c286ac328fb52fbdd11f34ff7c80af2c0e9a6348abcd5214602aca1150f2e7ae25cad1f2 mruby-1.3.0.tar.gz=13a57306706d2d60693151919ae15bb3621e6e7ed3b5e9c6d3b1c8d44e52b898c1ad394b39946d730ff82a19f5e3b7c2a374f9dcc3b6c6f990581e504f1cb9cb mruby-1.4.0.tar.gz=d2dd6e17c7f8e890ef5b6887538cccdea08a2376ba8f9a478d7d5c4377fd4c31a4af6323b1fc73952ef80e5a4778ca22eac3d724ce7d50b76770f7e614df7da0 mruby-1.4.1.tar.gz=2cbf155ba7819211b6410ea606c4d0db3adf4f47a4018ac45285ab3e32b94f280aa0af0936ead7233411957cfca62979d14bbaaf0d8f40521cba5c12272f2af4 mruby-2.0.0.tar.gz=8379f76b7a06d280e2a2552eec2975ffa3fe85b99028f6f7c009cd908f95faf3cd36a9975f502a5779559baf3c45a4297da0b6bcc038d213a0fdee851f9d01ea mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.1.0-rc.tar.gz=f310b385cbf80c6b6ab67e2a41b931411149639c0bf778799e3358d6a9a59f508f42e3faf72fef9e8ef91088d6184c445af7933a47e4e2b2fe114362d579bac0 mruby-2.1.0.tar.gz=da28b5a078e121c75edf62fc68fad6d5810212bd53a3424d4f585ffe5bbd09f652393ffea0f4b3ddd802e5fe178554dc67040c39c9d5069bdfad4ef22ead7e8d mruby-2.1.1-rc.tar.gz=97c9cc2c79a5dbf2f634ea08532f0f512f8af6ffb99ab4eefd83fc336ca9d97b943e76643971047b4508aaddb5e40176d6cc8fa39a17022455aa15d774eb5b98 mruby-2.1.1-rc2.tar.gz=13aa32a35bd5d8f02a9bfd08d17818dbae78ce46c8b0224a029f9f191cb64ac330eddf3871f4396b9221b987a91e4cd6f8933f59814ac0018155ec8454abff18 mruby-2.1.1.tar.gz=66f9b4bebb5a7b19f5cb1be2bd8b9bc65e4dbb5d4350d238ad5f947c9195fd431f2069f7334036ea63a750e9257e59ae1aef16ac99c7e1f4e17724cd1cbe2e50 rubinius-1.3.3.tar.bz2=8b91baf429dac60663d0e4da3152a60ec6e007f5d6c17ffa430876ec88eb87ade44efae90f2e32e238fd74f1b3d54e27492315f08e7bb073220b402e1e2d3163 rubinius-1.4.1.tar.bz2=928d12aa01a1d0f6c80175d67d3b1f8b9840f69f045c8148786612316421223f4cea71e3c373ee18a3f686b1457557ae547645afe758a99d21c4818dff47b9d1 rubinius-2.0.0.tar.bz2=5c81a6b8cf7b59e08c3b9353b0eb37ce985aaf391f5064df65ffb10f6d12b668287e4d4e61e2c6b560d9234c10f0b64bba74259f2c06f1dac488928544d4131d rubinius-2.1.1.tar.bz2=154cfa93ed59835814b8b974f6d738b049942fcc2b75095d21c87647d002c879fd55aa3d1ec95414b5b66eb9926c25a5c6e3e19a7c0da7dec6edbf434acb9c68 rubinius-2.2.10.tar.bz2=c2168e676059c197123916dd948b83e39bb96e99786bdcaef2e690936b761fedb13740b9f19883f991f1b475f3249ea1696213e8448c41ae15dfc14b3d4e1fda rubinius-2.3.0.tar.bz2=d0f3dd5e3b891bff2eb79b7810c6041e15fbbf0606c379f89575cefd829ac7a394b0c12ed3c5a4d452730797bc0a2c6c82646a19a078b56dcac7acad015a4559 rubinius-2.4.1.tar.bz2=7bcea320006b8cd3d122c407d89c325973a74c32456ba0b649657ac848f4682f2eb7455c13e3007709c22932bc2e1b65e2dd43fda0d3c9f993ddf8a74d1e2cb1 rubinius-2.5.0.tar.bz2=ac94d5bc11524e715fc24c1de33f4d358c2cd65e92fbb64c850dc8151d2a712d268227733c99fcffe298c3bdd6ce080c5e9553e4e8f3238868323498a9d10cae rubinius-2.5.1.tar.bz2=9315f76126d0aa754ee63b190385c24cb084f36293a99aa30fc482fd880d5393aabce361e09ff5514bc2540dfede8e179b7e9212b2dd59bd14ca2aa69d209a83 rubinius-2.5.2.tar.bz2=b48bd8d54a450441a50904b07c75c8d31b59822830a74c952720d6f8d2d86e6a27a84775e975ff2bf55bf3346f34e69d742f308933a9d8476e5e78109cb525f6 rubinius-2.5.3.tar.bz2=b923446d325dc3ce5ad28af9ee527607fae3259b85e85aeff97c1bebbb4520daf70616957b1c0ded900ed19e59025826dee66977c19cd2a2d4e9a0296811eb20 rubinius-2.5.4.tar.bz2=75b7ddbe218e4c92210dbf5a06eb8b3c3aa028d16146982a4e813e3af10a90d33f3e239f4508469c6aba17f02cb8bd10e96a204839975e06519869cacd456c92 rubinius-2.5.5.tar.bz2=a862146ddbbdcd4439eb64e78bfe6d09ae4cca540d19869618426d3f451544658713fe8eb7d46493785eb0cc721077e624293cc44d68eea3ef584967b43a18d7 rubinius-2.5.6.tar.bz2=9a0bdb5d77f80f163925ce409d00be3cee34871baae8bcfdb34c3c7545b92fd14102fecb970e42b3012588d299e504b724025f397a5a00e181ab75f1448e426a rubinius-2.5.7.tar.bz2=8048110b3ba4e5ff8c3f35282896067e1b1b46dccaf9ef4f6c9b6098782f27591ff59ccae0234fd7e881e3aaf17a0b420286b1b52ecd2cb672249655795a6982 rubinius-2.5.8.tar.bz2=23fca2f9747d2b0e544af890c3baacfb7b3a009cc59cbe653762ccdd827a6c915dcc57902d317fa1f7a81f8c12682f6c3a93195331b6de0f705b118e2e8c13f1 ruby-1.9.3-p550.tar.bz2=38767e98df25484f7292437f3cb0f798b3a43e9a7414a5401677e96ad1cc367cb3fa23ac3abe568d5bf2b2ca553713469a8770d41b79bc63daf3fa59cb4e15c6 ruby-1.9.3-p551.tar.bz2=5ea40f8c40cf116030ffdedbe436c1fdbf9a50b7bb44bc890845c9c2a885c34da711bc1a9e9694788c2f4710f7e6e0adc4410aec1ab18a25a27168f25ac3d68c ruby-2.0.0-p576.tar.bz2=e089cca4867cd9c715f4f37e40a1db9af6ba0c74b47e79568121bb980476f8877a87ccb848b973381edb4667c0c73165f5e1761f60db839e67f6326302dbd864 ruby-2.0.0-p594.tar.bz2=8301a51c73fb63a8cfeb14af47d0c18b5bc3c45e3d62fc2ed56a673a1cd6b0015c41f275e70eb14a9e40036b1530977199321e05285e107a6adf58514bef1b3d ruby-2.0.0-p598.tar.bz2=10026a04e01a8ad14ea9c99bbdf4f7d04029b73ee0c01bbf6c2eb2817332d49adacf127b646693b67b5dd7010eaf3b696b23b6335cc0f7ee5a6b56dbba0f6f82 ruby-2.0.0-p643.tar.bz2=453117152e6facdcd5bedaa9c3b1e349382bc5bc1dd3d650ec58b398cb9d2519a2822d05da10bcc5dbbb4f513fc5fef310caa3529d176fa2d453befb28e4d83a ruby-2.0.0-p645.tar.bz2=e9ca186b1cf0877cdbecd43dcab2c5161a53103e926609d5e1b769a4980eab4571bfd0951788b4fc92dfd9d10175b0f5f36ea2c7289e575a9db9b62c02f93185 ruby-2.0.0-p647.tar.bz2=3416af771ebb0b27ceacf23d309bd2a1ede832c2edf48a5ca46f0b0b84b2ab94fb6362a0c7fe4f77b21253539db8161ae26d23a78d1ba729bf03812454d93d04 ruby-2.0.0-p648.tar.bz2=609acf6d6352c9746e21cd7f0e7d29f5eb522e6fff2d5fad0431d63c568cc084ed5b7141f84cd33512d8213200d2d1a22e8d7df71469a980a3a92886133fea38 ruby-2.1.3.tar.bz2=9b48adb161e5e4550a71f61252c8edf59944affb82250babcb64240749af4b672e4a54ccd0feac5b36ea447a358b350b5080125ef2d4acf6e9e8b1ab82612f48 ruby-2.1.4.tar.bz2=68db1567751166c5e7d24b6e5015124b8a15568c50556e1f429486395352fa56c4a195a74820ab135697924149d014b445b345a1b9755678aaf824fba79c606b ruby-2.1.5.tar.bz2=d4b1e3c2b6a0dc79846cce056043c48a2a2a97599c76e9a07af21a77fd10e04c8a34f3a60b6975181bff17b2c452af874fa073ad029549f3203e59095ab70196 ruby-2.1.6.tar.bz2=75d58120b5f387bcadbf6d19e85624f78c74f81b9018baef39207214673f7ebc0700ab31145acd88b4071c896ba8e1302a29c90955bcf5f8c863634125022aa6 ruby-2.1.7.tar.bz2=f610d2dd6a93f0a5e84e04ddedf847bbcea5dd3289b3164cdf60be64f67a80dfd5f9836ea5d169970cd0ce24a7e05ea6190699706567cb0d5cf450de6a70e445 ruby-2.1.8.tar.bz2=7129c012bca7f0e7cfa51c73ba0898697f7a9f31abd5ae57d38be5b6b646fd80ab33be9b262cd3e2486c66f65aaf4ec6e881ae6e5a82ec9df62f00fa072510fc ruby-2.1.9.tar.bz2=a86422132e4c64007a84a91696f4557bdcbc8716fbfe1962f1eef3754ee7f994f4de0b5b7e7231c25057515767040d5c4af33339750b6db15744662e9bd24f38 ruby-2.1.10.tar.bz2=4b7213695416876e4de3cbce912f61ac89db052c74f0daa8424477991cfc49b07300e960177ff576b634a97ee8afef3c5aded5d5806329dbd01d0ce7b42b9b63 ruby-2.2.0-preview1.tar.bz2=2f1190f5d8cd1fa9962d1ff416dae97759d032a96801d77bc6b10136eba59dde1a554ff8c0c2d9ce0d3c1361d4dd12ad573b1266fd53b90ab238d8ce39e6b862 ruby-2.2.0-preview2.tar.bz2=c654d4c047f9463a5fb81eaea0fa5ab7bf316962bc7fb0fb356861e6336ce8ce2162c7779d8b27f72d7bc0e9604b5e5af2910abcb0b0a1f197b3138eaddfd4a5 ruby-2.2.0-rc1.tar.bz2=181201168360bee37dceeef3481a69e8a333a5d329680031fd9d371d30ac64460bbdf4db07546133024f541774e51301f1630cfd988c5e5bf2464834f3abe6bf ruby-2.2.0.tar.bz2=04edc53e8cd1732c3ca61ebeb1d6133614beb10f77f9abb80d8d36352fe8aa205112068e460bf600b2c7e81e0ddcc3b311e7e027c320366f1bd992b3e378a6ad ruby-2.2.1.tar.bz2=af6a8e75a66b953ff33ecbca5111bcf1c6560b6b48b370b700820fcbe91363146c5ac8abd670a14e693b44343ae598bab472ed2902834304c03ffcd9550886d1 ruby-2.2.2.tar.bz2=d6693251296e9c6e8452786ce6b0447c8730aff7f92d0a92733444dbf298a1e7504b7bd29bb6ee4f2155ef94ccb63148311c3ed7ac3403b60120a3ab5c70a162 ruby-2.2.3.tar.bz2=795f1b66a6d4f0baef897068899c3a1a4370ce1268618e6a7d6d4720234444259f371d1ba2e174b2f7580265e9f18eda3f295fbb087447aa6e8fb7a0f07526ce ruby-2.2.4.tar.bz2=d27ca2f19c214ce87f906b57edd41f2f8af35b2871c191470facded9cfda15ba46e5c3bc7d5540225a38da6bd65050fcc8aaa4ffbadbb6bf7dc891c1821da0df ruby-2.2.5.tar.bz2=d3224814361c297bc36646c2e40f63c461ccf5a77fea5a3acdcb2c7ad1705bb229ac6abbd7ad1ae61cbe0fefd7a008c6102568d11366ad3107179302cd3e734e ruby-2.2.6.tar.bz2=7a93f72d236521ac28c8a0bc0c73cf805797a8813d22e02f42c5fc05dd39f6e422817272e0db6a24c245f6f97ad4b2b412a9a47ac50156ab186df596918a5f34 ruby-2.2.7.tar.bz2=83756cd1c91516962b83961e0de59d858618f7ed3e9795f930aab4f199d47a95ed8f867d8aa9b51d508be26d9babf2140117c88241168bac41e6ef702cfadf20 ruby-2.2.8.tar.bz2=aa1c65f76a51a57d9059a38a13a823112b53850a9e7d6f72c3f3e38d381412014521049f7065c1b00877501b3b554235135d0f308045c2a9da133c766f5b9e46 ruby-2.2.9.tar.bz2=2a8c8770fda20a22b79c9115b6f468f8e7ea1092c84a5089af7a3122163e5ad298b493e6637e4d93ba02d899d8a619c94064dda8ac98cf3b93f64f45d5401085 ruby-2.2.10.tar.bz2=f8ec96c2a5f4ecf22052ee0b1029989ded52d7bf5d41be24fef67e732e76f72119302240bca08f0547510a9cd29e941a32e263cad9c8a2bf80023d6bc97b2373 ruby-2.3.0-preview1.tar.bz2=ae6d46c87f59e1fd3703b76dfc45bfcf208625f95ab9f4559f0b9f7050e8681f1a6e419f5fa06b704c83e56879c3a9ff1337dba443bcfca76fadb49c97d97a93 ruby-2.3.0-preview2.tar.bz2=e397f321d4338edba8d005d871408775f03d975da90c8abcfdb457a1bc7e6c87efe58c53b2c3bc122e9f58f619767b271bcc8d5d9663ed4b4288c60556e8d288 ruby-2.3.0.tar.bz2=77b707359e754c3616699d21697752741497c719dc3d6fdfb55ed639e76d52560d293ae54cbe5c63be78dc73fbe60f1b8615d704d017bdfe1994aa9747d26a6c ruby-2.3.1.tar.bz2=a8659b96a3a481a3dbdbb6997eb18ff1f8cd926a9707a90d071e937315c21d372c89252f0d44732ae5007d2678fda8c8fbceafa4e4b4ff500d236fb796284d8d ruby-2.3.2.tar.bz2=78699bae5b0a2382a58f9d51f7d891341f00ad3a90d9ca06b68b1b245cf5acebc3a82133e39bf6a412ac999a5c0f778a0dab177c2569ffbee085ffff6f6ec38e ruby-2.3.3.tar.bz2=88f7782effd35bfe0b4c33140b5eb147d09b63fbb35b9c42d2200c010f387e2b70984ead1eca86569e8ec31f08b35289d440c0ca76b662dadb760f848e863d91 ruby-2.3.4.tar.bz2=ad1f16142615498232d0de85149585be1d2c5de2bc40ec160d272a09e098ef6f317d8b25026001735261fd1c5bc0d1f8513a8474e89f0d86eed5b2fe7338d64e ruby-2.3.5.tar.bz2=3ecc7c0ac10672166e1a58cfcd5ae45dfc637c22cec549a30975575cbe59ec39945d806e47661f45071962ef9404566007a982aedccb7d4241b4459cb88507df ruby-2.3.6.tar.bz2=bc3c7a115745a38e44bd91eb5637b1e412011c471d9749db7960185ef75737b944dd0e524f22432809649952ca7d93f46d458990e9cd2b0db5ca8abf4bc8ea99 ruby-2.3.7.tar.bz2=e72754f7703f0706c4b0bccd053035536053451fe069a55427984cc0bc5692b86bd51c243c5f62f78527c66b08300d2e4aa19b73e6ded13d6020aa2450e66a7d rubu-2.3.8.tar.bz2=6d79e0d25757fd37188a8db3e630a52539bce7927fcb779a2ce9a97b9e5f330753035c16843552f1a1fb6c9a1e5c0f916b3cc8b5c0bfe81e20f35f8442e40ae8 ruby-2.4.0-preview1.tar.bz2=c9873e8686eb54dbde61d6e23cd5197beebccd6cb31fd12c82763ebe1fde17095d7514d9d93c2c82b238032c98691df5479dc2d666a8a590e0fc54450ec29cb5 ruby-2.4.0-preview2.tar.bz2=0c9a59a2f57a99c4ee8539a30f41da1de7547566203f89d856e1be9dbb44365754e6c470145dc9336eb324e0feb2f53d9fef18a1564968ac21f9ee528905949f ruby-2.4.0-preview3.tar.bz2=6602c65a7b1e3bc680acc48217108f4335e84fdd74a9cf06f2e2f9ad00a2fccacf9fa035a912bc9d5cc3f0c7a5e21475971dfac37b0364311ef3645f25c7ddf9 ruby-2.4.0-rc1.tar.bz2=b43902ac7794487197df55a45256819d2e7540b77f1ed4eb68def3e0473ee98860a400862075bafadbde74f242e1dfe36a18cd6fe05ac42aae1ea6dddc9978ce ruby-2.4.0.tar.bz2=bef7bb53f63fb74073d071cc125fb67b273ed0779ef43c2d2969089b9ca21fff1bd012281c5b748f7a3c24dd26e71730d7248c05a01cb23ab2089eb4d02115fe ruby-2.4.1.tar.bz2=1c80d4c30ecb51758a193b26b76802a06d214de7f15570f1e85b5fae4cec81bda7237f086b81f6f2b5767f2e93d347ad1fa3f49d7b5c2e084d5f57c419503f74 ruby-2.4.2.tar.bz2=1a5302d2558089a6b91b815fff9b75a29e690f10861de5fdd48211f3f45025a70dad7495f216e6af9c62d72e69ed316f1a52fada704bdc7e6d8c094d141ea77c ruby-2.4.3.tar.bz2=fb4339e30c04d03b1422b6c32ede45902e072cd26325b36f3fc05c341d42eea6431d88718242dcc9ce24d9cad26f3d26772f2e806bd7d93f40be50268c318409 ruby-2.4.4.tar.bz2=ae632852a5f413561d8134e9ef3bb82adb37317696dd293ef92cb76709ecd45718f14116ecce35b12f1c2dd53ccae8dabc7a924a270072b697512d11f4922347 ruby-2.4.5.tar.bz2=7034fcaeaee41f14bc0ecce0d3d93bd1abe95310e1a0b95fac66eaba867adfb2bf7ba4d0d70d67a15ce8df16052dee405c38cdb18987602e64a2f701d37d3df0 ruby-2.4.6.tar.bz2=292802984e5cff6d526d817bde08216fe801d255c4cede0646e450f22d4a3a81ae612ec5d193dcc2a888e3e98b2531af845b6b863a2952bcf3fb863f95368bcf ruby-2.4.7.tar.bz2=2665bca5f55d4b37f100eec0e2e632d41158139b85fcb8d5806c6dc1699e64194f17b9fe757b5afd6aa2c6e7ccabba8710a9aa8182a2d697add11f2b76cf6958 ruby-2.4.8.tar.bz2=2d7e0f5ad766e2a12a1b53ff838e6bfe86244ffb7202196769c25e9df6f71f3ccdd8605e7ef35c53e54310bc82caf6b368ad5111dd0a3ad70a3aae1a7be93f08 ruby-2.4.9.tar.bz2=d485444dcd025a261a16bd740dae63c0aa23e4138a095584e7a83aec47af34415c7d9cbc1313e92da2ec416b11bfddf20bb1a7b60c80f12906d11ef27409b3e8 ruby-2.4.10.tar.bz2=4d730d2d7cb96b002167ee358258f2620862a5a6d8627cfa5b49bd43c6e59c50c0f437b959d4689b231d57706ec7d5910d9b144f4ca1c1ed56bc879ed92e8a59 ruby-2.5.0-preview1.tar.bz2=2d39ef64aaf7a52014905f4ad59b53e83b71433e50a9227f9f50cbb7a2c9a5db9cd69fa7dbe01234819f7edd2216b3d915f21676f07d12bb5f0f3276358bce7f ruby-2.5.0-rc1.tar.bz2=bf0eb114097f9e505ff846f25e7556a2fb393573b4e8b773f94cf5b47998e221f3962a291db15a3cdbdf4ced5a523812937f80d95f4ee3f7b13c4e37f178d7a7 ruby-2.5.0.tar.bz2=8f6fdf6708e7470f55bc009db2567cd8d4e633ad0678d83a015441ecf5b5d88bd7da8fb8533a42157ff83b74d00b6dc617d39bbb17fc2c6c12287a1d8eaa0f2c ruby-2.5.1.tar.bz2=82e799ecf7257a9f5fe8691c50a478b0f91bd4bdca50341c839634b0da5cd76c5556965cb9437264b66438434c94210c949fe9dab88cbc5b3b7fa34b5382659b ruby-2.5.2.tar.bz2=9f9388a162a3ae9c14ec8999fa3b12ff5397de14f55996cc8761d21c757113db37ace4d326b9606de7ad3a5875aa94fec900dd9b81b2fb0dff558c39422f4aa1 ruby-2.5.3.tar.bz2=6fe89fe9d406bb454457442f908774577369ab2501da4fd15725ccbab77675b88faad739a6c8ad1c7b6690b439a27de5e08035b7546406cdeca65c7b295e2c77 ruby-2.5.4.tar.bz2=3c4f54f38ee50914a44d07e4fd299e53dddd045f2d38da2140586b8a9c45d1172fec2ad5b0411c228a9b31f5e161214820903a65b98caf3b0dfeeaabf2cab6ad ruby-2.5.5.tar.bz2=1b56aa79569b818446440b9f2d13122bf7c2976ab9b2865f5fb62d247d7768dd4ac5b5e463709ffec0f757bff7088afd293c2a8c5349c3780763b6444bb354a8 ruby-2.5.6.tar.bz2=e4511d42d19a7bb39ea79f66bb4eca54b63c2a9d27addc035d6d670c1e59ee48a0c6e9c6bc7d082d1f1114b0668831dce3b7422034517f3c4a06ced0e47a7914 ruby-2.5.7.tar.bz2=7d6a7d41b4f3789f46be5f996099f3eb8321aa4778b2a8ff44142654e769ba4ba2df127dd0f267547e4c8cd6ff46364f18e79838df54fcd7e3fb714294ee0099 ruby-2.5.8.tar.bz2=037a5a0510d50b4da85f081d934b07bd6e1c9b5a1ab9b069b3d6eb131ee811351cf02b61988dda7d7aa248aec91612a58d00929d342f0b19ddd7302712caec58 ruby-2.5.9.tar.bz2=12f58e14cfa6337065b0e82941e39b167813920eb54cbdb4ac4a680dd0cb75d2684d341059e7b4d0da1292bfc4e53041443bd14891a66f50991858b440a835c8 ruby-2.6.0-preview1.tar.bz2=d9cb270529a97670d54f43a0236fab072714e715c39277dab70b7a1843ec818e6700e47e1384c7256f9e0ae41ab2c0b768a0de38a5ecf4f4fff5da6ef5ad4944 ruby-2.6.0-preview2.tar.bz2=3872227e9b1c97c206d19bf1e6ce15a38ee15a26c431b4436605dea67affcf16372358984df76b35e7abaa902c15c16f533ac7af47e3031dea9451bbe459b693 ruby-2.6.0-preview3.tar.bz2=d1693625723796e8902f3e4c4fae444f2912af9173489f7cf18c99db2a217afc971b082fce7089e39f8edd54d762d2b4e72843c8306ed29b05ccb15ac03dbb5b ruby-2.6.0-rc1.tar.bz2=cbd6281b2aab6fbce3f699c1ab57e5423304dca7a547a0b3cd4e8e980326dc7b85b2ca2bfaf3f3a648d40f4222fdf1740d81d422790ee7ae1ba1ed33eb11e3e8 ruby-2.6.0-rc2.tar.bz2=9bfbe83fd3699b71bae2350801d8c967eb128e79b62a9d36fc0f011b83c53cab28a280939f4cc9f0a28f9bf02dce8eea30866ca4d06480dc44289400abf580ba ruby-2.6.0.tar.bz2=ca3daf9acf11d3db2900af21b66231bd1f025427a9d2212b35f6137ca03f77f57171ddfdb99022c8c8bcd730ff92a7a4af54e8a2a770a67d8e16c5807aa391f1 ruby-2.6.1.tar.bz2=fc41429491935b89532733b95476ab9f8a4efc310aad8f4c2bd3b68fba08fd7b6e9ac84c6c88ca892022d1ba76435295f3299ea466f9b5453c07d41cb539af59 ruby-2.6.2.tar.bz2=cad678d2ced4085e99009e4fef83c067dd0e6ead27a8695bc212c0e5112a7fa09ceb27f82638faf91932ef8bdd090f844e0a878ffdf6845a891da4b858588aa0 ruby-2.6.3.tar.bz2=c63c3f527bef88922345f4abb4b9ad467117b63f2132e41722ea6b4234cec3446626c3338e673065a06d2894feee92472807c284cbe613a442c8fda234ea7f88 ruby-2.6.4.tar.bz2=a9fa2f51fb5f86cd8dcaa0925fe6f13d4f19f110b5d4c5fd251f199d16aaf920db39ad3bb50460eb94ab8d471ab2ac8bb54daea4a3bb080eaf45250aac3437fe ruby-2.6.5.tar.bz2=28e0b04ac8ca85203eb8939137b5e5de4850c933faf7f62fc69648fe1886faaabf6cdf48382f9d9585c1720876d10b41dafd33efaeb23341c309917fbd8a6e21 ruby-2.6.6.tar.bz2=001851cf55c4529287ca7cc132afc8c7af4293cdef71feb1922da4901ece255ec453d7697b102a9a90aef2a048fe3d09017ea9378ab4a4df998c21ec3890cdbb ruby-2.6.7.tar.bz2=311ec56d23d0de7a163f66c1ef4e5369b822f8409f8e1f3a25785c803f01c68dd13aa8ddcfb3a0fe6a97bf321950f8d6cd75b2babcb04158e791601914666f7a ruby-2.6.8.tar.bz2=51806d48187dfcce269ff904943dd008df800216ad4797f95481bdeecc2fbac40016bc02eabfff32414839ebb2087511d25eebfd6acead1a1d3813be6c10edf7 ruby-2.6.9.tar.bz2=ff067ebc059094c0a9a0debf54a37aad2c85f7ed47be59299041c9c03a7701529f5063ff32a1b8c56d48ee8585015acba63602ed0176b2797d263d43d67aa241 ruby-2.6.10.tar.bz2=275a0f329641e6c3d3d3c33ffabf585195187eb3baa4fb1dfd35999fa0a80bd5925943fa2711827ac00dffb6c9a1deeadabaf2e9ee401d56926fc167db5ae4a4 ruby-2.7.0-preview1.tar.bz2=a36b241fc1eccba121bb7c2cc5675b11609e0153e25a3a8961b67270c05414b1aa669ce5d4a5ebe4c6b2328ea2b8f8635fbba046b70de103320b3fdcb3d51248 ruby-2.7.0-preview2.tar.bz2=7066ececebbbba4b2933ba1a4f70cdef373169910802259a3e52b4fc144ba298f3cffda4be5fe8a7be8ef769ed43076fa046a9ac2c13bb733475b9852112c6f0 ruby-2.7.0-preview3.tar.bz2=5d8e99e3fd984c7d05c0bc483e1504e81ccdb920cbb2d78cad3c314e197b30316b692fd0199f836acac41246e3a713cb81dc6dd64c27cba56f807df4c193db1a ruby-2.7.0-rc1.tar.bz2=b5f96227775f8bdf19f944a555d0a83d7e84b37bd31fe4b8ac008a3272b1a28a4d94abbb1b5570ee32ec0690ba9d476b837a020a5194bee14bebf6f0e768bc79 ruby-2.7.0-rc2.tar.bz2=9010f72bb3f33b6cd3f515531e6e05198f295bb2a8a788e3a46cdfd776a9f6176b6ba8612f07f0236a11359302d2b77fdecca1dc6be33581edbb028069397a0a ruby-2.7.0.tar.bz2=8b8dd0ceba65bdde53b7c59e6a84bc6bf634c676bfeb2ff0b3604c362c663b465397f31ff6c936441b3daabb78fb7a619be5569480c95f113dd0453488761ce7 ruby-2.7.1.tar.bz2=4af568f5210379239531dbc54d35739f6ff7ab1d7ffcafc54fed2afeb2b30450d2df386504edf96a494465b3f5fd90cb030974668aa7a1fde5a6b042ea9ca858 ruby-2.7.2.tar.bz2=f07592cce4de3532c0fa1c84d53a134527d28ba95e310cd3487ac321c49ee680faeace285de544ee6db432a90aa7538a1d49ff10c72b235968ca362ef9be621d ruby-2.7.3.tar.bz2=e9236138be3e61380140f2e0d42f8fb82ad8f5219d454de2f6c2ec546bb208acc8b0f2020f23e6446660d2b3b9ae873cdd8298471f166a5f1efba8e80b05e746 ruby-2.7.4.tar.bz2=f144c32c9cb0006dfcfa7d297f83f88b881f68c94f0130346c74dfd8758583a68d22accfd0fc9f31db304ab5ff0bc135bfb2868145c0dec1ee6cec5ac6c3725d ruby-2.7.5.tar.bz2=0aa2ac44bc22859a39c43d08b7c7f457df05c2dc36b2574fd70ca399143ef1000dc5e496212db9eb055bc4258523d47d26db3c57a1a5a5d63cf1b3de9f81645a ruby-2.7.6.tar.bz2=4f7f3624afc43da25ebf0f01d5a2f92f72f94bab7423587cfd3920e089b479bf559b159adf2891b996f7e6a98c008a4f73a4a2170e2f8619417660ac1ab24bdc ruby-2.7.7.tar.bz2=24cc772ac1b56d3bb423f1b33716f221bf534f3717a506bf8235a698f8a454db7d79d94ae9a84067153c2f737b3f8f6085f34e36cc04be0d75ae2fdd57718870 ruby-2.7.8.tar.bz2=3a9db8d9e79318f869417f2ebf3365907febc0d1428116eabf3253c51d8420f255782b32fa30a54802b9f5f4187fad80dab0611cc80436feec84db87b0456ec6 ruby-3.0.0-preview1.tar.gz=b94892951f842a1538f4b99022606ac2c0b5031f1ede7eef3833a8caa9ed63e9b22868509173bfefb406f263c65211db75597b152b61f49e5ba2a875fce63a27 ruby-3.0.0-preview2.tar.gz=6fa4191425ae71e41894b60bd9c31d483a562ee8216886360ce18238ab48115b95be0367708612c45f634e7584fba8940a524ba0113ce0f36ce4df78a112d0b7 ruby-3.0.0-rc1.tar.gz=798926db82d27366b39be97556ac5cb322986b96df913c398449bd3ece533e484a3047fe35e7a6241dfbd0f7da803438f5b04b805b33f95c73e3e41d0bb51183 ruby-3.0.0.tar.gz=e62f4f63dc12cff424e8a09adc06477e1fa1ee2a9b2b6e28ca22fd52a211e8b8891c0045d47935014a83f2df2d6fc7c8a4fd87f01e63c585afc5ef753e1dd1c1 ruby-3.0.1.tar.gz=cb81db2c9b698cf8159b2ca6507f4c7f171e4eb387f5730c4b658ed632b7900a169808e6fbec0ee80598d937030ad5d9c56b63a2a339373ec5d9e1c06b7661d0 ruby-3.0.2.tar.gz=e1fba6f5429b5fca9c3f52a32535615fcf95fafa415efc71c46db4cce159f249112c01574c305026be5c50140335696042e47a74194caea045acbfaa4da738cd ruby-3.0.3.tar.gz=39dab51a0d784a38302372b99f96205817d466245202586d22123745761e9cb39db128ec2b984ebc3919b9faf2adf828d19c97d3fb1e56d44be0a81dc5d11b87 ruby-3.0.4.tar.gz=0dfded6826063c1b39bf625a6e13b46c109cb160c8648b78f0965f70e7c7a1a65f1c117fc8f2cf8bdb34d7cbf79fecf1f45d169d2323406d66ab27b18bde1d22 ruby-3.0.5.tar.gz=ea45fcd2ca53b87f18fd8696d00a1e340d2495443216aaf87d3f643cb5bd8bb614a1faacd82d07e7f2b72172397c728316a82d7c34a7b4566191268ea517ccf7 ruby-3.0.6.tar.gz=d596bfd374ae777717379b409afe8ee1655ade0c0539ada7a10af4780b818efe25a28aa50a2a7226741d1776d744e10ad916641f9d12fb31c7444b0a01d0e0cc ruby-3.0.7.tar.gz=66e5116ddd027ab1b27d466104a5b440889318b4f2f74b5fdf3099812bf5f7ef77be62fe1df37e0dc7cd5b2f5efe7fee5b9096910ce815ca4126577cb2abfaa7 ruby-3.1.0-preview1.tar.gz=63f528f20905827d03649ed9804e4a4e5c15078f9c6c8efcfb306baa7baafa17a406eb09a2c08b42e151e14af33b1aadbd9fb1cc84f9353d070b54bbf1ff950d ruby-3.1.0.tar.gz=76009d325e961e601d9a287e36490cbc1f3b5dbf4878fa6eab2c4daa5ff2fed78cbc7525cd87b09828f97cbe2beb30f528928bcc5647af745d03dffe7c5baaa9 ruby-3.1.1.tar.gz=a60d69d35d6d4ad8926b324a6092f962510183d9759b096ba4ce9db2e254e0f436030c2a62741352efe72aec5ca2329b45edd85cca8ad3254a9c57e3d8f66319 ruby-3.1.2.tar.gz=9155d1150398eaea7c9954af61ecf8dfdb885cfcf63a67bbcf6c92e282cd3ccac0ff9234d039286a9623297b65197441438c37f707e31d270ce2fe11e8f38a44 ruby-3.1.3.tar.gz=550cfda2ae492312009a58316e18fd77ea92852718b37443bcd76aac84ba6694fb841fe19bf23bee099f96f5aeed9d03e77c8c02fb194e414eca5f707adbbf90 ruby-3.1.4.tar.gz=41cf1561dd7eb249bb2c2f5ea958884880648cc1d11da9315f14158a2d0ff94b2c5c7d75291a67e57e1813d2ec7b618e5372a9f18ee93be6ed306f47b0d3199a ruby-3.1.5.tar.gz=23661cb1b61013d912b7433f8707bbcd723391694d91f413747c71428e74f8c7385c1304de7d08b70c9fa3bd649e4eb5e9acb472d89dc2ad5678cc54855a24ae ruby-3.2.0-preview1.tar.gz=d24e77161996c2085f613a86d1ed5ef5c5bf0e18eb459f6a93a0014a5d2ce41079283b4283d24cb96448a0986c8c6c52a04584abd4e73911ea59cefeb786836e ruby-3.2.0-preview2.tar.gz=5e9ddcb1a43cff449b0062cc716bfb80a9ebbb14a1b063f34005e2998c2c5033badb44e882232db9b2fceda9376f6615986e983511fda2575d60894752b605cc ruby-3.2.0-preview3.tar.gz=860634d95e4b9c48f18d38146dfbdc3c389666d45454248a4ccdfc3a5d3cd0c71c73533aabf359558117de9add1472af228d8eaec989c9336b1a3a6f03f1ae88 ruby-3.2.0-rc1.tar.gz=798157d785ebae94cb128d3c134fa35e0e90c654972e531cb6562823042f3fb68a270226f7b1cf0c42572ef2b1488a1a3e44f88389ad2a6f9ca4b280a2a8e759 ruby-3.2.0.tar.gz=94203051d20475b95a66660016721a0457d7ea57656a9f16cdd4264d8aa6c4cd8ea2fab659082611bfbd7b00ebbcf0391e883e2ebf384e4fab91869e0a877d35 ruby-3.2.1.tar.gz=f8bbff5e237b501f4042ddc70a19ac1ce74f72f147c90daf7f3007a940136abde37c12a0f7444f713ede09ba847c2cc2897a1742823832e3dc8cce80073164e1 ruby-3.2.2.tar.gz=bcc68f3f24c1c8987d9c80b57332e5791f25b935ba38daf5addf60dbfe3a05f9dcaf21909681b88e862c67c6ed103150f73259c6e35c564f13a00f432e3c1e46 ruby-3.2.3.tar.gz=75aecd9cf87f1fa66b24ecda8837a53162071b4f8801dcfd79119a24c6e81df3e3e2ba478e1cc48c60103dfaab12a00cfa2039a621f8651298eba8bd8d576360 ruby-3.2.4.tar.gz=b695b98dac7bb2c8755a106d949cb1b1b91551092fad263765171ddf8a4d86585259ffab5f7cc9bace70143d645dbe5932cfc61c6dba7817177de391d76bcd79 ruby-3.2.5.tar.gz=d86c0151fabf21b418b007465e3f5b3fd0b2de0a9652057fd465b1f7e91b01d00f83a737e972ea994a5d9231e8cb27e64e576852390fe6c2ad502f0d099fe5f4 ruby-3.3.0-preview1.tar.gz=0f891f140ddc6372aa7c4459f8784126e0c341db7b80e72c51e441c5153c43c2d7b965f7807c076862ac84b9b8b0c6a66bbf66fc341746016151397bb21c782a ruby-3.3.0-preview2.tar.gz=1c5a13e519e8487fd40d932b96d14fa729521925c288e7841ab5eada628e506ceca2605bae36eea1aa505d9253383d53cd933b7a4bff96e6de5b1130c7c558e6 ruby-3.3.0-preview3.tar.gz=94db07a6958c09809b2e5b597fa55a121074e8bacb3bf588c83cf0d35b07a8b070172035a49d1abf0d8ee364a9ace824f34e677f7327ffe1acdbab0938ac49c4 ruby-3.3.0.tar.gz=26074009b501fc793d71a74e419f34a6033c9353433919ca74ba2d24a3de432dbb11fd92c2bc285f0e4d951a6d6c74bf5b69a2ab36200c8c26e871746d6e0fc6 ruby-3.3.1.tar.gz=0c8ea922a79152ac7adbfb2541320565bce6a631692fd39d499a06f53ad6339c16fad8374d171351ed63f7bda3312b26d4f8c058c5b6df3d7548fde372c718f1 ruby-3.3.2.tar.gz=a15ba8d6c2830fcd1f2b36f671acf9028c303ec78608fd268da0585db8e95ddd971666e8029bcfa2584da2184a6534e1f2f2da07fa7ca4494e8d842eed206f00 ruby-3.3.3.tar.gz=0388a96127eb6e53b836f7954af51ff62b84cdb7abeab823cb1349993d805b151204e426b9ac04ca8333fbd5e01c386d58bc37d34c4e9286b219dcda7542a150 ruby-3.3.4.tar.gz=56a0b88954a4efd0236626e49cc90cdb15d9bfd42b27d7fc34efae61f500058e58cb32c73fdef5f1505a36602f4632d6148bf3bd1df539cb5581ae157c78c22b ruby-3.3.5.tar.gz=5c482059628ef9de5d8a6ad4751f8043f2fc2b159b768265be7f3ee0574ad51d9500ee4fc9146c5978fbd51313039c3de39e7b7a4dedc9bcd5d09a41a713f1a7 ruby-3.4.0-preview1.tar.gz=29c0e32179f7b823b6708f5328e495cd333fe8dd88f7df7d9051deab47add67b14d899bba565bba1a77e1b04c9693d9708541445c112925777bb6891cb7b2b62 rubygems-2.6.11.tgz=3b0dd38c0aaf313c59e299dcf54f7bfb6e6d84b8b739573ddaf599e584da45ed7b1465f6521131b32f237e31a4796d9ef455b8be685064b3fd77a0355dfff13e rubygems-2.6.12.tgz=ebb672488b50f5fc988eab66ab14ce8e887dcc635f71239a85e32fbf1e919ca70196eb4d3f2fee3486cace7064bab0b8b08339c754b723198e1b0b0a0984ab54 rubygems-2.6.13.tgz=c952b6061a9a0778db304c3aa5bea693e71ae2564abfb19f8b123eef66eb1e3877fc7c36f4f1527da97bb320870cbfd4574ac57ad88e850a44fadd67ebdac152 rubygems-2.6.14.tgz=7743845bc5265df3782f85a23896cbb250d8a2bbc9934a27f274b001afa7aa62f7f00f616296f74747ea612d2cb37dd7f533c931aa72550d84c64d2a73d60daf rubygems-2.7.0.tgz=0bd08fbabcc33687c98365ffe6794ca2a5e82160b0297479d4f19bd899d176b7f4efb95248898b26d873f9fc7d86c10cada6e40cdc48738b0bac261c3aad261f rubygems-2.7.1.tgz=fa4ea123760b03b8b8e8ececc55c9dc34249073fb267d310bd903aa7a613267e5d27990bbf28e32c9a746bf884af8a84a0dc202297272f9d477f7710c21bfb60 rubygems-2.7.2.tgz=0f48c6e46663780a571c7ee0e6e772f2e18a755031e7dd8ede7870f238c214b9e3e38153b1ae8f1f78a9aad63c1a079b86573b3a25c57a600d842bdf92b9c4d1 rubygems-2.7.3.tgz=2782331b31947a23f85b285a3d5e7b66e34fe5847bc84dca4f1e6bfe33ce187ab0cbc814229de8111aa19490b656ca78b7c821e4ea6b425449991c01371b7565 rubygems-2.7.4.tgz=90f72a46709ef847666a6a23eecf24521abd5c294b2da8a246bb4c7f85daf4af39a0634fc8093c7bb7ded2ac137ea27fac5ed94af3b70c49e78594285c7a40ce rubygems-2.7.5.tgz=86957f1c438070135df527a15102e40487fcee93a55251463095e4c8794a8616d16ed9bdead0e0ef83c44806bd5016ecd9e178bef608b66af2e68e2c9c49e941 rubygems-2.7.6.tgz=bc168afc40c974dbc7c37eb5678432ba2ed7469c3f007a159699467ff2cff5205c508237193ee8becaa6eb555b043969cc5f92b2aaa6bf7c958dd7c187e258a7 rubygems-2.7.7.tgz=f93b7eacf5ef8725c40d618daf9deabc7e9eed74b3b7f13ecd16f89205fe24958e782314c52f8a8fe3205b93e20b830b4fbf7ff8944ff1cf56feb7de2d773252 rubygems-2.7.8.tgz=3d1cf68377dfcf102028342258aaff5a7257d2d2b34a80508c85aa258d810add46e65a157f902c271b0b7b568c437372d17246e89cd88f8500e47c008d17f1a6 rubygems-2.7.9.tgz=5f699f47bc24d8ffd4f8f44a509a9df71fcd945ca2574dc9d5050bfe06a44830a368f45d204112d7a4f1877e1600a6fe4d1b6b68f9a55288664667b4220a7d72 rubygems-2.7.10.tgz=48a18c0f202f463c38cf5dafecfbc7cc39245e63c7a059ef2cefadda478483794a929ea6b7e0ef062dd4423230746f1f09d7bec06a97fe3ceccc3325397a3e71 rubygems-3.0.0.tgz=047f4d446aae414e4803517088ef47d5cc66319ff08a3795c6d69e83eee9f3e7c3b05419858f7e5b6a8ec224990ca01178a9259961ef2d7ab737bac352a0f18d rubygems-3.0.1.tgz=dc29ad51ec67b1dca82a23973ea92153482788964d0755bdcd3c650116915c461c6e5fb1c826be3ee04a497fec4ac2826904bd406f24611e77cd8c9eaf4d8729 rubygems-3.0.2.tgz=90b46c2cd4f8baee74eb488a40691cc00e754cefc42029d485163d6ad7782df78ba5cbeab08eec6a4f71febe0f6e635e12a9381393008c58eb5e16396df93fbe rubygems-3.0.3.tgz=1dd585243341901c7b4cc60a4902000c10ce57fe2cc9c28e27e274a2e6029f936cde1c99d7097c93c2c5b2c8bcee5d692c8fe5cc00c996a040e4954b674e330e rubygems-3.0.4.tgz=887c64226ec0b32d33f2ea331936683406d54dc74d19e658a23521e25ab50aa23534fe9eecaf696154247ad1df1d24c233d8900b9aabc79096eebd6afef3f775 rubygems-3.0.5.tgz=f5a97cf67d7d043afba7c1aed014f1b64ff6376ea74d3d6533496bc5ca9742e0ccce1a157e6f67d8fcbe59d8e34bbfbcf4ed8be97acf2970603de6381043cb78 rubygems-3.0.6.tgz=1ef1822a2b19790a36a6d242b7d4584222617baa27787ec58961a9cfeb2733f19f9085490ffc72ee375d3153c7114e050c42e68fc8039e727fe5961b09365ee5 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=5dfb040b746e462c297ebcdf84e0f07cd74b86852055dcf0a7cf1814112099bc674bcccd94b03726aee76b253c9345a45d046cbfea230647644f0fd6b1c1ec96 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=17983c442c54d19196be3626e25c64f5474139c0b973624832ba8730efb047bc747c02e59c82f38397bf012c63ab83f79a9c1b64311cab796f08fe96d7d12a1a truffleruby-1.0.0-rc3-linux-amd64.tar.gz=b0b57082d61317911f101da617333d81ee6bede6b6e18f9bed86544dc413339c830198d90cad7ac94c0c8fb690adcfc559dd9f530abb70507ff6a76eee552b61 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=18f9782de56269389320ddad779ec69c168909198d4572e2ea4c18bc8082a539569a76760a6a6da58722fe08d77d83904aaba14baf4075a2833cbd2efc45dff3 truffleruby-1.0.0-rc5-linux-amd64.tar.gz=134d9ba5db7b8a1960d3a88390cd6f7503a0e8565094fb127333d122cd773bfbf9dc976c659029007e6fb68e93486293bac2ee29ab21dae9cb0c06ba57dd2c72 truffleruby-1.0.0-rc5-macos-amd64.tar.gz=5804f1f27916176f5a270de8aac85bc48c38ba37c4e719b09f5777e5c42429271819378cfe096c3cc33d406cd0726f2e37658020f97a438fd53751019831569a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=2597b375f590755b851d3b8cbad3eeab4c965eb02d0c944044f57e39f6c3db1e2f513e2aa55db789e4a885c697f81ce5c8bdbe9a7e44ee30fc09d234e44fb512 truffleruby-1.0.0-rc6-macos-amd64.tar.gz=2eb177190de0408dfdaf30264132955d1db7783ddfb63880d97d5933f66c5662794c3bb6198edf230fbff348674203e61f7f5481e74ac875974467f2f128e939 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=ab3a3dc19f903e68e36b135729693fa025a7c1950139277255e48c972387ef8399beceb3252ac37cc70c0df92838f8a0ba8c45f53665ac4286ef23f9b240806a truffleruby-1.0.0-rc7-macos-amd64.tar.gz=b8423f50a5292e211db7ebd7e2b987fd5c9eaaf34eba86b0644d2716a7f068f2e56deb4357c516b87b437e64fd5ce8515bc181165cc1042c6763f27d71baa59d truffleruby-1.0.0-rc8-linux-amd64.tar.gz=bcd05d304ee9b4da97193575fb1ad78041a0c7710bb444af6aef12ab4261b1873f472175ec51a187a5e99da481d66b81a132fb691643b793e87d655f31d54657 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=2c758221793c38ca8af1831a5d9f3abd555c406569508ac3a86d3c1ea5baeeacf65abb6e904ed3b1e58f555f51bc85ab171135ff4c3d0e08cdae994a861cbda4 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=42e60b69957f77a8623e0dccb7d215e800c27c622364fa76b9c574e8b1d3a4056a058b61ed91eac2375ecf4e51e482a6e17550aa2894a44d1db70687958033da truffleruby-1.0.0-rc9-macos-amd64.tar.gz=18556ee8d2fdec6907fbc8fc33d8b32ea0c58d40ee3df084ffb233e2fcd3a514a553f97c31dcc25dda3f86b1b805ca5fe3c9bf8cb078b92325515f09db6b88ba truffleruby-1.0.0-rc10-linux-amd64.tar.gz=10a7cb1be6214347469d5797091f73c3d7824bfb32a47c13566573a383380b1df9b79b7901ce0fa3af1c97285c90afac21e2de7a66ed88d9495846743b3b25e2 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=53f0939d9d8c3470cb79316d865b765816032528d77a3cf497134f3aa667a6253ae037410801261a8e7d0628198ac5f6aea5ecf9b7313f06ccc1d5e9f94e74ea truffleruby-1.0.0-rc11-linux-amd64.tar.gz=f89bc9a3310634d39f68006307da0b0ddafae036089bdd663e8372777a9562d201a4e69b2e1a602cff5fba6c78a8d4861b6d1020679bd0c72c71b938a4f36a27 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=3f461c12fa9fa57a55cc390eb9887df88f404661a77bffb44f82b4c7e9021513a6df9f6d5f332a36ce0c28ae7e3d5afbbe15cc4b814bc7f86dac2e5ec280f947 truffleruby-1.0.0-rc12-linux-amd64.tar.gz=85f042c308ccdfbeb318cec37056d8d970cab51cb0779425b85b8f76b0a1dd9cdec3191ae2b6b9b6be6e95767db814496450ed20076addd9bd495742f9de3c8c truffleruby-1.0.0-rc12-macos-amd64.tar.gz=067a0f63bbaaed4c8d4120f758c8ecf8c52afd1d30ea9d41489e26289d57a574d2d4ae29e29655378510adfb3f4a07b04b403d6ee98ee6b3d3aa8bff9c8d718f truffleruby-1.0.0-rc13-linux-amd64.tar.gz=1eb6b80cb05133d253f20629a11ed9ec3f37da002d5668cdc6577b2a20524e0cdd4d739d3f1aa2e8c518e2f7ebfd519ec1c647293714a1133ad4d569375c0e69 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=e3cddb0d0ae48f7d5ee4dd094ddb5a13f6a7aff1521b1adf25710971664b235cf67144e3b81525fd710dc49b6f6f6ba06e10eee1df5dc08119e9494c6be86934 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=c982194675b66a0433bd5517fc6f1564db669f595f8c7ba4819bf37e0599474d49a0c606577a898c27fa5ba40ab793c62d8211e7ea398d6b3e2bcc31eb5d55f4 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c14e396396385644333fb4c4aa1fb4b934a3f4e46312146821e5dcdaa097cb5b1efbf397c1dd6117d909803fd27ba8d835904672e98d43dc565e907fed752e1b truffleruby-1.0.0-rc15-linux-amd64.tar.gz=f27a75f929a6e945e49ceaad12f484fdaa918469a2f639b572fc4737b78e1cde0881697057e13a58b2fab7ac64c3a71bc9951561c3a8728e3dec814ef5e95fee truffleruby-1.0.0-rc15-macos-amd64.tar.gz=7aa029c4999d4608c9bcc491771b0434267032dbe9dbf504728079f87ce93e6a90e0fa839295b88c00e5a025186ed0fcc42361428b7874c05e222edb108d6c02 truffleruby-1.0.0-rc16-linux-amd64.tar.gz=e8c508dede11d4f54cf0b15cf92b50caad93076a6065bd2d6784c5ca739f5923ea2b894c6b2b52131f62187c8b305cd11a960fb5a670789802d59b6b2999f0af truffleruby-1.0.0-rc16-macos-amd64.tar.gz=841eff077c38bf594b101edb15942f601ba0dada2122b21b016f53251aa2a635b8d0b63b49bdfb50259b2545d1f498bca95d5f771a15a28edb0dd07216c9b709 truffleruby-19.0.0-linux-amd64.tar.gz=8ec6c7829351e0dc2cce57305947cd540734fe5a0b95b9501d4179993727ab2c331e9fb639b9865c0fed596df3906adf3dcf2efb22c4cfdd23a3dc2137025fd4 truffleruby-19.0.0-macos-amd64.tar.gz=912e0c15d32e40c884b2caaaf9a86a71450d441c960ef98a63dfce80353619073b146dcfe03d9af4273b2811d0899eebe922cc84a51d6f5e6826cc436d793f78 truffleruby-19.0.2-linux-amd64.tar.gz=eec92bfbd776acd61709a428b90b1029c5ea83e5ea839304d23cae3a541dd4fab3b387691fa76643f55d5939c9cac0cbe70dc0b5786e5e0e5d20f3fcd9a21356 truffleruby-19.0.2-macos-amd64.tar.gz=ce647b76c9931feac55baa5acd2c87d8335c606bc5cd7e462bd92ba1b09f4bab5db927f021e3119abfd85c33377003d060f36cf64eb121954fce8878112f01b5 truffleruby-19.1.0-linux-amd64.tar.gz=db01e6dc09fc5f39ca466aa94f725023d49a8f52343f129bf8c32b7f5f76ccf2d573ee3344fce3d5aff9983bc9af618cc5ca6e1dbba93b3f604e4f33f8a69b3f truffleruby-19.1.0-macos-amd64.tar.gz=f002bc0b6efca11eb97c4aa6df33d2e0fcc1de3443efd39d912b028df9dd8954cb76ef3ca7fbe140f4e922d6ae4c1a6a20853490ef1ea0749293e2fcd4ffe8fc truffleruby-19.1.1-linux-amd64.tar.gz=ec031e8c216e31f034d97aaccd6441869221d6946e18f375b44a866550b8e8eb4b2fb923f9ce1a62853bdcd5b9201e0f5d2732ca6525d80171d5732ef522bd25 truffleruby-19.1.1-macos-amd64.tar.gz=1c15918af939a8fe1779b71d9e53d2ce09ca7353173a3b357905d9fe1981ff013cf0f90c6b47e1ca66dd168c2f2d742f28a5fb134cc0231d36146da99f91c3cc truffleruby-19.2.0-linux-amd64.tar.gz=1248bdde9cd3651d7042fe4cecff4ad35534868d543fe2e6f3a5bfc3bc9d10d57b4139fc070f0a03861436a1aabc9a8ebdf3356f39b77a4b8f6a1dcf492f70a4 truffleruby-19.2.0-macos-amd64.tar.gz=92c3154ed229a115cf392826494745aae06dd9228dd0996c2c44c550552f13f9c254367d068452fa4a84eef79c19601c79b87e10f3121fd7b83b803514a41cfd truffleruby-19.2.0.1-linux-amd64.tar.gz=53c78cd1f255f2b7031a70a42b65c0bf80c510b9254f5d7ba82b4787f55f5b09cfa9544c424a90f4619a74179fed07c168bd501e34772ef836a773e89c467cc5 truffleruby-19.2.0.1-macos-amd64.tar.gz=ac11523cd49fac50de1e441039e429fb8cd6c7051d537e5083b64fa68eaa19c9f0a966b269da906c367985f229af82a4811282dbfd0a76ef6565162e1081a659 truffleruby-19.2.1-linux-amd64.tar.gz=c5ffc1b592a74e836a4f6ec75b0e103150a4a40d3183ae853ead38c951a85378163111cf0bd2b81e44548c0a7aeaded3ae8a7ae558d5a02dc9e2cce992b79b58 truffleruby-19.2.1-macos-amd64.tar.gz=bb467b91f66eb7d1e6f1a54a7bc0a3d9503bcbd935e8a02da9ea0b749a51e354b1140d4a4dad6fc05312b560bb9ccdcce4f6583bccd19bb5afee19bf494102fe truffleruby-19.3.0-linux-amd64.tar.gz=0e94777a3feabbf0107ed40847e20dd4e3696ff2b7c3f6ceddf3a53ccd812bd003c84c62a750e8fac9d2490374bf792d69174b48c3ed36b593485d86729136c1 truffleruby-19.3.0-macos-amd64.tar.gz=95470c389e24c865ecdc3d299005cd98f8221a128f3cd75f899b6b7ae5d6dc07962443ce0ff38dfd014589d5aaf08b718dc870a72eb7ea6ced18ec2b2db63095 truffleruby-19.3.0.2-linux-amd64.tar.gz=dc5309b71980657f750b4dd4f8b3bc4e191bc305b638b1e562ff5b0ad7fbba40079ba674caf46226a46b5ca58c10f812354786696264742f351b129fb088a672 truffleruby-19.3.0.2-macos-amd64.tar.gz=ff1c37485ebeff3edcc7081ce09bebe5541012dedff6997662c7f8a064e0ab10bef9a5cdf834263a06ae04ca0391743948bcdea6e6c9d7e1cfef9f21523c2bdb truffleruby-19.3.1-linux-amd64.tar.gz=c724547a9eacfdd135ce05eac9dcfe74e58a5e77c97f88103f83b8513c15c975a0ecf623f623a425ec81fad1b64d3b5e135660d6943608ad08048cda00eace79 truffleruby-19.3.1-macos-amd64.tar.gz=d746b2ad410c15d145d36c676a070ae454ba8e5ec6c594d5ebcf54b1fc719f98e8b8f71b6fd504c3d38df286bd11c5114f73b5ba39be312b11d42d4ca1a17d02 truffleruby-20.0.0-linux-amd64.tar.gz=4efea5ded5fcc6886befba3a3720fe1e5b2e376d46738565e8871a1ce0201a33ed52e78b8af2fb389618bdea99466d126d8537dd0919b0c13f8ff1940cb3e52e truffleruby-20.0.0-macos-amd64.tar.gz=b36488330514b77c7115689042cf2482a0beb9f72a0b05fb4c7a6ecb0835a3da47c3b15c41abd6ffced023e65ecf7eabcfbcc6e41901dcddd0fb3dfed46564c6 truffleruby-20.1.0-linux-amd64.tar.gz=116d57404540b85c15b321793a6f985624a2044af544e659b3607e50159703af5d445e22bff28ae2182dfa752f7500d420e250f6deccc98a2f01e89adba8ac3a truffleruby-20.1.0-macos-amd64.tar.gz=9b1267101dfe78b85c79f7528eb4de96b16933e66d5771efa6272372dac0fb35b199bb9d42773d61f4fa7a15d6cbd18b5753c148f7c3e477c7c4b21633f12b88 truffleruby-20.2.0-linux-amd64.tar.gz=a37eaf8475364b74d948979ac13dc6e6423bf11949ad1d0f2925f78a4495e80de9767001ccdb777c8cfd7f545839fad4d842522620c3acad179404bc4ce6752c truffleruby-20.2.0-macos-amd64.tar.gz=964c1e02cc53e1646060334a9911771e679a8344d811a0f77d5cae3529dfefff259c45505ac84b7debb958514cd5d2276ffd435802085494e0229dd140ce8f00 truffleruby-20.3.0-linux-amd64.tar.gz=ec2d8ff6a5d45fd7091e26430c67cbbdc0f8ffa41e9ac574d48802766fcd144e1f446db807700247ad6d8046b7ed070b5da70ef667e576d6fea60cc64ea5484f truffleruby-20.3.0-macos-amd64.tar.gz=1878f94e05a3c40484bf944a72412b179aa5415a16a7ebc1610cb512a1e1c4a2ce0e98685257ad6e5c14745245c35bb5b28205fb687292c4f17193cbfb3bb606 truffleruby-21.0.0-linux-amd64.tar.gz=b7d1b76cc015d136dbd74515431f4447730850475f81b00885b71b95819134db2656d941736048db42d519f03e1f2df066226513b77208adbdbbeda1f49cab11 truffleruby-21.0.0-macos-amd64.tar.gz=7677b827a9c1758d5f941c512cb0fe8daaa19c3db77b485d7dfa43940151d6b9094c4d9271e18ef5014630142dffb93d168c7ac631a3b5eef6fc61b2f9eecf88 truffleruby-21.1.0-linux-amd64.tar.gz=010e9fb78cab12486641780392be0f284da08dfd955f3a0d1ef72adb52e1c9024b54dc880173645aea2af680b3670a6bb01409198b757239edda4cd9bf2b1e90 truffleruby-21.1.0-macos-amd64.tar.gz=96ef8481faef1bfa7f01bb4d396818ef6f0943d19c6a23dedb68f8346740b72bf06efc707bdd29158cf991cc7073c97f429a07b02c2a48050512b46369850058 truffleruby-21.2.0-linux-amd64.tar.gz=c20af04909a852cb676c90403d852fb367d56eac0f9cf8ba42caa4cad1013ba393cc4611e434614ad132b7b0ed61160aadd887001b08de0767cf58f5e149efe7 truffleruby-21.2.0-macos-amd64.tar.gz=0b8d9633fde53aad78f0baf52858cd5a5716f53ff21698baab17da4a625b4369b88dbd664193e3f0d1b40e64c88699ab4f04bbe40f54189a588c93678962a7be truffleruby-21.2.0.1-linux-amd64.tar.gz=15ceeee383114f974aed5f16c99131d56947e13cfe248b97e55d61263ccd51aa56fc3e0df215196ef7f80ccba9e7f19e7f261d7a91d54bde2d9992caba682d82 truffleruby-21.2.0.1-macos-amd64.tar.gz=8a8762d90c19db4f48433ce0e3f3339e290685d79c6ee9bb7d4359c741edfa6a7360ff65124433d964730ac25b2cc6d8b581191b0a51479f11c2a80031a6c1c8 truffleruby-21.3.0-linux-amd64.tar.gz=b0c07b1ea797de92447a81b350d460c125a2efaff3c290637c4bcf1c216b5abd11148cfb143ad397062a96f36beade8234d0785c42f58fceac0011f629a5220b truffleruby-21.3.0-macos-amd64.tar.gz=42e607fa52a534123989ad232691ede65aa1c615f39320d93aa8ab9c21924eea7bc0aa49aef1a540ec972e2b3dc775d22a99eca3e0c9bc450c525f9020fbb975 truffleruby-22.0.0.2-linux-amd64.tar.gz=2231a0cfd27238c34ea0bbad27ba387453e48f39032607cbb829b347ea6ac804df15eb3f84d50b09248782d6202284498e7bc9aaa2060f0ce81bb83a84d700ad truffleruby-22.0.0.2-macos-amd64.tar.gz=1d7ac44f0862ad23cf17a7bba73d23dfd4727aadd9a3aa9633361e9bcd19655d163e160eae9c8db8ec9892f8fbf82d7a38b1cd689475bf41609a828208098623 truffleruby-22.1.0-linux-amd64.tar.gz=c4c2f9bf4236118c8ea62c08bad89e1034ecdfa0c4815693961c4d2b1b30ca043fe958abfec9cf36a8638aa2e005e71fcc244ebffd9ce11eb68cf48bd98c29d3 truffleruby-22.1.0-macos-amd64.tar.gz=507004ade838e614955e23331845839be656aaeae7869ed3d989c10e6491775a12313ac9ef03e14945f20f5e76d46ce6f7bb860af68a627c48065399cea3c567 truffleruby-22.2.0-linux-amd64.tar.gz=37c09249ef387df3e0614f646abb444cb5b7b2751538ab0432e703abe92a81b82e0d15f89d5ad7cd58afe5f30d9a92dc8471d19f1c1ce10b50478ac74f247739 truffleruby-22.2.0-linux-aarch64.tar.gz=49a7cfb4c81980d9c7a1588ef9f76a9bfb759d4b1925ab11f230d99c15a62e162a08249d23cf5646e2d38ecc2005e27103f2e5d92b83b0a182a4e64319b70c0d truffleruby-22.2.0-macos-amd64.tar.gz=d4c206fb0a5e63c5b7f61f2e62de854e4d0817075ef9ded237d98cd821c286e88d7b150d140d9907a957209f39be96c7025560e3908c89aa337925d2fba690af truffleruby-22.2.0-macos-aarch64.tar.gz=a01c18803777a74717ad699b6ee51eb759d881fb436d24338b557c52d4a693079d7b55f108394ccad0dd69c974cb895f4a36854355e84fecb67e41bf9eb18514 truffleruby-22.3.0-linux-amd64.tar.gz=d53472ae892dadc81c6fe63a597ccfb67e133958431b11716db4d920c78fc86f7496e4b10322d041c900bed77d27e02850da20aa95b297d63a9de2e72cdf3c76 truffleruby-22.3.0-linux-aarch64.tar.gz=dab63d49db4722f0c174ce8b882413102520ff649182946ba332ef5ba0fc6b58913595539a20b59e460faab2fba36f762dc8eb66aa729d4a6bb90feb2a95f053 truffleruby-22.3.0-macos-amd64.tar.gz=15c91d25fd6fb1d9f3f2a0b36676da5c8a76d62be86cff463ebe6c7e6aed2d9b6de9062021ab1b9b29cfb7a92b5682c860939acd71d12dba7e4a6bf3964fef3d truffleruby-22.3.0-macos-aarch64.tar.gz=7c44d0dd07e4ecd84a92f6dd574dc185906121b8eb75f6fe097b9d4738aa30751664d70e9027e072eeaa1dffa05fe7bcfc06be0c2dc950142f60664baf5eac69 truffleruby-22.3.1-linux-amd64.tar.gz=f41d3bd22500b7291121368169f8558df4563c840a01b70ff7feea3593f0152d8d77d4437af362bad62f25b79bce1ce8ddaa1bd8172a2a7ef8b61cdb6e478c9e truffleruby-22.3.1-linux-aarch64.tar.gz=1ca5221f0dc5ae3e0bd9545be474e115b2e62737701df95c6ee6cdaae5d82815acbe6af961ff23afee64dc26e655c7786d4347e3694c140773f065534322ee59 truffleruby-22.3.1-macos-amd64.tar.gz=bae16cc04c6018703833121f4258c3f18fa5062309d0600458be3c51c838bc63976a026db0f28d23005df9b640ccad0a9cafc56610a5ca9c24951c66b62097d9 truffleruby-22.3.1-macos-aarch64.tar.gz=b56e230d8fbc95d19364e695aaf1e552238b02ace7056f636808a7d7510777cddfde572ace5238ea1e314351bdd1a053ab3912d0889f51f55c722797c83eaaee truffleruby-23.0.0-preview1-linux-amd64.tar.gz=d538412f12d5ce743c351acbaa483b8b85dd2cf84fe06b3e90ca21f3c2fc0465df9c1773b3515fe4296d599f45e9cbb935dc5a69fe45668321e5639d58608ef4 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=f10b5ac749b11f93c2469f2c8a713ad090cb653761ae0a3e1ba4c19b0c96bd61c5e8da74d8944f9487c2d327d268a188f2cb56028d2beaca2a7816e63123600b truffleruby-23.0.0-preview1-macos-amd64.tar.gz=cd9db49c4253bd66cad6f9ae111c83d3befd0102a7ccb72a2407d22dc576ba7f3a26a90cd479f26dee3565d2f893a2b7c8b549e2351336f35d2632e57966657c truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=28b77d9943cd1617e0445633a9fea8911cfa975f5c581192439cd0944d2a17c2b0558e3e4112588b5fc77b57c48d857ad68ac51fcb867250625ad85406d87acc truffleruby-23.0.0-linux-amd64.tar.gz=da702de2e8c994f2646a3de5b44824210dbd37129cd2f91c3bdd990a1b0d0b05dee4443ad0f6cf98fdb4e489c9f4cde64f3561baf486dc642d4981a1a1812925 truffleruby-23.0.0-linux-aarch64.tar.gz=808254a154adcfd1bbd6e22bcdafebb6169c6f8cfd1c55382d446bb66002384ee844dcd8b5f642703ef440f7566645d190081f45e04a7d8d59bf87571cb4430a truffleruby-23.0.0-macos-amd64.tar.gz=f775d57e63c606eef424a1115408ed8539ef47d6bea0125ad1de7ee4fd5971e96747cb7f5d22d91d2f004edbd6ed6b9b5bd014127dc1abe7821a3a987a72d9dc truffleruby-23.0.0-macos-aarch64.tar.gz=000069854458f81d97eefe14123fbb69937942825e77d35602d55fa279123808177a34f252aec9dcfa48b93feacbee81ae0f0e7043c2d8a9ace2a4bb61ab253f truffleruby-23.1.0-linux-amd64.tar.gz=1868799d989c51798cf07b5243457af7ae2436dd19805fd634c98b2f1885266b5c3ec81dde668c2e5a290e9028f6f9fd223d153489df6ffcc74d45240aa020ad truffleruby-23.1.0-linux-aarch64.tar.gz=2766621877996ad35fddb94f978feed531307e8abf601dcf863754c96782b8149c3ac512dfe6dd2bdef0fe0e8a968bdd77608c41020434aaef4e7250c09edd74 truffleruby-23.1.0-macos-amd64.tar.gz=06c5a1d6ad644fd81737f0a1fd24c1529f712abe2a4485ad597aca7c35ca2af898121bb5883552cf518e2afdcb4221c8ad013759b46a69e34249e7c5ebe2b170 truffleruby-23.1.0-macos-aarch64.tar.gz=496cacc5cf413a48b60184e097a962ab5d2236c539f07cc0a9a2d9ef57dfc911a26b125cc3ad9408f6170c6f93c7562f35729c8313be0301972be21c10097942 truffleruby-23.1.1-linux-amd64.tar.gz=dbca85e281bf2484371a0bbcc202ca700acc704304d966b9202cf3835e82f6eb502e43522355f4c9e5a743877d93f5609006fbba2c5e6343a89de130e5209f6a truffleruby-23.1.1-linux-aarch64.tar.gz=6a58842d79247d8a64c513d68db9d53ea5640c02f71a1bc45f103baaaca67bb224939ae5f21ef55daa9d9b9697404052d39a3c382768ca366ab7892b8bf1abbe truffleruby-23.1.1-macos-amd64.tar.gz=7cc6bc957b7ffa42e9fbfe2f6e3014bf1e7996f2754e9e74377078c2c7bc7ac8e10598f1e1452839fc5b9583c823a2a735731ca193a6af2814a02566cc4cd9e4 truffleruby-23.1.1-macos-aarch64.tar.gz=a85b8189ef8a280f6a27d4c1c93893f844266dbdc15b8c4988cdf581613a353508fae4872ac9380efcc47f36357e137861521712c00ce8548041762a8987a9b2 truffleruby-23.1.2-linux-amd64.tar.gz=6307fd71fb1431fb12346d1f13dee4b3afe53947e8a9c1f3e3aa0baae5f9fc9e1496ede0a7d86b169d912ffef9625af998b4e698dc57a2a649140150e3fae28a truffleruby-23.1.2-linux-aarch64.tar.gz=0f0c5e4aa4e9fbc9b9f91d2b3d3fbfe26e78c5bc5b369fc78dd54775a7582b8c084a64f02848058bec79387fd80b09a5a5594ecfb268635fe76e1f9d957c2e92 truffleruby-23.1.2-macos-amd64.tar.gz=648401a73b29c28862a1fa077c2e1bf8fff65015c8bc690ff883a00a3dfd99389ffdb71f39ad85a4f16c531470f4cc891ae51ec927a426b0fa05fa85c9c6a2f9 truffleruby-23.1.2-macos-aarch64.tar.gz=4ec88684c09aacfa1d8bfed9a17243579ededacecd869e98e12841710bae29ed6e5f080611e53fc217a853f730bb2a9cb3d47ef15443eb8a1ad76a120118c8a5 truffleruby-24.0.0-linux-amd64.tar.gz=3a59a4dc58ad03549d8e63db1485767757715fc9aec21b2b67b1440b13871a04541abeff9bc8201b3088e1865360b1667459e536d3cfb09687dbffca95deafeb truffleruby-24.0.0-linux-aarch64.tar.gz=50f3993b7362bb6e7da80f7327df3d079bb02f98b67012e2135005d77e61648e4f3268f767d8ca245ec5889ff934fbcccb94fd5ecbd55bb0cd9cca900fe10509 truffleruby-24.0.0-macos-amd64.tar.gz=9ec8bb340b15e29550448e123e3ab0f183edb9bbe7e052743cb2306cbd1956a5789c5a367c80c5e8d913dce2b804448dd6815e4d3421515166daf8db51d37c7d truffleruby-24.0.0-macos-aarch64.tar.gz=499f83bf65dcb6ecc92414a3550673e6a0baaddfe3ab13c0bd7aa1bdde1ae2a61d9d0ca8001c0d12688d9e09f98f9e2946a651220fe7d200bb0ec6f285394701 truffleruby-24.0.1-linux-amd64.tar.gz=62b4e8508eba8cdaac70e99ac9cb0b33a663b4195d79b2dad3d771ef538c6c41d1d91bb7bb07fbbafbcbbcaf17814ffaf6d6bdbafd474ba6a8ecdac30315a8c9 truffleruby-24.0.1-linux-aarch64.tar.gz=817d877848ea4bb55658ce34bbda52926be12426a8a5e1c4588bc0ec1896018b06dce176336b382f80a7c6d073d4331b20694a7797ee8fdf0177e973053bf929 truffleruby-24.0.1-macos-amd64.tar.gz=2ea65bea154aa38cce3f00f24fc9a4aab5e7478fafd070d0cc966878371c070d5a1776b7405e2c9e4cfa14e5c51219ed0fa988294eb4708690983b348886f439 truffleruby-24.0.1-macos-aarch64.tar.gz=bc1923e21768d34779c1bcd7850456a01ddc01acd1ccf20f4fb4a446fb847f8c51b1ff4a7c0cdc317ef8ce057ac24f18f25b778a02a6e2b185e0055d946ecaf2 truffleruby-24.0.2-linux-amd64.tar.gz=5d111beb862b618c4e6a7f8aea1d3d6476740513efdd59bf980a2b6d525a017f46fe02017b075962a4919a001b60bd9a070e69fedfa8a85533c0adbad2a8d86b truffleruby-24.0.2-linux-aarch64.tar.gz=8e3ba19df4e5509c4719bc3bb621f70ca6a0e683d48a296703649b88abd83a165e8a64ad2d7dc45394b6de0b214a95a395fa449f5393dd9e67deab9e149cf494 truffleruby-24.0.2-macos-amd64.tar.gz=06d3b5533c4e26aa1356e602c672efad99208aaee96110904216e16dcfb1d99a7535c3ef275f9a14635dd2f05110798b3c75d71199f6010f23c92c6990492cef truffleruby-24.0.2-macos-aarch64.tar.gz=ba36d3f1680112e6623b14a4bb902a5f65f11e9827f44462161b1c79ee344ca340566289aa1f841c1e213daef5608c159343cc203d07f41c2a55eaeb25db0987 truffleruby-24.1.0-linux-amd64.tar.gz=9a93fd61086fabcb6c4f3a0fcb16e81f42b0203a24a04209fe446eb5f88d78e2ac59ab54d42cc30ef5417199a88b452973eecdfafc57c7877e11edf0a3d42b13 truffleruby-24.1.0-linux-aarch64.tar.gz=ca23edf279ee9b4693630df9596c6e269bb544e06bfd02620447f51108d9e9b4dc8b3ecbcc7a8ba1280560c0eb4b59474e75acead81799e4c51365acb5676d24 truffleruby-24.1.0-macos-amd64.tar.gz=65b661b3bf497bbb090a2cb49607aa00c3e5bfe95eb19c7736d798715d55fe07ddb4e8d8c25c1ec4b7b304b37205c7de9d8ac2d56005c9fc43e4dc81ae699c9b truffleruby-24.1.0-macos-aarch64.tar.gz=ab665d995bd63839c0bf6ed1171875cce7974d49ed79953a05ecdcf13d815c0a5cd471f40839f3f51a1b3128b40a4ed34d9b89e4c3f343b38c78276aed667956 +truffleruby-24.1.1-linux-amd64.tar.gz=78e4e8bd910e4b3b41e927f6158cf8cfc74da5187969727d5c5303416310c5b7f72fde239993ecd5ab51724785cd80b2bb9a422a0475320fca57ad40b26d2786 +truffleruby-24.1.1-linux-aarch64.tar.gz=c4e3aa72433622f96216b053862beb65861ab20ab28cfc50f51452720173f0a836ee69335281c4c89c6289ffa6f42517b9487d1b6fe16926aecfd9180d6f8195 +truffleruby-24.1.1-macos-amd64.tar.gz=099d1abaa8677ecfd298e974fbb37e21bff2ad45313090cecf9a2799b79b74223ca4f95fb873cb7148bb2754ea3f923cfb553dd1dbdf6f1c088a3793bd991871 +truffleruby-24.1.1-macos-aarch64.tar.gz=8980a71fc423c454ceaa16b46ba085a0164bf22e3e2040e960623148f09fea4c467b304774afc2ea37d9e072905eab3ad65b3c4acdc7b01ba238e24829cc16d2
rvm/rvm
11d834fa8da8063f17e7fc676761d7b9ad85bb6b
Add TruffleRuby 24.1.0 (#5503)
diff --git a/CHANGELOG.md b/CHANGELOG.md index 877ee36..e365894 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,593 +1,593 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Use OpenSSL 3 for Ruby 3.2 and 3.3 [\#5480](https://github.com/rvm/rvm/pull/5480) * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) * Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) * Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) * Install `libncurses-dev` instead of `libncurses5-dev` on newer Debian and Ubuntu versions [\#5477](https://github.com/rvm/rvm/pull/5477) * Use `zlib-ng-compat` packages for Fedora 40+ [\#5479](https://github.com/rvm/rvm/pull/5479) * Detect core count on ARM-based machines [\#5498](https://github.com/rvm/rvm/pull/5498) * Fix requirement check for Ubuntu [\#5500](https://github.com/rvm/rvm/pull/5500) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) * 3.3.3 [\#5474](https://github.com/rvm/rvm/pull/5474) * 3.3.4 [\#5488](https://github.com/rvm/rvm/pull/5488) * 3.2.5 [\#5490](https://github.com/rvm/rvm/pull/5490) * 3.3.5 [\#5499](https://github.com/rvm/rvm/pull/5499) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) -* 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1, 24.0.2 +* 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1, 24.0.2, 24.1.0 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.3.15.0 [\#5482](https://github.com/rvm/rvm/pull/5482) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) * 9.4.8.0 [\#5484](https://github.com/rvm/rvm/pull/5484) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) * 3.1.6, 3.2.5, 3.3.2, 3.3.3 and 3.3.4 [\#5491](https://github.com/rvm/rvm/pull/5491) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) #### Upgraded Ruby interpreters: * Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159), 2.5.0-preview1 [\#4204](https://github.com/rvm/rvm/pull/4204), 2.2.9, 2.3.6, 2.4.3 and 2.5.0-rc1 [\#4261](https://github.com/rvm/rvm/pull/4261), 2.5.0 [\#4265](https://github.com/rvm/rvm/pull/4265), 2.6.0-preview1 [\#4317](https://github.com/rvm/rvm/pull/4317), 2.2.10, 2.3.7, 2.4.4, 2.5.1 [\#4340](https://github.com/rvm/rvm/pull/4340) and 2.6.0-preview2[\#4395](https://github.com/rvm/rvm/pull/4395) * Add support for Rubinius 3.85-3.100 * Add support for JRuby 9.1.14.0 [\#4224](https://github.com/rvm/rvm/pull/4224), 9.1.15.0 [\#4258](https://github.com/rvm/rvm/pull/4258), 9.1.16.0 [\#4316](https://github.com/rvm/rvm/pull/4316), 9.1.17.0 [\#4366](https://github.com/rvm/rvm/pull/4366), 9.2.0.0 [\#4390](https://github.com/rvm/rvm/pull/4390) * Add support for mruby 1.4.0 [\#4286](https://github.com/rvm/rvm/pull/4286) * Add support for MagLev 1.1* and 1.2Alpha-1.2Alpha4 [\#4289](https://github.com/rvm/rvm/pull/4289) * Add support for RubyGems 2.6.14 [\#4205](https://github.com/rvm/rvm/pull/4205), 2.7.0-2.7.4 [\#4276](https://github.com/rvm/rvm/issues/4276) and 2.7.5-6 #### Binaries: * Ubuntu 16.04 x64 binaries for Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4362](https://github.com/rvm/rvm/issues/4362), 2.2.9, 2.3.6 and 2.4.3 [\#4259](https://github.com/rvm/rvm/issues/4259), 2.2.8, 2.3.5 and 2.4.2 [\#4161](https://github.com/rvm/rvm/issues/4161), 2.5.0 [\#4272](https://github.com/rvm/rvm/pull/4272) * Ubuntu 17.04 for Ruby 2.1.\*, 2.2.\* [\#4233](https://github.com/rvm/rvm/pull/4233) ## [1.29.3](https://github.com/rvm/rvm/releases/tag/1.29.3) 10 September 2017 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.2...1.29.3) #### New features: * Add RVM commands missing in bash shell completion [\#4078](https://github.com/rvm/rvm/pull/4078) * Railsexpress patches for 2.3.4, 2.3-head [\#4084](https://github.com/rvm/rvm/pull/4084), 2.2.5 and 2.2.6 [\#4153](https://github.com/rvm/rvm/pull/4153) * Update `gem-wrappers` to 1.3.0: Show warnings when the target binary is missing or is not executable [gem-wrappers \#9](https://github.com/rvm/gem-wrappers/issues/9) * Detect Zorin OS as Ubuntu [\#4140](https://github.com/rvm/rvm/issues/4140) #### Bug fixes: * Infinite loop in `gemset_create` [\#4102](https://github.com/rvm/rvm/issues/4102) * Command not found `__rvm_remote_version` error [\#4085](https://github.com/rvm/rvm/pull/4085) * Fix path of version script in `environment` [\#4117](https://github.com/rvm/rvm/pull/4117) * Define `cd()`, `pushd()` and `popd()` properly when using zsh [\#4132](https://github.com/rvm/rvm/pull/4132) * Update gem-wrappers to 1.3.1: Avoid warnings for missing ruby binaries [\#4104](https://github.com/rvm/rvm/issues/4104) * Handles :engine=> and :engine_version=> in Gemfile * Makes $rvm_ruby_string is not installed searchable by adding a fixed keyword * Correctly quotes suggested install command * Fix path to version script in rvm-installer [\#4134](https://github.com/rvm/rvm/pull/4134) * Fix rvm autolibs status, fix [\#4123](https://github.com/rvm/rvm/issues/4123) * Ruby 2.3.x and older are not compatible with OpenSSL 1.1.x on Arch [\#4006](https://github.com/rvm/rvm/issues/4006) * Allow comments after ruby directive in Gemfile [\#4056](https://github.com/rvm/rvm/issues/4056) * Ruby 2.3/4 compilation fix for GCC 7 [\#4080](https://github.com/rvm/rvm/issues/4080) [\#4115](https://github.com/rvm/rvm/issues/4115) * Add warning for sudo users [\#4009](https://github.com/rvm/rvm/issues/4009) * Allows running RVM shell function in Bash with `set -o nounset` [\#4013](https://github.com/rvm/rvm/issues/4013) * Ensure `rvm_hooks_path` is set [\#3902](https://github.com/rvm/rvm/issues/3902) * Allow building static ruby with `--disbale-shared` [\#4091](https://github.com/rvm/rvm/issues/4091) * Restore detection of `gpg` command for veryfication of signatures [\#4059](https://github.com/rvm/rvm/issues/4059) * Update `gem-wrappers` to 1.3.2: Avoid nested chdir warnings [gem-wrappers \#11](https://github.com/rvm/gem-wrappers/pull/11) * Fix RVM folder cleanup during installation [\#4333](https://github.com/rvm/rvm/issues/4333) * Fix found project file reject reasons for bash -e [\#4314](https://github.com/rvm/rvm/pull/4314) #### Upgraded Ruby interpreters: * Add support for Rubinius 3.82, 3.83, 3.84 * Add support for mruby 1.3.0 * Upgrade RubyGems to 2.6.13 [\#4142](https://github.com/rvm/rvm/pull/4142) * Add support for JRuby 9.1.13.0 [\#4147](https://github.com/rvm/rvm/pull/4147) #### Documentation * Remove `wayneeseguin` reference from RVM repo names [\#4086](https://github.com/rvm/rvm/pull/4086) diff --git a/config/db b/config/db index 4602c20..0f1c2a0 100644 --- a/config/db +++ b/config/db @@ -1,154 +1,154 @@ # General default_ruby=ruby interpreter=ruby niceness=0 # # RVM # rvm_remote_server_path1=maven2/org/jruby/jruby-dist rvm_remote_server_url1=https://repo1.maven.org rvm_remote_server_url2=https://rubies.travis-ci.org rvm_remote_server_url=https://rvm-io.global.ssl.fastly.net/binaries # # RubyGems # gem_gem-empty_version=>=1.1.2 gem_gem-wrappers_version=>=1.4.0 gem_rdoc_version=>=4.1.1 gem_rvm_version=>=1.11.3.9 rubygems_repo_url=https://github.com/rubygems/rubygems.git rubygems_url=https://rubygems.org/rubygems rubygems_url_fallback_1=https://github.com/rubygems/rubygems/archive/v\1.tar.gz rubygems_url_fallback_1_pattern=https://rubygems.org/rubygems/rubygems-([[:digit:]\.]+).tgz rubygems_version=latest-3.0 # # Packages # autoconf_url=https://ftp.gnu.org/gnu/autoconf curl_url=https://github.com/bagder/curl/archive gettext_url=https://ftp.gnu.org/pub/gnu/gettext glib_url=http://ftp.gnome.org/pub/gnome/sources/glib/2.23 libiconv_url=https://ftp.gnu.org/pub/gnu/libiconv libxml2_url=ftp://xmlsoft.org/libxml2 libxslt_url=ftp://xmlsoft.org/libxslt llvm_url=https://llvm.org/svn/llvm-project/llvm/trunk mono_url=http://ftp.novell.com/pub/mono/sources/mono ncurses_url=https://ftp.gnu.org/pub/gnu/ncurses openssl_url=https://www.openssl.org/source/old/1.0.1 openssl_version=1.0.1i pkg-config_url=http://pkgconfig.freedesktop.org/releases readline_url=https://ftp.gnu.org/gnu/readline yaml_url=http://pyyaml.org/download/libyaml yaml_version=0.1.6 zlib_url=https://prdownloads.sourceforge.net/libpng # # CentOS / Fedora EPEL # epel5_i386_rpm=https://dl.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm epel5_key=https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-5 epel5_x86_64_rpm=https://dl.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm epel6_i386_rpm=https://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm epel6_key=https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-6 epel6_x86_64_rpm=https://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm epel7_key=https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-7 epel7_x86_64_rpm=https://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-8.noarch.rpm # # MRI Ruby # CentOS_5_ruby_1.8.7_patch_level=p374 CentOS_5_ruby_1.8.7_patch_level_warn=Warning, Centos 5 can not build head version of ruby, falling back to latest patchlevel, your ruby will be less secure because of this. CentOS_5_ruby_1.9.2_patch_level=p320 CentOS_5_ruby_1.9.2_patch_level_warn=Warning, Centos 5 can not build head version of ruby, falling back to latest patchlevel, your ruby will be less secure because of this. ruby_1.8.4_rubygems_version=1.3.5 ruby_1.8.5_patch_level=p231 ruby_1.8.5_rubygems_version=1.3.5 ruby_1.8.6_patch_level=p420 ruby_1.8.6_rubygems_version=1.3.7 ruby_1.8.7_patch_level=head ruby_1.8.7_rubygems_version=latest-2.0 ruby_1.9.1_patch_level=p431 ruby_1.9.1_rubygems_version=latest-1.8 ruby_1.9.2_patch_level=p330 ruby_1.9.3_patch_level=p551 ruby_2.0.0_patch_level=p648 ruby_head_rubygems_version=ignore ruby_repo_url=https://github.com/ruby/ruby.git ruby_unmaintained_date=2017-04-01 ruby_unmaintained_version=2.1.0 ruby_url=https://cache.ruby-lang.org/pub/ruby ruby_url_fallback_1=https://ftp.ruby-lang.org/pub/ruby ruby_version=3.3.5 # # REE # ree_1.8.6_patch_level=20090610 ree_1.8.6_repo_url=https://github.com/FooBarWidget/rubyenterpriseedition.git ree_1.8.6_rubygems_version=1.3.7 ree_1.8.6_url=http://rubyforge.org/frs/download.php/58677 ree_1.8.7_2010.02_url=https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/rubyenterpriseedition/ruby-enterprise-1.8.7-2012.02.tar.gz ree_1.8.7_patch_level=2012.02 ree_1.8.7_repo_url=https://github.com/FooBarWidget/rubyenterpriseedition187-330 ree_1.8.7_rubygems_version=latest-2.0 ree_1.8.7_url=https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/rubyenterpriseedition ree_configure_flags=--dont-install-useful-gems ree_version=1.8.7 # # Rubinius # rbx_1.0.0_patch_level=20100514 rbx_1.0.1_patch_level=20100603 rbx_1.1.0_patch_level=20100923 rbx_1.1.1_patch_level=20101116 rbx_1.2.0_patch_level=20101221 rbx_1.2.1_patch_level=20110215 rbx_1.2.2_patch_level=20110222 rbx_1.2.3_patch_level=20110315 rbx_1.2.4_patch_level=20110705 rbx_repo_url=https://github.com/rubinius/rubinius.git rbx_url=https://s3.amazonaws.com/asset.rubini.us rbx_url_2.0_and_newer=https://rubinius-releases-rubinius-com.s3.amazonaws.com rbx_version=4.1 # # MRuby # mruby_repo_url=https://github.com/mruby/mruby.git mruby_url=https://github.com/mruby/mruby/archive mruby_version=2.0.1 # # JRuby # jruby_repo_url=https://github.com/jruby/jruby.git jruby_url=https://repo1.maven.org/maven2/org/jruby/jruby-dist jruby_version=9.4.8.0 maven_version=3.5.0 # # TruffleRuby # truffleruby_url=https://github.com/oracle/truffleruby/releases/download -truffleruby_version=24.0.2 +truffleruby_version=24.1.0 # # MacRuby # macruby_0.10_url=http://macruby.macosforge.org/files macruby_nightly_url=http://macruby.jp/files/nightlies macruby_repo_url=https://github.com/MacRuby/MacRuby.git macruby_url=https://github.com/downloads/MacRuby/MacRuby macruby_version=0.12 # # Maglev # maglev_repo_url=https://github.com/MagLev/maglev.git maglev_url=http://seaside.gemtalksystems.com/maglev maglev_version=1.2Alpha4 # # IronRuby # ironruby_1.1.3_url=https://download-codeplex.sec.s-msft.com/Download/Release?ProjectName=ironruby&DownloadId=217153&FileTime=129445296766130000&Build=19727 ironruby_repo_url=https://github.com/ironruby/ironruby.git ironruby_version=1.1.3 # # Topaz # topaz_repo_url=https://github.com/topazproject/topaz.git topaz_url=https://d3sgc2zfsedosj.cloudfront.net topaz_version=head diff --git a/config/known b/config/known index 165ba9e..875bf75 100644 --- a/config/known +++ b/config/known @@ -1,81 +1,81 @@ # MRI Rubies [ruby-]1.8.6[-p420] [ruby-]1.8.7[-head] # security released on head [ruby-]1.9.1[-p431] [ruby-]1.9.2[-p330] [ruby-]1.9.3[-p551] [ruby-]2.0.0[-p648] [ruby-]2.1[.10] [ruby-]2.2[.10] [ruby-]2.3[.8] [ruby-]2.4[.10] [ruby-]2.5[.9] [ruby-]2.6[.10] [ruby-]2.7[.8] [ruby-]3.0[.7] [ruby-]3.1[.5] [ruby-]3.2[.5] [ruby-]3[.3.5] [ruby-]3.4[.0-preview1] ruby-head # for forks use: rvm install ruby-head-<name> --url https://github.com/github/ruby.git --branch 2.2 # JRuby jruby-1.6[.8] jruby-1.7[.27] jruby-9.1[.17.0] jruby-9.2[.21.0] jruby-9.3[.15.0] jruby[-9.4.8.0] jruby-head # Rubinius rbx-1[.4.3] rbx-2.3[.0] rbx-2.4[.1] rbx-2[.5.8] rbx-3[.107] rbx-4[.20] rbx-5[.0] rbx-head # TruffleRuby -truffleruby[-24.0.2] +truffleruby[-24.1.0] # Opal opal # Minimalistic ruby implementation - ISO 30170:2012 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1[.4.1] mruby-2.0.1 mruby-2[.1.1] mruby[-head] # Ruby Enterprise Edition ree-1.8.6 ree[-1.8.7][-2012.02] # Topaz topaz # MagLev maglev-1.0.0 maglev-1.1[RC1] maglev[-1.2Alpha4] maglev-head # Mac OS X Snow Leopard Or Newer macruby-0.10 macruby-0.11 macruby[-0.12] macruby-nightly macruby-head # IronRuby ironruby[-1.1.3] ironruby-head diff --git a/config/known_strings b/config/known_strings index 34832de..673bdc1 100644 --- a/config/known_strings +++ b/config/known_strings @@ -55,512 +55,513 @@ jruby-1.6.2 jruby-1.6.3 jruby-1.6.4 jruby-1.6.5 jruby-1.6.5.1 jruby-1.6.7 jruby-1.6.7.2 jruby-1.6.8 jruby-1.7.0.preview1 jruby-1.7.0.preview2 jruby-1.7.0.RC1 jruby-1.7.0.RC2 jruby-1.7.0 jruby-1.7.1 jruby-1.7.2 jruby-1.7.3 jruby-1.7.4 jruby-1.7.5 jruby-1.7.6 jruby-1.7.7 jruby-1.7.8 jruby-1.7.9 jruby-1.7.10 jruby-1.7.11 jruby-1.7.12 jruby-1.7.13 jruby-1.7.14 jruby-1.7.15 jruby-1.7.16 jruby-1.7.16.1 jruby-1.7.16.2 jruby-1.7.17 jruby-1.7.18 jruby-1.7.19 jruby-1.7.20 jruby-1.7.20.1 jruby-1.7.21 jruby-1.7.22 jruby-1.7.23 jruby-1.7.24 jruby-1.7.25 jruby-1.7.26 jruby-1.7.27 jruby-9.0.0.0.pre1 jruby-9.0.0.0.pre2 jruby-9.0.0.0.rc1 jruby-9.0.0.0.rc2 jruby-9.0.0.0 jruby-9.0.1.0 jruby-9.0.2.0 jruby-9.0.3.0 jruby-9.0.4.0 jruby-9.0.5.0 jruby-9.1.0.0 jruby-9.1.1.0 jruby-9.1.2.0 jruby-9.1.3.0 jruby-9.1.4.0 jruby-9.1.5.0 jruby-9.1.6.0 jruby-9.1.7.0 jruby-9.1.8.0 jruby-9.1.9.0 jruby-9.1.10.0 jruby-9.1.11.0 jruby-9.1.12.0 jruby-9.1.13.0 jruby-9.1.14.0 jruby-9.1.15.0 jruby-9.1.16.0 jruby-9.1.17.0 jruby-9.2.0.0 jruby-9.2.1.0 jruby-9.2.2.0 jruby-9.2.3.0 jruby-9.2.4.0 jruby-9.2.4.1 jruby-9.2.5.0 jruby-9.2.6.0 jruby-9.2.7.0 jruby-9.2.8.0 jruby-9.2.9.0 jruby-9.2.10.0 jruby-9.2.11.0 jruby-9.2.11.1 jruby-9.2.12.0 jruby-9.2.13.0 jruby-9.2.14.0 jruby-9.2.15.0 jruby-9.2.16.0 jruby-9.2.17.0 jruby-9.2.18.0 jruby-9.2.19.0 jruby-9.2.20.0 jruby-9.2.20.1 jruby-9.2.21.0 jruby-9.3.0.0 jruby-9.3.1.0 jruby-9.3.2.0 jruby-9.3.3.0 jruby-9.3.4.0 jruby-9.3.6.0 jruby-9.3.7.0 jruby-9.3.8.0 jruby-9.3.9.0 jruby-9.3.10.0 jruby-9.3.11.0 jruby-9.3.13.0 jruby-9.3.14.0 jruby-9.3.15.0 jruby-9.4.0.0 jruby-9.4.1.0 jruby-9.4.2.0 jruby-9.4.3.0 jruby-9.4.4.0 jruby-9.4.5.0 jruby-9.4.6.0 jruby-9.4.7.0 jruby-9.4.8.0 macruby-0.12 maglev-1.0.0 maglev-1.1beta maglev-1.1beta2 maglev-1.1RC1 maglev-1.2Alpha maglev-1.2Alpha2 maglev-1.2Alpha3 maglev-1.2Alpha4 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1.4.0 mruby-1.4.1 mruby-2.0.0 mruby-2.0.1 mruby-2.1.0-rc mruby-2.1.0 mruby-2.1.1-rc mruby-2.1.1-rc2 mruby-2.1.1 rbx-1.0.0-20100514 rbx-1.0.1-20100603 rbx-1.1.0-20100923 rbx-1.1.1-20101116 rbx-1.2.0-20101221 rbx-1.2.1-20110215 rbx-1.2.2-20110222 rbx-1.2.3-20110315 rbx-1.2.4-20110705 rbx-1.3.2 rbx-1.3.3 rbx-1.4.1 rbx-1.4.3 rbx-2.0.0 rbx-2.1.0 rbx-2.1.1 rbx-2.2.0 rbx-2.2.2 rbx-2.2.3 rbx-2.2.4 rbx-2.2.5 rbx-2.2.6 rbx-2.2.7 rbx-2.2.8 rbx-2.2.9 rbx-2.2.10 rbx-2.3.0 rbx-2.4.0 rbx-2.4.1 rbx-2.5.0 rbx-2.5.1 rbx-2.5.2 rbx-2.5.3 rbx-2.5.4 rbx-2.5.5 rbx-2.5.6 rbx-2.5.7 rbx-2.5.8 rbx-3.70 rbx-3.71 rbx-3.72 rbx-3.73 rbx-3.74 rbx-3.75 rbx-3.76 rbx-3.77 rbx-3.78 rbx-3.79 rbx-3.80 rbx-3.81 rbx-3.82 rbx-3.83 rbx-3.84 rbx-3.85 rbx-3.86 rbx-3.87 rbx-3.88 rbx-3.89 rbx-3.90 rbx-3.91 rbx-3.92 rbx-3.93 rbx-3.94 rbx-3.95 rbx-3.96 rbx-3.97 rbx-3.98 rbx-3.99 rbx-3.100 rbx-3.101 rbx-3.102 rbx-3.103 rbx-3.104 rbx-3.105 rbx-3.106 rbx-3.107 rbx-4.0 rbx-4.1 rbx-4.2 rbx-4.3 rbx-4.4 rbx-4.5 rbx-4.6 rbx-4.7 rbx-4.8 rbx-4.9 rbx-4.10 rbx-4.11 rbx-4.12 rbx-4.13 rbx-4.14 rbx-4.15 rbx-4.16 rbx-4.17 rbx-4.18 rbx-4.19 rbx-4.20 rbx-5.0 ree-1.8.6-20080507 ree-1.8.6-20080621 ree-1.8.6-20080623 ree-1.8.6-20080624 ree-1.8.6-20080709 ree-1.8.6-20080810 ree-1.8.6-20081205 ree-1.8.6-20081215 ree-1.8.6-20090113 ree-1.8.6-20090201 ree-1.8.6-20090421 ree-1.8.6-20090520 ree-1.8.6-20090610 ree-1.8.6-20090928 ree-1.8.7-2009.10 ree-1.8.7-2010.01 ree-1.8.7-2010.02 ree-1.8.7-2011.01 ree-1.8.7-2011.02 ree-1.8.7-2011.03 ree-1.8.7-2011.12 ree-1.8.7-2012.02 ruby-1.8.5-p115 ruby-1.8.5-p231 ruby-1.8.6-p286 ruby-1.8.6-p287 ruby-1.8.6-p369 ruby-1.8.6-p383 ruby-1.8.6-p398 ruby-1.8.6-p399 ruby-1.8.6-p420 ruby-1.8.7-p160 ruby-1.8.7-p174 ruby-1.8.7-p248 ruby-1.8.7-p249 ruby-1.8.7-p299 ruby-1.8.7-p302 ruby-1.8.7-p330 ruby-1.8.7-p334 ruby-1.8.7-p352 ruby-1.8.7-p357 ruby-1.8.7-p358 ruby-1.8.7-p370 ruby-1.8.7-p371 ruby-1.8.7-p374 ruby-1.9.0 ruby-1.9.1-p129 ruby-1.9.1-p243 ruby-1.9.1-p376 ruby-1.9.1-p378 ruby-1.9.1-p429 ruby-1.9.1-p431 ruby-1.9.2-p0 ruby-1.9.2-p136 ruby-1.9.2-p180 ruby-1.9.2-p290 ruby-1.9.2-p318 ruby-1.9.2-p320 ruby-1.9.2-p330 ruby-1.9.3-preview1 ruby-1.9.3-rc1 ruby-1.9.3-p0 ruby-1.9.3-p125 ruby-1.9.3-p194 ruby-1.9.3-p286 ruby-1.9.3-p327 ruby-1.9.3-p362 ruby-1.9.3-p374 ruby-1.9.3-p385 ruby-1.9.3-p392 ruby-1.9.3-p429 ruby-1.9.3-p448 ruby-1.9.3-p484 ruby-1.9.3-p545 ruby-1.9.3-p547 ruby-1.9.3-p550 ruby-1.9.3-p551 ruby-2.0.0-preview1 ruby-2.0.0-preview2 ruby-2.0.0-rc1 ruby-2.0.0-rc2 ruby-2.0.0-p0 ruby-2.0.0-p195 ruby-2.0.0-p247 ruby-2.0.0-p353 ruby-2.0.0-p451 ruby-2.0.0-p481 ruby-2.0.0-p576 ruby-2.0.0-p594 ruby-2.0.0-p598 ruby-2.0.0-p643 ruby-2.0.0-p645 ruby-2.0.0-p647 ruby-2.0.0-p648 ruby-2.1.0-preview1 ruby-2.1.0-preview2 ruby-2.1.0-rc1 ruby-2.1.0 ruby-2.1.1 ruby-2.1.2 ruby-2.1.3 ruby-2.1.4 ruby-2.1.5 ruby-2.1.6 ruby-2.1.7 ruby-2.1.8 ruby-2.1.9 ruby-2.1.10 ruby-2.2.0-preview1 ruby-2.2.0-preview2 ruby-2.2.0-rc1 ruby-2.2.0 ruby-2.2.1 ruby-2.2.2 ruby-2.2.3 ruby-2.2.4 ruby-2.2.5 ruby-2.2.6 ruby-2.2.7 ruby-2.2.8 ruby-2.2.9 ruby-2.2.10 ruby-2.3.0-preview1 ruby-2.3.0-preview2 ruby-2.3.0 ruby-2.3.1 ruby-2.3.2 ruby-2.3.3 ruby-2.3.4 ruby-2.3.5 ruby-2.3.6 ruby-2.3.7 ruby-2.3.8 ruby-2.4.0-preview1 ruby-2.4.0-preview2 ruby-2.4.0-preview3 ruby-2.4.0-rc1 ruby-2.4.0 ruby-2.4.1 ruby-2.4.2 ruby-2.4.3 ruby-2.4.4 ruby-2.4.5 ruby-2.4.6 ruby-2.4.7 ruby-2.4.8 ruby-2.4.9 ruby-2.4.10 ruby-2.5.0-preview1 ruby-2.5.0-rc1 ruby-2.5.0 ruby-2.5.1 ruby-2.5.2 ruby-2.5.3 ruby-2.5.4 ruby-2.5.5 ruby-2.5.6 ruby-2.5.7 ruby-2.5.8 ruby-2.5.9 ruby-2.6.0-preview1 ruby-2.6.0-preview2 ruby-2.6.0-preview3 ruby-2.6.0-rc1 ruby-2.6.0-rc2 ruby-2.6.0 ruby-2.6.1 ruby-2.6.2 ruby-2.6.3 ruby-2.6.4 ruby-2.6.5 ruby-2.6.6 ruby-2.6.7 ruby-2.6.8 ruby-2.6.9 ruby-2.6.10 ruby-2.7.0-preview1 ruby-2.7.0-preview2 ruby-2.7.0-preview3 ruby-2.7.0-rc1 ruby-2.7.0-rc2 ruby-2.7.0 ruby-2.7.1 ruby-2.7.2 ruby-2.7.3 ruby-2.7.4 ruby-2.7.5 ruby-2.7.6 ruby-2.7.7 ruby-2.7.8 ruby-3.0.0-preview1 ruby-3.0.0-preview2 ruby-3.0.0-rc1 ruby-3.0.0 ruby-3.0.1 ruby-3.0.2 ruby-3.0.3 ruby-3.0.4 ruby-3.0.5 ruby-3.0.6 ruby-3.0.7 ruby-3.1.0-preview1 ruby-3.1.0 ruby-3.1.1 ruby-3.1.2 ruby-3.1.3 ruby-3.1.4 ruby-3.1.5 ruby-3.2.0-preview1 ruby-3.2.0-preview2 ruby-3.2.0-preview3 ruby-3.2.0-rc1 ruby-3.2.0 ruby-3.2.1 ruby-3.2.2 ruby-3.2.3 ruby-3.2.4 ruby-3.2.5 ruby-3.3.0-preview1 ruby-3.3.0-preview2 ruby-3.3.0-preview3 ruby-3.3.0 ruby-3.3.1 ruby-3.3.2 ruby-3.3.3 ruby-3.3.4 ruby-3.3.5 ruby-3.4.0-preview1 truffleruby-1.0.0-rc2 truffleruby-1.0.0-rc3 truffleruby-1.0.0-rc5 truffleruby-1.0.0-rc6 truffleruby-1.0.0-rc7 truffleruby-1.0.0-rc8 truffleruby-1.0.0-rc9 truffleruby-1.0.0-rc10 truffleruby-1.0.0-rc11 truffleruby-1.0.0-rc12 truffleruby-1.0.0-rc13 truffleruby-1.0.0-rc14 truffleruby-1.0.0-rc15 truffleruby-1.0.0-rc16 truffleruby-19.0.0 truffleruby-19.0.2 truffleruby-19.1.0 truffleruby-19.1.1 truffleruby-19.2.0 truffleruby-19.2.0.1 truffleruby-19.2.1 truffleruby-19.3.0 truffleruby-19.3.0.2 truffleruby-19.3.1 truffleruby-20.0.0 truffleruby-20.1.0 truffleruby-20.2.0 truffleruby-20.3.0 truffleruby-21.0.0 truffleruby-21.1.0 truffleruby-21.2.0 truffleruby-21.2.0.1 truffleruby-21.3.0 truffleruby-22.0.0.2 truffleruby-22.1.0 truffleruby-22.2.0 truffleruby-22.3.0 truffleruby-22.3.1 truffleruby-23.0.0-preview1 truffleruby-23.0.0 truffleruby-23.1.0 truffleruby-23.1.1 truffleruby-23.1.2 truffleruby-24.0.0 truffleruby-24.0.1 truffleruby-24.0.2 +truffleruby-24.1.0 diff --git a/config/md5 b/config/md5 index 056c67f..e175fb9 100644 --- a/config/md5 +++ b/config/md5 @@ -1526,515 +1526,519 @@ rubinius-2.2.8.tar.bz2=c4db1ffb8dbdf864240cabe8b7758b49 rubinius-2.2.9.tar.bz2=0bf87ba617fa989e47d20942410028af rubinius-2.2.10.tar.bz2=8680da7eb921e6f595a1d716915ca7e0 rubinius-2.3.0.tar.bz2=e003a30af6689c8198116b3405d09d8e rubinius-2.4.0.tar.bz2=62391a51f49820daa51463066c3ce007 rubinius-2.4.1.tar.bz2=7758721b6e848387c3943ddb9ebd9479 rubinius-2.5.0.tar.bz2=178baa1ad172df0801765ea93bc36d87 rubinius-2.5.1.tar.bz2=77e1b87dc357691ad44b561a5f45c188 rubinius-2.5.2.tar.bz2=e5973d6e0a16f0390dc2a7478db83ff5 rubinius-2.5.3.tar.bz2=b19709eb3fa9e05b3fa6a357b33e3b5b rubinius-2.5.4.tar.bz2=64587916e5d445ed9bc630017a04498e rubinius-2.5.5.tar.bz2=ef671bbab50cbe2f70f953c491311261 rubinius-2.5.6.tar.bz2=597e4b049f49966c646faf699856c1b9 rubinius-2.5.7.tar.bz2=9a7f404019bce9fc34a7af7feb7cbb74 rubinius-2.5.8.tar.bz2=a24520892cada1f660e719a25abf63e3 ruby-1.8.5-p115.tar.bz2=03955e3c367b9beb3efe144c9f00d689 ruby-1.8.5-p115.tar.gz=20ca6cc87eb077296806412feaac0356 ruby-1.8.5-p231.tar.bz2=327f5aa6573787432222e96195cffd1e ruby-1.8.5-p231.tar.gz=e900cf225d55414bffe878f00a85807c ruby-1.8.6-p286.tar.bz2=e6b6bf8f34370e433936adb7a7065e63 ruby-1.8.6-p286.tar.gz=797ea136fe43e4286c9362ee4516674e ruby-1.8.6-p287.tar.bz2=80b5f3db12531d36e6c81fac6d05dda9 ruby-1.8.6-p287.tar.gz=6ff3420094711266c3201a0c7c2faa38 ruby-1.8.6-p369.tar.bz2=c3c1f3dd0dfbd2e17a04e59c2f12cfc8 ruby-1.8.6-p369.tar.gz=8c140ae28b4c3947b92dfad69109d90b ruby-1.8.6-p383.tar.bz2=a48703cd982b9f0e3002700a50b0e88e ruby-1.8.6-p383.tar.gz=4f49544d4a4d0d34e9d86c41e853db2e ruby-1.8.6-p398.tar.bz2=fbd43dc44ee26be4d37e6bebbed6f8bd ruby-1.8.6-p398.tar.gz=736db5f56c2d9b0136e563d049249fa8 ruby-1.8.6-p399.tar.bz2=f77c307cb72fb8808b0e85af5d05cefc ruby-1.8.6-p399.tar.gz=c3d16cdd3c1ee8f3b7d1c399d4884e33 ruby-1.8.6-p420.tar.bz2=1c7a978e9ffd4f56dc2ad74bbd2c34f3 ruby-1.8.6-p420.tar.gz=ca1eee44f842e93b5098bc5a2bb9a40b ruby-1.8.7-p160.tar.bz2=f8ddb886b8a81cf005f53e9a9541091d ruby-1.8.7-p160.tar.gz=945398f97e2de6dd8ab6df68d10bb1a1 ruby-1.8.7-p174.tar.bz2=88c45aaf627b4404e5e4273cb03ba2ee ruby-1.8.7-p174.tar.gz=18dcdfef761a745ac7da45b61776afa5 ruby-1.8.7-p248.tar.bz2=37e19d46b7d4b845f57d3389084b94a6 ruby-1.8.7-p248.tar.gz=60a65374689ac8b90be54ca9c61c48e3 ruby-1.8.7-p249.tar.bz2=37200cc956a16996bbfd25bb4068f242 ruby-1.8.7-p249.tar.gz=d7db7763cffad279952eb7e9bbfc221c ruby-1.8.7-p299.tar.bz2=244439a87d75ab24170a9c2b451ce351 ruby-1.8.7-p299.tar.gz=43533980ee0ea57381040d4135cf9677 ruby-1.8.7-p302.tar.bz2=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p302.tar.gz=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p330.tar.bz2=2689719fb42c8cf0aa336f8c8933f413 ruby-1.8.7-p330.tar.gz=50a49edb787211598d08e756e733e42e ruby-1.8.7-p334.tar.bz2=2f14f604bf981bb938ab5fc8b09eb1a6 ruby-1.8.7-p334.tar.gz=aacb6ee5dfe2367682bba56af7f415b8 ruby-1.8.7-p352.tar.bz2=0c61ea41d1b1183b219b9afe97f18f52 ruby-1.8.7-p352.tar.gz=0c33f663a10a540ea65677bb755e57a7 ruby-1.8.7-p357.tar.bz2=3abd9e2a29f756a0d30c7bfca578cdeb ruby-1.8.7-p357.tar.gz=b2b8248ff5097cfd629f5b9768d1df82 ruby-1.8.7-p358.tar.bz2=de35f00997f4ccee3e22dff0f2d01b8a ruby-1.8.7-p370.tar.bz2=1e4c3194537dd8ff92e756993e55a29d ruby-1.8.7-p371.tar.bz2=c27526b298659a186bdb5107fcec2341 ruby-1.8.7-p371.tar.gz=653f07bb45f03d0bf3910491288764df ruby-1.8.7-p374.tar.bz2=83c92e2b57ea08f31187060098b2200b ruby-1.8.7-p374.tar.gz=b72a0bc5b824398537762e5272bbb8dc ruby-1.9.0.tar.bz2=17eb66ac3721340d21db352d8f5dec76 ruby-1.9.1-p129.tar.bz2=6fa62b20f72da471195830dec4eb2013 ruby-1.9.1-p129.tar.gz=c71f413514ee6341c627be2957023a5c ruby-1.9.1-p243.tar.bz2=66d4f8403d13623051091347764881a0 ruby-1.9.1-p243.tar.gz=515bfd965814e718c0943abf3dde5494 ruby-1.9.1-p376.tar.bz2=e019ae9c643c5efe91be49e29781fb94 ruby-1.9.1-p376.tar.gz=ebb20550a11e7f1a2fbd6fdec2a3e0a3 ruby-1.9.1-p378.tar.bz2=5922459622a23612eb9b68a3586cb5f8 ruby-1.9.1-p378.tar.gz=9fc5941bda150ac0a33b299e1e53654c ruby-1.9.1-p429.tar.bz2=09df32ae51b6337f7a2e3b1909b26213 ruby-1.9.1-p429.tar.gz=0f6d7630f26042e00bc59875755cf879 ruby-1.9.1-p431.tar.bz2=03179138ae95dbfae872ef49e9cc6da7 ruby-1.9.1-p431.tar.gz=23f28cffc007ed5ac72c8e9bec6837ce ruby-1.9.2-p0.tar.bz2=d8a02cadf57d2571cd4250e248ea7e4b ruby-1.9.2-p0.tar.gz=755aba44607c580fddc25e7c89260460 ruby-1.9.2-p136.tar.bz2=52958d35d1b437f5d9d225690de94c13 ruby-1.9.2-p136.tar.gz=6e17b200b907244478582b7d06cd512e ruby-1.9.2-p180.tar.bz2=68510eeb7511c403b91fe5476f250538 ruby-1.9.2-p180.tar.gz=0d6953820c9918820dd916e79f4bfde8 ruby-1.9.2-p290.tar.bz2=096758c3e853b839dc980b183227b182 ruby-1.9.2-p290.tar.gz=604da71839a6ae02b5b5b5e1b792d5eb ruby-1.9.2-p318.tar.bz2=be431c6cbfa27e3836a06c6315717747 ruby-1.9.2-p318.tar.gz=cc7bf1025128e1985882ae243f348802 ruby-1.9.2-p320.tar.bz2=b226dfe95d92750ee7163e899b33af00 ruby-1.9.2-p320.tar.gz=5ef5d9c07af207710bd9c2ad1cef4b42 ruby-1.9.2-p330.tar.bz2=8ba4aaf707023e76f80fc8f455c99858 ruby-1.9.2-p330.tar.gz=4b9330730491f96b402adc4a561e859a ruby-1.9.3-p0.tar.bz2=65401fb3194cdccd6c1175ab29b8fdb8 ruby-1.9.3-p0.tar.gz=8e2fef56185cfbaf29d0c8329fc77c05 ruby-1.9.3-p125.tar.bz2=702529a7f8417ed79f628b77d8061aa5 ruby-1.9.3-p125.tar.gz=e3ea86b9d3fc2d3ec867f66969ae3b92 ruby-1.9.3-p194.tar.bz2=2278eff4cfed3cbc0653bc73085caa34 ruby-1.9.3-p194.tar.gz=bc0c715c69da4d1d8bd57069c19f6c0e ruby-1.9.3-p286.tar.bz2=e76848a86606a4fd5dcf14fc4b4e755e ruby-1.9.3-p327.tar.bz2=7d602aba93f31ceef32800999855fbca ruby-1.9.3-p327.tar.gz=96118e856b502b5d7b3a4398e6c6e98c ruby-1.9.3-p362.tar.bz2=13c26ea368d88a560f07cc8c5eb4fa05 ruby-1.9.3-p374.tar.bz2=944e73eba9ee9e1f2647ff32ec0b14b2 ruby-1.9.3-p385.tar.bz2=5ec9aff670f4912b0f6f0e11e855ef6c ruby-1.9.3-p392.tar.bz2=a810d64e2255179d2f334eb61fb8519c ruby-1.9.3-p392.tar.gz=f689a7b61379f83cbbed3c7077d83859 ruby-1.9.3-p429.tar.bz2=c2b2de5ef15ea9b1aaa3152f9112af1b ruby-1.9.3-p429.tar.gz=993c72f7f805a9eb453f90b0b7fe0d2b ruby-1.9.3-p448.tar.bz2=aa710d386e5903f78f0231868255e6af ruby-1.9.3-p448.tar.gz=a893cff26bcf351b8975ebf2a63b1023 ruby-1.9.3-p484.tar.bz2=03f5b08804927ceabe5122cb90f5d0a9 ruby-1.9.3-p484.tar.gz=8ac0dee72fe12d75c8b2d0ef5d0c2968 ruby-1.9.3-p545.tar.bz2=4743c1dc48491070bae8fc8b423bc1a7 ruby-1.9.3-p545.tar.gz=8e8f6e4d7d0bb54e0edf8d9c4120f40c ruby-1.9.3-p547.tar.bz2=5363d399be7f827c77bf8ae5d1a69b38 ruby-1.9.3-p547.tar.gz=7531f9b1b35b16f3eb3d7bea786babfd ruby-1.9.3-p550.tar.bz2=c2169c8b14ccefd036081aba5ffa96da ruby-1.9.3-p551.tar.bz2=0d8b272b05c3449dc848bb7570f65bfe ruby-1.9.3-preview1.tar.bz2=7d93dc773c5824f05c6e6630d8c4bf9b ruby-1.9.3-preview1.tar.gz=0f0220be4cc7c51a82c1bd8f6a0969f3 ruby-1.9.3-rc1.tar.bz2=26f0dc51ad981e12c58b48380112fa4d ruby-1.9.3-rc1.tar.gz=46a2a481536ca0ca0b80ad2b091df68e ruby-2.0.0-p0.tar.bz2=895c1c581f8d28e8b3bb02472b2ccf6a ruby-2.0.0-p195.tar.bz2=2f54faea6ee1ca500632ec3c0cb59cb6 ruby-2.0.0-p247.tar.bz2=60913f3eec0c4071f44df42600be2604 ruby-2.0.0-p353.tar.bz2=20eb8f067d20f6b76b7e16cce2a85a55 ruby-2.0.0-p451.tar.bz2=908e4d1dbfe7362b15892f16af05adf8 ruby-2.0.0-p481.tar.bz2=ea406a8d415a1a5d8365596d4288f3da ruby-2.0.0-p576.tar.bz2=eccd42d43620544a085c5e3834572f37 ruby-2.0.0-p594.tar.bz2=58469c0daf5f3a892a70cc674ea59c7f ruby-2.0.0-p598.tar.bz2=a3f3908103a7d209d1d1cf4712e3953c ruby-2.0.0-p643.tar.bz2=1390888cac6cd175e6f164eff378cdde ruby-2.0.0-p645.tar.bz2=d576240c97cfcc3ed9bdc457eb1e8280 ruby-2.0.0-p647.tar.bz2=27a3ea1a8b8bca1a6de43a7d08e88b69 ruby-2.0.0-p648.tar.bz2=3544031334f4665aa2eb1414babc9345 ruby-2.0.0-preview1.tar.bz2=47a0f662f0e258aa1c5e429c310861b3 ruby-2.0.0-preview2.tar.bz2=a645a783c3302cc094a9963a5e700a4d ruby-2.0.0-rc1.tar.bz2=24cebdda11e01ff4889ac983cd7dc02c ruby-2.0.0-rc2.tar.bz2=e92420131bd7994513e0bf09a3e2a19b ruby-2.1.0-preview1.tar.bz2=d32d1ea23988399afadbd21c5a7a37fc ruby-2.1.0-preview2.tar.bz2=9d566a9b2d2e7e35ad6125e2a14ce672 ruby-2.1.0-rc1.tar.bz2=cae095b90349b5b0f7026060cc3dd2c5 ruby-2.1.0.tar.bz2=1546eeb763ac7754365664be763a1e8f ruby-2.1.1.tar.bz2=53edc33b2f590ecdd9f6a344b9d92d0d ruby-2.1.1.tar.gz=e57fdbb8ed56e70c43f39c79da1654b2 ruby-2.1.2.tar.bz2=ed9b8565bdeccb401d628ec8d54a0774 ruby-2.1.2.tar.gz=a5b5c83565f8bd954ee522bd287d2ca1 ruby-2.1.3.tar.bz2=02b7da3bb06037c777ca52e1194efccb ruby-2.1.4.tar.bz2=f4136e781d261e3cc20748005e1740b7 ruby-2.1.5.tar.bz2=a7c3e5fec47eff23091b566e9e1dac1b ruby-2.1.6.tar.bz2=e1a8e6c6bfbb09bb7f8d6be8f508e4a1 ruby-2.1.7.tar.bz2=3a878e98311d543e5de3533b82ef4a5a ruby-2.1.8.tar.bz2=b17130b5f02a61640ae3b629af931610 ruby-2.1.9.tar.bz2=62bd1cbfcbc22e4d137462bce992f6d1 ruby-2.1.10.tar.bz2=5155c624807ff2418a9e9f15202954d0 ruby-2.2.0-preview1.tar.bz2=767b132eec3e70b14afe5884a7a767b1 ruby-2.2.0-preview2.tar.bz2=d7abace25a8ffe861cb2807bef1c58a6 ruby-2.2.0-rc1.tar.bz2=7144732d30dd4547c0a59862b3345d54 ruby-2.2.0.tar.bz2=d03cd4690fec1fff81d096d1c1255fde ruby-2.2.1.tar.bz2=06973777736d8e6bdad8dcaa469a9da3 ruby-2.2.2.tar.bz2=af6eb4fa7247f1f7b2e19c8e6f3e3145 ruby-2.2.3.tar.bz2=f49a734729a71774d4a94a9a603114b2 ruby-2.2.4.tar.bz2=c3d65f6d2ebe90dda81a37885ea244f5 ruby-2.2.5.tar.bz2=0c7edd1ff3650c3b74da2efaf641bf34 ruby-2.2.6.tar.bz2=3d13cf447142b8a11cd9beb7bc63fee0 ruby-2.2.7.tar.bz2=ca7224d80c08b015bc3b8c226d0914c3 ruby-2.2.8.tar.bz2=054d2e2904d5175662293e29c3bdb927 ruby-2.2.9.tar.bz2=575adf8ede6b1ca7236a5341e73536b0 ruby-2.2.10.tar.bz2=bef1909a4c885157870ef69548cdad3a ruby-2.3.0-preview1.tar.bz2=776000d74ec6dd34bf355ff6921c8311 ruby-2.3.0-preview2.tar.bz2=3ad442ccb337e77e4acaa4113f25b76a ruby-2.3.0.tar.bz2=f0d9f9bbdc87372ca98988a571875819 ruby-2.3.1.tar.bz2=c194281f63d7fcd816747fe78474be5e ruby-2.3.2.tar.bz2=9d00f3772f1c8fa5eecdfea089e3032f ruby-2.3.3.tar.bz2=04b9c461a2bc1eec0535ad1947cad4fb ruby-2.3.4.tar.bz2=99961e97566aee6d63635e2da4cf73ac ruby-2.3.5.tar.bz2=e1efc3d5a948ca1f552005efe5925513 ruby-2.3.6.tar.bz2=b2443b11ee80319a119f7ec0c9b8d79a ruby-2.3.7.tar.bz2=5eb580d5cd13ffb5aacfb96580c0043d ruby-2.3.8.tar.bz2=78045332e298dfd859ceef9fe946950f ruby-2.4.0-preview1.tar.bz2=64b8983b5f53d053906e394f734aa296 ruby-2.4.0-preview2.tar.bz2=1074e8dea5baa89af7f7c2d1d2b9ebaa ruby-2.4.0-preview3.tar.bz2=9f767e6bc61830735ea7dc9cd5a63653 ruby-2.4.0-rc1.tar.bz2=0f8b665acf4e883334adc121a42a206f ruby-2.4.0.tar.bz2=98f29161860fe1b6c65396717847a358 ruby-2.4.1.tar.bz2=07b2ae5d2f46321c95b37066c8415900 ruby-2.4.2.tar.bz2=5ff3ad6ec816bcce8806a55090936ab6 ruby-2.4.3.tar.bz2=ac8215ba561cc7c79b4f61daee11b706 ruby-2.4.4.tar.bz2=d994274eaa95b82aa5d31ec2188253c6 ruby-2.4.5.tar.bz2=45d70a8bb9397d818795ffe992163d27 ruby-2.4.6.tar.bz2=4abd13c50c1fc273a0a81a0ae74ed39f ruby-2.4.7.tar.bz2=1ce166ced489908993d78e8bb68325e0 ruby-2.4.8.tar.bz2=396d35f1a2d1deaf303f59cb5245d4ae ruby-2.4.9.tar.bz2=0b3447370651df55a2014a170c0cb1d5 ruby-2.4.10.tar.bz2=b10a7d2fcaf218c98edbaf57efc36e58 ruby-2.5.0-preview1.tar.bz2=889454189f41e271ae5ba15382911b6a ruby-2.5.0-rc1.tar.bz2=f5acdeacf56aced3c00ae6a8fa816bbc ruby-2.5.0.tar.bz2=63a6cd49546783d62de25a0ffc4aecc3 ruby-2.5.1.tar.bz2=5aaaf2fb4893214fa316516f3ac43519 ruby-2.5.2.tar.bz2=e90ab127e2ac3ee1d8840835e8ba1f13 ruby-2.5.3.tar.bz2=49aea0bf56d25351ccaf938c642400df ruby-2.5.4.tar.bz2=0c923215470f1debe593fe21e66fd37b ruby-2.5.5.tar.bz2=8f41b5cb683d48b5cb6cdfe03d135d6b ruby-2.5.6.tar.bz2=f2a74416ab3016434896194120796f04 ruby-2.5.7.tar.bz2=65597b69aa54bdca8745502c10349f96 ruby-2.5.8.tar.bz2=9ec96e7a590ef801ede294b6184c9c0f ruby-2.5.9.tar.bz2=9e905a545a729af1f1620ddfc2976fe5 ruby-2.6.0-preview1.tar.bz2=1ce507e27fa02aeb36100dabcf1da94f ruby-2.6.0-preview2.tar.bz2=e45011116334d21857b9e1712a01e6b3 ruby-2.6.0-preview3.tar.bz2=b326ceee3d3756f892515009e148f4b2 ruby-2.6.0-rc1.tar.bz2=40457a72e36cbecd0c51d9f895347302 ruby-2.6.0-rc2.tar.bz2=9665e6d886a9da2d4076fa75836798f1 ruby-2.6.0.tar.bz2=d3372daec93f83e7a91c669821053014 ruby-2.6.1.tar.bz2=73d19ac478db1a178be5ae2f2fb8c9ec ruby-2.6.2.tar.bz2=658fcc0da15578c2420ded807b11cce1 ruby-2.6.3.tar.bz2=52e609b756735115814b9c8463f185e2 ruby-2.6.4.tar.bz2=d9b35753c65f54c745ab6b0094511839 ruby-2.6.5.tar.bz2=d1b89c88effb71d75cd7ef77c35e1985 ruby-2.6.6.tar.bz2=abc030870bfbe18ae9c356abebd95cb6 ruby-2.6.7.tar.bz2=46f24740181f91247c72f19d52334379 ruby-2.6.8.tar.bz2=c53761123d17e929cfe248f50429bcab ruby-2.6.9.tar.bz2=ddc24495adaf215c8ee40630b4a55041 ruby-2.6.10.tar.bz2=6ad76db639ab308e3b6c19408729a0cf ruby-2.7.0-preview1.tar.bz2=82fab0496947acd847a6b2eb758acfc6 ruby-2.7.0-preview2.tar.bz2=966a544ab59114591898403c23d91397 ruby-2.7.0-preview3.tar.bz2=2fa6c213774744b287e7e0212b43f626 ruby-2.7.0-rc1.tar.bz2=48a8837cb352f5b95e97a1ae0d62a9d0 ruby-2.7.0-rc2.tar.bz2=cca58fdb8c5e8be8273842d54199c42d ruby-2.7.0.tar.bz2=89347748b7414f5bc7aeb8f4a87ebef4 ruby-2.7.1.tar.bz2=4bb2b2b2f0c6953859e30af140cf249a ruby-2.7.2.tar.bz2=a8acc9c24708fe29dfc287823ecaae65 ruby-2.7.3.tar.bz2=604acb258b1d8228f55799e846cfe6d3 ruby-2.7.4.tar.bz2=52705d799ed851dd3bfd5634265cde46 ruby-2.7.5.tar.bz2=d97d4377eee18b0e790510c3afed648c ruby-2.7.6.tar.bz2=1b6efacb9f129d0253d8a9faa9c21f99 ruby-2.7.7.tar.bz2=63c55e75150251d3ba092b662138e4af ruby-2.7.8.tar.bz2=f44dedf51fdb7441a7dba592d6a4a14d ruby-3.0.0-preview1.tar.gz=991df063b86a8f8412ca07f548579f39 ruby-3.0.0-preview2.tar.gz=ce14b24e923f2e269fea6441791a7248 ruby-3.0.0-rc1.tar.gz=848a8628c8abde270b66e2474049a4a3 ruby-3.0.0.tar.gz=d6af36269a1b0bc278236d371543ad97 ruby-3.0.1.tar.gz=8d1c460a9a9d48a353de3eb0f338bbfd ruby-3.0.2.tar.gz=b973af486291a1e17ad50d88472bfa86 ruby-3.0.3.tar.gz=9ecae293da9547c1438a970f04f64655 ruby-3.0.4.tar.gz=ec9de9a15acc4f205b08816d94267415 ruby-3.0.5.tar.gz=cdff2395625dc1d632fc5400c8fec103 ruby-3.0.6.tar.gz=6b5a7b14505697e6fc2b40b345679f40 ruby-3.0.7.tar.gz=147a3467facc704b5d479e809c131603 ruby-3.1.0-preview1.tar.gz=d131b9bca700ee87ea276f8233ea4c0b ruby-3.1.0.tar.gz=1ca89d713f2c18a20104befed51b3b9a ruby-3.1.1.tar.gz=702778a0ef8b7a01ef7530a541002e19 ruby-3.1.2.tar.gz=9daf064899cccc32fd564117c7a7e0dd ruby-3.1.3.tar.gz=cce38a2b2c589d59f440f67c7d8cc697 ruby-3.1.4.tar.gz=3e601ae6db76a487219a1084e5cb4c9c ruby-3.1.5.tar.gz=ce1e92ddb1230fa2d4f4367882542555 ruby-3.2.0-preview1.tar.gz=a83c91d53e130fe232e4c27ecc8738da ruby-3.2.0-preview2.tar.gz=56e7801b37612b82285c9a09cfeb28ce ruby-3.2.0-preview3.tar.gz=0ed16faae50403b4e2ba2e85ec2314a1 ruby-3.2.0-rc1.tar.gz=4657d7013702adce21ca21dfe71ea4a0 ruby-3.2.0.tar.gz=76ca7e7d71898ab1e85155d69403754e ruby-3.2.1.tar.gz=055101c924538467c63fcbf42abddc75 ruby-3.2.2.tar.gz=eb6f18605e1e1be5dfb5b45f31bf6a93 ruby-3.2.3.tar.gz=e0ba90554f7ea41c587ffa7fcfd064ca ruby-3.2.4.tar.gz=c48283a23c72d7aae19b7f510b89444a ruby-3.2.5.tar.gz=3bd6f2b26918c8637abf56c2f208833e ruby-3.3.0-preview1.tar.gz=0833f555b1b8d5423953600fb4146639 ruby-3.3.0-preview2.tar.gz=4f82f4c9e512ec0a53baa1be8d35ebf7 ruby-3.3.0-preview3.tar.gz=a32ede198a9da50d4afc4421a4a993ad ruby-3.3.0.tar.gz=f57422a0f995cd5a93c726f6c42c310a ruby-3.3.1.tar.gz=368e331a35145ace4948390ed76cf1df ruby-3.3.2.tar.gz=9a7efebc6a0e4810c716ec6d401dc372 ruby-3.3.3.tar.gz=beb9773cc4d9d8da29463ab175e4db28 ruby-3.3.4.tar.gz=f2e16c1a56e07e185214e85c62657941 ruby-3.3.5.tar.gz=ccad73b02d942d1e6b4c27873d4c08e4 ruby-3.4.0-preview1.tar.gz=93b9b1040a2dd7be7514a7870aa7da03 ruby-enterprise-1.8.6-20080507.tar.gz=17e3c52e73e42809f57ad0000a6cb4ab ruby-enterprise-1.8.6-20080621.tar.gz=626fc3811eee2dc92ac27ea63d37a8b2 ruby-enterprise-1.8.6-20080623.tar.gz=0bf8a3a93c6b37bb1260cc09b05e81fd ruby-enterprise-1.8.6-20080624.tar.gz=de58b97128aa65209f291c66eab7c4a7 ruby-enterprise-1.8.6-20080709.tar.gz=f0ded08cec64959fa388ec6a237b9c47 ruby-enterprise-1.8.6-20080810.tar.gz=bfdcf06f437af825cd9f2d321f9d1896 ruby-enterprise-1.8.6-20081205.tar.gz=50206bec9be2e08a862e5ec2e70fa693 ruby-enterprise-1.8.6-20081215.tar.gz=aab57b7d5061c1980bec5dbe311ec9b2 ruby-enterprise-1.8.6-20090113.tar.gz=e8d796a5bae0ec1029a88ba95c5d901d ruby-enterprise-1.8.6-20090201.tar.gz=a965e6789b553efaed72191825b13713 ruby-enterprise-1.8.6-20090421.tar.gz=c777b361aadccda7988be16ede7ab15f ruby-enterprise-1.8.6-20090520.tar.gz=156572a8296bd0440970a6bb95018a13 ruby-enterprise-1.8.6-20090610.tar.gz=0bf66ee626918464a6eccdd83c99d63a ruby-enterprise-1.8.7-2009.10.tar.gz=3727eef7b6b1b2f31db7d091328d966e ruby-enterprise-1.8.7-2010.01.tar.gz=587aaea02c86ddbb87394a340a25e554 ruby-enterprise-1.8.7-2010.02.tar.gz=4df7b09c01adfd711b0ab76837611542 ruby-enterprise-1.8.7-2011.01.tar.gz=4640634347cd8e5469cb718853e2112e ruby-enterprise-1.8.7-2011.02.tar.gz=8c5faa11c1ddaed3f44b7294711980cc ruby-enterprise-1.8.7-2011.03.tar.gz=038604ce25349e54363c5df9cd535ec8 ruby-enterprise-1.8.7-2011.12.tar.gz=1e5f3059d52a67ab5d91d472b756de08 ruby-enterprise-1.8.7-2012.02.tar.gz=8d086d2fe68a4c57ba76228e97fb3116 ruby-enterprise-1.8.7-20090928.tar.gz=ae00018ce89d95419dfde370fcd485ac rubygems-0.4.0.tgz=86a64616548a793e1a5f825f0dd385b9 rubygems-0.5.0.tgz=80d151edd94a06bcd2452a7e272b4d96 rubygems-0.6.0.tgz=5df803f5a04654833690dd32283de741 rubygems-0.6.1.tgz=c4a0faa9f876ad805ae80d1396a29d97 rubygems-0.7.0.tgz=ede9b55343219e8b3491793aa12c46f3 rubygems-0.8.0.tgz=9ef6e3c34dcb54e295c8e57321ddc079 rubygems-0.8.1.tgz=6276d268b420c0d61796cdbf6d28dae4 rubygems-0.8.3.tgz=6e6da80f61d6e77d0ad9e531767f6fd5 rubygems-0.8.4.tgz=a2ad2d03dae8a98002c2a7cd6c3ed352 rubygems-0.8.5.tgz=b917c084e1e6e99d8e102af8dd687ddb rubygems-0.8.6.tgz=9de98d2f62e3f91521b0207a4dcdeb5b rubygems-0.8.7.tgz=7fc04b9f9acc0c18cbbe6222be8d0bd3 rubygems-0.8.8.tgz=a8535e9c35a4c215d6ef9268d4bc69ed rubygems-0.8.10.tgz=d26592e280c0fb24c51f2837c3f48e67 rubygems-0.8.11.tgz=aa363b428c4c1fc2e076a4ff77b957d7 rubygems-0.9.0.tgz=5d496e1f415b8b4033ab867f01d1161f rubygems-0.9.1.tgz=a62314cdb174ccc88a27b8924fa79e4a rubygems-0.9.2.tgz=cc525053dd465ab6e33af382166fa808 rubygems-0.9.3.tgz=600940a22ecd79e28e0fd37ad1f1d871 rubygems-0.9.4.tgz=b5680acaa019c80ea44fe87cc2e227da rubygems-0.9.5.tgz=91f7036a724e34cc66dd8d09348733d9 rubygems-1.0.0.tgz=b0b74eac0cbfc5a13f895ab6f803edc1 rubygems-1.0.1.tgz=0d5851084955c327ee1dc9cbd631aa5f rubygems-1.1.0.tgz=85f994904c5b4045f0a859b29d0be717 rubygems-1.1.1.tgz=1a77c5b6b293a3ccd5261dc120641ccc rubygems-1.2.0.tgz=b77a4234360735174d1692e6fc598402 rubygems-1.3.0.tgz=63d3dfc038710eaf532b6a133225115a rubygems-1.3.1.tgz=a04ee6f6897077c5b75f5fd1e134c5a9 rubygems-1.3.2.tgz=6204d0a4c526a1d8fdbce746647b179a rubygems-1.3.3.tgz=0e9697db44d812712350baf28016b4a7 rubygems-1.3.4.tgz=b17b398503253bf36a101c58f02a226f rubygems-1.3.5.tgz=6e317335898e73beab15623cdd5f8cff rubygems-1.3.6.tgz=789ca8e9ad1d4d3fe5f0534fcc038a0d rubygems-1.3.7.tgz=e85cfadd025ff6ab689375adbf344bbe rubygems-1.4.1.tgz=e915dbf79e22249d10c0fcf503a5adda rubygems-1.4.2.tgz=b5badb7c5adda38d9866fa21ae46bbcc rubygems-1.5.0.tgz=49bef7186bf3c0ca6ee7adf4b585bccc rubygems-1.5.1.tgz=47577a5e33c9c6f1e3a56aff7f51d0ff rubygems-1.5.2.tgz=3951f94c09c16c774c8bcebc94fa5374 rubygems-1.5.3.tgz=38bbbdc17aef923fb41f054cf8421116 rubygems-1.6.0.tgz=abd27b5a9002100ff74ddb398a1c9689 rubygems-1.6.1.tgz=a77c64896aaa10d64aaf34f5c1488173 rubygems-1.6.2.tgz=0c95a9869914ba1a45bf71d3b8048420 rubygems-1.8.6.tgz=8e95d0c5b377a003f3d54a49461e81d9 rubygems-1.8.9.tgz=fc399445d693c29778779e5828ee5e90 rubygems-1.8.10.tgz=5b08ee31740c9b0bd36f6c04d537e7d4 rubygems-1.8.23.1.tgz=5259ce3eb7988950fa3aff9051a5de91 rubygems-1.8.23.2.tgz=fb377c7fd387df14a33e529153adc316 rubygems-1.8.23.tgz=178b0ebae78dbb46963c51ad29bb6bd9 rubygems-1.8.24.tgz=3a555b9d579f6a1a1e110628f5110c6b rubygems-1.8.25.tgz=1376a258d43c53750a8df30e67853e10 rubygems-1.8.26.tgz=0ea47f1efd010f4c82b8a51a934f48dc rubygems-1.8.27.tgz=6686ad26735c21d0d6e58b6192c7da5d rubygems-1.8.28.tgz=2df78039f391fb1f71c02c2fc5671c94 rubygems-1.8.29.tgz=a57fec0af33e2e2e1dbb3a68f6cc7269 rubygems-2.0.0.tgz=89ce467eb2d55657e9965a46559acbcf rubygems-2.0.1.tgz=2652ab6f001a873b8933e2ca09505974 rubygems-2.0.2.tgz=3471f140a70bcd32a7495b545cfce790 rubygems-2.0.3.tgz=854691f145cea98b4100e5b0831b73ed rubygems-2.0.4.tgz=3ec32dbe783bab37a87f50758f8efe13 rubygems-2.0.5.tgz=641d82672937d40d664dbc18f49cdcec rubygems-2.0.6.tgz=0633f50db16112bf6c3cf9bfb9ceb9bd rubygems-2.0.7.tgz=9046700f1222712fedfb836fafa08c50 rubygems-2.0.8.tgz=5432214a740c0d13482e43a5328a6518 rubygems-2.0.9.tgz=bc55898247297ffa190223276b1b1bd7 rubygems-2.0.10.tgz=5457ba403cd9a5f4f5fb2ef4a2a1c03e rubygems-2.0.11.tgz=0f28e3fde3348c0f23ceecba73a6cbef rubygems-2.0.12.tgz=99c416517e2de1146d2c6fbb4c4c1441 rubygems-2.0.13.tgz=3970e66a670ddb6d1aade9c7b18033d4 rubygems-2.0.14.tgz=4a7aa0b144e465230ab5d7b59dfd7e8f rubygems-2.1.0.tgz=9a9d242baef5e58fbfe79ec5206cd316 rubygems-2.1.1.tgz=b34d6f4028b69a84123a6b7cb0ac8028 rubygems-2.1.2.tgz=b5c5c4430be60f911014216d41886ef3 rubygems-2.1.3.tgz=ac7bbdfecd49f9304756aa5ebeb51400 rubygems-2.1.4.tgz=aa502b1ea90fbdd14ca9b32634795c2b rubygems-2.1.5.tgz=60564b762d4e186815997653b1c876ab rubygems-2.1.6.tgz=e11237a8f87dbd8c085770551d64a8f8 rubygems-2.1.7.tgz=b721ed7d5fd57ed05f77eb21a3a592ee rubygems-2.1.8.tgz=cc4c84c0482840389a457740e8083ed9 rubygems-2.1.9.tgz=2636bf26c0a9ec889c7bd938887bd9a3 rubygems-2.1.10.tgz=6fa671d7d6605de73d16f529cf7bffb8 rubygems-2.1.11.tgz=b561b7aaa70d387e230688066e46e448 rubygems-2.2.0.rc.1.tgz=f7d80b612339169569f2675155c202f1 rubygems-2.2.0.tgz=3c16e50673adb99d1ce76d5231f764bd rubygems-2.4.8.tgz=dc77b51449dffe5b31776bff826bf559 rubygems-2.6.10.tgz=ab5a0028d2a0653691b29d7463bd0892 rubygems-2.6.11.tgz=8d514b836fcf3ae2c20b4fe8d5cdc3c5 rubygems-2.6.12.tgz=7c454ef88b716c1a123f62b26bb9612b rubygems-2.6.13.tgz=e6f19b51614055d826e431549a12a80b rubygems-2.6.14.tgz=e0a6914ce03b91dfc6d448ebf292f145 rubygems-2.7.0.tgz=771c40015538c0f225c5249e4bc7d441 rubygems-2.7.1.tgz=65646f28f3c36ccaa7f991c17e15b8a9 rubygems-2.7.2.tgz=312a238ed98a61d2b3d165b790b6062b rubygems-2.7.3.tgz=fb3a1927a1842b75677a24f48dd63ddc rubygems-2.7.4.tgz=e9bbf5a4cc9a74293884b91f49603ea0 rubygems-2.7.5.tgz=516a4f219976003feb4b4f797cbc66b0 rubygems-2.7.6.tgz=366cea352c2b1243db726013c3d76fc4 rubygems-2.7.7.tgz=b6721f6ce4af08f68c6f513bbddfe484 rubygems-2.7.8.tgz=a3ed89a34e1ae8f9da0c620a8aa35f12 rubygems-2.7.9.tgz=173272ed55405caf7f858b6981fff526 rubygems-2.7.10.tgz=464754059d8ca01c1121a1233d866e8c rubygems-3.0.0.tgz=3908105894e531f7ad3aceb8b41dcbcd rubygems-3.0.1.tgz=1e8af9b87a67f15841ad2be7d5725a5f rubygems-3.0.2.tgz=d8db1b516ae1e35b8f6f56cb526f879a rubygems-3.0.3.tgz=b7a7dd5f85485334a6cb61b7dac20cff rubygems-3.0.4.tgz=7d0c49077a2d19f48d88567cfa3cf17a rubygems-3.0.5.tgz=4664467d621d719688e4778d147c306a rubygems-3.0.6.tgz=60d84e843b131fb87c8fd67e8fac6470 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=3e9afdf72f153e2f66259fc2b6fca594 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=c30459287aec83548cfcb17340fa73d5 truffleruby-1.0.0-rc3-linux-amd64.tar.gz=138f6814451ce634b0fae3aca5579248 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=94ed54ecb65bea2166a2159431b0362b truffleruby-1.0.0-rc5-linux-amd64.tar.gz=9e5428611e22b093d05afebbe0ccbc2b truffleruby-1.0.0-rc5-macos-amd64.tar.gz=b32a254fed71434c3431fb2effb35c5a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=7f394a8c7fe356b7bd36683c57f74ebd truffleruby-1.0.0-rc6-macos-amd64.tar.gz=f033329d03f1f846d25728c2af9d7524 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=184e98f2d6939f63db4b915943ff60c6 truffleruby-1.0.0-rc7-macos-amd64.tar.gz=d19213b33011f7a55e0f32d25e19184f truffleruby-1.0.0-rc8-linux-amd64.tar.gz=a394167c0331c6d8c1123e1f992e5411 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=dc1bf0fcfdd5837ae0ca56d6d6e5f7b0 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=f6ec25bd532bf0551d35327d1aa4caf9 truffleruby-1.0.0-rc9-macos-amd64.tar.gz=c80a345f9071521cf1961ab75ebc7dd1 truffleruby-1.0.0-rc10-linux-amd64.tar.gz=3a889726efcdf33feb7ef3df13fd5f39 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=bba618b4483b79eebf9f0e7af4078502 truffleruby-1.0.0-rc11-linux-amd64.tar.gz=a25e179ca0be96a1bc737a600729c195 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=bb8d8f5525e1ba86bb039e56291c6c7c truffleruby-1.0.0-rc12-linux-amd64.tar.gz=872774837057489250527bf863192115 truffleruby-1.0.0-rc12-macos-amd64.tar.gz=bb4a64e6c4882fd0c5e412bf9c57720b truffleruby-1.0.0-rc13-linux-amd64.tar.gz=0f36eed2eb36846785fdd4eae24adfa0 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=1bd3087a0f2df4c006b87c9488ada6d4 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=9eddd1aa98c9649e7c01bb10bf28c471 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c93643f1d00b370411310ee7a1dd5330 truffleruby-1.0.0-rc15-linux-amd64.tar.gz=bc7339a6218ea991f2c72ce8759cb6e3 truffleruby-1.0.0-rc15-macos-amd64.tar.gz=1671d08dd2f5026d58b326fd55c9b7de truffleruby-1.0.0-rc16-linux-amd64.tar.gz=5564d17f19b8ee0edb96ab5b1bfbda98 truffleruby-1.0.0-rc16-macos-amd64.tar.gz=61583b529b6a1337398b0966db952d24 truffleruby-19.0.0-linux-amd64.tar.gz=006220c7bde7d0b5c72481133624a83f truffleruby-19.0.0-macos-amd64.tar.gz=9ef7f5a311465d35e54ac6e00ec3d169 truffleruby-19.0.2-linux-amd64.tar.gz=2f7fe574e0695fb6001f4f5282aa2f79 truffleruby-19.0.2-macos-amd64.tar.gz=aa20f76b3eac1f4976a507364201d1ad truffleruby-19.1.0-linux-amd64.tar.gz=71368f8371069017d911528f052b0a55 truffleruby-19.1.0-macos-amd64.tar.gz=7f086adbc89fdfaed35273394ac3ac66 truffleruby-19.1.1-linux-amd64.tar.gz=c1ad4d17bb40e214b124222f3a7c6db6 truffleruby-19.1.1-macos-amd64.tar.gz=f4e76b0612319b4a82480cbd1fc90210 truffleruby-19.2.0-linux-amd64.tar.gz=458ed5fec1a849ef5b00e19b0e25d5e9 truffleruby-19.2.0-macos-amd64.tar.gz=dc324575ad20e3054980835c24ea7161 truffleruby-19.2.0.1-linux-amd64.tar.gz=ad7444145550d89931199159163077c1 truffleruby-19.2.0.1-macos-amd64.tar.gz=b5bcfb0aaded1e2d1763089ab6c9a14d truffleruby-19.2.1-linux-amd64.tar.gz=fc4879d2b0cc22c152a8bf893a72c346 truffleruby-19.2.1-macos-amd64.tar.gz=71448ff3f8f1da086f222751d3f853bc truffleruby-19.3.0-linux-amd64.tar.gz=dd44ac30b5a1ef3a7d61172cda9b30b6 truffleruby-19.3.0-macos-amd64.tar.gz=41daa52f0f308abb77a2b91c1b7e0f3d truffleruby-19.3.0.2-linux-amd64.tar.gz=2db2cb5c29523c9bdb6f59dfa0bd74ce truffleruby-19.3.0.2-macos-amd64.tar.gz=edf1603643938686dce57139aadf7d3c truffleruby-19.3.1-linux-amd64.tar.gz=a14c028351f7a3965bcb56e9b22364de truffleruby-19.3.1-macos-amd64.tar.gz=a8707d0af3eda694ec07a5387d3443fb truffleruby-20.0.0-linux-amd64.tar.gz=b30110ecbc50c4fce402fdf44c45dad5 truffleruby-20.0.0-macos-amd64.tar.gz=0671e5909cefb9a2c12c473fc0110821 truffleruby-20.1.0-linux-amd64.tar.gz=4592b5fc3636d82fc998ab6fe0a43584 truffleruby-20.1.0-macos-amd64.tar.gz=3c0be43db86817c7037d3ff5053d322d truffleruby-20.2.0-linux-amd64.tar.gz=e9859decb24829f9a189d88b3c2e9b79 truffleruby-20.2.0-macos-amd64.tar.gz=49e7ccf8f9e60d6c59b3b07b854466cf truffleruby-20.3.0-linux-amd64.tar.gz=93a20845f7d9d39100761424dfc0a734 truffleruby-20.3.0-macos-amd64.tar.gz=b178b7a94fac58400450417612fe3441 truffleruby-21.0.0-linux-amd64.tar.gz=c03304a505c8699e697acecf5030d95f truffleruby-21.0.0-macos-amd64.tar.gz=019796be37a58ef8e186a625f2ff5d07 truffleruby-21.1.0-linux-amd64.tar.gz=065bfcc48f6925410e0da21e16428b64 truffleruby-21.1.0-macos-amd64.tar.gz=325f6854c10d8a3a114c80da582c469f truffleruby-21.2.0-linux-amd64.tar.gz=0aec44721a040845347f18c1f72ceb75 truffleruby-21.2.0-macos-amd64.tar.gz=76d27715b20902df5779f7a0c00852b1 truffleruby-21.2.0.1-linux-amd64.tar.gz=f68e9b8a9f9cae5efc5ac45a7d9e760d truffleruby-21.2.0.1-macos-amd64.tar.gz=b021e50fc94cab590b49d27f2ea821b0 truffleruby-21.3.0-linux-amd64.tar.gz=359aca79cba4e08f9955d9c6543c2189 truffleruby-21.3.0-macos-amd64.tar.gz=d9e2e2c6fcd3ac16f0c37b0ccffb4f41 truffleruby-22.0.0.2-linux-amd64.tar.gz=324327026e9b2963a8e5fb4ee3f4e216 truffleruby-22.0.0.2-macos-amd64.tar.gz=7029d0e291d498a264d9b413729a3e17 truffleruby-22.1.0-linux-amd64.tar.gz=9329cf507ba8ac529e93156cacc1425d truffleruby-22.1.0-macos-amd64.tar.gz=353242978b46cafc34b05e2c81206096 truffleruby-22.2.0-linux-amd64.tar.gz=5d676377056ae94fe847be721c20405b truffleruby-22.2.0-linux-aarch64.tar.gz=b774f4b7d330842521f1e6e56cb41db5 truffleruby-22.2.0-macos-amd64.tar.gz=e45fdd9a05aec6220a76fb707b0a5ae8 truffleruby-22.2.0-macos-aarch64.tar.gz=ebcbfe056d90d06de4bd0a9d699bad8f truffleruby-22.3.0-linux-amd64.tar.gz=ada8bc5dc52aca8317eaeab04d91e877 truffleruby-22.3.0-linux-aarch64.tar.gz=11493301d5519aa73e8f0e140cefb581 truffleruby-22.3.0-macos-amd64.tar.gz=9e27c677637b69b0460fb0a4569a5cca truffleruby-22.3.0-macos-aarch64.tar.gz=eaa1c9020b521226f8bb48b8c7e5c596 truffleruby-22.3.1-linux-amd64.tar.gz=243d926f038fd2220c03dfbe40ef58c3 truffleruby-22.3.1-linux-aarch64.tar.gz=01487fe680863381489bf2a0a2ac162b truffleruby-22.3.1-macos-amd64.tar.gz=b3d5a777d94856e51034d81076e8ef72 truffleruby-22.3.1-macos-aarch64.tar.gz=320ce75730a5b9f16f111eb7ef5e4e09 truffleruby-23.0.0-preview1-linux-amd64.tar.gz=76c1cb23ee63ba4de93a0c23784bfca9 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=eec3fc74565f08e9468982692f7f9010 truffleruby-23.0.0-preview1-macos-amd64.tar.gz=50e38f3cd548dfe78f397f76ed577bf1 truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=b769bcf9b843d9b2980def1e2139284f truffleruby-23.0.0-linux-amd64.tar.gz=6e1a491406c5dbf42de10fcb3ed7dc1c truffleruby-23.0.0-linux-aarch64.tar.gz=5c3663f64bee707173b2684355a9a42e truffleruby-23.0.0-macos-amd64.tar.gz=515a9a8a0f39ba9399e869cd418ebff5 truffleruby-23.0.0-macos-aarch64.tar.gz=57e5fa52270e692b82c445107fe6b6a6 truffleruby-23.1.0-linux-amd64.tar.gz=f7511c19045e57e72f9b5415bc17c8e8 truffleruby-23.1.0-linux-aarch64.tar.gz=e8a20dd919a2ff77b7cc5457e853d15d truffleruby-23.1.0-macos-amd64.tar.gz=d3b6a3cbc0a230ebae6f3a462a32ddd3 truffleruby-23.1.0-macos-aarch64.tar.gz=ee74fc5d192c2fb8afd0458d2d429c02 truffleruby-23.1.1-linux-amd64.tar.gz=d7e1c040da170aaa36b5f5a1d106d237 truffleruby-23.1.1-linux-aarch64.tar.gz=cf508ba3787be20c03bac690f3bdbac5 truffleruby-23.1.1-macos-amd64.tar.gz=a662a8672871524808500dddef3808c1 truffleruby-23.1.1-macos-aarch64.tar.gz=de543312024993a533e3caa63b396127 truffleruby-23.1.2-linux-amd64.tar.gz=e3e5b01b291d7fea61be2be842c7e8dc truffleruby-23.1.2-linux-aarch64.tar.gz=8fe26f643fa81eec6de3bde7024c858a truffleruby-23.1.2-macos-amd64.tar.gz=83bc41bf699fa847df7e60412bee2823 truffleruby-23.1.2-macos-aarch64.tar.gz=7dbd2e182cfec0cf2d2e37784721903f truffleruby-24.0.0-linux-amd64.tar.gz=202f05706d28faca75d5e3cd0f9bef78 truffleruby-24.0.0-linux-aarch64.tar.gz=4faaf4edde4f6a516246b7c2f4ee80b3 truffleruby-24.0.0-macos-amd64.tar.gz=d07f27e0e29398c6de836b0049105c12 truffleruby-24.0.0-macos-aarch64.tar.gz=10cf176718968893468caba617c02141 truffleruby-24.0.1-linux-amd64.tar.gz=2914bfb81b136cd1fb5736c0a40068e3 truffleruby-24.0.1-linux-aarch64.tar.gz=429e6ada9a95ea23ebb95d01f90eb0f4 truffleruby-24.0.1-macos-amd64.tar.gz=e3aa5ab128f5d169d93f2d6df98c4e77 truffleruby-24.0.1-macos-aarch64.tar.gz=6f81a1afe1b89a40f00c9bd4216ec45d truffleruby-24.0.2-linux-amd64.tar.gz=1a826ea6323a25becce5940d8e6c4642 truffleruby-24.0.2-linux-aarch64.tar.gz=45429f35653bd8cbc328eafe81d15e8a truffleruby-24.0.2-macos-amd64.tar.gz=f68aeb26783d048ae5f78e1c13739747 truffleruby-24.0.2-macos-aarch64.tar.gz=df05f94696b4f4584a259001a3d4d1d0 +truffleruby-24.1.0-linux-amd64.tar.gz=14aa05250088f17491072e500c22c039 +truffleruby-24.1.0-linux-aarch64.tar.gz=3e26495f8aa7b810ec5794a69e93483a +truffleruby-24.1.0-macos-amd64.tar.gz=53b6251cdd359176f9e52fe05f05e949 +truffleruby-24.1.0-macos-aarch64.tar.gz=28d61b8a1a307cbdf988313c8a1f77f1 yaml-0.1.4.tar.gz=36c852831d02cf90508c29852361d01b zlib-1.2.3.tar.gz=debc62758716a169df9f62e6ab2bc634 zlib-1.2.5.tar.gz=c735eab2d659a96e5a594c9e8541ad63 diff --git a/config/sha512 b/config/sha512 index a1df864..e02206f 100644 --- a/config/sha512 +++ b/config/sha512 @@ -1229,512 +1229,516 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.4.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.5.tar.bz2=fabb151c29ad7ef7432efd4d51ea1e20180006601617ba896f8b1379555f4088d398e96f7bddd7c9815b266acf5ea94527ef4acfad2446950da6fabc3770f788 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.6.tar.bz2=2728c38987d41169b7110fce2b507b5d3e971d5b043b60c9a3b8d6d385ec2a40d24e464f6cf081844282d6b9fadd4abce670e79f02e4606bdd5aeacd1b57f773 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.7.tar.bz2=f98f4dacd9d8c6c9515ddc2597da8b868c66897577cc5a76819db742f3649881ef5a7f85a880f1e359772b1ab08750dda6fa74ee826938e06b93a9848699b929 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.8.tar.bz2=47fb4b41e60b1e536b3a54e18e9ee92aefee7eef92d49716b46884b2a3d73a02e88e4815df64baedebff80e9e17ac7b0af6e65b406a2c53a4f90421dbc948415 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.9.tar.bz2=c81ad5e16aa18beb7c34eeee68ffa96da243f99ff69cf00932ad5ebe427c1f80e3f7fee31b15ec0d96c1be5c2007dfa6e96c38114f61e958c6b7ecc40270db4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.10.tar.bz2=856210b3eb2bf338c5da2668e830b95d48feb82c1c4407371b18c772df12878703a9eec948a2778acd098bcc8eb402ba6d57b2b935766847f3e652c3dadaf6f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.0.tar.bz2=6ea5e6338319e5d6861d420b10f93b5e6634a9925380c61acfbb258b6609ada76bf2a6b474b53a30b0a81f0dd81cfdd1e610b68698df73f69091f479ad39bc63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.1.tar.bz2=8e8e4ef137b9394ee34b760dbeaf4d23953bec083e5775a423ef6c16b75faf8bdfe99df975ab6b6d762509536b017f3510a9a5e9ab63060208edd4d2d96371eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.2.tar.bz2=756c9ecbe3c9801a0a364143478903318c524f7aba026239a1fb42d7390f74110805543a9ac2a9f8bbbeaee48bc867fd15d400d8bd46576bf4fd417d6136a3b2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.3.tar.bz2=594ff95e33d0f7af7be448a781ac68f895f8344ebb1c9a03898813baa5963024aa84b11baa405fa584070e4195fbfda9b908f1fe171f75f19e5e1d7879bdaaf9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.4.tar.bz2=a9703c6edcfa2ddb87bb73c070d963fc4d59599919865be9b1d93989906698c6f3b9c4fd7f2d597e5d710276555de0b5865676b92aa3aba1f1f41be4052bedc1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.5.tar.bz2=dbd91cccc0a00a1ca7e901d56f9840e62e4f139ff4dbae530169f41897d06523c7e8977138ffc6212e1b60589f3091a4e2f6b6714c0fad22fa65e442b248f61e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.6.tar.bz2=ec967415b5bec95154cd9ff8338a602a6d005fa647afb1e1cff54a0fd4e9c0697b9e952c2dfd8e4b30068a697f5391b9cd165d5d33f3b146fe35f2a8fdf9823c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.7.tar.bz2=b8786ef31db7d950b1309646f81e6a99d56b76223bb8d2d20ae045f09917332a869b14cee1bf235675c7d8eebc6942b5ebd6cf0cbd290ea75d9f9be1475352f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.8.tar.bz2=4d949a715a04cd45f6817b1b26093f7bbf03ca630aaa015972e7d0ca72bae094add18664e1489ebf8ade27c160d2fbcebdb105701d719461af13c4d5fcf2cd22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.9.tar.bz2=ec6cd8bd90ee99aa6470d9d524d89531f96f992efab8a9d6a709a3959ef4c314828276e67b84ed97d415cb3e0c837458d13732dc940c93d4d069d9b881d7f92c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.10.tar.bz2=1f60cae30581e3467c7ec07391de5045f238b61a49661ef0cf76d72ef78d220b7ae70b86b1e72625cf37085b6507fb1dfccfbe5554195f0c6eefaa996e199c16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.0.tar.bz2=343f5dd6703b6b58d61fabefc8a50ce5d02d98c32c8b4e52b8deacc9824369a9f0dc8faff69e90ca7585a194a4d742791765b16c3f5e2417b0f54e0e6f6220b4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.1.tar.bz2=aaf7f9e30b3998b8586764f61d09e434c32aba7479aa79fb6afa71ab11c067384ef3a4b9215a1a3639da807f4f642b9efc62b37b55e989b7ed7d75cedc7cab40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.2.tar.bz2=b834ef95d52abc1f0c224193391bded9b4d2089c694378dd5aa45f8b2b1ea41b1c300445f766841cbb8cdb1114491ffe0095f518e1600746f5f583dd0cff9c1f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.3.tar.bz2=9df5ba9423e0a8af9d825e59f8c69889c70af0f6d67f96708a02d7d61260c83474e2f7b2f240af399911bdfc56850255b4f34554f7013d0417a13bb782403aa4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.4.tar.bz2=1d4b55a6a34249e82880fbacfc1d97a093600005deb982c6b42ccb14bbd7bf1db14e0f6d73bc25f1addd72378850f7edcd63738f2b3cbab569e34e89d563188d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.5.tar.bz2=29a76dbb28d5b63ee0ce64cc2e7d022118350a550d3693b8e38d559bbc4f42fdb6b63af4bcc4ebfffc5c0fbabbf2e18db7228e655de3bb416e344a61737870c7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.6.tar.bz2=122322fb462f8fdcb065e6f9d9968027c320ba9be9ad6fba9011760a7296cec1892a0780d7436903cb7763f5d18cce11860c5c7fce82890eaa139a94d5e89428 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.7.tar.bz2=0c17f52a74b73041c588ed76f73862d179d7b9abf9de61279dc74ba7b7f170179e0db5672a403dcc209b6dec9a865a88a382f5df01f5e6ba4cfe0f66232b4a15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.8.tar.bz2=1a30bbda34fee311762a2f05ac7fbcfb4f373f8840f86b9762b0c07f1cd397e3eb3be83210221384333b625a243c7161ef4f368602a613760391265309e4f304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.0.tar.bz2=edf31b2dd02208c96be25c2f4f7d35e2b122e5d327133545e16038836b848b90f81079be4df47c5493bf4ead1d464fa72a8d0d405bb2509ab0db6335c58ff793 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.1.tar.bz2=91cc7a9cf493c7361f3d507cdbb8e258b7dd710100cca8053b77569c07c04fbc2f72fdceb9fd9a3a5d01f4c423a206da97730c356d017157bc2454041e1f1fd4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.2.tar.bz2=8ea603a27560ddde5fc639b86381a303f886ce80384d8edd0e7bc806f10649760d75a76dd5f2ee445371254e727544ec12df49d7fc8876890b73237f4eecea1c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.3.tar.bz2=c42f24668695be5c291836ae6f39b4366e0357c9bb63cf8be2ad36cefe0c6d19cb921a43159d49d4d062dccc15902ec1698a1a6842d13ccaec45c6cb628da4b7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.4.tar.bz2=3ac89131407faefde80bf2e1bed4baa51c371ab4bffc18c8dcf2624f4d1068c9f933eb66486a2bc7c6c67f674c5bd06747bddfe1f1f9dcd939458a08e1bc6108 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.5.tar.bz2=8ca9a9387b8cb434828fa36e5886bc8a28d70fa46d3e20df60389880477fa2ee54fe63c0c14611a2cb0168ef1149d205640c6003e6a507400ad5fc34fa641bd2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.6.tar.bz2=52795cd7d112ff437adf603f58130ce539209628d2224a685d060d67a07325717981fc6f91736d4abfe014ccc8057bb40a097fcf85f5046aabde0019d08bef16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.7.tar.bz2=bc179a31c746ac6e632ce08f57a8f403d4e463ad72285c0ce008d7fa39b88a22be3a43014c9eb019f6a39d022f9448ef151a8d03e89a4d2e767c4f77684e3750 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.8.tar.bz2=d693e3a800c2200c74b24c207425f41cef206a0b3f20625d18b1590e9891f409d6643ee0e7ab8fdb6e1e85de6fea52c6a307bf8f65324ee0f9ac33306ed1e876 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.9.tar.bz2=4b6cab99f6b7be7705efa5eb6f321b5eeb1d1c6e96d4113bf96b57378aaa4950b39f40ad555f630f17d216d235972f028617ea43c28b1970772ffd16be3d9a67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.10.tar.bz2=40bd90d231fcedbe34ec9963eb59645fdd1036b03056b9b8fa3b56900deb86d94e2a256f90e6aed297288d6797857a3ef9fc27bc6ed05c017b5c8e8ddc465df1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.0.tar.bz2=c1df39ae526da7ebf87510017d7694e6f78c59871baac4e9c5f2d13c22cbecc30925e2783ad93f741110b7c3802e9f25a6c3ff85160b33a4080b0f1fb02f7740 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.1.tar.bz2=930f6f7f654fa14076c84365fbc771d5b09679588c4c478d8f6944770c53fdd37213bdad159fd231efbc079b85ab7ab648b0a97fafd666c38d0e280046c6e2ef https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.2.tar.bz2=cb62ca82d57dfc0e21e532d4b523f49c559c4ed5f3d73adbd9d650bbf23c694d382f3cc25eed6a8630f23e4780db127b4b8b6ecf6fc24b0f6febc820dbc6af3e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.3.tar.bz2=708209a89a18cd99c02392307d2bc63e46bd38c72c8ab0e982b28285f8e006d4ed77e04da3900c880eff01c3350033cd00ffc3be1d3a12c4ee5b263282f0dd05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.4.tar.bz2=c94f5b3129ff41da1b07da1cf742592e9822febf6bcfd0e9eb7145c00b732fc66625056bddc72fe9b631742c70d0e731cc6a9a16a089c7b559ae963b072578eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.5.tar.bz2=b4d20f79eebc5496768fc6adb0735c6a23cffbb39ceaf9c2da42851ff7842dd2318c07877d89564176d206e22b8824d2a3c637b5ef02c5caed0b2b5276581032 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.6.tar.bz2=a09ab93c3d6936d30065236ff2abbd0295988a9359f5a76425cecab47af0ca5b6829530d1708e9ddc9e78d1fbb7c0359b9c7e90227870537d099ccc89c73844b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.7.tar.bz2=f6086c879f8737eaf6eef4461d23270e9e43811186a22f35ed69a8303eb933136e7a690bce2d9e18bcff730725292075e09db0f2384d0e26018b7f2a0df70b32 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.8.tar.bz2=62c631026560ee310a849483f1b48690075477942ce86e0564e92f5ca7834553c435a35a1d6d8dd957c3a7be24c63c32104518995eb3a96e61066a04887bb0d6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.9.tar.bz2=0f10741772d2498167c1eb2aa263292f99748518a4ec03dc19440eb5befa075fa69e68b08a09af6eb2e02e462ff20ab10e4121cfeea7bdc938c04762d81fbc4a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.0.tar.bz2=908132a47bd996f8c76bed54078e71abb154294f97dcba779b4cf0d3b82e31c4635dff89e97d5f6b4f1d797d854c6d020afdf9dc77b10c0e522755fa194a17c3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.1.tar.bz2=39c867ac0af48410c0bc6b01f1ecac00616a59cc07f3f5a3e7cfe8f786b70c7cacab65550dfee777d11b8b7a3ac173bb22c602df370eef6a04b40f8e539025ae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.2.tar.bz2=2f04566f6d778121281bc6ba23ec57ad408049e649b351585bc9a3184848c71873910e159f7fd3909c7372378152f5ed264070aefd45933b97980e80f6df4deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.3.tar.bz2=940375b11c525e3f0bf00e19013eeb886bf85b8d8b66d86d53740170b0ae16b14faa491dbcbec29238f875f84204cb0d52ade17c180d71e129cef5254f338f0c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.4.tar.bz2=1c9d41d7ab7bd69d7e3baa3c4149b1938cc147beb2a63923dadf2fd959732c8cc824e2add0946bcd62f44b0e1d509b80b4796a5929841cda8d28f3a8207b17df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar.bz2=f47443a53e3008cb7b7b7afcbbf1adf44887769e42b3defafceacc1e50e349c9000b98010f853c6b7cafdb54b85b640732a56a8e11ad8e58fedb5fa4724f68d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=fc1c9a08c48ad91edb4afcac5244f386d63940fa906dadaabe02a1eb025375443c8174a6ad1acd50f4583d6c57a88feae86e697ec15c8a25bb49f280b1357783 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=aa611f7c350374d2c5c8652a694022e038cb5a65fde795c43e927067f155d0ccb368b281b1575e679b84cd7ba6042216dc28149e138256faf62dd3060ec0a6a7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=ab04071b90ddb81b68f064fbc9f2bf726729220e4359113556d9b71f3549483f122b796b3b1e4dc8404e6f44a4bdd02e9db2c8066974acf190448c4d5a97dc6b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c769fd3814bf31728b83f2bcdaf0928e6423150609f3db903631f9db68ce0a0f9c87bfce5f93983cd962662148a66cc55f5f42bffc1a1b5a237e6938726629ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=c231f8ecd46760db49796519645bcb5cc9fa1c0582abbc419a2ca81805c81fe8912dc32dcc2c5192ca9ef0d502da8f61ce1ce7ecc87b29edad3a144a8a0c200e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=b41557c83084c8e5bb263aa944499932ce7d84457e4e307f1cffecf62aa44f8543a06299e38fee17ba64f8952048612f9289e24c35acfe2ba02b913c15dc1405 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=001d10af5833a03b42d9a254bde844731d3a796d98ce2efea90fc68e4638c7cc3be31a34fa163d4c5ac18c60e685e5cf2ccf88fac46ae6bc587a48ea35cfb09b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=0a8681afc19372ccd9409bb017967f86c2e6642e083ca47ec904cccc34242040f710392d916a69a327ae6a0bb287d97bc05bbe116a1d93478ae282b32e5fcfab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=e505ff2f00334870d07f4ec9348648b7f3b91dbbad1fddb2f60f7a38572a66a7bf081fc7b386f800d86113aac1ce3cb739c86cf0d6da2bab916a4432ad557c54 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=aee6000ac886cdd4e4044a7b43ab20d54d1e99f6b893af69d0d7e7a202f4ae861f939898580c60996b0bb7c6481eecad69a20acc83c75cc594dfbfde3a22c476 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=86f4e6948eaf2586e018570f09232b94f907766590eb75f00992531ef74676070ac5a2308e121ecc1c23388ece4dbe1ee8a4b2a7ab99ca00a28d6583d6df3d0a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=1bf867b0af84eae4e7996047727fbc7ef459afd3b2ca5885f658a74d62910d00eecddbf0c11b23265c625c26b420421ca5add40079438edca8eacd8b5c0149a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=92a3b217079f9d960cc4fbb5908f7fc7ef71cc3ec8e5e404341e2b8875534c0542167d03b61577776e0b0f049f9ba2e3235842be381b4d484845768adaa6e3f7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=608f0f9eafd72226fd1b39f6c92d0f1c6d3aa7ede096cc390fc4f8bee4326b0937767bc6de84fff536dea48cbf9bdb8ef5598670235e013ccd630b06c5b8fb05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=40cccacc66cc4b7891b01c35375ca913efe008157ae540308b649e14f5753f34f1827861c6e16b500c49ac95e1aa22e1c01444faca5dce71f981452a9e0f1b67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=5a33d600e55f7b8755725d7e2f2102cd76720d524d7b378d85fc21ea8d853166dd97e2e615ab18f9e44122e3404b439dd123f8e23d6ade5328982fe72db2af0b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=37e3a4011b3603807c6e0fd48818b256caf272b3720ee654f38c0ae202cffa21600f9cc751b5335b57905ce67db185b37f548ac9c84d6acfc567f0ef4866635f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=6648c1b6bd962e30e89eacdb6130b1788ccdf6ed05ea13eac32eefc222438a298de8121937262851cf5c4cdcc1a804d5d8bf19667819db6599bfcf79e57b0e17 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=ac690170a6801fd741efb88e67961c0c3d717029b3bd9c6e243074799641c940416fc9cde7b4ba2c56e79551d6cb7fe5f7977649404da0d20d1819d7d3ce0bd3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=e6edfed2dd9d6649c47b1dc1b102f933f76a148e6dd8441add2316073dd255cac851e972366e4821fcd665e55b375fac757d189b7552baaa0b49e82349c71b77 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=69c4895076690037199f2a9b98e622f6b5e3c23ea02de79bcade6193da2b1b88ed0c28006059f4ecc502298442275e7e7324232de04a2f0ce430665057410a05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=175777563303c6d6a04393938ffa7e36e0bc6db33f7d2cf1d42ec852b41ea26dd7d50569eee4cb00497e6bceae95592365ea6718a35451e5c929d8a085aa9649 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=b668f0cd853615fec38253b264115ef0fedd21a7879a663ba844f4c3fa8b87e5ccd8adffbaa12ffa3aa16b108a2a439cecf827e7d8e19ec8041d46e758abc391 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=2039b1fcf55cca35ed3c8446eea45819368016ec1a05a5fd4c6a761b54f5cd56cb3301d5d2674af1ff75bda41eba41b7156e71ac48b88ca7a6474f0e944efd89 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=b4bb324a53c316da488c5f60803933eade9ad5c59a6d58e76787d2dd89dc2d2f18016d2ac4ab0853a40976b4beab70864a9c2d23de194bcd63ad089b2159fa7a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=3a9b5868d707d6a4580a44ab7504cb46a2713f78918142b185f0d62c5b7e0dfebc1ff551b2a52e9726befb70abbde867d2802345a01fd3e4568b9f58ac83c168 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=39007e736b28ca599ea244bf4e54b52e86597c950c0ebd8f1696a02c8eef575a734d089b52c7013d00c02aeb261dd7e2facb45f24b34c75c4bbf14cb8bdc3ae2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=0fc4e39f7382c29fa2119119a78040c611fc8298bd4765025599d3018775cb2bb28f51d38efd4306e9f04eeea20e7c2365f2fbba1233e0494a8258c3c184278a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=5dfbcefa70f5b81887d34e776713bb9c6f7bcecbda8f1c9561daa3e235c725417ab0a930f594303723f226d36306e6a73f228abfa3533280659ab387708182da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=00936db899bca33dfa8d0e6ffd4bd6b0453ad5823a450e50e3a055ea696dcf94b317357732e26208a6f34224c33a8b4a6130e5613262d62381179a52cc8f3a1d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=15b816d190fd58382a2f6f6e087f358b54003f186462abf59dbef545af9044a2b9c65576119185adc6bfd9ebcdb49f03a2a268eed4fb0f0d37aa35fa18adc1fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=3a481c35668be459688a66e4e480e11b4e58c13aecc3751da9de8a3e3282bb4a152128528a804742aa0b4380eb537b666a2b29fd79be0d6968c4ff1fa428eb7b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=c604871b39f396c539c52dd4849d1d42f37530003601f60162860efc777c85e7e1a1ee88a77cfc9ca8ca20f0448a5dde4f39cbdae67470d8d2d283d6fbbf0239 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=12042b5c30179da275fcb6155142ff2787e86cf577caef44b7c4d8175ac671cd461814e9a19f4c9b1e78bbdf041fdd06bd463aa972e194caa91e80778a56bce0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=2bf1c13616b2e255b8c269bcb2f979a45009c079ffdcb10a13e238e5d13b0978e8a974bdc1e7bf8519e15264ed5f577cc8f85a5861b3ea3a4589eb78138a3f2f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=2e7876c8c8a1f4e3cd1913023c564d9e74972ce427e85765bbe9ddf237285d7b96017c1ed17868eb912509881e05aaf96e4a6b353a69989e61c733b346511715 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=06de4f6f2761bc58d94659f826c7c86be50192b7dfdb5c8b6710b384a50299ad161309e2a8c333fa5249d0e7112f74dd0c0b0faa2950a6e74bdba68833f68702 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=597374487d196abdfb389c79d7d09b81026fe3e8043f8811497646eaf47bfa432cfb96e2af9be1a35ad2d05f2f5c800afa3f9e5adb0ea2b2d31812d219232a00 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=ba56050ce3fdbb9117c6c9e767f818ce3d467030713b7693ebb039f6888bd5d7e5f7b1986ed117414037e56e550707c3625a88bfd5d00d7319d0c7ad642fc811 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=395facf2f7a15eecc94e554a60d87c269ba70c5063b24b7bc504f579c0d12a7d858eb0b98c502016ff8bf02aaf11ef765e2291b542759fc96affa186206ffe4f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=d1d527b2e95e3a16f521214c5352bcb379b946e8be1a943da872aff0ab4b8edd93a507d693abd7a8ef1cd5ea1ee6e6bf1f838683f5a447a6cb7992de61f744ad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=e47a50392c4f3ee13a565103e0c5f9474ba0a8f5ff60fc9fe7d290b7f5f9a9ddec962fcbb103a8d3b9c7765a28ba59237975f90aa3637a06a128802ede28b3da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=77fdbe62d1694732a7307c29b4f45d0dcab7e8a729f04f45b216345336c5820715bf3f8f7cab52175c4ca1a431d867c7feef7d802dec61c2cffa4abfa8746e90 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=24da0cfc93ac536c505dfaf2dbddc7b312a3cc5c72a9f47e28b3bba760a53b584422b73da8546ca01cc44d3906a31eed7f27a3dfc0bb574f01f9c08f7c589d20 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=aee8267c4855e95a55b7ab858ca6359d635049743b8e38d34ad1430522a0cd746cd572e77884f7e10af14a731ccd8ebb9cad6ea035b0fca4ae534913a38f43f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=ba3e66bd3dde28e7193b90c44194cf7732d294e592321c482deb3b31ddd9655630f5b04aa89a43eb9d1bc222da10884e9da332bc9da78e9e1b655300db52a444 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1df8a2ad9256985b4ffb3da5b545af4160ccebdd8265711d1b642cd2285a004a42cc2ea51ce3ee78854e599f5196c66448b8e0b043846ef6e6bf992828aefb6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=cc460b3d17d460abec27d77f734e1c1e7a649769c3374f02d32a4ad00f989ff3150dab926a203b209c92475100667dd524774fc37633d71f98737ea2d8868968 jruby-bin-1.7.0.tar.gz=1e466a3f8d52b553c9def09827fda4b8433576b0262c40ee505602754521a00defd821d5ead5052be52baf281c6cb080fd03a8b15c628a0ee67b4e417633e5e2 jruby-bin-1.7.1.tar.gz=ef28381ca30664cf450f9d3df9927530db771d30e86ebcf535af38e1a7e26724ae2bcfe8487cd2eb349bf609a733a25528aae14beab4d13d298b5604ac7353cc jruby-bin-1.7.2.tar.gz=8155c81eea6743951db7383bd9f6b1750614927c9c0b25a6574f6d64898bb3ada2f626c6e0df6c5486561a03cc7d472fc12fe804ce66a3972d2fe02e3f407100 jruby-bin-1.7.3.tar.gz=1d19be25bf4a7dbb0edad71008704377893d3967aa4204a0d59d6883aa04462ef6798c64d0c0fdd3f5129c16ccb42e8507f3fef38ed56054bf6e689de745935a jruby-bin-1.7.4.tar.gz=d7c0ee0316c50ae5413757e956c18ca68e9d99a25cf85be978da0787c13b8978d4ff2712a3effa564cfdf07144be4a56a0cb8acc794a01f43264fe8baeb125e5 jruby-bin-1.7.5.tar.gz=a4984591a3809330b93f4ce79fd1b9c24360f89d88a03bbc76351be623893c4bfc6441375bbea452ba4f24ca8b9357e03ac938fd6c065b3e2348c0f896b22a1b jruby-bin-1.7.6.tar.gz=98600a2d46bfce14111c7eebc62716352a4b685043afdd696b8fe51c6b205eb9569fc2860423a653b842b173198c76c59767156aa48e0d23482dff3358d884f3 jruby-bin-1.7.7.tar.gz=71da2e72c65899216fa15ec568b51aa7004e2ed7dff99ca376b332d3692c83a674c688dc21ee04d177a3961a2bb3973714509d88cc14d0ba9f79c864c6258a06 jruby-bin-1.7.8.tar.gz=42d54243653ec260abdafecce1143161be63fcc38a80f71ab70fcece4bf91545a2b12ed2319f9fd6f6b41916c398a9a8e89e7f0389f59da56f2739665e74522d jruby-bin-1.7.9.tar.gz=f519f53b1d9f57cfe28982ad70b892dc6fc20fe6601d98d65a1dca9f617a0eb8fff74d0fd82ddb858fe105d05ca7c7bbf3a987677ae0363caa2981bea358c096 jruby-bin-1.7.10.tar.gz=160b701f2f500dfab64beb635e5c4dc57760dd422d0fffe8d3cf8d84ee6ea17a877ef77a0087b4888ea9db64ce7750de01a73a51530aa6666a2efdcdccdb89e0 jruby-bin-1.7.11.tar.gz=a53b0fa327b98344cb4a8aad1ba537ddacb709a0e173b1e32656de8a610cb9896e9a4554d54d0d01d2361f8ff1539a0e2ee01308f670df2004225231b704065c jruby-bin-1.7.12.tar.gz=bf2be8a37b53d38c75712a6331f96b999fa6b0e87f453fac7b9d11eeb1b66098ea0778172f1a6a84345e1881f05d63012e28d4068a0bd31122bf2473bbdae5bf jruby-bin-1.7.14.tar.gz=f14e658da7f2abd469edcfd657dbc2505d6a2c04ba1e5f65f2164256f54625da154b338bd3d286ea6a18da61d04d90a61ad6b012bd9461182753483efcd0f603 jruby-bin-1.7.16.tar.gz=47ca714c3211c95c84e9c80ae4fbc894bfd7ee03e1bcc494cb48d839f8538db4aaca7029a4913b8d323e7227450e4e41bb943dc670f43df8a654eb127012033f jruby-bin-1.7.16.1.tar.gz=9bacdf6e212d08e46ac2c49183c8611873f6ecebfcb0e928b5110bdebfeb8751ac087cf8aba09afb9a8ccb58e59f3c3e06a241c1db445835d7a875b0c3deb4b5 jruby-bin-1.7.16.2.tar.gz=349283bb5344a62f282021ce39648a0c8d0b41ecf8f800ab5099b5ce161ff771e688f205a918324cef6ba0ded6b3694b8dd83f46f56be584202b8fee496b37e7 jruby-bin-1.7.17.tar.gz=a3b171df08e789f91c260c5a57ec842a5d62cc8d6b462b772905ec5284e394ed7b78f5b327ca1ff20f5deba8371a86cb03fade75b5f34f233df47bc3f08d469e jruby-bin-1.7.18.tar.gz=b259da2967e246a387687117eb13e8986b57de6ca8e570d6f8f8f07b8097db6e01cea8b0ec3a860b091fde14de535260dc6dbfc638f9e9b49d348f726e969642 jruby-bin-1.7.19.tar.gz=da91efcd51cfc833666f8b7cf949d3b5c41cd8da99ae1559c88a7358fb48df1245c66702c7cf23e7ca012cbefae98787c200352976d4e8aa3e9120057a89dc8c jruby-bin-1.7.20.tar.gz=77131afe46e72c406ab4250e43cd1f98e59a8351c494044ac89f97a7c9a81492f8a8194541055fcf1fc59569e99a577fd6a36a9f6a3952a99f399d4970e80e69 jruby-bin-1.7.21.tar.gz=111883df12a60d06e9924d33057ba72094fcffd44f7e3954d6c6d2190f8e6442804e739cc525a9e75159251a8dc1cc487570792b1b4f5773f4d0082f0eb360d0 jruby-bin-1.7.22.tar.gz=6ed6cbe7b81a8aee60906fdf965bc217b3db794698e2cb37559f36ac119a0cd2a1ae1a7a766535ab491d647e8b4e6b2f63e62011714b757f8691455831ef365c jruby-bin-1.7.23.tar.gz=6f4b97c4e08274f96195deb176e3126e8d047c981cb655cded9665624033fb905d60d5586704a3f91b2ca06d7e78918d9d31131c93e4c90c75a38182e309ac9c jruby-bin-1.7.25.tar.gz=a89ab8d539bff346ad56d345b6a205f74890b9aafe82a2c82e7c19cfc30b77fefde1003e8bd7ed15f141151bc0fd21946203219691383a64f2234fa586e1905b jruby-bin-1.7.26.tar.gz=feee03a50900e459d9ed7d2096056bef126c4551c02c335c4132e2307411f3fc4fd435e8fe44411184773c80f0630a7812b3d798b7e9be2818e1b5a712bc6995 jruby-bin-1.7.27.tar.gz=656f4313fbfe5db8d2d4fc2087a012c91efef848394c48aeaa0041e9a19b87ab74686702955413d2c51d6b4b11c758ba0555b30fdc42e86d66094411324139b6 jruby-bin-9.0.0.0.pre1.tar.gz=988c6a058336ab9ac8b27c7501ceccf3940837f9b9d3ed32a466b891bda1bc13f76199f5bc3baaa1240dd0dfdaee40775f721294d667f3b8b5bb9ac8206e2e83 jruby-bin-9.0.0.0.pre2.tar.gz=f207f9477a12d7ffacd92b1bb5154ba8101dda8f7b2eeadd4fa83eadec9a75727bc1831733d27fde63ba63322ec491201dd23cc6e2c2b5a4b8381a8fbe49e8f2 jruby-bin-9.0.0.0.tar.gz=33308a983533c129cffbf521bdb8c1996a10a6159a4a436248e645bda682c5a5395ac1aa767e971ae679c935f3b61573cb22d5b8c64af026752db3411a6356e1 jruby-bin-9.0.1.0.tar.gz=277dca63f3faad01c98a793f06bb4d558a970a10a66a38482e8372b25f4cf4fea85f1d5624fce7fb5b4310c42ea8aa360f24f6b9b6ef4bb0ebcb036736009ccd jruby-bin-9.0.3.0.tar.gz=d82f83e20ef17a0675843e306ec5e90993e5952cf5a53957a91e369d2c90d92306aa515b1e135c04b45844a81a0f4ae34289b966821ae5f46ea51fe012627352 jruby-bin-9.0.4.0.tar.gz=b9cd4f4a00da8152740b468914046633d5341b10aa26b0ac56835d5896531030c8afbc4c965b30c36923555ed5b145de8ada69e05ca38b01d43621914a331335 jruby-bin-9.0.5.0.tar.gz=7c61cf010fbae571cd6ba334aefcfd917f6de8224d014026297b840d0b890523e94b2fea20f154c82c25c4f9d5992b9481fb569646a7023e5ddb42db1baf5f34 jruby-bin-9.1.0.0.tar.gz=1ffdd352823436086ebfd37c03401a1f3a9cb8a8c5f75476af1f704c4764396a20f49ddb7fb7f0911e1608f7c88a332944330b8849d13e6badb170efb736dbe2 jruby-bin-9.1.1.0.tar.gz=475acda79ab8c54467ae70094aa86842959200127c1e92709f0a731014c469d3e52e4c48770b64ab1bf31e1b710ac4570b421077c85c08071c1356bee55a2900 jruby-bin-9.1.2.0.tar.gz=cc6b1e1a2907c128dd04edf9da11933a54bbed5e861ab6f0208505bca5aa2aa9d9acdd04bfde65824346fbb435584081fc8ec2e2e9a3aeea1bef8047915e0c61 jruby-bin-9.1.3.0.tar.gz=88339f4cc05f7f0ded21f100755156ade33f19873f49c0c64110916da8c0b059df541a77bb36e54fda9cebf042591450d2d6312ffaa879df926870806985e774 jruby-bin-9.1.4.0.tar.gz=ebe0e9d67cb91721d589461e93e26338e3e3a1f0f98de53f25906684140b49d989ca6d3704cd3f6cbf650f30aed9a3989f117bb4732c83ed870364ce4c31fa36 jruby-bin-9.1.5.0.tar.gz=f2a11e6fc88d37fc1b640ea8c9feda4607bea6da5e6520f61ff85e8d6a51543612ae267b45c033214f8fd0e2283153da02001cbc9fd90be4761b7544e1413b9f jruby-bin-9.1.6.0.tar.gz=ca59d199a0fe791efc57f05801ae26c6cf6402bdc0f1a795250b1a2dda39b233ed24c8cb005016e79727f4bcdceb1bad726a60c16935e76fc87e5d1a078fb5bd jruby-bin-9.1.7.0.tar.gz=f2569d4858a33280e90d984aac53662c25ef057ef9903bace6a2214aa2e6a537c9bc8fc76b08f846b3093cc4a12c70c98d725576a4ac771e640b95cfe3697c7d jruby-bin-9.1.8.0.tar.gz=dba3b41b65ff27dbaa203a5cfc78ac7cb9d952c52b452bc774f593383e4ef9389c0bc37549b798f48b63497ce7007b1ac2d2fa252d9a7c3e52146b4ae192ee49 jruby-bin-9.1.9.0.tar.gz=f8f6419be34aeb7b7577e946a62a094f5921d7319b51876c5e07322d99249b3a9f29fea4ee5c2b8184dfccbd5da8f8262fa97f5e93874887f3355dabfccfa0df jruby-bin-9.1.10.0.tar.gz=857783bb45fc5d62148bd687b43af9ce776099dfea75ec4b5d947a46ed270568bceba2a630a3277746a3a9c1fd3111caa9a4cd13493ea8824c1ee190e6d2abf1 jruby-bin-9.1.11.0.tar.gz=718ed3f5a39cd9f9b45c4e11ba44cd32e035f8d9f26fe59230dbaecb71adfb2513ee1bb86ff72e075b02f20151f3f30e53bfa30b6c4b011a93a138d4f479fbf7 jruby-bin-9.1.12.0.tar.gz=8a9f88d517d8002be570aa95aebb0063eb62a47efee191155f9fa4f045854910f78431514f857c438167ec42f4241faf74d4a8d236ae36feae58732312e4bbed jruby-bin-9.1.13.0.tar.gz=ef88f613ada2665d4f63b2e2f15594739de8ba501406e76de417821f44847b0e258524687b0ae0cf5b737520aa4dd9bb59d80a4b89a81408cda638f28bebbead jruby-bin-9.1.14.0.tar.gz=d15ae0c60421951b830524acd21a0f2a56f480e983b148a2722cd36afed8e99a41f518eb8a679bfa2cf87f08637e81c24ea88be40c0a5390e081322f1fc6f8da jruby-bin-9.1.15.0.tar.gz=74a411f42149510180706b2c70610caeea357f6fc3d2a12ff0227586862e6a9dedf09e752596d6c486af7a310a07241f311a1dfc73ead229d7225c09d4508605 jruby-bin-9.1.16.0.tar.gz=94e88dbeb2545250ba5bef50bbe0baa6f3851e9817f67f879ffaab50048bb0d41cd7a0e87ac9ef547e37c2b82cf1d7aae6b8caa43d03c6a9931b8ce0ad4b2afe jruby-bin-9.1.17.0.tar.gz=4c06b9674e20f48d3815b4084bb38e6994670eac804fbc56d717cde7abdb74d57e0ac17b7fa0b500318de405c187c3eaa01441c22621139dfdbeef62a5467a63 jruby-bin-9.2.0.0.tar.gz=79f5e8674089d2f6b260e033e3ceb4571f54cb5cedbca74ba76b52dd7cb30085a8c6c2676e9be57a8ecd9e962fbcb3682a8de38e1cdde2dc6e05bd179556edc3 jruby-bin-9.2.1.0.tar.gz=185e67da4964c9cf1d9142446efa77605e77894444bdc96bbd10fee22637f197aea9fbb0f60d3a42540e5f383d5b06fcf095d572f432544a40c2145deec81926 jruby-bin-9.2.2.0.tar.gz=85e16e38748b6ec5f237eabc8a17eb225c484c20f7ab6728f2a0f650061bc50c8a9601c04b0128e73c410ffe84dacd2b8bb37167aae5595728aa25e88c4c9b92 jruby-bin-9.2.3.0.tar.gz=97ee210157c451567946b38d33380051f82e7e8cb5f7649fffe050542ff6cd627e2c42f4c46739d1f0995c87e7338865b18844741285bf3f72364aa3c841c54c jruby-bin-9.2.4.0.tar.gz=9fe1506e862a17e261cf726e1bb70a9f612a6d7beda919a01405899660d1f4b79ee690ddf9aeed1d2b2f3cbd698be8df4f98d3815352772cc680e9646d721761 jruby-bin-9.2.4.1.tar.gz=2c41e7884cc54819da17ea9b2b773d05d3240d53a2ecb57ba430ab61308066eeb1bfbe6627e6c261f5f27ab5df7f5972656366a04a191a81b0379f620b74512d jruby-bin-9.2.5.0.tar.gz=d548eba8de420c80062021f5b6e6b203f8b7b36e3f11409919eeab87a028a18f9346f27d2cd8b1f33419adcc83fc804a36dbc3cee169ef1d93383b8f5835ba2c jruby-bin-9.2.6.0.tar.gz=20c7897da0d2b585616ea5848998fe8770517e24e16955797db2e5bff4622c348082628d304240a71a97e9551ef7aa63271cfb728eb5fb7e7d19bb48aff20d4c jruby-bin-9.2.7.0.tar.gz=8e71e27fdb149cb7470fb736e7ce858719d13ce6ff8a1e9ab1c1dc71fcc068fb601946bb28ed2feee3670b5e6ebfa8a655a6618d1badfc3763897912c41b1c82 jruby-bin-9.2.8.0.tar.gz=7f71fb5bc8c6c31b31b4c0430ae091871b21aa345777662f264c728c60212365dadb63a7a4b2fff31adbbf8a2e7cfa678d47486e28840f57b86cd45fe9354013 jruby-bin-9.2.9.0.tar.gz=7df33150858ddff586b3bd86120d4bdd80546c7f8e62245f61facbaa5527400a1aebbb33e4a1a8af52066487e3d29760eb96c7ecb9875eb9bc954ccbcb37a4d2 jruby-bin-9.2.10.0.tar.gz=f4ca024602ddab37154f5547132accb26e7c0ac2e913ebe1b5c7806727eb148249e76031ed4623ab53814beb8fb3f472e386f44d57adb5d2b3b00fb2773c8a63 jruby-bin-9.2.11.0.tar.gz=f736a9e139694c84d0a5ea42f36b972adc82c9be13e0b80bd61045c026e4fe31ccdd4be3dd3e94781c846f356e026465e41716fd2744ded2ab0ca39cd33bb46b jruby-bin-9.2.11.1.tar.gz=2f758fabf5910ea01e9c04c7600d9c666f2df3db8622f3eeb3534578075ce65013c42fe9ea6f95d4499945f795e6d566eed2b1545e149af823eb1d29167a1223 jruby-bin-9.2.12.0.tar.gz=1dbc5bb3814a6590f5e8ecf4889152684b5625fe81794a2c4064d598614a85129256002dcd239e294f209b98e3abaf9bfe70467fff48ef66b1531162dc6c3be6 jruby-bin-9.2.13.0.tar.gz=2cba016ad6a376252083122d51335610209d860c41de1902f5cd49ffc2f6b49c350b68df8fc4113c221255af4db7ec07980267b9888369811faf66db369e757c jruby-bin-9.2.14.0.tar.gz=ee3d17e875dd197f92744c7cba62320bfd3f166bbb2ca117f2910780a7c571779c0940e024351e9d4685ee9781dd207e773ace57a4a8a7011869c8b6209513c5 jruby-bin-9.2.15.0.tar.gz=678abfa7654b53b049e4103ae3647775d970c5a7192539378957c1731a3037c852e03f00a496c022c1c438d159a93be6e6f04d7563c811aeb7d261ced643d9e5 jruby-bin-9.2.16.0.tar.gz=f77e314d578a980071bddc25c65659d62e0644927ebc4e7d7d4523935b6c893e611d47ae7478a26ce7acff38b1525eac11b4a329188cdf76aeb07fab667d99d4 jruby-bin-9.2.17.0.tar.gz=e90ac1890a54a892b13adbbeab3cc5242889ff2a4b6cae535c0a3172072bda6ab01b960705ba608d6d7ebe9de5984d8384dbbb6399ab3b2e53a9e347e7849e1b jruby-bin-9.2.18.0.tar.gz=c5816ee0f7b0f559dac70ffc5277f85ae9c41ad176e43d277f820c2727387baba93998b915cadf9708fa78b5cdf3911a9c39c2ebb61a77a38dcff359f7d88a73 jruby-bin-9.2.19.0.tar.gz=3740674035e27cf7961b3570ad65536c30faab1c9a71a42a696b173379e79647411d57e0d1d06b5f9c9a970eb02a595a559191af08a083773dc4601dcfd07491 jruby-bin-9.2.20.0.tar.gz=1961f52f41e7eb9f50b0f382c8166ad988a6b3c0311c342658edb34486b073ed45c1ca5731aa319196db02cec208a4dfc86aa6b436959b80243bfa4f62629735 jruby-bin-9.2.20.1.tar.gz=598e28cbad682fbb30a9a9a9f708e6e1f4b7903300de2477e88a646c42ae594df5b768ff5379ed447f1a7168e93dbe35cc2d5db7087cb2228233a05bc4687908 jruby-bin-9.2.21.0.tar.gz=8f6cfc43ce3ebbd69781da71c5a70746ada090162bf6cb709dca41a6d968e6072ae62f657cb0bd471c648ff294044bfec3079828bdc410bd64758f76a93c3214 jruby-bin-9.3.0.0.tar.gz=06331ce32ee88aaad5e5bc0668d164ec3263f8ef3ed34bb32981b76ca33f8c817e3632550775706481094159f4feb43916ad1f9ec0f0775ad756b16cb7bd9417 jruby-bin-9.3.1.0.tar.gz=bfcbe6dc5ba736fc944af15eb387b545f6c5b987a7db88045913a02a1d30726c5d1255c4dd609aa7c2d2823ddf9d8360223b0575c93302aeef4c54eb37af9abe jruby-bin-9.3.2.0.tar.gz=b1777bfdf1964d7e527bb3dfc47b4b9e8c589cdb301c38ee8ee988bd0c392ca978ee3c1c24e4b5a65bdecff67d1bd96e2d8645e58ff7e891e3622097ea29e925 jruby-bin-9.3.3.0.tar.gz=648e70de0bda710e2dc70fd03c3dc6b798dd4c7b92584c54306c426f59ebe1168a595c4cf94328f6b44674f5507bee354efdb1cd73060b73b0171a3605051c9c jruby-bin-9.3.4.0.tar.gz=6b09decf412a76578179cefaabf01cc8740f70ab5324954e6aa43b1d8b81c37db7a99b1f94d6ced2b459f1c44c3086892b9a2c06b3ea838baf75a8fd5e0447c8 jruby-bin-9.3.6.0.tar.gz=f730522eff27462192808773cbd071cdaefae11f20bc808a8f22515a33960a730f3c87ec727ddfd9dc9b6b35acffeb50c31d75a4794a3f8daa75e1963ebd246b jruby-bin-9.3.7.0.tar.gz=265051c68d3b9dcce708b75f8267303ae84008859c88d7fe4f282395366c3f52fcf1bb161210555c0fd0a2427ff5a728ea9e337feea3d9b69559cadb2f300aed jruby-bin-9.3.8.0.tar.gz=12e795b7e1f14141bde68f52a29b0aa9f1db20515240dce83cffec351cefd25959579e01059d42dc8c8e4280493a70819d9beb1e0523e9bc10a72af16d9abd60 jruby-bin-9.3.9.0.tar.gz=f0b31d98f39a2bd4436764db0b0139433d6868bce7c30c5d6e3552616ba879c93478c499f3e4c884fd3728502916aed5c9ca1be150ae3e80ff47b36710c3f6df jruby-bin-9.3.10.0.tar.gz=aa36fd4c5de7b17f5fdcca1d1314d309e7b4470d46822c45baefbc0ad5180e5530a7054502b97b414352af485e7936659390690dc6198512ba6733d8f8d503ed jruby-bin-9.3.11.0.tar.gz=d9fd90bc64028dcc45687d2be51414b1561add20d20d1392525f4434cc684d505427f5e56827afffbbb0ce2c9cd7c1ef846b0bffa737679afb95d4c160232da5 jruby-bin-9.3.13.0.tar.gz=eb24641fb7a6b9d2039ec953388053e7333b306056f9a5bf745331b04cfc05dc4211a9b7780ce88bcee9184b8cbb219b574574d308bc2720547c116f4d4721dc jruby-bin-9.3.14.0.tar.gz=d9b02fc35133f71140cc7d891061f8190b61b3d1065f00092a2aa9a4beaf7d67297dfb0529691bd24d29607d698f39c62af9018e8307c1e6624c3104a61bb74c jruby-bin-9.3.15.0.tar.gz=e41521ebf453d6b6a9de937556fcaa972c60268285d0af4a41bfb95aad790eb47dd507e182958ca6f4889a0e03eedee0fa4bbc58e3d0407a2b6ba64a8b87a21a jruby-bin-9.4.0.0.tar.gz=fb72f8e087ea08653fa4e4225fa26694c3ff97c41f3deb8731cdb6571c6c9b21e0d8f69e2096f82ee81e2b5c283f912e2a5228c15873dbbd56de96a2ba35d59b jruby-bin-9.4.1.0.tar.gz=46003ef6192718a6372b79ebc89bee37957686224a08fe2f9a6be3c9e479784409d0269f0885c4d1f1351585c5d2cd31fd2ad45014e425bcaf2d44d66b98d299 jruby-bin-9.4.2.0.tar.gz=77e484ab73ece93e7d7283f876f0d541607c6080eee696b702b485be9794cf7e6d464f250a6d75387ee69aef3ba40ccf4f6d9fcfe324c5bc7a14376177ea2bb8 jruby-bin-9.4.3.0.tar.gz=2361f4bb2989f5951b0d3e9d49bf31e6805ce39bdc987ad3c6934daa98ab7c8e69763d40d7412ccef8adbbc198e52f4b83d00998ee12ac43fbfc6b5d88930c15 jruby-bin-9.4.4.0.tar.gz=e89dff0cc5b4a948daa95196d4bd4fee0c6901bb4aa023ae35b3679d9739967c2a74e8a4388b1835465dd39f1332a1f321b450b40c54ad2b81802645b4a31ca4 jruby-bin-9.4.5.0.tar.gz=06db948e5fa6f8559abd3b6891c7b4867b9f54b7bddf0e36d6f20cc1bfb394cdba8ea920213e545c927d1cb865e083cb1089c8e925bc608e0f8784a79b5d330f jruby-bin-9.4.6.0.tar.gz=ebdc671622baf3c42a988d6ebe24af6bfefa1f717f050f602a1b35909a3220316329aad080ee2cd9cd330da9428f8d736502573efa64bd70f093ccc123ab32b0 jruby-bin-9.4.7.0.tar.gz=4fc8b12deba7b8a53a523a41a31c248895adc9bd54a62664a27107e7205369af39c0eaa508a9a70611c3bb845524d8c5f39451c09b8b9cd87059ae15139703b9 jruby-bin-9.4.8.0.tar.gz=0d65fdfd63e2049ab3b8ccbcb4caaaab20aea5a63276aeb20ed4092191a8814f144425dd0d926aeed757ad6b4daa308a98fafe1bbd1647f3db44368066f61868 MagLev-1.0.0.tar.gz=8da29f16e08f657b0d2f147b64f2202ac027db26f85da8dec29f926898f178ac8d11260fd6c0a539a9b9b15eb92d8c7ced86a8cab1861ae7f8a33b6fa468e5cb MagLev-1.1beta.tar.gz=7122af70530e76b9a4cee93244d6872b49616e78086bc8a5db0f32d2b846560b352c4831addbbecc72e0e3158bd52f26c2da14f5d83a515ead30efe7c538b62e MagLev-1.1beta2.tar.gz=43b4b831791074f6e8c12f6fbe6ccec2bd0446dae029d3e6717cde1e7adca8462a2d7dc49c14112cb568b5b3adc8cd051767044b41d57ae51f38aca035ff8597 MagLev-1.1RC1.tar.gz=942c1cf43f1a911230aa43bbac1cea2e2e61b5e19af755e29a6a71139d66d304efcc519072dcc3487a2da7462847530564aff4a2159d675e3270cc938a297dd9 MagLev-1.2Alpha.tar.gz=2672e3e5425df2d2ecc49f85df5845fdb083f74a7b242cac75e33d0c1837079ced8ec8b273807326d08e7bf6f95cb4f1d8351f37af8bb38c4150e6292fc553dc MagLev-1.2Alpha2.tar.gz=4492ed58b6c2b852502a2195836f1db5a80f0619467e4d7b44981a993a5e9a9ea5c9fecf1198de1891583e334bbc3c3a86648ce8afea1137ae9c73a4d76b0f4a MagLev-1.2Alpha3.tar.gz=6290895b22efb986ffd7305b7d651f20a051ab6869d51310bf891fa3eed48526a8617b69f72793e8ac0b57f99bc5de75f34235ef94de967bbdcd51857efc2af6 MagLev-1.2Alpha4.tar.gz=a621e9c615ffec503910540db770754f29bab1646d8e67650d5b82413bd551adfb0bbbb8155407ccb6f80933bfe8ae1bf9b688eb0defbc88710308bde1325683 mruby-1.0.0.tar.gz=4a0f2927da3401df23d5c19ba566995f76775def3badbb14f16510a271e7b40a833fc61841f89d8adc6d57b5b12cb453708961c16a22133c092fab8ecfcd1e3c mruby-1.1.0.tar.gz=afa99a973e9c1b72a5a418d709c4aca08dc7449c427cedef5f12db4ccefb15e11a4fd1c23ceb7e31e49d4d2e602c0b1f9dcf2e0f6cf8ea3466f0b9bee23b53df mruby-1.2.0.tar.gz=bd5de32ba52b6642358752755329fa45a954082122a8983012930056c286ac328fb52fbdd11f34ff7c80af2c0e9a6348abcd5214602aca1150f2e7ae25cad1f2 mruby-1.3.0.tar.gz=13a57306706d2d60693151919ae15bb3621e6e7ed3b5e9c6d3b1c8d44e52b898c1ad394b39946d730ff82a19f5e3b7c2a374f9dcc3b6c6f990581e504f1cb9cb mruby-1.4.0.tar.gz=d2dd6e17c7f8e890ef5b6887538cccdea08a2376ba8f9a478d7d5c4377fd4c31a4af6323b1fc73952ef80e5a4778ca22eac3d724ce7d50b76770f7e614df7da0 mruby-1.4.1.tar.gz=2cbf155ba7819211b6410ea606c4d0db3adf4f47a4018ac45285ab3e32b94f280aa0af0936ead7233411957cfca62979d14bbaaf0d8f40521cba5c12272f2af4 mruby-2.0.0.tar.gz=8379f76b7a06d280e2a2552eec2975ffa3fe85b99028f6f7c009cd908f95faf3cd36a9975f502a5779559baf3c45a4297da0b6bcc038d213a0fdee851f9d01ea mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.1.0-rc.tar.gz=f310b385cbf80c6b6ab67e2a41b931411149639c0bf778799e3358d6a9a59f508f42e3faf72fef9e8ef91088d6184c445af7933a47e4e2b2fe114362d579bac0 mruby-2.1.0.tar.gz=da28b5a078e121c75edf62fc68fad6d5810212bd53a3424d4f585ffe5bbd09f652393ffea0f4b3ddd802e5fe178554dc67040c39c9d5069bdfad4ef22ead7e8d mruby-2.1.1-rc.tar.gz=97c9cc2c79a5dbf2f634ea08532f0f512f8af6ffb99ab4eefd83fc336ca9d97b943e76643971047b4508aaddb5e40176d6cc8fa39a17022455aa15d774eb5b98 mruby-2.1.1-rc2.tar.gz=13aa32a35bd5d8f02a9bfd08d17818dbae78ce46c8b0224a029f9f191cb64ac330eddf3871f4396b9221b987a91e4cd6f8933f59814ac0018155ec8454abff18 mruby-2.1.1.tar.gz=66f9b4bebb5a7b19f5cb1be2bd8b9bc65e4dbb5d4350d238ad5f947c9195fd431f2069f7334036ea63a750e9257e59ae1aef16ac99c7e1f4e17724cd1cbe2e50 rubinius-1.3.3.tar.bz2=8b91baf429dac60663d0e4da3152a60ec6e007f5d6c17ffa430876ec88eb87ade44efae90f2e32e238fd74f1b3d54e27492315f08e7bb073220b402e1e2d3163 rubinius-1.4.1.tar.bz2=928d12aa01a1d0f6c80175d67d3b1f8b9840f69f045c8148786612316421223f4cea71e3c373ee18a3f686b1457557ae547645afe758a99d21c4818dff47b9d1 rubinius-2.0.0.tar.bz2=5c81a6b8cf7b59e08c3b9353b0eb37ce985aaf391f5064df65ffb10f6d12b668287e4d4e61e2c6b560d9234c10f0b64bba74259f2c06f1dac488928544d4131d rubinius-2.1.1.tar.bz2=154cfa93ed59835814b8b974f6d738b049942fcc2b75095d21c87647d002c879fd55aa3d1ec95414b5b66eb9926c25a5c6e3e19a7c0da7dec6edbf434acb9c68 rubinius-2.2.10.tar.bz2=c2168e676059c197123916dd948b83e39bb96e99786bdcaef2e690936b761fedb13740b9f19883f991f1b475f3249ea1696213e8448c41ae15dfc14b3d4e1fda rubinius-2.3.0.tar.bz2=d0f3dd5e3b891bff2eb79b7810c6041e15fbbf0606c379f89575cefd829ac7a394b0c12ed3c5a4d452730797bc0a2c6c82646a19a078b56dcac7acad015a4559 rubinius-2.4.1.tar.bz2=7bcea320006b8cd3d122c407d89c325973a74c32456ba0b649657ac848f4682f2eb7455c13e3007709c22932bc2e1b65e2dd43fda0d3c9f993ddf8a74d1e2cb1 rubinius-2.5.0.tar.bz2=ac94d5bc11524e715fc24c1de33f4d358c2cd65e92fbb64c850dc8151d2a712d268227733c99fcffe298c3bdd6ce080c5e9553e4e8f3238868323498a9d10cae rubinius-2.5.1.tar.bz2=9315f76126d0aa754ee63b190385c24cb084f36293a99aa30fc482fd880d5393aabce361e09ff5514bc2540dfede8e179b7e9212b2dd59bd14ca2aa69d209a83 rubinius-2.5.2.tar.bz2=b48bd8d54a450441a50904b07c75c8d31b59822830a74c952720d6f8d2d86e6a27a84775e975ff2bf55bf3346f34e69d742f308933a9d8476e5e78109cb525f6 rubinius-2.5.3.tar.bz2=b923446d325dc3ce5ad28af9ee527607fae3259b85e85aeff97c1bebbb4520daf70616957b1c0ded900ed19e59025826dee66977c19cd2a2d4e9a0296811eb20 rubinius-2.5.4.tar.bz2=75b7ddbe218e4c92210dbf5a06eb8b3c3aa028d16146982a4e813e3af10a90d33f3e239f4508469c6aba17f02cb8bd10e96a204839975e06519869cacd456c92 rubinius-2.5.5.tar.bz2=a862146ddbbdcd4439eb64e78bfe6d09ae4cca540d19869618426d3f451544658713fe8eb7d46493785eb0cc721077e624293cc44d68eea3ef584967b43a18d7 rubinius-2.5.6.tar.bz2=9a0bdb5d77f80f163925ce409d00be3cee34871baae8bcfdb34c3c7545b92fd14102fecb970e42b3012588d299e504b724025f397a5a00e181ab75f1448e426a rubinius-2.5.7.tar.bz2=8048110b3ba4e5ff8c3f35282896067e1b1b46dccaf9ef4f6c9b6098782f27591ff59ccae0234fd7e881e3aaf17a0b420286b1b52ecd2cb672249655795a6982 rubinius-2.5.8.tar.bz2=23fca2f9747d2b0e544af890c3baacfb7b3a009cc59cbe653762ccdd827a6c915dcc57902d317fa1f7a81f8c12682f6c3a93195331b6de0f705b118e2e8c13f1 ruby-1.9.3-p550.tar.bz2=38767e98df25484f7292437f3cb0f798b3a43e9a7414a5401677e96ad1cc367cb3fa23ac3abe568d5bf2b2ca553713469a8770d41b79bc63daf3fa59cb4e15c6 ruby-1.9.3-p551.tar.bz2=5ea40f8c40cf116030ffdedbe436c1fdbf9a50b7bb44bc890845c9c2a885c34da711bc1a9e9694788c2f4710f7e6e0adc4410aec1ab18a25a27168f25ac3d68c ruby-2.0.0-p576.tar.bz2=e089cca4867cd9c715f4f37e40a1db9af6ba0c74b47e79568121bb980476f8877a87ccb848b973381edb4667c0c73165f5e1761f60db839e67f6326302dbd864 ruby-2.0.0-p594.tar.bz2=8301a51c73fb63a8cfeb14af47d0c18b5bc3c45e3d62fc2ed56a673a1cd6b0015c41f275e70eb14a9e40036b1530977199321e05285e107a6adf58514bef1b3d ruby-2.0.0-p598.tar.bz2=10026a04e01a8ad14ea9c99bbdf4f7d04029b73ee0c01bbf6c2eb2817332d49adacf127b646693b67b5dd7010eaf3b696b23b6335cc0f7ee5a6b56dbba0f6f82 ruby-2.0.0-p643.tar.bz2=453117152e6facdcd5bedaa9c3b1e349382bc5bc1dd3d650ec58b398cb9d2519a2822d05da10bcc5dbbb4f513fc5fef310caa3529d176fa2d453befb28e4d83a ruby-2.0.0-p645.tar.bz2=e9ca186b1cf0877cdbecd43dcab2c5161a53103e926609d5e1b769a4980eab4571bfd0951788b4fc92dfd9d10175b0f5f36ea2c7289e575a9db9b62c02f93185 ruby-2.0.0-p647.tar.bz2=3416af771ebb0b27ceacf23d309bd2a1ede832c2edf48a5ca46f0b0b84b2ab94fb6362a0c7fe4f77b21253539db8161ae26d23a78d1ba729bf03812454d93d04 ruby-2.0.0-p648.tar.bz2=609acf6d6352c9746e21cd7f0e7d29f5eb522e6fff2d5fad0431d63c568cc084ed5b7141f84cd33512d8213200d2d1a22e8d7df71469a980a3a92886133fea38 ruby-2.1.3.tar.bz2=9b48adb161e5e4550a71f61252c8edf59944affb82250babcb64240749af4b672e4a54ccd0feac5b36ea447a358b350b5080125ef2d4acf6e9e8b1ab82612f48 ruby-2.1.4.tar.bz2=68db1567751166c5e7d24b6e5015124b8a15568c50556e1f429486395352fa56c4a195a74820ab135697924149d014b445b345a1b9755678aaf824fba79c606b ruby-2.1.5.tar.bz2=d4b1e3c2b6a0dc79846cce056043c48a2a2a97599c76e9a07af21a77fd10e04c8a34f3a60b6975181bff17b2c452af874fa073ad029549f3203e59095ab70196 ruby-2.1.6.tar.bz2=75d58120b5f387bcadbf6d19e85624f78c74f81b9018baef39207214673f7ebc0700ab31145acd88b4071c896ba8e1302a29c90955bcf5f8c863634125022aa6 ruby-2.1.7.tar.bz2=f610d2dd6a93f0a5e84e04ddedf847bbcea5dd3289b3164cdf60be64f67a80dfd5f9836ea5d169970cd0ce24a7e05ea6190699706567cb0d5cf450de6a70e445 ruby-2.1.8.tar.bz2=7129c012bca7f0e7cfa51c73ba0898697f7a9f31abd5ae57d38be5b6b646fd80ab33be9b262cd3e2486c66f65aaf4ec6e881ae6e5a82ec9df62f00fa072510fc ruby-2.1.9.tar.bz2=a86422132e4c64007a84a91696f4557bdcbc8716fbfe1962f1eef3754ee7f994f4de0b5b7e7231c25057515767040d5c4af33339750b6db15744662e9bd24f38 ruby-2.1.10.tar.bz2=4b7213695416876e4de3cbce912f61ac89db052c74f0daa8424477991cfc49b07300e960177ff576b634a97ee8afef3c5aded5d5806329dbd01d0ce7b42b9b63 ruby-2.2.0-preview1.tar.bz2=2f1190f5d8cd1fa9962d1ff416dae97759d032a96801d77bc6b10136eba59dde1a554ff8c0c2d9ce0d3c1361d4dd12ad573b1266fd53b90ab238d8ce39e6b862 ruby-2.2.0-preview2.tar.bz2=c654d4c047f9463a5fb81eaea0fa5ab7bf316962bc7fb0fb356861e6336ce8ce2162c7779d8b27f72d7bc0e9604b5e5af2910abcb0b0a1f197b3138eaddfd4a5 ruby-2.2.0-rc1.tar.bz2=181201168360bee37dceeef3481a69e8a333a5d329680031fd9d371d30ac64460bbdf4db07546133024f541774e51301f1630cfd988c5e5bf2464834f3abe6bf ruby-2.2.0.tar.bz2=04edc53e8cd1732c3ca61ebeb1d6133614beb10f77f9abb80d8d36352fe8aa205112068e460bf600b2c7e81e0ddcc3b311e7e027c320366f1bd992b3e378a6ad ruby-2.2.1.tar.bz2=af6a8e75a66b953ff33ecbca5111bcf1c6560b6b48b370b700820fcbe91363146c5ac8abd670a14e693b44343ae598bab472ed2902834304c03ffcd9550886d1 ruby-2.2.2.tar.bz2=d6693251296e9c6e8452786ce6b0447c8730aff7f92d0a92733444dbf298a1e7504b7bd29bb6ee4f2155ef94ccb63148311c3ed7ac3403b60120a3ab5c70a162 ruby-2.2.3.tar.bz2=795f1b66a6d4f0baef897068899c3a1a4370ce1268618e6a7d6d4720234444259f371d1ba2e174b2f7580265e9f18eda3f295fbb087447aa6e8fb7a0f07526ce ruby-2.2.4.tar.bz2=d27ca2f19c214ce87f906b57edd41f2f8af35b2871c191470facded9cfda15ba46e5c3bc7d5540225a38da6bd65050fcc8aaa4ffbadbb6bf7dc891c1821da0df ruby-2.2.5.tar.bz2=d3224814361c297bc36646c2e40f63c461ccf5a77fea5a3acdcb2c7ad1705bb229ac6abbd7ad1ae61cbe0fefd7a008c6102568d11366ad3107179302cd3e734e ruby-2.2.6.tar.bz2=7a93f72d236521ac28c8a0bc0c73cf805797a8813d22e02f42c5fc05dd39f6e422817272e0db6a24c245f6f97ad4b2b412a9a47ac50156ab186df596918a5f34 ruby-2.2.7.tar.bz2=83756cd1c91516962b83961e0de59d858618f7ed3e9795f930aab4f199d47a95ed8f867d8aa9b51d508be26d9babf2140117c88241168bac41e6ef702cfadf20 ruby-2.2.8.tar.bz2=aa1c65f76a51a57d9059a38a13a823112b53850a9e7d6f72c3f3e38d381412014521049f7065c1b00877501b3b554235135d0f308045c2a9da133c766f5b9e46 ruby-2.2.9.tar.bz2=2a8c8770fda20a22b79c9115b6f468f8e7ea1092c84a5089af7a3122163e5ad298b493e6637e4d93ba02d899d8a619c94064dda8ac98cf3b93f64f45d5401085 ruby-2.2.10.tar.bz2=f8ec96c2a5f4ecf22052ee0b1029989ded52d7bf5d41be24fef67e732e76f72119302240bca08f0547510a9cd29e941a32e263cad9c8a2bf80023d6bc97b2373 ruby-2.3.0-preview1.tar.bz2=ae6d46c87f59e1fd3703b76dfc45bfcf208625f95ab9f4559f0b9f7050e8681f1a6e419f5fa06b704c83e56879c3a9ff1337dba443bcfca76fadb49c97d97a93 ruby-2.3.0-preview2.tar.bz2=e397f321d4338edba8d005d871408775f03d975da90c8abcfdb457a1bc7e6c87efe58c53b2c3bc122e9f58f619767b271bcc8d5d9663ed4b4288c60556e8d288 ruby-2.3.0.tar.bz2=77b707359e754c3616699d21697752741497c719dc3d6fdfb55ed639e76d52560d293ae54cbe5c63be78dc73fbe60f1b8615d704d017bdfe1994aa9747d26a6c ruby-2.3.1.tar.bz2=a8659b96a3a481a3dbdbb6997eb18ff1f8cd926a9707a90d071e937315c21d372c89252f0d44732ae5007d2678fda8c8fbceafa4e4b4ff500d236fb796284d8d ruby-2.3.2.tar.bz2=78699bae5b0a2382a58f9d51f7d891341f00ad3a90d9ca06b68b1b245cf5acebc3a82133e39bf6a412ac999a5c0f778a0dab177c2569ffbee085ffff6f6ec38e ruby-2.3.3.tar.bz2=88f7782effd35bfe0b4c33140b5eb147d09b63fbb35b9c42d2200c010f387e2b70984ead1eca86569e8ec31f08b35289d440c0ca76b662dadb760f848e863d91 ruby-2.3.4.tar.bz2=ad1f16142615498232d0de85149585be1d2c5de2bc40ec160d272a09e098ef6f317d8b25026001735261fd1c5bc0d1f8513a8474e89f0d86eed5b2fe7338d64e ruby-2.3.5.tar.bz2=3ecc7c0ac10672166e1a58cfcd5ae45dfc637c22cec549a30975575cbe59ec39945d806e47661f45071962ef9404566007a982aedccb7d4241b4459cb88507df ruby-2.3.6.tar.bz2=bc3c7a115745a38e44bd91eb5637b1e412011c471d9749db7960185ef75737b944dd0e524f22432809649952ca7d93f46d458990e9cd2b0db5ca8abf4bc8ea99 ruby-2.3.7.tar.bz2=e72754f7703f0706c4b0bccd053035536053451fe069a55427984cc0bc5692b86bd51c243c5f62f78527c66b08300d2e4aa19b73e6ded13d6020aa2450e66a7d rubu-2.3.8.tar.bz2=6d79e0d25757fd37188a8db3e630a52539bce7927fcb779a2ce9a97b9e5f330753035c16843552f1a1fb6c9a1e5c0f916b3cc8b5c0bfe81e20f35f8442e40ae8 ruby-2.4.0-preview1.tar.bz2=c9873e8686eb54dbde61d6e23cd5197beebccd6cb31fd12c82763ebe1fde17095d7514d9d93c2c82b238032c98691df5479dc2d666a8a590e0fc54450ec29cb5 ruby-2.4.0-preview2.tar.bz2=0c9a59a2f57a99c4ee8539a30f41da1de7547566203f89d856e1be9dbb44365754e6c470145dc9336eb324e0feb2f53d9fef18a1564968ac21f9ee528905949f ruby-2.4.0-preview3.tar.bz2=6602c65a7b1e3bc680acc48217108f4335e84fdd74a9cf06f2e2f9ad00a2fccacf9fa035a912bc9d5cc3f0c7a5e21475971dfac37b0364311ef3645f25c7ddf9 ruby-2.4.0-rc1.tar.bz2=b43902ac7794487197df55a45256819d2e7540b77f1ed4eb68def3e0473ee98860a400862075bafadbde74f242e1dfe36a18cd6fe05ac42aae1ea6dddc9978ce ruby-2.4.0.tar.bz2=bef7bb53f63fb74073d071cc125fb67b273ed0779ef43c2d2969089b9ca21fff1bd012281c5b748f7a3c24dd26e71730d7248c05a01cb23ab2089eb4d02115fe ruby-2.4.1.tar.bz2=1c80d4c30ecb51758a193b26b76802a06d214de7f15570f1e85b5fae4cec81bda7237f086b81f6f2b5767f2e93d347ad1fa3f49d7b5c2e084d5f57c419503f74 ruby-2.4.2.tar.bz2=1a5302d2558089a6b91b815fff9b75a29e690f10861de5fdd48211f3f45025a70dad7495f216e6af9c62d72e69ed316f1a52fada704bdc7e6d8c094d141ea77c ruby-2.4.3.tar.bz2=fb4339e30c04d03b1422b6c32ede45902e072cd26325b36f3fc05c341d42eea6431d88718242dcc9ce24d9cad26f3d26772f2e806bd7d93f40be50268c318409 ruby-2.4.4.tar.bz2=ae632852a5f413561d8134e9ef3bb82adb37317696dd293ef92cb76709ecd45718f14116ecce35b12f1c2dd53ccae8dabc7a924a270072b697512d11f4922347 ruby-2.4.5.tar.bz2=7034fcaeaee41f14bc0ecce0d3d93bd1abe95310e1a0b95fac66eaba867adfb2bf7ba4d0d70d67a15ce8df16052dee405c38cdb18987602e64a2f701d37d3df0 ruby-2.4.6.tar.bz2=292802984e5cff6d526d817bde08216fe801d255c4cede0646e450f22d4a3a81ae612ec5d193dcc2a888e3e98b2531af845b6b863a2952bcf3fb863f95368bcf ruby-2.4.7.tar.bz2=2665bca5f55d4b37f100eec0e2e632d41158139b85fcb8d5806c6dc1699e64194f17b9fe757b5afd6aa2c6e7ccabba8710a9aa8182a2d697add11f2b76cf6958 ruby-2.4.8.tar.bz2=2d7e0f5ad766e2a12a1b53ff838e6bfe86244ffb7202196769c25e9df6f71f3ccdd8605e7ef35c53e54310bc82caf6b368ad5111dd0a3ad70a3aae1a7be93f08 ruby-2.4.9.tar.bz2=d485444dcd025a261a16bd740dae63c0aa23e4138a095584e7a83aec47af34415c7d9cbc1313e92da2ec416b11bfddf20bb1a7b60c80f12906d11ef27409b3e8 ruby-2.4.10.tar.bz2=4d730d2d7cb96b002167ee358258f2620862a5a6d8627cfa5b49bd43c6e59c50c0f437b959d4689b231d57706ec7d5910d9b144f4ca1c1ed56bc879ed92e8a59 ruby-2.5.0-preview1.tar.bz2=2d39ef64aaf7a52014905f4ad59b53e83b71433e50a9227f9f50cbb7a2c9a5db9cd69fa7dbe01234819f7edd2216b3d915f21676f07d12bb5f0f3276358bce7f ruby-2.5.0-rc1.tar.bz2=bf0eb114097f9e505ff846f25e7556a2fb393573b4e8b773f94cf5b47998e221f3962a291db15a3cdbdf4ced5a523812937f80d95f4ee3f7b13c4e37f178d7a7 ruby-2.5.0.tar.bz2=8f6fdf6708e7470f55bc009db2567cd8d4e633ad0678d83a015441ecf5b5d88bd7da8fb8533a42157ff83b74d00b6dc617d39bbb17fc2c6c12287a1d8eaa0f2c ruby-2.5.1.tar.bz2=82e799ecf7257a9f5fe8691c50a478b0f91bd4bdca50341c839634b0da5cd76c5556965cb9437264b66438434c94210c949fe9dab88cbc5b3b7fa34b5382659b ruby-2.5.2.tar.bz2=9f9388a162a3ae9c14ec8999fa3b12ff5397de14f55996cc8761d21c757113db37ace4d326b9606de7ad3a5875aa94fec900dd9b81b2fb0dff558c39422f4aa1 ruby-2.5.3.tar.bz2=6fe89fe9d406bb454457442f908774577369ab2501da4fd15725ccbab77675b88faad739a6c8ad1c7b6690b439a27de5e08035b7546406cdeca65c7b295e2c77 ruby-2.5.4.tar.bz2=3c4f54f38ee50914a44d07e4fd299e53dddd045f2d38da2140586b8a9c45d1172fec2ad5b0411c228a9b31f5e161214820903a65b98caf3b0dfeeaabf2cab6ad ruby-2.5.5.tar.bz2=1b56aa79569b818446440b9f2d13122bf7c2976ab9b2865f5fb62d247d7768dd4ac5b5e463709ffec0f757bff7088afd293c2a8c5349c3780763b6444bb354a8 ruby-2.5.6.tar.bz2=e4511d42d19a7bb39ea79f66bb4eca54b63c2a9d27addc035d6d670c1e59ee48a0c6e9c6bc7d082d1f1114b0668831dce3b7422034517f3c4a06ced0e47a7914 ruby-2.5.7.tar.bz2=7d6a7d41b4f3789f46be5f996099f3eb8321aa4778b2a8ff44142654e769ba4ba2df127dd0f267547e4c8cd6ff46364f18e79838df54fcd7e3fb714294ee0099 ruby-2.5.8.tar.bz2=037a5a0510d50b4da85f081d934b07bd6e1c9b5a1ab9b069b3d6eb131ee811351cf02b61988dda7d7aa248aec91612a58d00929d342f0b19ddd7302712caec58 ruby-2.5.9.tar.bz2=12f58e14cfa6337065b0e82941e39b167813920eb54cbdb4ac4a680dd0cb75d2684d341059e7b4d0da1292bfc4e53041443bd14891a66f50991858b440a835c8 ruby-2.6.0-preview1.tar.bz2=d9cb270529a97670d54f43a0236fab072714e715c39277dab70b7a1843ec818e6700e47e1384c7256f9e0ae41ab2c0b768a0de38a5ecf4f4fff5da6ef5ad4944 ruby-2.6.0-preview2.tar.bz2=3872227e9b1c97c206d19bf1e6ce15a38ee15a26c431b4436605dea67affcf16372358984df76b35e7abaa902c15c16f533ac7af47e3031dea9451bbe459b693 ruby-2.6.0-preview3.tar.bz2=d1693625723796e8902f3e4c4fae444f2912af9173489f7cf18c99db2a217afc971b082fce7089e39f8edd54d762d2b4e72843c8306ed29b05ccb15ac03dbb5b ruby-2.6.0-rc1.tar.bz2=cbd6281b2aab6fbce3f699c1ab57e5423304dca7a547a0b3cd4e8e980326dc7b85b2ca2bfaf3f3a648d40f4222fdf1740d81d422790ee7ae1ba1ed33eb11e3e8 ruby-2.6.0-rc2.tar.bz2=9bfbe83fd3699b71bae2350801d8c967eb128e79b62a9d36fc0f011b83c53cab28a280939f4cc9f0a28f9bf02dce8eea30866ca4d06480dc44289400abf580ba ruby-2.6.0.tar.bz2=ca3daf9acf11d3db2900af21b66231bd1f025427a9d2212b35f6137ca03f77f57171ddfdb99022c8c8bcd730ff92a7a4af54e8a2a770a67d8e16c5807aa391f1 ruby-2.6.1.tar.bz2=fc41429491935b89532733b95476ab9f8a4efc310aad8f4c2bd3b68fba08fd7b6e9ac84c6c88ca892022d1ba76435295f3299ea466f9b5453c07d41cb539af59 ruby-2.6.2.tar.bz2=cad678d2ced4085e99009e4fef83c067dd0e6ead27a8695bc212c0e5112a7fa09ceb27f82638faf91932ef8bdd090f844e0a878ffdf6845a891da4b858588aa0 ruby-2.6.3.tar.bz2=c63c3f527bef88922345f4abb4b9ad467117b63f2132e41722ea6b4234cec3446626c3338e673065a06d2894feee92472807c284cbe613a442c8fda234ea7f88 ruby-2.6.4.tar.bz2=a9fa2f51fb5f86cd8dcaa0925fe6f13d4f19f110b5d4c5fd251f199d16aaf920db39ad3bb50460eb94ab8d471ab2ac8bb54daea4a3bb080eaf45250aac3437fe ruby-2.6.5.tar.bz2=28e0b04ac8ca85203eb8939137b5e5de4850c933faf7f62fc69648fe1886faaabf6cdf48382f9d9585c1720876d10b41dafd33efaeb23341c309917fbd8a6e21 ruby-2.6.6.tar.bz2=001851cf55c4529287ca7cc132afc8c7af4293cdef71feb1922da4901ece255ec453d7697b102a9a90aef2a048fe3d09017ea9378ab4a4df998c21ec3890cdbb ruby-2.6.7.tar.bz2=311ec56d23d0de7a163f66c1ef4e5369b822f8409f8e1f3a25785c803f01c68dd13aa8ddcfb3a0fe6a97bf321950f8d6cd75b2babcb04158e791601914666f7a ruby-2.6.8.tar.bz2=51806d48187dfcce269ff904943dd008df800216ad4797f95481bdeecc2fbac40016bc02eabfff32414839ebb2087511d25eebfd6acead1a1d3813be6c10edf7 ruby-2.6.9.tar.bz2=ff067ebc059094c0a9a0debf54a37aad2c85f7ed47be59299041c9c03a7701529f5063ff32a1b8c56d48ee8585015acba63602ed0176b2797d263d43d67aa241 ruby-2.6.10.tar.bz2=275a0f329641e6c3d3d3c33ffabf585195187eb3baa4fb1dfd35999fa0a80bd5925943fa2711827ac00dffb6c9a1deeadabaf2e9ee401d56926fc167db5ae4a4 ruby-2.7.0-preview1.tar.bz2=a36b241fc1eccba121bb7c2cc5675b11609e0153e25a3a8961b67270c05414b1aa669ce5d4a5ebe4c6b2328ea2b8f8635fbba046b70de103320b3fdcb3d51248 ruby-2.7.0-preview2.tar.bz2=7066ececebbbba4b2933ba1a4f70cdef373169910802259a3e52b4fc144ba298f3cffda4be5fe8a7be8ef769ed43076fa046a9ac2c13bb733475b9852112c6f0 ruby-2.7.0-preview3.tar.bz2=5d8e99e3fd984c7d05c0bc483e1504e81ccdb920cbb2d78cad3c314e197b30316b692fd0199f836acac41246e3a713cb81dc6dd64c27cba56f807df4c193db1a ruby-2.7.0-rc1.tar.bz2=b5f96227775f8bdf19f944a555d0a83d7e84b37bd31fe4b8ac008a3272b1a28a4d94abbb1b5570ee32ec0690ba9d476b837a020a5194bee14bebf6f0e768bc79 ruby-2.7.0-rc2.tar.bz2=9010f72bb3f33b6cd3f515531e6e05198f295bb2a8a788e3a46cdfd776a9f6176b6ba8612f07f0236a11359302d2b77fdecca1dc6be33581edbb028069397a0a ruby-2.7.0.tar.bz2=8b8dd0ceba65bdde53b7c59e6a84bc6bf634c676bfeb2ff0b3604c362c663b465397f31ff6c936441b3daabb78fb7a619be5569480c95f113dd0453488761ce7 ruby-2.7.1.tar.bz2=4af568f5210379239531dbc54d35739f6ff7ab1d7ffcafc54fed2afeb2b30450d2df386504edf96a494465b3f5fd90cb030974668aa7a1fde5a6b042ea9ca858 ruby-2.7.2.tar.bz2=f07592cce4de3532c0fa1c84d53a134527d28ba95e310cd3487ac321c49ee680faeace285de544ee6db432a90aa7538a1d49ff10c72b235968ca362ef9be621d ruby-2.7.3.tar.bz2=e9236138be3e61380140f2e0d42f8fb82ad8f5219d454de2f6c2ec546bb208acc8b0f2020f23e6446660d2b3b9ae873cdd8298471f166a5f1efba8e80b05e746 ruby-2.7.4.tar.bz2=f144c32c9cb0006dfcfa7d297f83f88b881f68c94f0130346c74dfd8758583a68d22accfd0fc9f31db304ab5ff0bc135bfb2868145c0dec1ee6cec5ac6c3725d ruby-2.7.5.tar.bz2=0aa2ac44bc22859a39c43d08b7c7f457df05c2dc36b2574fd70ca399143ef1000dc5e496212db9eb055bc4258523d47d26db3c57a1a5a5d63cf1b3de9f81645a ruby-2.7.6.tar.bz2=4f7f3624afc43da25ebf0f01d5a2f92f72f94bab7423587cfd3920e089b479bf559b159adf2891b996f7e6a98c008a4f73a4a2170e2f8619417660ac1ab24bdc ruby-2.7.7.tar.bz2=24cc772ac1b56d3bb423f1b33716f221bf534f3717a506bf8235a698f8a454db7d79d94ae9a84067153c2f737b3f8f6085f34e36cc04be0d75ae2fdd57718870 ruby-2.7.8.tar.bz2=3a9db8d9e79318f869417f2ebf3365907febc0d1428116eabf3253c51d8420f255782b32fa30a54802b9f5f4187fad80dab0611cc80436feec84db87b0456ec6 ruby-3.0.0-preview1.tar.gz=b94892951f842a1538f4b99022606ac2c0b5031f1ede7eef3833a8caa9ed63e9b22868509173bfefb406f263c65211db75597b152b61f49e5ba2a875fce63a27 ruby-3.0.0-preview2.tar.gz=6fa4191425ae71e41894b60bd9c31d483a562ee8216886360ce18238ab48115b95be0367708612c45f634e7584fba8940a524ba0113ce0f36ce4df78a112d0b7 ruby-3.0.0-rc1.tar.gz=798926db82d27366b39be97556ac5cb322986b96df913c398449bd3ece533e484a3047fe35e7a6241dfbd0f7da803438f5b04b805b33f95c73e3e41d0bb51183 ruby-3.0.0.tar.gz=e62f4f63dc12cff424e8a09adc06477e1fa1ee2a9b2b6e28ca22fd52a211e8b8891c0045d47935014a83f2df2d6fc7c8a4fd87f01e63c585afc5ef753e1dd1c1 ruby-3.0.1.tar.gz=cb81db2c9b698cf8159b2ca6507f4c7f171e4eb387f5730c4b658ed632b7900a169808e6fbec0ee80598d937030ad5d9c56b63a2a339373ec5d9e1c06b7661d0 ruby-3.0.2.tar.gz=e1fba6f5429b5fca9c3f52a32535615fcf95fafa415efc71c46db4cce159f249112c01574c305026be5c50140335696042e47a74194caea045acbfaa4da738cd ruby-3.0.3.tar.gz=39dab51a0d784a38302372b99f96205817d466245202586d22123745761e9cb39db128ec2b984ebc3919b9faf2adf828d19c97d3fb1e56d44be0a81dc5d11b87 ruby-3.0.4.tar.gz=0dfded6826063c1b39bf625a6e13b46c109cb160c8648b78f0965f70e7c7a1a65f1c117fc8f2cf8bdb34d7cbf79fecf1f45d169d2323406d66ab27b18bde1d22 ruby-3.0.5.tar.gz=ea45fcd2ca53b87f18fd8696d00a1e340d2495443216aaf87d3f643cb5bd8bb614a1faacd82d07e7f2b72172397c728316a82d7c34a7b4566191268ea517ccf7 ruby-3.0.6.tar.gz=d596bfd374ae777717379b409afe8ee1655ade0c0539ada7a10af4780b818efe25a28aa50a2a7226741d1776d744e10ad916641f9d12fb31c7444b0a01d0e0cc ruby-3.0.7.tar.gz=66e5116ddd027ab1b27d466104a5b440889318b4f2f74b5fdf3099812bf5f7ef77be62fe1df37e0dc7cd5b2f5efe7fee5b9096910ce815ca4126577cb2abfaa7 ruby-3.1.0-preview1.tar.gz=63f528f20905827d03649ed9804e4a4e5c15078f9c6c8efcfb306baa7baafa17a406eb09a2c08b42e151e14af33b1aadbd9fb1cc84f9353d070b54bbf1ff950d ruby-3.1.0.tar.gz=76009d325e961e601d9a287e36490cbc1f3b5dbf4878fa6eab2c4daa5ff2fed78cbc7525cd87b09828f97cbe2beb30f528928bcc5647af745d03dffe7c5baaa9 ruby-3.1.1.tar.gz=a60d69d35d6d4ad8926b324a6092f962510183d9759b096ba4ce9db2e254e0f436030c2a62741352efe72aec5ca2329b45edd85cca8ad3254a9c57e3d8f66319 ruby-3.1.2.tar.gz=9155d1150398eaea7c9954af61ecf8dfdb885cfcf63a67bbcf6c92e282cd3ccac0ff9234d039286a9623297b65197441438c37f707e31d270ce2fe11e8f38a44 ruby-3.1.3.tar.gz=550cfda2ae492312009a58316e18fd77ea92852718b37443bcd76aac84ba6694fb841fe19bf23bee099f96f5aeed9d03e77c8c02fb194e414eca5f707adbbf90 ruby-3.1.4.tar.gz=41cf1561dd7eb249bb2c2f5ea958884880648cc1d11da9315f14158a2d0ff94b2c5c7d75291a67e57e1813d2ec7b618e5372a9f18ee93be6ed306f47b0d3199a ruby-3.1.5.tar.gz=23661cb1b61013d912b7433f8707bbcd723391694d91f413747c71428e74f8c7385c1304de7d08b70c9fa3bd649e4eb5e9acb472d89dc2ad5678cc54855a24ae ruby-3.2.0-preview1.tar.gz=d24e77161996c2085f613a86d1ed5ef5c5bf0e18eb459f6a93a0014a5d2ce41079283b4283d24cb96448a0986c8c6c52a04584abd4e73911ea59cefeb786836e ruby-3.2.0-preview2.tar.gz=5e9ddcb1a43cff449b0062cc716bfb80a9ebbb14a1b063f34005e2998c2c5033badb44e882232db9b2fceda9376f6615986e983511fda2575d60894752b605cc ruby-3.2.0-preview3.tar.gz=860634d95e4b9c48f18d38146dfbdc3c389666d45454248a4ccdfc3a5d3cd0c71c73533aabf359558117de9add1472af228d8eaec989c9336b1a3a6f03f1ae88 ruby-3.2.0-rc1.tar.gz=798157d785ebae94cb128d3c134fa35e0e90c654972e531cb6562823042f3fb68a270226f7b1cf0c42572ef2b1488a1a3e44f88389ad2a6f9ca4b280a2a8e759 ruby-3.2.0.tar.gz=94203051d20475b95a66660016721a0457d7ea57656a9f16cdd4264d8aa6c4cd8ea2fab659082611bfbd7b00ebbcf0391e883e2ebf384e4fab91869e0a877d35 ruby-3.2.1.tar.gz=f8bbff5e237b501f4042ddc70a19ac1ce74f72f147c90daf7f3007a940136abde37c12a0f7444f713ede09ba847c2cc2897a1742823832e3dc8cce80073164e1 ruby-3.2.2.tar.gz=bcc68f3f24c1c8987d9c80b57332e5791f25b935ba38daf5addf60dbfe3a05f9dcaf21909681b88e862c67c6ed103150f73259c6e35c564f13a00f432e3c1e46 ruby-3.2.3.tar.gz=75aecd9cf87f1fa66b24ecda8837a53162071b4f8801dcfd79119a24c6e81df3e3e2ba478e1cc48c60103dfaab12a00cfa2039a621f8651298eba8bd8d576360 ruby-3.2.4.tar.gz=b695b98dac7bb2c8755a106d949cb1b1b91551092fad263765171ddf8a4d86585259ffab5f7cc9bace70143d645dbe5932cfc61c6dba7817177de391d76bcd79 ruby-3.2.5.tar.gz=d86c0151fabf21b418b007465e3f5b3fd0b2de0a9652057fd465b1f7e91b01d00f83a737e972ea994a5d9231e8cb27e64e576852390fe6c2ad502f0d099fe5f4 ruby-3.3.0-preview1.tar.gz=0f891f140ddc6372aa7c4459f8784126e0c341db7b80e72c51e441c5153c43c2d7b965f7807c076862ac84b9b8b0c6a66bbf66fc341746016151397bb21c782a ruby-3.3.0-preview2.tar.gz=1c5a13e519e8487fd40d932b96d14fa729521925c288e7841ab5eada628e506ceca2605bae36eea1aa505d9253383d53cd933b7a4bff96e6de5b1130c7c558e6 ruby-3.3.0-preview3.tar.gz=94db07a6958c09809b2e5b597fa55a121074e8bacb3bf588c83cf0d35b07a8b070172035a49d1abf0d8ee364a9ace824f34e677f7327ffe1acdbab0938ac49c4 ruby-3.3.0.tar.gz=26074009b501fc793d71a74e419f34a6033c9353433919ca74ba2d24a3de432dbb11fd92c2bc285f0e4d951a6d6c74bf5b69a2ab36200c8c26e871746d6e0fc6 ruby-3.3.1.tar.gz=0c8ea922a79152ac7adbfb2541320565bce6a631692fd39d499a06f53ad6339c16fad8374d171351ed63f7bda3312b26d4f8c058c5b6df3d7548fde372c718f1 ruby-3.3.2.tar.gz=a15ba8d6c2830fcd1f2b36f671acf9028c303ec78608fd268da0585db8e95ddd971666e8029bcfa2584da2184a6534e1f2f2da07fa7ca4494e8d842eed206f00 ruby-3.3.3.tar.gz=0388a96127eb6e53b836f7954af51ff62b84cdb7abeab823cb1349993d805b151204e426b9ac04ca8333fbd5e01c386d58bc37d34c4e9286b219dcda7542a150 ruby-3.3.4.tar.gz=56a0b88954a4efd0236626e49cc90cdb15d9bfd42b27d7fc34efae61f500058e58cb32c73fdef5f1505a36602f4632d6148bf3bd1df539cb5581ae157c78c22b ruby-3.3.5.tar.gz=5c482059628ef9de5d8a6ad4751f8043f2fc2b159b768265be7f3ee0574ad51d9500ee4fc9146c5978fbd51313039c3de39e7b7a4dedc9bcd5d09a41a713f1a7 ruby-3.4.0-preview1.tar.gz=29c0e32179f7b823b6708f5328e495cd333fe8dd88f7df7d9051deab47add67b14d899bba565bba1a77e1b04c9693d9708541445c112925777bb6891cb7b2b62 rubygems-2.6.11.tgz=3b0dd38c0aaf313c59e299dcf54f7bfb6e6d84b8b739573ddaf599e584da45ed7b1465f6521131b32f237e31a4796d9ef455b8be685064b3fd77a0355dfff13e rubygems-2.6.12.tgz=ebb672488b50f5fc988eab66ab14ce8e887dcc635f71239a85e32fbf1e919ca70196eb4d3f2fee3486cace7064bab0b8b08339c754b723198e1b0b0a0984ab54 rubygems-2.6.13.tgz=c952b6061a9a0778db304c3aa5bea693e71ae2564abfb19f8b123eef66eb1e3877fc7c36f4f1527da97bb320870cbfd4574ac57ad88e850a44fadd67ebdac152 rubygems-2.6.14.tgz=7743845bc5265df3782f85a23896cbb250d8a2bbc9934a27f274b001afa7aa62f7f00f616296f74747ea612d2cb37dd7f533c931aa72550d84c64d2a73d60daf rubygems-2.7.0.tgz=0bd08fbabcc33687c98365ffe6794ca2a5e82160b0297479d4f19bd899d176b7f4efb95248898b26d873f9fc7d86c10cada6e40cdc48738b0bac261c3aad261f rubygems-2.7.1.tgz=fa4ea123760b03b8b8e8ececc55c9dc34249073fb267d310bd903aa7a613267e5d27990bbf28e32c9a746bf884af8a84a0dc202297272f9d477f7710c21bfb60 rubygems-2.7.2.tgz=0f48c6e46663780a571c7ee0e6e772f2e18a755031e7dd8ede7870f238c214b9e3e38153b1ae8f1f78a9aad63c1a079b86573b3a25c57a600d842bdf92b9c4d1 rubygems-2.7.3.tgz=2782331b31947a23f85b285a3d5e7b66e34fe5847bc84dca4f1e6bfe33ce187ab0cbc814229de8111aa19490b656ca78b7c821e4ea6b425449991c01371b7565 rubygems-2.7.4.tgz=90f72a46709ef847666a6a23eecf24521abd5c294b2da8a246bb4c7f85daf4af39a0634fc8093c7bb7ded2ac137ea27fac5ed94af3b70c49e78594285c7a40ce rubygems-2.7.5.tgz=86957f1c438070135df527a15102e40487fcee93a55251463095e4c8794a8616d16ed9bdead0e0ef83c44806bd5016ecd9e178bef608b66af2e68e2c9c49e941 rubygems-2.7.6.tgz=bc168afc40c974dbc7c37eb5678432ba2ed7469c3f007a159699467ff2cff5205c508237193ee8becaa6eb555b043969cc5f92b2aaa6bf7c958dd7c187e258a7 rubygems-2.7.7.tgz=f93b7eacf5ef8725c40d618daf9deabc7e9eed74b3b7f13ecd16f89205fe24958e782314c52f8a8fe3205b93e20b830b4fbf7ff8944ff1cf56feb7de2d773252 rubygems-2.7.8.tgz=3d1cf68377dfcf102028342258aaff5a7257d2d2b34a80508c85aa258d810add46e65a157f902c271b0b7b568c437372d17246e89cd88f8500e47c008d17f1a6 rubygems-2.7.9.tgz=5f699f47bc24d8ffd4f8f44a509a9df71fcd945ca2574dc9d5050bfe06a44830a368f45d204112d7a4f1877e1600a6fe4d1b6b68f9a55288664667b4220a7d72 rubygems-2.7.10.tgz=48a18c0f202f463c38cf5dafecfbc7cc39245e63c7a059ef2cefadda478483794a929ea6b7e0ef062dd4423230746f1f09d7bec06a97fe3ceccc3325397a3e71 rubygems-3.0.0.tgz=047f4d446aae414e4803517088ef47d5cc66319ff08a3795c6d69e83eee9f3e7c3b05419858f7e5b6a8ec224990ca01178a9259961ef2d7ab737bac352a0f18d rubygems-3.0.1.tgz=dc29ad51ec67b1dca82a23973ea92153482788964d0755bdcd3c650116915c461c6e5fb1c826be3ee04a497fec4ac2826904bd406f24611e77cd8c9eaf4d8729 rubygems-3.0.2.tgz=90b46c2cd4f8baee74eb488a40691cc00e754cefc42029d485163d6ad7782df78ba5cbeab08eec6a4f71febe0f6e635e12a9381393008c58eb5e16396df93fbe rubygems-3.0.3.tgz=1dd585243341901c7b4cc60a4902000c10ce57fe2cc9c28e27e274a2e6029f936cde1c99d7097c93c2c5b2c8bcee5d692c8fe5cc00c996a040e4954b674e330e rubygems-3.0.4.tgz=887c64226ec0b32d33f2ea331936683406d54dc74d19e658a23521e25ab50aa23534fe9eecaf696154247ad1df1d24c233d8900b9aabc79096eebd6afef3f775 rubygems-3.0.5.tgz=f5a97cf67d7d043afba7c1aed014f1b64ff6376ea74d3d6533496bc5ca9742e0ccce1a157e6f67d8fcbe59d8e34bbfbcf4ed8be97acf2970603de6381043cb78 rubygems-3.0.6.tgz=1ef1822a2b19790a36a6d242b7d4584222617baa27787ec58961a9cfeb2733f19f9085490ffc72ee375d3153c7114e050c42e68fc8039e727fe5961b09365ee5 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=5dfb040b746e462c297ebcdf84e0f07cd74b86852055dcf0a7cf1814112099bc674bcccd94b03726aee76b253c9345a45d046cbfea230647644f0fd6b1c1ec96 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=17983c442c54d19196be3626e25c64f5474139c0b973624832ba8730efb047bc747c02e59c82f38397bf012c63ab83f79a9c1b64311cab796f08fe96d7d12a1a truffleruby-1.0.0-rc3-linux-amd64.tar.gz=b0b57082d61317911f101da617333d81ee6bede6b6e18f9bed86544dc413339c830198d90cad7ac94c0c8fb690adcfc559dd9f530abb70507ff6a76eee552b61 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=18f9782de56269389320ddad779ec69c168909198d4572e2ea4c18bc8082a539569a76760a6a6da58722fe08d77d83904aaba14baf4075a2833cbd2efc45dff3 truffleruby-1.0.0-rc5-linux-amd64.tar.gz=134d9ba5db7b8a1960d3a88390cd6f7503a0e8565094fb127333d122cd773bfbf9dc976c659029007e6fb68e93486293bac2ee29ab21dae9cb0c06ba57dd2c72 truffleruby-1.0.0-rc5-macos-amd64.tar.gz=5804f1f27916176f5a270de8aac85bc48c38ba37c4e719b09f5777e5c42429271819378cfe096c3cc33d406cd0726f2e37658020f97a438fd53751019831569a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=2597b375f590755b851d3b8cbad3eeab4c965eb02d0c944044f57e39f6c3db1e2f513e2aa55db789e4a885c697f81ce5c8bdbe9a7e44ee30fc09d234e44fb512 truffleruby-1.0.0-rc6-macos-amd64.tar.gz=2eb177190de0408dfdaf30264132955d1db7783ddfb63880d97d5933f66c5662794c3bb6198edf230fbff348674203e61f7f5481e74ac875974467f2f128e939 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=ab3a3dc19f903e68e36b135729693fa025a7c1950139277255e48c972387ef8399beceb3252ac37cc70c0df92838f8a0ba8c45f53665ac4286ef23f9b240806a truffleruby-1.0.0-rc7-macos-amd64.tar.gz=b8423f50a5292e211db7ebd7e2b987fd5c9eaaf34eba86b0644d2716a7f068f2e56deb4357c516b87b437e64fd5ce8515bc181165cc1042c6763f27d71baa59d truffleruby-1.0.0-rc8-linux-amd64.tar.gz=bcd05d304ee9b4da97193575fb1ad78041a0c7710bb444af6aef12ab4261b1873f472175ec51a187a5e99da481d66b81a132fb691643b793e87d655f31d54657 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=2c758221793c38ca8af1831a5d9f3abd555c406569508ac3a86d3c1ea5baeeacf65abb6e904ed3b1e58f555f51bc85ab171135ff4c3d0e08cdae994a861cbda4 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=42e60b69957f77a8623e0dccb7d215e800c27c622364fa76b9c574e8b1d3a4056a058b61ed91eac2375ecf4e51e482a6e17550aa2894a44d1db70687958033da truffleruby-1.0.0-rc9-macos-amd64.tar.gz=18556ee8d2fdec6907fbc8fc33d8b32ea0c58d40ee3df084ffb233e2fcd3a514a553f97c31dcc25dda3f86b1b805ca5fe3c9bf8cb078b92325515f09db6b88ba truffleruby-1.0.0-rc10-linux-amd64.tar.gz=10a7cb1be6214347469d5797091f73c3d7824bfb32a47c13566573a383380b1df9b79b7901ce0fa3af1c97285c90afac21e2de7a66ed88d9495846743b3b25e2 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=53f0939d9d8c3470cb79316d865b765816032528d77a3cf497134f3aa667a6253ae037410801261a8e7d0628198ac5f6aea5ecf9b7313f06ccc1d5e9f94e74ea truffleruby-1.0.0-rc11-linux-amd64.tar.gz=f89bc9a3310634d39f68006307da0b0ddafae036089bdd663e8372777a9562d201a4e69b2e1a602cff5fba6c78a8d4861b6d1020679bd0c72c71b938a4f36a27 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=3f461c12fa9fa57a55cc390eb9887df88f404661a77bffb44f82b4c7e9021513a6df9f6d5f332a36ce0c28ae7e3d5afbbe15cc4b814bc7f86dac2e5ec280f947 truffleruby-1.0.0-rc12-linux-amd64.tar.gz=85f042c308ccdfbeb318cec37056d8d970cab51cb0779425b85b8f76b0a1dd9cdec3191ae2b6b9b6be6e95767db814496450ed20076addd9bd495742f9de3c8c truffleruby-1.0.0-rc12-macos-amd64.tar.gz=067a0f63bbaaed4c8d4120f758c8ecf8c52afd1d30ea9d41489e26289d57a574d2d4ae29e29655378510adfb3f4a07b04b403d6ee98ee6b3d3aa8bff9c8d718f truffleruby-1.0.0-rc13-linux-amd64.tar.gz=1eb6b80cb05133d253f20629a11ed9ec3f37da002d5668cdc6577b2a20524e0cdd4d739d3f1aa2e8c518e2f7ebfd519ec1c647293714a1133ad4d569375c0e69 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=e3cddb0d0ae48f7d5ee4dd094ddb5a13f6a7aff1521b1adf25710971664b235cf67144e3b81525fd710dc49b6f6f6ba06e10eee1df5dc08119e9494c6be86934 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=c982194675b66a0433bd5517fc6f1564db669f595f8c7ba4819bf37e0599474d49a0c606577a898c27fa5ba40ab793c62d8211e7ea398d6b3e2bcc31eb5d55f4 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c14e396396385644333fb4c4aa1fb4b934a3f4e46312146821e5dcdaa097cb5b1efbf397c1dd6117d909803fd27ba8d835904672e98d43dc565e907fed752e1b truffleruby-1.0.0-rc15-linux-amd64.tar.gz=f27a75f929a6e945e49ceaad12f484fdaa918469a2f639b572fc4737b78e1cde0881697057e13a58b2fab7ac64c3a71bc9951561c3a8728e3dec814ef5e95fee truffleruby-1.0.0-rc15-macos-amd64.tar.gz=7aa029c4999d4608c9bcc491771b0434267032dbe9dbf504728079f87ce93e6a90e0fa839295b88c00e5a025186ed0fcc42361428b7874c05e222edb108d6c02 truffleruby-1.0.0-rc16-linux-amd64.tar.gz=e8c508dede11d4f54cf0b15cf92b50caad93076a6065bd2d6784c5ca739f5923ea2b894c6b2b52131f62187c8b305cd11a960fb5a670789802d59b6b2999f0af truffleruby-1.0.0-rc16-macos-amd64.tar.gz=841eff077c38bf594b101edb15942f601ba0dada2122b21b016f53251aa2a635b8d0b63b49bdfb50259b2545d1f498bca95d5f771a15a28edb0dd07216c9b709 truffleruby-19.0.0-linux-amd64.tar.gz=8ec6c7829351e0dc2cce57305947cd540734fe5a0b95b9501d4179993727ab2c331e9fb639b9865c0fed596df3906adf3dcf2efb22c4cfdd23a3dc2137025fd4 truffleruby-19.0.0-macos-amd64.tar.gz=912e0c15d32e40c884b2caaaf9a86a71450d441c960ef98a63dfce80353619073b146dcfe03d9af4273b2811d0899eebe922cc84a51d6f5e6826cc436d793f78 truffleruby-19.0.2-linux-amd64.tar.gz=eec92bfbd776acd61709a428b90b1029c5ea83e5ea839304d23cae3a541dd4fab3b387691fa76643f55d5939c9cac0cbe70dc0b5786e5e0e5d20f3fcd9a21356 truffleruby-19.0.2-macos-amd64.tar.gz=ce647b76c9931feac55baa5acd2c87d8335c606bc5cd7e462bd92ba1b09f4bab5db927f021e3119abfd85c33377003d060f36cf64eb121954fce8878112f01b5 truffleruby-19.1.0-linux-amd64.tar.gz=db01e6dc09fc5f39ca466aa94f725023d49a8f52343f129bf8c32b7f5f76ccf2d573ee3344fce3d5aff9983bc9af618cc5ca6e1dbba93b3f604e4f33f8a69b3f truffleruby-19.1.0-macos-amd64.tar.gz=f002bc0b6efca11eb97c4aa6df33d2e0fcc1de3443efd39d912b028df9dd8954cb76ef3ca7fbe140f4e922d6ae4c1a6a20853490ef1ea0749293e2fcd4ffe8fc truffleruby-19.1.1-linux-amd64.tar.gz=ec031e8c216e31f034d97aaccd6441869221d6946e18f375b44a866550b8e8eb4b2fb923f9ce1a62853bdcd5b9201e0f5d2732ca6525d80171d5732ef522bd25 truffleruby-19.1.1-macos-amd64.tar.gz=1c15918af939a8fe1779b71d9e53d2ce09ca7353173a3b357905d9fe1981ff013cf0f90c6b47e1ca66dd168c2f2d742f28a5fb134cc0231d36146da99f91c3cc truffleruby-19.2.0-linux-amd64.tar.gz=1248bdde9cd3651d7042fe4cecff4ad35534868d543fe2e6f3a5bfc3bc9d10d57b4139fc070f0a03861436a1aabc9a8ebdf3356f39b77a4b8f6a1dcf492f70a4 truffleruby-19.2.0-macos-amd64.tar.gz=92c3154ed229a115cf392826494745aae06dd9228dd0996c2c44c550552f13f9c254367d068452fa4a84eef79c19601c79b87e10f3121fd7b83b803514a41cfd truffleruby-19.2.0.1-linux-amd64.tar.gz=53c78cd1f255f2b7031a70a42b65c0bf80c510b9254f5d7ba82b4787f55f5b09cfa9544c424a90f4619a74179fed07c168bd501e34772ef836a773e89c467cc5 truffleruby-19.2.0.1-macos-amd64.tar.gz=ac11523cd49fac50de1e441039e429fb8cd6c7051d537e5083b64fa68eaa19c9f0a966b269da906c367985f229af82a4811282dbfd0a76ef6565162e1081a659 truffleruby-19.2.1-linux-amd64.tar.gz=c5ffc1b592a74e836a4f6ec75b0e103150a4a40d3183ae853ead38c951a85378163111cf0bd2b81e44548c0a7aeaded3ae8a7ae558d5a02dc9e2cce992b79b58 truffleruby-19.2.1-macos-amd64.tar.gz=bb467b91f66eb7d1e6f1a54a7bc0a3d9503bcbd935e8a02da9ea0b749a51e354b1140d4a4dad6fc05312b560bb9ccdcce4f6583bccd19bb5afee19bf494102fe truffleruby-19.3.0-linux-amd64.tar.gz=0e94777a3feabbf0107ed40847e20dd4e3696ff2b7c3f6ceddf3a53ccd812bd003c84c62a750e8fac9d2490374bf792d69174b48c3ed36b593485d86729136c1 truffleruby-19.3.0-macos-amd64.tar.gz=95470c389e24c865ecdc3d299005cd98f8221a128f3cd75f899b6b7ae5d6dc07962443ce0ff38dfd014589d5aaf08b718dc870a72eb7ea6ced18ec2b2db63095 truffleruby-19.3.0.2-linux-amd64.tar.gz=dc5309b71980657f750b4dd4f8b3bc4e191bc305b638b1e562ff5b0ad7fbba40079ba674caf46226a46b5ca58c10f812354786696264742f351b129fb088a672 truffleruby-19.3.0.2-macos-amd64.tar.gz=ff1c37485ebeff3edcc7081ce09bebe5541012dedff6997662c7f8a064e0ab10bef9a5cdf834263a06ae04ca0391743948bcdea6e6c9d7e1cfef9f21523c2bdb truffleruby-19.3.1-linux-amd64.tar.gz=c724547a9eacfdd135ce05eac9dcfe74e58a5e77c97f88103f83b8513c15c975a0ecf623f623a425ec81fad1b64d3b5e135660d6943608ad08048cda00eace79 truffleruby-19.3.1-macos-amd64.tar.gz=d746b2ad410c15d145d36c676a070ae454ba8e5ec6c594d5ebcf54b1fc719f98e8b8f71b6fd504c3d38df286bd11c5114f73b5ba39be312b11d42d4ca1a17d02 truffleruby-20.0.0-linux-amd64.tar.gz=4efea5ded5fcc6886befba3a3720fe1e5b2e376d46738565e8871a1ce0201a33ed52e78b8af2fb389618bdea99466d126d8537dd0919b0c13f8ff1940cb3e52e truffleruby-20.0.0-macos-amd64.tar.gz=b36488330514b77c7115689042cf2482a0beb9f72a0b05fb4c7a6ecb0835a3da47c3b15c41abd6ffced023e65ecf7eabcfbcc6e41901dcddd0fb3dfed46564c6 truffleruby-20.1.0-linux-amd64.tar.gz=116d57404540b85c15b321793a6f985624a2044af544e659b3607e50159703af5d445e22bff28ae2182dfa752f7500d420e250f6deccc98a2f01e89adba8ac3a truffleruby-20.1.0-macos-amd64.tar.gz=9b1267101dfe78b85c79f7528eb4de96b16933e66d5771efa6272372dac0fb35b199bb9d42773d61f4fa7a15d6cbd18b5753c148f7c3e477c7c4b21633f12b88 truffleruby-20.2.0-linux-amd64.tar.gz=a37eaf8475364b74d948979ac13dc6e6423bf11949ad1d0f2925f78a4495e80de9767001ccdb777c8cfd7f545839fad4d842522620c3acad179404bc4ce6752c truffleruby-20.2.0-macos-amd64.tar.gz=964c1e02cc53e1646060334a9911771e679a8344d811a0f77d5cae3529dfefff259c45505ac84b7debb958514cd5d2276ffd435802085494e0229dd140ce8f00 truffleruby-20.3.0-linux-amd64.tar.gz=ec2d8ff6a5d45fd7091e26430c67cbbdc0f8ffa41e9ac574d48802766fcd144e1f446db807700247ad6d8046b7ed070b5da70ef667e576d6fea60cc64ea5484f truffleruby-20.3.0-macos-amd64.tar.gz=1878f94e05a3c40484bf944a72412b179aa5415a16a7ebc1610cb512a1e1c4a2ce0e98685257ad6e5c14745245c35bb5b28205fb687292c4f17193cbfb3bb606 truffleruby-21.0.0-linux-amd64.tar.gz=b7d1b76cc015d136dbd74515431f4447730850475f81b00885b71b95819134db2656d941736048db42d519f03e1f2df066226513b77208adbdbbeda1f49cab11 truffleruby-21.0.0-macos-amd64.tar.gz=7677b827a9c1758d5f941c512cb0fe8daaa19c3db77b485d7dfa43940151d6b9094c4d9271e18ef5014630142dffb93d168c7ac631a3b5eef6fc61b2f9eecf88 truffleruby-21.1.0-linux-amd64.tar.gz=010e9fb78cab12486641780392be0f284da08dfd955f3a0d1ef72adb52e1c9024b54dc880173645aea2af680b3670a6bb01409198b757239edda4cd9bf2b1e90 truffleruby-21.1.0-macos-amd64.tar.gz=96ef8481faef1bfa7f01bb4d396818ef6f0943d19c6a23dedb68f8346740b72bf06efc707bdd29158cf991cc7073c97f429a07b02c2a48050512b46369850058 truffleruby-21.2.0-linux-amd64.tar.gz=c20af04909a852cb676c90403d852fb367d56eac0f9cf8ba42caa4cad1013ba393cc4611e434614ad132b7b0ed61160aadd887001b08de0767cf58f5e149efe7 truffleruby-21.2.0-macos-amd64.tar.gz=0b8d9633fde53aad78f0baf52858cd5a5716f53ff21698baab17da4a625b4369b88dbd664193e3f0d1b40e64c88699ab4f04bbe40f54189a588c93678962a7be truffleruby-21.2.0.1-linux-amd64.tar.gz=15ceeee383114f974aed5f16c99131d56947e13cfe248b97e55d61263ccd51aa56fc3e0df215196ef7f80ccba9e7f19e7f261d7a91d54bde2d9992caba682d82 truffleruby-21.2.0.1-macos-amd64.tar.gz=8a8762d90c19db4f48433ce0e3f3339e290685d79c6ee9bb7d4359c741edfa6a7360ff65124433d964730ac25b2cc6d8b581191b0a51479f11c2a80031a6c1c8 truffleruby-21.3.0-linux-amd64.tar.gz=b0c07b1ea797de92447a81b350d460c125a2efaff3c290637c4bcf1c216b5abd11148cfb143ad397062a96f36beade8234d0785c42f58fceac0011f629a5220b truffleruby-21.3.0-macos-amd64.tar.gz=42e607fa52a534123989ad232691ede65aa1c615f39320d93aa8ab9c21924eea7bc0aa49aef1a540ec972e2b3dc775d22a99eca3e0c9bc450c525f9020fbb975 truffleruby-22.0.0.2-linux-amd64.tar.gz=2231a0cfd27238c34ea0bbad27ba387453e48f39032607cbb829b347ea6ac804df15eb3f84d50b09248782d6202284498e7bc9aaa2060f0ce81bb83a84d700ad truffleruby-22.0.0.2-macos-amd64.tar.gz=1d7ac44f0862ad23cf17a7bba73d23dfd4727aadd9a3aa9633361e9bcd19655d163e160eae9c8db8ec9892f8fbf82d7a38b1cd689475bf41609a828208098623 truffleruby-22.1.0-linux-amd64.tar.gz=c4c2f9bf4236118c8ea62c08bad89e1034ecdfa0c4815693961c4d2b1b30ca043fe958abfec9cf36a8638aa2e005e71fcc244ebffd9ce11eb68cf48bd98c29d3 truffleruby-22.1.0-macos-amd64.tar.gz=507004ade838e614955e23331845839be656aaeae7869ed3d989c10e6491775a12313ac9ef03e14945f20f5e76d46ce6f7bb860af68a627c48065399cea3c567 truffleruby-22.2.0-linux-amd64.tar.gz=37c09249ef387df3e0614f646abb444cb5b7b2751538ab0432e703abe92a81b82e0d15f89d5ad7cd58afe5f30d9a92dc8471d19f1c1ce10b50478ac74f247739 truffleruby-22.2.0-linux-aarch64.tar.gz=49a7cfb4c81980d9c7a1588ef9f76a9bfb759d4b1925ab11f230d99c15a62e162a08249d23cf5646e2d38ecc2005e27103f2e5d92b83b0a182a4e64319b70c0d truffleruby-22.2.0-macos-amd64.tar.gz=d4c206fb0a5e63c5b7f61f2e62de854e4d0817075ef9ded237d98cd821c286e88d7b150d140d9907a957209f39be96c7025560e3908c89aa337925d2fba690af truffleruby-22.2.0-macos-aarch64.tar.gz=a01c18803777a74717ad699b6ee51eb759d881fb436d24338b557c52d4a693079d7b55f108394ccad0dd69c974cb895f4a36854355e84fecb67e41bf9eb18514 truffleruby-22.3.0-linux-amd64.tar.gz=d53472ae892dadc81c6fe63a597ccfb67e133958431b11716db4d920c78fc86f7496e4b10322d041c900bed77d27e02850da20aa95b297d63a9de2e72cdf3c76 truffleruby-22.3.0-linux-aarch64.tar.gz=dab63d49db4722f0c174ce8b882413102520ff649182946ba332ef5ba0fc6b58913595539a20b59e460faab2fba36f762dc8eb66aa729d4a6bb90feb2a95f053 truffleruby-22.3.0-macos-amd64.tar.gz=15c91d25fd6fb1d9f3f2a0b36676da5c8a76d62be86cff463ebe6c7e6aed2d9b6de9062021ab1b9b29cfb7a92b5682c860939acd71d12dba7e4a6bf3964fef3d truffleruby-22.3.0-macos-aarch64.tar.gz=7c44d0dd07e4ecd84a92f6dd574dc185906121b8eb75f6fe097b9d4738aa30751664d70e9027e072eeaa1dffa05fe7bcfc06be0c2dc950142f60664baf5eac69 truffleruby-22.3.1-linux-amd64.tar.gz=f41d3bd22500b7291121368169f8558df4563c840a01b70ff7feea3593f0152d8d77d4437af362bad62f25b79bce1ce8ddaa1bd8172a2a7ef8b61cdb6e478c9e truffleruby-22.3.1-linux-aarch64.tar.gz=1ca5221f0dc5ae3e0bd9545be474e115b2e62737701df95c6ee6cdaae5d82815acbe6af961ff23afee64dc26e655c7786d4347e3694c140773f065534322ee59 truffleruby-22.3.1-macos-amd64.tar.gz=bae16cc04c6018703833121f4258c3f18fa5062309d0600458be3c51c838bc63976a026db0f28d23005df9b640ccad0a9cafc56610a5ca9c24951c66b62097d9 truffleruby-22.3.1-macos-aarch64.tar.gz=b56e230d8fbc95d19364e695aaf1e552238b02ace7056f636808a7d7510777cddfde572ace5238ea1e314351bdd1a053ab3912d0889f51f55c722797c83eaaee truffleruby-23.0.0-preview1-linux-amd64.tar.gz=d538412f12d5ce743c351acbaa483b8b85dd2cf84fe06b3e90ca21f3c2fc0465df9c1773b3515fe4296d599f45e9cbb935dc5a69fe45668321e5639d58608ef4 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=f10b5ac749b11f93c2469f2c8a713ad090cb653761ae0a3e1ba4c19b0c96bd61c5e8da74d8944f9487c2d327d268a188f2cb56028d2beaca2a7816e63123600b truffleruby-23.0.0-preview1-macos-amd64.tar.gz=cd9db49c4253bd66cad6f9ae111c83d3befd0102a7ccb72a2407d22dc576ba7f3a26a90cd479f26dee3565d2f893a2b7c8b549e2351336f35d2632e57966657c truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=28b77d9943cd1617e0445633a9fea8911cfa975f5c581192439cd0944d2a17c2b0558e3e4112588b5fc77b57c48d857ad68ac51fcb867250625ad85406d87acc truffleruby-23.0.0-linux-amd64.tar.gz=da702de2e8c994f2646a3de5b44824210dbd37129cd2f91c3bdd990a1b0d0b05dee4443ad0f6cf98fdb4e489c9f4cde64f3561baf486dc642d4981a1a1812925 truffleruby-23.0.0-linux-aarch64.tar.gz=808254a154adcfd1bbd6e22bcdafebb6169c6f8cfd1c55382d446bb66002384ee844dcd8b5f642703ef440f7566645d190081f45e04a7d8d59bf87571cb4430a truffleruby-23.0.0-macos-amd64.tar.gz=f775d57e63c606eef424a1115408ed8539ef47d6bea0125ad1de7ee4fd5971e96747cb7f5d22d91d2f004edbd6ed6b9b5bd014127dc1abe7821a3a987a72d9dc truffleruby-23.0.0-macos-aarch64.tar.gz=000069854458f81d97eefe14123fbb69937942825e77d35602d55fa279123808177a34f252aec9dcfa48b93feacbee81ae0f0e7043c2d8a9ace2a4bb61ab253f truffleruby-23.1.0-linux-amd64.tar.gz=1868799d989c51798cf07b5243457af7ae2436dd19805fd634c98b2f1885266b5c3ec81dde668c2e5a290e9028f6f9fd223d153489df6ffcc74d45240aa020ad truffleruby-23.1.0-linux-aarch64.tar.gz=2766621877996ad35fddb94f978feed531307e8abf601dcf863754c96782b8149c3ac512dfe6dd2bdef0fe0e8a968bdd77608c41020434aaef4e7250c09edd74 truffleruby-23.1.0-macos-amd64.tar.gz=06c5a1d6ad644fd81737f0a1fd24c1529f712abe2a4485ad597aca7c35ca2af898121bb5883552cf518e2afdcb4221c8ad013759b46a69e34249e7c5ebe2b170 truffleruby-23.1.0-macos-aarch64.tar.gz=496cacc5cf413a48b60184e097a962ab5d2236c539f07cc0a9a2d9ef57dfc911a26b125cc3ad9408f6170c6f93c7562f35729c8313be0301972be21c10097942 truffleruby-23.1.1-linux-amd64.tar.gz=dbca85e281bf2484371a0bbcc202ca700acc704304d966b9202cf3835e82f6eb502e43522355f4c9e5a743877d93f5609006fbba2c5e6343a89de130e5209f6a truffleruby-23.1.1-linux-aarch64.tar.gz=6a58842d79247d8a64c513d68db9d53ea5640c02f71a1bc45f103baaaca67bb224939ae5f21ef55daa9d9b9697404052d39a3c382768ca366ab7892b8bf1abbe truffleruby-23.1.1-macos-amd64.tar.gz=7cc6bc957b7ffa42e9fbfe2f6e3014bf1e7996f2754e9e74377078c2c7bc7ac8e10598f1e1452839fc5b9583c823a2a735731ca193a6af2814a02566cc4cd9e4 truffleruby-23.1.1-macos-aarch64.tar.gz=a85b8189ef8a280f6a27d4c1c93893f844266dbdc15b8c4988cdf581613a353508fae4872ac9380efcc47f36357e137861521712c00ce8548041762a8987a9b2 truffleruby-23.1.2-linux-amd64.tar.gz=6307fd71fb1431fb12346d1f13dee4b3afe53947e8a9c1f3e3aa0baae5f9fc9e1496ede0a7d86b169d912ffef9625af998b4e698dc57a2a649140150e3fae28a truffleruby-23.1.2-linux-aarch64.tar.gz=0f0c5e4aa4e9fbc9b9f91d2b3d3fbfe26e78c5bc5b369fc78dd54775a7582b8c084a64f02848058bec79387fd80b09a5a5594ecfb268635fe76e1f9d957c2e92 truffleruby-23.1.2-macos-amd64.tar.gz=648401a73b29c28862a1fa077c2e1bf8fff65015c8bc690ff883a00a3dfd99389ffdb71f39ad85a4f16c531470f4cc891ae51ec927a426b0fa05fa85c9c6a2f9 truffleruby-23.1.2-macos-aarch64.tar.gz=4ec88684c09aacfa1d8bfed9a17243579ededacecd869e98e12841710bae29ed6e5f080611e53fc217a853f730bb2a9cb3d47ef15443eb8a1ad76a120118c8a5 truffleruby-24.0.0-linux-amd64.tar.gz=3a59a4dc58ad03549d8e63db1485767757715fc9aec21b2b67b1440b13871a04541abeff9bc8201b3088e1865360b1667459e536d3cfb09687dbffca95deafeb truffleruby-24.0.0-linux-aarch64.tar.gz=50f3993b7362bb6e7da80f7327df3d079bb02f98b67012e2135005d77e61648e4f3268f767d8ca245ec5889ff934fbcccb94fd5ecbd55bb0cd9cca900fe10509 truffleruby-24.0.0-macos-amd64.tar.gz=9ec8bb340b15e29550448e123e3ab0f183edb9bbe7e052743cb2306cbd1956a5789c5a367c80c5e8d913dce2b804448dd6815e4d3421515166daf8db51d37c7d truffleruby-24.0.0-macos-aarch64.tar.gz=499f83bf65dcb6ecc92414a3550673e6a0baaddfe3ab13c0bd7aa1bdde1ae2a61d9d0ca8001c0d12688d9e09f98f9e2946a651220fe7d200bb0ec6f285394701 truffleruby-24.0.1-linux-amd64.tar.gz=62b4e8508eba8cdaac70e99ac9cb0b33a663b4195d79b2dad3d771ef538c6c41d1d91bb7bb07fbbafbcbbcaf17814ffaf6d6bdbafd474ba6a8ecdac30315a8c9 truffleruby-24.0.1-linux-aarch64.tar.gz=817d877848ea4bb55658ce34bbda52926be12426a8a5e1c4588bc0ec1896018b06dce176336b382f80a7c6d073d4331b20694a7797ee8fdf0177e973053bf929 truffleruby-24.0.1-macos-amd64.tar.gz=2ea65bea154aa38cce3f00f24fc9a4aab5e7478fafd070d0cc966878371c070d5a1776b7405e2c9e4cfa14e5c51219ed0fa988294eb4708690983b348886f439 truffleruby-24.0.1-macos-aarch64.tar.gz=bc1923e21768d34779c1bcd7850456a01ddc01acd1ccf20f4fb4a446fb847f8c51b1ff4a7c0cdc317ef8ce057ac24f18f25b778a02a6e2b185e0055d946ecaf2 truffleruby-24.0.2-linux-amd64.tar.gz=5d111beb862b618c4e6a7f8aea1d3d6476740513efdd59bf980a2b6d525a017f46fe02017b075962a4919a001b60bd9a070e69fedfa8a85533c0adbad2a8d86b truffleruby-24.0.2-linux-aarch64.tar.gz=8e3ba19df4e5509c4719bc3bb621f70ca6a0e683d48a296703649b88abd83a165e8a64ad2d7dc45394b6de0b214a95a395fa449f5393dd9e67deab9e149cf494 truffleruby-24.0.2-macos-amd64.tar.gz=06d3b5533c4e26aa1356e602c672efad99208aaee96110904216e16dcfb1d99a7535c3ef275f9a14635dd2f05110798b3c75d71199f6010f23c92c6990492cef truffleruby-24.0.2-macos-aarch64.tar.gz=ba36d3f1680112e6623b14a4bb902a5f65f11e9827f44462161b1c79ee344ca340566289aa1f841c1e213daef5608c159343cc203d07f41c2a55eaeb25db0987 +truffleruby-24.1.0-linux-amd64.tar.gz=9a93fd61086fabcb6c4f3a0fcb16e81f42b0203a24a04209fe446eb5f88d78e2ac59ab54d42cc30ef5417199a88b452973eecdfafc57c7877e11edf0a3d42b13 +truffleruby-24.1.0-linux-aarch64.tar.gz=ca23edf279ee9b4693630df9596c6e269bb544e06bfd02620447f51108d9e9b4dc8b3ecbcc7a8ba1280560c0eb4b59474e75acead81799e4c51365acb5676d24 +truffleruby-24.1.0-macos-amd64.tar.gz=65b661b3bf497bbb090a2cb49607aa00c3e5bfe95eb19c7736d798715d55fe07ddb4e8d8c25c1ec4b7b304b37205c7de9d8ac2d56005c9fc43e4dc81ae699c9b +truffleruby-24.1.0-macos-aarch64.tar.gz=ab665d995bd63839c0bf6ed1171875cce7974d49ed79953a05ecdcf13d815c0a5cd471f40839f3f51a1b3128b40a4ed34d9b89e4c3f343b38c78276aed667956
rvm/rvm
c72aff0104a082d22a75d7e4003c141aada370e1
Fix requirement check for Ubuntu (#5500)
diff --git a/CHANGELOG.md b/CHANGELOG.md index 00aec19..877ee36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,554 +1,555 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Use OpenSSL 3 for Ruby 3.2 and 3.3 [\#5480](https://github.com/rvm/rvm/pull/5480) * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) * Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) * Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) * Install `libncurses-dev` instead of `libncurses5-dev` on newer Debian and Ubuntu versions [\#5477](https://github.com/rvm/rvm/pull/5477) * Use `zlib-ng-compat` packages for Fedora 40+ [\#5479](https://github.com/rvm/rvm/pull/5479) * Detect core count on ARM-based machines [\#5498](https://github.com/rvm/rvm/pull/5498) +* Fix requirement check for Ubuntu [\#5500](https://github.com/rvm/rvm/pull/5500) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) * 3.3.3 [\#5474](https://github.com/rvm/rvm/pull/5474) * 3.3.4 [\#5488](https://github.com/rvm/rvm/pull/5488) * 3.2.5 [\#5490](https://github.com/rvm/rvm/pull/5490) * 3.3.5 [\#5499](https://github.com/rvm/rvm/pull/5499) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) * 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1, 24.0.2 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.3.15.0 [\#5482](https://github.com/rvm/rvm/pull/5482) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) * 9.4.8.0 [\#5484](https://github.com/rvm/rvm/pull/5484) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) * 3.1.6, 3.2.5, 3.3.2, 3.3.3 and 3.3.4 [\#5491](https://github.com/rvm/rvm/pull/5491) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) #### Upgraded Ruby interpreters: * Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159), 2.5.0-preview1 [\#4204](https://github.com/rvm/rvm/pull/4204), 2.2.9, 2.3.6, 2.4.3 and 2.5.0-rc1 [\#4261](https://github.com/rvm/rvm/pull/4261), 2.5.0 [\#4265](https://github.com/rvm/rvm/pull/4265), 2.6.0-preview1 [\#4317](https://github.com/rvm/rvm/pull/4317), 2.2.10, 2.3.7, 2.4.4, 2.5.1 [\#4340](https://github.com/rvm/rvm/pull/4340) and 2.6.0-preview2[\#4395](https://github.com/rvm/rvm/pull/4395) * Add support for Rubinius 3.85-3.100 * Add support for JRuby 9.1.14.0 [\#4224](https://github.com/rvm/rvm/pull/4224), 9.1.15.0 [\#4258](https://github.com/rvm/rvm/pull/4258), 9.1.16.0 [\#4316](https://github.com/rvm/rvm/pull/4316), 9.1.17.0 [\#4366](https://github.com/rvm/rvm/pull/4366), 9.2.0.0 [\#4390](https://github.com/rvm/rvm/pull/4390) * Add support for mruby 1.4.0 [\#4286](https://github.com/rvm/rvm/pull/4286) * Add support for MagLev 1.1* and 1.2Alpha-1.2Alpha4 [\#4289](https://github.com/rvm/rvm/pull/4289) * Add support for RubyGems 2.6.14 [\#4205](https://github.com/rvm/rvm/pull/4205), 2.7.0-2.7.4 [\#4276](https://github.com/rvm/rvm/issues/4276) and 2.7.5-6 #### Binaries: * Ubuntu 16.04 x64 binaries for Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4362](https://github.com/rvm/rvm/issues/4362), 2.2.9, 2.3.6 and 2.4.3 [\#4259](https://github.com/rvm/rvm/issues/4259), 2.2.8, 2.3.5 and 2.4.2 [\#4161](https://github.com/rvm/rvm/issues/4161), 2.5.0 [\#4272](https://github.com/rvm/rvm/pull/4272) * Ubuntu 17.04 for Ruby 2.1.\*, 2.2.\* [\#4233](https://github.com/rvm/rvm/pull/4233) ## [1.29.3](https://github.com/rvm/rvm/releases/tag/1.29.3) 10 September 2017 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.2...1.29.3) diff --git a/scripts/functions/requirements/ubuntu b/scripts/functions/requirements/ubuntu index 884bb1f..af216c9 100644 --- a/scripts/functions/requirements/ubuntu +++ b/scripts/functions/requirements/ubuntu @@ -1,73 +1,73 @@ #!/usr/bin/env bash source "$rvm_scripts_path/functions/requirements/debian" requirements_ubuntu_define_libgmp() { requirements_check libgmp-dev } -requirements_debian_define_libncurses() +requirements_ubuntu_define_libncurses() { if __rvm_version_compare ${_system_version} -ge 24.04 then requirements_check libncurses-dev else requirements_check libncurses5-dev fi } requirements_ubuntu_define_libreadline() { if __rvm_version_compare ${_system_version} -ge 16.10 then requirements_check libreadline-dev else requirements_check libreadline6-dev fi } requirements_ubuntu_define_libssl() { # Legacy libssl-dev required by older version of ruby has been renamed to libssl1.0-dev # starting from Ubuntu 17.10 (Artful Aardvark) case "$1" in (ruby-2.3*|ruby-2.2*|ruby-2.1*|ruby-2.0*|ruby-1.9*|ruby-1.8*|ree-1.8*) if __rvm_version_compare ${_system_version} -ge 17.10 then undesired_check libssl-dev requirements_check libssl1.0-dev else requirements_check libssl-dev fi ;; (*) requirements_check libssl-dev ;; esac } requirements_ubuntu_define_clang_llvm() { if __rvm_version_compare ${_system_version} -ge 17.04 then requirements_check clang-4.0 llvm-4.0 llvm-4.0-dev libc++-dev libc++abi-dev rvm_configure_flags+=( --cc=clang-4.0 --cxx=clang++-4.0 --llvm-config=llvm-config-4.0) __rvm_update_configure_env CXXFLAGS="-nostdinc++ -I/usr/include/c++/v1" LDFLAGS="-stdlib=libc++ -lc++" else requirements_check clang-3.6 llvm-3.6 llvm-3.6-dev rvm_configure_flags+=( --cc=clang-3.6 --cxx=clang++-3.6 --llvm-config=llvm-config-3.6) fi } requirements_ubuntu_define() { __lib_type=debian requirements_debian_define "$@" }
rvm/rvm
4c4959c0e7866245aee5bce28719506467c01209
Add support for Ruby 3.3.5 (#5499)
diff --git a/CHANGELOG.md b/CHANGELOG.md index d810932..00aec19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,582 +1,583 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Use OpenSSL 3 for Ruby 3.2 and 3.3 [\#5480](https://github.com/rvm/rvm/pull/5480) * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) * Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) * Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) * Install `libncurses-dev` instead of `libncurses5-dev` on newer Debian and Ubuntu versions [\#5477](https://github.com/rvm/rvm/pull/5477) * Use `zlib-ng-compat` packages for Fedora 40+ [\#5479](https://github.com/rvm/rvm/pull/5479) * Detect core count on ARM-based machines [\#5498](https://github.com/rvm/rvm/pull/5498) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) * 3.3.3 [\#5474](https://github.com/rvm/rvm/pull/5474) * 3.3.4 [\#5488](https://github.com/rvm/rvm/pull/5488) * 3.2.5 [\#5490](https://github.com/rvm/rvm/pull/5490) +* 3.3.5 [\#5499](https://github.com/rvm/rvm/pull/5499) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) * 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1, 24.0.2 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.3.15.0 [\#5482](https://github.com/rvm/rvm/pull/5482) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) * 9.4.8.0 [\#5484](https://github.com/rvm/rvm/pull/5484) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) * 3.1.6, 3.2.5, 3.3.2, 3.3.3 and 3.3.4 [\#5491](https://github.com/rvm/rvm/pull/5491) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) #### Upgraded Ruby interpreters: * Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159), 2.5.0-preview1 [\#4204](https://github.com/rvm/rvm/pull/4204), 2.2.9, 2.3.6, 2.4.3 and 2.5.0-rc1 [\#4261](https://github.com/rvm/rvm/pull/4261), 2.5.0 [\#4265](https://github.com/rvm/rvm/pull/4265), 2.6.0-preview1 [\#4317](https://github.com/rvm/rvm/pull/4317), 2.2.10, 2.3.7, 2.4.4, 2.5.1 [\#4340](https://github.com/rvm/rvm/pull/4340) and 2.6.0-preview2[\#4395](https://github.com/rvm/rvm/pull/4395) * Add support for Rubinius 3.85-3.100 * Add support for JRuby 9.1.14.0 [\#4224](https://github.com/rvm/rvm/pull/4224), 9.1.15.0 [\#4258](https://github.com/rvm/rvm/pull/4258), 9.1.16.0 [\#4316](https://github.com/rvm/rvm/pull/4316), 9.1.17.0 [\#4366](https://github.com/rvm/rvm/pull/4366), 9.2.0.0 [\#4390](https://github.com/rvm/rvm/pull/4390) * Add support for mruby 1.4.0 [\#4286](https://github.com/rvm/rvm/pull/4286) * Add support for MagLev 1.1* and 1.2Alpha-1.2Alpha4 [\#4289](https://github.com/rvm/rvm/pull/4289) * Add support for RubyGems 2.6.14 [\#4205](https://github.com/rvm/rvm/pull/4205), 2.7.0-2.7.4 [\#4276](https://github.com/rvm/rvm/issues/4276) and 2.7.5-6 #### Binaries: * Ubuntu 16.04 x64 binaries for Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4362](https://github.com/rvm/rvm/issues/4362), 2.2.9, 2.3.6 and 2.4.3 [\#4259](https://github.com/rvm/rvm/issues/4259), 2.2.8, 2.3.5 and 2.4.2 [\#4161](https://github.com/rvm/rvm/issues/4161), 2.5.0 [\#4272](https://github.com/rvm/rvm/pull/4272) * Ubuntu 17.04 for Ruby 2.1.\*, 2.2.\* [\#4233](https://github.com/rvm/rvm/pull/4233) ## [1.29.3](https://github.com/rvm/rvm/releases/tag/1.29.3) 10 September 2017 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.2...1.29.3) #### New features: * Add RVM commands missing in bash shell completion [\#4078](https://github.com/rvm/rvm/pull/4078) * Railsexpress patches for 2.3.4, 2.3-head [\#4084](https://github.com/rvm/rvm/pull/4084), 2.2.5 and 2.2.6 [\#4153](https://github.com/rvm/rvm/pull/4153) * Update `gem-wrappers` to 1.3.0: Show warnings when the target binary is missing or is not executable [gem-wrappers \#9](https://github.com/rvm/gem-wrappers/issues/9) * Detect Zorin OS as Ubuntu [\#4140](https://github.com/rvm/rvm/issues/4140) #### Bug fixes: * Infinite loop in `gemset_create` [\#4102](https://github.com/rvm/rvm/issues/4102) * Command not found `__rvm_remote_version` error [\#4085](https://github.com/rvm/rvm/pull/4085) * Fix path of version script in `environment` [\#4117](https://github.com/rvm/rvm/pull/4117) * Define `cd()`, `pushd()` and `popd()` properly when using zsh [\#4132](https://github.com/rvm/rvm/pull/4132) * Update gem-wrappers to 1.3.1: Avoid warnings for missing ruby binaries [\#4104](https://github.com/rvm/rvm/issues/4104) * Handles :engine=> and :engine_version=> in Gemfile * Makes $rvm_ruby_string is not installed searchable by adding a fixed keyword * Correctly quotes suggested install command * Fix path to version script in rvm-installer [\#4134](https://github.com/rvm/rvm/pull/4134) * Fix rvm autolibs status, fix [\#4123](https://github.com/rvm/rvm/issues/4123) * Ruby 2.3.x and older are not compatible with OpenSSL 1.1.x on Arch [\#4006](https://github.com/rvm/rvm/issues/4006) * Allow comments after ruby directive in Gemfile [\#4056](https://github.com/rvm/rvm/issues/4056) * Ruby 2.3/4 compilation fix for GCC 7 [\#4080](https://github.com/rvm/rvm/issues/4080) [\#4115](https://github.com/rvm/rvm/issues/4115) * Add warning for sudo users [\#4009](https://github.com/rvm/rvm/issues/4009) * Allows running RVM shell function in Bash with `set -o nounset` [\#4013](https://github.com/rvm/rvm/issues/4013) * Ensure `rvm_hooks_path` is set [\#3902](https://github.com/rvm/rvm/issues/3902) * Allow building static ruby with `--disbale-shared` [\#4091](https://github.com/rvm/rvm/issues/4091) * Restore detection of `gpg` command for veryfication of signatures [\#4059](https://github.com/rvm/rvm/issues/4059) * Update `gem-wrappers` to 1.3.2: Avoid nested chdir warnings [gem-wrappers \#11](https://github.com/rvm/gem-wrappers/pull/11) * Fix RVM folder cleanup during installation [\#4333](https://github.com/rvm/rvm/issues/4333) * Fix found project file reject reasons for bash -e [\#4314](https://github.com/rvm/rvm/pull/4314) diff --git a/config/db b/config/db index 3c08967..4602c20 100644 --- a/config/db +++ b/config/db @@ -1,154 +1,154 @@ # General default_ruby=ruby interpreter=ruby niceness=0 # # RVM # rvm_remote_server_path1=maven2/org/jruby/jruby-dist rvm_remote_server_url1=https://repo1.maven.org rvm_remote_server_url2=https://rubies.travis-ci.org rvm_remote_server_url=https://rvm-io.global.ssl.fastly.net/binaries # # RubyGems # gem_gem-empty_version=>=1.1.2 gem_gem-wrappers_version=>=1.4.0 gem_rdoc_version=>=4.1.1 gem_rvm_version=>=1.11.3.9 rubygems_repo_url=https://github.com/rubygems/rubygems.git rubygems_url=https://rubygems.org/rubygems rubygems_url_fallback_1=https://github.com/rubygems/rubygems/archive/v\1.tar.gz rubygems_url_fallback_1_pattern=https://rubygems.org/rubygems/rubygems-([[:digit:]\.]+).tgz rubygems_version=latest-3.0 # # Packages # autoconf_url=https://ftp.gnu.org/gnu/autoconf curl_url=https://github.com/bagder/curl/archive gettext_url=https://ftp.gnu.org/pub/gnu/gettext glib_url=http://ftp.gnome.org/pub/gnome/sources/glib/2.23 libiconv_url=https://ftp.gnu.org/pub/gnu/libiconv libxml2_url=ftp://xmlsoft.org/libxml2 libxslt_url=ftp://xmlsoft.org/libxslt llvm_url=https://llvm.org/svn/llvm-project/llvm/trunk mono_url=http://ftp.novell.com/pub/mono/sources/mono ncurses_url=https://ftp.gnu.org/pub/gnu/ncurses openssl_url=https://www.openssl.org/source/old/1.0.1 openssl_version=1.0.1i pkg-config_url=http://pkgconfig.freedesktop.org/releases readline_url=https://ftp.gnu.org/gnu/readline yaml_url=http://pyyaml.org/download/libyaml yaml_version=0.1.6 zlib_url=https://prdownloads.sourceforge.net/libpng # # CentOS / Fedora EPEL # epel5_i386_rpm=https://dl.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm epel5_key=https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-5 epel5_x86_64_rpm=https://dl.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm epel6_i386_rpm=https://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm epel6_key=https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-6 epel6_x86_64_rpm=https://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm epel7_key=https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-7 epel7_x86_64_rpm=https://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-8.noarch.rpm # # MRI Ruby # CentOS_5_ruby_1.8.7_patch_level=p374 CentOS_5_ruby_1.8.7_patch_level_warn=Warning, Centos 5 can not build head version of ruby, falling back to latest patchlevel, your ruby will be less secure because of this. CentOS_5_ruby_1.9.2_patch_level=p320 CentOS_5_ruby_1.9.2_patch_level_warn=Warning, Centos 5 can not build head version of ruby, falling back to latest patchlevel, your ruby will be less secure because of this. ruby_1.8.4_rubygems_version=1.3.5 ruby_1.8.5_patch_level=p231 ruby_1.8.5_rubygems_version=1.3.5 ruby_1.8.6_patch_level=p420 ruby_1.8.6_rubygems_version=1.3.7 ruby_1.8.7_patch_level=head ruby_1.8.7_rubygems_version=latest-2.0 ruby_1.9.1_patch_level=p431 ruby_1.9.1_rubygems_version=latest-1.8 ruby_1.9.2_patch_level=p330 ruby_1.9.3_patch_level=p551 ruby_2.0.0_patch_level=p648 ruby_head_rubygems_version=ignore ruby_repo_url=https://github.com/ruby/ruby.git ruby_unmaintained_date=2017-04-01 ruby_unmaintained_version=2.1.0 ruby_url=https://cache.ruby-lang.org/pub/ruby ruby_url_fallback_1=https://ftp.ruby-lang.org/pub/ruby -ruby_version=3.3.2 +ruby_version=3.3.5 # # REE # ree_1.8.6_patch_level=20090610 ree_1.8.6_repo_url=https://github.com/FooBarWidget/rubyenterpriseedition.git ree_1.8.6_rubygems_version=1.3.7 ree_1.8.6_url=http://rubyforge.org/frs/download.php/58677 ree_1.8.7_2010.02_url=https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/rubyenterpriseedition/ruby-enterprise-1.8.7-2012.02.tar.gz ree_1.8.7_patch_level=2012.02 ree_1.8.7_repo_url=https://github.com/FooBarWidget/rubyenterpriseedition187-330 ree_1.8.7_rubygems_version=latest-2.0 ree_1.8.7_url=https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/rubyenterpriseedition ree_configure_flags=--dont-install-useful-gems ree_version=1.8.7 # # Rubinius # rbx_1.0.0_patch_level=20100514 rbx_1.0.1_patch_level=20100603 rbx_1.1.0_patch_level=20100923 rbx_1.1.1_patch_level=20101116 rbx_1.2.0_patch_level=20101221 rbx_1.2.1_patch_level=20110215 rbx_1.2.2_patch_level=20110222 rbx_1.2.3_patch_level=20110315 rbx_1.2.4_patch_level=20110705 rbx_repo_url=https://github.com/rubinius/rubinius.git rbx_url=https://s3.amazonaws.com/asset.rubini.us rbx_url_2.0_and_newer=https://rubinius-releases-rubinius-com.s3.amazonaws.com rbx_version=4.1 # # MRuby # mruby_repo_url=https://github.com/mruby/mruby.git mruby_url=https://github.com/mruby/mruby/archive mruby_version=2.0.1 # # JRuby # jruby_repo_url=https://github.com/jruby/jruby.git jruby_url=https://repo1.maven.org/maven2/org/jruby/jruby-dist jruby_version=9.4.8.0 maven_version=3.5.0 # # TruffleRuby # truffleruby_url=https://github.com/oracle/truffleruby/releases/download truffleruby_version=24.0.2 # # MacRuby # macruby_0.10_url=http://macruby.macosforge.org/files macruby_nightly_url=http://macruby.jp/files/nightlies macruby_repo_url=https://github.com/MacRuby/MacRuby.git macruby_url=https://github.com/downloads/MacRuby/MacRuby macruby_version=0.12 # # Maglev # maglev_repo_url=https://github.com/MagLev/maglev.git maglev_url=http://seaside.gemtalksystems.com/maglev maglev_version=1.2Alpha4 # # IronRuby # ironruby_1.1.3_url=https://download-codeplex.sec.s-msft.com/Download/Release?ProjectName=ironruby&DownloadId=217153&FileTime=129445296766130000&Build=19727 ironruby_repo_url=https://github.com/ironruby/ironruby.git ironruby_version=1.1.3 # # Topaz # topaz_repo_url=https://github.com/topazproject/topaz.git topaz_url=https://d3sgc2zfsedosj.cloudfront.net topaz_version=head diff --git a/config/known b/config/known index 3de29d4..165ba9e 100644 --- a/config/known +++ b/config/known @@ -1,81 +1,81 @@ # MRI Rubies [ruby-]1.8.6[-p420] [ruby-]1.8.7[-head] # security released on head [ruby-]1.9.1[-p431] [ruby-]1.9.2[-p330] [ruby-]1.9.3[-p551] [ruby-]2.0.0[-p648] [ruby-]2.1[.10] [ruby-]2.2[.10] [ruby-]2.3[.8] [ruby-]2.4[.10] [ruby-]2.5[.9] [ruby-]2.6[.10] [ruby-]2.7[.8] [ruby-]3.0[.7] [ruby-]3.1[.5] [ruby-]3.2[.5] -[ruby-]3[.3.4] +[ruby-]3[.3.5] [ruby-]3.4[.0-preview1] ruby-head # for forks use: rvm install ruby-head-<name> --url https://github.com/github/ruby.git --branch 2.2 # JRuby jruby-1.6[.8] jruby-1.7[.27] jruby-9.1[.17.0] jruby-9.2[.21.0] jruby-9.3[.15.0] jruby[-9.4.8.0] jruby-head # Rubinius rbx-1[.4.3] rbx-2.3[.0] rbx-2.4[.1] rbx-2[.5.8] rbx-3[.107] rbx-4[.20] rbx-5[.0] rbx-head # TruffleRuby truffleruby[-24.0.2] # Opal opal # Minimalistic ruby implementation - ISO 30170:2012 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1[.4.1] mruby-2.0.1 mruby-2[.1.1] mruby[-head] # Ruby Enterprise Edition ree-1.8.6 ree[-1.8.7][-2012.02] # Topaz topaz # MagLev maglev-1.0.0 maglev-1.1[RC1] maglev[-1.2Alpha4] maglev-head # Mac OS X Snow Leopard Or Newer macruby-0.10 macruby-0.11 macruby[-0.12] macruby-nightly macruby-head # IronRuby ironruby[-1.1.3] ironruby-head diff --git a/config/known_strings b/config/known_strings index 0d6e3a3..34832de 100644 --- a/config/known_strings +++ b/config/known_strings @@ -7,559 +7,560 @@ jruby-0.9.8 jruby-0.9.9 jruby-1.0.0RC1 jruby-1.0.0RC2 jruby-1.0.0RC3 jruby-1.0 jruby-1.0.1 jruby-1.0.2 jruby-1.0.3 jruby-1.1b1 jruby-1.1RC1 jruby-1.1RC2 jruby-1.1RC3 jruby-1.1 jruby-1.1.1 jruby-1.1.2 jruby-1.1.3 jruby-1.1.4 jruby-1.1.5 jruby-1.1.6RC1 jruby-1.1.6 jruby-1.2.0RC1 jruby-1.2.0RC2 jruby-1.2.0 jruby-1.3.0RC1 jruby-1.3.0RC2 jruby-1.3.0 jruby-1.3.1 jruby-1.4.0RC1 jruby-1.4.0RC2 jruby-1.4.0RC3 jruby-1.4.0 jruby-1.4.1 jruby-1.5.0.RC1 jruby-1.5.0.RC2 jruby-1.5.0.RC3 jruby-1.5.0 jruby-1.5.1 jruby-1.5.2 jruby-1.5.3 jruby-1.5.4 jruby-1.5.5 jruby-1.5.6 jruby-1.6.0.RC1 jruby-1.6.0.RC2 jruby-1.6.0.RC3 jruby-1.6.0 jruby-1.6.1 jruby-1.6.2 jruby-1.6.3 jruby-1.6.4 jruby-1.6.5 jruby-1.6.5.1 jruby-1.6.7 jruby-1.6.7.2 jruby-1.6.8 jruby-1.7.0.preview1 jruby-1.7.0.preview2 jruby-1.7.0.RC1 jruby-1.7.0.RC2 jruby-1.7.0 jruby-1.7.1 jruby-1.7.2 jruby-1.7.3 jruby-1.7.4 jruby-1.7.5 jruby-1.7.6 jruby-1.7.7 jruby-1.7.8 jruby-1.7.9 jruby-1.7.10 jruby-1.7.11 jruby-1.7.12 jruby-1.7.13 jruby-1.7.14 jruby-1.7.15 jruby-1.7.16 jruby-1.7.16.1 jruby-1.7.16.2 jruby-1.7.17 jruby-1.7.18 jruby-1.7.19 jruby-1.7.20 jruby-1.7.20.1 jruby-1.7.21 jruby-1.7.22 jruby-1.7.23 jruby-1.7.24 jruby-1.7.25 jruby-1.7.26 jruby-1.7.27 jruby-9.0.0.0.pre1 jruby-9.0.0.0.pre2 jruby-9.0.0.0.rc1 jruby-9.0.0.0.rc2 jruby-9.0.0.0 jruby-9.0.1.0 jruby-9.0.2.0 jruby-9.0.3.0 jruby-9.0.4.0 jruby-9.0.5.0 jruby-9.1.0.0 jruby-9.1.1.0 jruby-9.1.2.0 jruby-9.1.3.0 jruby-9.1.4.0 jruby-9.1.5.0 jruby-9.1.6.0 jruby-9.1.7.0 jruby-9.1.8.0 jruby-9.1.9.0 jruby-9.1.10.0 jruby-9.1.11.0 jruby-9.1.12.0 jruby-9.1.13.0 jruby-9.1.14.0 jruby-9.1.15.0 jruby-9.1.16.0 jruby-9.1.17.0 jruby-9.2.0.0 jruby-9.2.1.0 jruby-9.2.2.0 jruby-9.2.3.0 jruby-9.2.4.0 jruby-9.2.4.1 jruby-9.2.5.0 jruby-9.2.6.0 jruby-9.2.7.0 jruby-9.2.8.0 jruby-9.2.9.0 jruby-9.2.10.0 jruby-9.2.11.0 jruby-9.2.11.1 jruby-9.2.12.0 jruby-9.2.13.0 jruby-9.2.14.0 jruby-9.2.15.0 jruby-9.2.16.0 jruby-9.2.17.0 jruby-9.2.18.0 jruby-9.2.19.0 jruby-9.2.20.0 jruby-9.2.20.1 jruby-9.2.21.0 jruby-9.3.0.0 jruby-9.3.1.0 jruby-9.3.2.0 jruby-9.3.3.0 jruby-9.3.4.0 jruby-9.3.6.0 jruby-9.3.7.0 jruby-9.3.8.0 jruby-9.3.9.0 jruby-9.3.10.0 jruby-9.3.11.0 jruby-9.3.13.0 jruby-9.3.14.0 jruby-9.3.15.0 jruby-9.4.0.0 jruby-9.4.1.0 jruby-9.4.2.0 jruby-9.4.3.0 jruby-9.4.4.0 jruby-9.4.5.0 jruby-9.4.6.0 jruby-9.4.7.0 jruby-9.4.8.0 macruby-0.12 maglev-1.0.0 maglev-1.1beta maglev-1.1beta2 maglev-1.1RC1 maglev-1.2Alpha maglev-1.2Alpha2 maglev-1.2Alpha3 maglev-1.2Alpha4 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1.4.0 mruby-1.4.1 mruby-2.0.0 mruby-2.0.1 mruby-2.1.0-rc mruby-2.1.0 mruby-2.1.1-rc mruby-2.1.1-rc2 mruby-2.1.1 rbx-1.0.0-20100514 rbx-1.0.1-20100603 rbx-1.1.0-20100923 rbx-1.1.1-20101116 rbx-1.2.0-20101221 rbx-1.2.1-20110215 rbx-1.2.2-20110222 rbx-1.2.3-20110315 rbx-1.2.4-20110705 rbx-1.3.2 rbx-1.3.3 rbx-1.4.1 rbx-1.4.3 rbx-2.0.0 rbx-2.1.0 rbx-2.1.1 rbx-2.2.0 rbx-2.2.2 rbx-2.2.3 rbx-2.2.4 rbx-2.2.5 rbx-2.2.6 rbx-2.2.7 rbx-2.2.8 rbx-2.2.9 rbx-2.2.10 rbx-2.3.0 rbx-2.4.0 rbx-2.4.1 rbx-2.5.0 rbx-2.5.1 rbx-2.5.2 rbx-2.5.3 rbx-2.5.4 rbx-2.5.5 rbx-2.5.6 rbx-2.5.7 rbx-2.5.8 rbx-3.70 rbx-3.71 rbx-3.72 rbx-3.73 rbx-3.74 rbx-3.75 rbx-3.76 rbx-3.77 rbx-3.78 rbx-3.79 rbx-3.80 rbx-3.81 rbx-3.82 rbx-3.83 rbx-3.84 rbx-3.85 rbx-3.86 rbx-3.87 rbx-3.88 rbx-3.89 rbx-3.90 rbx-3.91 rbx-3.92 rbx-3.93 rbx-3.94 rbx-3.95 rbx-3.96 rbx-3.97 rbx-3.98 rbx-3.99 rbx-3.100 rbx-3.101 rbx-3.102 rbx-3.103 rbx-3.104 rbx-3.105 rbx-3.106 rbx-3.107 rbx-4.0 rbx-4.1 rbx-4.2 rbx-4.3 rbx-4.4 rbx-4.5 rbx-4.6 rbx-4.7 rbx-4.8 rbx-4.9 rbx-4.10 rbx-4.11 rbx-4.12 rbx-4.13 rbx-4.14 rbx-4.15 rbx-4.16 rbx-4.17 rbx-4.18 rbx-4.19 rbx-4.20 rbx-5.0 ree-1.8.6-20080507 ree-1.8.6-20080621 ree-1.8.6-20080623 ree-1.8.6-20080624 ree-1.8.6-20080709 ree-1.8.6-20080810 ree-1.8.6-20081205 ree-1.8.6-20081215 ree-1.8.6-20090113 ree-1.8.6-20090201 ree-1.8.6-20090421 ree-1.8.6-20090520 ree-1.8.6-20090610 ree-1.8.6-20090928 ree-1.8.7-2009.10 ree-1.8.7-2010.01 ree-1.8.7-2010.02 ree-1.8.7-2011.01 ree-1.8.7-2011.02 ree-1.8.7-2011.03 ree-1.8.7-2011.12 ree-1.8.7-2012.02 ruby-1.8.5-p115 ruby-1.8.5-p231 ruby-1.8.6-p286 ruby-1.8.6-p287 ruby-1.8.6-p369 ruby-1.8.6-p383 ruby-1.8.6-p398 ruby-1.8.6-p399 ruby-1.8.6-p420 ruby-1.8.7-p160 ruby-1.8.7-p174 ruby-1.8.7-p248 ruby-1.8.7-p249 ruby-1.8.7-p299 ruby-1.8.7-p302 ruby-1.8.7-p330 ruby-1.8.7-p334 ruby-1.8.7-p352 ruby-1.8.7-p357 ruby-1.8.7-p358 ruby-1.8.7-p370 ruby-1.8.7-p371 ruby-1.8.7-p374 ruby-1.9.0 ruby-1.9.1-p129 ruby-1.9.1-p243 ruby-1.9.1-p376 ruby-1.9.1-p378 ruby-1.9.1-p429 ruby-1.9.1-p431 ruby-1.9.2-p0 ruby-1.9.2-p136 ruby-1.9.2-p180 ruby-1.9.2-p290 ruby-1.9.2-p318 ruby-1.9.2-p320 ruby-1.9.2-p330 ruby-1.9.3-preview1 ruby-1.9.3-rc1 ruby-1.9.3-p0 ruby-1.9.3-p125 ruby-1.9.3-p194 ruby-1.9.3-p286 ruby-1.9.3-p327 ruby-1.9.3-p362 ruby-1.9.3-p374 ruby-1.9.3-p385 ruby-1.9.3-p392 ruby-1.9.3-p429 ruby-1.9.3-p448 ruby-1.9.3-p484 ruby-1.9.3-p545 ruby-1.9.3-p547 ruby-1.9.3-p550 ruby-1.9.3-p551 ruby-2.0.0-preview1 ruby-2.0.0-preview2 ruby-2.0.0-rc1 ruby-2.0.0-rc2 ruby-2.0.0-p0 ruby-2.0.0-p195 ruby-2.0.0-p247 ruby-2.0.0-p353 ruby-2.0.0-p451 ruby-2.0.0-p481 ruby-2.0.0-p576 ruby-2.0.0-p594 ruby-2.0.0-p598 ruby-2.0.0-p643 ruby-2.0.0-p645 ruby-2.0.0-p647 ruby-2.0.0-p648 ruby-2.1.0-preview1 ruby-2.1.0-preview2 ruby-2.1.0-rc1 ruby-2.1.0 ruby-2.1.1 ruby-2.1.2 ruby-2.1.3 ruby-2.1.4 ruby-2.1.5 ruby-2.1.6 ruby-2.1.7 ruby-2.1.8 ruby-2.1.9 ruby-2.1.10 ruby-2.2.0-preview1 ruby-2.2.0-preview2 ruby-2.2.0-rc1 ruby-2.2.0 ruby-2.2.1 ruby-2.2.2 ruby-2.2.3 ruby-2.2.4 ruby-2.2.5 ruby-2.2.6 ruby-2.2.7 ruby-2.2.8 ruby-2.2.9 ruby-2.2.10 ruby-2.3.0-preview1 ruby-2.3.0-preview2 ruby-2.3.0 ruby-2.3.1 ruby-2.3.2 ruby-2.3.3 ruby-2.3.4 ruby-2.3.5 ruby-2.3.6 ruby-2.3.7 ruby-2.3.8 ruby-2.4.0-preview1 ruby-2.4.0-preview2 ruby-2.4.0-preview3 ruby-2.4.0-rc1 ruby-2.4.0 ruby-2.4.1 ruby-2.4.2 ruby-2.4.3 ruby-2.4.4 ruby-2.4.5 ruby-2.4.6 ruby-2.4.7 ruby-2.4.8 ruby-2.4.9 ruby-2.4.10 ruby-2.5.0-preview1 ruby-2.5.0-rc1 ruby-2.5.0 ruby-2.5.1 ruby-2.5.2 ruby-2.5.3 ruby-2.5.4 ruby-2.5.5 ruby-2.5.6 ruby-2.5.7 ruby-2.5.8 ruby-2.5.9 ruby-2.6.0-preview1 ruby-2.6.0-preview2 ruby-2.6.0-preview3 ruby-2.6.0-rc1 ruby-2.6.0-rc2 ruby-2.6.0 ruby-2.6.1 ruby-2.6.2 ruby-2.6.3 ruby-2.6.4 ruby-2.6.5 ruby-2.6.6 ruby-2.6.7 ruby-2.6.8 ruby-2.6.9 ruby-2.6.10 ruby-2.7.0-preview1 ruby-2.7.0-preview2 ruby-2.7.0-preview3 ruby-2.7.0-rc1 ruby-2.7.0-rc2 ruby-2.7.0 ruby-2.7.1 ruby-2.7.2 ruby-2.7.3 ruby-2.7.4 ruby-2.7.5 ruby-2.7.6 ruby-2.7.7 ruby-2.7.8 ruby-3.0.0-preview1 ruby-3.0.0-preview2 ruby-3.0.0-rc1 ruby-3.0.0 ruby-3.0.1 ruby-3.0.2 ruby-3.0.3 ruby-3.0.4 ruby-3.0.5 ruby-3.0.6 ruby-3.0.7 ruby-3.1.0-preview1 ruby-3.1.0 ruby-3.1.1 ruby-3.1.2 ruby-3.1.3 ruby-3.1.4 ruby-3.1.5 ruby-3.2.0-preview1 ruby-3.2.0-preview2 ruby-3.2.0-preview3 ruby-3.2.0-rc1 ruby-3.2.0 ruby-3.2.1 ruby-3.2.2 ruby-3.2.3 ruby-3.2.4 ruby-3.2.5 ruby-3.3.0-preview1 ruby-3.3.0-preview2 ruby-3.3.0-preview3 ruby-3.3.0 ruby-3.3.1 ruby-3.3.2 ruby-3.3.3 ruby-3.3.4 +ruby-3.3.5 ruby-3.4.0-preview1 truffleruby-1.0.0-rc2 truffleruby-1.0.0-rc3 truffleruby-1.0.0-rc5 truffleruby-1.0.0-rc6 truffleruby-1.0.0-rc7 truffleruby-1.0.0-rc8 truffleruby-1.0.0-rc9 truffleruby-1.0.0-rc10 truffleruby-1.0.0-rc11 truffleruby-1.0.0-rc12 truffleruby-1.0.0-rc13 truffleruby-1.0.0-rc14 truffleruby-1.0.0-rc15 truffleruby-1.0.0-rc16 truffleruby-19.0.0 truffleruby-19.0.2 truffleruby-19.1.0 truffleruby-19.1.1 truffleruby-19.2.0 truffleruby-19.2.0.1 truffleruby-19.2.1 truffleruby-19.3.0 truffleruby-19.3.0.2 truffleruby-19.3.1 truffleruby-20.0.0 truffleruby-20.1.0 truffleruby-20.2.0 truffleruby-20.3.0 truffleruby-21.0.0 truffleruby-21.1.0 truffleruby-21.2.0 truffleruby-21.2.0.1 truffleruby-21.3.0 truffleruby-22.0.0.2 truffleruby-22.1.0 truffleruby-22.2.0 truffleruby-22.3.0 truffleruby-22.3.1 truffleruby-23.0.0-preview1 truffleruby-23.0.0 truffleruby-23.1.0 truffleruby-23.1.1 truffleruby-23.1.2 truffleruby-24.0.0 truffleruby-24.0.1 truffleruby-24.0.2 diff --git a/config/md5 b/config/md5 index d48f9e6..056c67f 100644 --- a/config/md5 +++ b/config/md5 @@ -1280,760 +1280,761 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.8.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.9.tar.bz2=e993696c73e6be0017d90ccdddbcc644 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.0.tar.bz2=032a73d5182d84cbbf20b6e7e310c7c2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.1.tar.bz2=07c61bc0c9e09fc87808f62985cbff25 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.2.tar.bz2=62745ec761a45826841002e72cfca795 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.3.tar.bz2=538383cc35e5710a2175f36416ca3b7c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.4.tar.bz2=8a17255fa833fe3ff9c0275db79bfbff https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar.bz2=66dc3fdf49b1371fd6d362f3ea9d019b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=873b63cc2e4abbb6ec5126ab07ce429a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=84658482a83ee3a4c80d145d0bd7ccb8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=d3af42a4fd701e0710d5f6a16e6bb9a3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c5f56b0149ab787d89c69056eb45e483 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=13f1011cc048aef7199ae8f14bc2ac62 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=fba1bf0b819f52561deab198fd36743d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=3ec8f383026889e2f3c328d86839a7b2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=9c3775365cab8e1e82aa19e87b9711dd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=cce17e87cc9bfcb6b995e5f1996c423c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=b80a93441133b85258d97085aeead20a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=74c45b08a2dc28871ff158b608cc8685 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=469b22a4b12f23e86ac25b3d797ff559 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=ea7767cbfacd744813ccaedd1b4e0013 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=0d9f69db1bd665c9e5c9592b483b31a1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=068f5c90b5b381cd58d8804ca2b3be64 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=6181192273efab4aabaa8628fc83c7be https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=fa690cb7132706fb25dfc625e949e96a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=c443f32cd4c91fb37ff79bd86906e1bc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=6fa3edab1bbacf7328074a7fba22be50 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=a950bc4af16446fce2f9266e95629bdb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=d9bce275c2f36dbde8a6c25f9fa10c2e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=6486c5ce9ec697039b0bb36d2bf18a0d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=79f0927984b8e6e7934b34bdb2a3e5e5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=214ac1e49a75291a68c63134bc246a8a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=94a39d1b226350362666f6305866b20b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=4db7d99d775a7f24bb55c6053d4eb864 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=c0db831a97b8427e0777adeaebf7a9d8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=830b4845fbfd45df75758e311a013ffc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=3fc39c824b2060a3a2766ca01037dd15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=0b395f3884c78c6938896ff253c5251b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=2be294a056a45a50262d1796906f8860 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=0270733b808489a91e41f73d9fe971e9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=33db4a687e4943faf6c2853179b67935 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=dea6663b2c113190e9b99a6dcedb3aa0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=835e563bfbe3c8311326660a51f3394c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=66e3c1e1140300c8236c13e3178cb8ab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=07b12bd2a7d8242c34d824882e654c22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=fe12c0e211f90076b51c7916c830971f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=65ab3105b0c6d5e8a2e9977a3ab7ed94 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=08547ad8e760e0776c74401ae5bbd8e5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=631b4ea065d18df96c6ccbc141904bb3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=03a67e234d886f3c698c1571e42cc7a6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=0ded0cb8ce18a846d71d7e04d24c2e78 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=5251aed0ba4d8349413d6bf4c261bea3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=f09694c4f23d7625f72606bce0efb710 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=340db3acb58829b51e4a7ac1c77246d4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1bd86cb46a9e6c40c285258879a3d59 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=d86b2a1e9721b9459e1283006e03fa92 ironruby-1.0.zip=7a92888837b3507355ed391dbfc0ab83 ironruby-1.1.3.zip=4f2af6253a459cc054d6c55956e514a9 jruby-bin-1.3.1.tar.gz=4a95db8fc93ed7219663fbede98b6117 jruby-bin-1.4.tar.gz=54dba9a88b2b3f99ac86a79828d0178b jruby-bin-1.4.0.tar.gz=f37322c18e9134e91e064aebb4baa4c7 jruby-bin-1.4.0.zip=3a9c8a5115a679da7d7a49a56d57d4c0 jruby-bin-1.4.1.tar.gz=a4aa8c43d1b9ffd9dbc6cb738d55a034 jruby-bin-1.5.0.tar.gz=ee2b4e326e8b87858e5dd0c8e94102e6 jruby-bin-1.5.1.tar.gz=74251383e08e8c339cacc35a7900d3af jruby-bin-1.5.2.tar.gz=d239deb9a108a6abbfbd6cb79cf8255b jruby-bin-1.5.3.tar.gz=ccb0b2dbc300d8dd4ad1bd4da48b8320 jruby-bin-1.5.5.tar.gz=8e00f7d40cbf221f733d6f7a15784e9a jruby-bin-1.5.6.tar.gz=94033a36517645b7a7ec781a3507c654 jruby-bin-1.6.0.tar.gz=f4d7e339dfc0fbaef5b878d1c0a66fbe jruby-bin-1.6.2.tar.gz=a46f978c24a208717023bb4b8995c678 jruby-bin-1.6.3.tar.gz=694b80e4eea784cdc1eb39fb1e3132c9 jruby-bin-1.6.4.tar.gz=0e96b6f4d1c6f12b5ac480cd7ab7da78 jruby-bin-1.6.5.tar.gz=54354082673bd115f945890dc6864413 jruby-bin-1.6.5.1.tar.gz=246a7aa2b7d7e6e9e8a0c2e282cbcfd0 jruby-bin-1.6.7.tar.gz=fd1b8d7389aa92da69ea6efb4782e40a jruby-bin-1.6.7.2.tar.gz=1e520f1b5130114464e5f1950cb24774 jruby-bin-1.6.8.tar.gz=a76ac5845640e4a1ebdfa74421efc935 jruby-bin-1.7.0.preview1.tar.gz=7b9e5e1cd0d818d0199086d948f948b4 jruby-bin-1.7.0.preview2.tar.gz=e8f1623759590aadbf49e4cc53f1cb61 jruby-bin-1.7.0.RC1.tar.gz=bdddcee3d126cddd9a85b5a066a7e25e jruby-bin-1.7.0.RC2.tar.gz=ffe2dd61711f4574fed344af151e5de5 jruby-bin-1.7.0.tar.gz=21861e0ecdbf48cda713c8ade82fdddb jruby-bin-1.7.1.tar.gz=86e659863541d8b987cb7bfbe3b4cfb0 jruby-bin-1.7.2.tar.gz=6ec9293b6dffd1e8ee57e9b7c6d18cbe jruby-bin-1.7.3.tar.gz=f0adf8ccee6f6777f7ab8e5e1d7a1f47 jruby-bin-1.7.4.tar.gz=c6a56eae78db28dddba911ccd0848c32 jruby-bin-1.7.5.tar.gz=c2a28c43c8095127d4a4aee0cf9b1439 jruby-bin-1.7.6.tar.gz=5d10011516a3d3bde10209b60cfcc0ef jruby-bin-1.7.7.tar.gz=9d6df2188fa57f12bf6fde4e4b2e3f09 jruby-bin-1.7.8.tar.gz=1e68f39d6dba7b6d9db81e24bb6b7d0a jruby-bin-1.7.9.tar.gz=b2e44f1f44837c07068ee453a89f4b55 jruby-bin-1.7.10.tar.gz=c84fe9245a73f9cd29f56343b7d2e39a jruby-bin-1.7.11.tar.gz=d6e6ab72426fa7fdc9ae55950980d877 jruby-bin-1.7.12.tar.gz=2073aa6dfc7c701ef7c3d3143d181582 jruby-bin-1.7.14.tar.gz=bc33284f27a3508a70d2ade100a2f6bd jruby-bin-1.7.15.tar.gz=92e63cffcb86842511aeeed95bdf96ed jruby-bin-1.7.16.tar.gz=92cb058d1a896257b5ac1c26dc433506 jruby-bin-1.7.16.1.tar.gz=eec2f0e03560bacf02a09c0096a99cad jruby-bin-1.7.16.2.tar.gz=cd31909b67239c5c6a795521fca5c239 jruby-bin-1.7.17.tar.gz=8b78ba1acdb718431f71c38287c07967 jruby-bin-1.7.18.tar.gz=aa7286140be0f6f60534ebffededc708 jruby-bin-1.7.19.tar.gz=bc38596757d8000d6ca4c4c3f8eacea6 jruby-bin-1.7.20.tar.gz=0c2adc160cb85c888b269e8ac4f886fc jruby-bin-1.7.21.tar.gz=bc91594072032023d146f330764d3274 jruby-bin-1.7.22.tar.gz=1da904bf41d362d0d0b366d9e781168f jruby-bin-1.7.23.tar.gz=41e3f45c28c94a275f9eeb22721da35d jruby-bin-1.7.25.tar.gz=fc43ead73f657f5261428923974fd605 jruby-bin-1.7.26.tar.gz=4ca60264a9560f37fdba8108543e72c2 jruby-bin-1.7.27.tar.gz=b98b0a2c52e885a868a2b60092e1cd3d jruby-bin-9.0.0.0.pre1.tar.gz=d5c8b30648348aa883f893d464d46bf1 jruby-bin-9.0.0.0.pre2.tar.gz=86994a9d7ed2cf318c75392623a3e6da jruby-bin-9.0.0.0.tar.gz=fe9036ea69bf23dc3b69cfc94adb5404 jruby-bin-9.0.1.0.tar.gz=a82bc640e0080b1d9a21d1477c8400e3 jruby-bin-9.0.3.0.tar.gz=828dd6c6dd18e5b186ccfd65753077bd jruby-bin-9.0.4.0.tar.gz=645bf4a1dcde3f19dc0fff75c8b4b685 jruby-bin-9.0.5.0.tar.gz=1d2dc649cbacbe26418ef3ba421018b1 jruby-bin-9.1.0.0.tar.gz=fe26e6308d006d35eb613cdd47d1dc99 jruby-bin-9.1.1.0.tar.gz=8356334270df07a214590d00a986837b jruby-bin-9.1.2.0.tar.gz=749bb917dde9666e365e12bbe776a5c2 jruby-bin-9.1.3.0.tar.gz=91c246cd623702032e88283565da5480 jruby-bin-9.1.4.0.tar.gz=5b80b78c09bf0cd4dcbcb9e1fe3e8b73 jruby-bin-9.1.5.0.tar.gz=e9b2cc44757db4cfbe7da79601d0169a jruby-bin-9.1.6.0.tar.gz=4092a89b01b55d1fb5498113f97ab0ca jruby-bin-9.1.7.0.tar.gz=b120c3eaeef7ff2aed3a57701e414e78 jruby-bin-9.1.8.0.tar.gz=0fdee002c56ec91dff1efffce205265c jruby-bin-9.1.9.0.tar.gz=170efc34297d7ac2a56bb1163e96b363 jruby-bin-9.1.10.0.tar.gz=b75e0d1a200e8f790d8bbc84f91e3002 jruby-bin-9.1.11.0.tar.gz=0502a14141da25a460ce197720bab4c3 jruby-bin-9.1.12.0.tar.gz=74bd7ae08c159fc62cb6f64845a868cc jruby-bin-9.1.13.0.tar.gz=6c642c8a2653a585779f453d8c843fd7 jruby-bin-9.1.14.0.tar.gz=a7e0ecd529690025d327c45744f60fa4 jruby-bin-9.1.15.0.tar.gz=01c29690324d7eb414fba66e4c009c9e jruby-bin-9.1.16.0.tar.gz=e64c3aa1310c272194fd1750b0b79fac jruby-bin-9.1.17.0.tar.gz=f28d1fcbb60e550f3abd839102ad0069 jruby-bin-9.2.0.0.tar.gz=bd476da4bed39ffcfff7116f448a5365 jruby-bin-9.2.1.0.tar.gz=4b78b0a40ca541556f5ee75a815e0be0 jruby-bin-9.2.2.0.tar.gz=be678559801be029fe233c33396e34d2 jruby-bin-9.2.3.0.tar.gz=79328ab1ed37d612da35271183e46bbd jruby-bin-9.2.4.0.tar.gz=f538f2be459f0f0e517a53446e78a354 jruby-bin-9.2.4.1.tar.gz=d373bbc2bd6caabfcc9914c4067e9d24 jruby-bin-9.2.5.0.tar.gz=14582fd6eee19610f0a7433ce5dd5ce4 jruby-bin-9.2.6.0.tar.gz=dba182ac9943b726b609ca61747c1835 jruby-bin-9.2.7.0.tar.gz=c0111b2cafa920df76284044e1aeedc7 jruby-bin-9.2.8.0.tar.gz=7d652b586a18f1c665289fd7e6edf4f5 jruby-bin-9.2.9.0.tar.gz=74b3451f79c13c2fc66c6dee69d46699 jruby-bin-9.2.10.0.tar.gz=e6ce97eae6e35b622c1b572f9297705b jruby-bin-9.2.11.0.tar.gz=22b003adfb03b253721cc85db248698f jruby-bin-9.2.11.1.tar.gz=687586132f7b649b1bdd7b823577c9d8 jruby-bin-9.2.12.0.tar.gz=cc7599837fbd0839cce7293577a34f2c jruby-bin-9.2.13.0.tar.gz=99df4eb89f88c7582bfe7c313daec7b4 jruby-bin-9.2.14.0.tar.gz=421c5b8146701177a738a0a691190018 jruby-bin-9.2.15.0.tar.gz=ba593f1de2c4e592a8ca9b9e903af457 jruby-bin-9.2.16.0.tar.gz=d8d954ee0ab6f4868c3fc63339660af9 jruby-bin-9.2.17.0.tar.gz=382fb3d9d2982efd5396f1a42e3fa6a1 jruby-bin-9.2.18.0.tar.gz=002ac95859a2176cb0a58d81d6e0fb14 jruby-bin-9.2.19.0.tar.gz=0961867a77838853f32ee72dbde7c00e jruby-bin-9.2.20.0.tar.gz=840876dd0ca0098452dd2667fe9dd7f4 jruby-bin-9.2.20.1.tar.gz=5856ed030f0d9e75d2384cf42f62a4de jruby-bin-9.2.21.0.tar.gz=9957c1d2bd9265144fe55f9f7093272a jruby-bin-9.3.0.0.tar.gz=501a3c975b3c9478b72d4b0cd37170b9 jruby-bin-9.3.1.0.tar.gz=201d3e483bf847f5c59f4b1f3bf594d5 jruby-bin-9.3.2.0.tar.gz=259c276f68a01495dda24407394a382d jruby-bin-9.3.3.0.tar.gz=cd49b81753048cee9c8ffdd2ce1cb3e2 jruby-bin-9.3.4.0.tar.gz=7292dd9a56155aa015ec08c03855b3fc jruby-bin-9.3.6.0.tar.gz=bc5a7b02be69fdf3f5584e8880fc7dcc jruby-bin-9.3.7.0.tar.gz=49b17b5cd7cf8bfb09d8f64147d992ef jruby-bin-9.3.8.0.tar.gz=6ea209b699a06944d0653d8048d8bfec jruby-bin-9.3.9.0.tar.gz=9a0f0a931346bc6ea34196a5c88002ec jruby-bin-9.3.10.0.tar.gz=83c9d776dfc8cf33bfa60f7e78077160 jruby-bin-9.3.11.0.tar.gz=6ccc04e658c49db19fc0c452db0f2931 jruby-bin-9.3.13.0.tar.gz=3f20268b494da900504e921507248183 jruby-bin-9.3.14.0.tar.gz=87a96fd3af448ec8fd5ca45c6469ecc9 jruby-bin-9.3.15.0.tar.gz=385fabe180b68fb8cd3743b315109e5f jruby-bin-9.4.0.0.tar.gz=d0136daa4910f6e6b21858260eb00fe2 jruby-bin-9.4.1.0.tar.gz=abe2669672ac973f1b41a4d3860eb7ae jruby-bin-9.4.2.0.tar.gz=486e50f3c74e7400e71631819fde91da jruby-bin-9.4.3.0.tar.gz=526006fefb3e5ffc5095ab5599cc38c6 jruby-bin-9.4.4.0.tar.gz=287b5c3a9b63ff93e49ae9dc0347263b jruby-bin-9.4.5.0.tar.gz=09c6fceb38d6c086af2e4d5f21f9fe65 jruby-bin-9.4.6.0.tar.gz=5e2fe4ed897d938332ee0d85d2aa60bc jruby-bin-9.4.7.0.tar.gz=a0633ca837efff62edca84ceae1f5515 jruby-bin-9.4.8.0.tar.gz=9f520a3a416b598b4e53916e7180b623 libiconv-1.13.1.tar.gz=7ab33ebd26687c744a37264a330bbe9a MacRuby%200.5.zip=675454a8c7bc19d606d90a726e08427c MacRuby%200.6.zip=a80afd3700c88cf95c539fc63b272faf MacRuby%200.7.1.zip=e8245dcd03c0757dfae7e6fee913947a MacRuby%200.7.zip=0bb60588c9ec9b1517665743bb05132f MacRuby%200.8.zip=735ac0a70f539e00b5de6fbec09c2c5c MacRuby%200.9.zip=fa01345e8fbfee620bbac64743a45f69 MacRuby%200.10.zip=1662d13d2f73cfc26258598f6988dcbc MacRuby%200.11.zip=b0cc23d60484a07012bcad549cef6054 MacRuby%200.12.zip=e1c5fa1b007a1cdc38c527a47302bf5e MagLev-1.0.0.tar.gz=e02cb8ee04438451eb78df14f91a68a9 MagLev-1.1beta.tar.gz=d542c7af290ce3b588b57629906b19e9 MagLev-1.1beta2.tar.gz=0ef88d5d145611aef324cb51be0aaafd MagLev-1.1RC1.tar.gz=41f4a0994daf1e5271cbd0ebe57816f4 MagLev-1.2Alpha.tar.gz=5c7dd3acef9dbddc0829bb1daa087abb MagLev-1.2Alpha2.tar.gz=cbbeae109854a6bf107a747a93fd478b MagLev-1.2Alpha3.tar.gz=b7470518f2b697eb1a5a39eff9b6d749 MagLev-1.2Alpha4.tar.gz=d54f04a611ce838b9d7009627065b7ca mruby-1.0.0.tar.gz=d9aec6a20fc1add65ee07ff6cf0e1ef2 mruby-1.1.0.tar.gz=60d75ea704c9285f3c80b3ad1d2b68de mruby-1.2.0.tar.gz=b5a3b7962d9db8cb8fb8105aa914d16c mruby-1.3.0.tar.gz=9714dd2804064d0043e099b7211d72b9 mruby-1.4.0.tar.gz=25efc35511070454074b36863c4d5b5e mruby-1.4.1.tar.gz=b40bf09af3f4c6e2bc443b9ac803a3ad mruby-2.0.0.tar.gz=b86c6a1dd86cb4ebe51e3fe38964a830 mruby-2.0.1.tar.gz=15b426a8a94a610c45414578786d05e3 mruby-2.1.0-rc.tar.gz=58a85fcb102d72900a25190da670e01d mruby-2.1.0.tar.gz=c01a4bbf62e6f5765c70b8813e0ce7da mruby-2.1.1-rc.tar.gz=809edd80e680855e7c4cf3c569972f28 mruby-2.1.1-rc2.tar.gz=24879fa5eb587f9415f03f8f3701842e mruby-2.1.1.tar.gz=c0ee4a112695046b9e4f177e31096d6c ncurses.tar.gz=cce05daf61a64501ef6cd8da1f727ec6 openssl-0.9.8k.tar.gz=e555c6d58d276aec7fdc53363e338ab3 openssl-0.9.8n.tar.gz=076d8efc3ed93646bd01f04e23c07066 openssl-1.0.1c.tar.gz=ae412727c8c15b67880aef7bd2999b2e openssl-1.0.1i.tar.gz=c8dc151a671b9b92ff3e4c118b174972 pkg-config-0.23.tar.gz=d922a88782b64441d06547632fd85744 readline-5.2.tar.gz=e39331f32ad14009b9ff49cc10c5e751 readline-6.0.tar.gz=b7f65a48add447693be6e86f04a63019 readline-6.2.tar.gz=67948acb2ca081f23359d0256e9a271c release-2.0.0-rc1.zip=b05b5e3c2712a294e4b09ebf450c1bfe rubinius-1.0.0-20100514.tar.gz=b05f4e791d3712c5a50b3d210dac6eb0 rubinius-1.0.1-20100603.tar.gz=eb185703c7ae0c0210e8dcb7f783ee8e rubinius-1.1.0-20100923.tar.gz=e2ae16238b201de09975abe19da09ea9 rubinius-1.1.1-20101116.tar.gz=b39f618eeba37c3aff215da8bca55fd7 rubinius-1.2.0-20101221.tar.gz=4284c2660f1f648942de35d4fc871f70 rubinius-1.2.1-20110215.tar.gz=e4a5127480062fddddc7ce2860b3b813 rubinius-1.2.2-20110222.tar.gz=59124378fb7ee040e9ee4e4736d89fc0 rubinius-1.2.3-20110315.tar.gz=9782dab18c2dd440af6b76e8eb5bc0f0 rubinius-1.2.4-20110705.tar.gz=403c777d19b3553e9cb36701fe002c5e rubinius-1.3.2.tar.bz2=64801ad8dd4e5e4fcb74ff313fec0a69 rubinius-1.3.3.tar.bz2=79f1f860ed8242257bd7f3e88c81a197 rubinius-1.4.1.tar.bz2=76b840405d4b9303261c27cf15002386 rubinius-2.0.0.tar.bz2=62e379e044c822b81e7b20a27daf133e rubinius-2.1.0.tar.bz2=908053f38fd840c75a93aab7487c20a5 rubinius-2.1.1.tar.bz2=6b4df0caec5ea88373e113f97a3b4c72 rubinius-2.2.0.tar.bz2=f1fbc6f3baf1da5ad86b3858f30f3349 rubinius-2.2.2.tar.bz2=ac70d629ea43525d91e81f4ccf135299 rubinius-2.2.3.tar.bz2=d9978cf1a4e8f0310db63e49834f9837 rubinius-2.2.4.tar.bz2=c10699da85a8eb5861a37b29077213bd rubinius-2.2.5.tar.bz2=5996dc8529b2ffe5921c5e7020bee20e rubinius-2.2.6.tar.bz2=85339bb6dd525eee719edf0551868f56 rubinius-2.2.7.tar.bz2=de2e6f4c3bd9a90bcb89f2ea27ddee9e rubinius-2.2.8.tar.bz2=c4db1ffb8dbdf864240cabe8b7758b49 rubinius-2.2.9.tar.bz2=0bf87ba617fa989e47d20942410028af rubinius-2.2.10.tar.bz2=8680da7eb921e6f595a1d716915ca7e0 rubinius-2.3.0.tar.bz2=e003a30af6689c8198116b3405d09d8e rubinius-2.4.0.tar.bz2=62391a51f49820daa51463066c3ce007 rubinius-2.4.1.tar.bz2=7758721b6e848387c3943ddb9ebd9479 rubinius-2.5.0.tar.bz2=178baa1ad172df0801765ea93bc36d87 rubinius-2.5.1.tar.bz2=77e1b87dc357691ad44b561a5f45c188 rubinius-2.5.2.tar.bz2=e5973d6e0a16f0390dc2a7478db83ff5 rubinius-2.5.3.tar.bz2=b19709eb3fa9e05b3fa6a357b33e3b5b rubinius-2.5.4.tar.bz2=64587916e5d445ed9bc630017a04498e rubinius-2.5.5.tar.bz2=ef671bbab50cbe2f70f953c491311261 rubinius-2.5.6.tar.bz2=597e4b049f49966c646faf699856c1b9 rubinius-2.5.7.tar.bz2=9a7f404019bce9fc34a7af7feb7cbb74 rubinius-2.5.8.tar.bz2=a24520892cada1f660e719a25abf63e3 ruby-1.8.5-p115.tar.bz2=03955e3c367b9beb3efe144c9f00d689 ruby-1.8.5-p115.tar.gz=20ca6cc87eb077296806412feaac0356 ruby-1.8.5-p231.tar.bz2=327f5aa6573787432222e96195cffd1e ruby-1.8.5-p231.tar.gz=e900cf225d55414bffe878f00a85807c ruby-1.8.6-p286.tar.bz2=e6b6bf8f34370e433936adb7a7065e63 ruby-1.8.6-p286.tar.gz=797ea136fe43e4286c9362ee4516674e ruby-1.8.6-p287.tar.bz2=80b5f3db12531d36e6c81fac6d05dda9 ruby-1.8.6-p287.tar.gz=6ff3420094711266c3201a0c7c2faa38 ruby-1.8.6-p369.tar.bz2=c3c1f3dd0dfbd2e17a04e59c2f12cfc8 ruby-1.8.6-p369.tar.gz=8c140ae28b4c3947b92dfad69109d90b ruby-1.8.6-p383.tar.bz2=a48703cd982b9f0e3002700a50b0e88e ruby-1.8.6-p383.tar.gz=4f49544d4a4d0d34e9d86c41e853db2e ruby-1.8.6-p398.tar.bz2=fbd43dc44ee26be4d37e6bebbed6f8bd ruby-1.8.6-p398.tar.gz=736db5f56c2d9b0136e563d049249fa8 ruby-1.8.6-p399.tar.bz2=f77c307cb72fb8808b0e85af5d05cefc ruby-1.8.6-p399.tar.gz=c3d16cdd3c1ee8f3b7d1c399d4884e33 ruby-1.8.6-p420.tar.bz2=1c7a978e9ffd4f56dc2ad74bbd2c34f3 ruby-1.8.6-p420.tar.gz=ca1eee44f842e93b5098bc5a2bb9a40b ruby-1.8.7-p160.tar.bz2=f8ddb886b8a81cf005f53e9a9541091d ruby-1.8.7-p160.tar.gz=945398f97e2de6dd8ab6df68d10bb1a1 ruby-1.8.7-p174.tar.bz2=88c45aaf627b4404e5e4273cb03ba2ee ruby-1.8.7-p174.tar.gz=18dcdfef761a745ac7da45b61776afa5 ruby-1.8.7-p248.tar.bz2=37e19d46b7d4b845f57d3389084b94a6 ruby-1.8.7-p248.tar.gz=60a65374689ac8b90be54ca9c61c48e3 ruby-1.8.7-p249.tar.bz2=37200cc956a16996bbfd25bb4068f242 ruby-1.8.7-p249.tar.gz=d7db7763cffad279952eb7e9bbfc221c ruby-1.8.7-p299.tar.bz2=244439a87d75ab24170a9c2b451ce351 ruby-1.8.7-p299.tar.gz=43533980ee0ea57381040d4135cf9677 ruby-1.8.7-p302.tar.bz2=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p302.tar.gz=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p330.tar.bz2=2689719fb42c8cf0aa336f8c8933f413 ruby-1.8.7-p330.tar.gz=50a49edb787211598d08e756e733e42e ruby-1.8.7-p334.tar.bz2=2f14f604bf981bb938ab5fc8b09eb1a6 ruby-1.8.7-p334.tar.gz=aacb6ee5dfe2367682bba56af7f415b8 ruby-1.8.7-p352.tar.bz2=0c61ea41d1b1183b219b9afe97f18f52 ruby-1.8.7-p352.tar.gz=0c33f663a10a540ea65677bb755e57a7 ruby-1.8.7-p357.tar.bz2=3abd9e2a29f756a0d30c7bfca578cdeb ruby-1.8.7-p357.tar.gz=b2b8248ff5097cfd629f5b9768d1df82 ruby-1.8.7-p358.tar.bz2=de35f00997f4ccee3e22dff0f2d01b8a ruby-1.8.7-p370.tar.bz2=1e4c3194537dd8ff92e756993e55a29d ruby-1.8.7-p371.tar.bz2=c27526b298659a186bdb5107fcec2341 ruby-1.8.7-p371.tar.gz=653f07bb45f03d0bf3910491288764df ruby-1.8.7-p374.tar.bz2=83c92e2b57ea08f31187060098b2200b ruby-1.8.7-p374.tar.gz=b72a0bc5b824398537762e5272bbb8dc ruby-1.9.0.tar.bz2=17eb66ac3721340d21db352d8f5dec76 ruby-1.9.1-p129.tar.bz2=6fa62b20f72da471195830dec4eb2013 ruby-1.9.1-p129.tar.gz=c71f413514ee6341c627be2957023a5c ruby-1.9.1-p243.tar.bz2=66d4f8403d13623051091347764881a0 ruby-1.9.1-p243.tar.gz=515bfd965814e718c0943abf3dde5494 ruby-1.9.1-p376.tar.bz2=e019ae9c643c5efe91be49e29781fb94 ruby-1.9.1-p376.tar.gz=ebb20550a11e7f1a2fbd6fdec2a3e0a3 ruby-1.9.1-p378.tar.bz2=5922459622a23612eb9b68a3586cb5f8 ruby-1.9.1-p378.tar.gz=9fc5941bda150ac0a33b299e1e53654c ruby-1.9.1-p429.tar.bz2=09df32ae51b6337f7a2e3b1909b26213 ruby-1.9.1-p429.tar.gz=0f6d7630f26042e00bc59875755cf879 ruby-1.9.1-p431.tar.bz2=03179138ae95dbfae872ef49e9cc6da7 ruby-1.9.1-p431.tar.gz=23f28cffc007ed5ac72c8e9bec6837ce ruby-1.9.2-p0.tar.bz2=d8a02cadf57d2571cd4250e248ea7e4b ruby-1.9.2-p0.tar.gz=755aba44607c580fddc25e7c89260460 ruby-1.9.2-p136.tar.bz2=52958d35d1b437f5d9d225690de94c13 ruby-1.9.2-p136.tar.gz=6e17b200b907244478582b7d06cd512e ruby-1.9.2-p180.tar.bz2=68510eeb7511c403b91fe5476f250538 ruby-1.9.2-p180.tar.gz=0d6953820c9918820dd916e79f4bfde8 ruby-1.9.2-p290.tar.bz2=096758c3e853b839dc980b183227b182 ruby-1.9.2-p290.tar.gz=604da71839a6ae02b5b5b5e1b792d5eb ruby-1.9.2-p318.tar.bz2=be431c6cbfa27e3836a06c6315717747 ruby-1.9.2-p318.tar.gz=cc7bf1025128e1985882ae243f348802 ruby-1.9.2-p320.tar.bz2=b226dfe95d92750ee7163e899b33af00 ruby-1.9.2-p320.tar.gz=5ef5d9c07af207710bd9c2ad1cef4b42 ruby-1.9.2-p330.tar.bz2=8ba4aaf707023e76f80fc8f455c99858 ruby-1.9.2-p330.tar.gz=4b9330730491f96b402adc4a561e859a ruby-1.9.3-p0.tar.bz2=65401fb3194cdccd6c1175ab29b8fdb8 ruby-1.9.3-p0.tar.gz=8e2fef56185cfbaf29d0c8329fc77c05 ruby-1.9.3-p125.tar.bz2=702529a7f8417ed79f628b77d8061aa5 ruby-1.9.3-p125.tar.gz=e3ea86b9d3fc2d3ec867f66969ae3b92 ruby-1.9.3-p194.tar.bz2=2278eff4cfed3cbc0653bc73085caa34 ruby-1.9.3-p194.tar.gz=bc0c715c69da4d1d8bd57069c19f6c0e ruby-1.9.3-p286.tar.bz2=e76848a86606a4fd5dcf14fc4b4e755e ruby-1.9.3-p327.tar.bz2=7d602aba93f31ceef32800999855fbca ruby-1.9.3-p327.tar.gz=96118e856b502b5d7b3a4398e6c6e98c ruby-1.9.3-p362.tar.bz2=13c26ea368d88a560f07cc8c5eb4fa05 ruby-1.9.3-p374.tar.bz2=944e73eba9ee9e1f2647ff32ec0b14b2 ruby-1.9.3-p385.tar.bz2=5ec9aff670f4912b0f6f0e11e855ef6c ruby-1.9.3-p392.tar.bz2=a810d64e2255179d2f334eb61fb8519c ruby-1.9.3-p392.tar.gz=f689a7b61379f83cbbed3c7077d83859 ruby-1.9.3-p429.tar.bz2=c2b2de5ef15ea9b1aaa3152f9112af1b ruby-1.9.3-p429.tar.gz=993c72f7f805a9eb453f90b0b7fe0d2b ruby-1.9.3-p448.tar.bz2=aa710d386e5903f78f0231868255e6af ruby-1.9.3-p448.tar.gz=a893cff26bcf351b8975ebf2a63b1023 ruby-1.9.3-p484.tar.bz2=03f5b08804927ceabe5122cb90f5d0a9 ruby-1.9.3-p484.tar.gz=8ac0dee72fe12d75c8b2d0ef5d0c2968 ruby-1.9.3-p545.tar.bz2=4743c1dc48491070bae8fc8b423bc1a7 ruby-1.9.3-p545.tar.gz=8e8f6e4d7d0bb54e0edf8d9c4120f40c ruby-1.9.3-p547.tar.bz2=5363d399be7f827c77bf8ae5d1a69b38 ruby-1.9.3-p547.tar.gz=7531f9b1b35b16f3eb3d7bea786babfd ruby-1.9.3-p550.tar.bz2=c2169c8b14ccefd036081aba5ffa96da ruby-1.9.3-p551.tar.bz2=0d8b272b05c3449dc848bb7570f65bfe ruby-1.9.3-preview1.tar.bz2=7d93dc773c5824f05c6e6630d8c4bf9b ruby-1.9.3-preview1.tar.gz=0f0220be4cc7c51a82c1bd8f6a0969f3 ruby-1.9.3-rc1.tar.bz2=26f0dc51ad981e12c58b48380112fa4d ruby-1.9.3-rc1.tar.gz=46a2a481536ca0ca0b80ad2b091df68e ruby-2.0.0-p0.tar.bz2=895c1c581f8d28e8b3bb02472b2ccf6a ruby-2.0.0-p195.tar.bz2=2f54faea6ee1ca500632ec3c0cb59cb6 ruby-2.0.0-p247.tar.bz2=60913f3eec0c4071f44df42600be2604 ruby-2.0.0-p353.tar.bz2=20eb8f067d20f6b76b7e16cce2a85a55 ruby-2.0.0-p451.tar.bz2=908e4d1dbfe7362b15892f16af05adf8 ruby-2.0.0-p481.tar.bz2=ea406a8d415a1a5d8365596d4288f3da ruby-2.0.0-p576.tar.bz2=eccd42d43620544a085c5e3834572f37 ruby-2.0.0-p594.tar.bz2=58469c0daf5f3a892a70cc674ea59c7f ruby-2.0.0-p598.tar.bz2=a3f3908103a7d209d1d1cf4712e3953c ruby-2.0.0-p643.tar.bz2=1390888cac6cd175e6f164eff378cdde ruby-2.0.0-p645.tar.bz2=d576240c97cfcc3ed9bdc457eb1e8280 ruby-2.0.0-p647.tar.bz2=27a3ea1a8b8bca1a6de43a7d08e88b69 ruby-2.0.0-p648.tar.bz2=3544031334f4665aa2eb1414babc9345 ruby-2.0.0-preview1.tar.bz2=47a0f662f0e258aa1c5e429c310861b3 ruby-2.0.0-preview2.tar.bz2=a645a783c3302cc094a9963a5e700a4d ruby-2.0.0-rc1.tar.bz2=24cebdda11e01ff4889ac983cd7dc02c ruby-2.0.0-rc2.tar.bz2=e92420131bd7994513e0bf09a3e2a19b ruby-2.1.0-preview1.tar.bz2=d32d1ea23988399afadbd21c5a7a37fc ruby-2.1.0-preview2.tar.bz2=9d566a9b2d2e7e35ad6125e2a14ce672 ruby-2.1.0-rc1.tar.bz2=cae095b90349b5b0f7026060cc3dd2c5 ruby-2.1.0.tar.bz2=1546eeb763ac7754365664be763a1e8f ruby-2.1.1.tar.bz2=53edc33b2f590ecdd9f6a344b9d92d0d ruby-2.1.1.tar.gz=e57fdbb8ed56e70c43f39c79da1654b2 ruby-2.1.2.tar.bz2=ed9b8565bdeccb401d628ec8d54a0774 ruby-2.1.2.tar.gz=a5b5c83565f8bd954ee522bd287d2ca1 ruby-2.1.3.tar.bz2=02b7da3bb06037c777ca52e1194efccb ruby-2.1.4.tar.bz2=f4136e781d261e3cc20748005e1740b7 ruby-2.1.5.tar.bz2=a7c3e5fec47eff23091b566e9e1dac1b ruby-2.1.6.tar.bz2=e1a8e6c6bfbb09bb7f8d6be8f508e4a1 ruby-2.1.7.tar.bz2=3a878e98311d543e5de3533b82ef4a5a ruby-2.1.8.tar.bz2=b17130b5f02a61640ae3b629af931610 ruby-2.1.9.tar.bz2=62bd1cbfcbc22e4d137462bce992f6d1 ruby-2.1.10.tar.bz2=5155c624807ff2418a9e9f15202954d0 ruby-2.2.0-preview1.tar.bz2=767b132eec3e70b14afe5884a7a767b1 ruby-2.2.0-preview2.tar.bz2=d7abace25a8ffe861cb2807bef1c58a6 ruby-2.2.0-rc1.tar.bz2=7144732d30dd4547c0a59862b3345d54 ruby-2.2.0.tar.bz2=d03cd4690fec1fff81d096d1c1255fde ruby-2.2.1.tar.bz2=06973777736d8e6bdad8dcaa469a9da3 ruby-2.2.2.tar.bz2=af6eb4fa7247f1f7b2e19c8e6f3e3145 ruby-2.2.3.tar.bz2=f49a734729a71774d4a94a9a603114b2 ruby-2.2.4.tar.bz2=c3d65f6d2ebe90dda81a37885ea244f5 ruby-2.2.5.tar.bz2=0c7edd1ff3650c3b74da2efaf641bf34 ruby-2.2.6.tar.bz2=3d13cf447142b8a11cd9beb7bc63fee0 ruby-2.2.7.tar.bz2=ca7224d80c08b015bc3b8c226d0914c3 ruby-2.2.8.tar.bz2=054d2e2904d5175662293e29c3bdb927 ruby-2.2.9.tar.bz2=575adf8ede6b1ca7236a5341e73536b0 ruby-2.2.10.tar.bz2=bef1909a4c885157870ef69548cdad3a ruby-2.3.0-preview1.tar.bz2=776000d74ec6dd34bf355ff6921c8311 ruby-2.3.0-preview2.tar.bz2=3ad442ccb337e77e4acaa4113f25b76a ruby-2.3.0.tar.bz2=f0d9f9bbdc87372ca98988a571875819 ruby-2.3.1.tar.bz2=c194281f63d7fcd816747fe78474be5e ruby-2.3.2.tar.bz2=9d00f3772f1c8fa5eecdfea089e3032f ruby-2.3.3.tar.bz2=04b9c461a2bc1eec0535ad1947cad4fb ruby-2.3.4.tar.bz2=99961e97566aee6d63635e2da4cf73ac ruby-2.3.5.tar.bz2=e1efc3d5a948ca1f552005efe5925513 ruby-2.3.6.tar.bz2=b2443b11ee80319a119f7ec0c9b8d79a ruby-2.3.7.tar.bz2=5eb580d5cd13ffb5aacfb96580c0043d ruby-2.3.8.tar.bz2=78045332e298dfd859ceef9fe946950f ruby-2.4.0-preview1.tar.bz2=64b8983b5f53d053906e394f734aa296 ruby-2.4.0-preview2.tar.bz2=1074e8dea5baa89af7f7c2d1d2b9ebaa ruby-2.4.0-preview3.tar.bz2=9f767e6bc61830735ea7dc9cd5a63653 ruby-2.4.0-rc1.tar.bz2=0f8b665acf4e883334adc121a42a206f ruby-2.4.0.tar.bz2=98f29161860fe1b6c65396717847a358 ruby-2.4.1.tar.bz2=07b2ae5d2f46321c95b37066c8415900 ruby-2.4.2.tar.bz2=5ff3ad6ec816bcce8806a55090936ab6 ruby-2.4.3.tar.bz2=ac8215ba561cc7c79b4f61daee11b706 ruby-2.4.4.tar.bz2=d994274eaa95b82aa5d31ec2188253c6 ruby-2.4.5.tar.bz2=45d70a8bb9397d818795ffe992163d27 ruby-2.4.6.tar.bz2=4abd13c50c1fc273a0a81a0ae74ed39f ruby-2.4.7.tar.bz2=1ce166ced489908993d78e8bb68325e0 ruby-2.4.8.tar.bz2=396d35f1a2d1deaf303f59cb5245d4ae ruby-2.4.9.tar.bz2=0b3447370651df55a2014a170c0cb1d5 ruby-2.4.10.tar.bz2=b10a7d2fcaf218c98edbaf57efc36e58 ruby-2.5.0-preview1.tar.bz2=889454189f41e271ae5ba15382911b6a ruby-2.5.0-rc1.tar.bz2=f5acdeacf56aced3c00ae6a8fa816bbc ruby-2.5.0.tar.bz2=63a6cd49546783d62de25a0ffc4aecc3 ruby-2.5.1.tar.bz2=5aaaf2fb4893214fa316516f3ac43519 ruby-2.5.2.tar.bz2=e90ab127e2ac3ee1d8840835e8ba1f13 ruby-2.5.3.tar.bz2=49aea0bf56d25351ccaf938c642400df ruby-2.5.4.tar.bz2=0c923215470f1debe593fe21e66fd37b ruby-2.5.5.tar.bz2=8f41b5cb683d48b5cb6cdfe03d135d6b ruby-2.5.6.tar.bz2=f2a74416ab3016434896194120796f04 ruby-2.5.7.tar.bz2=65597b69aa54bdca8745502c10349f96 ruby-2.5.8.tar.bz2=9ec96e7a590ef801ede294b6184c9c0f ruby-2.5.9.tar.bz2=9e905a545a729af1f1620ddfc2976fe5 ruby-2.6.0-preview1.tar.bz2=1ce507e27fa02aeb36100dabcf1da94f ruby-2.6.0-preview2.tar.bz2=e45011116334d21857b9e1712a01e6b3 ruby-2.6.0-preview3.tar.bz2=b326ceee3d3756f892515009e148f4b2 ruby-2.6.0-rc1.tar.bz2=40457a72e36cbecd0c51d9f895347302 ruby-2.6.0-rc2.tar.bz2=9665e6d886a9da2d4076fa75836798f1 ruby-2.6.0.tar.bz2=d3372daec93f83e7a91c669821053014 ruby-2.6.1.tar.bz2=73d19ac478db1a178be5ae2f2fb8c9ec ruby-2.6.2.tar.bz2=658fcc0da15578c2420ded807b11cce1 ruby-2.6.3.tar.bz2=52e609b756735115814b9c8463f185e2 ruby-2.6.4.tar.bz2=d9b35753c65f54c745ab6b0094511839 ruby-2.6.5.tar.bz2=d1b89c88effb71d75cd7ef77c35e1985 ruby-2.6.6.tar.bz2=abc030870bfbe18ae9c356abebd95cb6 ruby-2.6.7.tar.bz2=46f24740181f91247c72f19d52334379 ruby-2.6.8.tar.bz2=c53761123d17e929cfe248f50429bcab ruby-2.6.9.tar.bz2=ddc24495adaf215c8ee40630b4a55041 ruby-2.6.10.tar.bz2=6ad76db639ab308e3b6c19408729a0cf ruby-2.7.0-preview1.tar.bz2=82fab0496947acd847a6b2eb758acfc6 ruby-2.7.0-preview2.tar.bz2=966a544ab59114591898403c23d91397 ruby-2.7.0-preview3.tar.bz2=2fa6c213774744b287e7e0212b43f626 ruby-2.7.0-rc1.tar.bz2=48a8837cb352f5b95e97a1ae0d62a9d0 ruby-2.7.0-rc2.tar.bz2=cca58fdb8c5e8be8273842d54199c42d ruby-2.7.0.tar.bz2=89347748b7414f5bc7aeb8f4a87ebef4 ruby-2.7.1.tar.bz2=4bb2b2b2f0c6953859e30af140cf249a ruby-2.7.2.tar.bz2=a8acc9c24708fe29dfc287823ecaae65 ruby-2.7.3.tar.bz2=604acb258b1d8228f55799e846cfe6d3 ruby-2.7.4.tar.bz2=52705d799ed851dd3bfd5634265cde46 ruby-2.7.5.tar.bz2=d97d4377eee18b0e790510c3afed648c ruby-2.7.6.tar.bz2=1b6efacb9f129d0253d8a9faa9c21f99 ruby-2.7.7.tar.bz2=63c55e75150251d3ba092b662138e4af ruby-2.7.8.tar.bz2=f44dedf51fdb7441a7dba592d6a4a14d ruby-3.0.0-preview1.tar.gz=991df063b86a8f8412ca07f548579f39 ruby-3.0.0-preview2.tar.gz=ce14b24e923f2e269fea6441791a7248 ruby-3.0.0-rc1.tar.gz=848a8628c8abde270b66e2474049a4a3 ruby-3.0.0.tar.gz=d6af36269a1b0bc278236d371543ad97 ruby-3.0.1.tar.gz=8d1c460a9a9d48a353de3eb0f338bbfd ruby-3.0.2.tar.gz=b973af486291a1e17ad50d88472bfa86 ruby-3.0.3.tar.gz=9ecae293da9547c1438a970f04f64655 ruby-3.0.4.tar.gz=ec9de9a15acc4f205b08816d94267415 ruby-3.0.5.tar.gz=cdff2395625dc1d632fc5400c8fec103 ruby-3.0.6.tar.gz=6b5a7b14505697e6fc2b40b345679f40 ruby-3.0.7.tar.gz=147a3467facc704b5d479e809c131603 ruby-3.1.0-preview1.tar.gz=d131b9bca700ee87ea276f8233ea4c0b ruby-3.1.0.tar.gz=1ca89d713f2c18a20104befed51b3b9a ruby-3.1.1.tar.gz=702778a0ef8b7a01ef7530a541002e19 ruby-3.1.2.tar.gz=9daf064899cccc32fd564117c7a7e0dd ruby-3.1.3.tar.gz=cce38a2b2c589d59f440f67c7d8cc697 ruby-3.1.4.tar.gz=3e601ae6db76a487219a1084e5cb4c9c ruby-3.1.5.tar.gz=ce1e92ddb1230fa2d4f4367882542555 ruby-3.2.0-preview1.tar.gz=a83c91d53e130fe232e4c27ecc8738da ruby-3.2.0-preview2.tar.gz=56e7801b37612b82285c9a09cfeb28ce ruby-3.2.0-preview3.tar.gz=0ed16faae50403b4e2ba2e85ec2314a1 ruby-3.2.0-rc1.tar.gz=4657d7013702adce21ca21dfe71ea4a0 ruby-3.2.0.tar.gz=76ca7e7d71898ab1e85155d69403754e ruby-3.2.1.tar.gz=055101c924538467c63fcbf42abddc75 ruby-3.2.2.tar.gz=eb6f18605e1e1be5dfb5b45f31bf6a93 ruby-3.2.3.tar.gz=e0ba90554f7ea41c587ffa7fcfd064ca ruby-3.2.4.tar.gz=c48283a23c72d7aae19b7f510b89444a ruby-3.2.5.tar.gz=3bd6f2b26918c8637abf56c2f208833e ruby-3.3.0-preview1.tar.gz=0833f555b1b8d5423953600fb4146639 ruby-3.3.0-preview2.tar.gz=4f82f4c9e512ec0a53baa1be8d35ebf7 ruby-3.3.0-preview3.tar.gz=a32ede198a9da50d4afc4421a4a993ad ruby-3.3.0.tar.gz=f57422a0f995cd5a93c726f6c42c310a ruby-3.3.1.tar.gz=368e331a35145ace4948390ed76cf1df ruby-3.3.2.tar.gz=9a7efebc6a0e4810c716ec6d401dc372 ruby-3.3.3.tar.gz=beb9773cc4d9d8da29463ab175e4db28 ruby-3.3.4.tar.gz=f2e16c1a56e07e185214e85c62657941 +ruby-3.3.5.tar.gz=ccad73b02d942d1e6b4c27873d4c08e4 ruby-3.4.0-preview1.tar.gz=93b9b1040a2dd7be7514a7870aa7da03 ruby-enterprise-1.8.6-20080507.tar.gz=17e3c52e73e42809f57ad0000a6cb4ab ruby-enterprise-1.8.6-20080621.tar.gz=626fc3811eee2dc92ac27ea63d37a8b2 ruby-enterprise-1.8.6-20080623.tar.gz=0bf8a3a93c6b37bb1260cc09b05e81fd ruby-enterprise-1.8.6-20080624.tar.gz=de58b97128aa65209f291c66eab7c4a7 ruby-enterprise-1.8.6-20080709.tar.gz=f0ded08cec64959fa388ec6a237b9c47 ruby-enterprise-1.8.6-20080810.tar.gz=bfdcf06f437af825cd9f2d321f9d1896 ruby-enterprise-1.8.6-20081205.tar.gz=50206bec9be2e08a862e5ec2e70fa693 ruby-enterprise-1.8.6-20081215.tar.gz=aab57b7d5061c1980bec5dbe311ec9b2 ruby-enterprise-1.8.6-20090113.tar.gz=e8d796a5bae0ec1029a88ba95c5d901d ruby-enterprise-1.8.6-20090201.tar.gz=a965e6789b553efaed72191825b13713 ruby-enterprise-1.8.6-20090421.tar.gz=c777b361aadccda7988be16ede7ab15f ruby-enterprise-1.8.6-20090520.tar.gz=156572a8296bd0440970a6bb95018a13 ruby-enterprise-1.8.6-20090610.tar.gz=0bf66ee626918464a6eccdd83c99d63a ruby-enterprise-1.8.7-2009.10.tar.gz=3727eef7b6b1b2f31db7d091328d966e ruby-enterprise-1.8.7-2010.01.tar.gz=587aaea02c86ddbb87394a340a25e554 ruby-enterprise-1.8.7-2010.02.tar.gz=4df7b09c01adfd711b0ab76837611542 ruby-enterprise-1.8.7-2011.01.tar.gz=4640634347cd8e5469cb718853e2112e ruby-enterprise-1.8.7-2011.02.tar.gz=8c5faa11c1ddaed3f44b7294711980cc ruby-enterprise-1.8.7-2011.03.tar.gz=038604ce25349e54363c5df9cd535ec8 ruby-enterprise-1.8.7-2011.12.tar.gz=1e5f3059d52a67ab5d91d472b756de08 ruby-enterprise-1.8.7-2012.02.tar.gz=8d086d2fe68a4c57ba76228e97fb3116 ruby-enterprise-1.8.7-20090928.tar.gz=ae00018ce89d95419dfde370fcd485ac rubygems-0.4.0.tgz=86a64616548a793e1a5f825f0dd385b9 rubygems-0.5.0.tgz=80d151edd94a06bcd2452a7e272b4d96 rubygems-0.6.0.tgz=5df803f5a04654833690dd32283de741 rubygems-0.6.1.tgz=c4a0faa9f876ad805ae80d1396a29d97 rubygems-0.7.0.tgz=ede9b55343219e8b3491793aa12c46f3 rubygems-0.8.0.tgz=9ef6e3c34dcb54e295c8e57321ddc079 rubygems-0.8.1.tgz=6276d268b420c0d61796cdbf6d28dae4 rubygems-0.8.3.tgz=6e6da80f61d6e77d0ad9e531767f6fd5 rubygems-0.8.4.tgz=a2ad2d03dae8a98002c2a7cd6c3ed352 rubygems-0.8.5.tgz=b917c084e1e6e99d8e102af8dd687ddb rubygems-0.8.6.tgz=9de98d2f62e3f91521b0207a4dcdeb5b rubygems-0.8.7.tgz=7fc04b9f9acc0c18cbbe6222be8d0bd3 rubygems-0.8.8.tgz=a8535e9c35a4c215d6ef9268d4bc69ed rubygems-0.8.10.tgz=d26592e280c0fb24c51f2837c3f48e67 rubygems-0.8.11.tgz=aa363b428c4c1fc2e076a4ff77b957d7 rubygems-0.9.0.tgz=5d496e1f415b8b4033ab867f01d1161f rubygems-0.9.1.tgz=a62314cdb174ccc88a27b8924fa79e4a rubygems-0.9.2.tgz=cc525053dd465ab6e33af382166fa808 rubygems-0.9.3.tgz=600940a22ecd79e28e0fd37ad1f1d871 rubygems-0.9.4.tgz=b5680acaa019c80ea44fe87cc2e227da rubygems-0.9.5.tgz=91f7036a724e34cc66dd8d09348733d9 rubygems-1.0.0.tgz=b0b74eac0cbfc5a13f895ab6f803edc1 rubygems-1.0.1.tgz=0d5851084955c327ee1dc9cbd631aa5f rubygems-1.1.0.tgz=85f994904c5b4045f0a859b29d0be717 rubygems-1.1.1.tgz=1a77c5b6b293a3ccd5261dc120641ccc rubygems-1.2.0.tgz=b77a4234360735174d1692e6fc598402 rubygems-1.3.0.tgz=63d3dfc038710eaf532b6a133225115a rubygems-1.3.1.tgz=a04ee6f6897077c5b75f5fd1e134c5a9 rubygems-1.3.2.tgz=6204d0a4c526a1d8fdbce746647b179a rubygems-1.3.3.tgz=0e9697db44d812712350baf28016b4a7 rubygems-1.3.4.tgz=b17b398503253bf36a101c58f02a226f rubygems-1.3.5.tgz=6e317335898e73beab15623cdd5f8cff rubygems-1.3.6.tgz=789ca8e9ad1d4d3fe5f0534fcc038a0d rubygems-1.3.7.tgz=e85cfadd025ff6ab689375adbf344bbe rubygems-1.4.1.tgz=e915dbf79e22249d10c0fcf503a5adda rubygems-1.4.2.tgz=b5badb7c5adda38d9866fa21ae46bbcc rubygems-1.5.0.tgz=49bef7186bf3c0ca6ee7adf4b585bccc rubygems-1.5.1.tgz=47577a5e33c9c6f1e3a56aff7f51d0ff rubygems-1.5.2.tgz=3951f94c09c16c774c8bcebc94fa5374 rubygems-1.5.3.tgz=38bbbdc17aef923fb41f054cf8421116 rubygems-1.6.0.tgz=abd27b5a9002100ff74ddb398a1c9689 rubygems-1.6.1.tgz=a77c64896aaa10d64aaf34f5c1488173 rubygems-1.6.2.tgz=0c95a9869914ba1a45bf71d3b8048420 rubygems-1.8.6.tgz=8e95d0c5b377a003f3d54a49461e81d9 rubygems-1.8.9.tgz=fc399445d693c29778779e5828ee5e90 rubygems-1.8.10.tgz=5b08ee31740c9b0bd36f6c04d537e7d4 rubygems-1.8.23.1.tgz=5259ce3eb7988950fa3aff9051a5de91 rubygems-1.8.23.2.tgz=fb377c7fd387df14a33e529153adc316 rubygems-1.8.23.tgz=178b0ebae78dbb46963c51ad29bb6bd9 rubygems-1.8.24.tgz=3a555b9d579f6a1a1e110628f5110c6b rubygems-1.8.25.tgz=1376a258d43c53750a8df30e67853e10 rubygems-1.8.26.tgz=0ea47f1efd010f4c82b8a51a934f48dc rubygems-1.8.27.tgz=6686ad26735c21d0d6e58b6192c7da5d rubygems-1.8.28.tgz=2df78039f391fb1f71c02c2fc5671c94 rubygems-1.8.29.tgz=a57fec0af33e2e2e1dbb3a68f6cc7269 rubygems-2.0.0.tgz=89ce467eb2d55657e9965a46559acbcf rubygems-2.0.1.tgz=2652ab6f001a873b8933e2ca09505974 rubygems-2.0.2.tgz=3471f140a70bcd32a7495b545cfce790 rubygems-2.0.3.tgz=854691f145cea98b4100e5b0831b73ed rubygems-2.0.4.tgz=3ec32dbe783bab37a87f50758f8efe13 rubygems-2.0.5.tgz=641d82672937d40d664dbc18f49cdcec rubygems-2.0.6.tgz=0633f50db16112bf6c3cf9bfb9ceb9bd rubygems-2.0.7.tgz=9046700f1222712fedfb836fafa08c50 rubygems-2.0.8.tgz=5432214a740c0d13482e43a5328a6518 rubygems-2.0.9.tgz=bc55898247297ffa190223276b1b1bd7 rubygems-2.0.10.tgz=5457ba403cd9a5f4f5fb2ef4a2a1c03e rubygems-2.0.11.tgz=0f28e3fde3348c0f23ceecba73a6cbef rubygems-2.0.12.tgz=99c416517e2de1146d2c6fbb4c4c1441 rubygems-2.0.13.tgz=3970e66a670ddb6d1aade9c7b18033d4 rubygems-2.0.14.tgz=4a7aa0b144e465230ab5d7b59dfd7e8f rubygems-2.1.0.tgz=9a9d242baef5e58fbfe79ec5206cd316 rubygems-2.1.1.tgz=b34d6f4028b69a84123a6b7cb0ac8028 rubygems-2.1.2.tgz=b5c5c4430be60f911014216d41886ef3 rubygems-2.1.3.tgz=ac7bbdfecd49f9304756aa5ebeb51400 rubygems-2.1.4.tgz=aa502b1ea90fbdd14ca9b32634795c2b rubygems-2.1.5.tgz=60564b762d4e186815997653b1c876ab rubygems-2.1.6.tgz=e11237a8f87dbd8c085770551d64a8f8 rubygems-2.1.7.tgz=b721ed7d5fd57ed05f77eb21a3a592ee rubygems-2.1.8.tgz=cc4c84c0482840389a457740e8083ed9 rubygems-2.1.9.tgz=2636bf26c0a9ec889c7bd938887bd9a3 rubygems-2.1.10.tgz=6fa671d7d6605de73d16f529cf7bffb8 rubygems-2.1.11.tgz=b561b7aaa70d387e230688066e46e448 rubygems-2.2.0.rc.1.tgz=f7d80b612339169569f2675155c202f1 rubygems-2.2.0.tgz=3c16e50673adb99d1ce76d5231f764bd rubygems-2.4.8.tgz=dc77b51449dffe5b31776bff826bf559 rubygems-2.6.10.tgz=ab5a0028d2a0653691b29d7463bd0892 rubygems-2.6.11.tgz=8d514b836fcf3ae2c20b4fe8d5cdc3c5 rubygems-2.6.12.tgz=7c454ef88b716c1a123f62b26bb9612b rubygems-2.6.13.tgz=e6f19b51614055d826e431549a12a80b rubygems-2.6.14.tgz=e0a6914ce03b91dfc6d448ebf292f145 rubygems-2.7.0.tgz=771c40015538c0f225c5249e4bc7d441 rubygems-2.7.1.tgz=65646f28f3c36ccaa7f991c17e15b8a9 rubygems-2.7.2.tgz=312a238ed98a61d2b3d165b790b6062b rubygems-2.7.3.tgz=fb3a1927a1842b75677a24f48dd63ddc rubygems-2.7.4.tgz=e9bbf5a4cc9a74293884b91f49603ea0 rubygems-2.7.5.tgz=516a4f219976003feb4b4f797cbc66b0 rubygems-2.7.6.tgz=366cea352c2b1243db726013c3d76fc4 rubygems-2.7.7.tgz=b6721f6ce4af08f68c6f513bbddfe484 rubygems-2.7.8.tgz=a3ed89a34e1ae8f9da0c620a8aa35f12 rubygems-2.7.9.tgz=173272ed55405caf7f858b6981fff526 rubygems-2.7.10.tgz=464754059d8ca01c1121a1233d866e8c rubygems-3.0.0.tgz=3908105894e531f7ad3aceb8b41dcbcd rubygems-3.0.1.tgz=1e8af9b87a67f15841ad2be7d5725a5f rubygems-3.0.2.tgz=d8db1b516ae1e35b8f6f56cb526f879a rubygems-3.0.3.tgz=b7a7dd5f85485334a6cb61b7dac20cff rubygems-3.0.4.tgz=7d0c49077a2d19f48d88567cfa3cf17a rubygems-3.0.5.tgz=4664467d621d719688e4778d147c306a rubygems-3.0.6.tgz=60d84e843b131fb87c8fd67e8fac6470 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=3e9afdf72f153e2f66259fc2b6fca594 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=c30459287aec83548cfcb17340fa73d5 truffleruby-1.0.0-rc3-linux-amd64.tar.gz=138f6814451ce634b0fae3aca5579248 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=94ed54ecb65bea2166a2159431b0362b truffleruby-1.0.0-rc5-linux-amd64.tar.gz=9e5428611e22b093d05afebbe0ccbc2b truffleruby-1.0.0-rc5-macos-amd64.tar.gz=b32a254fed71434c3431fb2effb35c5a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=7f394a8c7fe356b7bd36683c57f74ebd truffleruby-1.0.0-rc6-macos-amd64.tar.gz=f033329d03f1f846d25728c2af9d7524 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=184e98f2d6939f63db4b915943ff60c6 truffleruby-1.0.0-rc7-macos-amd64.tar.gz=d19213b33011f7a55e0f32d25e19184f truffleruby-1.0.0-rc8-linux-amd64.tar.gz=a394167c0331c6d8c1123e1f992e5411 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=dc1bf0fcfdd5837ae0ca56d6d6e5f7b0 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=f6ec25bd532bf0551d35327d1aa4caf9 truffleruby-1.0.0-rc9-macos-amd64.tar.gz=c80a345f9071521cf1961ab75ebc7dd1 truffleruby-1.0.0-rc10-linux-amd64.tar.gz=3a889726efcdf33feb7ef3df13fd5f39 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=bba618b4483b79eebf9f0e7af4078502 truffleruby-1.0.0-rc11-linux-amd64.tar.gz=a25e179ca0be96a1bc737a600729c195 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=bb8d8f5525e1ba86bb039e56291c6c7c truffleruby-1.0.0-rc12-linux-amd64.tar.gz=872774837057489250527bf863192115 truffleruby-1.0.0-rc12-macos-amd64.tar.gz=bb4a64e6c4882fd0c5e412bf9c57720b truffleruby-1.0.0-rc13-linux-amd64.tar.gz=0f36eed2eb36846785fdd4eae24adfa0 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=1bd3087a0f2df4c006b87c9488ada6d4 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=9eddd1aa98c9649e7c01bb10bf28c471 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c93643f1d00b370411310ee7a1dd5330 truffleruby-1.0.0-rc15-linux-amd64.tar.gz=bc7339a6218ea991f2c72ce8759cb6e3 truffleruby-1.0.0-rc15-macos-amd64.tar.gz=1671d08dd2f5026d58b326fd55c9b7de truffleruby-1.0.0-rc16-linux-amd64.tar.gz=5564d17f19b8ee0edb96ab5b1bfbda98 truffleruby-1.0.0-rc16-macos-amd64.tar.gz=61583b529b6a1337398b0966db952d24 truffleruby-19.0.0-linux-amd64.tar.gz=006220c7bde7d0b5c72481133624a83f truffleruby-19.0.0-macos-amd64.tar.gz=9ef7f5a311465d35e54ac6e00ec3d169 truffleruby-19.0.2-linux-amd64.tar.gz=2f7fe574e0695fb6001f4f5282aa2f79 truffleruby-19.0.2-macos-amd64.tar.gz=aa20f76b3eac1f4976a507364201d1ad truffleruby-19.1.0-linux-amd64.tar.gz=71368f8371069017d911528f052b0a55 truffleruby-19.1.0-macos-amd64.tar.gz=7f086adbc89fdfaed35273394ac3ac66 truffleruby-19.1.1-linux-amd64.tar.gz=c1ad4d17bb40e214b124222f3a7c6db6 truffleruby-19.1.1-macos-amd64.tar.gz=f4e76b0612319b4a82480cbd1fc90210 truffleruby-19.2.0-linux-amd64.tar.gz=458ed5fec1a849ef5b00e19b0e25d5e9 truffleruby-19.2.0-macos-amd64.tar.gz=dc324575ad20e3054980835c24ea7161 truffleruby-19.2.0.1-linux-amd64.tar.gz=ad7444145550d89931199159163077c1 truffleruby-19.2.0.1-macos-amd64.tar.gz=b5bcfb0aaded1e2d1763089ab6c9a14d truffleruby-19.2.1-linux-amd64.tar.gz=fc4879d2b0cc22c152a8bf893a72c346 truffleruby-19.2.1-macos-amd64.tar.gz=71448ff3f8f1da086f222751d3f853bc truffleruby-19.3.0-linux-amd64.tar.gz=dd44ac30b5a1ef3a7d61172cda9b30b6 truffleruby-19.3.0-macos-amd64.tar.gz=41daa52f0f308abb77a2b91c1b7e0f3d truffleruby-19.3.0.2-linux-amd64.tar.gz=2db2cb5c29523c9bdb6f59dfa0bd74ce truffleruby-19.3.0.2-macos-amd64.tar.gz=edf1603643938686dce57139aadf7d3c truffleruby-19.3.1-linux-amd64.tar.gz=a14c028351f7a3965bcb56e9b22364de truffleruby-19.3.1-macos-amd64.tar.gz=a8707d0af3eda694ec07a5387d3443fb truffleruby-20.0.0-linux-amd64.tar.gz=b30110ecbc50c4fce402fdf44c45dad5 truffleruby-20.0.0-macos-amd64.tar.gz=0671e5909cefb9a2c12c473fc0110821 truffleruby-20.1.0-linux-amd64.tar.gz=4592b5fc3636d82fc998ab6fe0a43584 truffleruby-20.1.0-macos-amd64.tar.gz=3c0be43db86817c7037d3ff5053d322d truffleruby-20.2.0-linux-amd64.tar.gz=e9859decb24829f9a189d88b3c2e9b79 truffleruby-20.2.0-macos-amd64.tar.gz=49e7ccf8f9e60d6c59b3b07b854466cf truffleruby-20.3.0-linux-amd64.tar.gz=93a20845f7d9d39100761424dfc0a734 truffleruby-20.3.0-macos-amd64.tar.gz=b178b7a94fac58400450417612fe3441 truffleruby-21.0.0-linux-amd64.tar.gz=c03304a505c8699e697acecf5030d95f truffleruby-21.0.0-macos-amd64.tar.gz=019796be37a58ef8e186a625f2ff5d07 truffleruby-21.1.0-linux-amd64.tar.gz=065bfcc48f6925410e0da21e16428b64 truffleruby-21.1.0-macos-amd64.tar.gz=325f6854c10d8a3a114c80da582c469f truffleruby-21.2.0-linux-amd64.tar.gz=0aec44721a040845347f18c1f72ceb75 truffleruby-21.2.0-macos-amd64.tar.gz=76d27715b20902df5779f7a0c00852b1 truffleruby-21.2.0.1-linux-amd64.tar.gz=f68e9b8a9f9cae5efc5ac45a7d9e760d truffleruby-21.2.0.1-macos-amd64.tar.gz=b021e50fc94cab590b49d27f2ea821b0 truffleruby-21.3.0-linux-amd64.tar.gz=359aca79cba4e08f9955d9c6543c2189 truffleruby-21.3.0-macos-amd64.tar.gz=d9e2e2c6fcd3ac16f0c37b0ccffb4f41 truffleruby-22.0.0.2-linux-amd64.tar.gz=324327026e9b2963a8e5fb4ee3f4e216 truffleruby-22.0.0.2-macos-amd64.tar.gz=7029d0e291d498a264d9b413729a3e17 truffleruby-22.1.0-linux-amd64.tar.gz=9329cf507ba8ac529e93156cacc1425d truffleruby-22.1.0-macos-amd64.tar.gz=353242978b46cafc34b05e2c81206096 truffleruby-22.2.0-linux-amd64.tar.gz=5d676377056ae94fe847be721c20405b truffleruby-22.2.0-linux-aarch64.tar.gz=b774f4b7d330842521f1e6e56cb41db5 truffleruby-22.2.0-macos-amd64.tar.gz=e45fdd9a05aec6220a76fb707b0a5ae8 truffleruby-22.2.0-macos-aarch64.tar.gz=ebcbfe056d90d06de4bd0a9d699bad8f truffleruby-22.3.0-linux-amd64.tar.gz=ada8bc5dc52aca8317eaeab04d91e877 truffleruby-22.3.0-linux-aarch64.tar.gz=11493301d5519aa73e8f0e140cefb581 truffleruby-22.3.0-macos-amd64.tar.gz=9e27c677637b69b0460fb0a4569a5cca truffleruby-22.3.0-macos-aarch64.tar.gz=eaa1c9020b521226f8bb48b8c7e5c596 truffleruby-22.3.1-linux-amd64.tar.gz=243d926f038fd2220c03dfbe40ef58c3 truffleruby-22.3.1-linux-aarch64.tar.gz=01487fe680863381489bf2a0a2ac162b truffleruby-22.3.1-macos-amd64.tar.gz=b3d5a777d94856e51034d81076e8ef72 truffleruby-22.3.1-macos-aarch64.tar.gz=320ce75730a5b9f16f111eb7ef5e4e09 truffleruby-23.0.0-preview1-linux-amd64.tar.gz=76c1cb23ee63ba4de93a0c23784bfca9 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=eec3fc74565f08e9468982692f7f9010 truffleruby-23.0.0-preview1-macos-amd64.tar.gz=50e38f3cd548dfe78f397f76ed577bf1 truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=b769bcf9b843d9b2980def1e2139284f truffleruby-23.0.0-linux-amd64.tar.gz=6e1a491406c5dbf42de10fcb3ed7dc1c truffleruby-23.0.0-linux-aarch64.tar.gz=5c3663f64bee707173b2684355a9a42e truffleruby-23.0.0-macos-amd64.tar.gz=515a9a8a0f39ba9399e869cd418ebff5 truffleruby-23.0.0-macos-aarch64.tar.gz=57e5fa52270e692b82c445107fe6b6a6 truffleruby-23.1.0-linux-amd64.tar.gz=f7511c19045e57e72f9b5415bc17c8e8 truffleruby-23.1.0-linux-aarch64.tar.gz=e8a20dd919a2ff77b7cc5457e853d15d truffleruby-23.1.0-macos-amd64.tar.gz=d3b6a3cbc0a230ebae6f3a462a32ddd3 truffleruby-23.1.0-macos-aarch64.tar.gz=ee74fc5d192c2fb8afd0458d2d429c02 truffleruby-23.1.1-linux-amd64.tar.gz=d7e1c040da170aaa36b5f5a1d106d237 truffleruby-23.1.1-linux-aarch64.tar.gz=cf508ba3787be20c03bac690f3bdbac5 truffleruby-23.1.1-macos-amd64.tar.gz=a662a8672871524808500dddef3808c1 truffleruby-23.1.1-macos-aarch64.tar.gz=de543312024993a533e3caa63b396127 truffleruby-23.1.2-linux-amd64.tar.gz=e3e5b01b291d7fea61be2be842c7e8dc truffleruby-23.1.2-linux-aarch64.tar.gz=8fe26f643fa81eec6de3bde7024c858a truffleruby-23.1.2-macos-amd64.tar.gz=83bc41bf699fa847df7e60412bee2823 truffleruby-23.1.2-macos-aarch64.tar.gz=7dbd2e182cfec0cf2d2e37784721903f truffleruby-24.0.0-linux-amd64.tar.gz=202f05706d28faca75d5e3cd0f9bef78 truffleruby-24.0.0-linux-aarch64.tar.gz=4faaf4edde4f6a516246b7c2f4ee80b3 truffleruby-24.0.0-macos-amd64.tar.gz=d07f27e0e29398c6de836b0049105c12 truffleruby-24.0.0-macos-aarch64.tar.gz=10cf176718968893468caba617c02141 truffleruby-24.0.1-linux-amd64.tar.gz=2914bfb81b136cd1fb5736c0a40068e3 truffleruby-24.0.1-linux-aarch64.tar.gz=429e6ada9a95ea23ebb95d01f90eb0f4 truffleruby-24.0.1-macos-amd64.tar.gz=e3aa5ab128f5d169d93f2d6df98c4e77 truffleruby-24.0.1-macos-aarch64.tar.gz=6f81a1afe1b89a40f00c9bd4216ec45d truffleruby-24.0.2-linux-amd64.tar.gz=1a826ea6323a25becce5940d8e6c4642 truffleruby-24.0.2-linux-aarch64.tar.gz=45429f35653bd8cbc328eafe81d15e8a truffleruby-24.0.2-macos-amd64.tar.gz=f68aeb26783d048ae5f78e1c13739747 truffleruby-24.0.2-macos-aarch64.tar.gz=df05f94696b4f4584a259001a3d4d1d0 yaml-0.1.4.tar.gz=36c852831d02cf90508c29852361d01b zlib-1.2.3.tar.gz=debc62758716a169df9f62e6ab2bc634 zlib-1.2.5.tar.gz=c735eab2d659a96e5a594c9e8541ad63 diff --git a/config/sha512 b/config/sha512 index ade1c1a..a1df864 100644 --- a/config/sha512 +++ b/config/sha512 @@ -1091,649 +1091,650 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.1.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.2.tar.bz2=17be6eea903f162178edae84c67f263b9532405c0cb5bb320fa51b019869d114e0dc4ad7fafd6cb2597e45b73d4777d3c4e0d4f22141de30bd2ad02ccdd41ee3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.3.tar.bz2=8dd4bb1cafb2d82586b199bf032edaf23fd9bcf8a05b7e2087de172b8a8c6c4fb96584fb15372033b97bbe11a7f8aab25057c03d71e5ee21ec4a647f95687413 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.4.tar.bz2=54f9fceb0496f647b3c59dd7411a583c74e7886d8f127aba10379de739c85e45d62c2688280ba5d21a45c5054f42a2645ac2a9d990ec1a16cbb2c533edd9eff4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.5.tar.bz2=1aee7aa974a08c6bb5a29b0782efa2950c1e530bc2100e018d66450e8e89701673a034a45adcf70bdc37f52d4027ae263d7e4410d64fc637b594ad624f10a25c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.6.tar.bz2=693173e4e235300cf30ce1592bada6aba5bb29a123157aa419ba8403757682cff31c9b2b0a4e97daed557953f52c26ebe0e49605e1d12f5e4247e0096d736630 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.7.tar.bz2=8af3b57425f7cac45e7bc61029f872facc87e9ffeb3243f8fb43407cbc0a581491f38091b0fa45c8c148b730fd8cd493aa5286177b68092d7944dd73ba585299 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.8.tar.bz2=f1a7801bd0116914a055ff4013840faeac0e432b55aaae4c0bb61eda3d812eb5b3093c2c536fd9e2e28eca81137300f84418d8bc8dd9e48ffe245ad90dd3eab7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.0.tar.bz2=e1fea7c85410615f76b02df366ee49f929cd3bf3e52c3fef8b848a8a6d2b982de03c325aac664c6550b216a11cde64ae571bd5a5467ddd4a8b61039d874b2955 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.1.tar.bz2=e8b6b5dafc4b46e97fd905a5396d09ee1cfd1c0b4b74b9c3bd9e1056684f05345ac1599817cd9cb1dcd410e4e3ea23d5f2fc86da12e01fd076434c1b2917f117 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.3.tar.bz2=8172c35a381adfdbf0f90fddf526e3a5c5d4590e133e041aeb339137c1c31f16a47b904c61048c29906dfd2245572dd69caec507432628bbc98bb3eb94891575 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.4.tar.bz2=fe9370f2f45c557fd24574219e9597826f4614a8c59f092bce54338a2e927d16bfd4abbcaf0203a60a35a11169310d45e79c4a33fa4d45916bd6e4eefcc7b888 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.5.tar.bz2=e42fe5b628b6a6cfc87abaadbd9140cbc5c0000993c3272740ee6e20d07d2bacffe5148213f9628d6bc6f97211c0905e55d7bd304763ae095d86df8c2b2d15fa https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.0.tar.bz2=baadb5c405fab06da091e75af6497370757cb694d50c9f76fb06bc0a281df13f4ae893df49657c7dd7e86dfbd052d2cb7297961f9739cda4089ed71e52ae7bed https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.1.tar.bz2=71ad68ef1317ce5ba51353cc226fc7b11923d9022770b355cb1180be7c2ba4bdd87b079a8dec15c09ef3ad42056018a41a603bd0a10b8124433f36b0930153d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.2.tar.bz2=440f27f682a7f9d2a99ff8c0687c1fecebd8bce494b9db48ab9d303250b8ea12dee51eed0f68d940f141d8e2699653fca7d2a6811eddc5c512a9fe39430fde3f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-1.9.3-p392.tar.bz2=3582744ce4a4ca8b497c918e129823167e80909367d65484c2a09a8e6fa185a38bfda8c1b6676742acb492472d0687fc5b6eb18965201e0f54268d835f618df4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-1.9.3-p551.tar.bz2=fc04b976fa02fc5c1cd4ccdd49948b5e289b3a5bba16ef99266b65fbb35f0c20a0ed02d5b147f2fc4469db6a7b6665d34e0373dba242ff04c95fa27642cfde1e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.0.0-p648.tar.bz2=7dd451549e9c1a43ef86be51eaa746344c424d1accbc9cfd360067c3aec20db8ffee277e1108d40c280f1b8ec0851c6e51bc448f25505508d9af153878d9b091 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.0.tar.bz2=cfe087a9daa6de2ef00a6501d568a25a3386da730304697e1bdb9fbb098617a143f073e58629876de4f09a1e8a60a48ec05864fcbccbd6733d9e1b3d309a1100 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.1.tar.bz2=b74cc64103a31b9b9545474fe202ab9f9b15569681262438056865e4dcad08419c44bb696c7dc8a18f72b3bd8e5e98201d0c3608ea652c907372c3c95cb7e16f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.2.tar.bz2=fafffbcd24eb3c55c89704e6e8ea48ad6be286bbb4e38f56c3b3d61f9bf4f6bec28882da2ff60f17f79516476ae50cc4cb8c6a8cf4a0f31b910d6153727caed2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.3.tar.bz2=4daaf8bba3a04d46e04720ff2af1469e1caa68168f5c27d1d3e0cab922055b1f9c0b26ee64c3cb46c17b6a9651ee7a11bad19e9414102455e96454f1a7929408 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.4.tar.bz2=988c13e900168b901a3a3deb4bb96e19b15205cf4c2793b56854b58924fff652946a083be6615b2053fb5285df0fd218d1f9f91562798f0386f0758973765dcd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.5.tar.bz2=c7396627e45d8df68b18c2491fa756085aeb4ec28c1cc707617cd903fcd47d4fdd3cd6ed225dccc14497afb14200b9bea5ba38f1e8dc621c4aea8b8f0f1ccc7d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.6.tar.bz2=389aa514d93d165fe299856a5348b1667f295aaeb49094bb5ff49e9c6861bac603e698c36bf81777797d05a1d3c405e37c1a00a4dbb85f262bf02c1b0e16ff04 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.7.tar.bz2=5a38bc1dd227658347114b935ad66e27fab67b8da9529a7f9083d6aac5743c40aea8c33ca95d4f10ed1d56f29bcc2c0747a3e88b87425a5786245792d8851301 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.8.tar.bz2=44e36e4918ab4c354cacdd20be30acf12f060aab808172184251186758f750ce688eef72f39ea110ab6429fbaaa5a792b1915a5c2d845b6e22a3cc4bc851c6b9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.9.tar.bz2=358f12ae2d4e177a080bbcde8b275691418884eae9a42c98161170c7b0f6029ffebf7ffad27961bfc8a50a393796934a2dd2c7f0ad2a35992c35dbd6c8c6349f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.10.tar.bz2=e7e98be6cf658eaab81486360f4d5d22f86805582feee4aa11a8e2fe6b461db69b850c7ea98840af0811910be7f534317ab5887bc48f47a9591b65fa7262feea https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.0.tar.bz2=307ee69b3051fcec2942fce075232a62f6adf6486239a89fab7bd63a9bf068e36371e67a5e42f86ed60e31b8219ff431c2d4bcf519b2c10393504942d2d90a9d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.1.tar.bz2=a0a30a805be9c43cfe52793d103e9f0dc6076d02b0c5af36d650564aa43958164a278958f7a7e1132ee5d3357cdcfaa8d59a4cc0bab027e288d935a44958b743 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.2.tar.bz2=d3218d01a18f5dbcdb65f216469a463215784170d32110f06372fda6325bc17e2c2aec1601a5bf3319ad753b123de056e6bee8aacdd7c64c4859570d40571ec6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.3.tar.bz2=4fb3bc10aa46a85cc37fb041d351b2a8f74d70c3de32fbceefebcd6e757cd8dffdfc86cd14fa6ae7d5273f875e1d4e13e6446b6dd1882c8fb015d1d34ab5ed2a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.4.tar.bz2=a008439e903b1e97eb5a66a88cf72c2e7438b12b78750411ba0ffa496c68beb8cacc2037763be1c8c8841fe9a248d4be0d0976420db0520b4b8456aed5480f3d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.5.tar.bz2=14573495aadfabb81b985aa485c0090a816f459a0db8e790a7d1bd948897cf650fef4e8aad7d2ab8232d2ebf56bf08363730dbbfbc2318625dcab04d3904b3dc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.6.tar.bz2=e915bc10ecd1129d7ed55a12fdefdd6b6fccc281cb3cc0790e5970978f17652068ccd7fdc160608cadc8556abb73a2c187d041899adfcfcb4a311285415145ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.7.tar.bz2=d80b934273b84d7ccc4e17fa07c9e0a0f95cb4a38224bd60ff73772ef7ecb3d1974e686bb10aa319642709e49789c0886f98f4fc1ccc5312a19ca19f03674e7e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.8.tar.bz2=9bf0cc35deab5f53900bc8e8264dc1b57f91a3477f241848df48109f4b5c97f3140470f523fa768a7543c61cdb7a93427866d871d09ebf8060a5cb75ac6d3790 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.9.tar.bz2=0cdefbcc88c5b9d34c08c8871c548772bd473dbaf54738f9855afddae8da5eecda607b36c546077efd0165114da385cd1f296433afe411f57a524fbff0a69291 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.10.tar.bz2=3aed1b12ca46e34fce66ac23bdd97ef815918275d91ca4723f9a6f2a2b93cb2b66f845747951593eaaf078bd0d982e06efa7641fc3e11d141b7605b086f93393 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.0.tar.bz2=ac6a699d5d08b33e7580a24c9357c0c8e8378208fc7385f5582f088a879f61e48a4654d72f03263a1dcf33fb0838b01c8c21fd39c5e2549d683466e0441381d5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.1.tar.bz2=77cb7698c66ccede33f558f6ab9ebe4be3b775a567d1d4dc12fd85d7b0f28d7bd446b18ef48ba1c879dadd76b50540b57f283e9f226e904e620afc3ba6585bae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.2.tar.bz2=9592c8e2fd9266f5d1cc780706f558e15d775cece995f5b6e933c54be7b7f2be2839b28ef1898b2072c5cdce36b830e72f967062ece4393765f8dbc88c6dff88 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.3.tar.bz2=8243575f30eb38409003b0450ddece621a589e29a4ffe219410820bc2afb97b7daec4c81d59d95dcfc83138414a2df707c925f0eb56907d565dac4bbd5a929d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.4.tar.bz2=ae16edab6e55d1b2506c4cb30d836639035a7fc153511125b578d6da8a8b40cd87650855fc6b4cf777c1fa0428c593325af88d9ad25d53acfbde0051a730eaa5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.5.tar.bz2=10f4aff595d12bdb425eb3268c868e0efb92059e6aed8683fefa5abedc1ef21d23a45e17802edd8e5e0924ba1c3277b653c0559ef4ad4c9dd2be2fee17226f8d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.6.tar.bz2=bc352df203155008da7a1099f7f7d26eb9f80e0d2e41c8adec5eb47f976529c6126bccc207563de87ccc2867d1e4c43797efbf295c9a7a4afce002ee19116074 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.7.tar.bz2=d71dc217011d154ef7b33780366bff07e4232ae77321ad6d16f19090f924ed3867c31f2af4aca4ffbc6a536b0320b676716ffb43e34b0323e81eafab13f17fa1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.8.tar.bz2=aae74010426e2a1288280f3611ba6aac842ff573f9b122fda9a4f1c514e09cb3d22281e6957b4acfcc753c94113852e083a9a80d0cae6b33682b83669c475eab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.0.tar.bz2=4a083c168d9facf3346b67dde02d9705109feef6fcd4e3c7c59c2bcb35c83597305e09ee143915fd993799a888d6d9ffffadb386bd57e9477312566dd6164deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.1.tar.bz2=58b30b00156691de2acc5d21d3255029fc3f9f2536e668298ab160d300fa0bf3eb0705aa524c9123ff09d770807cda0154bae012632b7e87120d7538f844560f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.2.tar.bz2=4c3c586765fd5afb55383d16eb9d0e7ffa5b1ff988a2b1d847e3f972a211b2401f035ff6c02d71de558cc161655438727079aafcc8ab80c97e07e16cd7fb1304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.3.tar.bz2=e66a4ca4b95496964ff4d77e36caf0894d913c1116f901c9b589da5a0e388302b64a79ad6acfe7eb1ca5917825bc0f866b482f074f1d5fed96d91e238f7ef454 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.4.tar.bz2=f95eee611be949327224b89942f4344e7d8e075b958ce3418b5874e9b23981113e4fd58254629fa9f6c2fdaf5840d44785ecf5f04433987f8fc4415df5c3e367 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.5.tar.bz2=447b28420be5b19f6b1381d232920e3c20bc894c2e0d1d2e394cc44e7859d02d177ec3ee09ce96e922f55b7fe2651918805f00fb783af3780e5f25c21f330195 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.6.tar.bz2=5f60bde5843fdc0b05bb852a2f1b30ce085dbcf7acaf105d5af951398b845c766113ff3740d44585ce3814b4953c004230eb4dc2ce8746b6236ea4b7a1d1cb10 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.7.tar.bz2=929a03725dba7de8d7eee3fe8987b858b9b9d6d377beee710af5c3e84b02501996444aa7b2c1db458aefc3e765da17cd17ac30fb0b4d77ab1e54239e72fa2a63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.8.tar.bz2=227849b5809072b3aee211125c2aad3e2e4984e9d9b4415dd8c01dbff70eb9c3758c3cf54f2b97fe282f7a42f205a2becf7b86e1e6ebb4a4d048ca32659603e1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.9.tar.bz2=c15a46ba1e89cc41523a21eec90d4e3af5b9739d27c2f2b51047f2c1db832e2773cbc04871a176f71e7124eb3f7b53262e40a1baab87262f8811a8d69d8e5358 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.10.tar.bz2=b83334e272e78995b699de28bff67accfc151cc7fb193d5c5746fcf06087643564b3a0b538cb64f50706642a620dba2cc54191357321852db42cc8c5648270df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.0.tar.bz2=82038a66827fbdaf60f404103b3956ead4e03c999893f0095109e7d853919992cab615f85cd96ba9158402b2de5a68fcbdb8b32e9d07c6f754e0591f72851b40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.1.tar.bz2=31e9f176ba61480b33b7761d2a19119a200ad61c8f85145f736eb196de50babaf278d023b274274c6a31f2173c5d022bb93e0f8d46a88223659d8ebcf6f5e278 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.2.tar.bz2=75d25fa6dc81ce8a62d02adc2e163e7c222c5946116c4880cec19460e2309457ee1a11a8eac94243ee8437514bfbba9ebee939218b6ccc7e5c1f15b673d432e7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.3.tar.bz2=84c93c85aa3733f2ac82e695c19e714ad4afd096edd6abda8a4915311d1f604453fc3fdc290c6ae1f9055d305ef400f8f8f152c5e15eb230baf7cfd5e192b7fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.4.tar.bz2=131b874ac376f42f3427dcbeb0adb0edd18ece834514ff5cc15f3b3e29b8f14697050051224d7ba2b509d428f780c653a4d7101149b8ded41ae373aab871e90a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.5.tar.bz2=f55d2ff7f2eae4d30fbc14226c928d1caff21db1f2cd559d3caeb0c07a7a3f034fa369d95f783e6f38cecb493d99aa1928def9d8574698e3edea3d33515749f4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.6.tar.bz2=06b12b2a1e85248311cf55620499806078b3b67110fb45dad9cb11cbaf1e230ce8a0da23c7de0a5abfccdeada8eb799f038b1a09980ee9572ec415e24fcf8c76 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.7.tar.bz2=49128b7845954f1f04502a484f17d5c0c6ecf8990047f5a383b2752ea9e09839e5994b210c2f60307d44ffa8b440472116fa1231ea899caf639e1b8a72f7f97c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.8.tar.bz2=24290aab4e0d48719659f8c1153d2b08020f17ae845e9ac6d6b6d3203e4a5b19061e907a214e8d4390277584ff4b46dd4a0113c6b201fa37e8a95c42fab5aea5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.9.tar.bz2=c2771d6b12f4240200926b2c40ec1bd3058c9ef213e2c6032e44799fa34b75b00f2564a0f7c0d9f972870d34c7742174310bfe3b15e2742a17ba2fa05e5a27cd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.0.tar.bz2=1be48c38da41f462c23d516f465ed34e2fe90c6fd53ee06f1efc9107077d9937413bee589d5d3384aee5c09da7087fa84864a50089bd1cf3c385ba3399e9b0a2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.1.tar.bz2=b7e1204e0e501312828ca0e30b77434b2d8d94581627196f0195ba93fb10a11046d44942393bd8a261585c564bc721313152a9087aa56b57b433ed14cc7922be https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.2.tar.bz2=e91a187a9e726ed26ddfaf09cc49473c8379545e2265934fcd1a1fa78ba99f9a119fe2c3c8247eab583389c3af7ec40a0e71da19f6ecc17ffc086759cebaaa15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.3.tar.bz2=77d9be5bbcd115131ec7c842a4449729d1515bf2106a6a235472dc96b58a56873c2d0fe6a3b824dd15ad00194b30e72a75813d8b4e10ee11cc793973130e2401 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.4.tar.bz2=a2e5409a1a88557bef747ca9b1ea65ac90e430500a8f9370023b4314cb5d1e0679a1b03761980ab2e933ac3521188e2151e521408e33cb4dde5f0bf802d81a41 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.5.tar.bz2=ed6288a4d81a740d722b43925db8f22f794cc704bf834a1f9c844e2072baceb8938547abb8f4fb1a50f92c34a8616904fc2679a44bf4adec4e78ce00e8456b45 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.6.tar.bz2=08cda5ff00b9297b46d1fb620301066b21240951924337b8b87d27526e55024e61121e51d9b35feea2ac5eed4027658b39ff487195140e7abe9158181c3349af https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.7.tar.bz2=3cc5695814c4ca49b6a0d7790093e85f5a359c5411618a12e60f4bda75c3635b94736762983e287cd04ce3ee3155d824bd9bb202aa929f85387a741d1685dd06 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.8.tar.bz2=91e371298a6dc1083c8b6265cc8d3d388d17a21d59e0103bba7e68640f80bdd12b98547584b1cd0feb7f8dad6ad530ef5660a154075960e1a76061d534609296 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.9.tar.bz2=7e3d0f7f42d644cf4eecfd88801afe088260d5fc8f490895378d5e4ede76b2bd67959b9803db59f7b19287801df43eba920885aa1bcd29f60d225745d67093c0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.10.tar.bz2=64683129da9a476d268ffde06bd7aa1c67b3c7c97b539d856833ffb127f458a55176d8b4a101e60b18ee923485097f3bd98e8216c3092c3d0527f6111cf7a051 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.0.tar.bz2=cada908be34428bc2f302bad6ebd778a2c7a8e979476e00e45c9444b65d7f48f397b838549d56ceb91f0e5593ffd663e9facc4ea5f5c6a4aecda85a5a1136496 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.1.tar.bz2=06cb5f2f0c0941802119dbdf34995446d6d69ee59eed9a5e9d7f9e7f0e14de440a9e77eee330357fa305e81ee39a6868651c740ebc91bb9a2085a74b33685f4c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.2.tar.bz2=23654c65e6e62354857f86098852af0ba50a15643df5e7f6fc8b710e35a3872f6eb7dc1bf9266375361f696d8ded0bcdb9ee9acdc8d0c975955d299292da7e21 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.3.tar.bz2=ac02a93a62c55a2a10dc260cd52749bd8f4bcf1a2d43dad3cfd2e5c0bf7800c51a5b00779526d84f759f6d50ce673c7f3e526392c4ab68322649f4fe980f2ac3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.4.tar.bz2=88651ffa2f1623ca3b93b60a591e828ea0dcfc73daf1eead2629531beef291331f8ed1a4a33d682828ca60bacfdd7fea77bcd67f1a0bdbfa9d1e4f173da53208 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.5.tar.bz2=001486271268cd1d2252f46b32001b25d493bbbc8ce981ecb608eaf8d2c2e6d6361f6d9bf052b9b2d7694e228bc302a1082689f2038564439705fbecc00de1ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.6.tar.bz2=a48c974f341cd10143eacf46a9d0eef45cfca3ed91ebc9f7fcbba73d408408eebc60c55e15dab391bc4a9ada6777e2be3ec4b9e849927c5782f4443a813a6ea9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.7.tar.bz2=b9e99d1df4a772441edf7fa4e05dd5aaa62efcc5a8c89fee68aa80c4bf1d17ad0e5ecae5682a10d2eb0ff78ee79c583f0cec46f5ac11ae874126082b9f8d76e4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.0-preview1.tar.bz2=8fe71fdb37955b031769359dadc5062b6c15e0618fd8961c932212a6a2610829aba8b1dbdcf4bdcc2e133665e043b29088f714874e3ef3a41d688b7beba78928 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.0.tar.bz2=c51f55af33e09ed425715dae0dd59dfa253e909bbd44b4bf3dc34452656438c23a754f6b2ccf0a3e878463519043361dc7ad8a757c87a3ae0e747599547dc7cc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.1.tar.bz2=fd09a4d721388c2b9f2fd09b68175dbd620e11df02ff7cea4e438d3205494a9883c25def06d6c1ae4207e7f82bc48fdd122fe12630bb9af9da451ce6be19d86a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.2.tar.bz2=2ade19f26f6e2eaf65a8ac3e9ca21cc8fe04252df58f9b14c6d0f92aba3c0eff27b1c68b1b05041496c367051e020dca7b0c64bf44fb07b4fbdee9e68b78fdf7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.3.tar.bz2=11d81f71ec3d293916bd6a00d28dfbcc93e721d12c6137fd58febb79e7399f8fd1ab5a66915863311db9539009dac06612a4b2daf0408fc1f1e84db8f8f4fdb8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.4.tar.bz2=bff3db8c69e85d503bb0686644f2d60b97c599e0cacbdb7cd4b18d630c50d04ed0dd90ea97be01c3b3220589abefc1e4dbef39246860e3c70993f0f2de738053 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.5.tar.bz2=32f69f0e33f7f7d41f4c0e5c5a1cd859a4c6032b0978c317ec3d333da42047b7f8f8dee9c4d72afe890b47b9f17901139142cfbbf228018d8ab5d02f7a01f0a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.0.tar.bz2=f7fb515855de32badd6e5ebbb03980312144b69dd8b696fb56320981e4f0964065cd13853a34dd321fca1ab160510dee8fc3b6c99f2a5e007e6974d70a564db5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.1.tar.bz2=de183d962dd4a8c95bea54f8740cc34931c2d856783fe7506f0252c5c71bb7125db00c9c7eaf8e80f8fa1c97208ba4b2a4d6c1a76e38d2b6251a92166749fb37 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.2.tar.bz2=7589f0292f72a2217e5024b51791f9a719ff0862bf39480f1460b5106f1c11172c72ccc1fe2a00b166d80610d76fcbefe64b7c9df0ed3a72c58964c2402982c0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.3.tar.bz2=d79cbc4812ebe9b308a145e96f6e7f64c2692b04370ecba0bcbaae5427afcc7e57ee83b4537914b6b90494fd45a11bbf2b27999a7a74c7fd569687a93c43961f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.2.0.tar.bz2=2d11ad1c89c1ce9873dcdc87c41cf38105b00e265277a173d721fce4bd350af73caf01fa4a5797e926f1a0cb180f1c6e969149d1d524c4df797939cdbbe9657f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.2.1.tar.bz2=cbfe8a92e732675ca1f7d51c04775dfdedec1b9f21b3b7f0760ef61b7c375cc4b0758a17302242087b55faac7c3f1217fab0f6a2e713a05dac082cd6a5d5df3c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.0.tar.bz2=172189c66b3c721e7413f0088f50e4eb8dd80d87779c3a4e74231f7036eeaacb8e373b7f5ff017f8aa274c1e1c872066f2f93485a2a369a7e9b442d157840bf2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.1.tar.bz2=829fcc1a3d878ee28e89a58a2f6d4221cec115d241a007b048953672d57548002c3a105ea4e65e344137091baaf5d5c54232a54c116afe03d0f3d61c07547c2c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.2.tar.bz2=ec2e7bd32e2d574773486e1c1d733611465765cf14895fa6b017b6ed6301ef40cd062496a3926788851e7ff3bdd62b488d03385aeacc66bed53aed18a6dec225 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.3.tar.bz2=79f822725d4e3bb7daf416e736d87f3b01c21d011423a2b3c65d9019a47ad4df256fd4a1f171961267ab8f20387019fec8f3f4ebfb6664f682bdf36914f6a329 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.4.tar.bz2=aba571bed773554b18863e6b942f2bca743729834657689a016938a34b7e4352e68d9fffc440b2fd4fcdd1bed4d1ba5dde689da535088d7ff8ae7dc364ac3b2a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.5.tar.bz2=0e46655028859f5abb64d71a5585db638d00edb9d20a487739d307bc1dfa2fca4ad196e04044dceab0e279286379e73110590c772a06786214c4eb23557324f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.6.tar.bz2=177e9f0a193f9dc45f8653306cf6a87bffba16780220fedbd8be67a3608a8f8d370011f3993590d58805a8ea4833d95196385fede4b513d908fd4263a82f113b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.7.tar.bz2=88bfad0d6258372d4e9739613a07352e954db3deb43c0e2d2a176f9cf55bc5e2df73e4cb04bda75e2dbb210799649f020a7284cd2acb5fb92d2b115a933a4f03 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.8.tar.bz2=3710f83ed7f3f30c9b5d3dd515c168534d01811cd33f20d3a54e654dfb5140afc8198f46dd823ac45072a83d844ad866af1e2b8265f54f9997356be88fa254a6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.9.tar.bz2=078ce0d7433e63d947fe4cb0cd5a14e6f5fca00b7309d7288359ed90989dbf618bd8c1f5f31b607f3ad6b0cf540d715dec2c38cfbf71cd170e572321598bde7e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.10.tar.bz2=f97f877f7afa604dfa7e8f1b399a4c034e79b616c95bd4e48927d88d1e8adf8e203901fa178f93c6af4511d26a38e2d8cced7225c2e75457bb02dc27b8feedad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.0.tar.bz2=ad619ccf77132166151e4982996e93135fb91d97701ef9aea12b6bd05e18e585dc4d5fc34883b3369ebba15474741db238fb90192eb273dd5428864429525d9b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.1.tar.bz2=9094c9bbda4c3d830382e89e4e1c24fe43cebd9d733b6878a43a34d679092bdb6c7b23cb3cc08d4efc6e15449c68862799713006703f95e2862bad1c0b0bb94a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.2.tar.bz2=54c8fc2f2a99f834292b83ef8e68e2b120f20fc4ff74856c13137065b95262f62188ed5c6ffea8fc4b0c1034d9f8a1b497878d6a581391d422994911f5fcb35d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.3.tar.bz2=b26daf1825cbc9cbe51e1abea84f3aae542beec7c26628201325026b4d4bdeeb46f8053a1c105973242ef532e66bd4eda5199dc1aa4faba1a6393f9cc126d856 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.4.tar.bz2=e5718fb13f2fe7f6b34fbc2b1a6db95576fcf9cbed481fea59fd4dd28d064104a912a1000533810221141ec09e9fd8d1e59850ae5a26ae441bb6d8878f42c418 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.5.tar.bz2=71ae2c5bac04a97694310daf76e896a1a02c245274e9c96ca96740f78a0e245302564bce757f1688d3e83b7c0c88989f702814c434101f8df786c1276a4f5a2d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.6.tar.bz2=1693ebd7cd3a452f51ce2ef32144aa36f6fa8121ec68cd0fff715db8981214ea9fc729099e4495e1e8bc346409551d4b93c6c3803fe187fc0c25360b80caab72 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.7.tar.bz2=53b05c51b970a239fab953dcf3bb433f59465fa0b4dfe58066132a1bf6247cbe4adcafe41b219ba453ea392f88a521349df14d58a91a855c53c9b9ba4cc16c4c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.8.tar.bz2=b9b0d99e590a48ceedbd1d6318c29b8fecc12b02ce5a6f1555593eb1b3e284c766f2f8800ee3070fb7a041593e4a3806d53590be760381268ef0f9588e127b08 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.0.tar.bz2=90491968190f4809fefb4068fcc37fb7e2ef179454f57c90bf2af308541f1ec175a72ded53202c1e86dbb63cb6b47678656f753574bf6ba525e982f3278a7602 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.1.tar.bz2=7f9ce1b6872352a6feb539948d26dbdfefb3d4225ba582ef8730be8fd85d5c350bd6f21346d43cfe26a8501c4ad145d733d94da5dbf25b15e7610ca037ad4227 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.2.tar.bz2=8544797f46d54cc4098227809561023bb7bd01eb2330724a94921c5a79ac64b44bd56069d7a77a3e6d2d3dbc504ec25157daf7fdf921c3acb3b4289ce1bbfb5c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.3.tar.bz2=fe086aad84ac7fe8009ea2bc16f0ccb7c60a5fc9034690af38fce1a05582a6226dc3d7b80d08d1952d03a9abcebd7b361f5fa2d506d71e1f5aae9b5f31ac22af https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.4.tar.bz2=ce06ce97ea1554972b00781332f126e767a3ab98f5023d3dc83195bb36b954b1b497961c74bf31340827d9a5de2e0bb34240accbadad550b2e692d26cb097d4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.5.tar.bz2=6fa248065a48cebd1e9950ae07f3e653b3e29e369fdd914908be0b215257fa2766b0182e392fb869af51cd498e258435f6d9b45a03452356dc08da0e96877ae4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.6.tar.bz2=ce912342033f395ba6298051b081c89832f656d61ecf2064e9568692552a938599c816d2cd1fd1f9bee721611f890b8329985c69f4d5b2bdbfa6635b48afe3b1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.0.tar.bz2=cbfc7a1cddff0385187a7bf2eb9dc71a8d14912cbbe4e9529b79414e49e681302ac9009b7c8e6fcf92a9f19a0ca5053a6ed25edfdb510e3e4e247474d471c58c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.1.tar.bz2=29b99b3e04325ceca89b64c7846aeadb412215270f6f7c390fb1e275ebe19b2faef811778c0615b2d4720ddd942a2cc209c72e623f559e6c04e78849cc1c1b1e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.2.tar.bz2=f67ab3ac13ae90622fb3664a869b0c584b97df0500384a28bda9c5c36cf2a27ac1f66afafea08bb29bbfbfc1e0ddc444427993ff4163987f5510c4158a90a96d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-3.0.0-preview1.tar.bz2=aaeeafee545dd1ba1c4df5b7e46e82f7e89e0dcf4fb10677b7e177e66f86e6825e85fa5ae3e74062363883768b3485495a3378f97693d45f675a6e547e989cba https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.0.tar.bz2=3e78b2a73167c3680aebb1ed015c583d4f6c58804d3b272253bee2cef37fd2d1cb3852fd2b408f4af1abca17725d923a1f28d40d2a33896e5cc21c4c6711d7ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.1.tar.bz2=14e7962e180b9ae16607347ba5360b9ec086eb8055b88d2f60b1c9284fafd93fea905aceb441f07d594a34b53647520f9dec38e4e9f6ad3e5a6850750d981a27 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.2.tar.bz2=5b7d88d4405cd45a6a720295cb0b7d3152dd757aac996c8d1a576c6ab2a45cf9ed0b0ac006423791cb038a14153048e96308ecc8ba1e761d4b7671dd6f880d15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.3.tar.bz2=320734a124e26de068457237b5f973278286d7e529e92405c1b856b6e57441b5e76c59d0f519fe43fbdd2c8c48c9dd37dc5094831c0e6a81d804e88888ab6237 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.4.tar.bz2=ca34ccbfc24adc4b2c6c5c0e3b27bd2754c2c5be61e9dfa7b919b4902174e351f45128d887c179c37ccd5163a7f51c213fae96be4d0c356e2d7f96acdd4f164b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.5.tar.bz2=fabb151c29ad7ef7432efd4d51ea1e20180006601617ba896f8b1379555f4088d398e96f7bddd7c9815b266acf5ea94527ef4acfad2446950da6fabc3770f788 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.6.tar.bz2=2728c38987d41169b7110fce2b507b5d3e971d5b043b60c9a3b8d6d385ec2a40d24e464f6cf081844282d6b9fadd4abce670e79f02e4606bdd5aeacd1b57f773 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.7.tar.bz2=f98f4dacd9d8c6c9515ddc2597da8b868c66897577cc5a76819db742f3649881ef5a7f85a880f1e359772b1ab08750dda6fa74ee826938e06b93a9848699b929 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.8.tar.bz2=47fb4b41e60b1e536b3a54e18e9ee92aefee7eef92d49716b46884b2a3d73a02e88e4815df64baedebff80e9e17ac7b0af6e65b406a2c53a4f90421dbc948415 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.9.tar.bz2=c81ad5e16aa18beb7c34eeee68ffa96da243f99ff69cf00932ad5ebe427c1f80e3f7fee31b15ec0d96c1be5c2007dfa6e96c38114f61e958c6b7ecc40270db4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.10.tar.bz2=856210b3eb2bf338c5da2668e830b95d48feb82c1c4407371b18c772df12878703a9eec948a2778acd098bcc8eb402ba6d57b2b935766847f3e652c3dadaf6f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.0.tar.bz2=6ea5e6338319e5d6861d420b10f93b5e6634a9925380c61acfbb258b6609ada76bf2a6b474b53a30b0a81f0dd81cfdd1e610b68698df73f69091f479ad39bc63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.1.tar.bz2=8e8e4ef137b9394ee34b760dbeaf4d23953bec083e5775a423ef6c16b75faf8bdfe99df975ab6b6d762509536b017f3510a9a5e9ab63060208edd4d2d96371eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.2.tar.bz2=756c9ecbe3c9801a0a364143478903318c524f7aba026239a1fb42d7390f74110805543a9ac2a9f8bbbeaee48bc867fd15d400d8bd46576bf4fd417d6136a3b2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.3.tar.bz2=594ff95e33d0f7af7be448a781ac68f895f8344ebb1c9a03898813baa5963024aa84b11baa405fa584070e4195fbfda9b908f1fe171f75f19e5e1d7879bdaaf9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.4.tar.bz2=a9703c6edcfa2ddb87bb73c070d963fc4d59599919865be9b1d93989906698c6f3b9c4fd7f2d597e5d710276555de0b5865676b92aa3aba1f1f41be4052bedc1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.5.tar.bz2=dbd91cccc0a00a1ca7e901d56f9840e62e4f139ff4dbae530169f41897d06523c7e8977138ffc6212e1b60589f3091a4e2f6b6714c0fad22fa65e442b248f61e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.6.tar.bz2=ec967415b5bec95154cd9ff8338a602a6d005fa647afb1e1cff54a0fd4e9c0697b9e952c2dfd8e4b30068a697f5391b9cd165d5d33f3b146fe35f2a8fdf9823c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.7.tar.bz2=b8786ef31db7d950b1309646f81e6a99d56b76223bb8d2d20ae045f09917332a869b14cee1bf235675c7d8eebc6942b5ebd6cf0cbd290ea75d9f9be1475352f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.8.tar.bz2=4d949a715a04cd45f6817b1b26093f7bbf03ca630aaa015972e7d0ca72bae094add18664e1489ebf8ade27c160d2fbcebdb105701d719461af13c4d5fcf2cd22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.9.tar.bz2=ec6cd8bd90ee99aa6470d9d524d89531f96f992efab8a9d6a709a3959ef4c314828276e67b84ed97d415cb3e0c837458d13732dc940c93d4d069d9b881d7f92c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.10.tar.bz2=1f60cae30581e3467c7ec07391de5045f238b61a49661ef0cf76d72ef78d220b7ae70b86b1e72625cf37085b6507fb1dfccfbe5554195f0c6eefaa996e199c16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.0.tar.bz2=343f5dd6703b6b58d61fabefc8a50ce5d02d98c32c8b4e52b8deacc9824369a9f0dc8faff69e90ca7585a194a4d742791765b16c3f5e2417b0f54e0e6f6220b4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.1.tar.bz2=aaf7f9e30b3998b8586764f61d09e434c32aba7479aa79fb6afa71ab11c067384ef3a4b9215a1a3639da807f4f642b9efc62b37b55e989b7ed7d75cedc7cab40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.2.tar.bz2=b834ef95d52abc1f0c224193391bded9b4d2089c694378dd5aa45f8b2b1ea41b1c300445f766841cbb8cdb1114491ffe0095f518e1600746f5f583dd0cff9c1f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.3.tar.bz2=9df5ba9423e0a8af9d825e59f8c69889c70af0f6d67f96708a02d7d61260c83474e2f7b2f240af399911bdfc56850255b4f34554f7013d0417a13bb782403aa4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.4.tar.bz2=1d4b55a6a34249e82880fbacfc1d97a093600005deb982c6b42ccb14bbd7bf1db14e0f6d73bc25f1addd72378850f7edcd63738f2b3cbab569e34e89d563188d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.5.tar.bz2=29a76dbb28d5b63ee0ce64cc2e7d022118350a550d3693b8e38d559bbc4f42fdb6b63af4bcc4ebfffc5c0fbabbf2e18db7228e655de3bb416e344a61737870c7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.6.tar.bz2=122322fb462f8fdcb065e6f9d9968027c320ba9be9ad6fba9011760a7296cec1892a0780d7436903cb7763f5d18cce11860c5c7fce82890eaa139a94d5e89428 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.7.tar.bz2=0c17f52a74b73041c588ed76f73862d179d7b9abf9de61279dc74ba7b7f170179e0db5672a403dcc209b6dec9a865a88a382f5df01f5e6ba4cfe0f66232b4a15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.8.tar.bz2=1a30bbda34fee311762a2f05ac7fbcfb4f373f8840f86b9762b0c07f1cd397e3eb3be83210221384333b625a243c7161ef4f368602a613760391265309e4f304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.0.tar.bz2=edf31b2dd02208c96be25c2f4f7d35e2b122e5d327133545e16038836b848b90f81079be4df47c5493bf4ead1d464fa72a8d0d405bb2509ab0db6335c58ff793 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.1.tar.bz2=91cc7a9cf493c7361f3d507cdbb8e258b7dd710100cca8053b77569c07c04fbc2f72fdceb9fd9a3a5d01f4c423a206da97730c356d017157bc2454041e1f1fd4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.2.tar.bz2=8ea603a27560ddde5fc639b86381a303f886ce80384d8edd0e7bc806f10649760d75a76dd5f2ee445371254e727544ec12df49d7fc8876890b73237f4eecea1c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.3.tar.bz2=c42f24668695be5c291836ae6f39b4366e0357c9bb63cf8be2ad36cefe0c6d19cb921a43159d49d4d062dccc15902ec1698a1a6842d13ccaec45c6cb628da4b7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.4.tar.bz2=3ac89131407faefde80bf2e1bed4baa51c371ab4bffc18c8dcf2624f4d1068c9f933eb66486a2bc7c6c67f674c5bd06747bddfe1f1f9dcd939458a08e1bc6108 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.5.tar.bz2=8ca9a9387b8cb434828fa36e5886bc8a28d70fa46d3e20df60389880477fa2ee54fe63c0c14611a2cb0168ef1149d205640c6003e6a507400ad5fc34fa641bd2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.6.tar.bz2=52795cd7d112ff437adf603f58130ce539209628d2224a685d060d67a07325717981fc6f91736d4abfe014ccc8057bb40a097fcf85f5046aabde0019d08bef16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.7.tar.bz2=bc179a31c746ac6e632ce08f57a8f403d4e463ad72285c0ce008d7fa39b88a22be3a43014c9eb019f6a39d022f9448ef151a8d03e89a4d2e767c4f77684e3750 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.8.tar.bz2=d693e3a800c2200c74b24c207425f41cef206a0b3f20625d18b1590e9891f409d6643ee0e7ab8fdb6e1e85de6fea52c6a307bf8f65324ee0f9ac33306ed1e876 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.9.tar.bz2=4b6cab99f6b7be7705efa5eb6f321b5eeb1d1c6e96d4113bf96b57378aaa4950b39f40ad555f630f17d216d235972f028617ea43c28b1970772ffd16be3d9a67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.10.tar.bz2=40bd90d231fcedbe34ec9963eb59645fdd1036b03056b9b8fa3b56900deb86d94e2a256f90e6aed297288d6797857a3ef9fc27bc6ed05c017b5c8e8ddc465df1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.0.tar.bz2=c1df39ae526da7ebf87510017d7694e6f78c59871baac4e9c5f2d13c22cbecc30925e2783ad93f741110b7c3802e9f25a6c3ff85160b33a4080b0f1fb02f7740 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.1.tar.bz2=930f6f7f654fa14076c84365fbc771d5b09679588c4c478d8f6944770c53fdd37213bdad159fd231efbc079b85ab7ab648b0a97fafd666c38d0e280046c6e2ef https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.2.tar.bz2=cb62ca82d57dfc0e21e532d4b523f49c559c4ed5f3d73adbd9d650bbf23c694d382f3cc25eed6a8630f23e4780db127b4b8b6ecf6fc24b0f6febc820dbc6af3e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.3.tar.bz2=708209a89a18cd99c02392307d2bc63e46bd38c72c8ab0e982b28285f8e006d4ed77e04da3900c880eff01c3350033cd00ffc3be1d3a12c4ee5b263282f0dd05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.4.tar.bz2=c94f5b3129ff41da1b07da1cf742592e9822febf6bcfd0e9eb7145c00b732fc66625056bddc72fe9b631742c70d0e731cc6a9a16a089c7b559ae963b072578eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.5.tar.bz2=b4d20f79eebc5496768fc6adb0735c6a23cffbb39ceaf9c2da42851ff7842dd2318c07877d89564176d206e22b8824d2a3c637b5ef02c5caed0b2b5276581032 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.6.tar.bz2=a09ab93c3d6936d30065236ff2abbd0295988a9359f5a76425cecab47af0ca5b6829530d1708e9ddc9e78d1fbb7c0359b9c7e90227870537d099ccc89c73844b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.7.tar.bz2=f6086c879f8737eaf6eef4461d23270e9e43811186a22f35ed69a8303eb933136e7a690bce2d9e18bcff730725292075e09db0f2384d0e26018b7f2a0df70b32 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.8.tar.bz2=62c631026560ee310a849483f1b48690075477942ce86e0564e92f5ca7834553c435a35a1d6d8dd957c3a7be24c63c32104518995eb3a96e61066a04887bb0d6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.9.tar.bz2=0f10741772d2498167c1eb2aa263292f99748518a4ec03dc19440eb5befa075fa69e68b08a09af6eb2e02e462ff20ab10e4121cfeea7bdc938c04762d81fbc4a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.0.tar.bz2=908132a47bd996f8c76bed54078e71abb154294f97dcba779b4cf0d3b82e31c4635dff89e97d5f6b4f1d797d854c6d020afdf9dc77b10c0e522755fa194a17c3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.1.tar.bz2=39c867ac0af48410c0bc6b01f1ecac00616a59cc07f3f5a3e7cfe8f786b70c7cacab65550dfee777d11b8b7a3ac173bb22c602df370eef6a04b40f8e539025ae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.2.tar.bz2=2f04566f6d778121281bc6ba23ec57ad408049e649b351585bc9a3184848c71873910e159f7fd3909c7372378152f5ed264070aefd45933b97980e80f6df4deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.3.tar.bz2=940375b11c525e3f0bf00e19013eeb886bf85b8d8b66d86d53740170b0ae16b14faa491dbcbec29238f875f84204cb0d52ade17c180d71e129cef5254f338f0c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.4.tar.bz2=1c9d41d7ab7bd69d7e3baa3c4149b1938cc147beb2a63923dadf2fd959732c8cc824e2add0946bcd62f44b0e1d509b80b4796a5929841cda8d28f3a8207b17df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar.bz2=f47443a53e3008cb7b7b7afcbbf1adf44887769e42b3defafceacc1e50e349c9000b98010f853c6b7cafdb54b85b640732a56a8e11ad8e58fedb5fa4724f68d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=fc1c9a08c48ad91edb4afcac5244f386d63940fa906dadaabe02a1eb025375443c8174a6ad1acd50f4583d6c57a88feae86e697ec15c8a25bb49f280b1357783 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=aa611f7c350374d2c5c8652a694022e038cb5a65fde795c43e927067f155d0ccb368b281b1575e679b84cd7ba6042216dc28149e138256faf62dd3060ec0a6a7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=ab04071b90ddb81b68f064fbc9f2bf726729220e4359113556d9b71f3549483f122b796b3b1e4dc8404e6f44a4bdd02e9db2c8066974acf190448c4d5a97dc6b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c769fd3814bf31728b83f2bcdaf0928e6423150609f3db903631f9db68ce0a0f9c87bfce5f93983cd962662148a66cc55f5f42bffc1a1b5a237e6938726629ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=c231f8ecd46760db49796519645bcb5cc9fa1c0582abbc419a2ca81805c81fe8912dc32dcc2c5192ca9ef0d502da8f61ce1ce7ecc87b29edad3a144a8a0c200e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=b41557c83084c8e5bb263aa944499932ce7d84457e4e307f1cffecf62aa44f8543a06299e38fee17ba64f8952048612f9289e24c35acfe2ba02b913c15dc1405 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=001d10af5833a03b42d9a254bde844731d3a796d98ce2efea90fc68e4638c7cc3be31a34fa163d4c5ac18c60e685e5cf2ccf88fac46ae6bc587a48ea35cfb09b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=0a8681afc19372ccd9409bb017967f86c2e6642e083ca47ec904cccc34242040f710392d916a69a327ae6a0bb287d97bc05bbe116a1d93478ae282b32e5fcfab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=e505ff2f00334870d07f4ec9348648b7f3b91dbbad1fddb2f60f7a38572a66a7bf081fc7b386f800d86113aac1ce3cb739c86cf0d6da2bab916a4432ad557c54 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=aee6000ac886cdd4e4044a7b43ab20d54d1e99f6b893af69d0d7e7a202f4ae861f939898580c60996b0bb7c6481eecad69a20acc83c75cc594dfbfde3a22c476 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=86f4e6948eaf2586e018570f09232b94f907766590eb75f00992531ef74676070ac5a2308e121ecc1c23388ece4dbe1ee8a4b2a7ab99ca00a28d6583d6df3d0a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=1bf867b0af84eae4e7996047727fbc7ef459afd3b2ca5885f658a74d62910d00eecddbf0c11b23265c625c26b420421ca5add40079438edca8eacd8b5c0149a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=92a3b217079f9d960cc4fbb5908f7fc7ef71cc3ec8e5e404341e2b8875534c0542167d03b61577776e0b0f049f9ba2e3235842be381b4d484845768adaa6e3f7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=608f0f9eafd72226fd1b39f6c92d0f1c6d3aa7ede096cc390fc4f8bee4326b0937767bc6de84fff536dea48cbf9bdb8ef5598670235e013ccd630b06c5b8fb05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=40cccacc66cc4b7891b01c35375ca913efe008157ae540308b649e14f5753f34f1827861c6e16b500c49ac95e1aa22e1c01444faca5dce71f981452a9e0f1b67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=5a33d600e55f7b8755725d7e2f2102cd76720d524d7b378d85fc21ea8d853166dd97e2e615ab18f9e44122e3404b439dd123f8e23d6ade5328982fe72db2af0b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=37e3a4011b3603807c6e0fd48818b256caf272b3720ee654f38c0ae202cffa21600f9cc751b5335b57905ce67db185b37f548ac9c84d6acfc567f0ef4866635f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=6648c1b6bd962e30e89eacdb6130b1788ccdf6ed05ea13eac32eefc222438a298de8121937262851cf5c4cdcc1a804d5d8bf19667819db6599bfcf79e57b0e17 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=ac690170a6801fd741efb88e67961c0c3d717029b3bd9c6e243074799641c940416fc9cde7b4ba2c56e79551d6cb7fe5f7977649404da0d20d1819d7d3ce0bd3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=e6edfed2dd9d6649c47b1dc1b102f933f76a148e6dd8441add2316073dd255cac851e972366e4821fcd665e55b375fac757d189b7552baaa0b49e82349c71b77 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=69c4895076690037199f2a9b98e622f6b5e3c23ea02de79bcade6193da2b1b88ed0c28006059f4ecc502298442275e7e7324232de04a2f0ce430665057410a05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=175777563303c6d6a04393938ffa7e36e0bc6db33f7d2cf1d42ec852b41ea26dd7d50569eee4cb00497e6bceae95592365ea6718a35451e5c929d8a085aa9649 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=b668f0cd853615fec38253b264115ef0fedd21a7879a663ba844f4c3fa8b87e5ccd8adffbaa12ffa3aa16b108a2a439cecf827e7d8e19ec8041d46e758abc391 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=2039b1fcf55cca35ed3c8446eea45819368016ec1a05a5fd4c6a761b54f5cd56cb3301d5d2674af1ff75bda41eba41b7156e71ac48b88ca7a6474f0e944efd89 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=b4bb324a53c316da488c5f60803933eade9ad5c59a6d58e76787d2dd89dc2d2f18016d2ac4ab0853a40976b4beab70864a9c2d23de194bcd63ad089b2159fa7a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=3a9b5868d707d6a4580a44ab7504cb46a2713f78918142b185f0d62c5b7e0dfebc1ff551b2a52e9726befb70abbde867d2802345a01fd3e4568b9f58ac83c168 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=39007e736b28ca599ea244bf4e54b52e86597c950c0ebd8f1696a02c8eef575a734d089b52c7013d00c02aeb261dd7e2facb45f24b34c75c4bbf14cb8bdc3ae2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=0fc4e39f7382c29fa2119119a78040c611fc8298bd4765025599d3018775cb2bb28f51d38efd4306e9f04eeea20e7c2365f2fbba1233e0494a8258c3c184278a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=5dfbcefa70f5b81887d34e776713bb9c6f7bcecbda8f1c9561daa3e235c725417ab0a930f594303723f226d36306e6a73f228abfa3533280659ab387708182da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=00936db899bca33dfa8d0e6ffd4bd6b0453ad5823a450e50e3a055ea696dcf94b317357732e26208a6f34224c33a8b4a6130e5613262d62381179a52cc8f3a1d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=15b816d190fd58382a2f6f6e087f358b54003f186462abf59dbef545af9044a2b9c65576119185adc6bfd9ebcdb49f03a2a268eed4fb0f0d37aa35fa18adc1fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=3a481c35668be459688a66e4e480e11b4e58c13aecc3751da9de8a3e3282bb4a152128528a804742aa0b4380eb537b666a2b29fd79be0d6968c4ff1fa428eb7b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=c604871b39f396c539c52dd4849d1d42f37530003601f60162860efc777c85e7e1a1ee88a77cfc9ca8ca20f0448a5dde4f39cbdae67470d8d2d283d6fbbf0239 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=12042b5c30179da275fcb6155142ff2787e86cf577caef44b7c4d8175ac671cd461814e9a19f4c9b1e78bbdf041fdd06bd463aa972e194caa91e80778a56bce0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=2bf1c13616b2e255b8c269bcb2f979a45009c079ffdcb10a13e238e5d13b0978e8a974bdc1e7bf8519e15264ed5f577cc8f85a5861b3ea3a4589eb78138a3f2f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=2e7876c8c8a1f4e3cd1913023c564d9e74972ce427e85765bbe9ddf237285d7b96017c1ed17868eb912509881e05aaf96e4a6b353a69989e61c733b346511715 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=06de4f6f2761bc58d94659f826c7c86be50192b7dfdb5c8b6710b384a50299ad161309e2a8c333fa5249d0e7112f74dd0c0b0faa2950a6e74bdba68833f68702 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=597374487d196abdfb389c79d7d09b81026fe3e8043f8811497646eaf47bfa432cfb96e2af9be1a35ad2d05f2f5c800afa3f9e5adb0ea2b2d31812d219232a00 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=ba56050ce3fdbb9117c6c9e767f818ce3d467030713b7693ebb039f6888bd5d7e5f7b1986ed117414037e56e550707c3625a88bfd5d00d7319d0c7ad642fc811 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=395facf2f7a15eecc94e554a60d87c269ba70c5063b24b7bc504f579c0d12a7d858eb0b98c502016ff8bf02aaf11ef765e2291b542759fc96affa186206ffe4f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=d1d527b2e95e3a16f521214c5352bcb379b946e8be1a943da872aff0ab4b8edd93a507d693abd7a8ef1cd5ea1ee6e6bf1f838683f5a447a6cb7992de61f744ad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=e47a50392c4f3ee13a565103e0c5f9474ba0a8f5ff60fc9fe7d290b7f5f9a9ddec962fcbb103a8d3b9c7765a28ba59237975f90aa3637a06a128802ede28b3da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=77fdbe62d1694732a7307c29b4f45d0dcab7e8a729f04f45b216345336c5820715bf3f8f7cab52175c4ca1a431d867c7feef7d802dec61c2cffa4abfa8746e90 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=24da0cfc93ac536c505dfaf2dbddc7b312a3cc5c72a9f47e28b3bba760a53b584422b73da8546ca01cc44d3906a31eed7f27a3dfc0bb574f01f9c08f7c589d20 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=aee8267c4855e95a55b7ab858ca6359d635049743b8e38d34ad1430522a0cd746cd572e77884f7e10af14a731ccd8ebb9cad6ea035b0fca4ae534913a38f43f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=ba3e66bd3dde28e7193b90c44194cf7732d294e592321c482deb3b31ddd9655630f5b04aa89a43eb9d1bc222da10884e9da332bc9da78e9e1b655300db52a444 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1df8a2ad9256985b4ffb3da5b545af4160ccebdd8265711d1b642cd2285a004a42cc2ea51ce3ee78854e599f5196c66448b8e0b043846ef6e6bf992828aefb6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=cc460b3d17d460abec27d77f734e1c1e7a649769c3374f02d32a4ad00f989ff3150dab926a203b209c92475100667dd524774fc37633d71f98737ea2d8868968 jruby-bin-1.7.0.tar.gz=1e466a3f8d52b553c9def09827fda4b8433576b0262c40ee505602754521a00defd821d5ead5052be52baf281c6cb080fd03a8b15c628a0ee67b4e417633e5e2 jruby-bin-1.7.1.tar.gz=ef28381ca30664cf450f9d3df9927530db771d30e86ebcf535af38e1a7e26724ae2bcfe8487cd2eb349bf609a733a25528aae14beab4d13d298b5604ac7353cc jruby-bin-1.7.2.tar.gz=8155c81eea6743951db7383bd9f6b1750614927c9c0b25a6574f6d64898bb3ada2f626c6e0df6c5486561a03cc7d472fc12fe804ce66a3972d2fe02e3f407100 jruby-bin-1.7.3.tar.gz=1d19be25bf4a7dbb0edad71008704377893d3967aa4204a0d59d6883aa04462ef6798c64d0c0fdd3f5129c16ccb42e8507f3fef38ed56054bf6e689de745935a jruby-bin-1.7.4.tar.gz=d7c0ee0316c50ae5413757e956c18ca68e9d99a25cf85be978da0787c13b8978d4ff2712a3effa564cfdf07144be4a56a0cb8acc794a01f43264fe8baeb125e5 jruby-bin-1.7.5.tar.gz=a4984591a3809330b93f4ce79fd1b9c24360f89d88a03bbc76351be623893c4bfc6441375bbea452ba4f24ca8b9357e03ac938fd6c065b3e2348c0f896b22a1b jruby-bin-1.7.6.tar.gz=98600a2d46bfce14111c7eebc62716352a4b685043afdd696b8fe51c6b205eb9569fc2860423a653b842b173198c76c59767156aa48e0d23482dff3358d884f3 jruby-bin-1.7.7.tar.gz=71da2e72c65899216fa15ec568b51aa7004e2ed7dff99ca376b332d3692c83a674c688dc21ee04d177a3961a2bb3973714509d88cc14d0ba9f79c864c6258a06 jruby-bin-1.7.8.tar.gz=42d54243653ec260abdafecce1143161be63fcc38a80f71ab70fcece4bf91545a2b12ed2319f9fd6f6b41916c398a9a8e89e7f0389f59da56f2739665e74522d jruby-bin-1.7.9.tar.gz=f519f53b1d9f57cfe28982ad70b892dc6fc20fe6601d98d65a1dca9f617a0eb8fff74d0fd82ddb858fe105d05ca7c7bbf3a987677ae0363caa2981bea358c096 jruby-bin-1.7.10.tar.gz=160b701f2f500dfab64beb635e5c4dc57760dd422d0fffe8d3cf8d84ee6ea17a877ef77a0087b4888ea9db64ce7750de01a73a51530aa6666a2efdcdccdb89e0 jruby-bin-1.7.11.tar.gz=a53b0fa327b98344cb4a8aad1ba537ddacb709a0e173b1e32656de8a610cb9896e9a4554d54d0d01d2361f8ff1539a0e2ee01308f670df2004225231b704065c jruby-bin-1.7.12.tar.gz=bf2be8a37b53d38c75712a6331f96b999fa6b0e87f453fac7b9d11eeb1b66098ea0778172f1a6a84345e1881f05d63012e28d4068a0bd31122bf2473bbdae5bf jruby-bin-1.7.14.tar.gz=f14e658da7f2abd469edcfd657dbc2505d6a2c04ba1e5f65f2164256f54625da154b338bd3d286ea6a18da61d04d90a61ad6b012bd9461182753483efcd0f603 jruby-bin-1.7.16.tar.gz=47ca714c3211c95c84e9c80ae4fbc894bfd7ee03e1bcc494cb48d839f8538db4aaca7029a4913b8d323e7227450e4e41bb943dc670f43df8a654eb127012033f jruby-bin-1.7.16.1.tar.gz=9bacdf6e212d08e46ac2c49183c8611873f6ecebfcb0e928b5110bdebfeb8751ac087cf8aba09afb9a8ccb58e59f3c3e06a241c1db445835d7a875b0c3deb4b5 jruby-bin-1.7.16.2.tar.gz=349283bb5344a62f282021ce39648a0c8d0b41ecf8f800ab5099b5ce161ff771e688f205a918324cef6ba0ded6b3694b8dd83f46f56be584202b8fee496b37e7 jruby-bin-1.7.17.tar.gz=a3b171df08e789f91c260c5a57ec842a5d62cc8d6b462b772905ec5284e394ed7b78f5b327ca1ff20f5deba8371a86cb03fade75b5f34f233df47bc3f08d469e jruby-bin-1.7.18.tar.gz=b259da2967e246a387687117eb13e8986b57de6ca8e570d6f8f8f07b8097db6e01cea8b0ec3a860b091fde14de535260dc6dbfc638f9e9b49d348f726e969642 jruby-bin-1.7.19.tar.gz=da91efcd51cfc833666f8b7cf949d3b5c41cd8da99ae1559c88a7358fb48df1245c66702c7cf23e7ca012cbefae98787c200352976d4e8aa3e9120057a89dc8c jruby-bin-1.7.20.tar.gz=77131afe46e72c406ab4250e43cd1f98e59a8351c494044ac89f97a7c9a81492f8a8194541055fcf1fc59569e99a577fd6a36a9f6a3952a99f399d4970e80e69 jruby-bin-1.7.21.tar.gz=111883df12a60d06e9924d33057ba72094fcffd44f7e3954d6c6d2190f8e6442804e739cc525a9e75159251a8dc1cc487570792b1b4f5773f4d0082f0eb360d0 jruby-bin-1.7.22.tar.gz=6ed6cbe7b81a8aee60906fdf965bc217b3db794698e2cb37559f36ac119a0cd2a1ae1a7a766535ab491d647e8b4e6b2f63e62011714b757f8691455831ef365c jruby-bin-1.7.23.tar.gz=6f4b97c4e08274f96195deb176e3126e8d047c981cb655cded9665624033fb905d60d5586704a3f91b2ca06d7e78918d9d31131c93e4c90c75a38182e309ac9c jruby-bin-1.7.25.tar.gz=a89ab8d539bff346ad56d345b6a205f74890b9aafe82a2c82e7c19cfc30b77fefde1003e8bd7ed15f141151bc0fd21946203219691383a64f2234fa586e1905b jruby-bin-1.7.26.tar.gz=feee03a50900e459d9ed7d2096056bef126c4551c02c335c4132e2307411f3fc4fd435e8fe44411184773c80f0630a7812b3d798b7e9be2818e1b5a712bc6995 jruby-bin-1.7.27.tar.gz=656f4313fbfe5db8d2d4fc2087a012c91efef848394c48aeaa0041e9a19b87ab74686702955413d2c51d6b4b11c758ba0555b30fdc42e86d66094411324139b6 jruby-bin-9.0.0.0.pre1.tar.gz=988c6a058336ab9ac8b27c7501ceccf3940837f9b9d3ed32a466b891bda1bc13f76199f5bc3baaa1240dd0dfdaee40775f721294d667f3b8b5bb9ac8206e2e83 jruby-bin-9.0.0.0.pre2.tar.gz=f207f9477a12d7ffacd92b1bb5154ba8101dda8f7b2eeadd4fa83eadec9a75727bc1831733d27fde63ba63322ec491201dd23cc6e2c2b5a4b8381a8fbe49e8f2 jruby-bin-9.0.0.0.tar.gz=33308a983533c129cffbf521bdb8c1996a10a6159a4a436248e645bda682c5a5395ac1aa767e971ae679c935f3b61573cb22d5b8c64af026752db3411a6356e1 jruby-bin-9.0.1.0.tar.gz=277dca63f3faad01c98a793f06bb4d558a970a10a66a38482e8372b25f4cf4fea85f1d5624fce7fb5b4310c42ea8aa360f24f6b9b6ef4bb0ebcb036736009ccd jruby-bin-9.0.3.0.tar.gz=d82f83e20ef17a0675843e306ec5e90993e5952cf5a53957a91e369d2c90d92306aa515b1e135c04b45844a81a0f4ae34289b966821ae5f46ea51fe012627352 jruby-bin-9.0.4.0.tar.gz=b9cd4f4a00da8152740b468914046633d5341b10aa26b0ac56835d5896531030c8afbc4c965b30c36923555ed5b145de8ada69e05ca38b01d43621914a331335 jruby-bin-9.0.5.0.tar.gz=7c61cf010fbae571cd6ba334aefcfd917f6de8224d014026297b840d0b890523e94b2fea20f154c82c25c4f9d5992b9481fb569646a7023e5ddb42db1baf5f34 jruby-bin-9.1.0.0.tar.gz=1ffdd352823436086ebfd37c03401a1f3a9cb8a8c5f75476af1f704c4764396a20f49ddb7fb7f0911e1608f7c88a332944330b8849d13e6badb170efb736dbe2 jruby-bin-9.1.1.0.tar.gz=475acda79ab8c54467ae70094aa86842959200127c1e92709f0a731014c469d3e52e4c48770b64ab1bf31e1b710ac4570b421077c85c08071c1356bee55a2900 jruby-bin-9.1.2.0.tar.gz=cc6b1e1a2907c128dd04edf9da11933a54bbed5e861ab6f0208505bca5aa2aa9d9acdd04bfde65824346fbb435584081fc8ec2e2e9a3aeea1bef8047915e0c61 jruby-bin-9.1.3.0.tar.gz=88339f4cc05f7f0ded21f100755156ade33f19873f49c0c64110916da8c0b059df541a77bb36e54fda9cebf042591450d2d6312ffaa879df926870806985e774 jruby-bin-9.1.4.0.tar.gz=ebe0e9d67cb91721d589461e93e26338e3e3a1f0f98de53f25906684140b49d989ca6d3704cd3f6cbf650f30aed9a3989f117bb4732c83ed870364ce4c31fa36 jruby-bin-9.1.5.0.tar.gz=f2a11e6fc88d37fc1b640ea8c9feda4607bea6da5e6520f61ff85e8d6a51543612ae267b45c033214f8fd0e2283153da02001cbc9fd90be4761b7544e1413b9f jruby-bin-9.1.6.0.tar.gz=ca59d199a0fe791efc57f05801ae26c6cf6402bdc0f1a795250b1a2dda39b233ed24c8cb005016e79727f4bcdceb1bad726a60c16935e76fc87e5d1a078fb5bd jruby-bin-9.1.7.0.tar.gz=f2569d4858a33280e90d984aac53662c25ef057ef9903bace6a2214aa2e6a537c9bc8fc76b08f846b3093cc4a12c70c98d725576a4ac771e640b95cfe3697c7d jruby-bin-9.1.8.0.tar.gz=dba3b41b65ff27dbaa203a5cfc78ac7cb9d952c52b452bc774f593383e4ef9389c0bc37549b798f48b63497ce7007b1ac2d2fa252d9a7c3e52146b4ae192ee49 jruby-bin-9.1.9.0.tar.gz=f8f6419be34aeb7b7577e946a62a094f5921d7319b51876c5e07322d99249b3a9f29fea4ee5c2b8184dfccbd5da8f8262fa97f5e93874887f3355dabfccfa0df jruby-bin-9.1.10.0.tar.gz=857783bb45fc5d62148bd687b43af9ce776099dfea75ec4b5d947a46ed270568bceba2a630a3277746a3a9c1fd3111caa9a4cd13493ea8824c1ee190e6d2abf1 jruby-bin-9.1.11.0.tar.gz=718ed3f5a39cd9f9b45c4e11ba44cd32e035f8d9f26fe59230dbaecb71adfb2513ee1bb86ff72e075b02f20151f3f30e53bfa30b6c4b011a93a138d4f479fbf7 jruby-bin-9.1.12.0.tar.gz=8a9f88d517d8002be570aa95aebb0063eb62a47efee191155f9fa4f045854910f78431514f857c438167ec42f4241faf74d4a8d236ae36feae58732312e4bbed jruby-bin-9.1.13.0.tar.gz=ef88f613ada2665d4f63b2e2f15594739de8ba501406e76de417821f44847b0e258524687b0ae0cf5b737520aa4dd9bb59d80a4b89a81408cda638f28bebbead jruby-bin-9.1.14.0.tar.gz=d15ae0c60421951b830524acd21a0f2a56f480e983b148a2722cd36afed8e99a41f518eb8a679bfa2cf87f08637e81c24ea88be40c0a5390e081322f1fc6f8da jruby-bin-9.1.15.0.tar.gz=74a411f42149510180706b2c70610caeea357f6fc3d2a12ff0227586862e6a9dedf09e752596d6c486af7a310a07241f311a1dfc73ead229d7225c09d4508605 jruby-bin-9.1.16.0.tar.gz=94e88dbeb2545250ba5bef50bbe0baa6f3851e9817f67f879ffaab50048bb0d41cd7a0e87ac9ef547e37c2b82cf1d7aae6b8caa43d03c6a9931b8ce0ad4b2afe jruby-bin-9.1.17.0.tar.gz=4c06b9674e20f48d3815b4084bb38e6994670eac804fbc56d717cde7abdb74d57e0ac17b7fa0b500318de405c187c3eaa01441c22621139dfdbeef62a5467a63 jruby-bin-9.2.0.0.tar.gz=79f5e8674089d2f6b260e033e3ceb4571f54cb5cedbca74ba76b52dd7cb30085a8c6c2676e9be57a8ecd9e962fbcb3682a8de38e1cdde2dc6e05bd179556edc3 jruby-bin-9.2.1.0.tar.gz=185e67da4964c9cf1d9142446efa77605e77894444bdc96bbd10fee22637f197aea9fbb0f60d3a42540e5f383d5b06fcf095d572f432544a40c2145deec81926 jruby-bin-9.2.2.0.tar.gz=85e16e38748b6ec5f237eabc8a17eb225c484c20f7ab6728f2a0f650061bc50c8a9601c04b0128e73c410ffe84dacd2b8bb37167aae5595728aa25e88c4c9b92 jruby-bin-9.2.3.0.tar.gz=97ee210157c451567946b38d33380051f82e7e8cb5f7649fffe050542ff6cd627e2c42f4c46739d1f0995c87e7338865b18844741285bf3f72364aa3c841c54c jruby-bin-9.2.4.0.tar.gz=9fe1506e862a17e261cf726e1bb70a9f612a6d7beda919a01405899660d1f4b79ee690ddf9aeed1d2b2f3cbd698be8df4f98d3815352772cc680e9646d721761 jruby-bin-9.2.4.1.tar.gz=2c41e7884cc54819da17ea9b2b773d05d3240d53a2ecb57ba430ab61308066eeb1bfbe6627e6c261f5f27ab5df7f5972656366a04a191a81b0379f620b74512d jruby-bin-9.2.5.0.tar.gz=d548eba8de420c80062021f5b6e6b203f8b7b36e3f11409919eeab87a028a18f9346f27d2cd8b1f33419adcc83fc804a36dbc3cee169ef1d93383b8f5835ba2c jruby-bin-9.2.6.0.tar.gz=20c7897da0d2b585616ea5848998fe8770517e24e16955797db2e5bff4622c348082628d304240a71a97e9551ef7aa63271cfb728eb5fb7e7d19bb48aff20d4c jruby-bin-9.2.7.0.tar.gz=8e71e27fdb149cb7470fb736e7ce858719d13ce6ff8a1e9ab1c1dc71fcc068fb601946bb28ed2feee3670b5e6ebfa8a655a6618d1badfc3763897912c41b1c82 jruby-bin-9.2.8.0.tar.gz=7f71fb5bc8c6c31b31b4c0430ae091871b21aa345777662f264c728c60212365dadb63a7a4b2fff31adbbf8a2e7cfa678d47486e28840f57b86cd45fe9354013 jruby-bin-9.2.9.0.tar.gz=7df33150858ddff586b3bd86120d4bdd80546c7f8e62245f61facbaa5527400a1aebbb33e4a1a8af52066487e3d29760eb96c7ecb9875eb9bc954ccbcb37a4d2 jruby-bin-9.2.10.0.tar.gz=f4ca024602ddab37154f5547132accb26e7c0ac2e913ebe1b5c7806727eb148249e76031ed4623ab53814beb8fb3f472e386f44d57adb5d2b3b00fb2773c8a63 jruby-bin-9.2.11.0.tar.gz=f736a9e139694c84d0a5ea42f36b972adc82c9be13e0b80bd61045c026e4fe31ccdd4be3dd3e94781c846f356e026465e41716fd2744ded2ab0ca39cd33bb46b jruby-bin-9.2.11.1.tar.gz=2f758fabf5910ea01e9c04c7600d9c666f2df3db8622f3eeb3534578075ce65013c42fe9ea6f95d4499945f795e6d566eed2b1545e149af823eb1d29167a1223 jruby-bin-9.2.12.0.tar.gz=1dbc5bb3814a6590f5e8ecf4889152684b5625fe81794a2c4064d598614a85129256002dcd239e294f209b98e3abaf9bfe70467fff48ef66b1531162dc6c3be6 jruby-bin-9.2.13.0.tar.gz=2cba016ad6a376252083122d51335610209d860c41de1902f5cd49ffc2f6b49c350b68df8fc4113c221255af4db7ec07980267b9888369811faf66db369e757c jruby-bin-9.2.14.0.tar.gz=ee3d17e875dd197f92744c7cba62320bfd3f166bbb2ca117f2910780a7c571779c0940e024351e9d4685ee9781dd207e773ace57a4a8a7011869c8b6209513c5 jruby-bin-9.2.15.0.tar.gz=678abfa7654b53b049e4103ae3647775d970c5a7192539378957c1731a3037c852e03f00a496c022c1c438d159a93be6e6f04d7563c811aeb7d261ced643d9e5 jruby-bin-9.2.16.0.tar.gz=f77e314d578a980071bddc25c65659d62e0644927ebc4e7d7d4523935b6c893e611d47ae7478a26ce7acff38b1525eac11b4a329188cdf76aeb07fab667d99d4 jruby-bin-9.2.17.0.tar.gz=e90ac1890a54a892b13adbbeab3cc5242889ff2a4b6cae535c0a3172072bda6ab01b960705ba608d6d7ebe9de5984d8384dbbb6399ab3b2e53a9e347e7849e1b jruby-bin-9.2.18.0.tar.gz=c5816ee0f7b0f559dac70ffc5277f85ae9c41ad176e43d277f820c2727387baba93998b915cadf9708fa78b5cdf3911a9c39c2ebb61a77a38dcff359f7d88a73 jruby-bin-9.2.19.0.tar.gz=3740674035e27cf7961b3570ad65536c30faab1c9a71a42a696b173379e79647411d57e0d1d06b5f9c9a970eb02a595a559191af08a083773dc4601dcfd07491 jruby-bin-9.2.20.0.tar.gz=1961f52f41e7eb9f50b0f382c8166ad988a6b3c0311c342658edb34486b073ed45c1ca5731aa319196db02cec208a4dfc86aa6b436959b80243bfa4f62629735 jruby-bin-9.2.20.1.tar.gz=598e28cbad682fbb30a9a9a9f708e6e1f4b7903300de2477e88a646c42ae594df5b768ff5379ed447f1a7168e93dbe35cc2d5db7087cb2228233a05bc4687908 jruby-bin-9.2.21.0.tar.gz=8f6cfc43ce3ebbd69781da71c5a70746ada090162bf6cb709dca41a6d968e6072ae62f657cb0bd471c648ff294044bfec3079828bdc410bd64758f76a93c3214 jruby-bin-9.3.0.0.tar.gz=06331ce32ee88aaad5e5bc0668d164ec3263f8ef3ed34bb32981b76ca33f8c817e3632550775706481094159f4feb43916ad1f9ec0f0775ad756b16cb7bd9417 jruby-bin-9.3.1.0.tar.gz=bfcbe6dc5ba736fc944af15eb387b545f6c5b987a7db88045913a02a1d30726c5d1255c4dd609aa7c2d2823ddf9d8360223b0575c93302aeef4c54eb37af9abe jruby-bin-9.3.2.0.tar.gz=b1777bfdf1964d7e527bb3dfc47b4b9e8c589cdb301c38ee8ee988bd0c392ca978ee3c1c24e4b5a65bdecff67d1bd96e2d8645e58ff7e891e3622097ea29e925 jruby-bin-9.3.3.0.tar.gz=648e70de0bda710e2dc70fd03c3dc6b798dd4c7b92584c54306c426f59ebe1168a595c4cf94328f6b44674f5507bee354efdb1cd73060b73b0171a3605051c9c jruby-bin-9.3.4.0.tar.gz=6b09decf412a76578179cefaabf01cc8740f70ab5324954e6aa43b1d8b81c37db7a99b1f94d6ced2b459f1c44c3086892b9a2c06b3ea838baf75a8fd5e0447c8 jruby-bin-9.3.6.0.tar.gz=f730522eff27462192808773cbd071cdaefae11f20bc808a8f22515a33960a730f3c87ec727ddfd9dc9b6b35acffeb50c31d75a4794a3f8daa75e1963ebd246b jruby-bin-9.3.7.0.tar.gz=265051c68d3b9dcce708b75f8267303ae84008859c88d7fe4f282395366c3f52fcf1bb161210555c0fd0a2427ff5a728ea9e337feea3d9b69559cadb2f300aed jruby-bin-9.3.8.0.tar.gz=12e795b7e1f14141bde68f52a29b0aa9f1db20515240dce83cffec351cefd25959579e01059d42dc8c8e4280493a70819d9beb1e0523e9bc10a72af16d9abd60 jruby-bin-9.3.9.0.tar.gz=f0b31d98f39a2bd4436764db0b0139433d6868bce7c30c5d6e3552616ba879c93478c499f3e4c884fd3728502916aed5c9ca1be150ae3e80ff47b36710c3f6df jruby-bin-9.3.10.0.tar.gz=aa36fd4c5de7b17f5fdcca1d1314d309e7b4470d46822c45baefbc0ad5180e5530a7054502b97b414352af485e7936659390690dc6198512ba6733d8f8d503ed jruby-bin-9.3.11.0.tar.gz=d9fd90bc64028dcc45687d2be51414b1561add20d20d1392525f4434cc684d505427f5e56827afffbbb0ce2c9cd7c1ef846b0bffa737679afb95d4c160232da5 jruby-bin-9.3.13.0.tar.gz=eb24641fb7a6b9d2039ec953388053e7333b306056f9a5bf745331b04cfc05dc4211a9b7780ce88bcee9184b8cbb219b574574d308bc2720547c116f4d4721dc jruby-bin-9.3.14.0.tar.gz=d9b02fc35133f71140cc7d891061f8190b61b3d1065f00092a2aa9a4beaf7d67297dfb0529691bd24d29607d698f39c62af9018e8307c1e6624c3104a61bb74c jruby-bin-9.3.15.0.tar.gz=e41521ebf453d6b6a9de937556fcaa972c60268285d0af4a41bfb95aad790eb47dd507e182958ca6f4889a0e03eedee0fa4bbc58e3d0407a2b6ba64a8b87a21a jruby-bin-9.4.0.0.tar.gz=fb72f8e087ea08653fa4e4225fa26694c3ff97c41f3deb8731cdb6571c6c9b21e0d8f69e2096f82ee81e2b5c283f912e2a5228c15873dbbd56de96a2ba35d59b jruby-bin-9.4.1.0.tar.gz=46003ef6192718a6372b79ebc89bee37957686224a08fe2f9a6be3c9e479784409d0269f0885c4d1f1351585c5d2cd31fd2ad45014e425bcaf2d44d66b98d299 jruby-bin-9.4.2.0.tar.gz=77e484ab73ece93e7d7283f876f0d541607c6080eee696b702b485be9794cf7e6d464f250a6d75387ee69aef3ba40ccf4f6d9fcfe324c5bc7a14376177ea2bb8 jruby-bin-9.4.3.0.tar.gz=2361f4bb2989f5951b0d3e9d49bf31e6805ce39bdc987ad3c6934daa98ab7c8e69763d40d7412ccef8adbbc198e52f4b83d00998ee12ac43fbfc6b5d88930c15 jruby-bin-9.4.4.0.tar.gz=e89dff0cc5b4a948daa95196d4bd4fee0c6901bb4aa023ae35b3679d9739967c2a74e8a4388b1835465dd39f1332a1f321b450b40c54ad2b81802645b4a31ca4 jruby-bin-9.4.5.0.tar.gz=06db948e5fa6f8559abd3b6891c7b4867b9f54b7bddf0e36d6f20cc1bfb394cdba8ea920213e545c927d1cb865e083cb1089c8e925bc608e0f8784a79b5d330f jruby-bin-9.4.6.0.tar.gz=ebdc671622baf3c42a988d6ebe24af6bfefa1f717f050f602a1b35909a3220316329aad080ee2cd9cd330da9428f8d736502573efa64bd70f093ccc123ab32b0 jruby-bin-9.4.7.0.tar.gz=4fc8b12deba7b8a53a523a41a31c248895adc9bd54a62664a27107e7205369af39c0eaa508a9a70611c3bb845524d8c5f39451c09b8b9cd87059ae15139703b9 jruby-bin-9.4.8.0.tar.gz=0d65fdfd63e2049ab3b8ccbcb4caaaab20aea5a63276aeb20ed4092191a8814f144425dd0d926aeed757ad6b4daa308a98fafe1bbd1647f3db44368066f61868 MagLev-1.0.0.tar.gz=8da29f16e08f657b0d2f147b64f2202ac027db26f85da8dec29f926898f178ac8d11260fd6c0a539a9b9b15eb92d8c7ced86a8cab1861ae7f8a33b6fa468e5cb MagLev-1.1beta.tar.gz=7122af70530e76b9a4cee93244d6872b49616e78086bc8a5db0f32d2b846560b352c4831addbbecc72e0e3158bd52f26c2da14f5d83a515ead30efe7c538b62e MagLev-1.1beta2.tar.gz=43b4b831791074f6e8c12f6fbe6ccec2bd0446dae029d3e6717cde1e7adca8462a2d7dc49c14112cb568b5b3adc8cd051767044b41d57ae51f38aca035ff8597 MagLev-1.1RC1.tar.gz=942c1cf43f1a911230aa43bbac1cea2e2e61b5e19af755e29a6a71139d66d304efcc519072dcc3487a2da7462847530564aff4a2159d675e3270cc938a297dd9 MagLev-1.2Alpha.tar.gz=2672e3e5425df2d2ecc49f85df5845fdb083f74a7b242cac75e33d0c1837079ced8ec8b273807326d08e7bf6f95cb4f1d8351f37af8bb38c4150e6292fc553dc MagLev-1.2Alpha2.tar.gz=4492ed58b6c2b852502a2195836f1db5a80f0619467e4d7b44981a993a5e9a9ea5c9fecf1198de1891583e334bbc3c3a86648ce8afea1137ae9c73a4d76b0f4a MagLev-1.2Alpha3.tar.gz=6290895b22efb986ffd7305b7d651f20a051ab6869d51310bf891fa3eed48526a8617b69f72793e8ac0b57f99bc5de75f34235ef94de967bbdcd51857efc2af6 MagLev-1.2Alpha4.tar.gz=a621e9c615ffec503910540db770754f29bab1646d8e67650d5b82413bd551adfb0bbbb8155407ccb6f80933bfe8ae1bf9b688eb0defbc88710308bde1325683 mruby-1.0.0.tar.gz=4a0f2927da3401df23d5c19ba566995f76775def3badbb14f16510a271e7b40a833fc61841f89d8adc6d57b5b12cb453708961c16a22133c092fab8ecfcd1e3c mruby-1.1.0.tar.gz=afa99a973e9c1b72a5a418d709c4aca08dc7449c427cedef5f12db4ccefb15e11a4fd1c23ceb7e31e49d4d2e602c0b1f9dcf2e0f6cf8ea3466f0b9bee23b53df mruby-1.2.0.tar.gz=bd5de32ba52b6642358752755329fa45a954082122a8983012930056c286ac328fb52fbdd11f34ff7c80af2c0e9a6348abcd5214602aca1150f2e7ae25cad1f2 mruby-1.3.0.tar.gz=13a57306706d2d60693151919ae15bb3621e6e7ed3b5e9c6d3b1c8d44e52b898c1ad394b39946d730ff82a19f5e3b7c2a374f9dcc3b6c6f990581e504f1cb9cb mruby-1.4.0.tar.gz=d2dd6e17c7f8e890ef5b6887538cccdea08a2376ba8f9a478d7d5c4377fd4c31a4af6323b1fc73952ef80e5a4778ca22eac3d724ce7d50b76770f7e614df7da0 mruby-1.4.1.tar.gz=2cbf155ba7819211b6410ea606c4d0db3adf4f47a4018ac45285ab3e32b94f280aa0af0936ead7233411957cfca62979d14bbaaf0d8f40521cba5c12272f2af4 mruby-2.0.0.tar.gz=8379f76b7a06d280e2a2552eec2975ffa3fe85b99028f6f7c009cd908f95faf3cd36a9975f502a5779559baf3c45a4297da0b6bcc038d213a0fdee851f9d01ea mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.1.0-rc.tar.gz=f310b385cbf80c6b6ab67e2a41b931411149639c0bf778799e3358d6a9a59f508f42e3faf72fef9e8ef91088d6184c445af7933a47e4e2b2fe114362d579bac0 mruby-2.1.0.tar.gz=da28b5a078e121c75edf62fc68fad6d5810212bd53a3424d4f585ffe5bbd09f652393ffea0f4b3ddd802e5fe178554dc67040c39c9d5069bdfad4ef22ead7e8d mruby-2.1.1-rc.tar.gz=97c9cc2c79a5dbf2f634ea08532f0f512f8af6ffb99ab4eefd83fc336ca9d97b943e76643971047b4508aaddb5e40176d6cc8fa39a17022455aa15d774eb5b98 mruby-2.1.1-rc2.tar.gz=13aa32a35bd5d8f02a9bfd08d17818dbae78ce46c8b0224a029f9f191cb64ac330eddf3871f4396b9221b987a91e4cd6f8933f59814ac0018155ec8454abff18 mruby-2.1.1.tar.gz=66f9b4bebb5a7b19f5cb1be2bd8b9bc65e4dbb5d4350d238ad5f947c9195fd431f2069f7334036ea63a750e9257e59ae1aef16ac99c7e1f4e17724cd1cbe2e50 rubinius-1.3.3.tar.bz2=8b91baf429dac60663d0e4da3152a60ec6e007f5d6c17ffa430876ec88eb87ade44efae90f2e32e238fd74f1b3d54e27492315f08e7bb073220b402e1e2d3163 rubinius-1.4.1.tar.bz2=928d12aa01a1d0f6c80175d67d3b1f8b9840f69f045c8148786612316421223f4cea71e3c373ee18a3f686b1457557ae547645afe758a99d21c4818dff47b9d1 rubinius-2.0.0.tar.bz2=5c81a6b8cf7b59e08c3b9353b0eb37ce985aaf391f5064df65ffb10f6d12b668287e4d4e61e2c6b560d9234c10f0b64bba74259f2c06f1dac488928544d4131d rubinius-2.1.1.tar.bz2=154cfa93ed59835814b8b974f6d738b049942fcc2b75095d21c87647d002c879fd55aa3d1ec95414b5b66eb9926c25a5c6e3e19a7c0da7dec6edbf434acb9c68 rubinius-2.2.10.tar.bz2=c2168e676059c197123916dd948b83e39bb96e99786bdcaef2e690936b761fedb13740b9f19883f991f1b475f3249ea1696213e8448c41ae15dfc14b3d4e1fda rubinius-2.3.0.tar.bz2=d0f3dd5e3b891bff2eb79b7810c6041e15fbbf0606c379f89575cefd829ac7a394b0c12ed3c5a4d452730797bc0a2c6c82646a19a078b56dcac7acad015a4559 rubinius-2.4.1.tar.bz2=7bcea320006b8cd3d122c407d89c325973a74c32456ba0b649657ac848f4682f2eb7455c13e3007709c22932bc2e1b65e2dd43fda0d3c9f993ddf8a74d1e2cb1 rubinius-2.5.0.tar.bz2=ac94d5bc11524e715fc24c1de33f4d358c2cd65e92fbb64c850dc8151d2a712d268227733c99fcffe298c3bdd6ce080c5e9553e4e8f3238868323498a9d10cae rubinius-2.5.1.tar.bz2=9315f76126d0aa754ee63b190385c24cb084f36293a99aa30fc482fd880d5393aabce361e09ff5514bc2540dfede8e179b7e9212b2dd59bd14ca2aa69d209a83 rubinius-2.5.2.tar.bz2=b48bd8d54a450441a50904b07c75c8d31b59822830a74c952720d6f8d2d86e6a27a84775e975ff2bf55bf3346f34e69d742f308933a9d8476e5e78109cb525f6 rubinius-2.5.3.tar.bz2=b923446d325dc3ce5ad28af9ee527607fae3259b85e85aeff97c1bebbb4520daf70616957b1c0ded900ed19e59025826dee66977c19cd2a2d4e9a0296811eb20 rubinius-2.5.4.tar.bz2=75b7ddbe218e4c92210dbf5a06eb8b3c3aa028d16146982a4e813e3af10a90d33f3e239f4508469c6aba17f02cb8bd10e96a204839975e06519869cacd456c92 rubinius-2.5.5.tar.bz2=a862146ddbbdcd4439eb64e78bfe6d09ae4cca540d19869618426d3f451544658713fe8eb7d46493785eb0cc721077e624293cc44d68eea3ef584967b43a18d7 rubinius-2.5.6.tar.bz2=9a0bdb5d77f80f163925ce409d00be3cee34871baae8bcfdb34c3c7545b92fd14102fecb970e42b3012588d299e504b724025f397a5a00e181ab75f1448e426a rubinius-2.5.7.tar.bz2=8048110b3ba4e5ff8c3f35282896067e1b1b46dccaf9ef4f6c9b6098782f27591ff59ccae0234fd7e881e3aaf17a0b420286b1b52ecd2cb672249655795a6982 rubinius-2.5.8.tar.bz2=23fca2f9747d2b0e544af890c3baacfb7b3a009cc59cbe653762ccdd827a6c915dcc57902d317fa1f7a81f8c12682f6c3a93195331b6de0f705b118e2e8c13f1 ruby-1.9.3-p550.tar.bz2=38767e98df25484f7292437f3cb0f798b3a43e9a7414a5401677e96ad1cc367cb3fa23ac3abe568d5bf2b2ca553713469a8770d41b79bc63daf3fa59cb4e15c6 ruby-1.9.3-p551.tar.bz2=5ea40f8c40cf116030ffdedbe436c1fdbf9a50b7bb44bc890845c9c2a885c34da711bc1a9e9694788c2f4710f7e6e0adc4410aec1ab18a25a27168f25ac3d68c ruby-2.0.0-p576.tar.bz2=e089cca4867cd9c715f4f37e40a1db9af6ba0c74b47e79568121bb980476f8877a87ccb848b973381edb4667c0c73165f5e1761f60db839e67f6326302dbd864 ruby-2.0.0-p594.tar.bz2=8301a51c73fb63a8cfeb14af47d0c18b5bc3c45e3d62fc2ed56a673a1cd6b0015c41f275e70eb14a9e40036b1530977199321e05285e107a6adf58514bef1b3d ruby-2.0.0-p598.tar.bz2=10026a04e01a8ad14ea9c99bbdf4f7d04029b73ee0c01bbf6c2eb2817332d49adacf127b646693b67b5dd7010eaf3b696b23b6335cc0f7ee5a6b56dbba0f6f82 ruby-2.0.0-p643.tar.bz2=453117152e6facdcd5bedaa9c3b1e349382bc5bc1dd3d650ec58b398cb9d2519a2822d05da10bcc5dbbb4f513fc5fef310caa3529d176fa2d453befb28e4d83a ruby-2.0.0-p645.tar.bz2=e9ca186b1cf0877cdbecd43dcab2c5161a53103e926609d5e1b769a4980eab4571bfd0951788b4fc92dfd9d10175b0f5f36ea2c7289e575a9db9b62c02f93185 ruby-2.0.0-p647.tar.bz2=3416af771ebb0b27ceacf23d309bd2a1ede832c2edf48a5ca46f0b0b84b2ab94fb6362a0c7fe4f77b21253539db8161ae26d23a78d1ba729bf03812454d93d04 ruby-2.0.0-p648.tar.bz2=609acf6d6352c9746e21cd7f0e7d29f5eb522e6fff2d5fad0431d63c568cc084ed5b7141f84cd33512d8213200d2d1a22e8d7df71469a980a3a92886133fea38 ruby-2.1.3.tar.bz2=9b48adb161e5e4550a71f61252c8edf59944affb82250babcb64240749af4b672e4a54ccd0feac5b36ea447a358b350b5080125ef2d4acf6e9e8b1ab82612f48 ruby-2.1.4.tar.bz2=68db1567751166c5e7d24b6e5015124b8a15568c50556e1f429486395352fa56c4a195a74820ab135697924149d014b445b345a1b9755678aaf824fba79c606b ruby-2.1.5.tar.bz2=d4b1e3c2b6a0dc79846cce056043c48a2a2a97599c76e9a07af21a77fd10e04c8a34f3a60b6975181bff17b2c452af874fa073ad029549f3203e59095ab70196 ruby-2.1.6.tar.bz2=75d58120b5f387bcadbf6d19e85624f78c74f81b9018baef39207214673f7ebc0700ab31145acd88b4071c896ba8e1302a29c90955bcf5f8c863634125022aa6 ruby-2.1.7.tar.bz2=f610d2dd6a93f0a5e84e04ddedf847bbcea5dd3289b3164cdf60be64f67a80dfd5f9836ea5d169970cd0ce24a7e05ea6190699706567cb0d5cf450de6a70e445 ruby-2.1.8.tar.bz2=7129c012bca7f0e7cfa51c73ba0898697f7a9f31abd5ae57d38be5b6b646fd80ab33be9b262cd3e2486c66f65aaf4ec6e881ae6e5a82ec9df62f00fa072510fc ruby-2.1.9.tar.bz2=a86422132e4c64007a84a91696f4557bdcbc8716fbfe1962f1eef3754ee7f994f4de0b5b7e7231c25057515767040d5c4af33339750b6db15744662e9bd24f38 ruby-2.1.10.tar.bz2=4b7213695416876e4de3cbce912f61ac89db052c74f0daa8424477991cfc49b07300e960177ff576b634a97ee8afef3c5aded5d5806329dbd01d0ce7b42b9b63 ruby-2.2.0-preview1.tar.bz2=2f1190f5d8cd1fa9962d1ff416dae97759d032a96801d77bc6b10136eba59dde1a554ff8c0c2d9ce0d3c1361d4dd12ad573b1266fd53b90ab238d8ce39e6b862 ruby-2.2.0-preview2.tar.bz2=c654d4c047f9463a5fb81eaea0fa5ab7bf316962bc7fb0fb356861e6336ce8ce2162c7779d8b27f72d7bc0e9604b5e5af2910abcb0b0a1f197b3138eaddfd4a5 ruby-2.2.0-rc1.tar.bz2=181201168360bee37dceeef3481a69e8a333a5d329680031fd9d371d30ac64460bbdf4db07546133024f541774e51301f1630cfd988c5e5bf2464834f3abe6bf ruby-2.2.0.tar.bz2=04edc53e8cd1732c3ca61ebeb1d6133614beb10f77f9abb80d8d36352fe8aa205112068e460bf600b2c7e81e0ddcc3b311e7e027c320366f1bd992b3e378a6ad ruby-2.2.1.tar.bz2=af6a8e75a66b953ff33ecbca5111bcf1c6560b6b48b370b700820fcbe91363146c5ac8abd670a14e693b44343ae598bab472ed2902834304c03ffcd9550886d1 ruby-2.2.2.tar.bz2=d6693251296e9c6e8452786ce6b0447c8730aff7f92d0a92733444dbf298a1e7504b7bd29bb6ee4f2155ef94ccb63148311c3ed7ac3403b60120a3ab5c70a162 ruby-2.2.3.tar.bz2=795f1b66a6d4f0baef897068899c3a1a4370ce1268618e6a7d6d4720234444259f371d1ba2e174b2f7580265e9f18eda3f295fbb087447aa6e8fb7a0f07526ce ruby-2.2.4.tar.bz2=d27ca2f19c214ce87f906b57edd41f2f8af35b2871c191470facded9cfda15ba46e5c3bc7d5540225a38da6bd65050fcc8aaa4ffbadbb6bf7dc891c1821da0df ruby-2.2.5.tar.bz2=d3224814361c297bc36646c2e40f63c461ccf5a77fea5a3acdcb2c7ad1705bb229ac6abbd7ad1ae61cbe0fefd7a008c6102568d11366ad3107179302cd3e734e ruby-2.2.6.tar.bz2=7a93f72d236521ac28c8a0bc0c73cf805797a8813d22e02f42c5fc05dd39f6e422817272e0db6a24c245f6f97ad4b2b412a9a47ac50156ab186df596918a5f34 ruby-2.2.7.tar.bz2=83756cd1c91516962b83961e0de59d858618f7ed3e9795f930aab4f199d47a95ed8f867d8aa9b51d508be26d9babf2140117c88241168bac41e6ef702cfadf20 ruby-2.2.8.tar.bz2=aa1c65f76a51a57d9059a38a13a823112b53850a9e7d6f72c3f3e38d381412014521049f7065c1b00877501b3b554235135d0f308045c2a9da133c766f5b9e46 ruby-2.2.9.tar.bz2=2a8c8770fda20a22b79c9115b6f468f8e7ea1092c84a5089af7a3122163e5ad298b493e6637e4d93ba02d899d8a619c94064dda8ac98cf3b93f64f45d5401085 ruby-2.2.10.tar.bz2=f8ec96c2a5f4ecf22052ee0b1029989ded52d7bf5d41be24fef67e732e76f72119302240bca08f0547510a9cd29e941a32e263cad9c8a2bf80023d6bc97b2373 ruby-2.3.0-preview1.tar.bz2=ae6d46c87f59e1fd3703b76dfc45bfcf208625f95ab9f4559f0b9f7050e8681f1a6e419f5fa06b704c83e56879c3a9ff1337dba443bcfca76fadb49c97d97a93 ruby-2.3.0-preview2.tar.bz2=e397f321d4338edba8d005d871408775f03d975da90c8abcfdb457a1bc7e6c87efe58c53b2c3bc122e9f58f619767b271bcc8d5d9663ed4b4288c60556e8d288 ruby-2.3.0.tar.bz2=77b707359e754c3616699d21697752741497c719dc3d6fdfb55ed639e76d52560d293ae54cbe5c63be78dc73fbe60f1b8615d704d017bdfe1994aa9747d26a6c ruby-2.3.1.tar.bz2=a8659b96a3a481a3dbdbb6997eb18ff1f8cd926a9707a90d071e937315c21d372c89252f0d44732ae5007d2678fda8c8fbceafa4e4b4ff500d236fb796284d8d ruby-2.3.2.tar.bz2=78699bae5b0a2382a58f9d51f7d891341f00ad3a90d9ca06b68b1b245cf5acebc3a82133e39bf6a412ac999a5c0f778a0dab177c2569ffbee085ffff6f6ec38e ruby-2.3.3.tar.bz2=88f7782effd35bfe0b4c33140b5eb147d09b63fbb35b9c42d2200c010f387e2b70984ead1eca86569e8ec31f08b35289d440c0ca76b662dadb760f848e863d91 ruby-2.3.4.tar.bz2=ad1f16142615498232d0de85149585be1d2c5de2bc40ec160d272a09e098ef6f317d8b25026001735261fd1c5bc0d1f8513a8474e89f0d86eed5b2fe7338d64e ruby-2.3.5.tar.bz2=3ecc7c0ac10672166e1a58cfcd5ae45dfc637c22cec549a30975575cbe59ec39945d806e47661f45071962ef9404566007a982aedccb7d4241b4459cb88507df ruby-2.3.6.tar.bz2=bc3c7a115745a38e44bd91eb5637b1e412011c471d9749db7960185ef75737b944dd0e524f22432809649952ca7d93f46d458990e9cd2b0db5ca8abf4bc8ea99 ruby-2.3.7.tar.bz2=e72754f7703f0706c4b0bccd053035536053451fe069a55427984cc0bc5692b86bd51c243c5f62f78527c66b08300d2e4aa19b73e6ded13d6020aa2450e66a7d rubu-2.3.8.tar.bz2=6d79e0d25757fd37188a8db3e630a52539bce7927fcb779a2ce9a97b9e5f330753035c16843552f1a1fb6c9a1e5c0f916b3cc8b5c0bfe81e20f35f8442e40ae8 ruby-2.4.0-preview1.tar.bz2=c9873e8686eb54dbde61d6e23cd5197beebccd6cb31fd12c82763ebe1fde17095d7514d9d93c2c82b238032c98691df5479dc2d666a8a590e0fc54450ec29cb5 ruby-2.4.0-preview2.tar.bz2=0c9a59a2f57a99c4ee8539a30f41da1de7547566203f89d856e1be9dbb44365754e6c470145dc9336eb324e0feb2f53d9fef18a1564968ac21f9ee528905949f ruby-2.4.0-preview3.tar.bz2=6602c65a7b1e3bc680acc48217108f4335e84fdd74a9cf06f2e2f9ad00a2fccacf9fa035a912bc9d5cc3f0c7a5e21475971dfac37b0364311ef3645f25c7ddf9 ruby-2.4.0-rc1.tar.bz2=b43902ac7794487197df55a45256819d2e7540b77f1ed4eb68def3e0473ee98860a400862075bafadbde74f242e1dfe36a18cd6fe05ac42aae1ea6dddc9978ce ruby-2.4.0.tar.bz2=bef7bb53f63fb74073d071cc125fb67b273ed0779ef43c2d2969089b9ca21fff1bd012281c5b748f7a3c24dd26e71730d7248c05a01cb23ab2089eb4d02115fe ruby-2.4.1.tar.bz2=1c80d4c30ecb51758a193b26b76802a06d214de7f15570f1e85b5fae4cec81bda7237f086b81f6f2b5767f2e93d347ad1fa3f49d7b5c2e084d5f57c419503f74 ruby-2.4.2.tar.bz2=1a5302d2558089a6b91b815fff9b75a29e690f10861de5fdd48211f3f45025a70dad7495f216e6af9c62d72e69ed316f1a52fada704bdc7e6d8c094d141ea77c ruby-2.4.3.tar.bz2=fb4339e30c04d03b1422b6c32ede45902e072cd26325b36f3fc05c341d42eea6431d88718242dcc9ce24d9cad26f3d26772f2e806bd7d93f40be50268c318409 ruby-2.4.4.tar.bz2=ae632852a5f413561d8134e9ef3bb82adb37317696dd293ef92cb76709ecd45718f14116ecce35b12f1c2dd53ccae8dabc7a924a270072b697512d11f4922347 ruby-2.4.5.tar.bz2=7034fcaeaee41f14bc0ecce0d3d93bd1abe95310e1a0b95fac66eaba867adfb2bf7ba4d0d70d67a15ce8df16052dee405c38cdb18987602e64a2f701d37d3df0 ruby-2.4.6.tar.bz2=292802984e5cff6d526d817bde08216fe801d255c4cede0646e450f22d4a3a81ae612ec5d193dcc2a888e3e98b2531af845b6b863a2952bcf3fb863f95368bcf ruby-2.4.7.tar.bz2=2665bca5f55d4b37f100eec0e2e632d41158139b85fcb8d5806c6dc1699e64194f17b9fe757b5afd6aa2c6e7ccabba8710a9aa8182a2d697add11f2b76cf6958 ruby-2.4.8.tar.bz2=2d7e0f5ad766e2a12a1b53ff838e6bfe86244ffb7202196769c25e9df6f71f3ccdd8605e7ef35c53e54310bc82caf6b368ad5111dd0a3ad70a3aae1a7be93f08 ruby-2.4.9.tar.bz2=d485444dcd025a261a16bd740dae63c0aa23e4138a095584e7a83aec47af34415c7d9cbc1313e92da2ec416b11bfddf20bb1a7b60c80f12906d11ef27409b3e8 ruby-2.4.10.tar.bz2=4d730d2d7cb96b002167ee358258f2620862a5a6d8627cfa5b49bd43c6e59c50c0f437b959d4689b231d57706ec7d5910d9b144f4ca1c1ed56bc879ed92e8a59 ruby-2.5.0-preview1.tar.bz2=2d39ef64aaf7a52014905f4ad59b53e83b71433e50a9227f9f50cbb7a2c9a5db9cd69fa7dbe01234819f7edd2216b3d915f21676f07d12bb5f0f3276358bce7f ruby-2.5.0-rc1.tar.bz2=bf0eb114097f9e505ff846f25e7556a2fb393573b4e8b773f94cf5b47998e221f3962a291db15a3cdbdf4ced5a523812937f80d95f4ee3f7b13c4e37f178d7a7 ruby-2.5.0.tar.bz2=8f6fdf6708e7470f55bc009db2567cd8d4e633ad0678d83a015441ecf5b5d88bd7da8fb8533a42157ff83b74d00b6dc617d39bbb17fc2c6c12287a1d8eaa0f2c ruby-2.5.1.tar.bz2=82e799ecf7257a9f5fe8691c50a478b0f91bd4bdca50341c839634b0da5cd76c5556965cb9437264b66438434c94210c949fe9dab88cbc5b3b7fa34b5382659b ruby-2.5.2.tar.bz2=9f9388a162a3ae9c14ec8999fa3b12ff5397de14f55996cc8761d21c757113db37ace4d326b9606de7ad3a5875aa94fec900dd9b81b2fb0dff558c39422f4aa1 ruby-2.5.3.tar.bz2=6fe89fe9d406bb454457442f908774577369ab2501da4fd15725ccbab77675b88faad739a6c8ad1c7b6690b439a27de5e08035b7546406cdeca65c7b295e2c77 ruby-2.5.4.tar.bz2=3c4f54f38ee50914a44d07e4fd299e53dddd045f2d38da2140586b8a9c45d1172fec2ad5b0411c228a9b31f5e161214820903a65b98caf3b0dfeeaabf2cab6ad ruby-2.5.5.tar.bz2=1b56aa79569b818446440b9f2d13122bf7c2976ab9b2865f5fb62d247d7768dd4ac5b5e463709ffec0f757bff7088afd293c2a8c5349c3780763b6444bb354a8 ruby-2.5.6.tar.bz2=e4511d42d19a7bb39ea79f66bb4eca54b63c2a9d27addc035d6d670c1e59ee48a0c6e9c6bc7d082d1f1114b0668831dce3b7422034517f3c4a06ced0e47a7914 ruby-2.5.7.tar.bz2=7d6a7d41b4f3789f46be5f996099f3eb8321aa4778b2a8ff44142654e769ba4ba2df127dd0f267547e4c8cd6ff46364f18e79838df54fcd7e3fb714294ee0099 ruby-2.5.8.tar.bz2=037a5a0510d50b4da85f081d934b07bd6e1c9b5a1ab9b069b3d6eb131ee811351cf02b61988dda7d7aa248aec91612a58d00929d342f0b19ddd7302712caec58 ruby-2.5.9.tar.bz2=12f58e14cfa6337065b0e82941e39b167813920eb54cbdb4ac4a680dd0cb75d2684d341059e7b4d0da1292bfc4e53041443bd14891a66f50991858b440a835c8 ruby-2.6.0-preview1.tar.bz2=d9cb270529a97670d54f43a0236fab072714e715c39277dab70b7a1843ec818e6700e47e1384c7256f9e0ae41ab2c0b768a0de38a5ecf4f4fff5da6ef5ad4944 ruby-2.6.0-preview2.tar.bz2=3872227e9b1c97c206d19bf1e6ce15a38ee15a26c431b4436605dea67affcf16372358984df76b35e7abaa902c15c16f533ac7af47e3031dea9451bbe459b693 ruby-2.6.0-preview3.tar.bz2=d1693625723796e8902f3e4c4fae444f2912af9173489f7cf18c99db2a217afc971b082fce7089e39f8edd54d762d2b4e72843c8306ed29b05ccb15ac03dbb5b ruby-2.6.0-rc1.tar.bz2=cbd6281b2aab6fbce3f699c1ab57e5423304dca7a547a0b3cd4e8e980326dc7b85b2ca2bfaf3f3a648d40f4222fdf1740d81d422790ee7ae1ba1ed33eb11e3e8 ruby-2.6.0-rc2.tar.bz2=9bfbe83fd3699b71bae2350801d8c967eb128e79b62a9d36fc0f011b83c53cab28a280939f4cc9f0a28f9bf02dce8eea30866ca4d06480dc44289400abf580ba ruby-2.6.0.tar.bz2=ca3daf9acf11d3db2900af21b66231bd1f025427a9d2212b35f6137ca03f77f57171ddfdb99022c8c8bcd730ff92a7a4af54e8a2a770a67d8e16c5807aa391f1 ruby-2.6.1.tar.bz2=fc41429491935b89532733b95476ab9f8a4efc310aad8f4c2bd3b68fba08fd7b6e9ac84c6c88ca892022d1ba76435295f3299ea466f9b5453c07d41cb539af59 ruby-2.6.2.tar.bz2=cad678d2ced4085e99009e4fef83c067dd0e6ead27a8695bc212c0e5112a7fa09ceb27f82638faf91932ef8bdd090f844e0a878ffdf6845a891da4b858588aa0 ruby-2.6.3.tar.bz2=c63c3f527bef88922345f4abb4b9ad467117b63f2132e41722ea6b4234cec3446626c3338e673065a06d2894feee92472807c284cbe613a442c8fda234ea7f88 ruby-2.6.4.tar.bz2=a9fa2f51fb5f86cd8dcaa0925fe6f13d4f19f110b5d4c5fd251f199d16aaf920db39ad3bb50460eb94ab8d471ab2ac8bb54daea4a3bb080eaf45250aac3437fe ruby-2.6.5.tar.bz2=28e0b04ac8ca85203eb8939137b5e5de4850c933faf7f62fc69648fe1886faaabf6cdf48382f9d9585c1720876d10b41dafd33efaeb23341c309917fbd8a6e21 ruby-2.6.6.tar.bz2=001851cf55c4529287ca7cc132afc8c7af4293cdef71feb1922da4901ece255ec453d7697b102a9a90aef2a048fe3d09017ea9378ab4a4df998c21ec3890cdbb ruby-2.6.7.tar.bz2=311ec56d23d0de7a163f66c1ef4e5369b822f8409f8e1f3a25785c803f01c68dd13aa8ddcfb3a0fe6a97bf321950f8d6cd75b2babcb04158e791601914666f7a ruby-2.6.8.tar.bz2=51806d48187dfcce269ff904943dd008df800216ad4797f95481bdeecc2fbac40016bc02eabfff32414839ebb2087511d25eebfd6acead1a1d3813be6c10edf7 ruby-2.6.9.tar.bz2=ff067ebc059094c0a9a0debf54a37aad2c85f7ed47be59299041c9c03a7701529f5063ff32a1b8c56d48ee8585015acba63602ed0176b2797d263d43d67aa241 ruby-2.6.10.tar.bz2=275a0f329641e6c3d3d3c33ffabf585195187eb3baa4fb1dfd35999fa0a80bd5925943fa2711827ac00dffb6c9a1deeadabaf2e9ee401d56926fc167db5ae4a4 ruby-2.7.0-preview1.tar.bz2=a36b241fc1eccba121bb7c2cc5675b11609e0153e25a3a8961b67270c05414b1aa669ce5d4a5ebe4c6b2328ea2b8f8635fbba046b70de103320b3fdcb3d51248 ruby-2.7.0-preview2.tar.bz2=7066ececebbbba4b2933ba1a4f70cdef373169910802259a3e52b4fc144ba298f3cffda4be5fe8a7be8ef769ed43076fa046a9ac2c13bb733475b9852112c6f0 ruby-2.7.0-preview3.tar.bz2=5d8e99e3fd984c7d05c0bc483e1504e81ccdb920cbb2d78cad3c314e197b30316b692fd0199f836acac41246e3a713cb81dc6dd64c27cba56f807df4c193db1a ruby-2.7.0-rc1.tar.bz2=b5f96227775f8bdf19f944a555d0a83d7e84b37bd31fe4b8ac008a3272b1a28a4d94abbb1b5570ee32ec0690ba9d476b837a020a5194bee14bebf6f0e768bc79 ruby-2.7.0-rc2.tar.bz2=9010f72bb3f33b6cd3f515531e6e05198f295bb2a8a788e3a46cdfd776a9f6176b6ba8612f07f0236a11359302d2b77fdecca1dc6be33581edbb028069397a0a ruby-2.7.0.tar.bz2=8b8dd0ceba65bdde53b7c59e6a84bc6bf634c676bfeb2ff0b3604c362c663b465397f31ff6c936441b3daabb78fb7a619be5569480c95f113dd0453488761ce7 ruby-2.7.1.tar.bz2=4af568f5210379239531dbc54d35739f6ff7ab1d7ffcafc54fed2afeb2b30450d2df386504edf96a494465b3f5fd90cb030974668aa7a1fde5a6b042ea9ca858 ruby-2.7.2.tar.bz2=f07592cce4de3532c0fa1c84d53a134527d28ba95e310cd3487ac321c49ee680faeace285de544ee6db432a90aa7538a1d49ff10c72b235968ca362ef9be621d ruby-2.7.3.tar.bz2=e9236138be3e61380140f2e0d42f8fb82ad8f5219d454de2f6c2ec546bb208acc8b0f2020f23e6446660d2b3b9ae873cdd8298471f166a5f1efba8e80b05e746 ruby-2.7.4.tar.bz2=f144c32c9cb0006dfcfa7d297f83f88b881f68c94f0130346c74dfd8758583a68d22accfd0fc9f31db304ab5ff0bc135bfb2868145c0dec1ee6cec5ac6c3725d ruby-2.7.5.tar.bz2=0aa2ac44bc22859a39c43d08b7c7f457df05c2dc36b2574fd70ca399143ef1000dc5e496212db9eb055bc4258523d47d26db3c57a1a5a5d63cf1b3de9f81645a ruby-2.7.6.tar.bz2=4f7f3624afc43da25ebf0f01d5a2f92f72f94bab7423587cfd3920e089b479bf559b159adf2891b996f7e6a98c008a4f73a4a2170e2f8619417660ac1ab24bdc ruby-2.7.7.tar.bz2=24cc772ac1b56d3bb423f1b33716f221bf534f3717a506bf8235a698f8a454db7d79d94ae9a84067153c2f737b3f8f6085f34e36cc04be0d75ae2fdd57718870 ruby-2.7.8.tar.bz2=3a9db8d9e79318f869417f2ebf3365907febc0d1428116eabf3253c51d8420f255782b32fa30a54802b9f5f4187fad80dab0611cc80436feec84db87b0456ec6 ruby-3.0.0-preview1.tar.gz=b94892951f842a1538f4b99022606ac2c0b5031f1ede7eef3833a8caa9ed63e9b22868509173bfefb406f263c65211db75597b152b61f49e5ba2a875fce63a27 ruby-3.0.0-preview2.tar.gz=6fa4191425ae71e41894b60bd9c31d483a562ee8216886360ce18238ab48115b95be0367708612c45f634e7584fba8940a524ba0113ce0f36ce4df78a112d0b7 ruby-3.0.0-rc1.tar.gz=798926db82d27366b39be97556ac5cb322986b96df913c398449bd3ece533e484a3047fe35e7a6241dfbd0f7da803438f5b04b805b33f95c73e3e41d0bb51183 ruby-3.0.0.tar.gz=e62f4f63dc12cff424e8a09adc06477e1fa1ee2a9b2b6e28ca22fd52a211e8b8891c0045d47935014a83f2df2d6fc7c8a4fd87f01e63c585afc5ef753e1dd1c1 ruby-3.0.1.tar.gz=cb81db2c9b698cf8159b2ca6507f4c7f171e4eb387f5730c4b658ed632b7900a169808e6fbec0ee80598d937030ad5d9c56b63a2a339373ec5d9e1c06b7661d0 ruby-3.0.2.tar.gz=e1fba6f5429b5fca9c3f52a32535615fcf95fafa415efc71c46db4cce159f249112c01574c305026be5c50140335696042e47a74194caea045acbfaa4da738cd ruby-3.0.3.tar.gz=39dab51a0d784a38302372b99f96205817d466245202586d22123745761e9cb39db128ec2b984ebc3919b9faf2adf828d19c97d3fb1e56d44be0a81dc5d11b87 ruby-3.0.4.tar.gz=0dfded6826063c1b39bf625a6e13b46c109cb160c8648b78f0965f70e7c7a1a65f1c117fc8f2cf8bdb34d7cbf79fecf1f45d169d2323406d66ab27b18bde1d22 ruby-3.0.5.tar.gz=ea45fcd2ca53b87f18fd8696d00a1e340d2495443216aaf87d3f643cb5bd8bb614a1faacd82d07e7f2b72172397c728316a82d7c34a7b4566191268ea517ccf7 ruby-3.0.6.tar.gz=d596bfd374ae777717379b409afe8ee1655ade0c0539ada7a10af4780b818efe25a28aa50a2a7226741d1776d744e10ad916641f9d12fb31c7444b0a01d0e0cc ruby-3.0.7.tar.gz=66e5116ddd027ab1b27d466104a5b440889318b4f2f74b5fdf3099812bf5f7ef77be62fe1df37e0dc7cd5b2f5efe7fee5b9096910ce815ca4126577cb2abfaa7 ruby-3.1.0-preview1.tar.gz=63f528f20905827d03649ed9804e4a4e5c15078f9c6c8efcfb306baa7baafa17a406eb09a2c08b42e151e14af33b1aadbd9fb1cc84f9353d070b54bbf1ff950d ruby-3.1.0.tar.gz=76009d325e961e601d9a287e36490cbc1f3b5dbf4878fa6eab2c4daa5ff2fed78cbc7525cd87b09828f97cbe2beb30f528928bcc5647af745d03dffe7c5baaa9 ruby-3.1.1.tar.gz=a60d69d35d6d4ad8926b324a6092f962510183d9759b096ba4ce9db2e254e0f436030c2a62741352efe72aec5ca2329b45edd85cca8ad3254a9c57e3d8f66319 ruby-3.1.2.tar.gz=9155d1150398eaea7c9954af61ecf8dfdb885cfcf63a67bbcf6c92e282cd3ccac0ff9234d039286a9623297b65197441438c37f707e31d270ce2fe11e8f38a44 ruby-3.1.3.tar.gz=550cfda2ae492312009a58316e18fd77ea92852718b37443bcd76aac84ba6694fb841fe19bf23bee099f96f5aeed9d03e77c8c02fb194e414eca5f707adbbf90 ruby-3.1.4.tar.gz=41cf1561dd7eb249bb2c2f5ea958884880648cc1d11da9315f14158a2d0ff94b2c5c7d75291a67e57e1813d2ec7b618e5372a9f18ee93be6ed306f47b0d3199a ruby-3.1.5.tar.gz=23661cb1b61013d912b7433f8707bbcd723391694d91f413747c71428e74f8c7385c1304de7d08b70c9fa3bd649e4eb5e9acb472d89dc2ad5678cc54855a24ae ruby-3.2.0-preview1.tar.gz=d24e77161996c2085f613a86d1ed5ef5c5bf0e18eb459f6a93a0014a5d2ce41079283b4283d24cb96448a0986c8c6c52a04584abd4e73911ea59cefeb786836e ruby-3.2.0-preview2.tar.gz=5e9ddcb1a43cff449b0062cc716bfb80a9ebbb14a1b063f34005e2998c2c5033badb44e882232db9b2fceda9376f6615986e983511fda2575d60894752b605cc ruby-3.2.0-preview3.tar.gz=860634d95e4b9c48f18d38146dfbdc3c389666d45454248a4ccdfc3a5d3cd0c71c73533aabf359558117de9add1472af228d8eaec989c9336b1a3a6f03f1ae88 ruby-3.2.0-rc1.tar.gz=798157d785ebae94cb128d3c134fa35e0e90c654972e531cb6562823042f3fb68a270226f7b1cf0c42572ef2b1488a1a3e44f88389ad2a6f9ca4b280a2a8e759 ruby-3.2.0.tar.gz=94203051d20475b95a66660016721a0457d7ea57656a9f16cdd4264d8aa6c4cd8ea2fab659082611bfbd7b00ebbcf0391e883e2ebf384e4fab91869e0a877d35 ruby-3.2.1.tar.gz=f8bbff5e237b501f4042ddc70a19ac1ce74f72f147c90daf7f3007a940136abde37c12a0f7444f713ede09ba847c2cc2897a1742823832e3dc8cce80073164e1 ruby-3.2.2.tar.gz=bcc68f3f24c1c8987d9c80b57332e5791f25b935ba38daf5addf60dbfe3a05f9dcaf21909681b88e862c67c6ed103150f73259c6e35c564f13a00f432e3c1e46 ruby-3.2.3.tar.gz=75aecd9cf87f1fa66b24ecda8837a53162071b4f8801dcfd79119a24c6e81df3e3e2ba478e1cc48c60103dfaab12a00cfa2039a621f8651298eba8bd8d576360 ruby-3.2.4.tar.gz=b695b98dac7bb2c8755a106d949cb1b1b91551092fad263765171ddf8a4d86585259ffab5f7cc9bace70143d645dbe5932cfc61c6dba7817177de391d76bcd79 ruby-3.2.5.tar.gz=d86c0151fabf21b418b007465e3f5b3fd0b2de0a9652057fd465b1f7e91b01d00f83a737e972ea994a5d9231e8cb27e64e576852390fe6c2ad502f0d099fe5f4 ruby-3.3.0-preview1.tar.gz=0f891f140ddc6372aa7c4459f8784126e0c341db7b80e72c51e441c5153c43c2d7b965f7807c076862ac84b9b8b0c6a66bbf66fc341746016151397bb21c782a ruby-3.3.0-preview2.tar.gz=1c5a13e519e8487fd40d932b96d14fa729521925c288e7841ab5eada628e506ceca2605bae36eea1aa505d9253383d53cd933b7a4bff96e6de5b1130c7c558e6 ruby-3.3.0-preview3.tar.gz=94db07a6958c09809b2e5b597fa55a121074e8bacb3bf588c83cf0d35b07a8b070172035a49d1abf0d8ee364a9ace824f34e677f7327ffe1acdbab0938ac49c4 ruby-3.3.0.tar.gz=26074009b501fc793d71a74e419f34a6033c9353433919ca74ba2d24a3de432dbb11fd92c2bc285f0e4d951a6d6c74bf5b69a2ab36200c8c26e871746d6e0fc6 ruby-3.3.1.tar.gz=0c8ea922a79152ac7adbfb2541320565bce6a631692fd39d499a06f53ad6339c16fad8374d171351ed63f7bda3312b26d4f8c058c5b6df3d7548fde372c718f1 ruby-3.3.2.tar.gz=a15ba8d6c2830fcd1f2b36f671acf9028c303ec78608fd268da0585db8e95ddd971666e8029bcfa2584da2184a6534e1f2f2da07fa7ca4494e8d842eed206f00 ruby-3.3.3.tar.gz=0388a96127eb6e53b836f7954af51ff62b84cdb7abeab823cb1349993d805b151204e426b9ac04ca8333fbd5e01c386d58bc37d34c4e9286b219dcda7542a150 ruby-3.3.4.tar.gz=56a0b88954a4efd0236626e49cc90cdb15d9bfd42b27d7fc34efae61f500058e58cb32c73fdef5f1505a36602f4632d6148bf3bd1df539cb5581ae157c78c22b +ruby-3.3.5.tar.gz=5c482059628ef9de5d8a6ad4751f8043f2fc2b159b768265be7f3ee0574ad51d9500ee4fc9146c5978fbd51313039c3de39e7b7a4dedc9bcd5d09a41a713f1a7 ruby-3.4.0-preview1.tar.gz=29c0e32179f7b823b6708f5328e495cd333fe8dd88f7df7d9051deab47add67b14d899bba565bba1a77e1b04c9693d9708541445c112925777bb6891cb7b2b62 rubygems-2.6.11.tgz=3b0dd38c0aaf313c59e299dcf54f7bfb6e6d84b8b739573ddaf599e584da45ed7b1465f6521131b32f237e31a4796d9ef455b8be685064b3fd77a0355dfff13e rubygems-2.6.12.tgz=ebb672488b50f5fc988eab66ab14ce8e887dcc635f71239a85e32fbf1e919ca70196eb4d3f2fee3486cace7064bab0b8b08339c754b723198e1b0b0a0984ab54 rubygems-2.6.13.tgz=c952b6061a9a0778db304c3aa5bea693e71ae2564abfb19f8b123eef66eb1e3877fc7c36f4f1527da97bb320870cbfd4574ac57ad88e850a44fadd67ebdac152 rubygems-2.6.14.tgz=7743845bc5265df3782f85a23896cbb250d8a2bbc9934a27f274b001afa7aa62f7f00f616296f74747ea612d2cb37dd7f533c931aa72550d84c64d2a73d60daf rubygems-2.7.0.tgz=0bd08fbabcc33687c98365ffe6794ca2a5e82160b0297479d4f19bd899d176b7f4efb95248898b26d873f9fc7d86c10cada6e40cdc48738b0bac261c3aad261f rubygems-2.7.1.tgz=fa4ea123760b03b8b8e8ececc55c9dc34249073fb267d310bd903aa7a613267e5d27990bbf28e32c9a746bf884af8a84a0dc202297272f9d477f7710c21bfb60 rubygems-2.7.2.tgz=0f48c6e46663780a571c7ee0e6e772f2e18a755031e7dd8ede7870f238c214b9e3e38153b1ae8f1f78a9aad63c1a079b86573b3a25c57a600d842bdf92b9c4d1 rubygems-2.7.3.tgz=2782331b31947a23f85b285a3d5e7b66e34fe5847bc84dca4f1e6bfe33ce187ab0cbc814229de8111aa19490b656ca78b7c821e4ea6b425449991c01371b7565 rubygems-2.7.4.tgz=90f72a46709ef847666a6a23eecf24521abd5c294b2da8a246bb4c7f85daf4af39a0634fc8093c7bb7ded2ac137ea27fac5ed94af3b70c49e78594285c7a40ce rubygems-2.7.5.tgz=86957f1c438070135df527a15102e40487fcee93a55251463095e4c8794a8616d16ed9bdead0e0ef83c44806bd5016ecd9e178bef608b66af2e68e2c9c49e941 rubygems-2.7.6.tgz=bc168afc40c974dbc7c37eb5678432ba2ed7469c3f007a159699467ff2cff5205c508237193ee8becaa6eb555b043969cc5f92b2aaa6bf7c958dd7c187e258a7 rubygems-2.7.7.tgz=f93b7eacf5ef8725c40d618daf9deabc7e9eed74b3b7f13ecd16f89205fe24958e782314c52f8a8fe3205b93e20b830b4fbf7ff8944ff1cf56feb7de2d773252 rubygems-2.7.8.tgz=3d1cf68377dfcf102028342258aaff5a7257d2d2b34a80508c85aa258d810add46e65a157f902c271b0b7b568c437372d17246e89cd88f8500e47c008d17f1a6 rubygems-2.7.9.tgz=5f699f47bc24d8ffd4f8f44a509a9df71fcd945ca2574dc9d5050bfe06a44830a368f45d204112d7a4f1877e1600a6fe4d1b6b68f9a55288664667b4220a7d72 rubygems-2.7.10.tgz=48a18c0f202f463c38cf5dafecfbc7cc39245e63c7a059ef2cefadda478483794a929ea6b7e0ef062dd4423230746f1f09d7bec06a97fe3ceccc3325397a3e71 rubygems-3.0.0.tgz=047f4d446aae414e4803517088ef47d5cc66319ff08a3795c6d69e83eee9f3e7c3b05419858f7e5b6a8ec224990ca01178a9259961ef2d7ab737bac352a0f18d rubygems-3.0.1.tgz=dc29ad51ec67b1dca82a23973ea92153482788964d0755bdcd3c650116915c461c6e5fb1c826be3ee04a497fec4ac2826904bd406f24611e77cd8c9eaf4d8729 rubygems-3.0.2.tgz=90b46c2cd4f8baee74eb488a40691cc00e754cefc42029d485163d6ad7782df78ba5cbeab08eec6a4f71febe0f6e635e12a9381393008c58eb5e16396df93fbe rubygems-3.0.3.tgz=1dd585243341901c7b4cc60a4902000c10ce57fe2cc9c28e27e274a2e6029f936cde1c99d7097c93c2c5b2c8bcee5d692c8fe5cc00c996a040e4954b674e330e rubygems-3.0.4.tgz=887c64226ec0b32d33f2ea331936683406d54dc74d19e658a23521e25ab50aa23534fe9eecaf696154247ad1df1d24c233d8900b9aabc79096eebd6afef3f775 rubygems-3.0.5.tgz=f5a97cf67d7d043afba7c1aed014f1b64ff6376ea74d3d6533496bc5ca9742e0ccce1a157e6f67d8fcbe59d8e34bbfbcf4ed8be97acf2970603de6381043cb78 rubygems-3.0.6.tgz=1ef1822a2b19790a36a6d242b7d4584222617baa27787ec58961a9cfeb2733f19f9085490ffc72ee375d3153c7114e050c42e68fc8039e727fe5961b09365ee5 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=5dfb040b746e462c297ebcdf84e0f07cd74b86852055dcf0a7cf1814112099bc674bcccd94b03726aee76b253c9345a45d046cbfea230647644f0fd6b1c1ec96 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=17983c442c54d19196be3626e25c64f5474139c0b973624832ba8730efb047bc747c02e59c82f38397bf012c63ab83f79a9c1b64311cab796f08fe96d7d12a1a truffleruby-1.0.0-rc3-linux-amd64.tar.gz=b0b57082d61317911f101da617333d81ee6bede6b6e18f9bed86544dc413339c830198d90cad7ac94c0c8fb690adcfc559dd9f530abb70507ff6a76eee552b61 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=18f9782de56269389320ddad779ec69c168909198d4572e2ea4c18bc8082a539569a76760a6a6da58722fe08d77d83904aaba14baf4075a2833cbd2efc45dff3 truffleruby-1.0.0-rc5-linux-amd64.tar.gz=134d9ba5db7b8a1960d3a88390cd6f7503a0e8565094fb127333d122cd773bfbf9dc976c659029007e6fb68e93486293bac2ee29ab21dae9cb0c06ba57dd2c72 truffleruby-1.0.0-rc5-macos-amd64.tar.gz=5804f1f27916176f5a270de8aac85bc48c38ba37c4e719b09f5777e5c42429271819378cfe096c3cc33d406cd0726f2e37658020f97a438fd53751019831569a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=2597b375f590755b851d3b8cbad3eeab4c965eb02d0c944044f57e39f6c3db1e2f513e2aa55db789e4a885c697f81ce5c8bdbe9a7e44ee30fc09d234e44fb512 truffleruby-1.0.0-rc6-macos-amd64.tar.gz=2eb177190de0408dfdaf30264132955d1db7783ddfb63880d97d5933f66c5662794c3bb6198edf230fbff348674203e61f7f5481e74ac875974467f2f128e939 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=ab3a3dc19f903e68e36b135729693fa025a7c1950139277255e48c972387ef8399beceb3252ac37cc70c0df92838f8a0ba8c45f53665ac4286ef23f9b240806a truffleruby-1.0.0-rc7-macos-amd64.tar.gz=b8423f50a5292e211db7ebd7e2b987fd5c9eaaf34eba86b0644d2716a7f068f2e56deb4357c516b87b437e64fd5ce8515bc181165cc1042c6763f27d71baa59d truffleruby-1.0.0-rc8-linux-amd64.tar.gz=bcd05d304ee9b4da97193575fb1ad78041a0c7710bb444af6aef12ab4261b1873f472175ec51a187a5e99da481d66b81a132fb691643b793e87d655f31d54657 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=2c758221793c38ca8af1831a5d9f3abd555c406569508ac3a86d3c1ea5baeeacf65abb6e904ed3b1e58f555f51bc85ab171135ff4c3d0e08cdae994a861cbda4 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=42e60b69957f77a8623e0dccb7d215e800c27c622364fa76b9c574e8b1d3a4056a058b61ed91eac2375ecf4e51e482a6e17550aa2894a44d1db70687958033da truffleruby-1.0.0-rc9-macos-amd64.tar.gz=18556ee8d2fdec6907fbc8fc33d8b32ea0c58d40ee3df084ffb233e2fcd3a514a553f97c31dcc25dda3f86b1b805ca5fe3c9bf8cb078b92325515f09db6b88ba truffleruby-1.0.0-rc10-linux-amd64.tar.gz=10a7cb1be6214347469d5797091f73c3d7824bfb32a47c13566573a383380b1df9b79b7901ce0fa3af1c97285c90afac21e2de7a66ed88d9495846743b3b25e2 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=53f0939d9d8c3470cb79316d865b765816032528d77a3cf497134f3aa667a6253ae037410801261a8e7d0628198ac5f6aea5ecf9b7313f06ccc1d5e9f94e74ea truffleruby-1.0.0-rc11-linux-amd64.tar.gz=f89bc9a3310634d39f68006307da0b0ddafae036089bdd663e8372777a9562d201a4e69b2e1a602cff5fba6c78a8d4861b6d1020679bd0c72c71b938a4f36a27 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=3f461c12fa9fa57a55cc390eb9887df88f404661a77bffb44f82b4c7e9021513a6df9f6d5f332a36ce0c28ae7e3d5afbbe15cc4b814bc7f86dac2e5ec280f947 truffleruby-1.0.0-rc12-linux-amd64.tar.gz=85f042c308ccdfbeb318cec37056d8d970cab51cb0779425b85b8f76b0a1dd9cdec3191ae2b6b9b6be6e95767db814496450ed20076addd9bd495742f9de3c8c truffleruby-1.0.0-rc12-macos-amd64.tar.gz=067a0f63bbaaed4c8d4120f758c8ecf8c52afd1d30ea9d41489e26289d57a574d2d4ae29e29655378510adfb3f4a07b04b403d6ee98ee6b3d3aa8bff9c8d718f truffleruby-1.0.0-rc13-linux-amd64.tar.gz=1eb6b80cb05133d253f20629a11ed9ec3f37da002d5668cdc6577b2a20524e0cdd4d739d3f1aa2e8c518e2f7ebfd519ec1c647293714a1133ad4d569375c0e69 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=e3cddb0d0ae48f7d5ee4dd094ddb5a13f6a7aff1521b1adf25710971664b235cf67144e3b81525fd710dc49b6f6f6ba06e10eee1df5dc08119e9494c6be86934 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=c982194675b66a0433bd5517fc6f1564db669f595f8c7ba4819bf37e0599474d49a0c606577a898c27fa5ba40ab793c62d8211e7ea398d6b3e2bcc31eb5d55f4 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c14e396396385644333fb4c4aa1fb4b934a3f4e46312146821e5dcdaa097cb5b1efbf397c1dd6117d909803fd27ba8d835904672e98d43dc565e907fed752e1b truffleruby-1.0.0-rc15-linux-amd64.tar.gz=f27a75f929a6e945e49ceaad12f484fdaa918469a2f639b572fc4737b78e1cde0881697057e13a58b2fab7ac64c3a71bc9951561c3a8728e3dec814ef5e95fee truffleruby-1.0.0-rc15-macos-amd64.tar.gz=7aa029c4999d4608c9bcc491771b0434267032dbe9dbf504728079f87ce93e6a90e0fa839295b88c00e5a025186ed0fcc42361428b7874c05e222edb108d6c02 truffleruby-1.0.0-rc16-linux-amd64.tar.gz=e8c508dede11d4f54cf0b15cf92b50caad93076a6065bd2d6784c5ca739f5923ea2b894c6b2b52131f62187c8b305cd11a960fb5a670789802d59b6b2999f0af truffleruby-1.0.0-rc16-macos-amd64.tar.gz=841eff077c38bf594b101edb15942f601ba0dada2122b21b016f53251aa2a635b8d0b63b49bdfb50259b2545d1f498bca95d5f771a15a28edb0dd07216c9b709 truffleruby-19.0.0-linux-amd64.tar.gz=8ec6c7829351e0dc2cce57305947cd540734fe5a0b95b9501d4179993727ab2c331e9fb639b9865c0fed596df3906adf3dcf2efb22c4cfdd23a3dc2137025fd4 truffleruby-19.0.0-macos-amd64.tar.gz=912e0c15d32e40c884b2caaaf9a86a71450d441c960ef98a63dfce80353619073b146dcfe03d9af4273b2811d0899eebe922cc84a51d6f5e6826cc436d793f78 truffleruby-19.0.2-linux-amd64.tar.gz=eec92bfbd776acd61709a428b90b1029c5ea83e5ea839304d23cae3a541dd4fab3b387691fa76643f55d5939c9cac0cbe70dc0b5786e5e0e5d20f3fcd9a21356 truffleruby-19.0.2-macos-amd64.tar.gz=ce647b76c9931feac55baa5acd2c87d8335c606bc5cd7e462bd92ba1b09f4bab5db927f021e3119abfd85c33377003d060f36cf64eb121954fce8878112f01b5 truffleruby-19.1.0-linux-amd64.tar.gz=db01e6dc09fc5f39ca466aa94f725023d49a8f52343f129bf8c32b7f5f76ccf2d573ee3344fce3d5aff9983bc9af618cc5ca6e1dbba93b3f604e4f33f8a69b3f truffleruby-19.1.0-macos-amd64.tar.gz=f002bc0b6efca11eb97c4aa6df33d2e0fcc1de3443efd39d912b028df9dd8954cb76ef3ca7fbe140f4e922d6ae4c1a6a20853490ef1ea0749293e2fcd4ffe8fc truffleruby-19.1.1-linux-amd64.tar.gz=ec031e8c216e31f034d97aaccd6441869221d6946e18f375b44a866550b8e8eb4b2fb923f9ce1a62853bdcd5b9201e0f5d2732ca6525d80171d5732ef522bd25 truffleruby-19.1.1-macos-amd64.tar.gz=1c15918af939a8fe1779b71d9e53d2ce09ca7353173a3b357905d9fe1981ff013cf0f90c6b47e1ca66dd168c2f2d742f28a5fb134cc0231d36146da99f91c3cc truffleruby-19.2.0-linux-amd64.tar.gz=1248bdde9cd3651d7042fe4cecff4ad35534868d543fe2e6f3a5bfc3bc9d10d57b4139fc070f0a03861436a1aabc9a8ebdf3356f39b77a4b8f6a1dcf492f70a4 truffleruby-19.2.0-macos-amd64.tar.gz=92c3154ed229a115cf392826494745aae06dd9228dd0996c2c44c550552f13f9c254367d068452fa4a84eef79c19601c79b87e10f3121fd7b83b803514a41cfd truffleruby-19.2.0.1-linux-amd64.tar.gz=53c78cd1f255f2b7031a70a42b65c0bf80c510b9254f5d7ba82b4787f55f5b09cfa9544c424a90f4619a74179fed07c168bd501e34772ef836a773e89c467cc5 truffleruby-19.2.0.1-macos-amd64.tar.gz=ac11523cd49fac50de1e441039e429fb8cd6c7051d537e5083b64fa68eaa19c9f0a966b269da906c367985f229af82a4811282dbfd0a76ef6565162e1081a659 truffleruby-19.2.1-linux-amd64.tar.gz=c5ffc1b592a74e836a4f6ec75b0e103150a4a40d3183ae853ead38c951a85378163111cf0bd2b81e44548c0a7aeaded3ae8a7ae558d5a02dc9e2cce992b79b58 truffleruby-19.2.1-macos-amd64.tar.gz=bb467b91f66eb7d1e6f1a54a7bc0a3d9503bcbd935e8a02da9ea0b749a51e354b1140d4a4dad6fc05312b560bb9ccdcce4f6583bccd19bb5afee19bf494102fe truffleruby-19.3.0-linux-amd64.tar.gz=0e94777a3feabbf0107ed40847e20dd4e3696ff2b7c3f6ceddf3a53ccd812bd003c84c62a750e8fac9d2490374bf792d69174b48c3ed36b593485d86729136c1 truffleruby-19.3.0-macos-amd64.tar.gz=95470c389e24c865ecdc3d299005cd98f8221a128f3cd75f899b6b7ae5d6dc07962443ce0ff38dfd014589d5aaf08b718dc870a72eb7ea6ced18ec2b2db63095 truffleruby-19.3.0.2-linux-amd64.tar.gz=dc5309b71980657f750b4dd4f8b3bc4e191bc305b638b1e562ff5b0ad7fbba40079ba674caf46226a46b5ca58c10f812354786696264742f351b129fb088a672 truffleruby-19.3.0.2-macos-amd64.tar.gz=ff1c37485ebeff3edcc7081ce09bebe5541012dedff6997662c7f8a064e0ab10bef9a5cdf834263a06ae04ca0391743948bcdea6e6c9d7e1cfef9f21523c2bdb truffleruby-19.3.1-linux-amd64.tar.gz=c724547a9eacfdd135ce05eac9dcfe74e58a5e77c97f88103f83b8513c15c975a0ecf623f623a425ec81fad1b64d3b5e135660d6943608ad08048cda00eace79 truffleruby-19.3.1-macos-amd64.tar.gz=d746b2ad410c15d145d36c676a070ae454ba8e5ec6c594d5ebcf54b1fc719f98e8b8f71b6fd504c3d38df286bd11c5114f73b5ba39be312b11d42d4ca1a17d02 truffleruby-20.0.0-linux-amd64.tar.gz=4efea5ded5fcc6886befba3a3720fe1e5b2e376d46738565e8871a1ce0201a33ed52e78b8af2fb389618bdea99466d126d8537dd0919b0c13f8ff1940cb3e52e truffleruby-20.0.0-macos-amd64.tar.gz=b36488330514b77c7115689042cf2482a0beb9f72a0b05fb4c7a6ecb0835a3da47c3b15c41abd6ffced023e65ecf7eabcfbcc6e41901dcddd0fb3dfed46564c6 truffleruby-20.1.0-linux-amd64.tar.gz=116d57404540b85c15b321793a6f985624a2044af544e659b3607e50159703af5d445e22bff28ae2182dfa752f7500d420e250f6deccc98a2f01e89adba8ac3a truffleruby-20.1.0-macos-amd64.tar.gz=9b1267101dfe78b85c79f7528eb4de96b16933e66d5771efa6272372dac0fb35b199bb9d42773d61f4fa7a15d6cbd18b5753c148f7c3e477c7c4b21633f12b88 truffleruby-20.2.0-linux-amd64.tar.gz=a37eaf8475364b74d948979ac13dc6e6423bf11949ad1d0f2925f78a4495e80de9767001ccdb777c8cfd7f545839fad4d842522620c3acad179404bc4ce6752c truffleruby-20.2.0-macos-amd64.tar.gz=964c1e02cc53e1646060334a9911771e679a8344d811a0f77d5cae3529dfefff259c45505ac84b7debb958514cd5d2276ffd435802085494e0229dd140ce8f00 truffleruby-20.3.0-linux-amd64.tar.gz=ec2d8ff6a5d45fd7091e26430c67cbbdc0f8ffa41e9ac574d48802766fcd144e1f446db807700247ad6d8046b7ed070b5da70ef667e576d6fea60cc64ea5484f truffleruby-20.3.0-macos-amd64.tar.gz=1878f94e05a3c40484bf944a72412b179aa5415a16a7ebc1610cb512a1e1c4a2ce0e98685257ad6e5c14745245c35bb5b28205fb687292c4f17193cbfb3bb606 truffleruby-21.0.0-linux-amd64.tar.gz=b7d1b76cc015d136dbd74515431f4447730850475f81b00885b71b95819134db2656d941736048db42d519f03e1f2df066226513b77208adbdbbeda1f49cab11 truffleruby-21.0.0-macos-amd64.tar.gz=7677b827a9c1758d5f941c512cb0fe8daaa19c3db77b485d7dfa43940151d6b9094c4d9271e18ef5014630142dffb93d168c7ac631a3b5eef6fc61b2f9eecf88 truffleruby-21.1.0-linux-amd64.tar.gz=010e9fb78cab12486641780392be0f284da08dfd955f3a0d1ef72adb52e1c9024b54dc880173645aea2af680b3670a6bb01409198b757239edda4cd9bf2b1e90 truffleruby-21.1.0-macos-amd64.tar.gz=96ef8481faef1bfa7f01bb4d396818ef6f0943d19c6a23dedb68f8346740b72bf06efc707bdd29158cf991cc7073c97f429a07b02c2a48050512b46369850058 truffleruby-21.2.0-linux-amd64.tar.gz=c20af04909a852cb676c90403d852fb367d56eac0f9cf8ba42caa4cad1013ba393cc4611e434614ad132b7b0ed61160aadd887001b08de0767cf58f5e149efe7 truffleruby-21.2.0-macos-amd64.tar.gz=0b8d9633fde53aad78f0baf52858cd5a5716f53ff21698baab17da4a625b4369b88dbd664193e3f0d1b40e64c88699ab4f04bbe40f54189a588c93678962a7be truffleruby-21.2.0.1-linux-amd64.tar.gz=15ceeee383114f974aed5f16c99131d56947e13cfe248b97e55d61263ccd51aa56fc3e0df215196ef7f80ccba9e7f19e7f261d7a91d54bde2d9992caba682d82 truffleruby-21.2.0.1-macos-amd64.tar.gz=8a8762d90c19db4f48433ce0e3f3339e290685d79c6ee9bb7d4359c741edfa6a7360ff65124433d964730ac25b2cc6d8b581191b0a51479f11c2a80031a6c1c8 truffleruby-21.3.0-linux-amd64.tar.gz=b0c07b1ea797de92447a81b350d460c125a2efaff3c290637c4bcf1c216b5abd11148cfb143ad397062a96f36beade8234d0785c42f58fceac0011f629a5220b truffleruby-21.3.0-macos-amd64.tar.gz=42e607fa52a534123989ad232691ede65aa1c615f39320d93aa8ab9c21924eea7bc0aa49aef1a540ec972e2b3dc775d22a99eca3e0c9bc450c525f9020fbb975 truffleruby-22.0.0.2-linux-amd64.tar.gz=2231a0cfd27238c34ea0bbad27ba387453e48f39032607cbb829b347ea6ac804df15eb3f84d50b09248782d6202284498e7bc9aaa2060f0ce81bb83a84d700ad truffleruby-22.0.0.2-macos-amd64.tar.gz=1d7ac44f0862ad23cf17a7bba73d23dfd4727aadd9a3aa9633361e9bcd19655d163e160eae9c8db8ec9892f8fbf82d7a38b1cd689475bf41609a828208098623 truffleruby-22.1.0-linux-amd64.tar.gz=c4c2f9bf4236118c8ea62c08bad89e1034ecdfa0c4815693961c4d2b1b30ca043fe958abfec9cf36a8638aa2e005e71fcc244ebffd9ce11eb68cf48bd98c29d3 truffleruby-22.1.0-macos-amd64.tar.gz=507004ade838e614955e23331845839be656aaeae7869ed3d989c10e6491775a12313ac9ef03e14945f20f5e76d46ce6f7bb860af68a627c48065399cea3c567 truffleruby-22.2.0-linux-amd64.tar.gz=37c09249ef387df3e0614f646abb444cb5b7b2751538ab0432e703abe92a81b82e0d15f89d5ad7cd58afe5f30d9a92dc8471d19f1c1ce10b50478ac74f247739 truffleruby-22.2.0-linux-aarch64.tar.gz=49a7cfb4c81980d9c7a1588ef9f76a9bfb759d4b1925ab11f230d99c15a62e162a08249d23cf5646e2d38ecc2005e27103f2e5d92b83b0a182a4e64319b70c0d truffleruby-22.2.0-macos-amd64.tar.gz=d4c206fb0a5e63c5b7f61f2e62de854e4d0817075ef9ded237d98cd821c286e88d7b150d140d9907a957209f39be96c7025560e3908c89aa337925d2fba690af truffleruby-22.2.0-macos-aarch64.tar.gz=a01c18803777a74717ad699b6ee51eb759d881fb436d24338b557c52d4a693079d7b55f108394ccad0dd69c974cb895f4a36854355e84fecb67e41bf9eb18514 truffleruby-22.3.0-linux-amd64.tar.gz=d53472ae892dadc81c6fe63a597ccfb67e133958431b11716db4d920c78fc86f7496e4b10322d041c900bed77d27e02850da20aa95b297d63a9de2e72cdf3c76 truffleruby-22.3.0-linux-aarch64.tar.gz=dab63d49db4722f0c174ce8b882413102520ff649182946ba332ef5ba0fc6b58913595539a20b59e460faab2fba36f762dc8eb66aa729d4a6bb90feb2a95f053 truffleruby-22.3.0-macos-amd64.tar.gz=15c91d25fd6fb1d9f3f2a0b36676da5c8a76d62be86cff463ebe6c7e6aed2d9b6de9062021ab1b9b29cfb7a92b5682c860939acd71d12dba7e4a6bf3964fef3d truffleruby-22.3.0-macos-aarch64.tar.gz=7c44d0dd07e4ecd84a92f6dd574dc185906121b8eb75f6fe097b9d4738aa30751664d70e9027e072eeaa1dffa05fe7bcfc06be0c2dc950142f60664baf5eac69 truffleruby-22.3.1-linux-amd64.tar.gz=f41d3bd22500b7291121368169f8558df4563c840a01b70ff7feea3593f0152d8d77d4437af362bad62f25b79bce1ce8ddaa1bd8172a2a7ef8b61cdb6e478c9e truffleruby-22.3.1-linux-aarch64.tar.gz=1ca5221f0dc5ae3e0bd9545be474e115b2e62737701df95c6ee6cdaae5d82815acbe6af961ff23afee64dc26e655c7786d4347e3694c140773f065534322ee59 truffleruby-22.3.1-macos-amd64.tar.gz=bae16cc04c6018703833121f4258c3f18fa5062309d0600458be3c51c838bc63976a026db0f28d23005df9b640ccad0a9cafc56610a5ca9c24951c66b62097d9 truffleruby-22.3.1-macos-aarch64.tar.gz=b56e230d8fbc95d19364e695aaf1e552238b02ace7056f636808a7d7510777cddfde572ace5238ea1e314351bdd1a053ab3912d0889f51f55c722797c83eaaee truffleruby-23.0.0-preview1-linux-amd64.tar.gz=d538412f12d5ce743c351acbaa483b8b85dd2cf84fe06b3e90ca21f3c2fc0465df9c1773b3515fe4296d599f45e9cbb935dc5a69fe45668321e5639d58608ef4 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=f10b5ac749b11f93c2469f2c8a713ad090cb653761ae0a3e1ba4c19b0c96bd61c5e8da74d8944f9487c2d327d268a188f2cb56028d2beaca2a7816e63123600b truffleruby-23.0.0-preview1-macos-amd64.tar.gz=cd9db49c4253bd66cad6f9ae111c83d3befd0102a7ccb72a2407d22dc576ba7f3a26a90cd479f26dee3565d2f893a2b7c8b549e2351336f35d2632e57966657c truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=28b77d9943cd1617e0445633a9fea8911cfa975f5c581192439cd0944d2a17c2b0558e3e4112588b5fc77b57c48d857ad68ac51fcb867250625ad85406d87acc truffleruby-23.0.0-linux-amd64.tar.gz=da702de2e8c994f2646a3de5b44824210dbd37129cd2f91c3bdd990a1b0d0b05dee4443ad0f6cf98fdb4e489c9f4cde64f3561baf486dc642d4981a1a1812925 truffleruby-23.0.0-linux-aarch64.tar.gz=808254a154adcfd1bbd6e22bcdafebb6169c6f8cfd1c55382d446bb66002384ee844dcd8b5f642703ef440f7566645d190081f45e04a7d8d59bf87571cb4430a truffleruby-23.0.0-macos-amd64.tar.gz=f775d57e63c606eef424a1115408ed8539ef47d6bea0125ad1de7ee4fd5971e96747cb7f5d22d91d2f004edbd6ed6b9b5bd014127dc1abe7821a3a987a72d9dc truffleruby-23.0.0-macos-aarch64.tar.gz=000069854458f81d97eefe14123fbb69937942825e77d35602d55fa279123808177a34f252aec9dcfa48b93feacbee81ae0f0e7043c2d8a9ace2a4bb61ab253f truffleruby-23.1.0-linux-amd64.tar.gz=1868799d989c51798cf07b5243457af7ae2436dd19805fd634c98b2f1885266b5c3ec81dde668c2e5a290e9028f6f9fd223d153489df6ffcc74d45240aa020ad truffleruby-23.1.0-linux-aarch64.tar.gz=2766621877996ad35fddb94f978feed531307e8abf601dcf863754c96782b8149c3ac512dfe6dd2bdef0fe0e8a968bdd77608c41020434aaef4e7250c09edd74 truffleruby-23.1.0-macos-amd64.tar.gz=06c5a1d6ad644fd81737f0a1fd24c1529f712abe2a4485ad597aca7c35ca2af898121bb5883552cf518e2afdcb4221c8ad013759b46a69e34249e7c5ebe2b170 truffleruby-23.1.0-macos-aarch64.tar.gz=496cacc5cf413a48b60184e097a962ab5d2236c539f07cc0a9a2d9ef57dfc911a26b125cc3ad9408f6170c6f93c7562f35729c8313be0301972be21c10097942 truffleruby-23.1.1-linux-amd64.tar.gz=dbca85e281bf2484371a0bbcc202ca700acc704304d966b9202cf3835e82f6eb502e43522355f4c9e5a743877d93f5609006fbba2c5e6343a89de130e5209f6a truffleruby-23.1.1-linux-aarch64.tar.gz=6a58842d79247d8a64c513d68db9d53ea5640c02f71a1bc45f103baaaca67bb224939ae5f21ef55daa9d9b9697404052d39a3c382768ca366ab7892b8bf1abbe truffleruby-23.1.1-macos-amd64.tar.gz=7cc6bc957b7ffa42e9fbfe2f6e3014bf1e7996f2754e9e74377078c2c7bc7ac8e10598f1e1452839fc5b9583c823a2a735731ca193a6af2814a02566cc4cd9e4 truffleruby-23.1.1-macos-aarch64.tar.gz=a85b8189ef8a280f6a27d4c1c93893f844266dbdc15b8c4988cdf581613a353508fae4872ac9380efcc47f36357e137861521712c00ce8548041762a8987a9b2 truffleruby-23.1.2-linux-amd64.tar.gz=6307fd71fb1431fb12346d1f13dee4b3afe53947e8a9c1f3e3aa0baae5f9fc9e1496ede0a7d86b169d912ffef9625af998b4e698dc57a2a649140150e3fae28a truffleruby-23.1.2-linux-aarch64.tar.gz=0f0c5e4aa4e9fbc9b9f91d2b3d3fbfe26e78c5bc5b369fc78dd54775a7582b8c084a64f02848058bec79387fd80b09a5a5594ecfb268635fe76e1f9d957c2e92 truffleruby-23.1.2-macos-amd64.tar.gz=648401a73b29c28862a1fa077c2e1bf8fff65015c8bc690ff883a00a3dfd99389ffdb71f39ad85a4f16c531470f4cc891ae51ec927a426b0fa05fa85c9c6a2f9 truffleruby-23.1.2-macos-aarch64.tar.gz=4ec88684c09aacfa1d8bfed9a17243579ededacecd869e98e12841710bae29ed6e5f080611e53fc217a853f730bb2a9cb3d47ef15443eb8a1ad76a120118c8a5 truffleruby-24.0.0-linux-amd64.tar.gz=3a59a4dc58ad03549d8e63db1485767757715fc9aec21b2b67b1440b13871a04541abeff9bc8201b3088e1865360b1667459e536d3cfb09687dbffca95deafeb truffleruby-24.0.0-linux-aarch64.tar.gz=50f3993b7362bb6e7da80f7327df3d079bb02f98b67012e2135005d77e61648e4f3268f767d8ca245ec5889ff934fbcccb94fd5ecbd55bb0cd9cca900fe10509 truffleruby-24.0.0-macos-amd64.tar.gz=9ec8bb340b15e29550448e123e3ab0f183edb9bbe7e052743cb2306cbd1956a5789c5a367c80c5e8d913dce2b804448dd6815e4d3421515166daf8db51d37c7d truffleruby-24.0.0-macos-aarch64.tar.gz=499f83bf65dcb6ecc92414a3550673e6a0baaddfe3ab13c0bd7aa1bdde1ae2a61d9d0ca8001c0d12688d9e09f98f9e2946a651220fe7d200bb0ec6f285394701 truffleruby-24.0.1-linux-amd64.tar.gz=62b4e8508eba8cdaac70e99ac9cb0b33a663b4195d79b2dad3d771ef538c6c41d1d91bb7bb07fbbafbcbbcaf17814ffaf6d6bdbafd474ba6a8ecdac30315a8c9 truffleruby-24.0.1-linux-aarch64.tar.gz=817d877848ea4bb55658ce34bbda52926be12426a8a5e1c4588bc0ec1896018b06dce176336b382f80a7c6d073d4331b20694a7797ee8fdf0177e973053bf929 truffleruby-24.0.1-macos-amd64.tar.gz=2ea65bea154aa38cce3f00f24fc9a4aab5e7478fafd070d0cc966878371c070d5a1776b7405e2c9e4cfa14e5c51219ed0fa988294eb4708690983b348886f439 truffleruby-24.0.1-macos-aarch64.tar.gz=bc1923e21768d34779c1bcd7850456a01ddc01acd1ccf20f4fb4a446fb847f8c51b1ff4a7c0cdc317ef8ce057ac24f18f25b778a02a6e2b185e0055d946ecaf2 truffleruby-24.0.2-linux-amd64.tar.gz=5d111beb862b618c4e6a7f8aea1d3d6476740513efdd59bf980a2b6d525a017f46fe02017b075962a4919a001b60bd9a070e69fedfa8a85533c0adbad2a8d86b truffleruby-24.0.2-linux-aarch64.tar.gz=8e3ba19df4e5509c4719bc3bb621f70ca6a0e683d48a296703649b88abd83a165e8a64ad2d7dc45394b6de0b214a95a395fa449f5393dd9e67deab9e149cf494 truffleruby-24.0.2-macos-amd64.tar.gz=06d3b5533c4e26aa1356e602c672efad99208aaee96110904216e16dcfb1d99a7535c3ef275f9a14635dd2f05110798b3c75d71199f6010f23c92c6990492cef truffleruby-24.0.2-macos-aarch64.tar.gz=ba36d3f1680112e6623b14a4bb902a5f65f11e9827f44462161b1c79ee344ca340566289aa1f841c1e213daef5608c159343cc203d07f41c2a55eaeb25db0987
rvm/rvm
f7e54f0c99a88abbb1a40c2020166aeff0274bba
Detect core count on ARM machines (#5498)
diff --git a/CHANGELOG.md b/CHANGELOG.md index 755485e..d810932 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,553 +1,554 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Use OpenSSL 3 for Ruby 3.2 and 3.3 [\#5480](https://github.com/rvm/rvm/pull/5480) * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) * Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) * Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) * Install `libncurses-dev` instead of `libncurses5-dev` on newer Debian and Ubuntu versions [\#5477](https://github.com/rvm/rvm/pull/5477) * Use `zlib-ng-compat` packages for Fedora 40+ [\#5479](https://github.com/rvm/rvm/pull/5479) +* Detect core count on ARM-based machines [\#5498](https://github.com/rvm/rvm/pull/5498) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) * 3.3.3 [\#5474](https://github.com/rvm/rvm/pull/5474) * 3.3.4 [\#5488](https://github.com/rvm/rvm/pull/5488) * 3.2.5 [\#5490](https://github.com/rvm/rvm/pull/5490) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) * 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1, 24.0.2 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.3.15.0 [\#5482](https://github.com/rvm/rvm/pull/5482) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) * 9.4.8.0 [\#5484](https://github.com/rvm/rvm/pull/5484) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) * 3.1.6, 3.2.5, 3.3.2, 3.3.3 and 3.3.4 [\#5491](https://github.com/rvm/rvm/pull/5491) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) #### Upgraded Ruby interpreters: * Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159), 2.5.0-preview1 [\#4204](https://github.com/rvm/rvm/pull/4204), 2.2.9, 2.3.6, 2.4.3 and 2.5.0-rc1 [\#4261](https://github.com/rvm/rvm/pull/4261), 2.5.0 [\#4265](https://github.com/rvm/rvm/pull/4265), 2.6.0-preview1 [\#4317](https://github.com/rvm/rvm/pull/4317), 2.2.10, 2.3.7, 2.4.4, 2.5.1 [\#4340](https://github.com/rvm/rvm/pull/4340) and 2.6.0-preview2[\#4395](https://github.com/rvm/rvm/pull/4395) * Add support for Rubinius 3.85-3.100 * Add support for JRuby 9.1.14.0 [\#4224](https://github.com/rvm/rvm/pull/4224), 9.1.15.0 [\#4258](https://github.com/rvm/rvm/pull/4258), 9.1.16.0 [\#4316](https://github.com/rvm/rvm/pull/4316), 9.1.17.0 [\#4366](https://github.com/rvm/rvm/pull/4366), 9.2.0.0 [\#4390](https://github.com/rvm/rvm/pull/4390) * Add support for mruby 1.4.0 [\#4286](https://github.com/rvm/rvm/pull/4286) * Add support for MagLev 1.1* and 1.2Alpha-1.2Alpha4 [\#4289](https://github.com/rvm/rvm/pull/4289) * Add support for RubyGems 2.6.14 [\#4205](https://github.com/rvm/rvm/pull/4205), 2.7.0-2.7.4 [\#4276](https://github.com/rvm/rvm/issues/4276) and 2.7.5-6 #### Binaries: * Ubuntu 16.04 x64 binaries for Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4362](https://github.com/rvm/rvm/issues/4362), 2.2.9, 2.3.6 and 2.4.3 [\#4259](https://github.com/rvm/rvm/issues/4259), 2.2.8, 2.3.5 and 2.4.2 [\#4161](https://github.com/rvm/rvm/issues/4161), 2.5.0 [\#4272](https://github.com/rvm/rvm/pull/4272) * Ubuntu 17.04 for Ruby 2.1.\*, 2.2.\* [\#4233](https://github.com/rvm/rvm/pull/4233) ## [1.29.3](https://github.com/rvm/rvm/releases/tag/1.29.3) 10 September 2017 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.2...1.29.3) diff --git a/scripts/functions/build_config b/scripts/functions/build_config index 95cb588..6152cc8 100755 --- a/scripts/functions/build_config +++ b/scripts/functions/build_config @@ -1,392 +1,404 @@ #!/usr/bin/env bash __rvm_setup_compile_environment() { \typeset __type \typeset -a __types __types=( setup movable_early system_early requirements movable parse_name system architectures gcc47plus bison flags_docs flags_shared_static flags_threads compatibility_flag ) for __type in "${__types[@]}" do rvm_debug "__rvm_setup_compile_environment_${__type} $1" __rvm_setup_compile_environment_${__type} "$1" || return $? done rvm_debug "found compiler: $( __rvm_found_compiler )" } __rvm_setup_compile_environment_setup() { __rvm_autolibs_get rvm_debug "rvm_autolibs_flag=${rvm_autolibs_flag}" __rvm_autolibs_translate || return $? [[ -n "${rvm_autolibs_flag_number:-}" ]] || return $? export initially_selected_compiler="$( __rvm_selected_compiler )" true } __rvm_setup_compile_environment_movable_early() { (( ${rvm_movable_flag:-0} > 0 )) || return 0 case "${_system_type}" in (BSD) rvm_error "It is not yet supported to build movable rubies on *BSD systems." return 3 ;; (Darwin) case "$1" in ruby-2*|ruby-3*|ruby-head*) true ;; (*) if (( ${rvm_force_flag:-0} > 0 )) then true # allow forcing installation of older rubies else rvm_error "Only MRI Ruby 2.0+ can be compiled movable with RVM on OSX, use '--force' if the binary will be moved to the same installation path." return 2 fi ;; esac [[ "${rvm_autolibs_flag_runner}" == "smf" ]] || { rvm_error "It is not yet supported to build movable rubies with '${rvm_autolibs_flag}', please install SMF and switch autolibs to it (make sure to follow any displayed instructions): curl -L https://get.smf.sh | sh rvm autolibs smf " return 3 } export rvm_static_flag=1 ;; (*) case "$1" in ruby-1.9.3*|ruby-2*|ruby-3*|ruby-head*) true ;; (*) rvm_error "Only MRI Ruby 1.9.3+ can be compiled movable with RVM" return 2 ;; esac ;; esac } __rvm_setup_compile_environment_system_early() { if is_a_function __rvm_setup_compile_environment_system_early_${_system_name} then __rvm_setup_compile_environment_system_early_${_system_name} "$@" || return $? fi } # # rvm_autolibs_flag # - 0 - disabled # - 1 - use libs, do not install # - 2 - use libs, fail if missing - default # - 3 - use libs, install if missing, fallback to 2 if brew not writable # - 4 - 3 + install package manager if not available # __rvm_setup_compile_environment_requirements() { (( ${rvm_autolibs_flag_number} > 0 )) || return 0 rvm_log "Checking requirements for ${rvm_autolibs_flag_runner}." if __rvm_requirements_run ${rvm_autolibs_flag_runner} "$@" then rvm_log "Requirements installation successful." else \typeset __status=$? [[ ${rvm_quiet_flag} == 1 ]] || rvm_error "Requirements installation failed with status: ${__status}." return ${__status} fi } __rvm_setup_compile_environment_parse_name() { case "${rvm_ruby_name:-}" in (clang) true ${CC:=clang} ;; esac } __rvm_setup_compile_environment_movable() { (( ${rvm_movable_flag:-0} > 0 )) || return 0 case "${_system_type}" in (Darwin) rvm_configure_flags+=( --enable-load-relative --with-static-linked-ext --with-out-ext=dl/win32,fiddle/win32,tk/tkutil,tk,win32ole,-test-/win32/dln,-test-/win32/fd_setsize ) rvm_patch_names+=( osx_static ) ;; (*) rvm_configure_flags+=( --enable-load-relative ) ;; esac rvm_configure_flags+=( --sysconfdir=/etc ) } __rvm_setup_compile_environment_bison() { (( ${rvm_autolibs_flag_number} > 1 )) || return 0 case "$1" in (ruby*|ree*|rbx*) __rvm_check_for_bison || { result=$? rvm_error "Bison required but not found. Halting." return $result } ;; esac } __rvm_setup_compile_environment_architectures_osx_map() { \typeset _architecture \typeset _prefix="${1:-}" \typeset -a _architectures _architectures=() for _architecture in "${rvm_architectures[@]}" do case "${_architecture}" in (32) _architecture="i386" ;; (64) _architecture="x86_64" ;; esac _architectures+=( "${_prefix}${_architecture}" ) done rvm_architectures=( "${_architectures[@]}" ) } __rvm_setup_compile_environment_architectures_ruby_osx() { \typeset -a _flags _flags=( MACOSX_DEPLOYMENT_TARGET="$( sw_vers -productVersion | __rvm_awk -F'.' '{print $1"."$2}' )" CFLAGS="$1 -g -Os -pipe -no-cpp-precomp" CCFLAGS="$1 -g -Os -pipe" CXXFLAGS="$1 -g -Os -pipe" LDFLAGS="$1 -bind_at_load" LDSHARED="cc $1 -dynamiclib -undefined suppress -flat_namespace" ) __rvm_update_configure_env "${_flags[@]}" __rvm_array_contains "*osx-arch-fix*" "${rvm_patch_names[@]}" || rvm_patch_names+=( osx-arch-fix ) } __rvm_setup_compile_environment_architectures_OSX() { case "$1" in ruby-1.9*|ruby-2*|ruby-head*) # Ruby 1.9+ supports the easy way __rvm_setup_compile_environment_architectures_osx_map rvm_configure_flags+=( --with-arch="${rvm_architectures[*]}" ) ;; ruby*|ree*) __rvm_setup_compile_environment_architectures_osx_map "-arch " __rvm_setup_compile_environment_architectures_ruby_osx "${rvm_architectures[*]}" ;; (*) __rvm_setup_compile_environment_architectures_osx_map "-arch " __rvm_update_configure_env_arch "${rvm_architectures[*]}" rvm_configure_flags+=( --disable-dependency-tracking ) ;; esac } __rvm_setup_compile_environment_architectures_Other() { (( ${#rvm_architectures[@]} == 1 )) || { rvm_error "Only OSX supports fat binaries, any other system supports only single architecture, please be more specific." return 1 } \typeset _architecture case "${rvm_architectures[*]}" in (i386) _architecture=( -m32 ) ;; (x86_64) _architecture=( -m64 ) ;; (32|64) _architecture=( -m${rvm_architectures[*]} ) ;; (*) _architecture=( -march=${rvm_architectures[*]} ) ;; esac __rvm_update_configure_env_arch ${_architecture} # Ruby 2+ supports also platform setting needed for different os/kernel architectures, see #2928 case "$1" in ruby-2*|ruby-head*) case "${rvm_architectures[*]}" in (32|i386) rvm_configure_flags+=( --with-arch="i686" ) ;; (64|x86_64) rvm_configure_flags+=( --with-arch="x86_64" ) ;; esac ;; esac } __rvm_setup_compile_environment_architectures() { rvm_debug "rvm_architectures(${#rvm_architectures[@]}):${rvm_architectures[*]}." (( ${#rvm_architectures[@]} > 0 )) || return 0 if is_a_function __rvm_setup_compile_environment_architectures_${_system_name} then __rvm_setup_compile_environment_architectures_${_system_name} "$@" || return $? else __rvm_setup_compile_environment_architectures_Other "$@" || return $? fi } __rvm_setup_compile_environment_gcc47plus() { __rvm_compiler_version_or_higher "4.7" || return 0 __rvm_string_match "$1" "ruby-1.8.*" "ree*" || return 0 # -g -O2 from 1.8.7-p370 is not enough, need all the flags to fix it __rvm_update_configure_env CFLAGS="-O2 -fno-tree-dce -fno-optimize-sibling-calls" } __rvm_setup_compile_environment_system() { if is_a_function __rvm_setup_compile_environment_system_${_system_name} then __rvm_setup_compile_environment_system_${_system_name} "$@" || return $? elif is_a_function __rvm_setup_compile_environment_system_${_system_type} then __rvm_setup_compile_environment_system_${_system_type} "$@" || return $? fi } __rvm_setup_compile_environment_flags_docs() { # disable docs, see https://github.com/rvm/rvm/issues/2656 # enable docs on OSX by default (that's development system) # if [[ "Darwin" == "${_system_type}" ]] # then : rvm_docs_flag=${rvm_docs_flag:=1} # fi # handle docs flag, docs are enabled by default, lets disable this (( ${rvm_docs_flag:-0} == 1 )) || { case "$1" in (ruby*|ree*) rvm_configure_flags+=( --disable-install-doc ) ;; esac } true # OSX --trace FIX } __rvm_setup_compile_environment_flags_static_darwin() { if [[ "${_system_type}" == "Darwin" ]] then __rvm_update_configure_env CFLAGS="-fPIC -mmacosx-version-min=10.7" LDFLAGS="-fPIC" "$@" rvm_configure_flags+=( --with-arch=x86_64 ) fi } __rvm_setup_compile_environment_flags_shared_static() { if (( ${rvm_static_flag:-0} == 1 )) then case "$1" in (openssl*) rvm_configure_flags+=( no-shared ) __rvm_setup_compile_environment_flags_static_darwin ;; (ncurses*) rvm_configure_flags+=( --without-shared ) __rvm_setup_compile_environment_flags_static_darwin ;; (rbx*|rubinius*|jruby*) true # no flag yet for rbx, does not apply to jruby! ;; (*) rvm_configure_flags+=( --disable-shared ) __rvm_setup_compile_environment_flags_static_darwin LDFLAGS="-Bstatic -lz" ;; esac else case "$1" in (openssl*) rvm_configure_flags+=( shared ) ;; (readline*) rvm_configure_flags+=( --disable-static --enable-shared ) ;; (ncurses*) rvm_configure_flags+=( --with-shared ) ;; (rbx*|rubinius*|jruby*) true # no flag yet for rbx, does not apply to jruby! ;; (*) [[ "${rvm_configure_flags[*]}" == *--disable-shared* ]] || rvm_configure_flags+=( --enable-shared ) ;; esac fi true # OSX --trace FIX } __rvm_detect_max_threads() { case "${_system_name}" in (OSX|Darwin|FreeBSD|DragonFly) if __rvm_which sysctl >/dev/null then \command \sysctl -n hw.ncpu elif [[ -x /usr/sbin/sysctl ]] then /usr/sbin/sysctl -n hw.ncpu elif [[ -x /sbin/sysctl ]] then /sbin/sysctl -n hw.ncpu else echo 1 fi ;; (*) - \command \cat /proc/cpuinfo 2>/dev/null | (\command \grep vendor_id || \command \echo 'one';) | \command \wc -l + if + __rvm_which nproc >/dev/null + then + nproc + elif + __rvm_which lscpu >/dev/null + then + \command \lscpu | \command \grep "^CPU(s):" | \command \awk '{print $2}' + else + # Fallback attempts to parse /proc/cpuinfo + \command \cat /proc/cpuinfo 2>/dev/null | (\command \grep processor || \command \echo '1';) | \command \wc -l + fi ;; esac } __rvm_setup_compile_environment_flags_threads() { case "$1" in (openssl*) # Don't use -j option for make OpenSSL __rvm_remove_from_array rvm_make_flags "-j*" "${rvm_make_flags[@]}" rvm_make_flags+=( -j1 ) ;; (*) if [[ "${_system_name}" == "FreeBSD" || "${_system_name}" == "DragonFly" ]] then rvm_make_flags+=( -B ) fi if [[ " ${rvm_make_flags[*]}" == *" -j"* ]] then rvm_warn "Found user configured '-j' flag in 'rvm_make_flags', please note that RVM can detect number of CPU threads and set the '-j' flag automatically if you do not set it." else rvm_make_flags+=( -j$(__rvm_detect_max_threads) ) fi ;; esac } __rvm_setup_compile_environment_compatibility_flag() { case "$1" in (jruby*) for mode in 2.1 2.0 1.9 1.8 do eval " if [[ \${rvm_${mode//./}_flag:-0} == 1 ]] then rvm_configure_flags+=( -Djruby.default.ruby.version=${mode} ) break fi " done ;; esac } +
rvm/rvm
059cd0c4aaabb524804f843701bad4bc364f4b58
Add support for Ruby 3.2.5 (#5490)
diff --git a/CHANGELOG.md b/CHANGELOG.md index 5aaeadb..755485e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,580 +1,581 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Use OpenSSL 3 for Ruby 3.2 and 3.3 [\#5480](https://github.com/rvm/rvm/pull/5480) * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) * Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) * Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) * Install `libncurses-dev` instead of `libncurses5-dev` on newer Debian and Ubuntu versions [\#5477](https://github.com/rvm/rvm/pull/5477) * Use `zlib-ng-compat` packages for Fedora 40+ [\#5479](https://github.com/rvm/rvm/pull/5479) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) * 3.3.3 [\#5474](https://github.com/rvm/rvm/pull/5474) * 3.3.4 [\#5488](https://github.com/rvm/rvm/pull/5488) +* 3.2.5 [\#5490](https://github.com/rvm/rvm/pull/5490) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) * 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1, 24.0.2 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.3.15.0 [\#5482](https://github.com/rvm/rvm/pull/5482) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) * 9.4.8.0 [\#5484](https://github.com/rvm/rvm/pull/5484) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) * 3.1.6, 3.2.5, 3.3.2, 3.3.3 and 3.3.4 [\#5491](https://github.com/rvm/rvm/pull/5491) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) #### Upgraded Ruby interpreters: * Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159), 2.5.0-preview1 [\#4204](https://github.com/rvm/rvm/pull/4204), 2.2.9, 2.3.6, 2.4.3 and 2.5.0-rc1 [\#4261](https://github.com/rvm/rvm/pull/4261), 2.5.0 [\#4265](https://github.com/rvm/rvm/pull/4265), 2.6.0-preview1 [\#4317](https://github.com/rvm/rvm/pull/4317), 2.2.10, 2.3.7, 2.4.4, 2.5.1 [\#4340](https://github.com/rvm/rvm/pull/4340) and 2.6.0-preview2[\#4395](https://github.com/rvm/rvm/pull/4395) * Add support for Rubinius 3.85-3.100 * Add support for JRuby 9.1.14.0 [\#4224](https://github.com/rvm/rvm/pull/4224), 9.1.15.0 [\#4258](https://github.com/rvm/rvm/pull/4258), 9.1.16.0 [\#4316](https://github.com/rvm/rvm/pull/4316), 9.1.17.0 [\#4366](https://github.com/rvm/rvm/pull/4366), 9.2.0.0 [\#4390](https://github.com/rvm/rvm/pull/4390) * Add support for mruby 1.4.0 [\#4286](https://github.com/rvm/rvm/pull/4286) * Add support for MagLev 1.1* and 1.2Alpha-1.2Alpha4 [\#4289](https://github.com/rvm/rvm/pull/4289) * Add support for RubyGems 2.6.14 [\#4205](https://github.com/rvm/rvm/pull/4205), 2.7.0-2.7.4 [\#4276](https://github.com/rvm/rvm/issues/4276) and 2.7.5-6 #### Binaries: * Ubuntu 16.04 x64 binaries for Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4362](https://github.com/rvm/rvm/issues/4362), 2.2.9, 2.3.6 and 2.4.3 [\#4259](https://github.com/rvm/rvm/issues/4259), 2.2.8, 2.3.5 and 2.4.2 [\#4161](https://github.com/rvm/rvm/issues/4161), 2.5.0 [\#4272](https://github.com/rvm/rvm/pull/4272) * Ubuntu 17.04 for Ruby 2.1.\*, 2.2.\* [\#4233](https://github.com/rvm/rvm/pull/4233) ## [1.29.3](https://github.com/rvm/rvm/releases/tag/1.29.3) 10 September 2017 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.2...1.29.3) #### New features: * Add RVM commands missing in bash shell completion [\#4078](https://github.com/rvm/rvm/pull/4078) * Railsexpress patches for 2.3.4, 2.3-head [\#4084](https://github.com/rvm/rvm/pull/4084), 2.2.5 and 2.2.6 [\#4153](https://github.com/rvm/rvm/pull/4153) * Update `gem-wrappers` to 1.3.0: Show warnings when the target binary is missing or is not executable [gem-wrappers \#9](https://github.com/rvm/gem-wrappers/issues/9) * Detect Zorin OS as Ubuntu [\#4140](https://github.com/rvm/rvm/issues/4140) #### Bug fixes: * Infinite loop in `gemset_create` [\#4102](https://github.com/rvm/rvm/issues/4102) * Command not found `__rvm_remote_version` error [\#4085](https://github.com/rvm/rvm/pull/4085) * Fix path of version script in `environment` [\#4117](https://github.com/rvm/rvm/pull/4117) * Define `cd()`, `pushd()` and `popd()` properly when using zsh [\#4132](https://github.com/rvm/rvm/pull/4132) * Update gem-wrappers to 1.3.1: Avoid warnings for missing ruby binaries [\#4104](https://github.com/rvm/rvm/issues/4104) * Handles :engine=> and :engine_version=> in Gemfile * Makes $rvm_ruby_string is not installed searchable by adding a fixed keyword * Correctly quotes suggested install command * Fix path to version script in rvm-installer [\#4134](https://github.com/rvm/rvm/pull/4134) * Fix rvm autolibs status, fix [\#4123](https://github.com/rvm/rvm/issues/4123) * Ruby 2.3.x and older are not compatible with OpenSSL 1.1.x on Arch [\#4006](https://github.com/rvm/rvm/issues/4006) * Allow comments after ruby directive in Gemfile [\#4056](https://github.com/rvm/rvm/issues/4056) * Ruby 2.3/4 compilation fix for GCC 7 [\#4080](https://github.com/rvm/rvm/issues/4080) [\#4115](https://github.com/rvm/rvm/issues/4115) * Add warning for sudo users [\#4009](https://github.com/rvm/rvm/issues/4009) * Allows running RVM shell function in Bash with `set -o nounset` [\#4013](https://github.com/rvm/rvm/issues/4013) * Ensure `rvm_hooks_path` is set [\#3902](https://github.com/rvm/rvm/issues/3902) * Allow building static ruby with `--disbale-shared` [\#4091](https://github.com/rvm/rvm/issues/4091) * Restore detection of `gpg` command for veryfication of signatures [\#4059](https://github.com/rvm/rvm/issues/4059) * Update `gem-wrappers` to 1.3.2: Avoid nested chdir warnings [gem-wrappers \#11](https://github.com/rvm/gem-wrappers/pull/11) * Fix RVM folder cleanup during installation [\#4333](https://github.com/rvm/rvm/issues/4333) * Fix found project file reject reasons for bash -e [\#4314](https://github.com/rvm/rvm/pull/4314) diff --git a/config/known b/config/known index 299582f..3de29d4 100644 --- a/config/known +++ b/config/known @@ -1,81 +1,81 @@ # MRI Rubies [ruby-]1.8.6[-p420] [ruby-]1.8.7[-head] # security released on head [ruby-]1.9.1[-p431] [ruby-]1.9.2[-p330] [ruby-]1.9.3[-p551] [ruby-]2.0.0[-p648] [ruby-]2.1[.10] [ruby-]2.2[.10] [ruby-]2.3[.8] [ruby-]2.4[.10] [ruby-]2.5[.9] [ruby-]2.6[.10] [ruby-]2.7[.8] [ruby-]3.0[.7] [ruby-]3.1[.5] -[ruby-]3.2[.4] +[ruby-]3.2[.5] [ruby-]3[.3.4] [ruby-]3.4[.0-preview1] ruby-head # for forks use: rvm install ruby-head-<name> --url https://github.com/github/ruby.git --branch 2.2 # JRuby jruby-1.6[.8] jruby-1.7[.27] jruby-9.1[.17.0] jruby-9.2[.21.0] jruby-9.3[.15.0] jruby[-9.4.8.0] jruby-head # Rubinius rbx-1[.4.3] rbx-2.3[.0] rbx-2.4[.1] rbx-2[.5.8] rbx-3[.107] rbx-4[.20] rbx-5[.0] rbx-head # TruffleRuby truffleruby[-24.0.2] # Opal opal # Minimalistic ruby implementation - ISO 30170:2012 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1[.4.1] mruby-2.0.1 mruby-2[.1.1] mruby[-head] # Ruby Enterprise Edition ree-1.8.6 ree[-1.8.7][-2012.02] # Topaz topaz # MagLev maglev-1.0.0 maglev-1.1[RC1] maglev[-1.2Alpha4] maglev-head # Mac OS X Snow Leopard Or Newer macruby-0.10 macruby-0.11 macruby[-0.12] macruby-nightly macruby-head # IronRuby ironruby[-1.1.3] ironruby-head diff --git a/config/known_strings b/config/known_strings index 07b54d3..0d6e3a3 100644 --- a/config/known_strings +++ b/config/known_strings @@ -1,564 +1,565 @@ ironruby-1.0 ironruby-1.1.3 jruby-0.9.0 jruby-0.9.1 jruby-0.9.2 jruby-0.9.8 jruby-0.9.9 jruby-1.0.0RC1 jruby-1.0.0RC2 jruby-1.0.0RC3 jruby-1.0 jruby-1.0.1 jruby-1.0.2 jruby-1.0.3 jruby-1.1b1 jruby-1.1RC1 jruby-1.1RC2 jruby-1.1RC3 jruby-1.1 jruby-1.1.1 jruby-1.1.2 jruby-1.1.3 jruby-1.1.4 jruby-1.1.5 jruby-1.1.6RC1 jruby-1.1.6 jruby-1.2.0RC1 jruby-1.2.0RC2 jruby-1.2.0 jruby-1.3.0RC1 jruby-1.3.0RC2 jruby-1.3.0 jruby-1.3.1 jruby-1.4.0RC1 jruby-1.4.0RC2 jruby-1.4.0RC3 jruby-1.4.0 jruby-1.4.1 jruby-1.5.0.RC1 jruby-1.5.0.RC2 jruby-1.5.0.RC3 jruby-1.5.0 jruby-1.5.1 jruby-1.5.2 jruby-1.5.3 jruby-1.5.4 jruby-1.5.5 jruby-1.5.6 jruby-1.6.0.RC1 jruby-1.6.0.RC2 jruby-1.6.0.RC3 jruby-1.6.0 jruby-1.6.1 jruby-1.6.2 jruby-1.6.3 jruby-1.6.4 jruby-1.6.5 jruby-1.6.5.1 jruby-1.6.7 jruby-1.6.7.2 jruby-1.6.8 jruby-1.7.0.preview1 jruby-1.7.0.preview2 jruby-1.7.0.RC1 jruby-1.7.0.RC2 jruby-1.7.0 jruby-1.7.1 jruby-1.7.2 jruby-1.7.3 jruby-1.7.4 jruby-1.7.5 jruby-1.7.6 jruby-1.7.7 jruby-1.7.8 jruby-1.7.9 jruby-1.7.10 jruby-1.7.11 jruby-1.7.12 jruby-1.7.13 jruby-1.7.14 jruby-1.7.15 jruby-1.7.16 jruby-1.7.16.1 jruby-1.7.16.2 jruby-1.7.17 jruby-1.7.18 jruby-1.7.19 jruby-1.7.20 jruby-1.7.20.1 jruby-1.7.21 jruby-1.7.22 jruby-1.7.23 jruby-1.7.24 jruby-1.7.25 jruby-1.7.26 jruby-1.7.27 jruby-9.0.0.0.pre1 jruby-9.0.0.0.pre2 jruby-9.0.0.0.rc1 jruby-9.0.0.0.rc2 jruby-9.0.0.0 jruby-9.0.1.0 jruby-9.0.2.0 jruby-9.0.3.0 jruby-9.0.4.0 jruby-9.0.5.0 jruby-9.1.0.0 jruby-9.1.1.0 jruby-9.1.2.0 jruby-9.1.3.0 jruby-9.1.4.0 jruby-9.1.5.0 jruby-9.1.6.0 jruby-9.1.7.0 jruby-9.1.8.0 jruby-9.1.9.0 jruby-9.1.10.0 jruby-9.1.11.0 jruby-9.1.12.0 jruby-9.1.13.0 jruby-9.1.14.0 jruby-9.1.15.0 jruby-9.1.16.0 jruby-9.1.17.0 jruby-9.2.0.0 jruby-9.2.1.0 jruby-9.2.2.0 jruby-9.2.3.0 jruby-9.2.4.0 jruby-9.2.4.1 jruby-9.2.5.0 jruby-9.2.6.0 jruby-9.2.7.0 jruby-9.2.8.0 jruby-9.2.9.0 jruby-9.2.10.0 jruby-9.2.11.0 jruby-9.2.11.1 jruby-9.2.12.0 jruby-9.2.13.0 jruby-9.2.14.0 jruby-9.2.15.0 jruby-9.2.16.0 jruby-9.2.17.0 jruby-9.2.18.0 jruby-9.2.19.0 jruby-9.2.20.0 jruby-9.2.20.1 jruby-9.2.21.0 jruby-9.3.0.0 jruby-9.3.1.0 jruby-9.3.2.0 jruby-9.3.3.0 jruby-9.3.4.0 jruby-9.3.6.0 jruby-9.3.7.0 jruby-9.3.8.0 jruby-9.3.9.0 jruby-9.3.10.0 jruby-9.3.11.0 jruby-9.3.13.0 jruby-9.3.14.0 jruby-9.3.15.0 jruby-9.4.0.0 jruby-9.4.1.0 jruby-9.4.2.0 jruby-9.4.3.0 jruby-9.4.4.0 jruby-9.4.5.0 jruby-9.4.6.0 jruby-9.4.7.0 jruby-9.4.8.0 macruby-0.12 maglev-1.0.0 maglev-1.1beta maglev-1.1beta2 maglev-1.1RC1 maglev-1.2Alpha maglev-1.2Alpha2 maglev-1.2Alpha3 maglev-1.2Alpha4 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1.4.0 mruby-1.4.1 mruby-2.0.0 mruby-2.0.1 mruby-2.1.0-rc mruby-2.1.0 mruby-2.1.1-rc mruby-2.1.1-rc2 mruby-2.1.1 rbx-1.0.0-20100514 rbx-1.0.1-20100603 rbx-1.1.0-20100923 rbx-1.1.1-20101116 rbx-1.2.0-20101221 rbx-1.2.1-20110215 rbx-1.2.2-20110222 rbx-1.2.3-20110315 rbx-1.2.4-20110705 rbx-1.3.2 rbx-1.3.3 rbx-1.4.1 rbx-1.4.3 rbx-2.0.0 rbx-2.1.0 rbx-2.1.1 rbx-2.2.0 rbx-2.2.2 rbx-2.2.3 rbx-2.2.4 rbx-2.2.5 rbx-2.2.6 rbx-2.2.7 rbx-2.2.8 rbx-2.2.9 rbx-2.2.10 rbx-2.3.0 rbx-2.4.0 rbx-2.4.1 rbx-2.5.0 rbx-2.5.1 rbx-2.5.2 rbx-2.5.3 rbx-2.5.4 rbx-2.5.5 rbx-2.5.6 rbx-2.5.7 rbx-2.5.8 rbx-3.70 rbx-3.71 rbx-3.72 rbx-3.73 rbx-3.74 rbx-3.75 rbx-3.76 rbx-3.77 rbx-3.78 rbx-3.79 rbx-3.80 rbx-3.81 rbx-3.82 rbx-3.83 rbx-3.84 rbx-3.85 rbx-3.86 rbx-3.87 rbx-3.88 rbx-3.89 rbx-3.90 rbx-3.91 rbx-3.92 rbx-3.93 rbx-3.94 rbx-3.95 rbx-3.96 rbx-3.97 rbx-3.98 rbx-3.99 rbx-3.100 rbx-3.101 rbx-3.102 rbx-3.103 rbx-3.104 rbx-3.105 rbx-3.106 rbx-3.107 rbx-4.0 rbx-4.1 rbx-4.2 rbx-4.3 rbx-4.4 rbx-4.5 rbx-4.6 rbx-4.7 rbx-4.8 rbx-4.9 rbx-4.10 rbx-4.11 rbx-4.12 rbx-4.13 rbx-4.14 rbx-4.15 rbx-4.16 rbx-4.17 rbx-4.18 rbx-4.19 rbx-4.20 rbx-5.0 ree-1.8.6-20080507 ree-1.8.6-20080621 ree-1.8.6-20080623 ree-1.8.6-20080624 ree-1.8.6-20080709 ree-1.8.6-20080810 ree-1.8.6-20081205 ree-1.8.6-20081215 ree-1.8.6-20090113 ree-1.8.6-20090201 ree-1.8.6-20090421 ree-1.8.6-20090520 ree-1.8.6-20090610 ree-1.8.6-20090928 ree-1.8.7-2009.10 ree-1.8.7-2010.01 ree-1.8.7-2010.02 ree-1.8.7-2011.01 ree-1.8.7-2011.02 ree-1.8.7-2011.03 ree-1.8.7-2011.12 ree-1.8.7-2012.02 ruby-1.8.5-p115 ruby-1.8.5-p231 ruby-1.8.6-p286 ruby-1.8.6-p287 ruby-1.8.6-p369 ruby-1.8.6-p383 ruby-1.8.6-p398 ruby-1.8.6-p399 ruby-1.8.6-p420 ruby-1.8.7-p160 ruby-1.8.7-p174 ruby-1.8.7-p248 ruby-1.8.7-p249 ruby-1.8.7-p299 ruby-1.8.7-p302 ruby-1.8.7-p330 ruby-1.8.7-p334 ruby-1.8.7-p352 ruby-1.8.7-p357 ruby-1.8.7-p358 ruby-1.8.7-p370 ruby-1.8.7-p371 ruby-1.8.7-p374 ruby-1.9.0 ruby-1.9.1-p129 ruby-1.9.1-p243 ruby-1.9.1-p376 ruby-1.9.1-p378 ruby-1.9.1-p429 ruby-1.9.1-p431 ruby-1.9.2-p0 ruby-1.9.2-p136 ruby-1.9.2-p180 ruby-1.9.2-p290 ruby-1.9.2-p318 ruby-1.9.2-p320 ruby-1.9.2-p330 ruby-1.9.3-preview1 ruby-1.9.3-rc1 ruby-1.9.3-p0 ruby-1.9.3-p125 ruby-1.9.3-p194 ruby-1.9.3-p286 ruby-1.9.3-p327 ruby-1.9.3-p362 ruby-1.9.3-p374 ruby-1.9.3-p385 ruby-1.9.3-p392 ruby-1.9.3-p429 ruby-1.9.3-p448 ruby-1.9.3-p484 ruby-1.9.3-p545 ruby-1.9.3-p547 ruby-1.9.3-p550 ruby-1.9.3-p551 ruby-2.0.0-preview1 ruby-2.0.0-preview2 ruby-2.0.0-rc1 ruby-2.0.0-rc2 ruby-2.0.0-p0 ruby-2.0.0-p195 ruby-2.0.0-p247 ruby-2.0.0-p353 ruby-2.0.0-p451 ruby-2.0.0-p481 ruby-2.0.0-p576 ruby-2.0.0-p594 ruby-2.0.0-p598 ruby-2.0.0-p643 ruby-2.0.0-p645 ruby-2.0.0-p647 ruby-2.0.0-p648 ruby-2.1.0-preview1 ruby-2.1.0-preview2 ruby-2.1.0-rc1 ruby-2.1.0 ruby-2.1.1 ruby-2.1.2 ruby-2.1.3 ruby-2.1.4 ruby-2.1.5 ruby-2.1.6 ruby-2.1.7 ruby-2.1.8 ruby-2.1.9 ruby-2.1.10 ruby-2.2.0-preview1 ruby-2.2.0-preview2 ruby-2.2.0-rc1 ruby-2.2.0 ruby-2.2.1 ruby-2.2.2 ruby-2.2.3 ruby-2.2.4 ruby-2.2.5 ruby-2.2.6 ruby-2.2.7 ruby-2.2.8 ruby-2.2.9 ruby-2.2.10 ruby-2.3.0-preview1 ruby-2.3.0-preview2 ruby-2.3.0 ruby-2.3.1 ruby-2.3.2 ruby-2.3.3 ruby-2.3.4 ruby-2.3.5 ruby-2.3.6 ruby-2.3.7 ruby-2.3.8 ruby-2.4.0-preview1 ruby-2.4.0-preview2 ruby-2.4.0-preview3 ruby-2.4.0-rc1 ruby-2.4.0 ruby-2.4.1 ruby-2.4.2 ruby-2.4.3 ruby-2.4.4 ruby-2.4.5 ruby-2.4.6 ruby-2.4.7 ruby-2.4.8 ruby-2.4.9 ruby-2.4.10 ruby-2.5.0-preview1 ruby-2.5.0-rc1 ruby-2.5.0 ruby-2.5.1 ruby-2.5.2 ruby-2.5.3 ruby-2.5.4 ruby-2.5.5 ruby-2.5.6 ruby-2.5.7 ruby-2.5.8 ruby-2.5.9 ruby-2.6.0-preview1 ruby-2.6.0-preview2 ruby-2.6.0-preview3 ruby-2.6.0-rc1 ruby-2.6.0-rc2 ruby-2.6.0 ruby-2.6.1 ruby-2.6.2 ruby-2.6.3 ruby-2.6.4 ruby-2.6.5 ruby-2.6.6 ruby-2.6.7 ruby-2.6.8 ruby-2.6.9 ruby-2.6.10 ruby-2.7.0-preview1 ruby-2.7.0-preview2 ruby-2.7.0-preview3 ruby-2.7.0-rc1 ruby-2.7.0-rc2 ruby-2.7.0 ruby-2.7.1 ruby-2.7.2 ruby-2.7.3 ruby-2.7.4 ruby-2.7.5 ruby-2.7.6 ruby-2.7.7 ruby-2.7.8 ruby-3.0.0-preview1 ruby-3.0.0-preview2 ruby-3.0.0-rc1 ruby-3.0.0 ruby-3.0.1 ruby-3.0.2 ruby-3.0.3 ruby-3.0.4 ruby-3.0.5 ruby-3.0.6 ruby-3.0.7 ruby-3.1.0-preview1 ruby-3.1.0 ruby-3.1.1 ruby-3.1.2 ruby-3.1.3 ruby-3.1.4 ruby-3.1.5 ruby-3.2.0-preview1 ruby-3.2.0-preview2 ruby-3.2.0-preview3 ruby-3.2.0-rc1 ruby-3.2.0 ruby-3.2.1 ruby-3.2.2 ruby-3.2.3 ruby-3.2.4 +ruby-3.2.5 ruby-3.3.0-preview1 ruby-3.3.0-preview2 ruby-3.3.0-preview3 ruby-3.3.0 ruby-3.3.1 ruby-3.3.2 ruby-3.3.3 ruby-3.3.4 ruby-3.4.0-preview1 truffleruby-1.0.0-rc2 truffleruby-1.0.0-rc3 truffleruby-1.0.0-rc5 truffleruby-1.0.0-rc6 truffleruby-1.0.0-rc7 truffleruby-1.0.0-rc8 truffleruby-1.0.0-rc9 truffleruby-1.0.0-rc10 truffleruby-1.0.0-rc11 truffleruby-1.0.0-rc12 truffleruby-1.0.0-rc13 truffleruby-1.0.0-rc14 truffleruby-1.0.0-rc15 truffleruby-1.0.0-rc16 truffleruby-19.0.0 truffleruby-19.0.2 truffleruby-19.1.0 truffleruby-19.1.1 truffleruby-19.2.0 truffleruby-19.2.0.1 truffleruby-19.2.1 truffleruby-19.3.0 truffleruby-19.3.0.2 truffleruby-19.3.1 truffleruby-20.0.0 truffleruby-20.1.0 truffleruby-20.2.0 truffleruby-20.3.0 truffleruby-21.0.0 truffleruby-21.1.0 truffleruby-21.2.0 truffleruby-21.2.0.1 truffleruby-21.3.0 truffleruby-22.0.0.2 truffleruby-22.1.0 truffleruby-22.2.0 truffleruby-22.3.0 truffleruby-22.3.1 truffleruby-23.0.0-preview1 truffleruby-23.0.0 truffleruby-23.1.0 truffleruby-23.1.1 truffleruby-23.1.2 truffleruby-24.0.0 truffleruby-24.0.1 truffleruby-24.0.2 diff --git a/config/md5 b/config/md5 index 5bb4eea..d48f9e6 100644 --- a/config/md5 +++ b/config/md5 @@ -1271,768 +1271,769 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.10.ta https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.0.tar.bz2=c66bd4ed120999159fba088549c755cf https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.1.tar.bz2=5a8c6a0955be75e5d461624b596a08e2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.2.tar.bz2=0071aeae2ad582f89c4704531d0e7a5d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.3.tar.bz2=5da9cf19b005948398f3541a1ded7105 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.4.tar.bz2=a27a413146d903d258fe9fc907e60c1a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.5.tar.bz2=77794ae2fb09dca79bfb636198ccaaed https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.6.tar.bz2=565f3c0dbc3211c6f86ebcb60cbd5de7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.7.tar.bz2=5cc60a18ac4cca5322994c6d19753846 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.8.tar.bz2=45b547a987088761a88143e5fabef13e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.9.tar.bz2=e993696c73e6be0017d90ccdddbcc644 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.0.tar.bz2=032a73d5182d84cbbf20b6e7e310c7c2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.1.tar.bz2=07c61bc0c9e09fc87808f62985cbff25 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.2.tar.bz2=62745ec761a45826841002e72cfca795 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.3.tar.bz2=538383cc35e5710a2175f36416ca3b7c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.4.tar.bz2=8a17255fa833fe3ff9c0275db79bfbff https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar.bz2=66dc3fdf49b1371fd6d362f3ea9d019b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=873b63cc2e4abbb6ec5126ab07ce429a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=84658482a83ee3a4c80d145d0bd7ccb8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=d3af42a4fd701e0710d5f6a16e6bb9a3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c5f56b0149ab787d89c69056eb45e483 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=13f1011cc048aef7199ae8f14bc2ac62 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=fba1bf0b819f52561deab198fd36743d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=3ec8f383026889e2f3c328d86839a7b2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=9c3775365cab8e1e82aa19e87b9711dd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=cce17e87cc9bfcb6b995e5f1996c423c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=b80a93441133b85258d97085aeead20a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=74c45b08a2dc28871ff158b608cc8685 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=469b22a4b12f23e86ac25b3d797ff559 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=ea7767cbfacd744813ccaedd1b4e0013 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=0d9f69db1bd665c9e5c9592b483b31a1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=068f5c90b5b381cd58d8804ca2b3be64 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=6181192273efab4aabaa8628fc83c7be https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=fa690cb7132706fb25dfc625e949e96a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=c443f32cd4c91fb37ff79bd86906e1bc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=6fa3edab1bbacf7328074a7fba22be50 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=a950bc4af16446fce2f9266e95629bdb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=d9bce275c2f36dbde8a6c25f9fa10c2e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=6486c5ce9ec697039b0bb36d2bf18a0d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=79f0927984b8e6e7934b34bdb2a3e5e5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=214ac1e49a75291a68c63134bc246a8a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=94a39d1b226350362666f6305866b20b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=4db7d99d775a7f24bb55c6053d4eb864 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=c0db831a97b8427e0777adeaebf7a9d8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=830b4845fbfd45df75758e311a013ffc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=3fc39c824b2060a3a2766ca01037dd15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=0b395f3884c78c6938896ff253c5251b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=2be294a056a45a50262d1796906f8860 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=0270733b808489a91e41f73d9fe971e9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=33db4a687e4943faf6c2853179b67935 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=dea6663b2c113190e9b99a6dcedb3aa0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=835e563bfbe3c8311326660a51f3394c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=66e3c1e1140300c8236c13e3178cb8ab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=07b12bd2a7d8242c34d824882e654c22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=fe12c0e211f90076b51c7916c830971f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=65ab3105b0c6d5e8a2e9977a3ab7ed94 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=08547ad8e760e0776c74401ae5bbd8e5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=631b4ea065d18df96c6ccbc141904bb3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=03a67e234d886f3c698c1571e42cc7a6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=0ded0cb8ce18a846d71d7e04d24c2e78 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=5251aed0ba4d8349413d6bf4c261bea3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=f09694c4f23d7625f72606bce0efb710 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=340db3acb58829b51e4a7ac1c77246d4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1bd86cb46a9e6c40c285258879a3d59 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=d86b2a1e9721b9459e1283006e03fa92 ironruby-1.0.zip=7a92888837b3507355ed391dbfc0ab83 ironruby-1.1.3.zip=4f2af6253a459cc054d6c55956e514a9 jruby-bin-1.3.1.tar.gz=4a95db8fc93ed7219663fbede98b6117 jruby-bin-1.4.tar.gz=54dba9a88b2b3f99ac86a79828d0178b jruby-bin-1.4.0.tar.gz=f37322c18e9134e91e064aebb4baa4c7 jruby-bin-1.4.0.zip=3a9c8a5115a679da7d7a49a56d57d4c0 jruby-bin-1.4.1.tar.gz=a4aa8c43d1b9ffd9dbc6cb738d55a034 jruby-bin-1.5.0.tar.gz=ee2b4e326e8b87858e5dd0c8e94102e6 jruby-bin-1.5.1.tar.gz=74251383e08e8c339cacc35a7900d3af jruby-bin-1.5.2.tar.gz=d239deb9a108a6abbfbd6cb79cf8255b jruby-bin-1.5.3.tar.gz=ccb0b2dbc300d8dd4ad1bd4da48b8320 jruby-bin-1.5.5.tar.gz=8e00f7d40cbf221f733d6f7a15784e9a jruby-bin-1.5.6.tar.gz=94033a36517645b7a7ec781a3507c654 jruby-bin-1.6.0.tar.gz=f4d7e339dfc0fbaef5b878d1c0a66fbe jruby-bin-1.6.2.tar.gz=a46f978c24a208717023bb4b8995c678 jruby-bin-1.6.3.tar.gz=694b80e4eea784cdc1eb39fb1e3132c9 jruby-bin-1.6.4.tar.gz=0e96b6f4d1c6f12b5ac480cd7ab7da78 jruby-bin-1.6.5.tar.gz=54354082673bd115f945890dc6864413 jruby-bin-1.6.5.1.tar.gz=246a7aa2b7d7e6e9e8a0c2e282cbcfd0 jruby-bin-1.6.7.tar.gz=fd1b8d7389aa92da69ea6efb4782e40a jruby-bin-1.6.7.2.tar.gz=1e520f1b5130114464e5f1950cb24774 jruby-bin-1.6.8.tar.gz=a76ac5845640e4a1ebdfa74421efc935 jruby-bin-1.7.0.preview1.tar.gz=7b9e5e1cd0d818d0199086d948f948b4 jruby-bin-1.7.0.preview2.tar.gz=e8f1623759590aadbf49e4cc53f1cb61 jruby-bin-1.7.0.RC1.tar.gz=bdddcee3d126cddd9a85b5a066a7e25e jruby-bin-1.7.0.RC2.tar.gz=ffe2dd61711f4574fed344af151e5de5 jruby-bin-1.7.0.tar.gz=21861e0ecdbf48cda713c8ade82fdddb jruby-bin-1.7.1.tar.gz=86e659863541d8b987cb7bfbe3b4cfb0 jruby-bin-1.7.2.tar.gz=6ec9293b6dffd1e8ee57e9b7c6d18cbe jruby-bin-1.7.3.tar.gz=f0adf8ccee6f6777f7ab8e5e1d7a1f47 jruby-bin-1.7.4.tar.gz=c6a56eae78db28dddba911ccd0848c32 jruby-bin-1.7.5.tar.gz=c2a28c43c8095127d4a4aee0cf9b1439 jruby-bin-1.7.6.tar.gz=5d10011516a3d3bde10209b60cfcc0ef jruby-bin-1.7.7.tar.gz=9d6df2188fa57f12bf6fde4e4b2e3f09 jruby-bin-1.7.8.tar.gz=1e68f39d6dba7b6d9db81e24bb6b7d0a jruby-bin-1.7.9.tar.gz=b2e44f1f44837c07068ee453a89f4b55 jruby-bin-1.7.10.tar.gz=c84fe9245a73f9cd29f56343b7d2e39a jruby-bin-1.7.11.tar.gz=d6e6ab72426fa7fdc9ae55950980d877 jruby-bin-1.7.12.tar.gz=2073aa6dfc7c701ef7c3d3143d181582 jruby-bin-1.7.14.tar.gz=bc33284f27a3508a70d2ade100a2f6bd jruby-bin-1.7.15.tar.gz=92e63cffcb86842511aeeed95bdf96ed jruby-bin-1.7.16.tar.gz=92cb058d1a896257b5ac1c26dc433506 jruby-bin-1.7.16.1.tar.gz=eec2f0e03560bacf02a09c0096a99cad jruby-bin-1.7.16.2.tar.gz=cd31909b67239c5c6a795521fca5c239 jruby-bin-1.7.17.tar.gz=8b78ba1acdb718431f71c38287c07967 jruby-bin-1.7.18.tar.gz=aa7286140be0f6f60534ebffededc708 jruby-bin-1.7.19.tar.gz=bc38596757d8000d6ca4c4c3f8eacea6 jruby-bin-1.7.20.tar.gz=0c2adc160cb85c888b269e8ac4f886fc jruby-bin-1.7.21.tar.gz=bc91594072032023d146f330764d3274 jruby-bin-1.7.22.tar.gz=1da904bf41d362d0d0b366d9e781168f jruby-bin-1.7.23.tar.gz=41e3f45c28c94a275f9eeb22721da35d jruby-bin-1.7.25.tar.gz=fc43ead73f657f5261428923974fd605 jruby-bin-1.7.26.tar.gz=4ca60264a9560f37fdba8108543e72c2 jruby-bin-1.7.27.tar.gz=b98b0a2c52e885a868a2b60092e1cd3d jruby-bin-9.0.0.0.pre1.tar.gz=d5c8b30648348aa883f893d464d46bf1 jruby-bin-9.0.0.0.pre2.tar.gz=86994a9d7ed2cf318c75392623a3e6da jruby-bin-9.0.0.0.tar.gz=fe9036ea69bf23dc3b69cfc94adb5404 jruby-bin-9.0.1.0.tar.gz=a82bc640e0080b1d9a21d1477c8400e3 jruby-bin-9.0.3.0.tar.gz=828dd6c6dd18e5b186ccfd65753077bd jruby-bin-9.0.4.0.tar.gz=645bf4a1dcde3f19dc0fff75c8b4b685 jruby-bin-9.0.5.0.tar.gz=1d2dc649cbacbe26418ef3ba421018b1 jruby-bin-9.1.0.0.tar.gz=fe26e6308d006d35eb613cdd47d1dc99 jruby-bin-9.1.1.0.tar.gz=8356334270df07a214590d00a986837b jruby-bin-9.1.2.0.tar.gz=749bb917dde9666e365e12bbe776a5c2 jruby-bin-9.1.3.0.tar.gz=91c246cd623702032e88283565da5480 jruby-bin-9.1.4.0.tar.gz=5b80b78c09bf0cd4dcbcb9e1fe3e8b73 jruby-bin-9.1.5.0.tar.gz=e9b2cc44757db4cfbe7da79601d0169a jruby-bin-9.1.6.0.tar.gz=4092a89b01b55d1fb5498113f97ab0ca jruby-bin-9.1.7.0.tar.gz=b120c3eaeef7ff2aed3a57701e414e78 jruby-bin-9.1.8.0.tar.gz=0fdee002c56ec91dff1efffce205265c jruby-bin-9.1.9.0.tar.gz=170efc34297d7ac2a56bb1163e96b363 jruby-bin-9.1.10.0.tar.gz=b75e0d1a200e8f790d8bbc84f91e3002 jruby-bin-9.1.11.0.tar.gz=0502a14141da25a460ce197720bab4c3 jruby-bin-9.1.12.0.tar.gz=74bd7ae08c159fc62cb6f64845a868cc jruby-bin-9.1.13.0.tar.gz=6c642c8a2653a585779f453d8c843fd7 jruby-bin-9.1.14.0.tar.gz=a7e0ecd529690025d327c45744f60fa4 jruby-bin-9.1.15.0.tar.gz=01c29690324d7eb414fba66e4c009c9e jruby-bin-9.1.16.0.tar.gz=e64c3aa1310c272194fd1750b0b79fac jruby-bin-9.1.17.0.tar.gz=f28d1fcbb60e550f3abd839102ad0069 jruby-bin-9.2.0.0.tar.gz=bd476da4bed39ffcfff7116f448a5365 jruby-bin-9.2.1.0.tar.gz=4b78b0a40ca541556f5ee75a815e0be0 jruby-bin-9.2.2.0.tar.gz=be678559801be029fe233c33396e34d2 jruby-bin-9.2.3.0.tar.gz=79328ab1ed37d612da35271183e46bbd jruby-bin-9.2.4.0.tar.gz=f538f2be459f0f0e517a53446e78a354 jruby-bin-9.2.4.1.tar.gz=d373bbc2bd6caabfcc9914c4067e9d24 jruby-bin-9.2.5.0.tar.gz=14582fd6eee19610f0a7433ce5dd5ce4 jruby-bin-9.2.6.0.tar.gz=dba182ac9943b726b609ca61747c1835 jruby-bin-9.2.7.0.tar.gz=c0111b2cafa920df76284044e1aeedc7 jruby-bin-9.2.8.0.tar.gz=7d652b586a18f1c665289fd7e6edf4f5 jruby-bin-9.2.9.0.tar.gz=74b3451f79c13c2fc66c6dee69d46699 jruby-bin-9.2.10.0.tar.gz=e6ce97eae6e35b622c1b572f9297705b jruby-bin-9.2.11.0.tar.gz=22b003adfb03b253721cc85db248698f jruby-bin-9.2.11.1.tar.gz=687586132f7b649b1bdd7b823577c9d8 jruby-bin-9.2.12.0.tar.gz=cc7599837fbd0839cce7293577a34f2c jruby-bin-9.2.13.0.tar.gz=99df4eb89f88c7582bfe7c313daec7b4 jruby-bin-9.2.14.0.tar.gz=421c5b8146701177a738a0a691190018 jruby-bin-9.2.15.0.tar.gz=ba593f1de2c4e592a8ca9b9e903af457 jruby-bin-9.2.16.0.tar.gz=d8d954ee0ab6f4868c3fc63339660af9 jruby-bin-9.2.17.0.tar.gz=382fb3d9d2982efd5396f1a42e3fa6a1 jruby-bin-9.2.18.0.tar.gz=002ac95859a2176cb0a58d81d6e0fb14 jruby-bin-9.2.19.0.tar.gz=0961867a77838853f32ee72dbde7c00e jruby-bin-9.2.20.0.tar.gz=840876dd0ca0098452dd2667fe9dd7f4 jruby-bin-9.2.20.1.tar.gz=5856ed030f0d9e75d2384cf42f62a4de jruby-bin-9.2.21.0.tar.gz=9957c1d2bd9265144fe55f9f7093272a jruby-bin-9.3.0.0.tar.gz=501a3c975b3c9478b72d4b0cd37170b9 jruby-bin-9.3.1.0.tar.gz=201d3e483bf847f5c59f4b1f3bf594d5 jruby-bin-9.3.2.0.tar.gz=259c276f68a01495dda24407394a382d jruby-bin-9.3.3.0.tar.gz=cd49b81753048cee9c8ffdd2ce1cb3e2 jruby-bin-9.3.4.0.tar.gz=7292dd9a56155aa015ec08c03855b3fc jruby-bin-9.3.6.0.tar.gz=bc5a7b02be69fdf3f5584e8880fc7dcc jruby-bin-9.3.7.0.tar.gz=49b17b5cd7cf8bfb09d8f64147d992ef jruby-bin-9.3.8.0.tar.gz=6ea209b699a06944d0653d8048d8bfec jruby-bin-9.3.9.0.tar.gz=9a0f0a931346bc6ea34196a5c88002ec jruby-bin-9.3.10.0.tar.gz=83c9d776dfc8cf33bfa60f7e78077160 jruby-bin-9.3.11.0.tar.gz=6ccc04e658c49db19fc0c452db0f2931 jruby-bin-9.3.13.0.tar.gz=3f20268b494da900504e921507248183 jruby-bin-9.3.14.0.tar.gz=87a96fd3af448ec8fd5ca45c6469ecc9 jruby-bin-9.3.15.0.tar.gz=385fabe180b68fb8cd3743b315109e5f jruby-bin-9.4.0.0.tar.gz=d0136daa4910f6e6b21858260eb00fe2 jruby-bin-9.4.1.0.tar.gz=abe2669672ac973f1b41a4d3860eb7ae jruby-bin-9.4.2.0.tar.gz=486e50f3c74e7400e71631819fde91da jruby-bin-9.4.3.0.tar.gz=526006fefb3e5ffc5095ab5599cc38c6 jruby-bin-9.4.4.0.tar.gz=287b5c3a9b63ff93e49ae9dc0347263b jruby-bin-9.4.5.0.tar.gz=09c6fceb38d6c086af2e4d5f21f9fe65 jruby-bin-9.4.6.0.tar.gz=5e2fe4ed897d938332ee0d85d2aa60bc jruby-bin-9.4.7.0.tar.gz=a0633ca837efff62edca84ceae1f5515 jruby-bin-9.4.8.0.tar.gz=9f520a3a416b598b4e53916e7180b623 libiconv-1.13.1.tar.gz=7ab33ebd26687c744a37264a330bbe9a MacRuby%200.5.zip=675454a8c7bc19d606d90a726e08427c MacRuby%200.6.zip=a80afd3700c88cf95c539fc63b272faf MacRuby%200.7.1.zip=e8245dcd03c0757dfae7e6fee913947a MacRuby%200.7.zip=0bb60588c9ec9b1517665743bb05132f MacRuby%200.8.zip=735ac0a70f539e00b5de6fbec09c2c5c MacRuby%200.9.zip=fa01345e8fbfee620bbac64743a45f69 MacRuby%200.10.zip=1662d13d2f73cfc26258598f6988dcbc MacRuby%200.11.zip=b0cc23d60484a07012bcad549cef6054 MacRuby%200.12.zip=e1c5fa1b007a1cdc38c527a47302bf5e MagLev-1.0.0.tar.gz=e02cb8ee04438451eb78df14f91a68a9 MagLev-1.1beta.tar.gz=d542c7af290ce3b588b57629906b19e9 MagLev-1.1beta2.tar.gz=0ef88d5d145611aef324cb51be0aaafd MagLev-1.1RC1.tar.gz=41f4a0994daf1e5271cbd0ebe57816f4 MagLev-1.2Alpha.tar.gz=5c7dd3acef9dbddc0829bb1daa087abb MagLev-1.2Alpha2.tar.gz=cbbeae109854a6bf107a747a93fd478b MagLev-1.2Alpha3.tar.gz=b7470518f2b697eb1a5a39eff9b6d749 MagLev-1.2Alpha4.tar.gz=d54f04a611ce838b9d7009627065b7ca mruby-1.0.0.tar.gz=d9aec6a20fc1add65ee07ff6cf0e1ef2 mruby-1.1.0.tar.gz=60d75ea704c9285f3c80b3ad1d2b68de mruby-1.2.0.tar.gz=b5a3b7962d9db8cb8fb8105aa914d16c mruby-1.3.0.tar.gz=9714dd2804064d0043e099b7211d72b9 mruby-1.4.0.tar.gz=25efc35511070454074b36863c4d5b5e mruby-1.4.1.tar.gz=b40bf09af3f4c6e2bc443b9ac803a3ad mruby-2.0.0.tar.gz=b86c6a1dd86cb4ebe51e3fe38964a830 mruby-2.0.1.tar.gz=15b426a8a94a610c45414578786d05e3 mruby-2.1.0-rc.tar.gz=58a85fcb102d72900a25190da670e01d mruby-2.1.0.tar.gz=c01a4bbf62e6f5765c70b8813e0ce7da mruby-2.1.1-rc.tar.gz=809edd80e680855e7c4cf3c569972f28 mruby-2.1.1-rc2.tar.gz=24879fa5eb587f9415f03f8f3701842e mruby-2.1.1.tar.gz=c0ee4a112695046b9e4f177e31096d6c ncurses.tar.gz=cce05daf61a64501ef6cd8da1f727ec6 openssl-0.9.8k.tar.gz=e555c6d58d276aec7fdc53363e338ab3 openssl-0.9.8n.tar.gz=076d8efc3ed93646bd01f04e23c07066 openssl-1.0.1c.tar.gz=ae412727c8c15b67880aef7bd2999b2e openssl-1.0.1i.tar.gz=c8dc151a671b9b92ff3e4c118b174972 pkg-config-0.23.tar.gz=d922a88782b64441d06547632fd85744 readline-5.2.tar.gz=e39331f32ad14009b9ff49cc10c5e751 readline-6.0.tar.gz=b7f65a48add447693be6e86f04a63019 readline-6.2.tar.gz=67948acb2ca081f23359d0256e9a271c release-2.0.0-rc1.zip=b05b5e3c2712a294e4b09ebf450c1bfe rubinius-1.0.0-20100514.tar.gz=b05f4e791d3712c5a50b3d210dac6eb0 rubinius-1.0.1-20100603.tar.gz=eb185703c7ae0c0210e8dcb7f783ee8e rubinius-1.1.0-20100923.tar.gz=e2ae16238b201de09975abe19da09ea9 rubinius-1.1.1-20101116.tar.gz=b39f618eeba37c3aff215da8bca55fd7 rubinius-1.2.0-20101221.tar.gz=4284c2660f1f648942de35d4fc871f70 rubinius-1.2.1-20110215.tar.gz=e4a5127480062fddddc7ce2860b3b813 rubinius-1.2.2-20110222.tar.gz=59124378fb7ee040e9ee4e4736d89fc0 rubinius-1.2.3-20110315.tar.gz=9782dab18c2dd440af6b76e8eb5bc0f0 rubinius-1.2.4-20110705.tar.gz=403c777d19b3553e9cb36701fe002c5e rubinius-1.3.2.tar.bz2=64801ad8dd4e5e4fcb74ff313fec0a69 rubinius-1.3.3.tar.bz2=79f1f860ed8242257bd7f3e88c81a197 rubinius-1.4.1.tar.bz2=76b840405d4b9303261c27cf15002386 rubinius-2.0.0.tar.bz2=62e379e044c822b81e7b20a27daf133e rubinius-2.1.0.tar.bz2=908053f38fd840c75a93aab7487c20a5 rubinius-2.1.1.tar.bz2=6b4df0caec5ea88373e113f97a3b4c72 rubinius-2.2.0.tar.bz2=f1fbc6f3baf1da5ad86b3858f30f3349 rubinius-2.2.2.tar.bz2=ac70d629ea43525d91e81f4ccf135299 rubinius-2.2.3.tar.bz2=d9978cf1a4e8f0310db63e49834f9837 rubinius-2.2.4.tar.bz2=c10699da85a8eb5861a37b29077213bd rubinius-2.2.5.tar.bz2=5996dc8529b2ffe5921c5e7020bee20e rubinius-2.2.6.tar.bz2=85339bb6dd525eee719edf0551868f56 rubinius-2.2.7.tar.bz2=de2e6f4c3bd9a90bcb89f2ea27ddee9e rubinius-2.2.8.tar.bz2=c4db1ffb8dbdf864240cabe8b7758b49 rubinius-2.2.9.tar.bz2=0bf87ba617fa989e47d20942410028af rubinius-2.2.10.tar.bz2=8680da7eb921e6f595a1d716915ca7e0 rubinius-2.3.0.tar.bz2=e003a30af6689c8198116b3405d09d8e rubinius-2.4.0.tar.bz2=62391a51f49820daa51463066c3ce007 rubinius-2.4.1.tar.bz2=7758721b6e848387c3943ddb9ebd9479 rubinius-2.5.0.tar.bz2=178baa1ad172df0801765ea93bc36d87 rubinius-2.5.1.tar.bz2=77e1b87dc357691ad44b561a5f45c188 rubinius-2.5.2.tar.bz2=e5973d6e0a16f0390dc2a7478db83ff5 rubinius-2.5.3.tar.bz2=b19709eb3fa9e05b3fa6a357b33e3b5b rubinius-2.5.4.tar.bz2=64587916e5d445ed9bc630017a04498e rubinius-2.5.5.tar.bz2=ef671bbab50cbe2f70f953c491311261 rubinius-2.5.6.tar.bz2=597e4b049f49966c646faf699856c1b9 rubinius-2.5.7.tar.bz2=9a7f404019bce9fc34a7af7feb7cbb74 rubinius-2.5.8.tar.bz2=a24520892cada1f660e719a25abf63e3 ruby-1.8.5-p115.tar.bz2=03955e3c367b9beb3efe144c9f00d689 ruby-1.8.5-p115.tar.gz=20ca6cc87eb077296806412feaac0356 ruby-1.8.5-p231.tar.bz2=327f5aa6573787432222e96195cffd1e ruby-1.8.5-p231.tar.gz=e900cf225d55414bffe878f00a85807c ruby-1.8.6-p286.tar.bz2=e6b6bf8f34370e433936adb7a7065e63 ruby-1.8.6-p286.tar.gz=797ea136fe43e4286c9362ee4516674e ruby-1.8.6-p287.tar.bz2=80b5f3db12531d36e6c81fac6d05dda9 ruby-1.8.6-p287.tar.gz=6ff3420094711266c3201a0c7c2faa38 ruby-1.8.6-p369.tar.bz2=c3c1f3dd0dfbd2e17a04e59c2f12cfc8 ruby-1.8.6-p369.tar.gz=8c140ae28b4c3947b92dfad69109d90b ruby-1.8.6-p383.tar.bz2=a48703cd982b9f0e3002700a50b0e88e ruby-1.8.6-p383.tar.gz=4f49544d4a4d0d34e9d86c41e853db2e ruby-1.8.6-p398.tar.bz2=fbd43dc44ee26be4d37e6bebbed6f8bd ruby-1.8.6-p398.tar.gz=736db5f56c2d9b0136e563d049249fa8 ruby-1.8.6-p399.tar.bz2=f77c307cb72fb8808b0e85af5d05cefc ruby-1.8.6-p399.tar.gz=c3d16cdd3c1ee8f3b7d1c399d4884e33 ruby-1.8.6-p420.tar.bz2=1c7a978e9ffd4f56dc2ad74bbd2c34f3 ruby-1.8.6-p420.tar.gz=ca1eee44f842e93b5098bc5a2bb9a40b ruby-1.8.7-p160.tar.bz2=f8ddb886b8a81cf005f53e9a9541091d ruby-1.8.7-p160.tar.gz=945398f97e2de6dd8ab6df68d10bb1a1 ruby-1.8.7-p174.tar.bz2=88c45aaf627b4404e5e4273cb03ba2ee ruby-1.8.7-p174.tar.gz=18dcdfef761a745ac7da45b61776afa5 ruby-1.8.7-p248.tar.bz2=37e19d46b7d4b845f57d3389084b94a6 ruby-1.8.7-p248.tar.gz=60a65374689ac8b90be54ca9c61c48e3 ruby-1.8.7-p249.tar.bz2=37200cc956a16996bbfd25bb4068f242 ruby-1.8.7-p249.tar.gz=d7db7763cffad279952eb7e9bbfc221c ruby-1.8.7-p299.tar.bz2=244439a87d75ab24170a9c2b451ce351 ruby-1.8.7-p299.tar.gz=43533980ee0ea57381040d4135cf9677 ruby-1.8.7-p302.tar.bz2=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p302.tar.gz=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p330.tar.bz2=2689719fb42c8cf0aa336f8c8933f413 ruby-1.8.7-p330.tar.gz=50a49edb787211598d08e756e733e42e ruby-1.8.7-p334.tar.bz2=2f14f604bf981bb938ab5fc8b09eb1a6 ruby-1.8.7-p334.tar.gz=aacb6ee5dfe2367682bba56af7f415b8 ruby-1.8.7-p352.tar.bz2=0c61ea41d1b1183b219b9afe97f18f52 ruby-1.8.7-p352.tar.gz=0c33f663a10a540ea65677bb755e57a7 ruby-1.8.7-p357.tar.bz2=3abd9e2a29f756a0d30c7bfca578cdeb ruby-1.8.7-p357.tar.gz=b2b8248ff5097cfd629f5b9768d1df82 ruby-1.8.7-p358.tar.bz2=de35f00997f4ccee3e22dff0f2d01b8a ruby-1.8.7-p370.tar.bz2=1e4c3194537dd8ff92e756993e55a29d ruby-1.8.7-p371.tar.bz2=c27526b298659a186bdb5107fcec2341 ruby-1.8.7-p371.tar.gz=653f07bb45f03d0bf3910491288764df ruby-1.8.7-p374.tar.bz2=83c92e2b57ea08f31187060098b2200b ruby-1.8.7-p374.tar.gz=b72a0bc5b824398537762e5272bbb8dc ruby-1.9.0.tar.bz2=17eb66ac3721340d21db352d8f5dec76 ruby-1.9.1-p129.tar.bz2=6fa62b20f72da471195830dec4eb2013 ruby-1.9.1-p129.tar.gz=c71f413514ee6341c627be2957023a5c ruby-1.9.1-p243.tar.bz2=66d4f8403d13623051091347764881a0 ruby-1.9.1-p243.tar.gz=515bfd965814e718c0943abf3dde5494 ruby-1.9.1-p376.tar.bz2=e019ae9c643c5efe91be49e29781fb94 ruby-1.9.1-p376.tar.gz=ebb20550a11e7f1a2fbd6fdec2a3e0a3 ruby-1.9.1-p378.tar.bz2=5922459622a23612eb9b68a3586cb5f8 ruby-1.9.1-p378.tar.gz=9fc5941bda150ac0a33b299e1e53654c ruby-1.9.1-p429.tar.bz2=09df32ae51b6337f7a2e3b1909b26213 ruby-1.9.1-p429.tar.gz=0f6d7630f26042e00bc59875755cf879 ruby-1.9.1-p431.tar.bz2=03179138ae95dbfae872ef49e9cc6da7 ruby-1.9.1-p431.tar.gz=23f28cffc007ed5ac72c8e9bec6837ce ruby-1.9.2-p0.tar.bz2=d8a02cadf57d2571cd4250e248ea7e4b ruby-1.9.2-p0.tar.gz=755aba44607c580fddc25e7c89260460 ruby-1.9.2-p136.tar.bz2=52958d35d1b437f5d9d225690de94c13 ruby-1.9.2-p136.tar.gz=6e17b200b907244478582b7d06cd512e ruby-1.9.2-p180.tar.bz2=68510eeb7511c403b91fe5476f250538 ruby-1.9.2-p180.tar.gz=0d6953820c9918820dd916e79f4bfde8 ruby-1.9.2-p290.tar.bz2=096758c3e853b839dc980b183227b182 ruby-1.9.2-p290.tar.gz=604da71839a6ae02b5b5b5e1b792d5eb ruby-1.9.2-p318.tar.bz2=be431c6cbfa27e3836a06c6315717747 ruby-1.9.2-p318.tar.gz=cc7bf1025128e1985882ae243f348802 ruby-1.9.2-p320.tar.bz2=b226dfe95d92750ee7163e899b33af00 ruby-1.9.2-p320.tar.gz=5ef5d9c07af207710bd9c2ad1cef4b42 ruby-1.9.2-p330.tar.bz2=8ba4aaf707023e76f80fc8f455c99858 ruby-1.9.2-p330.tar.gz=4b9330730491f96b402adc4a561e859a ruby-1.9.3-p0.tar.bz2=65401fb3194cdccd6c1175ab29b8fdb8 ruby-1.9.3-p0.tar.gz=8e2fef56185cfbaf29d0c8329fc77c05 ruby-1.9.3-p125.tar.bz2=702529a7f8417ed79f628b77d8061aa5 ruby-1.9.3-p125.tar.gz=e3ea86b9d3fc2d3ec867f66969ae3b92 ruby-1.9.3-p194.tar.bz2=2278eff4cfed3cbc0653bc73085caa34 ruby-1.9.3-p194.tar.gz=bc0c715c69da4d1d8bd57069c19f6c0e ruby-1.9.3-p286.tar.bz2=e76848a86606a4fd5dcf14fc4b4e755e ruby-1.9.3-p327.tar.bz2=7d602aba93f31ceef32800999855fbca ruby-1.9.3-p327.tar.gz=96118e856b502b5d7b3a4398e6c6e98c ruby-1.9.3-p362.tar.bz2=13c26ea368d88a560f07cc8c5eb4fa05 ruby-1.9.3-p374.tar.bz2=944e73eba9ee9e1f2647ff32ec0b14b2 ruby-1.9.3-p385.tar.bz2=5ec9aff670f4912b0f6f0e11e855ef6c ruby-1.9.3-p392.tar.bz2=a810d64e2255179d2f334eb61fb8519c ruby-1.9.3-p392.tar.gz=f689a7b61379f83cbbed3c7077d83859 ruby-1.9.3-p429.tar.bz2=c2b2de5ef15ea9b1aaa3152f9112af1b ruby-1.9.3-p429.tar.gz=993c72f7f805a9eb453f90b0b7fe0d2b ruby-1.9.3-p448.tar.bz2=aa710d386e5903f78f0231868255e6af ruby-1.9.3-p448.tar.gz=a893cff26bcf351b8975ebf2a63b1023 ruby-1.9.3-p484.tar.bz2=03f5b08804927ceabe5122cb90f5d0a9 ruby-1.9.3-p484.tar.gz=8ac0dee72fe12d75c8b2d0ef5d0c2968 ruby-1.9.3-p545.tar.bz2=4743c1dc48491070bae8fc8b423bc1a7 ruby-1.9.3-p545.tar.gz=8e8f6e4d7d0bb54e0edf8d9c4120f40c ruby-1.9.3-p547.tar.bz2=5363d399be7f827c77bf8ae5d1a69b38 ruby-1.9.3-p547.tar.gz=7531f9b1b35b16f3eb3d7bea786babfd ruby-1.9.3-p550.tar.bz2=c2169c8b14ccefd036081aba5ffa96da ruby-1.9.3-p551.tar.bz2=0d8b272b05c3449dc848bb7570f65bfe ruby-1.9.3-preview1.tar.bz2=7d93dc773c5824f05c6e6630d8c4bf9b ruby-1.9.3-preview1.tar.gz=0f0220be4cc7c51a82c1bd8f6a0969f3 ruby-1.9.3-rc1.tar.bz2=26f0dc51ad981e12c58b48380112fa4d ruby-1.9.3-rc1.tar.gz=46a2a481536ca0ca0b80ad2b091df68e ruby-2.0.0-p0.tar.bz2=895c1c581f8d28e8b3bb02472b2ccf6a ruby-2.0.0-p195.tar.bz2=2f54faea6ee1ca500632ec3c0cb59cb6 ruby-2.0.0-p247.tar.bz2=60913f3eec0c4071f44df42600be2604 ruby-2.0.0-p353.tar.bz2=20eb8f067d20f6b76b7e16cce2a85a55 ruby-2.0.0-p451.tar.bz2=908e4d1dbfe7362b15892f16af05adf8 ruby-2.0.0-p481.tar.bz2=ea406a8d415a1a5d8365596d4288f3da ruby-2.0.0-p576.tar.bz2=eccd42d43620544a085c5e3834572f37 ruby-2.0.0-p594.tar.bz2=58469c0daf5f3a892a70cc674ea59c7f ruby-2.0.0-p598.tar.bz2=a3f3908103a7d209d1d1cf4712e3953c ruby-2.0.0-p643.tar.bz2=1390888cac6cd175e6f164eff378cdde ruby-2.0.0-p645.tar.bz2=d576240c97cfcc3ed9bdc457eb1e8280 ruby-2.0.0-p647.tar.bz2=27a3ea1a8b8bca1a6de43a7d08e88b69 ruby-2.0.0-p648.tar.bz2=3544031334f4665aa2eb1414babc9345 ruby-2.0.0-preview1.tar.bz2=47a0f662f0e258aa1c5e429c310861b3 ruby-2.0.0-preview2.tar.bz2=a645a783c3302cc094a9963a5e700a4d ruby-2.0.0-rc1.tar.bz2=24cebdda11e01ff4889ac983cd7dc02c ruby-2.0.0-rc2.tar.bz2=e92420131bd7994513e0bf09a3e2a19b ruby-2.1.0-preview1.tar.bz2=d32d1ea23988399afadbd21c5a7a37fc ruby-2.1.0-preview2.tar.bz2=9d566a9b2d2e7e35ad6125e2a14ce672 ruby-2.1.0-rc1.tar.bz2=cae095b90349b5b0f7026060cc3dd2c5 ruby-2.1.0.tar.bz2=1546eeb763ac7754365664be763a1e8f ruby-2.1.1.tar.bz2=53edc33b2f590ecdd9f6a344b9d92d0d ruby-2.1.1.tar.gz=e57fdbb8ed56e70c43f39c79da1654b2 ruby-2.1.2.tar.bz2=ed9b8565bdeccb401d628ec8d54a0774 ruby-2.1.2.tar.gz=a5b5c83565f8bd954ee522bd287d2ca1 ruby-2.1.3.tar.bz2=02b7da3bb06037c777ca52e1194efccb ruby-2.1.4.tar.bz2=f4136e781d261e3cc20748005e1740b7 ruby-2.1.5.tar.bz2=a7c3e5fec47eff23091b566e9e1dac1b ruby-2.1.6.tar.bz2=e1a8e6c6bfbb09bb7f8d6be8f508e4a1 ruby-2.1.7.tar.bz2=3a878e98311d543e5de3533b82ef4a5a ruby-2.1.8.tar.bz2=b17130b5f02a61640ae3b629af931610 ruby-2.1.9.tar.bz2=62bd1cbfcbc22e4d137462bce992f6d1 ruby-2.1.10.tar.bz2=5155c624807ff2418a9e9f15202954d0 ruby-2.2.0-preview1.tar.bz2=767b132eec3e70b14afe5884a7a767b1 ruby-2.2.0-preview2.tar.bz2=d7abace25a8ffe861cb2807bef1c58a6 ruby-2.2.0-rc1.tar.bz2=7144732d30dd4547c0a59862b3345d54 ruby-2.2.0.tar.bz2=d03cd4690fec1fff81d096d1c1255fde ruby-2.2.1.tar.bz2=06973777736d8e6bdad8dcaa469a9da3 ruby-2.2.2.tar.bz2=af6eb4fa7247f1f7b2e19c8e6f3e3145 ruby-2.2.3.tar.bz2=f49a734729a71774d4a94a9a603114b2 ruby-2.2.4.tar.bz2=c3d65f6d2ebe90dda81a37885ea244f5 ruby-2.2.5.tar.bz2=0c7edd1ff3650c3b74da2efaf641bf34 ruby-2.2.6.tar.bz2=3d13cf447142b8a11cd9beb7bc63fee0 ruby-2.2.7.tar.bz2=ca7224d80c08b015bc3b8c226d0914c3 ruby-2.2.8.tar.bz2=054d2e2904d5175662293e29c3bdb927 ruby-2.2.9.tar.bz2=575adf8ede6b1ca7236a5341e73536b0 ruby-2.2.10.tar.bz2=bef1909a4c885157870ef69548cdad3a ruby-2.3.0-preview1.tar.bz2=776000d74ec6dd34bf355ff6921c8311 ruby-2.3.0-preview2.tar.bz2=3ad442ccb337e77e4acaa4113f25b76a ruby-2.3.0.tar.bz2=f0d9f9bbdc87372ca98988a571875819 ruby-2.3.1.tar.bz2=c194281f63d7fcd816747fe78474be5e ruby-2.3.2.tar.bz2=9d00f3772f1c8fa5eecdfea089e3032f ruby-2.3.3.tar.bz2=04b9c461a2bc1eec0535ad1947cad4fb ruby-2.3.4.tar.bz2=99961e97566aee6d63635e2da4cf73ac ruby-2.3.5.tar.bz2=e1efc3d5a948ca1f552005efe5925513 ruby-2.3.6.tar.bz2=b2443b11ee80319a119f7ec0c9b8d79a ruby-2.3.7.tar.bz2=5eb580d5cd13ffb5aacfb96580c0043d ruby-2.3.8.tar.bz2=78045332e298dfd859ceef9fe946950f ruby-2.4.0-preview1.tar.bz2=64b8983b5f53d053906e394f734aa296 ruby-2.4.0-preview2.tar.bz2=1074e8dea5baa89af7f7c2d1d2b9ebaa ruby-2.4.0-preview3.tar.bz2=9f767e6bc61830735ea7dc9cd5a63653 ruby-2.4.0-rc1.tar.bz2=0f8b665acf4e883334adc121a42a206f ruby-2.4.0.tar.bz2=98f29161860fe1b6c65396717847a358 ruby-2.4.1.tar.bz2=07b2ae5d2f46321c95b37066c8415900 ruby-2.4.2.tar.bz2=5ff3ad6ec816bcce8806a55090936ab6 ruby-2.4.3.tar.bz2=ac8215ba561cc7c79b4f61daee11b706 ruby-2.4.4.tar.bz2=d994274eaa95b82aa5d31ec2188253c6 ruby-2.4.5.tar.bz2=45d70a8bb9397d818795ffe992163d27 ruby-2.4.6.tar.bz2=4abd13c50c1fc273a0a81a0ae74ed39f ruby-2.4.7.tar.bz2=1ce166ced489908993d78e8bb68325e0 ruby-2.4.8.tar.bz2=396d35f1a2d1deaf303f59cb5245d4ae ruby-2.4.9.tar.bz2=0b3447370651df55a2014a170c0cb1d5 ruby-2.4.10.tar.bz2=b10a7d2fcaf218c98edbaf57efc36e58 ruby-2.5.0-preview1.tar.bz2=889454189f41e271ae5ba15382911b6a ruby-2.5.0-rc1.tar.bz2=f5acdeacf56aced3c00ae6a8fa816bbc ruby-2.5.0.tar.bz2=63a6cd49546783d62de25a0ffc4aecc3 ruby-2.5.1.tar.bz2=5aaaf2fb4893214fa316516f3ac43519 ruby-2.5.2.tar.bz2=e90ab127e2ac3ee1d8840835e8ba1f13 ruby-2.5.3.tar.bz2=49aea0bf56d25351ccaf938c642400df ruby-2.5.4.tar.bz2=0c923215470f1debe593fe21e66fd37b ruby-2.5.5.tar.bz2=8f41b5cb683d48b5cb6cdfe03d135d6b ruby-2.5.6.tar.bz2=f2a74416ab3016434896194120796f04 ruby-2.5.7.tar.bz2=65597b69aa54bdca8745502c10349f96 ruby-2.5.8.tar.bz2=9ec96e7a590ef801ede294b6184c9c0f ruby-2.5.9.tar.bz2=9e905a545a729af1f1620ddfc2976fe5 ruby-2.6.0-preview1.tar.bz2=1ce507e27fa02aeb36100dabcf1da94f ruby-2.6.0-preview2.tar.bz2=e45011116334d21857b9e1712a01e6b3 ruby-2.6.0-preview3.tar.bz2=b326ceee3d3756f892515009e148f4b2 ruby-2.6.0-rc1.tar.bz2=40457a72e36cbecd0c51d9f895347302 ruby-2.6.0-rc2.tar.bz2=9665e6d886a9da2d4076fa75836798f1 ruby-2.6.0.tar.bz2=d3372daec93f83e7a91c669821053014 ruby-2.6.1.tar.bz2=73d19ac478db1a178be5ae2f2fb8c9ec ruby-2.6.2.tar.bz2=658fcc0da15578c2420ded807b11cce1 ruby-2.6.3.tar.bz2=52e609b756735115814b9c8463f185e2 ruby-2.6.4.tar.bz2=d9b35753c65f54c745ab6b0094511839 ruby-2.6.5.tar.bz2=d1b89c88effb71d75cd7ef77c35e1985 ruby-2.6.6.tar.bz2=abc030870bfbe18ae9c356abebd95cb6 ruby-2.6.7.tar.bz2=46f24740181f91247c72f19d52334379 ruby-2.6.8.tar.bz2=c53761123d17e929cfe248f50429bcab ruby-2.6.9.tar.bz2=ddc24495adaf215c8ee40630b4a55041 ruby-2.6.10.tar.bz2=6ad76db639ab308e3b6c19408729a0cf ruby-2.7.0-preview1.tar.bz2=82fab0496947acd847a6b2eb758acfc6 ruby-2.7.0-preview2.tar.bz2=966a544ab59114591898403c23d91397 ruby-2.7.0-preview3.tar.bz2=2fa6c213774744b287e7e0212b43f626 ruby-2.7.0-rc1.tar.bz2=48a8837cb352f5b95e97a1ae0d62a9d0 ruby-2.7.0-rc2.tar.bz2=cca58fdb8c5e8be8273842d54199c42d ruby-2.7.0.tar.bz2=89347748b7414f5bc7aeb8f4a87ebef4 ruby-2.7.1.tar.bz2=4bb2b2b2f0c6953859e30af140cf249a ruby-2.7.2.tar.bz2=a8acc9c24708fe29dfc287823ecaae65 ruby-2.7.3.tar.bz2=604acb258b1d8228f55799e846cfe6d3 ruby-2.7.4.tar.bz2=52705d799ed851dd3bfd5634265cde46 ruby-2.7.5.tar.bz2=d97d4377eee18b0e790510c3afed648c ruby-2.7.6.tar.bz2=1b6efacb9f129d0253d8a9faa9c21f99 ruby-2.7.7.tar.bz2=63c55e75150251d3ba092b662138e4af ruby-2.7.8.tar.bz2=f44dedf51fdb7441a7dba592d6a4a14d ruby-3.0.0-preview1.tar.gz=991df063b86a8f8412ca07f548579f39 ruby-3.0.0-preview2.tar.gz=ce14b24e923f2e269fea6441791a7248 ruby-3.0.0-rc1.tar.gz=848a8628c8abde270b66e2474049a4a3 ruby-3.0.0.tar.gz=d6af36269a1b0bc278236d371543ad97 ruby-3.0.1.tar.gz=8d1c460a9a9d48a353de3eb0f338bbfd ruby-3.0.2.tar.gz=b973af486291a1e17ad50d88472bfa86 ruby-3.0.3.tar.gz=9ecae293da9547c1438a970f04f64655 ruby-3.0.4.tar.gz=ec9de9a15acc4f205b08816d94267415 ruby-3.0.5.tar.gz=cdff2395625dc1d632fc5400c8fec103 ruby-3.0.6.tar.gz=6b5a7b14505697e6fc2b40b345679f40 ruby-3.0.7.tar.gz=147a3467facc704b5d479e809c131603 ruby-3.1.0-preview1.tar.gz=d131b9bca700ee87ea276f8233ea4c0b ruby-3.1.0.tar.gz=1ca89d713f2c18a20104befed51b3b9a ruby-3.1.1.tar.gz=702778a0ef8b7a01ef7530a541002e19 ruby-3.1.2.tar.gz=9daf064899cccc32fd564117c7a7e0dd ruby-3.1.3.tar.gz=cce38a2b2c589d59f440f67c7d8cc697 ruby-3.1.4.tar.gz=3e601ae6db76a487219a1084e5cb4c9c ruby-3.1.5.tar.gz=ce1e92ddb1230fa2d4f4367882542555 ruby-3.2.0-preview1.tar.gz=a83c91d53e130fe232e4c27ecc8738da ruby-3.2.0-preview2.tar.gz=56e7801b37612b82285c9a09cfeb28ce ruby-3.2.0-preview3.tar.gz=0ed16faae50403b4e2ba2e85ec2314a1 ruby-3.2.0-rc1.tar.gz=4657d7013702adce21ca21dfe71ea4a0 ruby-3.2.0.tar.gz=76ca7e7d71898ab1e85155d69403754e ruby-3.2.1.tar.gz=055101c924538467c63fcbf42abddc75 ruby-3.2.2.tar.gz=eb6f18605e1e1be5dfb5b45f31bf6a93 ruby-3.2.3.tar.gz=e0ba90554f7ea41c587ffa7fcfd064ca ruby-3.2.4.tar.gz=c48283a23c72d7aae19b7f510b89444a +ruby-3.2.5.tar.gz=3bd6f2b26918c8637abf56c2f208833e ruby-3.3.0-preview1.tar.gz=0833f555b1b8d5423953600fb4146639 ruby-3.3.0-preview2.tar.gz=4f82f4c9e512ec0a53baa1be8d35ebf7 ruby-3.3.0-preview3.tar.gz=a32ede198a9da50d4afc4421a4a993ad ruby-3.3.0.tar.gz=f57422a0f995cd5a93c726f6c42c310a ruby-3.3.1.tar.gz=368e331a35145ace4948390ed76cf1df ruby-3.3.2.tar.gz=9a7efebc6a0e4810c716ec6d401dc372 ruby-3.3.3.tar.gz=beb9773cc4d9d8da29463ab175e4db28 ruby-3.3.4.tar.gz=f2e16c1a56e07e185214e85c62657941 ruby-3.4.0-preview1.tar.gz=93b9b1040a2dd7be7514a7870aa7da03 ruby-enterprise-1.8.6-20080507.tar.gz=17e3c52e73e42809f57ad0000a6cb4ab ruby-enterprise-1.8.6-20080621.tar.gz=626fc3811eee2dc92ac27ea63d37a8b2 ruby-enterprise-1.8.6-20080623.tar.gz=0bf8a3a93c6b37bb1260cc09b05e81fd ruby-enterprise-1.8.6-20080624.tar.gz=de58b97128aa65209f291c66eab7c4a7 ruby-enterprise-1.8.6-20080709.tar.gz=f0ded08cec64959fa388ec6a237b9c47 ruby-enterprise-1.8.6-20080810.tar.gz=bfdcf06f437af825cd9f2d321f9d1896 ruby-enterprise-1.8.6-20081205.tar.gz=50206bec9be2e08a862e5ec2e70fa693 ruby-enterprise-1.8.6-20081215.tar.gz=aab57b7d5061c1980bec5dbe311ec9b2 ruby-enterprise-1.8.6-20090113.tar.gz=e8d796a5bae0ec1029a88ba95c5d901d ruby-enterprise-1.8.6-20090201.tar.gz=a965e6789b553efaed72191825b13713 ruby-enterprise-1.8.6-20090421.tar.gz=c777b361aadccda7988be16ede7ab15f ruby-enterprise-1.8.6-20090520.tar.gz=156572a8296bd0440970a6bb95018a13 ruby-enterprise-1.8.6-20090610.tar.gz=0bf66ee626918464a6eccdd83c99d63a ruby-enterprise-1.8.7-2009.10.tar.gz=3727eef7b6b1b2f31db7d091328d966e ruby-enterprise-1.8.7-2010.01.tar.gz=587aaea02c86ddbb87394a340a25e554 ruby-enterprise-1.8.7-2010.02.tar.gz=4df7b09c01adfd711b0ab76837611542 ruby-enterprise-1.8.7-2011.01.tar.gz=4640634347cd8e5469cb718853e2112e ruby-enterprise-1.8.7-2011.02.tar.gz=8c5faa11c1ddaed3f44b7294711980cc ruby-enterprise-1.8.7-2011.03.tar.gz=038604ce25349e54363c5df9cd535ec8 ruby-enterprise-1.8.7-2011.12.tar.gz=1e5f3059d52a67ab5d91d472b756de08 ruby-enterprise-1.8.7-2012.02.tar.gz=8d086d2fe68a4c57ba76228e97fb3116 ruby-enterprise-1.8.7-20090928.tar.gz=ae00018ce89d95419dfde370fcd485ac rubygems-0.4.0.tgz=86a64616548a793e1a5f825f0dd385b9 rubygems-0.5.0.tgz=80d151edd94a06bcd2452a7e272b4d96 rubygems-0.6.0.tgz=5df803f5a04654833690dd32283de741 rubygems-0.6.1.tgz=c4a0faa9f876ad805ae80d1396a29d97 rubygems-0.7.0.tgz=ede9b55343219e8b3491793aa12c46f3 rubygems-0.8.0.tgz=9ef6e3c34dcb54e295c8e57321ddc079 rubygems-0.8.1.tgz=6276d268b420c0d61796cdbf6d28dae4 rubygems-0.8.3.tgz=6e6da80f61d6e77d0ad9e531767f6fd5 rubygems-0.8.4.tgz=a2ad2d03dae8a98002c2a7cd6c3ed352 rubygems-0.8.5.tgz=b917c084e1e6e99d8e102af8dd687ddb rubygems-0.8.6.tgz=9de98d2f62e3f91521b0207a4dcdeb5b rubygems-0.8.7.tgz=7fc04b9f9acc0c18cbbe6222be8d0bd3 rubygems-0.8.8.tgz=a8535e9c35a4c215d6ef9268d4bc69ed rubygems-0.8.10.tgz=d26592e280c0fb24c51f2837c3f48e67 rubygems-0.8.11.tgz=aa363b428c4c1fc2e076a4ff77b957d7 rubygems-0.9.0.tgz=5d496e1f415b8b4033ab867f01d1161f rubygems-0.9.1.tgz=a62314cdb174ccc88a27b8924fa79e4a rubygems-0.9.2.tgz=cc525053dd465ab6e33af382166fa808 rubygems-0.9.3.tgz=600940a22ecd79e28e0fd37ad1f1d871 rubygems-0.9.4.tgz=b5680acaa019c80ea44fe87cc2e227da rubygems-0.9.5.tgz=91f7036a724e34cc66dd8d09348733d9 rubygems-1.0.0.tgz=b0b74eac0cbfc5a13f895ab6f803edc1 rubygems-1.0.1.tgz=0d5851084955c327ee1dc9cbd631aa5f rubygems-1.1.0.tgz=85f994904c5b4045f0a859b29d0be717 rubygems-1.1.1.tgz=1a77c5b6b293a3ccd5261dc120641ccc rubygems-1.2.0.tgz=b77a4234360735174d1692e6fc598402 rubygems-1.3.0.tgz=63d3dfc038710eaf532b6a133225115a rubygems-1.3.1.tgz=a04ee6f6897077c5b75f5fd1e134c5a9 rubygems-1.3.2.tgz=6204d0a4c526a1d8fdbce746647b179a rubygems-1.3.3.tgz=0e9697db44d812712350baf28016b4a7 rubygems-1.3.4.tgz=b17b398503253bf36a101c58f02a226f rubygems-1.3.5.tgz=6e317335898e73beab15623cdd5f8cff rubygems-1.3.6.tgz=789ca8e9ad1d4d3fe5f0534fcc038a0d rubygems-1.3.7.tgz=e85cfadd025ff6ab689375adbf344bbe rubygems-1.4.1.tgz=e915dbf79e22249d10c0fcf503a5adda rubygems-1.4.2.tgz=b5badb7c5adda38d9866fa21ae46bbcc rubygems-1.5.0.tgz=49bef7186bf3c0ca6ee7adf4b585bccc rubygems-1.5.1.tgz=47577a5e33c9c6f1e3a56aff7f51d0ff rubygems-1.5.2.tgz=3951f94c09c16c774c8bcebc94fa5374 rubygems-1.5.3.tgz=38bbbdc17aef923fb41f054cf8421116 rubygems-1.6.0.tgz=abd27b5a9002100ff74ddb398a1c9689 rubygems-1.6.1.tgz=a77c64896aaa10d64aaf34f5c1488173 rubygems-1.6.2.tgz=0c95a9869914ba1a45bf71d3b8048420 rubygems-1.8.6.tgz=8e95d0c5b377a003f3d54a49461e81d9 rubygems-1.8.9.tgz=fc399445d693c29778779e5828ee5e90 rubygems-1.8.10.tgz=5b08ee31740c9b0bd36f6c04d537e7d4 rubygems-1.8.23.1.tgz=5259ce3eb7988950fa3aff9051a5de91 rubygems-1.8.23.2.tgz=fb377c7fd387df14a33e529153adc316 rubygems-1.8.23.tgz=178b0ebae78dbb46963c51ad29bb6bd9 rubygems-1.8.24.tgz=3a555b9d579f6a1a1e110628f5110c6b rubygems-1.8.25.tgz=1376a258d43c53750a8df30e67853e10 rubygems-1.8.26.tgz=0ea47f1efd010f4c82b8a51a934f48dc rubygems-1.8.27.tgz=6686ad26735c21d0d6e58b6192c7da5d rubygems-1.8.28.tgz=2df78039f391fb1f71c02c2fc5671c94 rubygems-1.8.29.tgz=a57fec0af33e2e2e1dbb3a68f6cc7269 rubygems-2.0.0.tgz=89ce467eb2d55657e9965a46559acbcf rubygems-2.0.1.tgz=2652ab6f001a873b8933e2ca09505974 rubygems-2.0.2.tgz=3471f140a70bcd32a7495b545cfce790 rubygems-2.0.3.tgz=854691f145cea98b4100e5b0831b73ed rubygems-2.0.4.tgz=3ec32dbe783bab37a87f50758f8efe13 rubygems-2.0.5.tgz=641d82672937d40d664dbc18f49cdcec rubygems-2.0.6.tgz=0633f50db16112bf6c3cf9bfb9ceb9bd rubygems-2.0.7.tgz=9046700f1222712fedfb836fafa08c50 rubygems-2.0.8.tgz=5432214a740c0d13482e43a5328a6518 rubygems-2.0.9.tgz=bc55898247297ffa190223276b1b1bd7 rubygems-2.0.10.tgz=5457ba403cd9a5f4f5fb2ef4a2a1c03e rubygems-2.0.11.tgz=0f28e3fde3348c0f23ceecba73a6cbef rubygems-2.0.12.tgz=99c416517e2de1146d2c6fbb4c4c1441 rubygems-2.0.13.tgz=3970e66a670ddb6d1aade9c7b18033d4 rubygems-2.0.14.tgz=4a7aa0b144e465230ab5d7b59dfd7e8f rubygems-2.1.0.tgz=9a9d242baef5e58fbfe79ec5206cd316 rubygems-2.1.1.tgz=b34d6f4028b69a84123a6b7cb0ac8028 rubygems-2.1.2.tgz=b5c5c4430be60f911014216d41886ef3 rubygems-2.1.3.tgz=ac7bbdfecd49f9304756aa5ebeb51400 rubygems-2.1.4.tgz=aa502b1ea90fbdd14ca9b32634795c2b rubygems-2.1.5.tgz=60564b762d4e186815997653b1c876ab rubygems-2.1.6.tgz=e11237a8f87dbd8c085770551d64a8f8 rubygems-2.1.7.tgz=b721ed7d5fd57ed05f77eb21a3a592ee rubygems-2.1.8.tgz=cc4c84c0482840389a457740e8083ed9 rubygems-2.1.9.tgz=2636bf26c0a9ec889c7bd938887bd9a3 rubygems-2.1.10.tgz=6fa671d7d6605de73d16f529cf7bffb8 rubygems-2.1.11.tgz=b561b7aaa70d387e230688066e46e448 rubygems-2.2.0.rc.1.tgz=f7d80b612339169569f2675155c202f1 rubygems-2.2.0.tgz=3c16e50673adb99d1ce76d5231f764bd rubygems-2.4.8.tgz=dc77b51449dffe5b31776bff826bf559 rubygems-2.6.10.tgz=ab5a0028d2a0653691b29d7463bd0892 rubygems-2.6.11.tgz=8d514b836fcf3ae2c20b4fe8d5cdc3c5 rubygems-2.6.12.tgz=7c454ef88b716c1a123f62b26bb9612b rubygems-2.6.13.tgz=e6f19b51614055d826e431549a12a80b rubygems-2.6.14.tgz=e0a6914ce03b91dfc6d448ebf292f145 rubygems-2.7.0.tgz=771c40015538c0f225c5249e4bc7d441 rubygems-2.7.1.tgz=65646f28f3c36ccaa7f991c17e15b8a9 rubygems-2.7.2.tgz=312a238ed98a61d2b3d165b790b6062b rubygems-2.7.3.tgz=fb3a1927a1842b75677a24f48dd63ddc rubygems-2.7.4.tgz=e9bbf5a4cc9a74293884b91f49603ea0 rubygems-2.7.5.tgz=516a4f219976003feb4b4f797cbc66b0 rubygems-2.7.6.tgz=366cea352c2b1243db726013c3d76fc4 rubygems-2.7.7.tgz=b6721f6ce4af08f68c6f513bbddfe484 rubygems-2.7.8.tgz=a3ed89a34e1ae8f9da0c620a8aa35f12 rubygems-2.7.9.tgz=173272ed55405caf7f858b6981fff526 rubygems-2.7.10.tgz=464754059d8ca01c1121a1233d866e8c rubygems-3.0.0.tgz=3908105894e531f7ad3aceb8b41dcbcd rubygems-3.0.1.tgz=1e8af9b87a67f15841ad2be7d5725a5f rubygems-3.0.2.tgz=d8db1b516ae1e35b8f6f56cb526f879a rubygems-3.0.3.tgz=b7a7dd5f85485334a6cb61b7dac20cff rubygems-3.0.4.tgz=7d0c49077a2d19f48d88567cfa3cf17a rubygems-3.0.5.tgz=4664467d621d719688e4778d147c306a rubygems-3.0.6.tgz=60d84e843b131fb87c8fd67e8fac6470 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=3e9afdf72f153e2f66259fc2b6fca594 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=c30459287aec83548cfcb17340fa73d5 truffleruby-1.0.0-rc3-linux-amd64.tar.gz=138f6814451ce634b0fae3aca5579248 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=94ed54ecb65bea2166a2159431b0362b truffleruby-1.0.0-rc5-linux-amd64.tar.gz=9e5428611e22b093d05afebbe0ccbc2b truffleruby-1.0.0-rc5-macos-amd64.tar.gz=b32a254fed71434c3431fb2effb35c5a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=7f394a8c7fe356b7bd36683c57f74ebd truffleruby-1.0.0-rc6-macos-amd64.tar.gz=f033329d03f1f846d25728c2af9d7524 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=184e98f2d6939f63db4b915943ff60c6 truffleruby-1.0.0-rc7-macos-amd64.tar.gz=d19213b33011f7a55e0f32d25e19184f truffleruby-1.0.0-rc8-linux-amd64.tar.gz=a394167c0331c6d8c1123e1f992e5411 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=dc1bf0fcfdd5837ae0ca56d6d6e5f7b0 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=f6ec25bd532bf0551d35327d1aa4caf9 truffleruby-1.0.0-rc9-macos-amd64.tar.gz=c80a345f9071521cf1961ab75ebc7dd1 truffleruby-1.0.0-rc10-linux-amd64.tar.gz=3a889726efcdf33feb7ef3df13fd5f39 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=bba618b4483b79eebf9f0e7af4078502 truffleruby-1.0.0-rc11-linux-amd64.tar.gz=a25e179ca0be96a1bc737a600729c195 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=bb8d8f5525e1ba86bb039e56291c6c7c truffleruby-1.0.0-rc12-linux-amd64.tar.gz=872774837057489250527bf863192115 truffleruby-1.0.0-rc12-macos-amd64.tar.gz=bb4a64e6c4882fd0c5e412bf9c57720b truffleruby-1.0.0-rc13-linux-amd64.tar.gz=0f36eed2eb36846785fdd4eae24adfa0 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=1bd3087a0f2df4c006b87c9488ada6d4 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=9eddd1aa98c9649e7c01bb10bf28c471 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c93643f1d00b370411310ee7a1dd5330 truffleruby-1.0.0-rc15-linux-amd64.tar.gz=bc7339a6218ea991f2c72ce8759cb6e3 truffleruby-1.0.0-rc15-macos-amd64.tar.gz=1671d08dd2f5026d58b326fd55c9b7de truffleruby-1.0.0-rc16-linux-amd64.tar.gz=5564d17f19b8ee0edb96ab5b1bfbda98 truffleruby-1.0.0-rc16-macos-amd64.tar.gz=61583b529b6a1337398b0966db952d24 truffleruby-19.0.0-linux-amd64.tar.gz=006220c7bde7d0b5c72481133624a83f truffleruby-19.0.0-macos-amd64.tar.gz=9ef7f5a311465d35e54ac6e00ec3d169 truffleruby-19.0.2-linux-amd64.tar.gz=2f7fe574e0695fb6001f4f5282aa2f79 truffleruby-19.0.2-macos-amd64.tar.gz=aa20f76b3eac1f4976a507364201d1ad truffleruby-19.1.0-linux-amd64.tar.gz=71368f8371069017d911528f052b0a55 truffleruby-19.1.0-macos-amd64.tar.gz=7f086adbc89fdfaed35273394ac3ac66 truffleruby-19.1.1-linux-amd64.tar.gz=c1ad4d17bb40e214b124222f3a7c6db6 truffleruby-19.1.1-macos-amd64.tar.gz=f4e76b0612319b4a82480cbd1fc90210 truffleruby-19.2.0-linux-amd64.tar.gz=458ed5fec1a849ef5b00e19b0e25d5e9 truffleruby-19.2.0-macos-amd64.tar.gz=dc324575ad20e3054980835c24ea7161 truffleruby-19.2.0.1-linux-amd64.tar.gz=ad7444145550d89931199159163077c1 truffleruby-19.2.0.1-macos-amd64.tar.gz=b5bcfb0aaded1e2d1763089ab6c9a14d truffleruby-19.2.1-linux-amd64.tar.gz=fc4879d2b0cc22c152a8bf893a72c346 truffleruby-19.2.1-macos-amd64.tar.gz=71448ff3f8f1da086f222751d3f853bc truffleruby-19.3.0-linux-amd64.tar.gz=dd44ac30b5a1ef3a7d61172cda9b30b6 truffleruby-19.3.0-macos-amd64.tar.gz=41daa52f0f308abb77a2b91c1b7e0f3d truffleruby-19.3.0.2-linux-amd64.tar.gz=2db2cb5c29523c9bdb6f59dfa0bd74ce truffleruby-19.3.0.2-macos-amd64.tar.gz=edf1603643938686dce57139aadf7d3c truffleruby-19.3.1-linux-amd64.tar.gz=a14c028351f7a3965bcb56e9b22364de truffleruby-19.3.1-macos-amd64.tar.gz=a8707d0af3eda694ec07a5387d3443fb truffleruby-20.0.0-linux-amd64.tar.gz=b30110ecbc50c4fce402fdf44c45dad5 truffleruby-20.0.0-macos-amd64.tar.gz=0671e5909cefb9a2c12c473fc0110821 truffleruby-20.1.0-linux-amd64.tar.gz=4592b5fc3636d82fc998ab6fe0a43584 truffleruby-20.1.0-macos-amd64.tar.gz=3c0be43db86817c7037d3ff5053d322d truffleruby-20.2.0-linux-amd64.tar.gz=e9859decb24829f9a189d88b3c2e9b79 truffleruby-20.2.0-macos-amd64.tar.gz=49e7ccf8f9e60d6c59b3b07b854466cf truffleruby-20.3.0-linux-amd64.tar.gz=93a20845f7d9d39100761424dfc0a734 truffleruby-20.3.0-macos-amd64.tar.gz=b178b7a94fac58400450417612fe3441 truffleruby-21.0.0-linux-amd64.tar.gz=c03304a505c8699e697acecf5030d95f truffleruby-21.0.0-macos-amd64.tar.gz=019796be37a58ef8e186a625f2ff5d07 truffleruby-21.1.0-linux-amd64.tar.gz=065bfcc48f6925410e0da21e16428b64 truffleruby-21.1.0-macos-amd64.tar.gz=325f6854c10d8a3a114c80da582c469f truffleruby-21.2.0-linux-amd64.tar.gz=0aec44721a040845347f18c1f72ceb75 truffleruby-21.2.0-macos-amd64.tar.gz=76d27715b20902df5779f7a0c00852b1 truffleruby-21.2.0.1-linux-amd64.tar.gz=f68e9b8a9f9cae5efc5ac45a7d9e760d truffleruby-21.2.0.1-macos-amd64.tar.gz=b021e50fc94cab590b49d27f2ea821b0 truffleruby-21.3.0-linux-amd64.tar.gz=359aca79cba4e08f9955d9c6543c2189 truffleruby-21.3.0-macos-amd64.tar.gz=d9e2e2c6fcd3ac16f0c37b0ccffb4f41 truffleruby-22.0.0.2-linux-amd64.tar.gz=324327026e9b2963a8e5fb4ee3f4e216 truffleruby-22.0.0.2-macos-amd64.tar.gz=7029d0e291d498a264d9b413729a3e17 truffleruby-22.1.0-linux-amd64.tar.gz=9329cf507ba8ac529e93156cacc1425d truffleruby-22.1.0-macos-amd64.tar.gz=353242978b46cafc34b05e2c81206096 truffleruby-22.2.0-linux-amd64.tar.gz=5d676377056ae94fe847be721c20405b truffleruby-22.2.0-linux-aarch64.tar.gz=b774f4b7d330842521f1e6e56cb41db5 truffleruby-22.2.0-macos-amd64.tar.gz=e45fdd9a05aec6220a76fb707b0a5ae8 truffleruby-22.2.0-macos-aarch64.tar.gz=ebcbfe056d90d06de4bd0a9d699bad8f truffleruby-22.3.0-linux-amd64.tar.gz=ada8bc5dc52aca8317eaeab04d91e877 truffleruby-22.3.0-linux-aarch64.tar.gz=11493301d5519aa73e8f0e140cefb581 truffleruby-22.3.0-macos-amd64.tar.gz=9e27c677637b69b0460fb0a4569a5cca truffleruby-22.3.0-macos-aarch64.tar.gz=eaa1c9020b521226f8bb48b8c7e5c596 truffleruby-22.3.1-linux-amd64.tar.gz=243d926f038fd2220c03dfbe40ef58c3 truffleruby-22.3.1-linux-aarch64.tar.gz=01487fe680863381489bf2a0a2ac162b truffleruby-22.3.1-macos-amd64.tar.gz=b3d5a777d94856e51034d81076e8ef72 truffleruby-22.3.1-macos-aarch64.tar.gz=320ce75730a5b9f16f111eb7ef5e4e09 truffleruby-23.0.0-preview1-linux-amd64.tar.gz=76c1cb23ee63ba4de93a0c23784bfca9 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=eec3fc74565f08e9468982692f7f9010 truffleruby-23.0.0-preview1-macos-amd64.tar.gz=50e38f3cd548dfe78f397f76ed577bf1 truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=b769bcf9b843d9b2980def1e2139284f truffleruby-23.0.0-linux-amd64.tar.gz=6e1a491406c5dbf42de10fcb3ed7dc1c truffleruby-23.0.0-linux-aarch64.tar.gz=5c3663f64bee707173b2684355a9a42e truffleruby-23.0.0-macos-amd64.tar.gz=515a9a8a0f39ba9399e869cd418ebff5 truffleruby-23.0.0-macos-aarch64.tar.gz=57e5fa52270e692b82c445107fe6b6a6 truffleruby-23.1.0-linux-amd64.tar.gz=f7511c19045e57e72f9b5415bc17c8e8 truffleruby-23.1.0-linux-aarch64.tar.gz=e8a20dd919a2ff77b7cc5457e853d15d truffleruby-23.1.0-macos-amd64.tar.gz=d3b6a3cbc0a230ebae6f3a462a32ddd3 truffleruby-23.1.0-macos-aarch64.tar.gz=ee74fc5d192c2fb8afd0458d2d429c02 truffleruby-23.1.1-linux-amd64.tar.gz=d7e1c040da170aaa36b5f5a1d106d237 truffleruby-23.1.1-linux-aarch64.tar.gz=cf508ba3787be20c03bac690f3bdbac5 truffleruby-23.1.1-macos-amd64.tar.gz=a662a8672871524808500dddef3808c1 truffleruby-23.1.1-macos-aarch64.tar.gz=de543312024993a533e3caa63b396127 truffleruby-23.1.2-linux-amd64.tar.gz=e3e5b01b291d7fea61be2be842c7e8dc truffleruby-23.1.2-linux-aarch64.tar.gz=8fe26f643fa81eec6de3bde7024c858a truffleruby-23.1.2-macos-amd64.tar.gz=83bc41bf699fa847df7e60412bee2823 truffleruby-23.1.2-macos-aarch64.tar.gz=7dbd2e182cfec0cf2d2e37784721903f truffleruby-24.0.0-linux-amd64.tar.gz=202f05706d28faca75d5e3cd0f9bef78 truffleruby-24.0.0-linux-aarch64.tar.gz=4faaf4edde4f6a516246b7c2f4ee80b3 truffleruby-24.0.0-macos-amd64.tar.gz=d07f27e0e29398c6de836b0049105c12 truffleruby-24.0.0-macos-aarch64.tar.gz=10cf176718968893468caba617c02141 truffleruby-24.0.1-linux-amd64.tar.gz=2914bfb81b136cd1fb5736c0a40068e3 truffleruby-24.0.1-linux-aarch64.tar.gz=429e6ada9a95ea23ebb95d01f90eb0f4 truffleruby-24.0.1-macos-amd64.tar.gz=e3aa5ab128f5d169d93f2d6df98c4e77 truffleruby-24.0.1-macos-aarch64.tar.gz=6f81a1afe1b89a40f00c9bd4216ec45d truffleruby-24.0.2-linux-amd64.tar.gz=1a826ea6323a25becce5940d8e6c4642 truffleruby-24.0.2-linux-aarch64.tar.gz=45429f35653bd8cbc328eafe81d15e8a truffleruby-24.0.2-macos-amd64.tar.gz=f68aeb26783d048ae5f78e1c13739747 truffleruby-24.0.2-macos-aarch64.tar.gz=df05f94696b4f4584a259001a3d4d1d0 yaml-0.1.4.tar.gz=36c852831d02cf90508c29852361d01b zlib-1.2.3.tar.gz=debc62758716a169df9f62e6ab2bc634 zlib-1.2.5.tar.gz=c735eab2d659a96e5a594c9e8541ad63 diff --git a/config/sha512 b/config/sha512 index 7ba5437..ade1c1a 100644 --- a/config/sha512 +++ b/config/sha512 @@ -1082,657 +1082,658 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/16.10/x86_64/ruby-2.3.1.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/16.10/x86_64/ruby-2.3.2.tar.bz2=4976f36f8c5291facc9553fdb2dd0c6a23d655461a8f8a7965e871edbb8cf9042df3e2292bf03ddeec455570835b834278f0beb32baef26fc159e4b4a86d6614 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/16.10/x86_64/ruby-2.3.3.tar.bz2=d77a51c0b1d0cfcf0b0385d32fd87adc57896f64729ca822f7c1bd7ecce79264b8b5e1799ebe0f7b079f4590e7740db97d027ef4fe5387556dce2c689630f118 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.1.6.tar.bz2=e80ebc162e44f407f5c830fb55f995ce29e28ed871d365631764db395860239bd570aff3092b18b169ef0b9b70495bf86600677c616cbd63c80f1ab50eddaadf https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.1.7.tar.bz2=af76486c65259084dcc3afbff212b7cd5d9e17d5ac6b496db37c6c28285b41f0a72523b92505df2c7efbf5e64ff7dd6d86610f84c5efa7452d2bd01908ca0390 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.1.8.tar.bz2=8f8829fda202863105c0453ad40e1f8806833446d44fa01f97e742e83cb086da7eeaf3349899c9120879395ede20a192ef4546a00062585e47b6b2fe2253c89d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.1.9.tar.bz2=3c249490017b902b43e58a199dc420b9dc038ec139949d9bc620f58a70c7f8dd093d12313f695899ad53ee314c4bdcfeaa50cb72c196b889f38faa22936137c3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.1.10.tar.bz2=6bcfe2a2983f6b476adfb7863c9b483aa0c7cd84abd70c59f4de427ee6274bed71200cd91269bc0b3cd418645aee6371cfd3cd77e93b98a2c6c64efac6e817d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.0.tar.bz2=e610c0029dd68d15b582f09086ac39a6e5d039ffa9c18e5fefaffe4b0279445258050327bf7c02c8ef672a7ec58a32f5850c044d9083694d0b55424f2b75e945 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.1.tar.bz2=d841aff173f5a0af71384b56e1430395b287a771f80131279e22647e368acb20b5c22e5c0d4858510525b9783da499b6f6fade081e1d37fac3fe7a50cb34cee0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.2.tar.bz2=17be6eea903f162178edae84c67f263b9532405c0cb5bb320fa51b019869d114e0dc4ad7fafd6cb2597e45b73d4777d3c4e0d4f22141de30bd2ad02ccdd41ee3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.3.tar.bz2=8dd4bb1cafb2d82586b199bf032edaf23fd9bcf8a05b7e2087de172b8a8c6c4fb96584fb15372033b97bbe11a7f8aab25057c03d71e5ee21ec4a647f95687413 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.4.tar.bz2=54f9fceb0496f647b3c59dd7411a583c74e7886d8f127aba10379de739c85e45d62c2688280ba5d21a45c5054f42a2645ac2a9d990ec1a16cbb2c533edd9eff4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.5.tar.bz2=1aee7aa974a08c6bb5a29b0782efa2950c1e530bc2100e018d66450e8e89701673a034a45adcf70bdc37f52d4027ae263d7e4410d64fc637b594ad624f10a25c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.6.tar.bz2=693173e4e235300cf30ce1592bada6aba5bb29a123157aa419ba8403757682cff31c9b2b0a4e97daed557953f52c26ebe0e49605e1d12f5e4247e0096d736630 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.7.tar.bz2=8af3b57425f7cac45e7bc61029f872facc87e9ffeb3243f8fb43407cbc0a581491f38091b0fa45c8c148b730fd8cd493aa5286177b68092d7944dd73ba585299 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.8.tar.bz2=f1a7801bd0116914a055ff4013840faeac0e432b55aaae4c0bb61eda3d812eb5b3093c2c536fd9e2e28eca81137300f84418d8bc8dd9e48ffe245ad90dd3eab7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.0.tar.bz2=e1fea7c85410615f76b02df366ee49f929cd3bf3e52c3fef8b848a8a6d2b982de03c325aac664c6550b216a11cde64ae571bd5a5467ddd4a8b61039d874b2955 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.1.tar.bz2=e8b6b5dafc4b46e97fd905a5396d09ee1cfd1c0b4b74b9c3bd9e1056684f05345ac1599817cd9cb1dcd410e4e3ea23d5f2fc86da12e01fd076434c1b2917f117 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.3.tar.bz2=8172c35a381adfdbf0f90fddf526e3a5c5d4590e133e041aeb339137c1c31f16a47b904c61048c29906dfd2245572dd69caec507432628bbc98bb3eb94891575 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.4.tar.bz2=fe9370f2f45c557fd24574219e9597826f4614a8c59f092bce54338a2e927d16bfd4abbcaf0203a60a35a11169310d45e79c4a33fa4d45916bd6e4eefcc7b888 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.5.tar.bz2=e42fe5b628b6a6cfc87abaadbd9140cbc5c0000993c3272740ee6e20d07d2bacffe5148213f9628d6bc6f97211c0905e55d7bd304763ae095d86df8c2b2d15fa https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.0.tar.bz2=baadb5c405fab06da091e75af6497370757cb694d50c9f76fb06bc0a281df13f4ae893df49657c7dd7e86dfbd052d2cb7297961f9739cda4089ed71e52ae7bed https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.1.tar.bz2=71ad68ef1317ce5ba51353cc226fc7b11923d9022770b355cb1180be7c2ba4bdd87b079a8dec15c09ef3ad42056018a41a603bd0a10b8124433f36b0930153d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.2.tar.bz2=440f27f682a7f9d2a99ff8c0687c1fecebd8bce494b9db48ab9d303250b8ea12dee51eed0f68d940f141d8e2699653fca7d2a6811eddc5c512a9fe39430fde3f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-1.9.3-p392.tar.bz2=3582744ce4a4ca8b497c918e129823167e80909367d65484c2a09a8e6fa185a38bfda8c1b6676742acb492472d0687fc5b6eb18965201e0f54268d835f618df4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-1.9.3-p551.tar.bz2=fc04b976fa02fc5c1cd4ccdd49948b5e289b3a5bba16ef99266b65fbb35f0c20a0ed02d5b147f2fc4469db6a7b6665d34e0373dba242ff04c95fa27642cfde1e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.0.0-p648.tar.bz2=7dd451549e9c1a43ef86be51eaa746344c424d1accbc9cfd360067c3aec20db8ffee277e1108d40c280f1b8ec0851c6e51bc448f25505508d9af153878d9b091 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.0.tar.bz2=cfe087a9daa6de2ef00a6501d568a25a3386da730304697e1bdb9fbb098617a143f073e58629876de4f09a1e8a60a48ec05864fcbccbd6733d9e1b3d309a1100 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.1.tar.bz2=b74cc64103a31b9b9545474fe202ab9f9b15569681262438056865e4dcad08419c44bb696c7dc8a18f72b3bd8e5e98201d0c3608ea652c907372c3c95cb7e16f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.2.tar.bz2=fafffbcd24eb3c55c89704e6e8ea48ad6be286bbb4e38f56c3b3d61f9bf4f6bec28882da2ff60f17f79516476ae50cc4cb8c6a8cf4a0f31b910d6153727caed2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.3.tar.bz2=4daaf8bba3a04d46e04720ff2af1469e1caa68168f5c27d1d3e0cab922055b1f9c0b26ee64c3cb46c17b6a9651ee7a11bad19e9414102455e96454f1a7929408 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.4.tar.bz2=988c13e900168b901a3a3deb4bb96e19b15205cf4c2793b56854b58924fff652946a083be6615b2053fb5285df0fd218d1f9f91562798f0386f0758973765dcd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.5.tar.bz2=c7396627e45d8df68b18c2491fa756085aeb4ec28c1cc707617cd903fcd47d4fdd3cd6ed225dccc14497afb14200b9bea5ba38f1e8dc621c4aea8b8f0f1ccc7d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.6.tar.bz2=389aa514d93d165fe299856a5348b1667f295aaeb49094bb5ff49e9c6861bac603e698c36bf81777797d05a1d3c405e37c1a00a4dbb85f262bf02c1b0e16ff04 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.7.tar.bz2=5a38bc1dd227658347114b935ad66e27fab67b8da9529a7f9083d6aac5743c40aea8c33ca95d4f10ed1d56f29bcc2c0747a3e88b87425a5786245792d8851301 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.8.tar.bz2=44e36e4918ab4c354cacdd20be30acf12f060aab808172184251186758f750ce688eef72f39ea110ab6429fbaaa5a792b1915a5c2d845b6e22a3cc4bc851c6b9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.9.tar.bz2=358f12ae2d4e177a080bbcde8b275691418884eae9a42c98161170c7b0f6029ffebf7ffad27961bfc8a50a393796934a2dd2c7f0ad2a35992c35dbd6c8c6349f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.10.tar.bz2=e7e98be6cf658eaab81486360f4d5d22f86805582feee4aa11a8e2fe6b461db69b850c7ea98840af0811910be7f534317ab5887bc48f47a9591b65fa7262feea https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.0.tar.bz2=307ee69b3051fcec2942fce075232a62f6adf6486239a89fab7bd63a9bf068e36371e67a5e42f86ed60e31b8219ff431c2d4bcf519b2c10393504942d2d90a9d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.1.tar.bz2=a0a30a805be9c43cfe52793d103e9f0dc6076d02b0c5af36d650564aa43958164a278958f7a7e1132ee5d3357cdcfaa8d59a4cc0bab027e288d935a44958b743 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.2.tar.bz2=d3218d01a18f5dbcdb65f216469a463215784170d32110f06372fda6325bc17e2c2aec1601a5bf3319ad753b123de056e6bee8aacdd7c64c4859570d40571ec6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.3.tar.bz2=4fb3bc10aa46a85cc37fb041d351b2a8f74d70c3de32fbceefebcd6e757cd8dffdfc86cd14fa6ae7d5273f875e1d4e13e6446b6dd1882c8fb015d1d34ab5ed2a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.4.tar.bz2=a008439e903b1e97eb5a66a88cf72c2e7438b12b78750411ba0ffa496c68beb8cacc2037763be1c8c8841fe9a248d4be0d0976420db0520b4b8456aed5480f3d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.5.tar.bz2=14573495aadfabb81b985aa485c0090a816f459a0db8e790a7d1bd948897cf650fef4e8aad7d2ab8232d2ebf56bf08363730dbbfbc2318625dcab04d3904b3dc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.6.tar.bz2=e915bc10ecd1129d7ed55a12fdefdd6b6fccc281cb3cc0790e5970978f17652068ccd7fdc160608cadc8556abb73a2c187d041899adfcfcb4a311285415145ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.7.tar.bz2=d80b934273b84d7ccc4e17fa07c9e0a0f95cb4a38224bd60ff73772ef7ecb3d1974e686bb10aa319642709e49789c0886f98f4fc1ccc5312a19ca19f03674e7e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.8.tar.bz2=9bf0cc35deab5f53900bc8e8264dc1b57f91a3477f241848df48109f4b5c97f3140470f523fa768a7543c61cdb7a93427866d871d09ebf8060a5cb75ac6d3790 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.9.tar.bz2=0cdefbcc88c5b9d34c08c8871c548772bd473dbaf54738f9855afddae8da5eecda607b36c546077efd0165114da385cd1f296433afe411f57a524fbff0a69291 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.10.tar.bz2=3aed1b12ca46e34fce66ac23bdd97ef815918275d91ca4723f9a6f2a2b93cb2b66f845747951593eaaf078bd0d982e06efa7641fc3e11d141b7605b086f93393 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.0.tar.bz2=ac6a699d5d08b33e7580a24c9357c0c8e8378208fc7385f5582f088a879f61e48a4654d72f03263a1dcf33fb0838b01c8c21fd39c5e2549d683466e0441381d5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.1.tar.bz2=77cb7698c66ccede33f558f6ab9ebe4be3b775a567d1d4dc12fd85d7b0f28d7bd446b18ef48ba1c879dadd76b50540b57f283e9f226e904e620afc3ba6585bae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.2.tar.bz2=9592c8e2fd9266f5d1cc780706f558e15d775cece995f5b6e933c54be7b7f2be2839b28ef1898b2072c5cdce36b830e72f967062ece4393765f8dbc88c6dff88 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.3.tar.bz2=8243575f30eb38409003b0450ddece621a589e29a4ffe219410820bc2afb97b7daec4c81d59d95dcfc83138414a2df707c925f0eb56907d565dac4bbd5a929d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.4.tar.bz2=ae16edab6e55d1b2506c4cb30d836639035a7fc153511125b578d6da8a8b40cd87650855fc6b4cf777c1fa0428c593325af88d9ad25d53acfbde0051a730eaa5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.5.tar.bz2=10f4aff595d12bdb425eb3268c868e0efb92059e6aed8683fefa5abedc1ef21d23a45e17802edd8e5e0924ba1c3277b653c0559ef4ad4c9dd2be2fee17226f8d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.6.tar.bz2=bc352df203155008da7a1099f7f7d26eb9f80e0d2e41c8adec5eb47f976529c6126bccc207563de87ccc2867d1e4c43797efbf295c9a7a4afce002ee19116074 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.7.tar.bz2=d71dc217011d154ef7b33780366bff07e4232ae77321ad6d16f19090f924ed3867c31f2af4aca4ffbc6a536b0320b676716ffb43e34b0323e81eafab13f17fa1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.8.tar.bz2=aae74010426e2a1288280f3611ba6aac842ff573f9b122fda9a4f1c514e09cb3d22281e6957b4acfcc753c94113852e083a9a80d0cae6b33682b83669c475eab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.0.tar.bz2=4a083c168d9facf3346b67dde02d9705109feef6fcd4e3c7c59c2bcb35c83597305e09ee143915fd993799a888d6d9ffffadb386bd57e9477312566dd6164deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.1.tar.bz2=58b30b00156691de2acc5d21d3255029fc3f9f2536e668298ab160d300fa0bf3eb0705aa524c9123ff09d770807cda0154bae012632b7e87120d7538f844560f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.2.tar.bz2=4c3c586765fd5afb55383d16eb9d0e7ffa5b1ff988a2b1d847e3f972a211b2401f035ff6c02d71de558cc161655438727079aafcc8ab80c97e07e16cd7fb1304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.3.tar.bz2=e66a4ca4b95496964ff4d77e36caf0894d913c1116f901c9b589da5a0e388302b64a79ad6acfe7eb1ca5917825bc0f866b482f074f1d5fed96d91e238f7ef454 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.4.tar.bz2=f95eee611be949327224b89942f4344e7d8e075b958ce3418b5874e9b23981113e4fd58254629fa9f6c2fdaf5840d44785ecf5f04433987f8fc4415df5c3e367 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.5.tar.bz2=447b28420be5b19f6b1381d232920e3c20bc894c2e0d1d2e394cc44e7859d02d177ec3ee09ce96e922f55b7fe2651918805f00fb783af3780e5f25c21f330195 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.6.tar.bz2=5f60bde5843fdc0b05bb852a2f1b30ce085dbcf7acaf105d5af951398b845c766113ff3740d44585ce3814b4953c004230eb4dc2ce8746b6236ea4b7a1d1cb10 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.7.tar.bz2=929a03725dba7de8d7eee3fe8987b858b9b9d6d377beee710af5c3e84b02501996444aa7b2c1db458aefc3e765da17cd17ac30fb0b4d77ab1e54239e72fa2a63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.8.tar.bz2=227849b5809072b3aee211125c2aad3e2e4984e9d9b4415dd8c01dbff70eb9c3758c3cf54f2b97fe282f7a42f205a2becf7b86e1e6ebb4a4d048ca32659603e1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.9.tar.bz2=c15a46ba1e89cc41523a21eec90d4e3af5b9739d27c2f2b51047f2c1db832e2773cbc04871a176f71e7124eb3f7b53262e40a1baab87262f8811a8d69d8e5358 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.10.tar.bz2=b83334e272e78995b699de28bff67accfc151cc7fb193d5c5746fcf06087643564b3a0b538cb64f50706642a620dba2cc54191357321852db42cc8c5648270df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.0.tar.bz2=82038a66827fbdaf60f404103b3956ead4e03c999893f0095109e7d853919992cab615f85cd96ba9158402b2de5a68fcbdb8b32e9d07c6f754e0591f72851b40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.1.tar.bz2=31e9f176ba61480b33b7761d2a19119a200ad61c8f85145f736eb196de50babaf278d023b274274c6a31f2173c5d022bb93e0f8d46a88223659d8ebcf6f5e278 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.2.tar.bz2=75d25fa6dc81ce8a62d02adc2e163e7c222c5946116c4880cec19460e2309457ee1a11a8eac94243ee8437514bfbba9ebee939218b6ccc7e5c1f15b673d432e7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.3.tar.bz2=84c93c85aa3733f2ac82e695c19e714ad4afd096edd6abda8a4915311d1f604453fc3fdc290c6ae1f9055d305ef400f8f8f152c5e15eb230baf7cfd5e192b7fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.4.tar.bz2=131b874ac376f42f3427dcbeb0adb0edd18ece834514ff5cc15f3b3e29b8f14697050051224d7ba2b509d428f780c653a4d7101149b8ded41ae373aab871e90a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.5.tar.bz2=f55d2ff7f2eae4d30fbc14226c928d1caff21db1f2cd559d3caeb0c07a7a3f034fa369d95f783e6f38cecb493d99aa1928def9d8574698e3edea3d33515749f4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.6.tar.bz2=06b12b2a1e85248311cf55620499806078b3b67110fb45dad9cb11cbaf1e230ce8a0da23c7de0a5abfccdeada8eb799f038b1a09980ee9572ec415e24fcf8c76 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.7.tar.bz2=49128b7845954f1f04502a484f17d5c0c6ecf8990047f5a383b2752ea9e09839e5994b210c2f60307d44ffa8b440472116fa1231ea899caf639e1b8a72f7f97c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.8.tar.bz2=24290aab4e0d48719659f8c1153d2b08020f17ae845e9ac6d6b6d3203e4a5b19061e907a214e8d4390277584ff4b46dd4a0113c6b201fa37e8a95c42fab5aea5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.9.tar.bz2=c2771d6b12f4240200926b2c40ec1bd3058c9ef213e2c6032e44799fa34b75b00f2564a0f7c0d9f972870d34c7742174310bfe3b15e2742a17ba2fa05e5a27cd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.0.tar.bz2=1be48c38da41f462c23d516f465ed34e2fe90c6fd53ee06f1efc9107077d9937413bee589d5d3384aee5c09da7087fa84864a50089bd1cf3c385ba3399e9b0a2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.1.tar.bz2=b7e1204e0e501312828ca0e30b77434b2d8d94581627196f0195ba93fb10a11046d44942393bd8a261585c564bc721313152a9087aa56b57b433ed14cc7922be https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.2.tar.bz2=e91a187a9e726ed26ddfaf09cc49473c8379545e2265934fcd1a1fa78ba99f9a119fe2c3c8247eab583389c3af7ec40a0e71da19f6ecc17ffc086759cebaaa15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.3.tar.bz2=77d9be5bbcd115131ec7c842a4449729d1515bf2106a6a235472dc96b58a56873c2d0fe6a3b824dd15ad00194b30e72a75813d8b4e10ee11cc793973130e2401 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.4.tar.bz2=a2e5409a1a88557bef747ca9b1ea65ac90e430500a8f9370023b4314cb5d1e0679a1b03761980ab2e933ac3521188e2151e521408e33cb4dde5f0bf802d81a41 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.5.tar.bz2=ed6288a4d81a740d722b43925db8f22f794cc704bf834a1f9c844e2072baceb8938547abb8f4fb1a50f92c34a8616904fc2679a44bf4adec4e78ce00e8456b45 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.6.tar.bz2=08cda5ff00b9297b46d1fb620301066b21240951924337b8b87d27526e55024e61121e51d9b35feea2ac5eed4027658b39ff487195140e7abe9158181c3349af https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.7.tar.bz2=3cc5695814c4ca49b6a0d7790093e85f5a359c5411618a12e60f4bda75c3635b94736762983e287cd04ce3ee3155d824bd9bb202aa929f85387a741d1685dd06 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.8.tar.bz2=91e371298a6dc1083c8b6265cc8d3d388d17a21d59e0103bba7e68640f80bdd12b98547584b1cd0feb7f8dad6ad530ef5660a154075960e1a76061d534609296 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.9.tar.bz2=7e3d0f7f42d644cf4eecfd88801afe088260d5fc8f490895378d5e4ede76b2bd67959b9803db59f7b19287801df43eba920885aa1bcd29f60d225745d67093c0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.10.tar.bz2=64683129da9a476d268ffde06bd7aa1c67b3c7c97b539d856833ffb127f458a55176d8b4a101e60b18ee923485097f3bd98e8216c3092c3d0527f6111cf7a051 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.0.tar.bz2=cada908be34428bc2f302bad6ebd778a2c7a8e979476e00e45c9444b65d7f48f397b838549d56ceb91f0e5593ffd663e9facc4ea5f5c6a4aecda85a5a1136496 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.1.tar.bz2=06cb5f2f0c0941802119dbdf34995446d6d69ee59eed9a5e9d7f9e7f0e14de440a9e77eee330357fa305e81ee39a6868651c740ebc91bb9a2085a74b33685f4c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.2.tar.bz2=23654c65e6e62354857f86098852af0ba50a15643df5e7f6fc8b710e35a3872f6eb7dc1bf9266375361f696d8ded0bcdb9ee9acdc8d0c975955d299292da7e21 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.3.tar.bz2=ac02a93a62c55a2a10dc260cd52749bd8f4bcf1a2d43dad3cfd2e5c0bf7800c51a5b00779526d84f759f6d50ce673c7f3e526392c4ab68322649f4fe980f2ac3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.4.tar.bz2=88651ffa2f1623ca3b93b60a591e828ea0dcfc73daf1eead2629531beef291331f8ed1a4a33d682828ca60bacfdd7fea77bcd67f1a0bdbfa9d1e4f173da53208 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.5.tar.bz2=001486271268cd1d2252f46b32001b25d493bbbc8ce981ecb608eaf8d2c2e6d6361f6d9bf052b9b2d7694e228bc302a1082689f2038564439705fbecc00de1ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.6.tar.bz2=a48c974f341cd10143eacf46a9d0eef45cfca3ed91ebc9f7fcbba73d408408eebc60c55e15dab391bc4a9ada6777e2be3ec4b9e849927c5782f4443a813a6ea9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.7.tar.bz2=b9e99d1df4a772441edf7fa4e05dd5aaa62efcc5a8c89fee68aa80c4bf1d17ad0e5ecae5682a10d2eb0ff78ee79c583f0cec46f5ac11ae874126082b9f8d76e4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.0-preview1.tar.bz2=8fe71fdb37955b031769359dadc5062b6c15e0618fd8961c932212a6a2610829aba8b1dbdcf4bdcc2e133665e043b29088f714874e3ef3a41d688b7beba78928 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.0.tar.bz2=c51f55af33e09ed425715dae0dd59dfa253e909bbd44b4bf3dc34452656438c23a754f6b2ccf0a3e878463519043361dc7ad8a757c87a3ae0e747599547dc7cc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.1.tar.bz2=fd09a4d721388c2b9f2fd09b68175dbd620e11df02ff7cea4e438d3205494a9883c25def06d6c1ae4207e7f82bc48fdd122fe12630bb9af9da451ce6be19d86a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.2.tar.bz2=2ade19f26f6e2eaf65a8ac3e9ca21cc8fe04252df58f9b14c6d0f92aba3c0eff27b1c68b1b05041496c367051e020dca7b0c64bf44fb07b4fbdee9e68b78fdf7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.3.tar.bz2=11d81f71ec3d293916bd6a00d28dfbcc93e721d12c6137fd58febb79e7399f8fd1ab5a66915863311db9539009dac06612a4b2daf0408fc1f1e84db8f8f4fdb8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.4.tar.bz2=bff3db8c69e85d503bb0686644f2d60b97c599e0cacbdb7cd4b18d630c50d04ed0dd90ea97be01c3b3220589abefc1e4dbef39246860e3c70993f0f2de738053 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.5.tar.bz2=32f69f0e33f7f7d41f4c0e5c5a1cd859a4c6032b0978c317ec3d333da42047b7f8f8dee9c4d72afe890b47b9f17901139142cfbbf228018d8ab5d02f7a01f0a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.0.tar.bz2=f7fb515855de32badd6e5ebbb03980312144b69dd8b696fb56320981e4f0964065cd13853a34dd321fca1ab160510dee8fc3b6c99f2a5e007e6974d70a564db5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.1.tar.bz2=de183d962dd4a8c95bea54f8740cc34931c2d856783fe7506f0252c5c71bb7125db00c9c7eaf8e80f8fa1c97208ba4b2a4d6c1a76e38d2b6251a92166749fb37 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.2.tar.bz2=7589f0292f72a2217e5024b51791f9a719ff0862bf39480f1460b5106f1c11172c72ccc1fe2a00b166d80610d76fcbefe64b7c9df0ed3a72c58964c2402982c0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.3.tar.bz2=d79cbc4812ebe9b308a145e96f6e7f64c2692b04370ecba0bcbaae5427afcc7e57ee83b4537914b6b90494fd45a11bbf2b27999a7a74c7fd569687a93c43961f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.2.0.tar.bz2=2d11ad1c89c1ce9873dcdc87c41cf38105b00e265277a173d721fce4bd350af73caf01fa4a5797e926f1a0cb180f1c6e969149d1d524c4df797939cdbbe9657f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.2.1.tar.bz2=cbfe8a92e732675ca1f7d51c04775dfdedec1b9f21b3b7f0760ef61b7c375cc4b0758a17302242087b55faac7c3f1217fab0f6a2e713a05dac082cd6a5d5df3c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.0.tar.bz2=172189c66b3c721e7413f0088f50e4eb8dd80d87779c3a4e74231f7036eeaacb8e373b7f5ff017f8aa274c1e1c872066f2f93485a2a369a7e9b442d157840bf2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.1.tar.bz2=829fcc1a3d878ee28e89a58a2f6d4221cec115d241a007b048953672d57548002c3a105ea4e65e344137091baaf5d5c54232a54c116afe03d0f3d61c07547c2c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.2.tar.bz2=ec2e7bd32e2d574773486e1c1d733611465765cf14895fa6b017b6ed6301ef40cd062496a3926788851e7ff3bdd62b488d03385aeacc66bed53aed18a6dec225 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.3.tar.bz2=79f822725d4e3bb7daf416e736d87f3b01c21d011423a2b3c65d9019a47ad4df256fd4a1f171961267ab8f20387019fec8f3f4ebfb6664f682bdf36914f6a329 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.4.tar.bz2=aba571bed773554b18863e6b942f2bca743729834657689a016938a34b7e4352e68d9fffc440b2fd4fcdd1bed4d1ba5dde689da535088d7ff8ae7dc364ac3b2a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.5.tar.bz2=0e46655028859f5abb64d71a5585db638d00edb9d20a487739d307bc1dfa2fca4ad196e04044dceab0e279286379e73110590c772a06786214c4eb23557324f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.6.tar.bz2=177e9f0a193f9dc45f8653306cf6a87bffba16780220fedbd8be67a3608a8f8d370011f3993590d58805a8ea4833d95196385fede4b513d908fd4263a82f113b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.7.tar.bz2=88bfad0d6258372d4e9739613a07352e954db3deb43c0e2d2a176f9cf55bc5e2df73e4cb04bda75e2dbb210799649f020a7284cd2acb5fb92d2b115a933a4f03 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.8.tar.bz2=3710f83ed7f3f30c9b5d3dd515c168534d01811cd33f20d3a54e654dfb5140afc8198f46dd823ac45072a83d844ad866af1e2b8265f54f9997356be88fa254a6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.9.tar.bz2=078ce0d7433e63d947fe4cb0cd5a14e6f5fca00b7309d7288359ed90989dbf618bd8c1f5f31b607f3ad6b0cf540d715dec2c38cfbf71cd170e572321598bde7e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.10.tar.bz2=f97f877f7afa604dfa7e8f1b399a4c034e79b616c95bd4e48927d88d1e8adf8e203901fa178f93c6af4511d26a38e2d8cced7225c2e75457bb02dc27b8feedad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.0.tar.bz2=ad619ccf77132166151e4982996e93135fb91d97701ef9aea12b6bd05e18e585dc4d5fc34883b3369ebba15474741db238fb90192eb273dd5428864429525d9b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.1.tar.bz2=9094c9bbda4c3d830382e89e4e1c24fe43cebd9d733b6878a43a34d679092bdb6c7b23cb3cc08d4efc6e15449c68862799713006703f95e2862bad1c0b0bb94a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.2.tar.bz2=54c8fc2f2a99f834292b83ef8e68e2b120f20fc4ff74856c13137065b95262f62188ed5c6ffea8fc4b0c1034d9f8a1b497878d6a581391d422994911f5fcb35d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.3.tar.bz2=b26daf1825cbc9cbe51e1abea84f3aae542beec7c26628201325026b4d4bdeeb46f8053a1c105973242ef532e66bd4eda5199dc1aa4faba1a6393f9cc126d856 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.4.tar.bz2=e5718fb13f2fe7f6b34fbc2b1a6db95576fcf9cbed481fea59fd4dd28d064104a912a1000533810221141ec09e9fd8d1e59850ae5a26ae441bb6d8878f42c418 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.5.tar.bz2=71ae2c5bac04a97694310daf76e896a1a02c245274e9c96ca96740f78a0e245302564bce757f1688d3e83b7c0c88989f702814c434101f8df786c1276a4f5a2d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.6.tar.bz2=1693ebd7cd3a452f51ce2ef32144aa36f6fa8121ec68cd0fff715db8981214ea9fc729099e4495e1e8bc346409551d4b93c6c3803fe187fc0c25360b80caab72 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.7.tar.bz2=53b05c51b970a239fab953dcf3bb433f59465fa0b4dfe58066132a1bf6247cbe4adcafe41b219ba453ea392f88a521349df14d58a91a855c53c9b9ba4cc16c4c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.8.tar.bz2=b9b0d99e590a48ceedbd1d6318c29b8fecc12b02ce5a6f1555593eb1b3e284c766f2f8800ee3070fb7a041593e4a3806d53590be760381268ef0f9588e127b08 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.0.tar.bz2=90491968190f4809fefb4068fcc37fb7e2ef179454f57c90bf2af308541f1ec175a72ded53202c1e86dbb63cb6b47678656f753574bf6ba525e982f3278a7602 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.1.tar.bz2=7f9ce1b6872352a6feb539948d26dbdfefb3d4225ba582ef8730be8fd85d5c350bd6f21346d43cfe26a8501c4ad145d733d94da5dbf25b15e7610ca037ad4227 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.2.tar.bz2=8544797f46d54cc4098227809561023bb7bd01eb2330724a94921c5a79ac64b44bd56069d7a77a3e6d2d3dbc504ec25157daf7fdf921c3acb3b4289ce1bbfb5c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.3.tar.bz2=fe086aad84ac7fe8009ea2bc16f0ccb7c60a5fc9034690af38fce1a05582a6226dc3d7b80d08d1952d03a9abcebd7b361f5fa2d506d71e1f5aae9b5f31ac22af https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.4.tar.bz2=ce06ce97ea1554972b00781332f126e767a3ab98f5023d3dc83195bb36b954b1b497961c74bf31340827d9a5de2e0bb34240accbadad550b2e692d26cb097d4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.5.tar.bz2=6fa248065a48cebd1e9950ae07f3e653b3e29e369fdd914908be0b215257fa2766b0182e392fb869af51cd498e258435f6d9b45a03452356dc08da0e96877ae4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.6.tar.bz2=ce912342033f395ba6298051b081c89832f656d61ecf2064e9568692552a938599c816d2cd1fd1f9bee721611f890b8329985c69f4d5b2bdbfa6635b48afe3b1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.0.tar.bz2=cbfc7a1cddff0385187a7bf2eb9dc71a8d14912cbbe4e9529b79414e49e681302ac9009b7c8e6fcf92a9f19a0ca5053a6ed25edfdb510e3e4e247474d471c58c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.1.tar.bz2=29b99b3e04325ceca89b64c7846aeadb412215270f6f7c390fb1e275ebe19b2faef811778c0615b2d4720ddd942a2cc209c72e623f559e6c04e78849cc1c1b1e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.2.tar.bz2=f67ab3ac13ae90622fb3664a869b0c584b97df0500384a28bda9c5c36cf2a27ac1f66afafea08bb29bbfbfc1e0ddc444427993ff4163987f5510c4158a90a96d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-3.0.0-preview1.tar.bz2=aaeeafee545dd1ba1c4df5b7e46e82f7e89e0dcf4fb10677b7e177e66f86e6825e85fa5ae3e74062363883768b3485495a3378f97693d45f675a6e547e989cba https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.0.tar.bz2=3e78b2a73167c3680aebb1ed015c583d4f6c58804d3b272253bee2cef37fd2d1cb3852fd2b408f4af1abca17725d923a1f28d40d2a33896e5cc21c4c6711d7ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.1.tar.bz2=14e7962e180b9ae16607347ba5360b9ec086eb8055b88d2f60b1c9284fafd93fea905aceb441f07d594a34b53647520f9dec38e4e9f6ad3e5a6850750d981a27 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.2.tar.bz2=5b7d88d4405cd45a6a720295cb0b7d3152dd757aac996c8d1a576c6ab2a45cf9ed0b0ac006423791cb038a14153048e96308ecc8ba1e761d4b7671dd6f880d15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.3.tar.bz2=320734a124e26de068457237b5f973278286d7e529e92405c1b856b6e57441b5e76c59d0f519fe43fbdd2c8c48c9dd37dc5094831c0e6a81d804e88888ab6237 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.4.tar.bz2=ca34ccbfc24adc4b2c6c5c0e3b27bd2754c2c5be61e9dfa7b919b4902174e351f45128d887c179c37ccd5163a7f51c213fae96be4d0c356e2d7f96acdd4f164b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.5.tar.bz2=fabb151c29ad7ef7432efd4d51ea1e20180006601617ba896f8b1379555f4088d398e96f7bddd7c9815b266acf5ea94527ef4acfad2446950da6fabc3770f788 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.6.tar.bz2=2728c38987d41169b7110fce2b507b5d3e971d5b043b60c9a3b8d6d385ec2a40d24e464f6cf081844282d6b9fadd4abce670e79f02e4606bdd5aeacd1b57f773 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.7.tar.bz2=f98f4dacd9d8c6c9515ddc2597da8b868c66897577cc5a76819db742f3649881ef5a7f85a880f1e359772b1ab08750dda6fa74ee826938e06b93a9848699b929 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.8.tar.bz2=47fb4b41e60b1e536b3a54e18e9ee92aefee7eef92d49716b46884b2a3d73a02e88e4815df64baedebff80e9e17ac7b0af6e65b406a2c53a4f90421dbc948415 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.9.tar.bz2=c81ad5e16aa18beb7c34eeee68ffa96da243f99ff69cf00932ad5ebe427c1f80e3f7fee31b15ec0d96c1be5c2007dfa6e96c38114f61e958c6b7ecc40270db4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.10.tar.bz2=856210b3eb2bf338c5da2668e830b95d48feb82c1c4407371b18c772df12878703a9eec948a2778acd098bcc8eb402ba6d57b2b935766847f3e652c3dadaf6f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.0.tar.bz2=6ea5e6338319e5d6861d420b10f93b5e6634a9925380c61acfbb258b6609ada76bf2a6b474b53a30b0a81f0dd81cfdd1e610b68698df73f69091f479ad39bc63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.1.tar.bz2=8e8e4ef137b9394ee34b760dbeaf4d23953bec083e5775a423ef6c16b75faf8bdfe99df975ab6b6d762509536b017f3510a9a5e9ab63060208edd4d2d96371eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.2.tar.bz2=756c9ecbe3c9801a0a364143478903318c524f7aba026239a1fb42d7390f74110805543a9ac2a9f8bbbeaee48bc867fd15d400d8bd46576bf4fd417d6136a3b2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.3.tar.bz2=594ff95e33d0f7af7be448a781ac68f895f8344ebb1c9a03898813baa5963024aa84b11baa405fa584070e4195fbfda9b908f1fe171f75f19e5e1d7879bdaaf9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.4.tar.bz2=a9703c6edcfa2ddb87bb73c070d963fc4d59599919865be9b1d93989906698c6f3b9c4fd7f2d597e5d710276555de0b5865676b92aa3aba1f1f41be4052bedc1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.5.tar.bz2=dbd91cccc0a00a1ca7e901d56f9840e62e4f139ff4dbae530169f41897d06523c7e8977138ffc6212e1b60589f3091a4e2f6b6714c0fad22fa65e442b248f61e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.6.tar.bz2=ec967415b5bec95154cd9ff8338a602a6d005fa647afb1e1cff54a0fd4e9c0697b9e952c2dfd8e4b30068a697f5391b9cd165d5d33f3b146fe35f2a8fdf9823c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.7.tar.bz2=b8786ef31db7d950b1309646f81e6a99d56b76223bb8d2d20ae045f09917332a869b14cee1bf235675c7d8eebc6942b5ebd6cf0cbd290ea75d9f9be1475352f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.8.tar.bz2=4d949a715a04cd45f6817b1b26093f7bbf03ca630aaa015972e7d0ca72bae094add18664e1489ebf8ade27c160d2fbcebdb105701d719461af13c4d5fcf2cd22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.9.tar.bz2=ec6cd8bd90ee99aa6470d9d524d89531f96f992efab8a9d6a709a3959ef4c314828276e67b84ed97d415cb3e0c837458d13732dc940c93d4d069d9b881d7f92c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.10.tar.bz2=1f60cae30581e3467c7ec07391de5045f238b61a49661ef0cf76d72ef78d220b7ae70b86b1e72625cf37085b6507fb1dfccfbe5554195f0c6eefaa996e199c16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.0.tar.bz2=343f5dd6703b6b58d61fabefc8a50ce5d02d98c32c8b4e52b8deacc9824369a9f0dc8faff69e90ca7585a194a4d742791765b16c3f5e2417b0f54e0e6f6220b4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.1.tar.bz2=aaf7f9e30b3998b8586764f61d09e434c32aba7479aa79fb6afa71ab11c067384ef3a4b9215a1a3639da807f4f642b9efc62b37b55e989b7ed7d75cedc7cab40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.2.tar.bz2=b834ef95d52abc1f0c224193391bded9b4d2089c694378dd5aa45f8b2b1ea41b1c300445f766841cbb8cdb1114491ffe0095f518e1600746f5f583dd0cff9c1f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.3.tar.bz2=9df5ba9423e0a8af9d825e59f8c69889c70af0f6d67f96708a02d7d61260c83474e2f7b2f240af399911bdfc56850255b4f34554f7013d0417a13bb782403aa4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.4.tar.bz2=1d4b55a6a34249e82880fbacfc1d97a093600005deb982c6b42ccb14bbd7bf1db14e0f6d73bc25f1addd72378850f7edcd63738f2b3cbab569e34e89d563188d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.5.tar.bz2=29a76dbb28d5b63ee0ce64cc2e7d022118350a550d3693b8e38d559bbc4f42fdb6b63af4bcc4ebfffc5c0fbabbf2e18db7228e655de3bb416e344a61737870c7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.6.tar.bz2=122322fb462f8fdcb065e6f9d9968027c320ba9be9ad6fba9011760a7296cec1892a0780d7436903cb7763f5d18cce11860c5c7fce82890eaa139a94d5e89428 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.7.tar.bz2=0c17f52a74b73041c588ed76f73862d179d7b9abf9de61279dc74ba7b7f170179e0db5672a403dcc209b6dec9a865a88a382f5df01f5e6ba4cfe0f66232b4a15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.8.tar.bz2=1a30bbda34fee311762a2f05ac7fbcfb4f373f8840f86b9762b0c07f1cd397e3eb3be83210221384333b625a243c7161ef4f368602a613760391265309e4f304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.0.tar.bz2=edf31b2dd02208c96be25c2f4f7d35e2b122e5d327133545e16038836b848b90f81079be4df47c5493bf4ead1d464fa72a8d0d405bb2509ab0db6335c58ff793 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.1.tar.bz2=91cc7a9cf493c7361f3d507cdbb8e258b7dd710100cca8053b77569c07c04fbc2f72fdceb9fd9a3a5d01f4c423a206da97730c356d017157bc2454041e1f1fd4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.2.tar.bz2=8ea603a27560ddde5fc639b86381a303f886ce80384d8edd0e7bc806f10649760d75a76dd5f2ee445371254e727544ec12df49d7fc8876890b73237f4eecea1c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.3.tar.bz2=c42f24668695be5c291836ae6f39b4366e0357c9bb63cf8be2ad36cefe0c6d19cb921a43159d49d4d062dccc15902ec1698a1a6842d13ccaec45c6cb628da4b7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.4.tar.bz2=3ac89131407faefde80bf2e1bed4baa51c371ab4bffc18c8dcf2624f4d1068c9f933eb66486a2bc7c6c67f674c5bd06747bddfe1f1f9dcd939458a08e1bc6108 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.5.tar.bz2=8ca9a9387b8cb434828fa36e5886bc8a28d70fa46d3e20df60389880477fa2ee54fe63c0c14611a2cb0168ef1149d205640c6003e6a507400ad5fc34fa641bd2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.6.tar.bz2=52795cd7d112ff437adf603f58130ce539209628d2224a685d060d67a07325717981fc6f91736d4abfe014ccc8057bb40a097fcf85f5046aabde0019d08bef16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.7.tar.bz2=bc179a31c746ac6e632ce08f57a8f403d4e463ad72285c0ce008d7fa39b88a22be3a43014c9eb019f6a39d022f9448ef151a8d03e89a4d2e767c4f77684e3750 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.8.tar.bz2=d693e3a800c2200c74b24c207425f41cef206a0b3f20625d18b1590e9891f409d6643ee0e7ab8fdb6e1e85de6fea52c6a307bf8f65324ee0f9ac33306ed1e876 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.9.tar.bz2=4b6cab99f6b7be7705efa5eb6f321b5eeb1d1c6e96d4113bf96b57378aaa4950b39f40ad555f630f17d216d235972f028617ea43c28b1970772ffd16be3d9a67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.10.tar.bz2=40bd90d231fcedbe34ec9963eb59645fdd1036b03056b9b8fa3b56900deb86d94e2a256f90e6aed297288d6797857a3ef9fc27bc6ed05c017b5c8e8ddc465df1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.0.tar.bz2=c1df39ae526da7ebf87510017d7694e6f78c59871baac4e9c5f2d13c22cbecc30925e2783ad93f741110b7c3802e9f25a6c3ff85160b33a4080b0f1fb02f7740 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.1.tar.bz2=930f6f7f654fa14076c84365fbc771d5b09679588c4c478d8f6944770c53fdd37213bdad159fd231efbc079b85ab7ab648b0a97fafd666c38d0e280046c6e2ef https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.2.tar.bz2=cb62ca82d57dfc0e21e532d4b523f49c559c4ed5f3d73adbd9d650bbf23c694d382f3cc25eed6a8630f23e4780db127b4b8b6ecf6fc24b0f6febc820dbc6af3e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.3.tar.bz2=708209a89a18cd99c02392307d2bc63e46bd38c72c8ab0e982b28285f8e006d4ed77e04da3900c880eff01c3350033cd00ffc3be1d3a12c4ee5b263282f0dd05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.4.tar.bz2=c94f5b3129ff41da1b07da1cf742592e9822febf6bcfd0e9eb7145c00b732fc66625056bddc72fe9b631742c70d0e731cc6a9a16a089c7b559ae963b072578eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.5.tar.bz2=b4d20f79eebc5496768fc6adb0735c6a23cffbb39ceaf9c2da42851ff7842dd2318c07877d89564176d206e22b8824d2a3c637b5ef02c5caed0b2b5276581032 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.6.tar.bz2=a09ab93c3d6936d30065236ff2abbd0295988a9359f5a76425cecab47af0ca5b6829530d1708e9ddc9e78d1fbb7c0359b9c7e90227870537d099ccc89c73844b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.7.tar.bz2=f6086c879f8737eaf6eef4461d23270e9e43811186a22f35ed69a8303eb933136e7a690bce2d9e18bcff730725292075e09db0f2384d0e26018b7f2a0df70b32 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.8.tar.bz2=62c631026560ee310a849483f1b48690075477942ce86e0564e92f5ca7834553c435a35a1d6d8dd957c3a7be24c63c32104518995eb3a96e61066a04887bb0d6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.9.tar.bz2=0f10741772d2498167c1eb2aa263292f99748518a4ec03dc19440eb5befa075fa69e68b08a09af6eb2e02e462ff20ab10e4121cfeea7bdc938c04762d81fbc4a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.0.tar.bz2=908132a47bd996f8c76bed54078e71abb154294f97dcba779b4cf0d3b82e31c4635dff89e97d5f6b4f1d797d854c6d020afdf9dc77b10c0e522755fa194a17c3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.1.tar.bz2=39c867ac0af48410c0bc6b01f1ecac00616a59cc07f3f5a3e7cfe8f786b70c7cacab65550dfee777d11b8b7a3ac173bb22c602df370eef6a04b40f8e539025ae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.2.tar.bz2=2f04566f6d778121281bc6ba23ec57ad408049e649b351585bc9a3184848c71873910e159f7fd3909c7372378152f5ed264070aefd45933b97980e80f6df4deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.3.tar.bz2=940375b11c525e3f0bf00e19013eeb886bf85b8d8b66d86d53740170b0ae16b14faa491dbcbec29238f875f84204cb0d52ade17c180d71e129cef5254f338f0c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.4.tar.bz2=1c9d41d7ab7bd69d7e3baa3c4149b1938cc147beb2a63923dadf2fd959732c8cc824e2add0946bcd62f44b0e1d509b80b4796a5929841cda8d28f3a8207b17df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar.bz2=f47443a53e3008cb7b7b7afcbbf1adf44887769e42b3defafceacc1e50e349c9000b98010f853c6b7cafdb54b85b640732a56a8e11ad8e58fedb5fa4724f68d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=fc1c9a08c48ad91edb4afcac5244f386d63940fa906dadaabe02a1eb025375443c8174a6ad1acd50f4583d6c57a88feae86e697ec15c8a25bb49f280b1357783 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=aa611f7c350374d2c5c8652a694022e038cb5a65fde795c43e927067f155d0ccb368b281b1575e679b84cd7ba6042216dc28149e138256faf62dd3060ec0a6a7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=ab04071b90ddb81b68f064fbc9f2bf726729220e4359113556d9b71f3549483f122b796b3b1e4dc8404e6f44a4bdd02e9db2c8066974acf190448c4d5a97dc6b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c769fd3814bf31728b83f2bcdaf0928e6423150609f3db903631f9db68ce0a0f9c87bfce5f93983cd962662148a66cc55f5f42bffc1a1b5a237e6938726629ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=c231f8ecd46760db49796519645bcb5cc9fa1c0582abbc419a2ca81805c81fe8912dc32dcc2c5192ca9ef0d502da8f61ce1ce7ecc87b29edad3a144a8a0c200e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=b41557c83084c8e5bb263aa944499932ce7d84457e4e307f1cffecf62aa44f8543a06299e38fee17ba64f8952048612f9289e24c35acfe2ba02b913c15dc1405 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=001d10af5833a03b42d9a254bde844731d3a796d98ce2efea90fc68e4638c7cc3be31a34fa163d4c5ac18c60e685e5cf2ccf88fac46ae6bc587a48ea35cfb09b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=0a8681afc19372ccd9409bb017967f86c2e6642e083ca47ec904cccc34242040f710392d916a69a327ae6a0bb287d97bc05bbe116a1d93478ae282b32e5fcfab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=e505ff2f00334870d07f4ec9348648b7f3b91dbbad1fddb2f60f7a38572a66a7bf081fc7b386f800d86113aac1ce3cb739c86cf0d6da2bab916a4432ad557c54 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=aee6000ac886cdd4e4044a7b43ab20d54d1e99f6b893af69d0d7e7a202f4ae861f939898580c60996b0bb7c6481eecad69a20acc83c75cc594dfbfde3a22c476 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=86f4e6948eaf2586e018570f09232b94f907766590eb75f00992531ef74676070ac5a2308e121ecc1c23388ece4dbe1ee8a4b2a7ab99ca00a28d6583d6df3d0a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=1bf867b0af84eae4e7996047727fbc7ef459afd3b2ca5885f658a74d62910d00eecddbf0c11b23265c625c26b420421ca5add40079438edca8eacd8b5c0149a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=92a3b217079f9d960cc4fbb5908f7fc7ef71cc3ec8e5e404341e2b8875534c0542167d03b61577776e0b0f049f9ba2e3235842be381b4d484845768adaa6e3f7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=608f0f9eafd72226fd1b39f6c92d0f1c6d3aa7ede096cc390fc4f8bee4326b0937767bc6de84fff536dea48cbf9bdb8ef5598670235e013ccd630b06c5b8fb05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=40cccacc66cc4b7891b01c35375ca913efe008157ae540308b649e14f5753f34f1827861c6e16b500c49ac95e1aa22e1c01444faca5dce71f981452a9e0f1b67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=5a33d600e55f7b8755725d7e2f2102cd76720d524d7b378d85fc21ea8d853166dd97e2e615ab18f9e44122e3404b439dd123f8e23d6ade5328982fe72db2af0b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=37e3a4011b3603807c6e0fd48818b256caf272b3720ee654f38c0ae202cffa21600f9cc751b5335b57905ce67db185b37f548ac9c84d6acfc567f0ef4866635f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=6648c1b6bd962e30e89eacdb6130b1788ccdf6ed05ea13eac32eefc222438a298de8121937262851cf5c4cdcc1a804d5d8bf19667819db6599bfcf79e57b0e17 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=ac690170a6801fd741efb88e67961c0c3d717029b3bd9c6e243074799641c940416fc9cde7b4ba2c56e79551d6cb7fe5f7977649404da0d20d1819d7d3ce0bd3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=e6edfed2dd9d6649c47b1dc1b102f933f76a148e6dd8441add2316073dd255cac851e972366e4821fcd665e55b375fac757d189b7552baaa0b49e82349c71b77 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=69c4895076690037199f2a9b98e622f6b5e3c23ea02de79bcade6193da2b1b88ed0c28006059f4ecc502298442275e7e7324232de04a2f0ce430665057410a05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=175777563303c6d6a04393938ffa7e36e0bc6db33f7d2cf1d42ec852b41ea26dd7d50569eee4cb00497e6bceae95592365ea6718a35451e5c929d8a085aa9649 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=b668f0cd853615fec38253b264115ef0fedd21a7879a663ba844f4c3fa8b87e5ccd8adffbaa12ffa3aa16b108a2a439cecf827e7d8e19ec8041d46e758abc391 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=2039b1fcf55cca35ed3c8446eea45819368016ec1a05a5fd4c6a761b54f5cd56cb3301d5d2674af1ff75bda41eba41b7156e71ac48b88ca7a6474f0e944efd89 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=b4bb324a53c316da488c5f60803933eade9ad5c59a6d58e76787d2dd89dc2d2f18016d2ac4ab0853a40976b4beab70864a9c2d23de194bcd63ad089b2159fa7a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=3a9b5868d707d6a4580a44ab7504cb46a2713f78918142b185f0d62c5b7e0dfebc1ff551b2a52e9726befb70abbde867d2802345a01fd3e4568b9f58ac83c168 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=39007e736b28ca599ea244bf4e54b52e86597c950c0ebd8f1696a02c8eef575a734d089b52c7013d00c02aeb261dd7e2facb45f24b34c75c4bbf14cb8bdc3ae2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=0fc4e39f7382c29fa2119119a78040c611fc8298bd4765025599d3018775cb2bb28f51d38efd4306e9f04eeea20e7c2365f2fbba1233e0494a8258c3c184278a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=5dfbcefa70f5b81887d34e776713bb9c6f7bcecbda8f1c9561daa3e235c725417ab0a930f594303723f226d36306e6a73f228abfa3533280659ab387708182da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=00936db899bca33dfa8d0e6ffd4bd6b0453ad5823a450e50e3a055ea696dcf94b317357732e26208a6f34224c33a8b4a6130e5613262d62381179a52cc8f3a1d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=15b816d190fd58382a2f6f6e087f358b54003f186462abf59dbef545af9044a2b9c65576119185adc6bfd9ebcdb49f03a2a268eed4fb0f0d37aa35fa18adc1fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=3a481c35668be459688a66e4e480e11b4e58c13aecc3751da9de8a3e3282bb4a152128528a804742aa0b4380eb537b666a2b29fd79be0d6968c4ff1fa428eb7b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=c604871b39f396c539c52dd4849d1d42f37530003601f60162860efc777c85e7e1a1ee88a77cfc9ca8ca20f0448a5dde4f39cbdae67470d8d2d283d6fbbf0239 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=12042b5c30179da275fcb6155142ff2787e86cf577caef44b7c4d8175ac671cd461814e9a19f4c9b1e78bbdf041fdd06bd463aa972e194caa91e80778a56bce0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=2bf1c13616b2e255b8c269bcb2f979a45009c079ffdcb10a13e238e5d13b0978e8a974bdc1e7bf8519e15264ed5f577cc8f85a5861b3ea3a4589eb78138a3f2f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=2e7876c8c8a1f4e3cd1913023c564d9e74972ce427e85765bbe9ddf237285d7b96017c1ed17868eb912509881e05aaf96e4a6b353a69989e61c733b346511715 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=06de4f6f2761bc58d94659f826c7c86be50192b7dfdb5c8b6710b384a50299ad161309e2a8c333fa5249d0e7112f74dd0c0b0faa2950a6e74bdba68833f68702 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=597374487d196abdfb389c79d7d09b81026fe3e8043f8811497646eaf47bfa432cfb96e2af9be1a35ad2d05f2f5c800afa3f9e5adb0ea2b2d31812d219232a00 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=ba56050ce3fdbb9117c6c9e767f818ce3d467030713b7693ebb039f6888bd5d7e5f7b1986ed117414037e56e550707c3625a88bfd5d00d7319d0c7ad642fc811 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=395facf2f7a15eecc94e554a60d87c269ba70c5063b24b7bc504f579c0d12a7d858eb0b98c502016ff8bf02aaf11ef765e2291b542759fc96affa186206ffe4f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=d1d527b2e95e3a16f521214c5352bcb379b946e8be1a943da872aff0ab4b8edd93a507d693abd7a8ef1cd5ea1ee6e6bf1f838683f5a447a6cb7992de61f744ad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=e47a50392c4f3ee13a565103e0c5f9474ba0a8f5ff60fc9fe7d290b7f5f9a9ddec962fcbb103a8d3b9c7765a28ba59237975f90aa3637a06a128802ede28b3da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=77fdbe62d1694732a7307c29b4f45d0dcab7e8a729f04f45b216345336c5820715bf3f8f7cab52175c4ca1a431d867c7feef7d802dec61c2cffa4abfa8746e90 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=24da0cfc93ac536c505dfaf2dbddc7b312a3cc5c72a9f47e28b3bba760a53b584422b73da8546ca01cc44d3906a31eed7f27a3dfc0bb574f01f9c08f7c589d20 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=aee8267c4855e95a55b7ab858ca6359d635049743b8e38d34ad1430522a0cd746cd572e77884f7e10af14a731ccd8ebb9cad6ea035b0fca4ae534913a38f43f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=ba3e66bd3dde28e7193b90c44194cf7732d294e592321c482deb3b31ddd9655630f5b04aa89a43eb9d1bc222da10884e9da332bc9da78e9e1b655300db52a444 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1df8a2ad9256985b4ffb3da5b545af4160ccebdd8265711d1b642cd2285a004a42cc2ea51ce3ee78854e599f5196c66448b8e0b043846ef6e6bf992828aefb6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=cc460b3d17d460abec27d77f734e1c1e7a649769c3374f02d32a4ad00f989ff3150dab926a203b209c92475100667dd524774fc37633d71f98737ea2d8868968 jruby-bin-1.7.0.tar.gz=1e466a3f8d52b553c9def09827fda4b8433576b0262c40ee505602754521a00defd821d5ead5052be52baf281c6cb080fd03a8b15c628a0ee67b4e417633e5e2 jruby-bin-1.7.1.tar.gz=ef28381ca30664cf450f9d3df9927530db771d30e86ebcf535af38e1a7e26724ae2bcfe8487cd2eb349bf609a733a25528aae14beab4d13d298b5604ac7353cc jruby-bin-1.7.2.tar.gz=8155c81eea6743951db7383bd9f6b1750614927c9c0b25a6574f6d64898bb3ada2f626c6e0df6c5486561a03cc7d472fc12fe804ce66a3972d2fe02e3f407100 jruby-bin-1.7.3.tar.gz=1d19be25bf4a7dbb0edad71008704377893d3967aa4204a0d59d6883aa04462ef6798c64d0c0fdd3f5129c16ccb42e8507f3fef38ed56054bf6e689de745935a jruby-bin-1.7.4.tar.gz=d7c0ee0316c50ae5413757e956c18ca68e9d99a25cf85be978da0787c13b8978d4ff2712a3effa564cfdf07144be4a56a0cb8acc794a01f43264fe8baeb125e5 jruby-bin-1.7.5.tar.gz=a4984591a3809330b93f4ce79fd1b9c24360f89d88a03bbc76351be623893c4bfc6441375bbea452ba4f24ca8b9357e03ac938fd6c065b3e2348c0f896b22a1b jruby-bin-1.7.6.tar.gz=98600a2d46bfce14111c7eebc62716352a4b685043afdd696b8fe51c6b205eb9569fc2860423a653b842b173198c76c59767156aa48e0d23482dff3358d884f3 jruby-bin-1.7.7.tar.gz=71da2e72c65899216fa15ec568b51aa7004e2ed7dff99ca376b332d3692c83a674c688dc21ee04d177a3961a2bb3973714509d88cc14d0ba9f79c864c6258a06 jruby-bin-1.7.8.tar.gz=42d54243653ec260abdafecce1143161be63fcc38a80f71ab70fcece4bf91545a2b12ed2319f9fd6f6b41916c398a9a8e89e7f0389f59da56f2739665e74522d jruby-bin-1.7.9.tar.gz=f519f53b1d9f57cfe28982ad70b892dc6fc20fe6601d98d65a1dca9f617a0eb8fff74d0fd82ddb858fe105d05ca7c7bbf3a987677ae0363caa2981bea358c096 jruby-bin-1.7.10.tar.gz=160b701f2f500dfab64beb635e5c4dc57760dd422d0fffe8d3cf8d84ee6ea17a877ef77a0087b4888ea9db64ce7750de01a73a51530aa6666a2efdcdccdb89e0 jruby-bin-1.7.11.tar.gz=a53b0fa327b98344cb4a8aad1ba537ddacb709a0e173b1e32656de8a610cb9896e9a4554d54d0d01d2361f8ff1539a0e2ee01308f670df2004225231b704065c jruby-bin-1.7.12.tar.gz=bf2be8a37b53d38c75712a6331f96b999fa6b0e87f453fac7b9d11eeb1b66098ea0778172f1a6a84345e1881f05d63012e28d4068a0bd31122bf2473bbdae5bf jruby-bin-1.7.14.tar.gz=f14e658da7f2abd469edcfd657dbc2505d6a2c04ba1e5f65f2164256f54625da154b338bd3d286ea6a18da61d04d90a61ad6b012bd9461182753483efcd0f603 jruby-bin-1.7.16.tar.gz=47ca714c3211c95c84e9c80ae4fbc894bfd7ee03e1bcc494cb48d839f8538db4aaca7029a4913b8d323e7227450e4e41bb943dc670f43df8a654eb127012033f jruby-bin-1.7.16.1.tar.gz=9bacdf6e212d08e46ac2c49183c8611873f6ecebfcb0e928b5110bdebfeb8751ac087cf8aba09afb9a8ccb58e59f3c3e06a241c1db445835d7a875b0c3deb4b5 jruby-bin-1.7.16.2.tar.gz=349283bb5344a62f282021ce39648a0c8d0b41ecf8f800ab5099b5ce161ff771e688f205a918324cef6ba0ded6b3694b8dd83f46f56be584202b8fee496b37e7 jruby-bin-1.7.17.tar.gz=a3b171df08e789f91c260c5a57ec842a5d62cc8d6b462b772905ec5284e394ed7b78f5b327ca1ff20f5deba8371a86cb03fade75b5f34f233df47bc3f08d469e jruby-bin-1.7.18.tar.gz=b259da2967e246a387687117eb13e8986b57de6ca8e570d6f8f8f07b8097db6e01cea8b0ec3a860b091fde14de535260dc6dbfc638f9e9b49d348f726e969642 jruby-bin-1.7.19.tar.gz=da91efcd51cfc833666f8b7cf949d3b5c41cd8da99ae1559c88a7358fb48df1245c66702c7cf23e7ca012cbefae98787c200352976d4e8aa3e9120057a89dc8c jruby-bin-1.7.20.tar.gz=77131afe46e72c406ab4250e43cd1f98e59a8351c494044ac89f97a7c9a81492f8a8194541055fcf1fc59569e99a577fd6a36a9f6a3952a99f399d4970e80e69 jruby-bin-1.7.21.tar.gz=111883df12a60d06e9924d33057ba72094fcffd44f7e3954d6c6d2190f8e6442804e739cc525a9e75159251a8dc1cc487570792b1b4f5773f4d0082f0eb360d0 jruby-bin-1.7.22.tar.gz=6ed6cbe7b81a8aee60906fdf965bc217b3db794698e2cb37559f36ac119a0cd2a1ae1a7a766535ab491d647e8b4e6b2f63e62011714b757f8691455831ef365c jruby-bin-1.7.23.tar.gz=6f4b97c4e08274f96195deb176e3126e8d047c981cb655cded9665624033fb905d60d5586704a3f91b2ca06d7e78918d9d31131c93e4c90c75a38182e309ac9c jruby-bin-1.7.25.tar.gz=a89ab8d539bff346ad56d345b6a205f74890b9aafe82a2c82e7c19cfc30b77fefde1003e8bd7ed15f141151bc0fd21946203219691383a64f2234fa586e1905b jruby-bin-1.7.26.tar.gz=feee03a50900e459d9ed7d2096056bef126c4551c02c335c4132e2307411f3fc4fd435e8fe44411184773c80f0630a7812b3d798b7e9be2818e1b5a712bc6995 jruby-bin-1.7.27.tar.gz=656f4313fbfe5db8d2d4fc2087a012c91efef848394c48aeaa0041e9a19b87ab74686702955413d2c51d6b4b11c758ba0555b30fdc42e86d66094411324139b6 jruby-bin-9.0.0.0.pre1.tar.gz=988c6a058336ab9ac8b27c7501ceccf3940837f9b9d3ed32a466b891bda1bc13f76199f5bc3baaa1240dd0dfdaee40775f721294d667f3b8b5bb9ac8206e2e83 jruby-bin-9.0.0.0.pre2.tar.gz=f207f9477a12d7ffacd92b1bb5154ba8101dda8f7b2eeadd4fa83eadec9a75727bc1831733d27fde63ba63322ec491201dd23cc6e2c2b5a4b8381a8fbe49e8f2 jruby-bin-9.0.0.0.tar.gz=33308a983533c129cffbf521bdb8c1996a10a6159a4a436248e645bda682c5a5395ac1aa767e971ae679c935f3b61573cb22d5b8c64af026752db3411a6356e1 jruby-bin-9.0.1.0.tar.gz=277dca63f3faad01c98a793f06bb4d558a970a10a66a38482e8372b25f4cf4fea85f1d5624fce7fb5b4310c42ea8aa360f24f6b9b6ef4bb0ebcb036736009ccd jruby-bin-9.0.3.0.tar.gz=d82f83e20ef17a0675843e306ec5e90993e5952cf5a53957a91e369d2c90d92306aa515b1e135c04b45844a81a0f4ae34289b966821ae5f46ea51fe012627352 jruby-bin-9.0.4.0.tar.gz=b9cd4f4a00da8152740b468914046633d5341b10aa26b0ac56835d5896531030c8afbc4c965b30c36923555ed5b145de8ada69e05ca38b01d43621914a331335 jruby-bin-9.0.5.0.tar.gz=7c61cf010fbae571cd6ba334aefcfd917f6de8224d014026297b840d0b890523e94b2fea20f154c82c25c4f9d5992b9481fb569646a7023e5ddb42db1baf5f34 jruby-bin-9.1.0.0.tar.gz=1ffdd352823436086ebfd37c03401a1f3a9cb8a8c5f75476af1f704c4764396a20f49ddb7fb7f0911e1608f7c88a332944330b8849d13e6badb170efb736dbe2 jruby-bin-9.1.1.0.tar.gz=475acda79ab8c54467ae70094aa86842959200127c1e92709f0a731014c469d3e52e4c48770b64ab1bf31e1b710ac4570b421077c85c08071c1356bee55a2900 jruby-bin-9.1.2.0.tar.gz=cc6b1e1a2907c128dd04edf9da11933a54bbed5e861ab6f0208505bca5aa2aa9d9acdd04bfde65824346fbb435584081fc8ec2e2e9a3aeea1bef8047915e0c61 jruby-bin-9.1.3.0.tar.gz=88339f4cc05f7f0ded21f100755156ade33f19873f49c0c64110916da8c0b059df541a77bb36e54fda9cebf042591450d2d6312ffaa879df926870806985e774 jruby-bin-9.1.4.0.tar.gz=ebe0e9d67cb91721d589461e93e26338e3e3a1f0f98de53f25906684140b49d989ca6d3704cd3f6cbf650f30aed9a3989f117bb4732c83ed870364ce4c31fa36 jruby-bin-9.1.5.0.tar.gz=f2a11e6fc88d37fc1b640ea8c9feda4607bea6da5e6520f61ff85e8d6a51543612ae267b45c033214f8fd0e2283153da02001cbc9fd90be4761b7544e1413b9f jruby-bin-9.1.6.0.tar.gz=ca59d199a0fe791efc57f05801ae26c6cf6402bdc0f1a795250b1a2dda39b233ed24c8cb005016e79727f4bcdceb1bad726a60c16935e76fc87e5d1a078fb5bd jruby-bin-9.1.7.0.tar.gz=f2569d4858a33280e90d984aac53662c25ef057ef9903bace6a2214aa2e6a537c9bc8fc76b08f846b3093cc4a12c70c98d725576a4ac771e640b95cfe3697c7d jruby-bin-9.1.8.0.tar.gz=dba3b41b65ff27dbaa203a5cfc78ac7cb9d952c52b452bc774f593383e4ef9389c0bc37549b798f48b63497ce7007b1ac2d2fa252d9a7c3e52146b4ae192ee49 jruby-bin-9.1.9.0.tar.gz=f8f6419be34aeb7b7577e946a62a094f5921d7319b51876c5e07322d99249b3a9f29fea4ee5c2b8184dfccbd5da8f8262fa97f5e93874887f3355dabfccfa0df jruby-bin-9.1.10.0.tar.gz=857783bb45fc5d62148bd687b43af9ce776099dfea75ec4b5d947a46ed270568bceba2a630a3277746a3a9c1fd3111caa9a4cd13493ea8824c1ee190e6d2abf1 jruby-bin-9.1.11.0.tar.gz=718ed3f5a39cd9f9b45c4e11ba44cd32e035f8d9f26fe59230dbaecb71adfb2513ee1bb86ff72e075b02f20151f3f30e53bfa30b6c4b011a93a138d4f479fbf7 jruby-bin-9.1.12.0.tar.gz=8a9f88d517d8002be570aa95aebb0063eb62a47efee191155f9fa4f045854910f78431514f857c438167ec42f4241faf74d4a8d236ae36feae58732312e4bbed jruby-bin-9.1.13.0.tar.gz=ef88f613ada2665d4f63b2e2f15594739de8ba501406e76de417821f44847b0e258524687b0ae0cf5b737520aa4dd9bb59d80a4b89a81408cda638f28bebbead jruby-bin-9.1.14.0.tar.gz=d15ae0c60421951b830524acd21a0f2a56f480e983b148a2722cd36afed8e99a41f518eb8a679bfa2cf87f08637e81c24ea88be40c0a5390e081322f1fc6f8da jruby-bin-9.1.15.0.tar.gz=74a411f42149510180706b2c70610caeea357f6fc3d2a12ff0227586862e6a9dedf09e752596d6c486af7a310a07241f311a1dfc73ead229d7225c09d4508605 jruby-bin-9.1.16.0.tar.gz=94e88dbeb2545250ba5bef50bbe0baa6f3851e9817f67f879ffaab50048bb0d41cd7a0e87ac9ef547e37c2b82cf1d7aae6b8caa43d03c6a9931b8ce0ad4b2afe jruby-bin-9.1.17.0.tar.gz=4c06b9674e20f48d3815b4084bb38e6994670eac804fbc56d717cde7abdb74d57e0ac17b7fa0b500318de405c187c3eaa01441c22621139dfdbeef62a5467a63 jruby-bin-9.2.0.0.tar.gz=79f5e8674089d2f6b260e033e3ceb4571f54cb5cedbca74ba76b52dd7cb30085a8c6c2676e9be57a8ecd9e962fbcb3682a8de38e1cdde2dc6e05bd179556edc3 jruby-bin-9.2.1.0.tar.gz=185e67da4964c9cf1d9142446efa77605e77894444bdc96bbd10fee22637f197aea9fbb0f60d3a42540e5f383d5b06fcf095d572f432544a40c2145deec81926 jruby-bin-9.2.2.0.tar.gz=85e16e38748b6ec5f237eabc8a17eb225c484c20f7ab6728f2a0f650061bc50c8a9601c04b0128e73c410ffe84dacd2b8bb37167aae5595728aa25e88c4c9b92 jruby-bin-9.2.3.0.tar.gz=97ee210157c451567946b38d33380051f82e7e8cb5f7649fffe050542ff6cd627e2c42f4c46739d1f0995c87e7338865b18844741285bf3f72364aa3c841c54c jruby-bin-9.2.4.0.tar.gz=9fe1506e862a17e261cf726e1bb70a9f612a6d7beda919a01405899660d1f4b79ee690ddf9aeed1d2b2f3cbd698be8df4f98d3815352772cc680e9646d721761 jruby-bin-9.2.4.1.tar.gz=2c41e7884cc54819da17ea9b2b773d05d3240d53a2ecb57ba430ab61308066eeb1bfbe6627e6c261f5f27ab5df7f5972656366a04a191a81b0379f620b74512d jruby-bin-9.2.5.0.tar.gz=d548eba8de420c80062021f5b6e6b203f8b7b36e3f11409919eeab87a028a18f9346f27d2cd8b1f33419adcc83fc804a36dbc3cee169ef1d93383b8f5835ba2c jruby-bin-9.2.6.0.tar.gz=20c7897da0d2b585616ea5848998fe8770517e24e16955797db2e5bff4622c348082628d304240a71a97e9551ef7aa63271cfb728eb5fb7e7d19bb48aff20d4c jruby-bin-9.2.7.0.tar.gz=8e71e27fdb149cb7470fb736e7ce858719d13ce6ff8a1e9ab1c1dc71fcc068fb601946bb28ed2feee3670b5e6ebfa8a655a6618d1badfc3763897912c41b1c82 jruby-bin-9.2.8.0.tar.gz=7f71fb5bc8c6c31b31b4c0430ae091871b21aa345777662f264c728c60212365dadb63a7a4b2fff31adbbf8a2e7cfa678d47486e28840f57b86cd45fe9354013 jruby-bin-9.2.9.0.tar.gz=7df33150858ddff586b3bd86120d4bdd80546c7f8e62245f61facbaa5527400a1aebbb33e4a1a8af52066487e3d29760eb96c7ecb9875eb9bc954ccbcb37a4d2 jruby-bin-9.2.10.0.tar.gz=f4ca024602ddab37154f5547132accb26e7c0ac2e913ebe1b5c7806727eb148249e76031ed4623ab53814beb8fb3f472e386f44d57adb5d2b3b00fb2773c8a63 jruby-bin-9.2.11.0.tar.gz=f736a9e139694c84d0a5ea42f36b972adc82c9be13e0b80bd61045c026e4fe31ccdd4be3dd3e94781c846f356e026465e41716fd2744ded2ab0ca39cd33bb46b jruby-bin-9.2.11.1.tar.gz=2f758fabf5910ea01e9c04c7600d9c666f2df3db8622f3eeb3534578075ce65013c42fe9ea6f95d4499945f795e6d566eed2b1545e149af823eb1d29167a1223 jruby-bin-9.2.12.0.tar.gz=1dbc5bb3814a6590f5e8ecf4889152684b5625fe81794a2c4064d598614a85129256002dcd239e294f209b98e3abaf9bfe70467fff48ef66b1531162dc6c3be6 jruby-bin-9.2.13.0.tar.gz=2cba016ad6a376252083122d51335610209d860c41de1902f5cd49ffc2f6b49c350b68df8fc4113c221255af4db7ec07980267b9888369811faf66db369e757c jruby-bin-9.2.14.0.tar.gz=ee3d17e875dd197f92744c7cba62320bfd3f166bbb2ca117f2910780a7c571779c0940e024351e9d4685ee9781dd207e773ace57a4a8a7011869c8b6209513c5 jruby-bin-9.2.15.0.tar.gz=678abfa7654b53b049e4103ae3647775d970c5a7192539378957c1731a3037c852e03f00a496c022c1c438d159a93be6e6f04d7563c811aeb7d261ced643d9e5 jruby-bin-9.2.16.0.tar.gz=f77e314d578a980071bddc25c65659d62e0644927ebc4e7d7d4523935b6c893e611d47ae7478a26ce7acff38b1525eac11b4a329188cdf76aeb07fab667d99d4 jruby-bin-9.2.17.0.tar.gz=e90ac1890a54a892b13adbbeab3cc5242889ff2a4b6cae535c0a3172072bda6ab01b960705ba608d6d7ebe9de5984d8384dbbb6399ab3b2e53a9e347e7849e1b jruby-bin-9.2.18.0.tar.gz=c5816ee0f7b0f559dac70ffc5277f85ae9c41ad176e43d277f820c2727387baba93998b915cadf9708fa78b5cdf3911a9c39c2ebb61a77a38dcff359f7d88a73 jruby-bin-9.2.19.0.tar.gz=3740674035e27cf7961b3570ad65536c30faab1c9a71a42a696b173379e79647411d57e0d1d06b5f9c9a970eb02a595a559191af08a083773dc4601dcfd07491 jruby-bin-9.2.20.0.tar.gz=1961f52f41e7eb9f50b0f382c8166ad988a6b3c0311c342658edb34486b073ed45c1ca5731aa319196db02cec208a4dfc86aa6b436959b80243bfa4f62629735 jruby-bin-9.2.20.1.tar.gz=598e28cbad682fbb30a9a9a9f708e6e1f4b7903300de2477e88a646c42ae594df5b768ff5379ed447f1a7168e93dbe35cc2d5db7087cb2228233a05bc4687908 jruby-bin-9.2.21.0.tar.gz=8f6cfc43ce3ebbd69781da71c5a70746ada090162bf6cb709dca41a6d968e6072ae62f657cb0bd471c648ff294044bfec3079828bdc410bd64758f76a93c3214 jruby-bin-9.3.0.0.tar.gz=06331ce32ee88aaad5e5bc0668d164ec3263f8ef3ed34bb32981b76ca33f8c817e3632550775706481094159f4feb43916ad1f9ec0f0775ad756b16cb7bd9417 jruby-bin-9.3.1.0.tar.gz=bfcbe6dc5ba736fc944af15eb387b545f6c5b987a7db88045913a02a1d30726c5d1255c4dd609aa7c2d2823ddf9d8360223b0575c93302aeef4c54eb37af9abe jruby-bin-9.3.2.0.tar.gz=b1777bfdf1964d7e527bb3dfc47b4b9e8c589cdb301c38ee8ee988bd0c392ca978ee3c1c24e4b5a65bdecff67d1bd96e2d8645e58ff7e891e3622097ea29e925 jruby-bin-9.3.3.0.tar.gz=648e70de0bda710e2dc70fd03c3dc6b798dd4c7b92584c54306c426f59ebe1168a595c4cf94328f6b44674f5507bee354efdb1cd73060b73b0171a3605051c9c jruby-bin-9.3.4.0.tar.gz=6b09decf412a76578179cefaabf01cc8740f70ab5324954e6aa43b1d8b81c37db7a99b1f94d6ced2b459f1c44c3086892b9a2c06b3ea838baf75a8fd5e0447c8 jruby-bin-9.3.6.0.tar.gz=f730522eff27462192808773cbd071cdaefae11f20bc808a8f22515a33960a730f3c87ec727ddfd9dc9b6b35acffeb50c31d75a4794a3f8daa75e1963ebd246b jruby-bin-9.3.7.0.tar.gz=265051c68d3b9dcce708b75f8267303ae84008859c88d7fe4f282395366c3f52fcf1bb161210555c0fd0a2427ff5a728ea9e337feea3d9b69559cadb2f300aed jruby-bin-9.3.8.0.tar.gz=12e795b7e1f14141bde68f52a29b0aa9f1db20515240dce83cffec351cefd25959579e01059d42dc8c8e4280493a70819d9beb1e0523e9bc10a72af16d9abd60 jruby-bin-9.3.9.0.tar.gz=f0b31d98f39a2bd4436764db0b0139433d6868bce7c30c5d6e3552616ba879c93478c499f3e4c884fd3728502916aed5c9ca1be150ae3e80ff47b36710c3f6df jruby-bin-9.3.10.0.tar.gz=aa36fd4c5de7b17f5fdcca1d1314d309e7b4470d46822c45baefbc0ad5180e5530a7054502b97b414352af485e7936659390690dc6198512ba6733d8f8d503ed jruby-bin-9.3.11.0.tar.gz=d9fd90bc64028dcc45687d2be51414b1561add20d20d1392525f4434cc684d505427f5e56827afffbbb0ce2c9cd7c1ef846b0bffa737679afb95d4c160232da5 jruby-bin-9.3.13.0.tar.gz=eb24641fb7a6b9d2039ec953388053e7333b306056f9a5bf745331b04cfc05dc4211a9b7780ce88bcee9184b8cbb219b574574d308bc2720547c116f4d4721dc jruby-bin-9.3.14.0.tar.gz=d9b02fc35133f71140cc7d891061f8190b61b3d1065f00092a2aa9a4beaf7d67297dfb0529691bd24d29607d698f39c62af9018e8307c1e6624c3104a61bb74c jruby-bin-9.3.15.0.tar.gz=e41521ebf453d6b6a9de937556fcaa972c60268285d0af4a41bfb95aad790eb47dd507e182958ca6f4889a0e03eedee0fa4bbc58e3d0407a2b6ba64a8b87a21a jruby-bin-9.4.0.0.tar.gz=fb72f8e087ea08653fa4e4225fa26694c3ff97c41f3deb8731cdb6571c6c9b21e0d8f69e2096f82ee81e2b5c283f912e2a5228c15873dbbd56de96a2ba35d59b jruby-bin-9.4.1.0.tar.gz=46003ef6192718a6372b79ebc89bee37957686224a08fe2f9a6be3c9e479784409d0269f0885c4d1f1351585c5d2cd31fd2ad45014e425bcaf2d44d66b98d299 jruby-bin-9.4.2.0.tar.gz=77e484ab73ece93e7d7283f876f0d541607c6080eee696b702b485be9794cf7e6d464f250a6d75387ee69aef3ba40ccf4f6d9fcfe324c5bc7a14376177ea2bb8 jruby-bin-9.4.3.0.tar.gz=2361f4bb2989f5951b0d3e9d49bf31e6805ce39bdc987ad3c6934daa98ab7c8e69763d40d7412ccef8adbbc198e52f4b83d00998ee12ac43fbfc6b5d88930c15 jruby-bin-9.4.4.0.tar.gz=e89dff0cc5b4a948daa95196d4bd4fee0c6901bb4aa023ae35b3679d9739967c2a74e8a4388b1835465dd39f1332a1f321b450b40c54ad2b81802645b4a31ca4 jruby-bin-9.4.5.0.tar.gz=06db948e5fa6f8559abd3b6891c7b4867b9f54b7bddf0e36d6f20cc1bfb394cdba8ea920213e545c927d1cb865e083cb1089c8e925bc608e0f8784a79b5d330f jruby-bin-9.4.6.0.tar.gz=ebdc671622baf3c42a988d6ebe24af6bfefa1f717f050f602a1b35909a3220316329aad080ee2cd9cd330da9428f8d736502573efa64bd70f093ccc123ab32b0 jruby-bin-9.4.7.0.tar.gz=4fc8b12deba7b8a53a523a41a31c248895adc9bd54a62664a27107e7205369af39c0eaa508a9a70611c3bb845524d8c5f39451c09b8b9cd87059ae15139703b9 jruby-bin-9.4.8.0.tar.gz=0d65fdfd63e2049ab3b8ccbcb4caaaab20aea5a63276aeb20ed4092191a8814f144425dd0d926aeed757ad6b4daa308a98fafe1bbd1647f3db44368066f61868 MagLev-1.0.0.tar.gz=8da29f16e08f657b0d2f147b64f2202ac027db26f85da8dec29f926898f178ac8d11260fd6c0a539a9b9b15eb92d8c7ced86a8cab1861ae7f8a33b6fa468e5cb MagLev-1.1beta.tar.gz=7122af70530e76b9a4cee93244d6872b49616e78086bc8a5db0f32d2b846560b352c4831addbbecc72e0e3158bd52f26c2da14f5d83a515ead30efe7c538b62e MagLev-1.1beta2.tar.gz=43b4b831791074f6e8c12f6fbe6ccec2bd0446dae029d3e6717cde1e7adca8462a2d7dc49c14112cb568b5b3adc8cd051767044b41d57ae51f38aca035ff8597 MagLev-1.1RC1.tar.gz=942c1cf43f1a911230aa43bbac1cea2e2e61b5e19af755e29a6a71139d66d304efcc519072dcc3487a2da7462847530564aff4a2159d675e3270cc938a297dd9 MagLev-1.2Alpha.tar.gz=2672e3e5425df2d2ecc49f85df5845fdb083f74a7b242cac75e33d0c1837079ced8ec8b273807326d08e7bf6f95cb4f1d8351f37af8bb38c4150e6292fc553dc MagLev-1.2Alpha2.tar.gz=4492ed58b6c2b852502a2195836f1db5a80f0619467e4d7b44981a993a5e9a9ea5c9fecf1198de1891583e334bbc3c3a86648ce8afea1137ae9c73a4d76b0f4a MagLev-1.2Alpha3.tar.gz=6290895b22efb986ffd7305b7d651f20a051ab6869d51310bf891fa3eed48526a8617b69f72793e8ac0b57f99bc5de75f34235ef94de967bbdcd51857efc2af6 MagLev-1.2Alpha4.tar.gz=a621e9c615ffec503910540db770754f29bab1646d8e67650d5b82413bd551adfb0bbbb8155407ccb6f80933bfe8ae1bf9b688eb0defbc88710308bde1325683 mruby-1.0.0.tar.gz=4a0f2927da3401df23d5c19ba566995f76775def3badbb14f16510a271e7b40a833fc61841f89d8adc6d57b5b12cb453708961c16a22133c092fab8ecfcd1e3c mruby-1.1.0.tar.gz=afa99a973e9c1b72a5a418d709c4aca08dc7449c427cedef5f12db4ccefb15e11a4fd1c23ceb7e31e49d4d2e602c0b1f9dcf2e0f6cf8ea3466f0b9bee23b53df mruby-1.2.0.tar.gz=bd5de32ba52b6642358752755329fa45a954082122a8983012930056c286ac328fb52fbdd11f34ff7c80af2c0e9a6348abcd5214602aca1150f2e7ae25cad1f2 mruby-1.3.0.tar.gz=13a57306706d2d60693151919ae15bb3621e6e7ed3b5e9c6d3b1c8d44e52b898c1ad394b39946d730ff82a19f5e3b7c2a374f9dcc3b6c6f990581e504f1cb9cb mruby-1.4.0.tar.gz=d2dd6e17c7f8e890ef5b6887538cccdea08a2376ba8f9a478d7d5c4377fd4c31a4af6323b1fc73952ef80e5a4778ca22eac3d724ce7d50b76770f7e614df7da0 mruby-1.4.1.tar.gz=2cbf155ba7819211b6410ea606c4d0db3adf4f47a4018ac45285ab3e32b94f280aa0af0936ead7233411957cfca62979d14bbaaf0d8f40521cba5c12272f2af4 mruby-2.0.0.tar.gz=8379f76b7a06d280e2a2552eec2975ffa3fe85b99028f6f7c009cd908f95faf3cd36a9975f502a5779559baf3c45a4297da0b6bcc038d213a0fdee851f9d01ea mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.1.0-rc.tar.gz=f310b385cbf80c6b6ab67e2a41b931411149639c0bf778799e3358d6a9a59f508f42e3faf72fef9e8ef91088d6184c445af7933a47e4e2b2fe114362d579bac0 mruby-2.1.0.tar.gz=da28b5a078e121c75edf62fc68fad6d5810212bd53a3424d4f585ffe5bbd09f652393ffea0f4b3ddd802e5fe178554dc67040c39c9d5069bdfad4ef22ead7e8d mruby-2.1.1-rc.tar.gz=97c9cc2c79a5dbf2f634ea08532f0f512f8af6ffb99ab4eefd83fc336ca9d97b943e76643971047b4508aaddb5e40176d6cc8fa39a17022455aa15d774eb5b98 mruby-2.1.1-rc2.tar.gz=13aa32a35bd5d8f02a9bfd08d17818dbae78ce46c8b0224a029f9f191cb64ac330eddf3871f4396b9221b987a91e4cd6f8933f59814ac0018155ec8454abff18 mruby-2.1.1.tar.gz=66f9b4bebb5a7b19f5cb1be2bd8b9bc65e4dbb5d4350d238ad5f947c9195fd431f2069f7334036ea63a750e9257e59ae1aef16ac99c7e1f4e17724cd1cbe2e50 rubinius-1.3.3.tar.bz2=8b91baf429dac60663d0e4da3152a60ec6e007f5d6c17ffa430876ec88eb87ade44efae90f2e32e238fd74f1b3d54e27492315f08e7bb073220b402e1e2d3163 rubinius-1.4.1.tar.bz2=928d12aa01a1d0f6c80175d67d3b1f8b9840f69f045c8148786612316421223f4cea71e3c373ee18a3f686b1457557ae547645afe758a99d21c4818dff47b9d1 rubinius-2.0.0.tar.bz2=5c81a6b8cf7b59e08c3b9353b0eb37ce985aaf391f5064df65ffb10f6d12b668287e4d4e61e2c6b560d9234c10f0b64bba74259f2c06f1dac488928544d4131d rubinius-2.1.1.tar.bz2=154cfa93ed59835814b8b974f6d738b049942fcc2b75095d21c87647d002c879fd55aa3d1ec95414b5b66eb9926c25a5c6e3e19a7c0da7dec6edbf434acb9c68 rubinius-2.2.10.tar.bz2=c2168e676059c197123916dd948b83e39bb96e99786bdcaef2e690936b761fedb13740b9f19883f991f1b475f3249ea1696213e8448c41ae15dfc14b3d4e1fda rubinius-2.3.0.tar.bz2=d0f3dd5e3b891bff2eb79b7810c6041e15fbbf0606c379f89575cefd829ac7a394b0c12ed3c5a4d452730797bc0a2c6c82646a19a078b56dcac7acad015a4559 rubinius-2.4.1.tar.bz2=7bcea320006b8cd3d122c407d89c325973a74c32456ba0b649657ac848f4682f2eb7455c13e3007709c22932bc2e1b65e2dd43fda0d3c9f993ddf8a74d1e2cb1 rubinius-2.5.0.tar.bz2=ac94d5bc11524e715fc24c1de33f4d358c2cd65e92fbb64c850dc8151d2a712d268227733c99fcffe298c3bdd6ce080c5e9553e4e8f3238868323498a9d10cae rubinius-2.5.1.tar.bz2=9315f76126d0aa754ee63b190385c24cb084f36293a99aa30fc482fd880d5393aabce361e09ff5514bc2540dfede8e179b7e9212b2dd59bd14ca2aa69d209a83 rubinius-2.5.2.tar.bz2=b48bd8d54a450441a50904b07c75c8d31b59822830a74c952720d6f8d2d86e6a27a84775e975ff2bf55bf3346f34e69d742f308933a9d8476e5e78109cb525f6 rubinius-2.5.3.tar.bz2=b923446d325dc3ce5ad28af9ee527607fae3259b85e85aeff97c1bebbb4520daf70616957b1c0ded900ed19e59025826dee66977c19cd2a2d4e9a0296811eb20 rubinius-2.5.4.tar.bz2=75b7ddbe218e4c92210dbf5a06eb8b3c3aa028d16146982a4e813e3af10a90d33f3e239f4508469c6aba17f02cb8bd10e96a204839975e06519869cacd456c92 rubinius-2.5.5.tar.bz2=a862146ddbbdcd4439eb64e78bfe6d09ae4cca540d19869618426d3f451544658713fe8eb7d46493785eb0cc721077e624293cc44d68eea3ef584967b43a18d7 rubinius-2.5.6.tar.bz2=9a0bdb5d77f80f163925ce409d00be3cee34871baae8bcfdb34c3c7545b92fd14102fecb970e42b3012588d299e504b724025f397a5a00e181ab75f1448e426a rubinius-2.5.7.tar.bz2=8048110b3ba4e5ff8c3f35282896067e1b1b46dccaf9ef4f6c9b6098782f27591ff59ccae0234fd7e881e3aaf17a0b420286b1b52ecd2cb672249655795a6982 rubinius-2.5.8.tar.bz2=23fca2f9747d2b0e544af890c3baacfb7b3a009cc59cbe653762ccdd827a6c915dcc57902d317fa1f7a81f8c12682f6c3a93195331b6de0f705b118e2e8c13f1 ruby-1.9.3-p550.tar.bz2=38767e98df25484f7292437f3cb0f798b3a43e9a7414a5401677e96ad1cc367cb3fa23ac3abe568d5bf2b2ca553713469a8770d41b79bc63daf3fa59cb4e15c6 ruby-1.9.3-p551.tar.bz2=5ea40f8c40cf116030ffdedbe436c1fdbf9a50b7bb44bc890845c9c2a885c34da711bc1a9e9694788c2f4710f7e6e0adc4410aec1ab18a25a27168f25ac3d68c ruby-2.0.0-p576.tar.bz2=e089cca4867cd9c715f4f37e40a1db9af6ba0c74b47e79568121bb980476f8877a87ccb848b973381edb4667c0c73165f5e1761f60db839e67f6326302dbd864 ruby-2.0.0-p594.tar.bz2=8301a51c73fb63a8cfeb14af47d0c18b5bc3c45e3d62fc2ed56a673a1cd6b0015c41f275e70eb14a9e40036b1530977199321e05285e107a6adf58514bef1b3d ruby-2.0.0-p598.tar.bz2=10026a04e01a8ad14ea9c99bbdf4f7d04029b73ee0c01bbf6c2eb2817332d49adacf127b646693b67b5dd7010eaf3b696b23b6335cc0f7ee5a6b56dbba0f6f82 ruby-2.0.0-p643.tar.bz2=453117152e6facdcd5bedaa9c3b1e349382bc5bc1dd3d650ec58b398cb9d2519a2822d05da10bcc5dbbb4f513fc5fef310caa3529d176fa2d453befb28e4d83a ruby-2.0.0-p645.tar.bz2=e9ca186b1cf0877cdbecd43dcab2c5161a53103e926609d5e1b769a4980eab4571bfd0951788b4fc92dfd9d10175b0f5f36ea2c7289e575a9db9b62c02f93185 ruby-2.0.0-p647.tar.bz2=3416af771ebb0b27ceacf23d309bd2a1ede832c2edf48a5ca46f0b0b84b2ab94fb6362a0c7fe4f77b21253539db8161ae26d23a78d1ba729bf03812454d93d04 ruby-2.0.0-p648.tar.bz2=609acf6d6352c9746e21cd7f0e7d29f5eb522e6fff2d5fad0431d63c568cc084ed5b7141f84cd33512d8213200d2d1a22e8d7df71469a980a3a92886133fea38 ruby-2.1.3.tar.bz2=9b48adb161e5e4550a71f61252c8edf59944affb82250babcb64240749af4b672e4a54ccd0feac5b36ea447a358b350b5080125ef2d4acf6e9e8b1ab82612f48 ruby-2.1.4.tar.bz2=68db1567751166c5e7d24b6e5015124b8a15568c50556e1f429486395352fa56c4a195a74820ab135697924149d014b445b345a1b9755678aaf824fba79c606b ruby-2.1.5.tar.bz2=d4b1e3c2b6a0dc79846cce056043c48a2a2a97599c76e9a07af21a77fd10e04c8a34f3a60b6975181bff17b2c452af874fa073ad029549f3203e59095ab70196 ruby-2.1.6.tar.bz2=75d58120b5f387bcadbf6d19e85624f78c74f81b9018baef39207214673f7ebc0700ab31145acd88b4071c896ba8e1302a29c90955bcf5f8c863634125022aa6 ruby-2.1.7.tar.bz2=f610d2dd6a93f0a5e84e04ddedf847bbcea5dd3289b3164cdf60be64f67a80dfd5f9836ea5d169970cd0ce24a7e05ea6190699706567cb0d5cf450de6a70e445 ruby-2.1.8.tar.bz2=7129c012bca7f0e7cfa51c73ba0898697f7a9f31abd5ae57d38be5b6b646fd80ab33be9b262cd3e2486c66f65aaf4ec6e881ae6e5a82ec9df62f00fa072510fc ruby-2.1.9.tar.bz2=a86422132e4c64007a84a91696f4557bdcbc8716fbfe1962f1eef3754ee7f994f4de0b5b7e7231c25057515767040d5c4af33339750b6db15744662e9bd24f38 ruby-2.1.10.tar.bz2=4b7213695416876e4de3cbce912f61ac89db052c74f0daa8424477991cfc49b07300e960177ff576b634a97ee8afef3c5aded5d5806329dbd01d0ce7b42b9b63 ruby-2.2.0-preview1.tar.bz2=2f1190f5d8cd1fa9962d1ff416dae97759d032a96801d77bc6b10136eba59dde1a554ff8c0c2d9ce0d3c1361d4dd12ad573b1266fd53b90ab238d8ce39e6b862 ruby-2.2.0-preview2.tar.bz2=c654d4c047f9463a5fb81eaea0fa5ab7bf316962bc7fb0fb356861e6336ce8ce2162c7779d8b27f72d7bc0e9604b5e5af2910abcb0b0a1f197b3138eaddfd4a5 ruby-2.2.0-rc1.tar.bz2=181201168360bee37dceeef3481a69e8a333a5d329680031fd9d371d30ac64460bbdf4db07546133024f541774e51301f1630cfd988c5e5bf2464834f3abe6bf ruby-2.2.0.tar.bz2=04edc53e8cd1732c3ca61ebeb1d6133614beb10f77f9abb80d8d36352fe8aa205112068e460bf600b2c7e81e0ddcc3b311e7e027c320366f1bd992b3e378a6ad ruby-2.2.1.tar.bz2=af6a8e75a66b953ff33ecbca5111bcf1c6560b6b48b370b700820fcbe91363146c5ac8abd670a14e693b44343ae598bab472ed2902834304c03ffcd9550886d1 ruby-2.2.2.tar.bz2=d6693251296e9c6e8452786ce6b0447c8730aff7f92d0a92733444dbf298a1e7504b7bd29bb6ee4f2155ef94ccb63148311c3ed7ac3403b60120a3ab5c70a162 ruby-2.2.3.tar.bz2=795f1b66a6d4f0baef897068899c3a1a4370ce1268618e6a7d6d4720234444259f371d1ba2e174b2f7580265e9f18eda3f295fbb087447aa6e8fb7a0f07526ce ruby-2.2.4.tar.bz2=d27ca2f19c214ce87f906b57edd41f2f8af35b2871c191470facded9cfda15ba46e5c3bc7d5540225a38da6bd65050fcc8aaa4ffbadbb6bf7dc891c1821da0df ruby-2.2.5.tar.bz2=d3224814361c297bc36646c2e40f63c461ccf5a77fea5a3acdcb2c7ad1705bb229ac6abbd7ad1ae61cbe0fefd7a008c6102568d11366ad3107179302cd3e734e ruby-2.2.6.tar.bz2=7a93f72d236521ac28c8a0bc0c73cf805797a8813d22e02f42c5fc05dd39f6e422817272e0db6a24c245f6f97ad4b2b412a9a47ac50156ab186df596918a5f34 ruby-2.2.7.tar.bz2=83756cd1c91516962b83961e0de59d858618f7ed3e9795f930aab4f199d47a95ed8f867d8aa9b51d508be26d9babf2140117c88241168bac41e6ef702cfadf20 ruby-2.2.8.tar.bz2=aa1c65f76a51a57d9059a38a13a823112b53850a9e7d6f72c3f3e38d381412014521049f7065c1b00877501b3b554235135d0f308045c2a9da133c766f5b9e46 ruby-2.2.9.tar.bz2=2a8c8770fda20a22b79c9115b6f468f8e7ea1092c84a5089af7a3122163e5ad298b493e6637e4d93ba02d899d8a619c94064dda8ac98cf3b93f64f45d5401085 ruby-2.2.10.tar.bz2=f8ec96c2a5f4ecf22052ee0b1029989ded52d7bf5d41be24fef67e732e76f72119302240bca08f0547510a9cd29e941a32e263cad9c8a2bf80023d6bc97b2373 ruby-2.3.0-preview1.tar.bz2=ae6d46c87f59e1fd3703b76dfc45bfcf208625f95ab9f4559f0b9f7050e8681f1a6e419f5fa06b704c83e56879c3a9ff1337dba443bcfca76fadb49c97d97a93 ruby-2.3.0-preview2.tar.bz2=e397f321d4338edba8d005d871408775f03d975da90c8abcfdb457a1bc7e6c87efe58c53b2c3bc122e9f58f619767b271bcc8d5d9663ed4b4288c60556e8d288 ruby-2.3.0.tar.bz2=77b707359e754c3616699d21697752741497c719dc3d6fdfb55ed639e76d52560d293ae54cbe5c63be78dc73fbe60f1b8615d704d017bdfe1994aa9747d26a6c ruby-2.3.1.tar.bz2=a8659b96a3a481a3dbdbb6997eb18ff1f8cd926a9707a90d071e937315c21d372c89252f0d44732ae5007d2678fda8c8fbceafa4e4b4ff500d236fb796284d8d ruby-2.3.2.tar.bz2=78699bae5b0a2382a58f9d51f7d891341f00ad3a90d9ca06b68b1b245cf5acebc3a82133e39bf6a412ac999a5c0f778a0dab177c2569ffbee085ffff6f6ec38e ruby-2.3.3.tar.bz2=88f7782effd35bfe0b4c33140b5eb147d09b63fbb35b9c42d2200c010f387e2b70984ead1eca86569e8ec31f08b35289d440c0ca76b662dadb760f848e863d91 ruby-2.3.4.tar.bz2=ad1f16142615498232d0de85149585be1d2c5de2bc40ec160d272a09e098ef6f317d8b25026001735261fd1c5bc0d1f8513a8474e89f0d86eed5b2fe7338d64e ruby-2.3.5.tar.bz2=3ecc7c0ac10672166e1a58cfcd5ae45dfc637c22cec549a30975575cbe59ec39945d806e47661f45071962ef9404566007a982aedccb7d4241b4459cb88507df ruby-2.3.6.tar.bz2=bc3c7a115745a38e44bd91eb5637b1e412011c471d9749db7960185ef75737b944dd0e524f22432809649952ca7d93f46d458990e9cd2b0db5ca8abf4bc8ea99 ruby-2.3.7.tar.bz2=e72754f7703f0706c4b0bccd053035536053451fe069a55427984cc0bc5692b86bd51c243c5f62f78527c66b08300d2e4aa19b73e6ded13d6020aa2450e66a7d rubu-2.3.8.tar.bz2=6d79e0d25757fd37188a8db3e630a52539bce7927fcb779a2ce9a97b9e5f330753035c16843552f1a1fb6c9a1e5c0f916b3cc8b5c0bfe81e20f35f8442e40ae8 ruby-2.4.0-preview1.tar.bz2=c9873e8686eb54dbde61d6e23cd5197beebccd6cb31fd12c82763ebe1fde17095d7514d9d93c2c82b238032c98691df5479dc2d666a8a590e0fc54450ec29cb5 ruby-2.4.0-preview2.tar.bz2=0c9a59a2f57a99c4ee8539a30f41da1de7547566203f89d856e1be9dbb44365754e6c470145dc9336eb324e0feb2f53d9fef18a1564968ac21f9ee528905949f ruby-2.4.0-preview3.tar.bz2=6602c65a7b1e3bc680acc48217108f4335e84fdd74a9cf06f2e2f9ad00a2fccacf9fa035a912bc9d5cc3f0c7a5e21475971dfac37b0364311ef3645f25c7ddf9 ruby-2.4.0-rc1.tar.bz2=b43902ac7794487197df55a45256819d2e7540b77f1ed4eb68def3e0473ee98860a400862075bafadbde74f242e1dfe36a18cd6fe05ac42aae1ea6dddc9978ce ruby-2.4.0.tar.bz2=bef7bb53f63fb74073d071cc125fb67b273ed0779ef43c2d2969089b9ca21fff1bd012281c5b748f7a3c24dd26e71730d7248c05a01cb23ab2089eb4d02115fe ruby-2.4.1.tar.bz2=1c80d4c30ecb51758a193b26b76802a06d214de7f15570f1e85b5fae4cec81bda7237f086b81f6f2b5767f2e93d347ad1fa3f49d7b5c2e084d5f57c419503f74 ruby-2.4.2.tar.bz2=1a5302d2558089a6b91b815fff9b75a29e690f10861de5fdd48211f3f45025a70dad7495f216e6af9c62d72e69ed316f1a52fada704bdc7e6d8c094d141ea77c ruby-2.4.3.tar.bz2=fb4339e30c04d03b1422b6c32ede45902e072cd26325b36f3fc05c341d42eea6431d88718242dcc9ce24d9cad26f3d26772f2e806bd7d93f40be50268c318409 ruby-2.4.4.tar.bz2=ae632852a5f413561d8134e9ef3bb82adb37317696dd293ef92cb76709ecd45718f14116ecce35b12f1c2dd53ccae8dabc7a924a270072b697512d11f4922347 ruby-2.4.5.tar.bz2=7034fcaeaee41f14bc0ecce0d3d93bd1abe95310e1a0b95fac66eaba867adfb2bf7ba4d0d70d67a15ce8df16052dee405c38cdb18987602e64a2f701d37d3df0 ruby-2.4.6.tar.bz2=292802984e5cff6d526d817bde08216fe801d255c4cede0646e450f22d4a3a81ae612ec5d193dcc2a888e3e98b2531af845b6b863a2952bcf3fb863f95368bcf ruby-2.4.7.tar.bz2=2665bca5f55d4b37f100eec0e2e632d41158139b85fcb8d5806c6dc1699e64194f17b9fe757b5afd6aa2c6e7ccabba8710a9aa8182a2d697add11f2b76cf6958 ruby-2.4.8.tar.bz2=2d7e0f5ad766e2a12a1b53ff838e6bfe86244ffb7202196769c25e9df6f71f3ccdd8605e7ef35c53e54310bc82caf6b368ad5111dd0a3ad70a3aae1a7be93f08 ruby-2.4.9.tar.bz2=d485444dcd025a261a16bd740dae63c0aa23e4138a095584e7a83aec47af34415c7d9cbc1313e92da2ec416b11bfddf20bb1a7b60c80f12906d11ef27409b3e8 ruby-2.4.10.tar.bz2=4d730d2d7cb96b002167ee358258f2620862a5a6d8627cfa5b49bd43c6e59c50c0f437b959d4689b231d57706ec7d5910d9b144f4ca1c1ed56bc879ed92e8a59 ruby-2.5.0-preview1.tar.bz2=2d39ef64aaf7a52014905f4ad59b53e83b71433e50a9227f9f50cbb7a2c9a5db9cd69fa7dbe01234819f7edd2216b3d915f21676f07d12bb5f0f3276358bce7f ruby-2.5.0-rc1.tar.bz2=bf0eb114097f9e505ff846f25e7556a2fb393573b4e8b773f94cf5b47998e221f3962a291db15a3cdbdf4ced5a523812937f80d95f4ee3f7b13c4e37f178d7a7 ruby-2.5.0.tar.bz2=8f6fdf6708e7470f55bc009db2567cd8d4e633ad0678d83a015441ecf5b5d88bd7da8fb8533a42157ff83b74d00b6dc617d39bbb17fc2c6c12287a1d8eaa0f2c ruby-2.5.1.tar.bz2=82e799ecf7257a9f5fe8691c50a478b0f91bd4bdca50341c839634b0da5cd76c5556965cb9437264b66438434c94210c949fe9dab88cbc5b3b7fa34b5382659b ruby-2.5.2.tar.bz2=9f9388a162a3ae9c14ec8999fa3b12ff5397de14f55996cc8761d21c757113db37ace4d326b9606de7ad3a5875aa94fec900dd9b81b2fb0dff558c39422f4aa1 ruby-2.5.3.tar.bz2=6fe89fe9d406bb454457442f908774577369ab2501da4fd15725ccbab77675b88faad739a6c8ad1c7b6690b439a27de5e08035b7546406cdeca65c7b295e2c77 ruby-2.5.4.tar.bz2=3c4f54f38ee50914a44d07e4fd299e53dddd045f2d38da2140586b8a9c45d1172fec2ad5b0411c228a9b31f5e161214820903a65b98caf3b0dfeeaabf2cab6ad ruby-2.5.5.tar.bz2=1b56aa79569b818446440b9f2d13122bf7c2976ab9b2865f5fb62d247d7768dd4ac5b5e463709ffec0f757bff7088afd293c2a8c5349c3780763b6444bb354a8 ruby-2.5.6.tar.bz2=e4511d42d19a7bb39ea79f66bb4eca54b63c2a9d27addc035d6d670c1e59ee48a0c6e9c6bc7d082d1f1114b0668831dce3b7422034517f3c4a06ced0e47a7914 ruby-2.5.7.tar.bz2=7d6a7d41b4f3789f46be5f996099f3eb8321aa4778b2a8ff44142654e769ba4ba2df127dd0f267547e4c8cd6ff46364f18e79838df54fcd7e3fb714294ee0099 ruby-2.5.8.tar.bz2=037a5a0510d50b4da85f081d934b07bd6e1c9b5a1ab9b069b3d6eb131ee811351cf02b61988dda7d7aa248aec91612a58d00929d342f0b19ddd7302712caec58 ruby-2.5.9.tar.bz2=12f58e14cfa6337065b0e82941e39b167813920eb54cbdb4ac4a680dd0cb75d2684d341059e7b4d0da1292bfc4e53041443bd14891a66f50991858b440a835c8 ruby-2.6.0-preview1.tar.bz2=d9cb270529a97670d54f43a0236fab072714e715c39277dab70b7a1843ec818e6700e47e1384c7256f9e0ae41ab2c0b768a0de38a5ecf4f4fff5da6ef5ad4944 ruby-2.6.0-preview2.tar.bz2=3872227e9b1c97c206d19bf1e6ce15a38ee15a26c431b4436605dea67affcf16372358984df76b35e7abaa902c15c16f533ac7af47e3031dea9451bbe459b693 ruby-2.6.0-preview3.tar.bz2=d1693625723796e8902f3e4c4fae444f2912af9173489f7cf18c99db2a217afc971b082fce7089e39f8edd54d762d2b4e72843c8306ed29b05ccb15ac03dbb5b ruby-2.6.0-rc1.tar.bz2=cbd6281b2aab6fbce3f699c1ab57e5423304dca7a547a0b3cd4e8e980326dc7b85b2ca2bfaf3f3a648d40f4222fdf1740d81d422790ee7ae1ba1ed33eb11e3e8 ruby-2.6.0-rc2.tar.bz2=9bfbe83fd3699b71bae2350801d8c967eb128e79b62a9d36fc0f011b83c53cab28a280939f4cc9f0a28f9bf02dce8eea30866ca4d06480dc44289400abf580ba ruby-2.6.0.tar.bz2=ca3daf9acf11d3db2900af21b66231bd1f025427a9d2212b35f6137ca03f77f57171ddfdb99022c8c8bcd730ff92a7a4af54e8a2a770a67d8e16c5807aa391f1 ruby-2.6.1.tar.bz2=fc41429491935b89532733b95476ab9f8a4efc310aad8f4c2bd3b68fba08fd7b6e9ac84c6c88ca892022d1ba76435295f3299ea466f9b5453c07d41cb539af59 ruby-2.6.2.tar.bz2=cad678d2ced4085e99009e4fef83c067dd0e6ead27a8695bc212c0e5112a7fa09ceb27f82638faf91932ef8bdd090f844e0a878ffdf6845a891da4b858588aa0 ruby-2.6.3.tar.bz2=c63c3f527bef88922345f4abb4b9ad467117b63f2132e41722ea6b4234cec3446626c3338e673065a06d2894feee92472807c284cbe613a442c8fda234ea7f88 ruby-2.6.4.tar.bz2=a9fa2f51fb5f86cd8dcaa0925fe6f13d4f19f110b5d4c5fd251f199d16aaf920db39ad3bb50460eb94ab8d471ab2ac8bb54daea4a3bb080eaf45250aac3437fe ruby-2.6.5.tar.bz2=28e0b04ac8ca85203eb8939137b5e5de4850c933faf7f62fc69648fe1886faaabf6cdf48382f9d9585c1720876d10b41dafd33efaeb23341c309917fbd8a6e21 ruby-2.6.6.tar.bz2=001851cf55c4529287ca7cc132afc8c7af4293cdef71feb1922da4901ece255ec453d7697b102a9a90aef2a048fe3d09017ea9378ab4a4df998c21ec3890cdbb ruby-2.6.7.tar.bz2=311ec56d23d0de7a163f66c1ef4e5369b822f8409f8e1f3a25785c803f01c68dd13aa8ddcfb3a0fe6a97bf321950f8d6cd75b2babcb04158e791601914666f7a ruby-2.6.8.tar.bz2=51806d48187dfcce269ff904943dd008df800216ad4797f95481bdeecc2fbac40016bc02eabfff32414839ebb2087511d25eebfd6acead1a1d3813be6c10edf7 ruby-2.6.9.tar.bz2=ff067ebc059094c0a9a0debf54a37aad2c85f7ed47be59299041c9c03a7701529f5063ff32a1b8c56d48ee8585015acba63602ed0176b2797d263d43d67aa241 ruby-2.6.10.tar.bz2=275a0f329641e6c3d3d3c33ffabf585195187eb3baa4fb1dfd35999fa0a80bd5925943fa2711827ac00dffb6c9a1deeadabaf2e9ee401d56926fc167db5ae4a4 ruby-2.7.0-preview1.tar.bz2=a36b241fc1eccba121bb7c2cc5675b11609e0153e25a3a8961b67270c05414b1aa669ce5d4a5ebe4c6b2328ea2b8f8635fbba046b70de103320b3fdcb3d51248 ruby-2.7.0-preview2.tar.bz2=7066ececebbbba4b2933ba1a4f70cdef373169910802259a3e52b4fc144ba298f3cffda4be5fe8a7be8ef769ed43076fa046a9ac2c13bb733475b9852112c6f0 ruby-2.7.0-preview3.tar.bz2=5d8e99e3fd984c7d05c0bc483e1504e81ccdb920cbb2d78cad3c314e197b30316b692fd0199f836acac41246e3a713cb81dc6dd64c27cba56f807df4c193db1a ruby-2.7.0-rc1.tar.bz2=b5f96227775f8bdf19f944a555d0a83d7e84b37bd31fe4b8ac008a3272b1a28a4d94abbb1b5570ee32ec0690ba9d476b837a020a5194bee14bebf6f0e768bc79 ruby-2.7.0-rc2.tar.bz2=9010f72bb3f33b6cd3f515531e6e05198f295bb2a8a788e3a46cdfd776a9f6176b6ba8612f07f0236a11359302d2b77fdecca1dc6be33581edbb028069397a0a ruby-2.7.0.tar.bz2=8b8dd0ceba65bdde53b7c59e6a84bc6bf634c676bfeb2ff0b3604c362c663b465397f31ff6c936441b3daabb78fb7a619be5569480c95f113dd0453488761ce7 ruby-2.7.1.tar.bz2=4af568f5210379239531dbc54d35739f6ff7ab1d7ffcafc54fed2afeb2b30450d2df386504edf96a494465b3f5fd90cb030974668aa7a1fde5a6b042ea9ca858 ruby-2.7.2.tar.bz2=f07592cce4de3532c0fa1c84d53a134527d28ba95e310cd3487ac321c49ee680faeace285de544ee6db432a90aa7538a1d49ff10c72b235968ca362ef9be621d ruby-2.7.3.tar.bz2=e9236138be3e61380140f2e0d42f8fb82ad8f5219d454de2f6c2ec546bb208acc8b0f2020f23e6446660d2b3b9ae873cdd8298471f166a5f1efba8e80b05e746 ruby-2.7.4.tar.bz2=f144c32c9cb0006dfcfa7d297f83f88b881f68c94f0130346c74dfd8758583a68d22accfd0fc9f31db304ab5ff0bc135bfb2868145c0dec1ee6cec5ac6c3725d ruby-2.7.5.tar.bz2=0aa2ac44bc22859a39c43d08b7c7f457df05c2dc36b2574fd70ca399143ef1000dc5e496212db9eb055bc4258523d47d26db3c57a1a5a5d63cf1b3de9f81645a ruby-2.7.6.tar.bz2=4f7f3624afc43da25ebf0f01d5a2f92f72f94bab7423587cfd3920e089b479bf559b159adf2891b996f7e6a98c008a4f73a4a2170e2f8619417660ac1ab24bdc ruby-2.7.7.tar.bz2=24cc772ac1b56d3bb423f1b33716f221bf534f3717a506bf8235a698f8a454db7d79d94ae9a84067153c2f737b3f8f6085f34e36cc04be0d75ae2fdd57718870 ruby-2.7.8.tar.bz2=3a9db8d9e79318f869417f2ebf3365907febc0d1428116eabf3253c51d8420f255782b32fa30a54802b9f5f4187fad80dab0611cc80436feec84db87b0456ec6 ruby-3.0.0-preview1.tar.gz=b94892951f842a1538f4b99022606ac2c0b5031f1ede7eef3833a8caa9ed63e9b22868509173bfefb406f263c65211db75597b152b61f49e5ba2a875fce63a27 ruby-3.0.0-preview2.tar.gz=6fa4191425ae71e41894b60bd9c31d483a562ee8216886360ce18238ab48115b95be0367708612c45f634e7584fba8940a524ba0113ce0f36ce4df78a112d0b7 ruby-3.0.0-rc1.tar.gz=798926db82d27366b39be97556ac5cb322986b96df913c398449bd3ece533e484a3047fe35e7a6241dfbd0f7da803438f5b04b805b33f95c73e3e41d0bb51183 ruby-3.0.0.tar.gz=e62f4f63dc12cff424e8a09adc06477e1fa1ee2a9b2b6e28ca22fd52a211e8b8891c0045d47935014a83f2df2d6fc7c8a4fd87f01e63c585afc5ef753e1dd1c1 ruby-3.0.1.tar.gz=cb81db2c9b698cf8159b2ca6507f4c7f171e4eb387f5730c4b658ed632b7900a169808e6fbec0ee80598d937030ad5d9c56b63a2a339373ec5d9e1c06b7661d0 ruby-3.0.2.tar.gz=e1fba6f5429b5fca9c3f52a32535615fcf95fafa415efc71c46db4cce159f249112c01574c305026be5c50140335696042e47a74194caea045acbfaa4da738cd ruby-3.0.3.tar.gz=39dab51a0d784a38302372b99f96205817d466245202586d22123745761e9cb39db128ec2b984ebc3919b9faf2adf828d19c97d3fb1e56d44be0a81dc5d11b87 ruby-3.0.4.tar.gz=0dfded6826063c1b39bf625a6e13b46c109cb160c8648b78f0965f70e7c7a1a65f1c117fc8f2cf8bdb34d7cbf79fecf1f45d169d2323406d66ab27b18bde1d22 ruby-3.0.5.tar.gz=ea45fcd2ca53b87f18fd8696d00a1e340d2495443216aaf87d3f643cb5bd8bb614a1faacd82d07e7f2b72172397c728316a82d7c34a7b4566191268ea517ccf7 ruby-3.0.6.tar.gz=d596bfd374ae777717379b409afe8ee1655ade0c0539ada7a10af4780b818efe25a28aa50a2a7226741d1776d744e10ad916641f9d12fb31c7444b0a01d0e0cc ruby-3.0.7.tar.gz=66e5116ddd027ab1b27d466104a5b440889318b4f2f74b5fdf3099812bf5f7ef77be62fe1df37e0dc7cd5b2f5efe7fee5b9096910ce815ca4126577cb2abfaa7 ruby-3.1.0-preview1.tar.gz=63f528f20905827d03649ed9804e4a4e5c15078f9c6c8efcfb306baa7baafa17a406eb09a2c08b42e151e14af33b1aadbd9fb1cc84f9353d070b54bbf1ff950d ruby-3.1.0.tar.gz=76009d325e961e601d9a287e36490cbc1f3b5dbf4878fa6eab2c4daa5ff2fed78cbc7525cd87b09828f97cbe2beb30f528928bcc5647af745d03dffe7c5baaa9 ruby-3.1.1.tar.gz=a60d69d35d6d4ad8926b324a6092f962510183d9759b096ba4ce9db2e254e0f436030c2a62741352efe72aec5ca2329b45edd85cca8ad3254a9c57e3d8f66319 ruby-3.1.2.tar.gz=9155d1150398eaea7c9954af61ecf8dfdb885cfcf63a67bbcf6c92e282cd3ccac0ff9234d039286a9623297b65197441438c37f707e31d270ce2fe11e8f38a44 ruby-3.1.3.tar.gz=550cfda2ae492312009a58316e18fd77ea92852718b37443bcd76aac84ba6694fb841fe19bf23bee099f96f5aeed9d03e77c8c02fb194e414eca5f707adbbf90 ruby-3.1.4.tar.gz=41cf1561dd7eb249bb2c2f5ea958884880648cc1d11da9315f14158a2d0ff94b2c5c7d75291a67e57e1813d2ec7b618e5372a9f18ee93be6ed306f47b0d3199a ruby-3.1.5.tar.gz=23661cb1b61013d912b7433f8707bbcd723391694d91f413747c71428e74f8c7385c1304de7d08b70c9fa3bd649e4eb5e9acb472d89dc2ad5678cc54855a24ae ruby-3.2.0-preview1.tar.gz=d24e77161996c2085f613a86d1ed5ef5c5bf0e18eb459f6a93a0014a5d2ce41079283b4283d24cb96448a0986c8c6c52a04584abd4e73911ea59cefeb786836e ruby-3.2.0-preview2.tar.gz=5e9ddcb1a43cff449b0062cc716bfb80a9ebbb14a1b063f34005e2998c2c5033badb44e882232db9b2fceda9376f6615986e983511fda2575d60894752b605cc ruby-3.2.0-preview3.tar.gz=860634d95e4b9c48f18d38146dfbdc3c389666d45454248a4ccdfc3a5d3cd0c71c73533aabf359558117de9add1472af228d8eaec989c9336b1a3a6f03f1ae88 ruby-3.2.0-rc1.tar.gz=798157d785ebae94cb128d3c134fa35e0e90c654972e531cb6562823042f3fb68a270226f7b1cf0c42572ef2b1488a1a3e44f88389ad2a6f9ca4b280a2a8e759 ruby-3.2.0.tar.gz=94203051d20475b95a66660016721a0457d7ea57656a9f16cdd4264d8aa6c4cd8ea2fab659082611bfbd7b00ebbcf0391e883e2ebf384e4fab91869e0a877d35 ruby-3.2.1.tar.gz=f8bbff5e237b501f4042ddc70a19ac1ce74f72f147c90daf7f3007a940136abde37c12a0f7444f713ede09ba847c2cc2897a1742823832e3dc8cce80073164e1 ruby-3.2.2.tar.gz=bcc68f3f24c1c8987d9c80b57332e5791f25b935ba38daf5addf60dbfe3a05f9dcaf21909681b88e862c67c6ed103150f73259c6e35c564f13a00f432e3c1e46 ruby-3.2.3.tar.gz=75aecd9cf87f1fa66b24ecda8837a53162071b4f8801dcfd79119a24c6e81df3e3e2ba478e1cc48c60103dfaab12a00cfa2039a621f8651298eba8bd8d576360 ruby-3.2.4.tar.gz=b695b98dac7bb2c8755a106d949cb1b1b91551092fad263765171ddf8a4d86585259ffab5f7cc9bace70143d645dbe5932cfc61c6dba7817177de391d76bcd79 +ruby-3.2.5.tar.gz=d86c0151fabf21b418b007465e3f5b3fd0b2de0a9652057fd465b1f7e91b01d00f83a737e972ea994a5d9231e8cb27e64e576852390fe6c2ad502f0d099fe5f4 ruby-3.3.0-preview1.tar.gz=0f891f140ddc6372aa7c4459f8784126e0c341db7b80e72c51e441c5153c43c2d7b965f7807c076862ac84b9b8b0c6a66bbf66fc341746016151397bb21c782a ruby-3.3.0-preview2.tar.gz=1c5a13e519e8487fd40d932b96d14fa729521925c288e7841ab5eada628e506ceca2605bae36eea1aa505d9253383d53cd933b7a4bff96e6de5b1130c7c558e6 ruby-3.3.0-preview3.tar.gz=94db07a6958c09809b2e5b597fa55a121074e8bacb3bf588c83cf0d35b07a8b070172035a49d1abf0d8ee364a9ace824f34e677f7327ffe1acdbab0938ac49c4 ruby-3.3.0.tar.gz=26074009b501fc793d71a74e419f34a6033c9353433919ca74ba2d24a3de432dbb11fd92c2bc285f0e4d951a6d6c74bf5b69a2ab36200c8c26e871746d6e0fc6 ruby-3.3.1.tar.gz=0c8ea922a79152ac7adbfb2541320565bce6a631692fd39d499a06f53ad6339c16fad8374d171351ed63f7bda3312b26d4f8c058c5b6df3d7548fde372c718f1 ruby-3.3.2.tar.gz=a15ba8d6c2830fcd1f2b36f671acf9028c303ec78608fd268da0585db8e95ddd971666e8029bcfa2584da2184a6534e1f2f2da07fa7ca4494e8d842eed206f00 ruby-3.3.3.tar.gz=0388a96127eb6e53b836f7954af51ff62b84cdb7abeab823cb1349993d805b151204e426b9ac04ca8333fbd5e01c386d58bc37d34c4e9286b219dcda7542a150 ruby-3.3.4.tar.gz=56a0b88954a4efd0236626e49cc90cdb15d9bfd42b27d7fc34efae61f500058e58cb32c73fdef5f1505a36602f4632d6148bf3bd1df539cb5581ae157c78c22b ruby-3.4.0-preview1.tar.gz=29c0e32179f7b823b6708f5328e495cd333fe8dd88f7df7d9051deab47add67b14d899bba565bba1a77e1b04c9693d9708541445c112925777bb6891cb7b2b62 rubygems-2.6.11.tgz=3b0dd38c0aaf313c59e299dcf54f7bfb6e6d84b8b739573ddaf599e584da45ed7b1465f6521131b32f237e31a4796d9ef455b8be685064b3fd77a0355dfff13e rubygems-2.6.12.tgz=ebb672488b50f5fc988eab66ab14ce8e887dcc635f71239a85e32fbf1e919ca70196eb4d3f2fee3486cace7064bab0b8b08339c754b723198e1b0b0a0984ab54 rubygems-2.6.13.tgz=c952b6061a9a0778db304c3aa5bea693e71ae2564abfb19f8b123eef66eb1e3877fc7c36f4f1527da97bb320870cbfd4574ac57ad88e850a44fadd67ebdac152 rubygems-2.6.14.tgz=7743845bc5265df3782f85a23896cbb250d8a2bbc9934a27f274b001afa7aa62f7f00f616296f74747ea612d2cb37dd7f533c931aa72550d84c64d2a73d60daf rubygems-2.7.0.tgz=0bd08fbabcc33687c98365ffe6794ca2a5e82160b0297479d4f19bd899d176b7f4efb95248898b26d873f9fc7d86c10cada6e40cdc48738b0bac261c3aad261f rubygems-2.7.1.tgz=fa4ea123760b03b8b8e8ececc55c9dc34249073fb267d310bd903aa7a613267e5d27990bbf28e32c9a746bf884af8a84a0dc202297272f9d477f7710c21bfb60 rubygems-2.7.2.tgz=0f48c6e46663780a571c7ee0e6e772f2e18a755031e7dd8ede7870f238c214b9e3e38153b1ae8f1f78a9aad63c1a079b86573b3a25c57a600d842bdf92b9c4d1 rubygems-2.7.3.tgz=2782331b31947a23f85b285a3d5e7b66e34fe5847bc84dca4f1e6bfe33ce187ab0cbc814229de8111aa19490b656ca78b7c821e4ea6b425449991c01371b7565 rubygems-2.7.4.tgz=90f72a46709ef847666a6a23eecf24521abd5c294b2da8a246bb4c7f85daf4af39a0634fc8093c7bb7ded2ac137ea27fac5ed94af3b70c49e78594285c7a40ce rubygems-2.7.5.tgz=86957f1c438070135df527a15102e40487fcee93a55251463095e4c8794a8616d16ed9bdead0e0ef83c44806bd5016ecd9e178bef608b66af2e68e2c9c49e941 rubygems-2.7.6.tgz=bc168afc40c974dbc7c37eb5678432ba2ed7469c3f007a159699467ff2cff5205c508237193ee8becaa6eb555b043969cc5f92b2aaa6bf7c958dd7c187e258a7 rubygems-2.7.7.tgz=f93b7eacf5ef8725c40d618daf9deabc7e9eed74b3b7f13ecd16f89205fe24958e782314c52f8a8fe3205b93e20b830b4fbf7ff8944ff1cf56feb7de2d773252 rubygems-2.7.8.tgz=3d1cf68377dfcf102028342258aaff5a7257d2d2b34a80508c85aa258d810add46e65a157f902c271b0b7b568c437372d17246e89cd88f8500e47c008d17f1a6 rubygems-2.7.9.tgz=5f699f47bc24d8ffd4f8f44a509a9df71fcd945ca2574dc9d5050bfe06a44830a368f45d204112d7a4f1877e1600a6fe4d1b6b68f9a55288664667b4220a7d72 rubygems-2.7.10.tgz=48a18c0f202f463c38cf5dafecfbc7cc39245e63c7a059ef2cefadda478483794a929ea6b7e0ef062dd4423230746f1f09d7bec06a97fe3ceccc3325397a3e71 rubygems-3.0.0.tgz=047f4d446aae414e4803517088ef47d5cc66319ff08a3795c6d69e83eee9f3e7c3b05419858f7e5b6a8ec224990ca01178a9259961ef2d7ab737bac352a0f18d rubygems-3.0.1.tgz=dc29ad51ec67b1dca82a23973ea92153482788964d0755bdcd3c650116915c461c6e5fb1c826be3ee04a497fec4ac2826904bd406f24611e77cd8c9eaf4d8729 rubygems-3.0.2.tgz=90b46c2cd4f8baee74eb488a40691cc00e754cefc42029d485163d6ad7782df78ba5cbeab08eec6a4f71febe0f6e635e12a9381393008c58eb5e16396df93fbe rubygems-3.0.3.tgz=1dd585243341901c7b4cc60a4902000c10ce57fe2cc9c28e27e274a2e6029f936cde1c99d7097c93c2c5b2c8bcee5d692c8fe5cc00c996a040e4954b674e330e rubygems-3.0.4.tgz=887c64226ec0b32d33f2ea331936683406d54dc74d19e658a23521e25ab50aa23534fe9eecaf696154247ad1df1d24c233d8900b9aabc79096eebd6afef3f775 rubygems-3.0.5.tgz=f5a97cf67d7d043afba7c1aed014f1b64ff6376ea74d3d6533496bc5ca9742e0ccce1a157e6f67d8fcbe59d8e34bbfbcf4ed8be97acf2970603de6381043cb78 rubygems-3.0.6.tgz=1ef1822a2b19790a36a6d242b7d4584222617baa27787ec58961a9cfeb2733f19f9085490ffc72ee375d3153c7114e050c42e68fc8039e727fe5961b09365ee5 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=5dfb040b746e462c297ebcdf84e0f07cd74b86852055dcf0a7cf1814112099bc674bcccd94b03726aee76b253c9345a45d046cbfea230647644f0fd6b1c1ec96 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=17983c442c54d19196be3626e25c64f5474139c0b973624832ba8730efb047bc747c02e59c82f38397bf012c63ab83f79a9c1b64311cab796f08fe96d7d12a1a truffleruby-1.0.0-rc3-linux-amd64.tar.gz=b0b57082d61317911f101da617333d81ee6bede6b6e18f9bed86544dc413339c830198d90cad7ac94c0c8fb690adcfc559dd9f530abb70507ff6a76eee552b61 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=18f9782de56269389320ddad779ec69c168909198d4572e2ea4c18bc8082a539569a76760a6a6da58722fe08d77d83904aaba14baf4075a2833cbd2efc45dff3 truffleruby-1.0.0-rc5-linux-amd64.tar.gz=134d9ba5db7b8a1960d3a88390cd6f7503a0e8565094fb127333d122cd773bfbf9dc976c659029007e6fb68e93486293bac2ee29ab21dae9cb0c06ba57dd2c72 truffleruby-1.0.0-rc5-macos-amd64.tar.gz=5804f1f27916176f5a270de8aac85bc48c38ba37c4e719b09f5777e5c42429271819378cfe096c3cc33d406cd0726f2e37658020f97a438fd53751019831569a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=2597b375f590755b851d3b8cbad3eeab4c965eb02d0c944044f57e39f6c3db1e2f513e2aa55db789e4a885c697f81ce5c8bdbe9a7e44ee30fc09d234e44fb512 truffleruby-1.0.0-rc6-macos-amd64.tar.gz=2eb177190de0408dfdaf30264132955d1db7783ddfb63880d97d5933f66c5662794c3bb6198edf230fbff348674203e61f7f5481e74ac875974467f2f128e939 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=ab3a3dc19f903e68e36b135729693fa025a7c1950139277255e48c972387ef8399beceb3252ac37cc70c0df92838f8a0ba8c45f53665ac4286ef23f9b240806a truffleruby-1.0.0-rc7-macos-amd64.tar.gz=b8423f50a5292e211db7ebd7e2b987fd5c9eaaf34eba86b0644d2716a7f068f2e56deb4357c516b87b437e64fd5ce8515bc181165cc1042c6763f27d71baa59d truffleruby-1.0.0-rc8-linux-amd64.tar.gz=bcd05d304ee9b4da97193575fb1ad78041a0c7710bb444af6aef12ab4261b1873f472175ec51a187a5e99da481d66b81a132fb691643b793e87d655f31d54657 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=2c758221793c38ca8af1831a5d9f3abd555c406569508ac3a86d3c1ea5baeeacf65abb6e904ed3b1e58f555f51bc85ab171135ff4c3d0e08cdae994a861cbda4 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=42e60b69957f77a8623e0dccb7d215e800c27c622364fa76b9c574e8b1d3a4056a058b61ed91eac2375ecf4e51e482a6e17550aa2894a44d1db70687958033da truffleruby-1.0.0-rc9-macos-amd64.tar.gz=18556ee8d2fdec6907fbc8fc33d8b32ea0c58d40ee3df084ffb233e2fcd3a514a553f97c31dcc25dda3f86b1b805ca5fe3c9bf8cb078b92325515f09db6b88ba truffleruby-1.0.0-rc10-linux-amd64.tar.gz=10a7cb1be6214347469d5797091f73c3d7824bfb32a47c13566573a383380b1df9b79b7901ce0fa3af1c97285c90afac21e2de7a66ed88d9495846743b3b25e2 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=53f0939d9d8c3470cb79316d865b765816032528d77a3cf497134f3aa667a6253ae037410801261a8e7d0628198ac5f6aea5ecf9b7313f06ccc1d5e9f94e74ea truffleruby-1.0.0-rc11-linux-amd64.tar.gz=f89bc9a3310634d39f68006307da0b0ddafae036089bdd663e8372777a9562d201a4e69b2e1a602cff5fba6c78a8d4861b6d1020679bd0c72c71b938a4f36a27 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=3f461c12fa9fa57a55cc390eb9887df88f404661a77bffb44f82b4c7e9021513a6df9f6d5f332a36ce0c28ae7e3d5afbbe15cc4b814bc7f86dac2e5ec280f947 truffleruby-1.0.0-rc12-linux-amd64.tar.gz=85f042c308ccdfbeb318cec37056d8d970cab51cb0779425b85b8f76b0a1dd9cdec3191ae2b6b9b6be6e95767db814496450ed20076addd9bd495742f9de3c8c truffleruby-1.0.0-rc12-macos-amd64.tar.gz=067a0f63bbaaed4c8d4120f758c8ecf8c52afd1d30ea9d41489e26289d57a574d2d4ae29e29655378510adfb3f4a07b04b403d6ee98ee6b3d3aa8bff9c8d718f truffleruby-1.0.0-rc13-linux-amd64.tar.gz=1eb6b80cb05133d253f20629a11ed9ec3f37da002d5668cdc6577b2a20524e0cdd4d739d3f1aa2e8c518e2f7ebfd519ec1c647293714a1133ad4d569375c0e69 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=e3cddb0d0ae48f7d5ee4dd094ddb5a13f6a7aff1521b1adf25710971664b235cf67144e3b81525fd710dc49b6f6f6ba06e10eee1df5dc08119e9494c6be86934 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=c982194675b66a0433bd5517fc6f1564db669f595f8c7ba4819bf37e0599474d49a0c606577a898c27fa5ba40ab793c62d8211e7ea398d6b3e2bcc31eb5d55f4 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c14e396396385644333fb4c4aa1fb4b934a3f4e46312146821e5dcdaa097cb5b1efbf397c1dd6117d909803fd27ba8d835904672e98d43dc565e907fed752e1b truffleruby-1.0.0-rc15-linux-amd64.tar.gz=f27a75f929a6e945e49ceaad12f484fdaa918469a2f639b572fc4737b78e1cde0881697057e13a58b2fab7ac64c3a71bc9951561c3a8728e3dec814ef5e95fee truffleruby-1.0.0-rc15-macos-amd64.tar.gz=7aa029c4999d4608c9bcc491771b0434267032dbe9dbf504728079f87ce93e6a90e0fa839295b88c00e5a025186ed0fcc42361428b7874c05e222edb108d6c02 truffleruby-1.0.0-rc16-linux-amd64.tar.gz=e8c508dede11d4f54cf0b15cf92b50caad93076a6065bd2d6784c5ca739f5923ea2b894c6b2b52131f62187c8b305cd11a960fb5a670789802d59b6b2999f0af truffleruby-1.0.0-rc16-macos-amd64.tar.gz=841eff077c38bf594b101edb15942f601ba0dada2122b21b016f53251aa2a635b8d0b63b49bdfb50259b2545d1f498bca95d5f771a15a28edb0dd07216c9b709 truffleruby-19.0.0-linux-amd64.tar.gz=8ec6c7829351e0dc2cce57305947cd540734fe5a0b95b9501d4179993727ab2c331e9fb639b9865c0fed596df3906adf3dcf2efb22c4cfdd23a3dc2137025fd4 truffleruby-19.0.0-macos-amd64.tar.gz=912e0c15d32e40c884b2caaaf9a86a71450d441c960ef98a63dfce80353619073b146dcfe03d9af4273b2811d0899eebe922cc84a51d6f5e6826cc436d793f78 truffleruby-19.0.2-linux-amd64.tar.gz=eec92bfbd776acd61709a428b90b1029c5ea83e5ea839304d23cae3a541dd4fab3b387691fa76643f55d5939c9cac0cbe70dc0b5786e5e0e5d20f3fcd9a21356 truffleruby-19.0.2-macos-amd64.tar.gz=ce647b76c9931feac55baa5acd2c87d8335c606bc5cd7e462bd92ba1b09f4bab5db927f021e3119abfd85c33377003d060f36cf64eb121954fce8878112f01b5 truffleruby-19.1.0-linux-amd64.tar.gz=db01e6dc09fc5f39ca466aa94f725023d49a8f52343f129bf8c32b7f5f76ccf2d573ee3344fce3d5aff9983bc9af618cc5ca6e1dbba93b3f604e4f33f8a69b3f truffleruby-19.1.0-macos-amd64.tar.gz=f002bc0b6efca11eb97c4aa6df33d2e0fcc1de3443efd39d912b028df9dd8954cb76ef3ca7fbe140f4e922d6ae4c1a6a20853490ef1ea0749293e2fcd4ffe8fc truffleruby-19.1.1-linux-amd64.tar.gz=ec031e8c216e31f034d97aaccd6441869221d6946e18f375b44a866550b8e8eb4b2fb923f9ce1a62853bdcd5b9201e0f5d2732ca6525d80171d5732ef522bd25 truffleruby-19.1.1-macos-amd64.tar.gz=1c15918af939a8fe1779b71d9e53d2ce09ca7353173a3b357905d9fe1981ff013cf0f90c6b47e1ca66dd168c2f2d742f28a5fb134cc0231d36146da99f91c3cc truffleruby-19.2.0-linux-amd64.tar.gz=1248bdde9cd3651d7042fe4cecff4ad35534868d543fe2e6f3a5bfc3bc9d10d57b4139fc070f0a03861436a1aabc9a8ebdf3356f39b77a4b8f6a1dcf492f70a4 truffleruby-19.2.0-macos-amd64.tar.gz=92c3154ed229a115cf392826494745aae06dd9228dd0996c2c44c550552f13f9c254367d068452fa4a84eef79c19601c79b87e10f3121fd7b83b803514a41cfd truffleruby-19.2.0.1-linux-amd64.tar.gz=53c78cd1f255f2b7031a70a42b65c0bf80c510b9254f5d7ba82b4787f55f5b09cfa9544c424a90f4619a74179fed07c168bd501e34772ef836a773e89c467cc5 truffleruby-19.2.0.1-macos-amd64.tar.gz=ac11523cd49fac50de1e441039e429fb8cd6c7051d537e5083b64fa68eaa19c9f0a966b269da906c367985f229af82a4811282dbfd0a76ef6565162e1081a659 truffleruby-19.2.1-linux-amd64.tar.gz=c5ffc1b592a74e836a4f6ec75b0e103150a4a40d3183ae853ead38c951a85378163111cf0bd2b81e44548c0a7aeaded3ae8a7ae558d5a02dc9e2cce992b79b58 truffleruby-19.2.1-macos-amd64.tar.gz=bb467b91f66eb7d1e6f1a54a7bc0a3d9503bcbd935e8a02da9ea0b749a51e354b1140d4a4dad6fc05312b560bb9ccdcce4f6583bccd19bb5afee19bf494102fe truffleruby-19.3.0-linux-amd64.tar.gz=0e94777a3feabbf0107ed40847e20dd4e3696ff2b7c3f6ceddf3a53ccd812bd003c84c62a750e8fac9d2490374bf792d69174b48c3ed36b593485d86729136c1 truffleruby-19.3.0-macos-amd64.tar.gz=95470c389e24c865ecdc3d299005cd98f8221a128f3cd75f899b6b7ae5d6dc07962443ce0ff38dfd014589d5aaf08b718dc870a72eb7ea6ced18ec2b2db63095 truffleruby-19.3.0.2-linux-amd64.tar.gz=dc5309b71980657f750b4dd4f8b3bc4e191bc305b638b1e562ff5b0ad7fbba40079ba674caf46226a46b5ca58c10f812354786696264742f351b129fb088a672 truffleruby-19.3.0.2-macos-amd64.tar.gz=ff1c37485ebeff3edcc7081ce09bebe5541012dedff6997662c7f8a064e0ab10bef9a5cdf834263a06ae04ca0391743948bcdea6e6c9d7e1cfef9f21523c2bdb truffleruby-19.3.1-linux-amd64.tar.gz=c724547a9eacfdd135ce05eac9dcfe74e58a5e77c97f88103f83b8513c15c975a0ecf623f623a425ec81fad1b64d3b5e135660d6943608ad08048cda00eace79 truffleruby-19.3.1-macos-amd64.tar.gz=d746b2ad410c15d145d36c676a070ae454ba8e5ec6c594d5ebcf54b1fc719f98e8b8f71b6fd504c3d38df286bd11c5114f73b5ba39be312b11d42d4ca1a17d02 truffleruby-20.0.0-linux-amd64.tar.gz=4efea5ded5fcc6886befba3a3720fe1e5b2e376d46738565e8871a1ce0201a33ed52e78b8af2fb389618bdea99466d126d8537dd0919b0c13f8ff1940cb3e52e truffleruby-20.0.0-macos-amd64.tar.gz=b36488330514b77c7115689042cf2482a0beb9f72a0b05fb4c7a6ecb0835a3da47c3b15c41abd6ffced023e65ecf7eabcfbcc6e41901dcddd0fb3dfed46564c6 truffleruby-20.1.0-linux-amd64.tar.gz=116d57404540b85c15b321793a6f985624a2044af544e659b3607e50159703af5d445e22bff28ae2182dfa752f7500d420e250f6deccc98a2f01e89adba8ac3a truffleruby-20.1.0-macos-amd64.tar.gz=9b1267101dfe78b85c79f7528eb4de96b16933e66d5771efa6272372dac0fb35b199bb9d42773d61f4fa7a15d6cbd18b5753c148f7c3e477c7c4b21633f12b88 truffleruby-20.2.0-linux-amd64.tar.gz=a37eaf8475364b74d948979ac13dc6e6423bf11949ad1d0f2925f78a4495e80de9767001ccdb777c8cfd7f545839fad4d842522620c3acad179404bc4ce6752c truffleruby-20.2.0-macos-amd64.tar.gz=964c1e02cc53e1646060334a9911771e679a8344d811a0f77d5cae3529dfefff259c45505ac84b7debb958514cd5d2276ffd435802085494e0229dd140ce8f00 truffleruby-20.3.0-linux-amd64.tar.gz=ec2d8ff6a5d45fd7091e26430c67cbbdc0f8ffa41e9ac574d48802766fcd144e1f446db807700247ad6d8046b7ed070b5da70ef667e576d6fea60cc64ea5484f truffleruby-20.3.0-macos-amd64.tar.gz=1878f94e05a3c40484bf944a72412b179aa5415a16a7ebc1610cb512a1e1c4a2ce0e98685257ad6e5c14745245c35bb5b28205fb687292c4f17193cbfb3bb606 truffleruby-21.0.0-linux-amd64.tar.gz=b7d1b76cc015d136dbd74515431f4447730850475f81b00885b71b95819134db2656d941736048db42d519f03e1f2df066226513b77208adbdbbeda1f49cab11 truffleruby-21.0.0-macos-amd64.tar.gz=7677b827a9c1758d5f941c512cb0fe8daaa19c3db77b485d7dfa43940151d6b9094c4d9271e18ef5014630142dffb93d168c7ac631a3b5eef6fc61b2f9eecf88 truffleruby-21.1.0-linux-amd64.tar.gz=010e9fb78cab12486641780392be0f284da08dfd955f3a0d1ef72adb52e1c9024b54dc880173645aea2af680b3670a6bb01409198b757239edda4cd9bf2b1e90 truffleruby-21.1.0-macos-amd64.tar.gz=96ef8481faef1bfa7f01bb4d396818ef6f0943d19c6a23dedb68f8346740b72bf06efc707bdd29158cf991cc7073c97f429a07b02c2a48050512b46369850058 truffleruby-21.2.0-linux-amd64.tar.gz=c20af04909a852cb676c90403d852fb367d56eac0f9cf8ba42caa4cad1013ba393cc4611e434614ad132b7b0ed61160aadd887001b08de0767cf58f5e149efe7 truffleruby-21.2.0-macos-amd64.tar.gz=0b8d9633fde53aad78f0baf52858cd5a5716f53ff21698baab17da4a625b4369b88dbd664193e3f0d1b40e64c88699ab4f04bbe40f54189a588c93678962a7be truffleruby-21.2.0.1-linux-amd64.tar.gz=15ceeee383114f974aed5f16c99131d56947e13cfe248b97e55d61263ccd51aa56fc3e0df215196ef7f80ccba9e7f19e7f261d7a91d54bde2d9992caba682d82 truffleruby-21.2.0.1-macos-amd64.tar.gz=8a8762d90c19db4f48433ce0e3f3339e290685d79c6ee9bb7d4359c741edfa6a7360ff65124433d964730ac25b2cc6d8b581191b0a51479f11c2a80031a6c1c8 truffleruby-21.3.0-linux-amd64.tar.gz=b0c07b1ea797de92447a81b350d460c125a2efaff3c290637c4bcf1c216b5abd11148cfb143ad397062a96f36beade8234d0785c42f58fceac0011f629a5220b truffleruby-21.3.0-macos-amd64.tar.gz=42e607fa52a534123989ad232691ede65aa1c615f39320d93aa8ab9c21924eea7bc0aa49aef1a540ec972e2b3dc775d22a99eca3e0c9bc450c525f9020fbb975 truffleruby-22.0.0.2-linux-amd64.tar.gz=2231a0cfd27238c34ea0bbad27ba387453e48f39032607cbb829b347ea6ac804df15eb3f84d50b09248782d6202284498e7bc9aaa2060f0ce81bb83a84d700ad truffleruby-22.0.0.2-macos-amd64.tar.gz=1d7ac44f0862ad23cf17a7bba73d23dfd4727aadd9a3aa9633361e9bcd19655d163e160eae9c8db8ec9892f8fbf82d7a38b1cd689475bf41609a828208098623 truffleruby-22.1.0-linux-amd64.tar.gz=c4c2f9bf4236118c8ea62c08bad89e1034ecdfa0c4815693961c4d2b1b30ca043fe958abfec9cf36a8638aa2e005e71fcc244ebffd9ce11eb68cf48bd98c29d3 truffleruby-22.1.0-macos-amd64.tar.gz=507004ade838e614955e23331845839be656aaeae7869ed3d989c10e6491775a12313ac9ef03e14945f20f5e76d46ce6f7bb860af68a627c48065399cea3c567 truffleruby-22.2.0-linux-amd64.tar.gz=37c09249ef387df3e0614f646abb444cb5b7b2751538ab0432e703abe92a81b82e0d15f89d5ad7cd58afe5f30d9a92dc8471d19f1c1ce10b50478ac74f247739 truffleruby-22.2.0-linux-aarch64.tar.gz=49a7cfb4c81980d9c7a1588ef9f76a9bfb759d4b1925ab11f230d99c15a62e162a08249d23cf5646e2d38ecc2005e27103f2e5d92b83b0a182a4e64319b70c0d truffleruby-22.2.0-macos-amd64.tar.gz=d4c206fb0a5e63c5b7f61f2e62de854e4d0817075ef9ded237d98cd821c286e88d7b150d140d9907a957209f39be96c7025560e3908c89aa337925d2fba690af truffleruby-22.2.0-macos-aarch64.tar.gz=a01c18803777a74717ad699b6ee51eb759d881fb436d24338b557c52d4a693079d7b55f108394ccad0dd69c974cb895f4a36854355e84fecb67e41bf9eb18514 truffleruby-22.3.0-linux-amd64.tar.gz=d53472ae892dadc81c6fe63a597ccfb67e133958431b11716db4d920c78fc86f7496e4b10322d041c900bed77d27e02850da20aa95b297d63a9de2e72cdf3c76 truffleruby-22.3.0-linux-aarch64.tar.gz=dab63d49db4722f0c174ce8b882413102520ff649182946ba332ef5ba0fc6b58913595539a20b59e460faab2fba36f762dc8eb66aa729d4a6bb90feb2a95f053 truffleruby-22.3.0-macos-amd64.tar.gz=15c91d25fd6fb1d9f3f2a0b36676da5c8a76d62be86cff463ebe6c7e6aed2d9b6de9062021ab1b9b29cfb7a92b5682c860939acd71d12dba7e4a6bf3964fef3d truffleruby-22.3.0-macos-aarch64.tar.gz=7c44d0dd07e4ecd84a92f6dd574dc185906121b8eb75f6fe097b9d4738aa30751664d70e9027e072eeaa1dffa05fe7bcfc06be0c2dc950142f60664baf5eac69 truffleruby-22.3.1-linux-amd64.tar.gz=f41d3bd22500b7291121368169f8558df4563c840a01b70ff7feea3593f0152d8d77d4437af362bad62f25b79bce1ce8ddaa1bd8172a2a7ef8b61cdb6e478c9e truffleruby-22.3.1-linux-aarch64.tar.gz=1ca5221f0dc5ae3e0bd9545be474e115b2e62737701df95c6ee6cdaae5d82815acbe6af961ff23afee64dc26e655c7786d4347e3694c140773f065534322ee59 truffleruby-22.3.1-macos-amd64.tar.gz=bae16cc04c6018703833121f4258c3f18fa5062309d0600458be3c51c838bc63976a026db0f28d23005df9b640ccad0a9cafc56610a5ca9c24951c66b62097d9 truffleruby-22.3.1-macos-aarch64.tar.gz=b56e230d8fbc95d19364e695aaf1e552238b02ace7056f636808a7d7510777cddfde572ace5238ea1e314351bdd1a053ab3912d0889f51f55c722797c83eaaee truffleruby-23.0.0-preview1-linux-amd64.tar.gz=d538412f12d5ce743c351acbaa483b8b85dd2cf84fe06b3e90ca21f3c2fc0465df9c1773b3515fe4296d599f45e9cbb935dc5a69fe45668321e5639d58608ef4 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=f10b5ac749b11f93c2469f2c8a713ad090cb653761ae0a3e1ba4c19b0c96bd61c5e8da74d8944f9487c2d327d268a188f2cb56028d2beaca2a7816e63123600b truffleruby-23.0.0-preview1-macos-amd64.tar.gz=cd9db49c4253bd66cad6f9ae111c83d3befd0102a7ccb72a2407d22dc576ba7f3a26a90cd479f26dee3565d2f893a2b7c8b549e2351336f35d2632e57966657c truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=28b77d9943cd1617e0445633a9fea8911cfa975f5c581192439cd0944d2a17c2b0558e3e4112588b5fc77b57c48d857ad68ac51fcb867250625ad85406d87acc truffleruby-23.0.0-linux-amd64.tar.gz=da702de2e8c994f2646a3de5b44824210dbd37129cd2f91c3bdd990a1b0d0b05dee4443ad0f6cf98fdb4e489c9f4cde64f3561baf486dc642d4981a1a1812925 truffleruby-23.0.0-linux-aarch64.tar.gz=808254a154adcfd1bbd6e22bcdafebb6169c6f8cfd1c55382d446bb66002384ee844dcd8b5f642703ef440f7566645d190081f45e04a7d8d59bf87571cb4430a truffleruby-23.0.0-macos-amd64.tar.gz=f775d57e63c606eef424a1115408ed8539ef47d6bea0125ad1de7ee4fd5971e96747cb7f5d22d91d2f004edbd6ed6b9b5bd014127dc1abe7821a3a987a72d9dc truffleruby-23.0.0-macos-aarch64.tar.gz=000069854458f81d97eefe14123fbb69937942825e77d35602d55fa279123808177a34f252aec9dcfa48b93feacbee81ae0f0e7043c2d8a9ace2a4bb61ab253f truffleruby-23.1.0-linux-amd64.tar.gz=1868799d989c51798cf07b5243457af7ae2436dd19805fd634c98b2f1885266b5c3ec81dde668c2e5a290e9028f6f9fd223d153489df6ffcc74d45240aa020ad truffleruby-23.1.0-linux-aarch64.tar.gz=2766621877996ad35fddb94f978feed531307e8abf601dcf863754c96782b8149c3ac512dfe6dd2bdef0fe0e8a968bdd77608c41020434aaef4e7250c09edd74 truffleruby-23.1.0-macos-amd64.tar.gz=06c5a1d6ad644fd81737f0a1fd24c1529f712abe2a4485ad597aca7c35ca2af898121bb5883552cf518e2afdcb4221c8ad013759b46a69e34249e7c5ebe2b170 truffleruby-23.1.0-macos-aarch64.tar.gz=496cacc5cf413a48b60184e097a962ab5d2236c539f07cc0a9a2d9ef57dfc911a26b125cc3ad9408f6170c6f93c7562f35729c8313be0301972be21c10097942 truffleruby-23.1.1-linux-amd64.tar.gz=dbca85e281bf2484371a0bbcc202ca700acc704304d966b9202cf3835e82f6eb502e43522355f4c9e5a743877d93f5609006fbba2c5e6343a89de130e5209f6a truffleruby-23.1.1-linux-aarch64.tar.gz=6a58842d79247d8a64c513d68db9d53ea5640c02f71a1bc45f103baaaca67bb224939ae5f21ef55daa9d9b9697404052d39a3c382768ca366ab7892b8bf1abbe truffleruby-23.1.1-macos-amd64.tar.gz=7cc6bc957b7ffa42e9fbfe2f6e3014bf1e7996f2754e9e74377078c2c7bc7ac8e10598f1e1452839fc5b9583c823a2a735731ca193a6af2814a02566cc4cd9e4 truffleruby-23.1.1-macos-aarch64.tar.gz=a85b8189ef8a280f6a27d4c1c93893f844266dbdc15b8c4988cdf581613a353508fae4872ac9380efcc47f36357e137861521712c00ce8548041762a8987a9b2 truffleruby-23.1.2-linux-amd64.tar.gz=6307fd71fb1431fb12346d1f13dee4b3afe53947e8a9c1f3e3aa0baae5f9fc9e1496ede0a7d86b169d912ffef9625af998b4e698dc57a2a649140150e3fae28a truffleruby-23.1.2-linux-aarch64.tar.gz=0f0c5e4aa4e9fbc9b9f91d2b3d3fbfe26e78c5bc5b369fc78dd54775a7582b8c084a64f02848058bec79387fd80b09a5a5594ecfb268635fe76e1f9d957c2e92 truffleruby-23.1.2-macos-amd64.tar.gz=648401a73b29c28862a1fa077c2e1bf8fff65015c8bc690ff883a00a3dfd99389ffdb71f39ad85a4f16c531470f4cc891ae51ec927a426b0fa05fa85c9c6a2f9 truffleruby-23.1.2-macos-aarch64.tar.gz=4ec88684c09aacfa1d8bfed9a17243579ededacecd869e98e12841710bae29ed6e5f080611e53fc217a853f730bb2a9cb3d47ef15443eb8a1ad76a120118c8a5 truffleruby-24.0.0-linux-amd64.tar.gz=3a59a4dc58ad03549d8e63db1485767757715fc9aec21b2b67b1440b13871a04541abeff9bc8201b3088e1865360b1667459e536d3cfb09687dbffca95deafeb truffleruby-24.0.0-linux-aarch64.tar.gz=50f3993b7362bb6e7da80f7327df3d079bb02f98b67012e2135005d77e61648e4f3268f767d8ca245ec5889ff934fbcccb94fd5ecbd55bb0cd9cca900fe10509 truffleruby-24.0.0-macos-amd64.tar.gz=9ec8bb340b15e29550448e123e3ab0f183edb9bbe7e052743cb2306cbd1956a5789c5a367c80c5e8d913dce2b804448dd6815e4d3421515166daf8db51d37c7d truffleruby-24.0.0-macos-aarch64.tar.gz=499f83bf65dcb6ecc92414a3550673e6a0baaddfe3ab13c0bd7aa1bdde1ae2a61d9d0ca8001c0d12688d9e09f98f9e2946a651220fe7d200bb0ec6f285394701 truffleruby-24.0.1-linux-amd64.tar.gz=62b4e8508eba8cdaac70e99ac9cb0b33a663b4195d79b2dad3d771ef538c6c41d1d91bb7bb07fbbafbcbbcaf17814ffaf6d6bdbafd474ba6a8ecdac30315a8c9 truffleruby-24.0.1-linux-aarch64.tar.gz=817d877848ea4bb55658ce34bbda52926be12426a8a5e1c4588bc0ec1896018b06dce176336b382f80a7c6d073d4331b20694a7797ee8fdf0177e973053bf929 truffleruby-24.0.1-macos-amd64.tar.gz=2ea65bea154aa38cce3f00f24fc9a4aab5e7478fafd070d0cc966878371c070d5a1776b7405e2c9e4cfa14e5c51219ed0fa988294eb4708690983b348886f439 truffleruby-24.0.1-macos-aarch64.tar.gz=bc1923e21768d34779c1bcd7850456a01ddc01acd1ccf20f4fb4a446fb847f8c51b1ff4a7c0cdc317ef8ce057ac24f18f25b778a02a6e2b185e0055d946ecaf2 truffleruby-24.0.2-linux-amd64.tar.gz=5d111beb862b618c4e6a7f8aea1d3d6476740513efdd59bf980a2b6d525a017f46fe02017b075962a4919a001b60bd9a070e69fedfa8a85533c0adbad2a8d86b truffleruby-24.0.2-linux-aarch64.tar.gz=8e3ba19df4e5509c4719bc3bb621f70ca6a0e683d48a296703649b88abd83a165e8a64ad2d7dc45394b6de0b214a95a395fa449f5393dd9e67deab9e149cf494 truffleruby-24.0.2-macos-amd64.tar.gz=06d3b5533c4e26aa1356e602c672efad99208aaee96110904216e16dcfb1d99a7535c3ef275f9a14635dd2f05110798b3c75d71199f6010f23c92c6990492cef truffleruby-24.0.2-macos-aarch64.tar.gz=ba36d3f1680112e6623b14a4bb902a5f65f11e9827f44462161b1c79ee344ca340566289aa1f841c1e213daef5608c159343cc203d07f41c2a55eaeb25db0987
rvm/rvm
ff1c0a9ad63d496b6b6a33ab8738c1d88e3b872f
add rails express patches latest rubies (#5491)
diff --git a/CHANGELOG.md b/CHANGELOG.md index a33ae0a..5aaeadb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,637 +1,638 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Use OpenSSL 3 for Ruby 3.2 and 3.3 [\#5480](https://github.com/rvm/rvm/pull/5480) * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) * Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) * Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) * Install `libncurses-dev` instead of `libncurses5-dev` on newer Debian and Ubuntu versions [\#5477](https://github.com/rvm/rvm/pull/5477) * Use `zlib-ng-compat` packages for Fedora 40+ [\#5479](https://github.com/rvm/rvm/pull/5479) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) * 3.3.3 [\#5474](https://github.com/rvm/rvm/pull/5474) * 3.3.4 [\#5488](https://github.com/rvm/rvm/pull/5488) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) * 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1, 24.0.2 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.3.15.0 [\#5482](https://github.com/rvm/rvm/pull/5482) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) * 9.4.8.0 [\#5484](https://github.com/rvm/rvm/pull/5484) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) +* 3.1.6, 3.2.5, 3.3.2, 3.3.3 and 3.3.4 [\#5491](https://github.com/rvm/rvm/pull/5491) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) #### Upgraded Ruby interpreters: * Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159), 2.5.0-preview1 [\#4204](https://github.com/rvm/rvm/pull/4204), 2.2.9, 2.3.6, 2.4.3 and 2.5.0-rc1 [\#4261](https://github.com/rvm/rvm/pull/4261), 2.5.0 [\#4265](https://github.com/rvm/rvm/pull/4265), 2.6.0-preview1 [\#4317](https://github.com/rvm/rvm/pull/4317), 2.2.10, 2.3.7, 2.4.4, 2.5.1 [\#4340](https://github.com/rvm/rvm/pull/4340) and 2.6.0-preview2[\#4395](https://github.com/rvm/rvm/pull/4395) * Add support for Rubinius 3.85-3.100 * Add support for JRuby 9.1.14.0 [\#4224](https://github.com/rvm/rvm/pull/4224), 9.1.15.0 [\#4258](https://github.com/rvm/rvm/pull/4258), 9.1.16.0 [\#4316](https://github.com/rvm/rvm/pull/4316), 9.1.17.0 [\#4366](https://github.com/rvm/rvm/pull/4366), 9.2.0.0 [\#4390](https://github.com/rvm/rvm/pull/4390) * Add support for mruby 1.4.0 [\#4286](https://github.com/rvm/rvm/pull/4286) * Add support for MagLev 1.1* and 1.2Alpha-1.2Alpha4 [\#4289](https://github.com/rvm/rvm/pull/4289) * Add support for RubyGems 2.6.14 [\#4205](https://github.com/rvm/rvm/pull/4205), 2.7.0-2.7.4 [\#4276](https://github.com/rvm/rvm/issues/4276) and 2.7.5-6 #### Binaries: * Ubuntu 16.04 x64 binaries for Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4362](https://github.com/rvm/rvm/issues/4362), 2.2.9, 2.3.6 and 2.4.3 [\#4259](https://github.com/rvm/rvm/issues/4259), 2.2.8, 2.3.5 and 2.4.2 [\#4161](https://github.com/rvm/rvm/issues/4161), 2.5.0 [\#4272](https://github.com/rvm/rvm/pull/4272) * Ubuntu 17.04 for Ruby 2.1.\*, 2.2.\* [\#4233](https://github.com/rvm/rvm/pull/4233) ## [1.29.3](https://github.com/rvm/rvm/releases/tag/1.29.3) 10 September 2017 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.2...1.29.3) #### New features: * Add RVM commands missing in bash shell completion [\#4078](https://github.com/rvm/rvm/pull/4078) * Railsexpress patches for 2.3.4, 2.3-head [\#4084](https://github.com/rvm/rvm/pull/4084), 2.2.5 and 2.2.6 [\#4153](https://github.com/rvm/rvm/pull/4153) * Update `gem-wrappers` to 1.3.0: Show warnings when the target binary is missing or is not executable [gem-wrappers \#9](https://github.com/rvm/gem-wrappers/issues/9) * Detect Zorin OS as Ubuntu [\#4140](https://github.com/rvm/rvm/issues/4140) #### Bug fixes: * Infinite loop in `gemset_create` [\#4102](https://github.com/rvm/rvm/issues/4102) * Command not found `__rvm_remote_version` error [\#4085](https://github.com/rvm/rvm/pull/4085) * Fix path of version script in `environment` [\#4117](https://github.com/rvm/rvm/pull/4117) * Define `cd()`, `pushd()` and `popd()` properly when using zsh [\#4132](https://github.com/rvm/rvm/pull/4132) * Update gem-wrappers to 1.3.1: Avoid warnings for missing ruby binaries [\#4104](https://github.com/rvm/rvm/issues/4104) * Handles :engine=> and :engine_version=> in Gemfile * Makes $rvm_ruby_string is not installed searchable by adding a fixed keyword * Correctly quotes suggested install command * Fix path to version script in rvm-installer [\#4134](https://github.com/rvm/rvm/pull/4134) * Fix rvm autolibs status, fix [\#4123](https://github.com/rvm/rvm/issues/4123) * Ruby 2.3.x and older are not compatible with OpenSSL 1.1.x on Arch [\#4006](https://github.com/rvm/rvm/issues/4006) * Allow comments after ruby directive in Gemfile [\#4056](https://github.com/rvm/rvm/issues/4056) * Ruby 2.3/4 compilation fix for GCC 7 [\#4080](https://github.com/rvm/rvm/issues/4080) [\#4115](https://github.com/rvm/rvm/issues/4115) * Add warning for sudo users [\#4009](https://github.com/rvm/rvm/issues/4009) * Allows running RVM shell function in Bash with `set -o nounset` [\#4013](https://github.com/rvm/rvm/issues/4013) * Ensure `rvm_hooks_path` is set [\#3902](https://github.com/rvm/rvm/issues/3902) * Allow building static ruby with `--disbale-shared` [\#4091](https://github.com/rvm/rvm/issues/4091) * Restore detection of `gpg` command for veryfication of signatures [\#4059](https://github.com/rvm/rvm/issues/4059) * Update `gem-wrappers` to 1.3.2: Avoid nested chdir warnings [gem-wrappers \#11](https://github.com/rvm/gem-wrappers/pull/11) * Fix RVM folder cleanup during installation [\#4333](https://github.com/rvm/rvm/issues/4333) * Fix found project file reject reasons for bash -e [\#4314](https://github.com/rvm/rvm/pull/4314) #### Upgraded Ruby interpreters: * Add support for Rubinius 3.82, 3.83, 3.84 * Add support for mruby 1.3.0 * Upgrade RubyGems to 2.6.13 [\#4142](https://github.com/rvm/rvm/pull/4142) * Add support for JRuby 9.1.13.0 [\#4147](https://github.com/rvm/rvm/pull/4147) #### Documentation * Remove `wayneeseguin` reference from RVM repo names [\#4086](https://github.com/rvm/rvm/pull/4086) ## [1.29.2](https://github.com/rvm/rvm/releases/tag/1.29.2) #### New features: * Add support for elementary OS [\#3935](https://github.com/rvm/rvm/issues/3935) * Add support for Deepin (based on Debian) [\#3999](https://github.com/rvm/rvm/issues/3999) * Simplified OS detection mechanism [\#3938](https://github.com/rvm/rvm/pull/3938) * Use fuzzy version match for `rvm remove` [\#4028](https://github.com/rvm/rvm/pull/4028) * Simplify and cleanup of `rvm help` output [\#4029](https://github.com/rvm/rvm/pull/4029) * Add support for Kali Linux (based on Debian) [\#3958](https://github.com/rvm/rvm/issues/3958) * Railsexpress patches for 2.4.0, 2.4.1 and 2.4-head [\#4050](https://github.com/rvm/rvm/pull/4050) #### Bug fixes: * Use actual executable test instead of mount|grep noexec for robust noexec detection [\#3933](https://github.com/rvm/rvm/pull/3933) * "Unknown ruby string (do not know how to handle)" when specifying Ruby version w/a gemset [\#3292](https://github.com/rvm/rvm/issue/3292) * Fix the required openssl version for ruby 1.8 on OSX [\#3955](https://github.com/rvm/rvm/issue/3955) * Detect `.` as an alternative to `source` in bash profile warning [\#3960](https://github.com/rvm/rvm/issues/3960) * Allow users to specify irb history file using IRB.conf[:HISTORY_FILE] [\#3969](https://github.com/rvm/rvm/pull/3969) * Prefer github issues over IRC support [\#3939](https://github.com/rvm/rvm/issues/3939) * Architecture detection using uname instead of dpkg [\#3948](https://github.com/rvm/rvm/issues/3948) * Help section of the rvm.io page points to irc.freenode.net instead of github [\#3939](https://github.com/rvm/rvm/issues/3939) * Make sure stderr output is printed on console and not captured into log files [\#3990](https://github.com/rvm/rvm/issues/3990) * Clean up errors output, show only log file name [\#3990](https://github.com/rvm/rvm/issues/3990) * RVM install fail on macOS Yosemite due expired curl's SSL certificate [\#3886](https://github.com/rvm/rvm/issues/3886) * Fix failing openssl.patch for Ruby 2.2.4 and 2.2.5 [\#3988](https://github.com/rvm/rvm/issues/3988) * Do not unset rvm_pretty_print_flag [\#3946](https://github.com/rvm/rvm/issues/3946) * Patch Ruby 2.3.4 with missing rb_thread_fd_close [\#4008](https://github.com/rvm/rvm/issues/4008) * Unknown subcommand `rvm gemset clear` [\#4004](https://github.com/rvm/rvm/issues/4004) * Skip rubygems install for ruby-head [\#4022](https://github.com/rvm/rvm/pull/4022) * Fix match MacPorts in non standard location [\#4051](https://github.com/rvm/rvm/pull/4051) * Ruby 2.3.3 doesn't compile on Debian 8.3 [\#4000](https://github.com/rvm/rvm/issues/4000) * Ruby < 2.4 fail to build on Fedora 26 [\#4057](https://github.com/rvm/rvm/issues/4057) #### Upgraded Ruby interpreters: * Add support for Rubinius 3.72 [\#3934](https://github.com/rvm/rvm/pull/3934), 3.73 [\#3979](https://github.com/rvm/rvm/pull/3979), 3.74 [\#3994](https://github.com/rvm/rvm/pull/3994), 3.75 [\#4002](https://github.com/rvm/rvm/pull/4002), 3.76 and 3.77 [\#4016](https://github.com/rvm/rvm/pull/4016), 3.78, 3.79, 3.80, 3.81 * Add support for Ruby 2.2.7 [\#3970](https://github.com/rvm/rvm/pull/3970), 2.3.4 [\#3973](https://github.com/rvm/rvm/pull/3973) and 2.4.1 [\#3963](https://github.com/rvm/rvm/pull/3963) * Upgrade RubyGems to 2.6.12 [\#4018](https://github.com/rvm/rvm/pull/4018) * Add support for JRuby 1.7.27 [\#4026](https://github.com/rvm/rvm/pull/4026), 9.1.8.0 [\#3952](https://github.com/rvm/rvm/pull/3952), 9.1.9.0 [\#4036](https://github.com/rvm/rvm/pull/4036), 9.1.10.0 [\#4049](https://github.com/rvm/rvm/pull/4049), 9.1.11 [\#4064](https://github.com/rvm/rvm/issues/4064) and 9.1.12.0 [\#4066](https://github.com/rvm/rvm/issues/4066) #### Binaries: * Ubuntu x64 binary for Ruby 2.4.1 [\#3965](https://github.com/rvm/rvm/issues/3965) * Ubuntu x64 binary for Ruby 2.2.7 [\#3971](https://github.com/rvm/rvm/issues/3971) * Ubuntu x64 binary for Ruby 2.3.4 [\#3985](https://github.com/rvm/rvm/issues/3985) * Ubuntu 16.10 x64 binaries for Ruby 1.9.3-p551, 2.0.0-p648, 2.1.5, 2.1.6, 2.1.8, 2.1.9, 2.2.4, 2.2.5, 2.2.6, 2.3.0, 2.3.1, 2.3.2 and 2.3.3 [\#3823](https://github.com/rvm/rvm/issues/3823) #### Documentation: * Integrating RVM with Bash on Ubuntu on Windows 10 [\#304](https://github.com/rvm/rvm-site/pull/304) * Troubleshooting SSL certificate problem: unable to get local issuer certificate [\#3984](https://github.com/rvm/rvm/issue/3984) * Automatically generated Integration section on Index page [\#305](https://github.com/rvm/rvm-site/pull/305) diff --git a/patchsets/ruby/3.1.6/railsexpress b/patchsets/ruby/3.1.6/railsexpress new file mode 100644 index 0000000..b365eeb --- /dev/null +++ b/patchsets/ruby/3.1.6/railsexpress @@ -0,0 +1,2 @@ +https://raw.githubusercontent.com/skaes/rvm-patchsets/master/patches/ruby/3.1.6/railsexpress/01-improve-gc-stats.patch +https://raw.githubusercontent.com/skaes/rvm-patchsets/master/patches/ruby/3.1.6/railsexpress/02-malloc-trim.patch diff --git a/patchsets/ruby/3.2.5/railsexpress b/patchsets/ruby/3.2.5/railsexpress new file mode 100644 index 0000000..76ae695 --- /dev/null +++ b/patchsets/ruby/3.2.5/railsexpress @@ -0,0 +1,3 @@ +https://raw.githubusercontent.com/skaes/rvm-patchsets/master/patches/ruby/3.2.5/railsexpress/01-improve-gc-stats.patch +https://raw.githubusercontent.com/skaes/rvm-patchsets/master/patches/ruby/3.2.5/railsexpress/02-malloc-trim-patch.patch +https://raw.githubusercontent.com/skaes/rvm-patchsets/master/patches/ruby/3.2.5/railsexpress/03-fix-bigdecimal-linker-problems.patch diff --git a/patchsets/ruby/3.3.2/railsexpress b/patchsets/ruby/3.3.2/railsexpress new file mode 100644 index 0000000..4b042c7 --- /dev/null +++ b/patchsets/ruby/3.3.2/railsexpress @@ -0,0 +1 @@ +https://raw.githubusercontent.com/skaes/rvm-patchsets/master/patches/ruby/3.3.2/railsexpress/01-improve-gc-stats.patch diff --git a/patchsets/ruby/3.3.3/railsexpress b/patchsets/ruby/3.3.3/railsexpress new file mode 100644 index 0000000..4c00627 --- /dev/null +++ b/patchsets/ruby/3.3.3/railsexpress @@ -0,0 +1 @@ +https://raw.githubusercontent.com/skaes/rvm-patchsets/master/patches/ruby/3.3.3/railsexpress/01-improve-gc-stats.patch diff --git a/patchsets/ruby/3.3.4/railsexpress b/patchsets/ruby/3.3.4/railsexpress new file mode 100644 index 0000000..722d955 --- /dev/null +++ b/patchsets/ruby/3.3.4/railsexpress @@ -0,0 +1 @@ +https://raw.githubusercontent.com/skaes/rvm-patchsets/master/patches/ruby/3.3.4/railsexpress/01-improve-gc-stats.patch
rvm/rvm
bb77d162fdada03e6d93c77114d2d06ef61a7528
Add TruffleRuby 24.0.2 (#5489)
diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d295de..a33ae0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,589 +1,589 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Use OpenSSL 3 for Ruby 3.2 and 3.3 [\#5480](https://github.com/rvm/rvm/pull/5480) * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) * Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) * Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) * Install `libncurses-dev` instead of `libncurses5-dev` on newer Debian and Ubuntu versions [\#5477](https://github.com/rvm/rvm/pull/5477) * Use `zlib-ng-compat` packages for Fedora 40+ [\#5479](https://github.com/rvm/rvm/pull/5479) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) * 3.3.3 [\#5474](https://github.com/rvm/rvm/pull/5474) * 3.3.4 [\#5488](https://github.com/rvm/rvm/pull/5488) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) -* 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1 +* 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1, 24.0.2 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.3.15.0 [\#5482](https://github.com/rvm/rvm/pull/5482) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) * 9.4.8.0 [\#5484](https://github.com/rvm/rvm/pull/5484) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) #### Upgraded Ruby interpreters: * Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159), 2.5.0-preview1 [\#4204](https://github.com/rvm/rvm/pull/4204), 2.2.9, 2.3.6, 2.4.3 and 2.5.0-rc1 [\#4261](https://github.com/rvm/rvm/pull/4261), 2.5.0 [\#4265](https://github.com/rvm/rvm/pull/4265), 2.6.0-preview1 [\#4317](https://github.com/rvm/rvm/pull/4317), 2.2.10, 2.3.7, 2.4.4, 2.5.1 [\#4340](https://github.com/rvm/rvm/pull/4340) and 2.6.0-preview2[\#4395](https://github.com/rvm/rvm/pull/4395) * Add support for Rubinius 3.85-3.100 * Add support for JRuby 9.1.14.0 [\#4224](https://github.com/rvm/rvm/pull/4224), 9.1.15.0 [\#4258](https://github.com/rvm/rvm/pull/4258), 9.1.16.0 [\#4316](https://github.com/rvm/rvm/pull/4316), 9.1.17.0 [\#4366](https://github.com/rvm/rvm/pull/4366), 9.2.0.0 [\#4390](https://github.com/rvm/rvm/pull/4390) * Add support for mruby 1.4.0 [\#4286](https://github.com/rvm/rvm/pull/4286) * Add support for MagLev 1.1* and 1.2Alpha-1.2Alpha4 [\#4289](https://github.com/rvm/rvm/pull/4289) * Add support for RubyGems 2.6.14 [\#4205](https://github.com/rvm/rvm/pull/4205), 2.7.0-2.7.4 [\#4276](https://github.com/rvm/rvm/issues/4276) and 2.7.5-6 #### Binaries: * Ubuntu 16.04 x64 binaries for Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4362](https://github.com/rvm/rvm/issues/4362), 2.2.9, 2.3.6 and 2.4.3 [\#4259](https://github.com/rvm/rvm/issues/4259), 2.2.8, 2.3.5 and 2.4.2 [\#4161](https://github.com/rvm/rvm/issues/4161), 2.5.0 [\#4272](https://github.com/rvm/rvm/pull/4272) * Ubuntu 17.04 for Ruby 2.1.\*, 2.2.\* [\#4233](https://github.com/rvm/rvm/pull/4233) ## [1.29.3](https://github.com/rvm/rvm/releases/tag/1.29.3) 10 September 2017 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.2...1.29.3) #### New features: * Add RVM commands missing in bash shell completion [\#4078](https://github.com/rvm/rvm/pull/4078) * Railsexpress patches for 2.3.4, 2.3-head [\#4084](https://github.com/rvm/rvm/pull/4084), 2.2.5 and 2.2.6 [\#4153](https://github.com/rvm/rvm/pull/4153) * Update `gem-wrappers` to 1.3.0: Show warnings when the target binary is missing or is not executable [gem-wrappers \#9](https://github.com/rvm/gem-wrappers/issues/9) * Detect Zorin OS as Ubuntu [\#4140](https://github.com/rvm/rvm/issues/4140) #### Bug fixes: * Infinite loop in `gemset_create` [\#4102](https://github.com/rvm/rvm/issues/4102) * Command not found `__rvm_remote_version` error [\#4085](https://github.com/rvm/rvm/pull/4085) * Fix path of version script in `environment` [\#4117](https://github.com/rvm/rvm/pull/4117) * Define `cd()`, `pushd()` and `popd()` properly when using zsh [\#4132](https://github.com/rvm/rvm/pull/4132) * Update gem-wrappers to 1.3.1: Avoid warnings for missing ruby binaries [\#4104](https://github.com/rvm/rvm/issues/4104) * Handles :engine=> and :engine_version=> in Gemfile * Makes $rvm_ruby_string is not installed searchable by adding a fixed keyword * Correctly quotes suggested install command * Fix path to version script in rvm-installer [\#4134](https://github.com/rvm/rvm/pull/4134) * Fix rvm autolibs status, fix [\#4123](https://github.com/rvm/rvm/issues/4123) * Ruby 2.3.x and older are not compatible with OpenSSL 1.1.x on Arch [\#4006](https://github.com/rvm/rvm/issues/4006) * Allow comments after ruby directive in Gemfile [\#4056](https://github.com/rvm/rvm/issues/4056) * Ruby 2.3/4 compilation fix for GCC 7 [\#4080](https://github.com/rvm/rvm/issues/4080) [\#4115](https://github.com/rvm/rvm/issues/4115) * Add warning for sudo users [\#4009](https://github.com/rvm/rvm/issues/4009) * Allows running RVM shell function in Bash with `set -o nounset` [\#4013](https://github.com/rvm/rvm/issues/4013) * Ensure `rvm_hooks_path` is set [\#3902](https://github.com/rvm/rvm/issues/3902) * Allow building static ruby with `--disbale-shared` [\#4091](https://github.com/rvm/rvm/issues/4091) * Restore detection of `gpg` command for veryfication of signatures [\#4059](https://github.com/rvm/rvm/issues/4059) * Update `gem-wrappers` to 1.3.2: Avoid nested chdir warnings [gem-wrappers \#11](https://github.com/rvm/gem-wrappers/pull/11) * Fix RVM folder cleanup during installation [\#4333](https://github.com/rvm/rvm/issues/4333) * Fix found project file reject reasons for bash -e [\#4314](https://github.com/rvm/rvm/pull/4314) #### Upgraded Ruby interpreters: * Add support for Rubinius 3.82, 3.83, 3.84 * Add support for mruby 1.3.0 * Upgrade RubyGems to 2.6.13 [\#4142](https://github.com/rvm/rvm/pull/4142) * Add support for JRuby 9.1.13.0 [\#4147](https://github.com/rvm/rvm/pull/4147) #### Documentation * Remove `wayneeseguin` reference from RVM repo names [\#4086](https://github.com/rvm/rvm/pull/4086) diff --git a/config/db b/config/db index 9b0d7bd..3c08967 100644 --- a/config/db +++ b/config/db @@ -1,154 +1,154 @@ # General default_ruby=ruby interpreter=ruby niceness=0 # # RVM # rvm_remote_server_path1=maven2/org/jruby/jruby-dist rvm_remote_server_url1=https://repo1.maven.org rvm_remote_server_url2=https://rubies.travis-ci.org rvm_remote_server_url=https://rvm-io.global.ssl.fastly.net/binaries # # RubyGems # gem_gem-empty_version=>=1.1.2 gem_gem-wrappers_version=>=1.4.0 gem_rdoc_version=>=4.1.1 gem_rvm_version=>=1.11.3.9 rubygems_repo_url=https://github.com/rubygems/rubygems.git rubygems_url=https://rubygems.org/rubygems rubygems_url_fallback_1=https://github.com/rubygems/rubygems/archive/v\1.tar.gz rubygems_url_fallback_1_pattern=https://rubygems.org/rubygems/rubygems-([[:digit:]\.]+).tgz rubygems_version=latest-3.0 # # Packages # autoconf_url=https://ftp.gnu.org/gnu/autoconf curl_url=https://github.com/bagder/curl/archive gettext_url=https://ftp.gnu.org/pub/gnu/gettext glib_url=http://ftp.gnome.org/pub/gnome/sources/glib/2.23 libiconv_url=https://ftp.gnu.org/pub/gnu/libiconv libxml2_url=ftp://xmlsoft.org/libxml2 libxslt_url=ftp://xmlsoft.org/libxslt llvm_url=https://llvm.org/svn/llvm-project/llvm/trunk mono_url=http://ftp.novell.com/pub/mono/sources/mono ncurses_url=https://ftp.gnu.org/pub/gnu/ncurses openssl_url=https://www.openssl.org/source/old/1.0.1 openssl_version=1.0.1i pkg-config_url=http://pkgconfig.freedesktop.org/releases readline_url=https://ftp.gnu.org/gnu/readline yaml_url=http://pyyaml.org/download/libyaml yaml_version=0.1.6 zlib_url=https://prdownloads.sourceforge.net/libpng # # CentOS / Fedora EPEL # epel5_i386_rpm=https://dl.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm epel5_key=https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-5 epel5_x86_64_rpm=https://dl.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm epel6_i386_rpm=https://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm epel6_key=https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-6 epel6_x86_64_rpm=https://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm epel7_key=https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-7 epel7_x86_64_rpm=https://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-8.noarch.rpm # # MRI Ruby # CentOS_5_ruby_1.8.7_patch_level=p374 CentOS_5_ruby_1.8.7_patch_level_warn=Warning, Centos 5 can not build head version of ruby, falling back to latest patchlevel, your ruby will be less secure because of this. CentOS_5_ruby_1.9.2_patch_level=p320 CentOS_5_ruby_1.9.2_patch_level_warn=Warning, Centos 5 can not build head version of ruby, falling back to latest patchlevel, your ruby will be less secure because of this. ruby_1.8.4_rubygems_version=1.3.5 ruby_1.8.5_patch_level=p231 ruby_1.8.5_rubygems_version=1.3.5 ruby_1.8.6_patch_level=p420 ruby_1.8.6_rubygems_version=1.3.7 ruby_1.8.7_patch_level=head ruby_1.8.7_rubygems_version=latest-2.0 ruby_1.9.1_patch_level=p431 ruby_1.9.1_rubygems_version=latest-1.8 ruby_1.9.2_patch_level=p330 ruby_1.9.3_patch_level=p551 ruby_2.0.0_patch_level=p648 ruby_head_rubygems_version=ignore ruby_repo_url=https://github.com/ruby/ruby.git ruby_unmaintained_date=2017-04-01 ruby_unmaintained_version=2.1.0 ruby_url=https://cache.ruby-lang.org/pub/ruby ruby_url_fallback_1=https://ftp.ruby-lang.org/pub/ruby ruby_version=3.3.2 # # REE # ree_1.8.6_patch_level=20090610 ree_1.8.6_repo_url=https://github.com/FooBarWidget/rubyenterpriseedition.git ree_1.8.6_rubygems_version=1.3.7 ree_1.8.6_url=http://rubyforge.org/frs/download.php/58677 ree_1.8.7_2010.02_url=https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/rubyenterpriseedition/ruby-enterprise-1.8.7-2012.02.tar.gz ree_1.8.7_patch_level=2012.02 ree_1.8.7_repo_url=https://github.com/FooBarWidget/rubyenterpriseedition187-330 ree_1.8.7_rubygems_version=latest-2.0 ree_1.8.7_url=https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/rubyenterpriseedition ree_configure_flags=--dont-install-useful-gems ree_version=1.8.7 # # Rubinius # rbx_1.0.0_patch_level=20100514 rbx_1.0.1_patch_level=20100603 rbx_1.1.0_patch_level=20100923 rbx_1.1.1_patch_level=20101116 rbx_1.2.0_patch_level=20101221 rbx_1.2.1_patch_level=20110215 rbx_1.2.2_patch_level=20110222 rbx_1.2.3_patch_level=20110315 rbx_1.2.4_patch_level=20110705 rbx_repo_url=https://github.com/rubinius/rubinius.git rbx_url=https://s3.amazonaws.com/asset.rubini.us rbx_url_2.0_and_newer=https://rubinius-releases-rubinius-com.s3.amazonaws.com rbx_version=4.1 # # MRuby # mruby_repo_url=https://github.com/mruby/mruby.git mruby_url=https://github.com/mruby/mruby/archive mruby_version=2.0.1 # # JRuby # jruby_repo_url=https://github.com/jruby/jruby.git jruby_url=https://repo1.maven.org/maven2/org/jruby/jruby-dist jruby_version=9.4.8.0 maven_version=3.5.0 # # TruffleRuby # truffleruby_url=https://github.com/oracle/truffleruby/releases/download -truffleruby_version=24.0.1 +truffleruby_version=24.0.2 # # MacRuby # macruby_0.10_url=http://macruby.macosforge.org/files macruby_nightly_url=http://macruby.jp/files/nightlies macruby_repo_url=https://github.com/MacRuby/MacRuby.git macruby_url=https://github.com/downloads/MacRuby/MacRuby macruby_version=0.12 # # Maglev # maglev_repo_url=https://github.com/MagLev/maglev.git maglev_url=http://seaside.gemtalksystems.com/maglev maglev_version=1.2Alpha4 # # IronRuby # ironruby_1.1.3_url=https://download-codeplex.sec.s-msft.com/Download/Release?ProjectName=ironruby&DownloadId=217153&FileTime=129445296766130000&Build=19727 ironruby_repo_url=https://github.com/ironruby/ironruby.git ironruby_version=1.1.3 # # Topaz # topaz_repo_url=https://github.com/topazproject/topaz.git topaz_url=https://d3sgc2zfsedosj.cloudfront.net topaz_version=head diff --git a/config/known b/config/known index 58d2b0c..299582f 100644 --- a/config/known +++ b/config/known @@ -1,81 +1,81 @@ # MRI Rubies [ruby-]1.8.6[-p420] [ruby-]1.8.7[-head] # security released on head [ruby-]1.9.1[-p431] [ruby-]1.9.2[-p330] [ruby-]1.9.3[-p551] [ruby-]2.0.0[-p648] [ruby-]2.1[.10] [ruby-]2.2[.10] [ruby-]2.3[.8] [ruby-]2.4[.10] [ruby-]2.5[.9] [ruby-]2.6[.10] [ruby-]2.7[.8] [ruby-]3.0[.7] [ruby-]3.1[.5] [ruby-]3.2[.4] [ruby-]3[.3.4] [ruby-]3.4[.0-preview1] ruby-head # for forks use: rvm install ruby-head-<name> --url https://github.com/github/ruby.git --branch 2.2 # JRuby jruby-1.6[.8] jruby-1.7[.27] jruby-9.1[.17.0] jruby-9.2[.21.0] jruby-9.3[.15.0] jruby[-9.4.8.0] jruby-head # Rubinius rbx-1[.4.3] rbx-2.3[.0] rbx-2.4[.1] rbx-2[.5.8] rbx-3[.107] rbx-4[.20] rbx-5[.0] rbx-head # TruffleRuby -truffleruby[-24.0.1] +truffleruby[-24.0.2] # Opal opal # Minimalistic ruby implementation - ISO 30170:2012 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1[.4.1] mruby-2.0.1 mruby-2[.1.1] mruby[-head] # Ruby Enterprise Edition ree-1.8.6 ree[-1.8.7][-2012.02] # Topaz topaz # MagLev maglev-1.0.0 maglev-1.1[RC1] maglev[-1.2Alpha4] maglev-head # Mac OS X Snow Leopard Or Newer macruby-0.10 macruby-0.11 macruby[-0.12] macruby-nightly macruby-head # IronRuby ironruby[-1.1.3] ironruby-head diff --git a/config/known_strings b/config/known_strings index 8a6bc6b..07b54d3 100644 --- a/config/known_strings +++ b/config/known_strings @@ -52,512 +52,513 @@ jruby-1.6.0.RC3 jruby-1.6.0 jruby-1.6.1 jruby-1.6.2 jruby-1.6.3 jruby-1.6.4 jruby-1.6.5 jruby-1.6.5.1 jruby-1.6.7 jruby-1.6.7.2 jruby-1.6.8 jruby-1.7.0.preview1 jruby-1.7.0.preview2 jruby-1.7.0.RC1 jruby-1.7.0.RC2 jruby-1.7.0 jruby-1.7.1 jruby-1.7.2 jruby-1.7.3 jruby-1.7.4 jruby-1.7.5 jruby-1.7.6 jruby-1.7.7 jruby-1.7.8 jruby-1.7.9 jruby-1.7.10 jruby-1.7.11 jruby-1.7.12 jruby-1.7.13 jruby-1.7.14 jruby-1.7.15 jruby-1.7.16 jruby-1.7.16.1 jruby-1.7.16.2 jruby-1.7.17 jruby-1.7.18 jruby-1.7.19 jruby-1.7.20 jruby-1.7.20.1 jruby-1.7.21 jruby-1.7.22 jruby-1.7.23 jruby-1.7.24 jruby-1.7.25 jruby-1.7.26 jruby-1.7.27 jruby-9.0.0.0.pre1 jruby-9.0.0.0.pre2 jruby-9.0.0.0.rc1 jruby-9.0.0.0.rc2 jruby-9.0.0.0 jruby-9.0.1.0 jruby-9.0.2.0 jruby-9.0.3.0 jruby-9.0.4.0 jruby-9.0.5.0 jruby-9.1.0.0 jruby-9.1.1.0 jruby-9.1.2.0 jruby-9.1.3.0 jruby-9.1.4.0 jruby-9.1.5.0 jruby-9.1.6.0 jruby-9.1.7.0 jruby-9.1.8.0 jruby-9.1.9.0 jruby-9.1.10.0 jruby-9.1.11.0 jruby-9.1.12.0 jruby-9.1.13.0 jruby-9.1.14.0 jruby-9.1.15.0 jruby-9.1.16.0 jruby-9.1.17.0 jruby-9.2.0.0 jruby-9.2.1.0 jruby-9.2.2.0 jruby-9.2.3.0 jruby-9.2.4.0 jruby-9.2.4.1 jruby-9.2.5.0 jruby-9.2.6.0 jruby-9.2.7.0 jruby-9.2.8.0 jruby-9.2.9.0 jruby-9.2.10.0 jruby-9.2.11.0 jruby-9.2.11.1 jruby-9.2.12.0 jruby-9.2.13.0 jruby-9.2.14.0 jruby-9.2.15.0 jruby-9.2.16.0 jruby-9.2.17.0 jruby-9.2.18.0 jruby-9.2.19.0 jruby-9.2.20.0 jruby-9.2.20.1 jruby-9.2.21.0 jruby-9.3.0.0 jruby-9.3.1.0 jruby-9.3.2.0 jruby-9.3.3.0 jruby-9.3.4.0 jruby-9.3.6.0 jruby-9.3.7.0 jruby-9.3.8.0 jruby-9.3.9.0 jruby-9.3.10.0 jruby-9.3.11.0 jruby-9.3.13.0 jruby-9.3.14.0 jruby-9.3.15.0 jruby-9.4.0.0 jruby-9.4.1.0 jruby-9.4.2.0 jruby-9.4.3.0 jruby-9.4.4.0 jruby-9.4.5.0 jruby-9.4.6.0 jruby-9.4.7.0 jruby-9.4.8.0 macruby-0.12 maglev-1.0.0 maglev-1.1beta maglev-1.1beta2 maglev-1.1RC1 maglev-1.2Alpha maglev-1.2Alpha2 maglev-1.2Alpha3 maglev-1.2Alpha4 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1.4.0 mruby-1.4.1 mruby-2.0.0 mruby-2.0.1 mruby-2.1.0-rc mruby-2.1.0 mruby-2.1.1-rc mruby-2.1.1-rc2 mruby-2.1.1 rbx-1.0.0-20100514 rbx-1.0.1-20100603 rbx-1.1.0-20100923 rbx-1.1.1-20101116 rbx-1.2.0-20101221 rbx-1.2.1-20110215 rbx-1.2.2-20110222 rbx-1.2.3-20110315 rbx-1.2.4-20110705 rbx-1.3.2 rbx-1.3.3 rbx-1.4.1 rbx-1.4.3 rbx-2.0.0 rbx-2.1.0 rbx-2.1.1 rbx-2.2.0 rbx-2.2.2 rbx-2.2.3 rbx-2.2.4 rbx-2.2.5 rbx-2.2.6 rbx-2.2.7 rbx-2.2.8 rbx-2.2.9 rbx-2.2.10 rbx-2.3.0 rbx-2.4.0 rbx-2.4.1 rbx-2.5.0 rbx-2.5.1 rbx-2.5.2 rbx-2.5.3 rbx-2.5.4 rbx-2.5.5 rbx-2.5.6 rbx-2.5.7 rbx-2.5.8 rbx-3.70 rbx-3.71 rbx-3.72 rbx-3.73 rbx-3.74 rbx-3.75 rbx-3.76 rbx-3.77 rbx-3.78 rbx-3.79 rbx-3.80 rbx-3.81 rbx-3.82 rbx-3.83 rbx-3.84 rbx-3.85 rbx-3.86 rbx-3.87 rbx-3.88 rbx-3.89 rbx-3.90 rbx-3.91 rbx-3.92 rbx-3.93 rbx-3.94 rbx-3.95 rbx-3.96 rbx-3.97 rbx-3.98 rbx-3.99 rbx-3.100 rbx-3.101 rbx-3.102 rbx-3.103 rbx-3.104 rbx-3.105 rbx-3.106 rbx-3.107 rbx-4.0 rbx-4.1 rbx-4.2 rbx-4.3 rbx-4.4 rbx-4.5 rbx-4.6 rbx-4.7 rbx-4.8 rbx-4.9 rbx-4.10 rbx-4.11 rbx-4.12 rbx-4.13 rbx-4.14 rbx-4.15 rbx-4.16 rbx-4.17 rbx-4.18 rbx-4.19 rbx-4.20 rbx-5.0 ree-1.8.6-20080507 ree-1.8.6-20080621 ree-1.8.6-20080623 ree-1.8.6-20080624 ree-1.8.6-20080709 ree-1.8.6-20080810 ree-1.8.6-20081205 ree-1.8.6-20081215 ree-1.8.6-20090113 ree-1.8.6-20090201 ree-1.8.6-20090421 ree-1.8.6-20090520 ree-1.8.6-20090610 ree-1.8.6-20090928 ree-1.8.7-2009.10 ree-1.8.7-2010.01 ree-1.8.7-2010.02 ree-1.8.7-2011.01 ree-1.8.7-2011.02 ree-1.8.7-2011.03 ree-1.8.7-2011.12 ree-1.8.7-2012.02 ruby-1.8.5-p115 ruby-1.8.5-p231 ruby-1.8.6-p286 ruby-1.8.6-p287 ruby-1.8.6-p369 ruby-1.8.6-p383 ruby-1.8.6-p398 ruby-1.8.6-p399 ruby-1.8.6-p420 ruby-1.8.7-p160 ruby-1.8.7-p174 ruby-1.8.7-p248 ruby-1.8.7-p249 ruby-1.8.7-p299 ruby-1.8.7-p302 ruby-1.8.7-p330 ruby-1.8.7-p334 ruby-1.8.7-p352 ruby-1.8.7-p357 ruby-1.8.7-p358 ruby-1.8.7-p370 ruby-1.8.7-p371 ruby-1.8.7-p374 ruby-1.9.0 ruby-1.9.1-p129 ruby-1.9.1-p243 ruby-1.9.1-p376 ruby-1.9.1-p378 ruby-1.9.1-p429 ruby-1.9.1-p431 ruby-1.9.2-p0 ruby-1.9.2-p136 ruby-1.9.2-p180 ruby-1.9.2-p290 ruby-1.9.2-p318 ruby-1.9.2-p320 ruby-1.9.2-p330 ruby-1.9.3-preview1 ruby-1.9.3-rc1 ruby-1.9.3-p0 ruby-1.9.3-p125 ruby-1.9.3-p194 ruby-1.9.3-p286 ruby-1.9.3-p327 ruby-1.9.3-p362 ruby-1.9.3-p374 ruby-1.9.3-p385 ruby-1.9.3-p392 ruby-1.9.3-p429 ruby-1.9.3-p448 ruby-1.9.3-p484 ruby-1.9.3-p545 ruby-1.9.3-p547 ruby-1.9.3-p550 ruby-1.9.3-p551 ruby-2.0.0-preview1 ruby-2.0.0-preview2 ruby-2.0.0-rc1 ruby-2.0.0-rc2 ruby-2.0.0-p0 ruby-2.0.0-p195 ruby-2.0.0-p247 ruby-2.0.0-p353 ruby-2.0.0-p451 ruby-2.0.0-p481 ruby-2.0.0-p576 ruby-2.0.0-p594 ruby-2.0.0-p598 ruby-2.0.0-p643 ruby-2.0.0-p645 ruby-2.0.0-p647 ruby-2.0.0-p648 ruby-2.1.0-preview1 ruby-2.1.0-preview2 ruby-2.1.0-rc1 ruby-2.1.0 ruby-2.1.1 ruby-2.1.2 ruby-2.1.3 ruby-2.1.4 ruby-2.1.5 ruby-2.1.6 ruby-2.1.7 ruby-2.1.8 ruby-2.1.9 ruby-2.1.10 ruby-2.2.0-preview1 ruby-2.2.0-preview2 ruby-2.2.0-rc1 ruby-2.2.0 ruby-2.2.1 ruby-2.2.2 ruby-2.2.3 ruby-2.2.4 ruby-2.2.5 ruby-2.2.6 ruby-2.2.7 ruby-2.2.8 ruby-2.2.9 ruby-2.2.10 ruby-2.3.0-preview1 ruby-2.3.0-preview2 ruby-2.3.0 ruby-2.3.1 ruby-2.3.2 ruby-2.3.3 ruby-2.3.4 ruby-2.3.5 ruby-2.3.6 ruby-2.3.7 ruby-2.3.8 ruby-2.4.0-preview1 ruby-2.4.0-preview2 ruby-2.4.0-preview3 ruby-2.4.0-rc1 ruby-2.4.0 ruby-2.4.1 ruby-2.4.2 ruby-2.4.3 ruby-2.4.4 ruby-2.4.5 ruby-2.4.6 ruby-2.4.7 ruby-2.4.8 ruby-2.4.9 ruby-2.4.10 ruby-2.5.0-preview1 ruby-2.5.0-rc1 ruby-2.5.0 ruby-2.5.1 ruby-2.5.2 ruby-2.5.3 ruby-2.5.4 ruby-2.5.5 ruby-2.5.6 ruby-2.5.7 ruby-2.5.8 ruby-2.5.9 ruby-2.6.0-preview1 ruby-2.6.0-preview2 ruby-2.6.0-preview3 ruby-2.6.0-rc1 ruby-2.6.0-rc2 ruby-2.6.0 ruby-2.6.1 ruby-2.6.2 ruby-2.6.3 ruby-2.6.4 ruby-2.6.5 ruby-2.6.6 ruby-2.6.7 ruby-2.6.8 ruby-2.6.9 ruby-2.6.10 ruby-2.7.0-preview1 ruby-2.7.0-preview2 ruby-2.7.0-preview3 ruby-2.7.0-rc1 ruby-2.7.0-rc2 ruby-2.7.0 ruby-2.7.1 ruby-2.7.2 ruby-2.7.3 ruby-2.7.4 ruby-2.7.5 ruby-2.7.6 ruby-2.7.7 ruby-2.7.8 ruby-3.0.0-preview1 ruby-3.0.0-preview2 ruby-3.0.0-rc1 ruby-3.0.0 ruby-3.0.1 ruby-3.0.2 ruby-3.0.3 ruby-3.0.4 ruby-3.0.5 ruby-3.0.6 ruby-3.0.7 ruby-3.1.0-preview1 ruby-3.1.0 ruby-3.1.1 ruby-3.1.2 ruby-3.1.3 ruby-3.1.4 ruby-3.1.5 ruby-3.2.0-preview1 ruby-3.2.0-preview2 ruby-3.2.0-preview3 ruby-3.2.0-rc1 ruby-3.2.0 ruby-3.2.1 ruby-3.2.2 ruby-3.2.3 ruby-3.2.4 ruby-3.3.0-preview1 ruby-3.3.0-preview2 ruby-3.3.0-preview3 ruby-3.3.0 ruby-3.3.1 ruby-3.3.2 ruby-3.3.3 ruby-3.3.4 ruby-3.4.0-preview1 truffleruby-1.0.0-rc2 truffleruby-1.0.0-rc3 truffleruby-1.0.0-rc5 truffleruby-1.0.0-rc6 truffleruby-1.0.0-rc7 truffleruby-1.0.0-rc8 truffleruby-1.0.0-rc9 truffleruby-1.0.0-rc10 truffleruby-1.0.0-rc11 truffleruby-1.0.0-rc12 truffleruby-1.0.0-rc13 truffleruby-1.0.0-rc14 truffleruby-1.0.0-rc15 truffleruby-1.0.0-rc16 truffleruby-19.0.0 truffleruby-19.0.2 truffleruby-19.1.0 truffleruby-19.1.1 truffleruby-19.2.0 truffleruby-19.2.0.1 truffleruby-19.2.1 truffleruby-19.3.0 truffleruby-19.3.0.2 truffleruby-19.3.1 truffleruby-20.0.0 truffleruby-20.1.0 truffleruby-20.2.0 truffleruby-20.3.0 truffleruby-21.0.0 truffleruby-21.1.0 truffleruby-21.2.0 truffleruby-21.2.0.1 truffleruby-21.3.0 truffleruby-22.0.0.2 truffleruby-22.1.0 truffleruby-22.2.0 truffleruby-22.3.0 truffleruby-22.3.1 truffleruby-23.0.0-preview1 truffleruby-23.0.0 truffleruby-23.1.0 truffleruby-23.1.1 truffleruby-23.1.2 truffleruby-24.0.0 truffleruby-24.0.1 +truffleruby-24.0.2 diff --git a/config/md5 b/config/md5 index c6648c8..5bb4eea 100644 --- a/config/md5 +++ b/config/md5 @@ -1520,515 +1520,519 @@ rubinius-2.2.2.tar.bz2=ac70d629ea43525d91e81f4ccf135299 rubinius-2.2.3.tar.bz2=d9978cf1a4e8f0310db63e49834f9837 rubinius-2.2.4.tar.bz2=c10699da85a8eb5861a37b29077213bd rubinius-2.2.5.tar.bz2=5996dc8529b2ffe5921c5e7020bee20e rubinius-2.2.6.tar.bz2=85339bb6dd525eee719edf0551868f56 rubinius-2.2.7.tar.bz2=de2e6f4c3bd9a90bcb89f2ea27ddee9e rubinius-2.2.8.tar.bz2=c4db1ffb8dbdf864240cabe8b7758b49 rubinius-2.2.9.tar.bz2=0bf87ba617fa989e47d20942410028af rubinius-2.2.10.tar.bz2=8680da7eb921e6f595a1d716915ca7e0 rubinius-2.3.0.tar.bz2=e003a30af6689c8198116b3405d09d8e rubinius-2.4.0.tar.bz2=62391a51f49820daa51463066c3ce007 rubinius-2.4.1.tar.bz2=7758721b6e848387c3943ddb9ebd9479 rubinius-2.5.0.tar.bz2=178baa1ad172df0801765ea93bc36d87 rubinius-2.5.1.tar.bz2=77e1b87dc357691ad44b561a5f45c188 rubinius-2.5.2.tar.bz2=e5973d6e0a16f0390dc2a7478db83ff5 rubinius-2.5.3.tar.bz2=b19709eb3fa9e05b3fa6a357b33e3b5b rubinius-2.5.4.tar.bz2=64587916e5d445ed9bc630017a04498e rubinius-2.5.5.tar.bz2=ef671bbab50cbe2f70f953c491311261 rubinius-2.5.6.tar.bz2=597e4b049f49966c646faf699856c1b9 rubinius-2.5.7.tar.bz2=9a7f404019bce9fc34a7af7feb7cbb74 rubinius-2.5.8.tar.bz2=a24520892cada1f660e719a25abf63e3 ruby-1.8.5-p115.tar.bz2=03955e3c367b9beb3efe144c9f00d689 ruby-1.8.5-p115.tar.gz=20ca6cc87eb077296806412feaac0356 ruby-1.8.5-p231.tar.bz2=327f5aa6573787432222e96195cffd1e ruby-1.8.5-p231.tar.gz=e900cf225d55414bffe878f00a85807c ruby-1.8.6-p286.tar.bz2=e6b6bf8f34370e433936adb7a7065e63 ruby-1.8.6-p286.tar.gz=797ea136fe43e4286c9362ee4516674e ruby-1.8.6-p287.tar.bz2=80b5f3db12531d36e6c81fac6d05dda9 ruby-1.8.6-p287.tar.gz=6ff3420094711266c3201a0c7c2faa38 ruby-1.8.6-p369.tar.bz2=c3c1f3dd0dfbd2e17a04e59c2f12cfc8 ruby-1.8.6-p369.tar.gz=8c140ae28b4c3947b92dfad69109d90b ruby-1.8.6-p383.tar.bz2=a48703cd982b9f0e3002700a50b0e88e ruby-1.8.6-p383.tar.gz=4f49544d4a4d0d34e9d86c41e853db2e ruby-1.8.6-p398.tar.bz2=fbd43dc44ee26be4d37e6bebbed6f8bd ruby-1.8.6-p398.tar.gz=736db5f56c2d9b0136e563d049249fa8 ruby-1.8.6-p399.tar.bz2=f77c307cb72fb8808b0e85af5d05cefc ruby-1.8.6-p399.tar.gz=c3d16cdd3c1ee8f3b7d1c399d4884e33 ruby-1.8.6-p420.tar.bz2=1c7a978e9ffd4f56dc2ad74bbd2c34f3 ruby-1.8.6-p420.tar.gz=ca1eee44f842e93b5098bc5a2bb9a40b ruby-1.8.7-p160.tar.bz2=f8ddb886b8a81cf005f53e9a9541091d ruby-1.8.7-p160.tar.gz=945398f97e2de6dd8ab6df68d10bb1a1 ruby-1.8.7-p174.tar.bz2=88c45aaf627b4404e5e4273cb03ba2ee ruby-1.8.7-p174.tar.gz=18dcdfef761a745ac7da45b61776afa5 ruby-1.8.7-p248.tar.bz2=37e19d46b7d4b845f57d3389084b94a6 ruby-1.8.7-p248.tar.gz=60a65374689ac8b90be54ca9c61c48e3 ruby-1.8.7-p249.tar.bz2=37200cc956a16996bbfd25bb4068f242 ruby-1.8.7-p249.tar.gz=d7db7763cffad279952eb7e9bbfc221c ruby-1.8.7-p299.tar.bz2=244439a87d75ab24170a9c2b451ce351 ruby-1.8.7-p299.tar.gz=43533980ee0ea57381040d4135cf9677 ruby-1.8.7-p302.tar.bz2=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p302.tar.gz=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p330.tar.bz2=2689719fb42c8cf0aa336f8c8933f413 ruby-1.8.7-p330.tar.gz=50a49edb787211598d08e756e733e42e ruby-1.8.7-p334.tar.bz2=2f14f604bf981bb938ab5fc8b09eb1a6 ruby-1.8.7-p334.tar.gz=aacb6ee5dfe2367682bba56af7f415b8 ruby-1.8.7-p352.tar.bz2=0c61ea41d1b1183b219b9afe97f18f52 ruby-1.8.7-p352.tar.gz=0c33f663a10a540ea65677bb755e57a7 ruby-1.8.7-p357.tar.bz2=3abd9e2a29f756a0d30c7bfca578cdeb ruby-1.8.7-p357.tar.gz=b2b8248ff5097cfd629f5b9768d1df82 ruby-1.8.7-p358.tar.bz2=de35f00997f4ccee3e22dff0f2d01b8a ruby-1.8.7-p370.tar.bz2=1e4c3194537dd8ff92e756993e55a29d ruby-1.8.7-p371.tar.bz2=c27526b298659a186bdb5107fcec2341 ruby-1.8.7-p371.tar.gz=653f07bb45f03d0bf3910491288764df ruby-1.8.7-p374.tar.bz2=83c92e2b57ea08f31187060098b2200b ruby-1.8.7-p374.tar.gz=b72a0bc5b824398537762e5272bbb8dc ruby-1.9.0.tar.bz2=17eb66ac3721340d21db352d8f5dec76 ruby-1.9.1-p129.tar.bz2=6fa62b20f72da471195830dec4eb2013 ruby-1.9.1-p129.tar.gz=c71f413514ee6341c627be2957023a5c ruby-1.9.1-p243.tar.bz2=66d4f8403d13623051091347764881a0 ruby-1.9.1-p243.tar.gz=515bfd965814e718c0943abf3dde5494 ruby-1.9.1-p376.tar.bz2=e019ae9c643c5efe91be49e29781fb94 ruby-1.9.1-p376.tar.gz=ebb20550a11e7f1a2fbd6fdec2a3e0a3 ruby-1.9.1-p378.tar.bz2=5922459622a23612eb9b68a3586cb5f8 ruby-1.9.1-p378.tar.gz=9fc5941bda150ac0a33b299e1e53654c ruby-1.9.1-p429.tar.bz2=09df32ae51b6337f7a2e3b1909b26213 ruby-1.9.1-p429.tar.gz=0f6d7630f26042e00bc59875755cf879 ruby-1.9.1-p431.tar.bz2=03179138ae95dbfae872ef49e9cc6da7 ruby-1.9.1-p431.tar.gz=23f28cffc007ed5ac72c8e9bec6837ce ruby-1.9.2-p0.tar.bz2=d8a02cadf57d2571cd4250e248ea7e4b ruby-1.9.2-p0.tar.gz=755aba44607c580fddc25e7c89260460 ruby-1.9.2-p136.tar.bz2=52958d35d1b437f5d9d225690de94c13 ruby-1.9.2-p136.tar.gz=6e17b200b907244478582b7d06cd512e ruby-1.9.2-p180.tar.bz2=68510eeb7511c403b91fe5476f250538 ruby-1.9.2-p180.tar.gz=0d6953820c9918820dd916e79f4bfde8 ruby-1.9.2-p290.tar.bz2=096758c3e853b839dc980b183227b182 ruby-1.9.2-p290.tar.gz=604da71839a6ae02b5b5b5e1b792d5eb ruby-1.9.2-p318.tar.bz2=be431c6cbfa27e3836a06c6315717747 ruby-1.9.2-p318.tar.gz=cc7bf1025128e1985882ae243f348802 ruby-1.9.2-p320.tar.bz2=b226dfe95d92750ee7163e899b33af00 ruby-1.9.2-p320.tar.gz=5ef5d9c07af207710bd9c2ad1cef4b42 ruby-1.9.2-p330.tar.bz2=8ba4aaf707023e76f80fc8f455c99858 ruby-1.9.2-p330.tar.gz=4b9330730491f96b402adc4a561e859a ruby-1.9.3-p0.tar.bz2=65401fb3194cdccd6c1175ab29b8fdb8 ruby-1.9.3-p0.tar.gz=8e2fef56185cfbaf29d0c8329fc77c05 ruby-1.9.3-p125.tar.bz2=702529a7f8417ed79f628b77d8061aa5 ruby-1.9.3-p125.tar.gz=e3ea86b9d3fc2d3ec867f66969ae3b92 ruby-1.9.3-p194.tar.bz2=2278eff4cfed3cbc0653bc73085caa34 ruby-1.9.3-p194.tar.gz=bc0c715c69da4d1d8bd57069c19f6c0e ruby-1.9.3-p286.tar.bz2=e76848a86606a4fd5dcf14fc4b4e755e ruby-1.9.3-p327.tar.bz2=7d602aba93f31ceef32800999855fbca ruby-1.9.3-p327.tar.gz=96118e856b502b5d7b3a4398e6c6e98c ruby-1.9.3-p362.tar.bz2=13c26ea368d88a560f07cc8c5eb4fa05 ruby-1.9.3-p374.tar.bz2=944e73eba9ee9e1f2647ff32ec0b14b2 ruby-1.9.3-p385.tar.bz2=5ec9aff670f4912b0f6f0e11e855ef6c ruby-1.9.3-p392.tar.bz2=a810d64e2255179d2f334eb61fb8519c ruby-1.9.3-p392.tar.gz=f689a7b61379f83cbbed3c7077d83859 ruby-1.9.3-p429.tar.bz2=c2b2de5ef15ea9b1aaa3152f9112af1b ruby-1.9.3-p429.tar.gz=993c72f7f805a9eb453f90b0b7fe0d2b ruby-1.9.3-p448.tar.bz2=aa710d386e5903f78f0231868255e6af ruby-1.9.3-p448.tar.gz=a893cff26bcf351b8975ebf2a63b1023 ruby-1.9.3-p484.tar.bz2=03f5b08804927ceabe5122cb90f5d0a9 ruby-1.9.3-p484.tar.gz=8ac0dee72fe12d75c8b2d0ef5d0c2968 ruby-1.9.3-p545.tar.bz2=4743c1dc48491070bae8fc8b423bc1a7 ruby-1.9.3-p545.tar.gz=8e8f6e4d7d0bb54e0edf8d9c4120f40c ruby-1.9.3-p547.tar.bz2=5363d399be7f827c77bf8ae5d1a69b38 ruby-1.9.3-p547.tar.gz=7531f9b1b35b16f3eb3d7bea786babfd ruby-1.9.3-p550.tar.bz2=c2169c8b14ccefd036081aba5ffa96da ruby-1.9.3-p551.tar.bz2=0d8b272b05c3449dc848bb7570f65bfe ruby-1.9.3-preview1.tar.bz2=7d93dc773c5824f05c6e6630d8c4bf9b ruby-1.9.3-preview1.tar.gz=0f0220be4cc7c51a82c1bd8f6a0969f3 ruby-1.9.3-rc1.tar.bz2=26f0dc51ad981e12c58b48380112fa4d ruby-1.9.3-rc1.tar.gz=46a2a481536ca0ca0b80ad2b091df68e ruby-2.0.0-p0.tar.bz2=895c1c581f8d28e8b3bb02472b2ccf6a ruby-2.0.0-p195.tar.bz2=2f54faea6ee1ca500632ec3c0cb59cb6 ruby-2.0.0-p247.tar.bz2=60913f3eec0c4071f44df42600be2604 ruby-2.0.0-p353.tar.bz2=20eb8f067d20f6b76b7e16cce2a85a55 ruby-2.0.0-p451.tar.bz2=908e4d1dbfe7362b15892f16af05adf8 ruby-2.0.0-p481.tar.bz2=ea406a8d415a1a5d8365596d4288f3da ruby-2.0.0-p576.tar.bz2=eccd42d43620544a085c5e3834572f37 ruby-2.0.0-p594.tar.bz2=58469c0daf5f3a892a70cc674ea59c7f ruby-2.0.0-p598.tar.bz2=a3f3908103a7d209d1d1cf4712e3953c ruby-2.0.0-p643.tar.bz2=1390888cac6cd175e6f164eff378cdde ruby-2.0.0-p645.tar.bz2=d576240c97cfcc3ed9bdc457eb1e8280 ruby-2.0.0-p647.tar.bz2=27a3ea1a8b8bca1a6de43a7d08e88b69 ruby-2.0.0-p648.tar.bz2=3544031334f4665aa2eb1414babc9345 ruby-2.0.0-preview1.tar.bz2=47a0f662f0e258aa1c5e429c310861b3 ruby-2.0.0-preview2.tar.bz2=a645a783c3302cc094a9963a5e700a4d ruby-2.0.0-rc1.tar.bz2=24cebdda11e01ff4889ac983cd7dc02c ruby-2.0.0-rc2.tar.bz2=e92420131bd7994513e0bf09a3e2a19b ruby-2.1.0-preview1.tar.bz2=d32d1ea23988399afadbd21c5a7a37fc ruby-2.1.0-preview2.tar.bz2=9d566a9b2d2e7e35ad6125e2a14ce672 ruby-2.1.0-rc1.tar.bz2=cae095b90349b5b0f7026060cc3dd2c5 ruby-2.1.0.tar.bz2=1546eeb763ac7754365664be763a1e8f ruby-2.1.1.tar.bz2=53edc33b2f590ecdd9f6a344b9d92d0d ruby-2.1.1.tar.gz=e57fdbb8ed56e70c43f39c79da1654b2 ruby-2.1.2.tar.bz2=ed9b8565bdeccb401d628ec8d54a0774 ruby-2.1.2.tar.gz=a5b5c83565f8bd954ee522bd287d2ca1 ruby-2.1.3.tar.bz2=02b7da3bb06037c777ca52e1194efccb ruby-2.1.4.tar.bz2=f4136e781d261e3cc20748005e1740b7 ruby-2.1.5.tar.bz2=a7c3e5fec47eff23091b566e9e1dac1b ruby-2.1.6.tar.bz2=e1a8e6c6bfbb09bb7f8d6be8f508e4a1 ruby-2.1.7.tar.bz2=3a878e98311d543e5de3533b82ef4a5a ruby-2.1.8.tar.bz2=b17130b5f02a61640ae3b629af931610 ruby-2.1.9.tar.bz2=62bd1cbfcbc22e4d137462bce992f6d1 ruby-2.1.10.tar.bz2=5155c624807ff2418a9e9f15202954d0 ruby-2.2.0-preview1.tar.bz2=767b132eec3e70b14afe5884a7a767b1 ruby-2.2.0-preview2.tar.bz2=d7abace25a8ffe861cb2807bef1c58a6 ruby-2.2.0-rc1.tar.bz2=7144732d30dd4547c0a59862b3345d54 ruby-2.2.0.tar.bz2=d03cd4690fec1fff81d096d1c1255fde ruby-2.2.1.tar.bz2=06973777736d8e6bdad8dcaa469a9da3 ruby-2.2.2.tar.bz2=af6eb4fa7247f1f7b2e19c8e6f3e3145 ruby-2.2.3.tar.bz2=f49a734729a71774d4a94a9a603114b2 ruby-2.2.4.tar.bz2=c3d65f6d2ebe90dda81a37885ea244f5 ruby-2.2.5.tar.bz2=0c7edd1ff3650c3b74da2efaf641bf34 ruby-2.2.6.tar.bz2=3d13cf447142b8a11cd9beb7bc63fee0 ruby-2.2.7.tar.bz2=ca7224d80c08b015bc3b8c226d0914c3 ruby-2.2.8.tar.bz2=054d2e2904d5175662293e29c3bdb927 ruby-2.2.9.tar.bz2=575adf8ede6b1ca7236a5341e73536b0 ruby-2.2.10.tar.bz2=bef1909a4c885157870ef69548cdad3a ruby-2.3.0-preview1.tar.bz2=776000d74ec6dd34bf355ff6921c8311 ruby-2.3.0-preview2.tar.bz2=3ad442ccb337e77e4acaa4113f25b76a ruby-2.3.0.tar.bz2=f0d9f9bbdc87372ca98988a571875819 ruby-2.3.1.tar.bz2=c194281f63d7fcd816747fe78474be5e ruby-2.3.2.tar.bz2=9d00f3772f1c8fa5eecdfea089e3032f ruby-2.3.3.tar.bz2=04b9c461a2bc1eec0535ad1947cad4fb ruby-2.3.4.tar.bz2=99961e97566aee6d63635e2da4cf73ac ruby-2.3.5.tar.bz2=e1efc3d5a948ca1f552005efe5925513 ruby-2.3.6.tar.bz2=b2443b11ee80319a119f7ec0c9b8d79a ruby-2.3.7.tar.bz2=5eb580d5cd13ffb5aacfb96580c0043d ruby-2.3.8.tar.bz2=78045332e298dfd859ceef9fe946950f ruby-2.4.0-preview1.tar.bz2=64b8983b5f53d053906e394f734aa296 ruby-2.4.0-preview2.tar.bz2=1074e8dea5baa89af7f7c2d1d2b9ebaa ruby-2.4.0-preview3.tar.bz2=9f767e6bc61830735ea7dc9cd5a63653 ruby-2.4.0-rc1.tar.bz2=0f8b665acf4e883334adc121a42a206f ruby-2.4.0.tar.bz2=98f29161860fe1b6c65396717847a358 ruby-2.4.1.tar.bz2=07b2ae5d2f46321c95b37066c8415900 ruby-2.4.2.tar.bz2=5ff3ad6ec816bcce8806a55090936ab6 ruby-2.4.3.tar.bz2=ac8215ba561cc7c79b4f61daee11b706 ruby-2.4.4.tar.bz2=d994274eaa95b82aa5d31ec2188253c6 ruby-2.4.5.tar.bz2=45d70a8bb9397d818795ffe992163d27 ruby-2.4.6.tar.bz2=4abd13c50c1fc273a0a81a0ae74ed39f ruby-2.4.7.tar.bz2=1ce166ced489908993d78e8bb68325e0 ruby-2.4.8.tar.bz2=396d35f1a2d1deaf303f59cb5245d4ae ruby-2.4.9.tar.bz2=0b3447370651df55a2014a170c0cb1d5 ruby-2.4.10.tar.bz2=b10a7d2fcaf218c98edbaf57efc36e58 ruby-2.5.0-preview1.tar.bz2=889454189f41e271ae5ba15382911b6a ruby-2.5.0-rc1.tar.bz2=f5acdeacf56aced3c00ae6a8fa816bbc ruby-2.5.0.tar.bz2=63a6cd49546783d62de25a0ffc4aecc3 ruby-2.5.1.tar.bz2=5aaaf2fb4893214fa316516f3ac43519 ruby-2.5.2.tar.bz2=e90ab127e2ac3ee1d8840835e8ba1f13 ruby-2.5.3.tar.bz2=49aea0bf56d25351ccaf938c642400df ruby-2.5.4.tar.bz2=0c923215470f1debe593fe21e66fd37b ruby-2.5.5.tar.bz2=8f41b5cb683d48b5cb6cdfe03d135d6b ruby-2.5.6.tar.bz2=f2a74416ab3016434896194120796f04 ruby-2.5.7.tar.bz2=65597b69aa54bdca8745502c10349f96 ruby-2.5.8.tar.bz2=9ec96e7a590ef801ede294b6184c9c0f ruby-2.5.9.tar.bz2=9e905a545a729af1f1620ddfc2976fe5 ruby-2.6.0-preview1.tar.bz2=1ce507e27fa02aeb36100dabcf1da94f ruby-2.6.0-preview2.tar.bz2=e45011116334d21857b9e1712a01e6b3 ruby-2.6.0-preview3.tar.bz2=b326ceee3d3756f892515009e148f4b2 ruby-2.6.0-rc1.tar.bz2=40457a72e36cbecd0c51d9f895347302 ruby-2.6.0-rc2.tar.bz2=9665e6d886a9da2d4076fa75836798f1 ruby-2.6.0.tar.bz2=d3372daec93f83e7a91c669821053014 ruby-2.6.1.tar.bz2=73d19ac478db1a178be5ae2f2fb8c9ec ruby-2.6.2.tar.bz2=658fcc0da15578c2420ded807b11cce1 ruby-2.6.3.tar.bz2=52e609b756735115814b9c8463f185e2 ruby-2.6.4.tar.bz2=d9b35753c65f54c745ab6b0094511839 ruby-2.6.5.tar.bz2=d1b89c88effb71d75cd7ef77c35e1985 ruby-2.6.6.tar.bz2=abc030870bfbe18ae9c356abebd95cb6 ruby-2.6.7.tar.bz2=46f24740181f91247c72f19d52334379 ruby-2.6.8.tar.bz2=c53761123d17e929cfe248f50429bcab ruby-2.6.9.tar.bz2=ddc24495adaf215c8ee40630b4a55041 ruby-2.6.10.tar.bz2=6ad76db639ab308e3b6c19408729a0cf ruby-2.7.0-preview1.tar.bz2=82fab0496947acd847a6b2eb758acfc6 ruby-2.7.0-preview2.tar.bz2=966a544ab59114591898403c23d91397 ruby-2.7.0-preview3.tar.bz2=2fa6c213774744b287e7e0212b43f626 ruby-2.7.0-rc1.tar.bz2=48a8837cb352f5b95e97a1ae0d62a9d0 ruby-2.7.0-rc2.tar.bz2=cca58fdb8c5e8be8273842d54199c42d ruby-2.7.0.tar.bz2=89347748b7414f5bc7aeb8f4a87ebef4 ruby-2.7.1.tar.bz2=4bb2b2b2f0c6953859e30af140cf249a ruby-2.7.2.tar.bz2=a8acc9c24708fe29dfc287823ecaae65 ruby-2.7.3.tar.bz2=604acb258b1d8228f55799e846cfe6d3 ruby-2.7.4.tar.bz2=52705d799ed851dd3bfd5634265cde46 ruby-2.7.5.tar.bz2=d97d4377eee18b0e790510c3afed648c ruby-2.7.6.tar.bz2=1b6efacb9f129d0253d8a9faa9c21f99 ruby-2.7.7.tar.bz2=63c55e75150251d3ba092b662138e4af ruby-2.7.8.tar.bz2=f44dedf51fdb7441a7dba592d6a4a14d ruby-3.0.0-preview1.tar.gz=991df063b86a8f8412ca07f548579f39 ruby-3.0.0-preview2.tar.gz=ce14b24e923f2e269fea6441791a7248 ruby-3.0.0-rc1.tar.gz=848a8628c8abde270b66e2474049a4a3 ruby-3.0.0.tar.gz=d6af36269a1b0bc278236d371543ad97 ruby-3.0.1.tar.gz=8d1c460a9a9d48a353de3eb0f338bbfd ruby-3.0.2.tar.gz=b973af486291a1e17ad50d88472bfa86 ruby-3.0.3.tar.gz=9ecae293da9547c1438a970f04f64655 ruby-3.0.4.tar.gz=ec9de9a15acc4f205b08816d94267415 ruby-3.0.5.tar.gz=cdff2395625dc1d632fc5400c8fec103 ruby-3.0.6.tar.gz=6b5a7b14505697e6fc2b40b345679f40 ruby-3.0.7.tar.gz=147a3467facc704b5d479e809c131603 ruby-3.1.0-preview1.tar.gz=d131b9bca700ee87ea276f8233ea4c0b ruby-3.1.0.tar.gz=1ca89d713f2c18a20104befed51b3b9a ruby-3.1.1.tar.gz=702778a0ef8b7a01ef7530a541002e19 ruby-3.1.2.tar.gz=9daf064899cccc32fd564117c7a7e0dd ruby-3.1.3.tar.gz=cce38a2b2c589d59f440f67c7d8cc697 ruby-3.1.4.tar.gz=3e601ae6db76a487219a1084e5cb4c9c ruby-3.1.5.tar.gz=ce1e92ddb1230fa2d4f4367882542555 ruby-3.2.0-preview1.tar.gz=a83c91d53e130fe232e4c27ecc8738da ruby-3.2.0-preview2.tar.gz=56e7801b37612b82285c9a09cfeb28ce ruby-3.2.0-preview3.tar.gz=0ed16faae50403b4e2ba2e85ec2314a1 ruby-3.2.0-rc1.tar.gz=4657d7013702adce21ca21dfe71ea4a0 ruby-3.2.0.tar.gz=76ca7e7d71898ab1e85155d69403754e ruby-3.2.1.tar.gz=055101c924538467c63fcbf42abddc75 ruby-3.2.2.tar.gz=eb6f18605e1e1be5dfb5b45f31bf6a93 ruby-3.2.3.tar.gz=e0ba90554f7ea41c587ffa7fcfd064ca ruby-3.2.4.tar.gz=c48283a23c72d7aae19b7f510b89444a ruby-3.3.0-preview1.tar.gz=0833f555b1b8d5423953600fb4146639 ruby-3.3.0-preview2.tar.gz=4f82f4c9e512ec0a53baa1be8d35ebf7 ruby-3.3.0-preview3.tar.gz=a32ede198a9da50d4afc4421a4a993ad ruby-3.3.0.tar.gz=f57422a0f995cd5a93c726f6c42c310a ruby-3.3.1.tar.gz=368e331a35145ace4948390ed76cf1df ruby-3.3.2.tar.gz=9a7efebc6a0e4810c716ec6d401dc372 ruby-3.3.3.tar.gz=beb9773cc4d9d8da29463ab175e4db28 ruby-3.3.4.tar.gz=f2e16c1a56e07e185214e85c62657941 ruby-3.4.0-preview1.tar.gz=93b9b1040a2dd7be7514a7870aa7da03 ruby-enterprise-1.8.6-20080507.tar.gz=17e3c52e73e42809f57ad0000a6cb4ab ruby-enterprise-1.8.6-20080621.tar.gz=626fc3811eee2dc92ac27ea63d37a8b2 ruby-enterprise-1.8.6-20080623.tar.gz=0bf8a3a93c6b37bb1260cc09b05e81fd ruby-enterprise-1.8.6-20080624.tar.gz=de58b97128aa65209f291c66eab7c4a7 ruby-enterprise-1.8.6-20080709.tar.gz=f0ded08cec64959fa388ec6a237b9c47 ruby-enterprise-1.8.6-20080810.tar.gz=bfdcf06f437af825cd9f2d321f9d1896 ruby-enterprise-1.8.6-20081205.tar.gz=50206bec9be2e08a862e5ec2e70fa693 ruby-enterprise-1.8.6-20081215.tar.gz=aab57b7d5061c1980bec5dbe311ec9b2 ruby-enterprise-1.8.6-20090113.tar.gz=e8d796a5bae0ec1029a88ba95c5d901d ruby-enterprise-1.8.6-20090201.tar.gz=a965e6789b553efaed72191825b13713 ruby-enterprise-1.8.6-20090421.tar.gz=c777b361aadccda7988be16ede7ab15f ruby-enterprise-1.8.6-20090520.tar.gz=156572a8296bd0440970a6bb95018a13 ruby-enterprise-1.8.6-20090610.tar.gz=0bf66ee626918464a6eccdd83c99d63a ruby-enterprise-1.8.7-2009.10.tar.gz=3727eef7b6b1b2f31db7d091328d966e ruby-enterprise-1.8.7-2010.01.tar.gz=587aaea02c86ddbb87394a340a25e554 ruby-enterprise-1.8.7-2010.02.tar.gz=4df7b09c01adfd711b0ab76837611542 ruby-enterprise-1.8.7-2011.01.tar.gz=4640634347cd8e5469cb718853e2112e ruby-enterprise-1.8.7-2011.02.tar.gz=8c5faa11c1ddaed3f44b7294711980cc ruby-enterprise-1.8.7-2011.03.tar.gz=038604ce25349e54363c5df9cd535ec8 ruby-enterprise-1.8.7-2011.12.tar.gz=1e5f3059d52a67ab5d91d472b756de08 ruby-enterprise-1.8.7-2012.02.tar.gz=8d086d2fe68a4c57ba76228e97fb3116 ruby-enterprise-1.8.7-20090928.tar.gz=ae00018ce89d95419dfde370fcd485ac rubygems-0.4.0.tgz=86a64616548a793e1a5f825f0dd385b9 rubygems-0.5.0.tgz=80d151edd94a06bcd2452a7e272b4d96 rubygems-0.6.0.tgz=5df803f5a04654833690dd32283de741 rubygems-0.6.1.tgz=c4a0faa9f876ad805ae80d1396a29d97 rubygems-0.7.0.tgz=ede9b55343219e8b3491793aa12c46f3 rubygems-0.8.0.tgz=9ef6e3c34dcb54e295c8e57321ddc079 rubygems-0.8.1.tgz=6276d268b420c0d61796cdbf6d28dae4 rubygems-0.8.3.tgz=6e6da80f61d6e77d0ad9e531767f6fd5 rubygems-0.8.4.tgz=a2ad2d03dae8a98002c2a7cd6c3ed352 rubygems-0.8.5.tgz=b917c084e1e6e99d8e102af8dd687ddb rubygems-0.8.6.tgz=9de98d2f62e3f91521b0207a4dcdeb5b rubygems-0.8.7.tgz=7fc04b9f9acc0c18cbbe6222be8d0bd3 rubygems-0.8.8.tgz=a8535e9c35a4c215d6ef9268d4bc69ed rubygems-0.8.10.tgz=d26592e280c0fb24c51f2837c3f48e67 rubygems-0.8.11.tgz=aa363b428c4c1fc2e076a4ff77b957d7 rubygems-0.9.0.tgz=5d496e1f415b8b4033ab867f01d1161f rubygems-0.9.1.tgz=a62314cdb174ccc88a27b8924fa79e4a rubygems-0.9.2.tgz=cc525053dd465ab6e33af382166fa808 rubygems-0.9.3.tgz=600940a22ecd79e28e0fd37ad1f1d871 rubygems-0.9.4.tgz=b5680acaa019c80ea44fe87cc2e227da rubygems-0.9.5.tgz=91f7036a724e34cc66dd8d09348733d9 rubygems-1.0.0.tgz=b0b74eac0cbfc5a13f895ab6f803edc1 rubygems-1.0.1.tgz=0d5851084955c327ee1dc9cbd631aa5f rubygems-1.1.0.tgz=85f994904c5b4045f0a859b29d0be717 rubygems-1.1.1.tgz=1a77c5b6b293a3ccd5261dc120641ccc rubygems-1.2.0.tgz=b77a4234360735174d1692e6fc598402 rubygems-1.3.0.tgz=63d3dfc038710eaf532b6a133225115a rubygems-1.3.1.tgz=a04ee6f6897077c5b75f5fd1e134c5a9 rubygems-1.3.2.tgz=6204d0a4c526a1d8fdbce746647b179a rubygems-1.3.3.tgz=0e9697db44d812712350baf28016b4a7 rubygems-1.3.4.tgz=b17b398503253bf36a101c58f02a226f rubygems-1.3.5.tgz=6e317335898e73beab15623cdd5f8cff rubygems-1.3.6.tgz=789ca8e9ad1d4d3fe5f0534fcc038a0d rubygems-1.3.7.tgz=e85cfadd025ff6ab689375adbf344bbe rubygems-1.4.1.tgz=e915dbf79e22249d10c0fcf503a5adda rubygems-1.4.2.tgz=b5badb7c5adda38d9866fa21ae46bbcc rubygems-1.5.0.tgz=49bef7186bf3c0ca6ee7adf4b585bccc rubygems-1.5.1.tgz=47577a5e33c9c6f1e3a56aff7f51d0ff rubygems-1.5.2.tgz=3951f94c09c16c774c8bcebc94fa5374 rubygems-1.5.3.tgz=38bbbdc17aef923fb41f054cf8421116 rubygems-1.6.0.tgz=abd27b5a9002100ff74ddb398a1c9689 rubygems-1.6.1.tgz=a77c64896aaa10d64aaf34f5c1488173 rubygems-1.6.2.tgz=0c95a9869914ba1a45bf71d3b8048420 rubygems-1.8.6.tgz=8e95d0c5b377a003f3d54a49461e81d9 rubygems-1.8.9.tgz=fc399445d693c29778779e5828ee5e90 rubygems-1.8.10.tgz=5b08ee31740c9b0bd36f6c04d537e7d4 rubygems-1.8.23.1.tgz=5259ce3eb7988950fa3aff9051a5de91 rubygems-1.8.23.2.tgz=fb377c7fd387df14a33e529153adc316 rubygems-1.8.23.tgz=178b0ebae78dbb46963c51ad29bb6bd9 rubygems-1.8.24.tgz=3a555b9d579f6a1a1e110628f5110c6b rubygems-1.8.25.tgz=1376a258d43c53750a8df30e67853e10 rubygems-1.8.26.tgz=0ea47f1efd010f4c82b8a51a934f48dc rubygems-1.8.27.tgz=6686ad26735c21d0d6e58b6192c7da5d rubygems-1.8.28.tgz=2df78039f391fb1f71c02c2fc5671c94 rubygems-1.8.29.tgz=a57fec0af33e2e2e1dbb3a68f6cc7269 rubygems-2.0.0.tgz=89ce467eb2d55657e9965a46559acbcf rubygems-2.0.1.tgz=2652ab6f001a873b8933e2ca09505974 rubygems-2.0.2.tgz=3471f140a70bcd32a7495b545cfce790 rubygems-2.0.3.tgz=854691f145cea98b4100e5b0831b73ed rubygems-2.0.4.tgz=3ec32dbe783bab37a87f50758f8efe13 rubygems-2.0.5.tgz=641d82672937d40d664dbc18f49cdcec rubygems-2.0.6.tgz=0633f50db16112bf6c3cf9bfb9ceb9bd rubygems-2.0.7.tgz=9046700f1222712fedfb836fafa08c50 rubygems-2.0.8.tgz=5432214a740c0d13482e43a5328a6518 rubygems-2.0.9.tgz=bc55898247297ffa190223276b1b1bd7 rubygems-2.0.10.tgz=5457ba403cd9a5f4f5fb2ef4a2a1c03e rubygems-2.0.11.tgz=0f28e3fde3348c0f23ceecba73a6cbef rubygems-2.0.12.tgz=99c416517e2de1146d2c6fbb4c4c1441 rubygems-2.0.13.tgz=3970e66a670ddb6d1aade9c7b18033d4 rubygems-2.0.14.tgz=4a7aa0b144e465230ab5d7b59dfd7e8f rubygems-2.1.0.tgz=9a9d242baef5e58fbfe79ec5206cd316 rubygems-2.1.1.tgz=b34d6f4028b69a84123a6b7cb0ac8028 rubygems-2.1.2.tgz=b5c5c4430be60f911014216d41886ef3 rubygems-2.1.3.tgz=ac7bbdfecd49f9304756aa5ebeb51400 rubygems-2.1.4.tgz=aa502b1ea90fbdd14ca9b32634795c2b rubygems-2.1.5.tgz=60564b762d4e186815997653b1c876ab rubygems-2.1.6.tgz=e11237a8f87dbd8c085770551d64a8f8 rubygems-2.1.7.tgz=b721ed7d5fd57ed05f77eb21a3a592ee rubygems-2.1.8.tgz=cc4c84c0482840389a457740e8083ed9 rubygems-2.1.9.tgz=2636bf26c0a9ec889c7bd938887bd9a3 rubygems-2.1.10.tgz=6fa671d7d6605de73d16f529cf7bffb8 rubygems-2.1.11.tgz=b561b7aaa70d387e230688066e46e448 rubygems-2.2.0.rc.1.tgz=f7d80b612339169569f2675155c202f1 rubygems-2.2.0.tgz=3c16e50673adb99d1ce76d5231f764bd rubygems-2.4.8.tgz=dc77b51449dffe5b31776bff826bf559 rubygems-2.6.10.tgz=ab5a0028d2a0653691b29d7463bd0892 rubygems-2.6.11.tgz=8d514b836fcf3ae2c20b4fe8d5cdc3c5 rubygems-2.6.12.tgz=7c454ef88b716c1a123f62b26bb9612b rubygems-2.6.13.tgz=e6f19b51614055d826e431549a12a80b rubygems-2.6.14.tgz=e0a6914ce03b91dfc6d448ebf292f145 rubygems-2.7.0.tgz=771c40015538c0f225c5249e4bc7d441 rubygems-2.7.1.tgz=65646f28f3c36ccaa7f991c17e15b8a9 rubygems-2.7.2.tgz=312a238ed98a61d2b3d165b790b6062b rubygems-2.7.3.tgz=fb3a1927a1842b75677a24f48dd63ddc rubygems-2.7.4.tgz=e9bbf5a4cc9a74293884b91f49603ea0 rubygems-2.7.5.tgz=516a4f219976003feb4b4f797cbc66b0 rubygems-2.7.6.tgz=366cea352c2b1243db726013c3d76fc4 rubygems-2.7.7.tgz=b6721f6ce4af08f68c6f513bbddfe484 rubygems-2.7.8.tgz=a3ed89a34e1ae8f9da0c620a8aa35f12 rubygems-2.7.9.tgz=173272ed55405caf7f858b6981fff526 rubygems-2.7.10.tgz=464754059d8ca01c1121a1233d866e8c rubygems-3.0.0.tgz=3908105894e531f7ad3aceb8b41dcbcd rubygems-3.0.1.tgz=1e8af9b87a67f15841ad2be7d5725a5f rubygems-3.0.2.tgz=d8db1b516ae1e35b8f6f56cb526f879a rubygems-3.0.3.tgz=b7a7dd5f85485334a6cb61b7dac20cff rubygems-3.0.4.tgz=7d0c49077a2d19f48d88567cfa3cf17a rubygems-3.0.5.tgz=4664467d621d719688e4778d147c306a rubygems-3.0.6.tgz=60d84e843b131fb87c8fd67e8fac6470 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=3e9afdf72f153e2f66259fc2b6fca594 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=c30459287aec83548cfcb17340fa73d5 truffleruby-1.0.0-rc3-linux-amd64.tar.gz=138f6814451ce634b0fae3aca5579248 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=94ed54ecb65bea2166a2159431b0362b truffleruby-1.0.0-rc5-linux-amd64.tar.gz=9e5428611e22b093d05afebbe0ccbc2b truffleruby-1.0.0-rc5-macos-amd64.tar.gz=b32a254fed71434c3431fb2effb35c5a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=7f394a8c7fe356b7bd36683c57f74ebd truffleruby-1.0.0-rc6-macos-amd64.tar.gz=f033329d03f1f846d25728c2af9d7524 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=184e98f2d6939f63db4b915943ff60c6 truffleruby-1.0.0-rc7-macos-amd64.tar.gz=d19213b33011f7a55e0f32d25e19184f truffleruby-1.0.0-rc8-linux-amd64.tar.gz=a394167c0331c6d8c1123e1f992e5411 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=dc1bf0fcfdd5837ae0ca56d6d6e5f7b0 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=f6ec25bd532bf0551d35327d1aa4caf9 truffleruby-1.0.0-rc9-macos-amd64.tar.gz=c80a345f9071521cf1961ab75ebc7dd1 truffleruby-1.0.0-rc10-linux-amd64.tar.gz=3a889726efcdf33feb7ef3df13fd5f39 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=bba618b4483b79eebf9f0e7af4078502 truffleruby-1.0.0-rc11-linux-amd64.tar.gz=a25e179ca0be96a1bc737a600729c195 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=bb8d8f5525e1ba86bb039e56291c6c7c truffleruby-1.0.0-rc12-linux-amd64.tar.gz=872774837057489250527bf863192115 truffleruby-1.0.0-rc12-macos-amd64.tar.gz=bb4a64e6c4882fd0c5e412bf9c57720b truffleruby-1.0.0-rc13-linux-amd64.tar.gz=0f36eed2eb36846785fdd4eae24adfa0 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=1bd3087a0f2df4c006b87c9488ada6d4 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=9eddd1aa98c9649e7c01bb10bf28c471 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c93643f1d00b370411310ee7a1dd5330 truffleruby-1.0.0-rc15-linux-amd64.tar.gz=bc7339a6218ea991f2c72ce8759cb6e3 truffleruby-1.0.0-rc15-macos-amd64.tar.gz=1671d08dd2f5026d58b326fd55c9b7de truffleruby-1.0.0-rc16-linux-amd64.tar.gz=5564d17f19b8ee0edb96ab5b1bfbda98 truffleruby-1.0.0-rc16-macos-amd64.tar.gz=61583b529b6a1337398b0966db952d24 truffleruby-19.0.0-linux-amd64.tar.gz=006220c7bde7d0b5c72481133624a83f truffleruby-19.0.0-macos-amd64.tar.gz=9ef7f5a311465d35e54ac6e00ec3d169 truffleruby-19.0.2-linux-amd64.tar.gz=2f7fe574e0695fb6001f4f5282aa2f79 truffleruby-19.0.2-macos-amd64.tar.gz=aa20f76b3eac1f4976a507364201d1ad truffleruby-19.1.0-linux-amd64.tar.gz=71368f8371069017d911528f052b0a55 truffleruby-19.1.0-macos-amd64.tar.gz=7f086adbc89fdfaed35273394ac3ac66 truffleruby-19.1.1-linux-amd64.tar.gz=c1ad4d17bb40e214b124222f3a7c6db6 truffleruby-19.1.1-macos-amd64.tar.gz=f4e76b0612319b4a82480cbd1fc90210 truffleruby-19.2.0-linux-amd64.tar.gz=458ed5fec1a849ef5b00e19b0e25d5e9 truffleruby-19.2.0-macos-amd64.tar.gz=dc324575ad20e3054980835c24ea7161 truffleruby-19.2.0.1-linux-amd64.tar.gz=ad7444145550d89931199159163077c1 truffleruby-19.2.0.1-macos-amd64.tar.gz=b5bcfb0aaded1e2d1763089ab6c9a14d truffleruby-19.2.1-linux-amd64.tar.gz=fc4879d2b0cc22c152a8bf893a72c346 truffleruby-19.2.1-macos-amd64.tar.gz=71448ff3f8f1da086f222751d3f853bc truffleruby-19.3.0-linux-amd64.tar.gz=dd44ac30b5a1ef3a7d61172cda9b30b6 truffleruby-19.3.0-macos-amd64.tar.gz=41daa52f0f308abb77a2b91c1b7e0f3d truffleruby-19.3.0.2-linux-amd64.tar.gz=2db2cb5c29523c9bdb6f59dfa0bd74ce truffleruby-19.3.0.2-macos-amd64.tar.gz=edf1603643938686dce57139aadf7d3c truffleruby-19.3.1-linux-amd64.tar.gz=a14c028351f7a3965bcb56e9b22364de truffleruby-19.3.1-macos-amd64.tar.gz=a8707d0af3eda694ec07a5387d3443fb truffleruby-20.0.0-linux-amd64.tar.gz=b30110ecbc50c4fce402fdf44c45dad5 truffleruby-20.0.0-macos-amd64.tar.gz=0671e5909cefb9a2c12c473fc0110821 truffleruby-20.1.0-linux-amd64.tar.gz=4592b5fc3636d82fc998ab6fe0a43584 truffleruby-20.1.0-macos-amd64.tar.gz=3c0be43db86817c7037d3ff5053d322d truffleruby-20.2.0-linux-amd64.tar.gz=e9859decb24829f9a189d88b3c2e9b79 truffleruby-20.2.0-macos-amd64.tar.gz=49e7ccf8f9e60d6c59b3b07b854466cf truffleruby-20.3.0-linux-amd64.tar.gz=93a20845f7d9d39100761424dfc0a734 truffleruby-20.3.0-macos-amd64.tar.gz=b178b7a94fac58400450417612fe3441 truffleruby-21.0.0-linux-amd64.tar.gz=c03304a505c8699e697acecf5030d95f truffleruby-21.0.0-macos-amd64.tar.gz=019796be37a58ef8e186a625f2ff5d07 truffleruby-21.1.0-linux-amd64.tar.gz=065bfcc48f6925410e0da21e16428b64 truffleruby-21.1.0-macos-amd64.tar.gz=325f6854c10d8a3a114c80da582c469f truffleruby-21.2.0-linux-amd64.tar.gz=0aec44721a040845347f18c1f72ceb75 truffleruby-21.2.0-macos-amd64.tar.gz=76d27715b20902df5779f7a0c00852b1 truffleruby-21.2.0.1-linux-amd64.tar.gz=f68e9b8a9f9cae5efc5ac45a7d9e760d truffleruby-21.2.0.1-macos-amd64.tar.gz=b021e50fc94cab590b49d27f2ea821b0 truffleruby-21.3.0-linux-amd64.tar.gz=359aca79cba4e08f9955d9c6543c2189 truffleruby-21.3.0-macos-amd64.tar.gz=d9e2e2c6fcd3ac16f0c37b0ccffb4f41 truffleruby-22.0.0.2-linux-amd64.tar.gz=324327026e9b2963a8e5fb4ee3f4e216 truffleruby-22.0.0.2-macos-amd64.tar.gz=7029d0e291d498a264d9b413729a3e17 truffleruby-22.1.0-linux-amd64.tar.gz=9329cf507ba8ac529e93156cacc1425d truffleruby-22.1.0-macos-amd64.tar.gz=353242978b46cafc34b05e2c81206096 truffleruby-22.2.0-linux-amd64.tar.gz=5d676377056ae94fe847be721c20405b truffleruby-22.2.0-linux-aarch64.tar.gz=b774f4b7d330842521f1e6e56cb41db5 truffleruby-22.2.0-macos-amd64.tar.gz=e45fdd9a05aec6220a76fb707b0a5ae8 truffleruby-22.2.0-macos-aarch64.tar.gz=ebcbfe056d90d06de4bd0a9d699bad8f truffleruby-22.3.0-linux-amd64.tar.gz=ada8bc5dc52aca8317eaeab04d91e877 truffleruby-22.3.0-linux-aarch64.tar.gz=11493301d5519aa73e8f0e140cefb581 truffleruby-22.3.0-macos-amd64.tar.gz=9e27c677637b69b0460fb0a4569a5cca truffleruby-22.3.0-macos-aarch64.tar.gz=eaa1c9020b521226f8bb48b8c7e5c596 truffleruby-22.3.1-linux-amd64.tar.gz=243d926f038fd2220c03dfbe40ef58c3 truffleruby-22.3.1-linux-aarch64.tar.gz=01487fe680863381489bf2a0a2ac162b truffleruby-22.3.1-macos-amd64.tar.gz=b3d5a777d94856e51034d81076e8ef72 truffleruby-22.3.1-macos-aarch64.tar.gz=320ce75730a5b9f16f111eb7ef5e4e09 truffleruby-23.0.0-preview1-linux-amd64.tar.gz=76c1cb23ee63ba4de93a0c23784bfca9 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=eec3fc74565f08e9468982692f7f9010 truffleruby-23.0.0-preview1-macos-amd64.tar.gz=50e38f3cd548dfe78f397f76ed577bf1 truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=b769bcf9b843d9b2980def1e2139284f truffleruby-23.0.0-linux-amd64.tar.gz=6e1a491406c5dbf42de10fcb3ed7dc1c truffleruby-23.0.0-linux-aarch64.tar.gz=5c3663f64bee707173b2684355a9a42e truffleruby-23.0.0-macos-amd64.tar.gz=515a9a8a0f39ba9399e869cd418ebff5 truffleruby-23.0.0-macos-aarch64.tar.gz=57e5fa52270e692b82c445107fe6b6a6 truffleruby-23.1.0-linux-amd64.tar.gz=f7511c19045e57e72f9b5415bc17c8e8 truffleruby-23.1.0-linux-aarch64.tar.gz=e8a20dd919a2ff77b7cc5457e853d15d truffleruby-23.1.0-macos-amd64.tar.gz=d3b6a3cbc0a230ebae6f3a462a32ddd3 truffleruby-23.1.0-macos-aarch64.tar.gz=ee74fc5d192c2fb8afd0458d2d429c02 truffleruby-23.1.1-linux-amd64.tar.gz=d7e1c040da170aaa36b5f5a1d106d237 truffleruby-23.1.1-linux-aarch64.tar.gz=cf508ba3787be20c03bac690f3bdbac5 truffleruby-23.1.1-macos-amd64.tar.gz=a662a8672871524808500dddef3808c1 truffleruby-23.1.1-macos-aarch64.tar.gz=de543312024993a533e3caa63b396127 truffleruby-23.1.2-linux-amd64.tar.gz=e3e5b01b291d7fea61be2be842c7e8dc truffleruby-23.1.2-linux-aarch64.tar.gz=8fe26f643fa81eec6de3bde7024c858a truffleruby-23.1.2-macos-amd64.tar.gz=83bc41bf699fa847df7e60412bee2823 truffleruby-23.1.2-macos-aarch64.tar.gz=7dbd2e182cfec0cf2d2e37784721903f truffleruby-24.0.0-linux-amd64.tar.gz=202f05706d28faca75d5e3cd0f9bef78 truffleruby-24.0.0-linux-aarch64.tar.gz=4faaf4edde4f6a516246b7c2f4ee80b3 truffleruby-24.0.0-macos-amd64.tar.gz=d07f27e0e29398c6de836b0049105c12 truffleruby-24.0.0-macos-aarch64.tar.gz=10cf176718968893468caba617c02141 truffleruby-24.0.1-linux-amd64.tar.gz=2914bfb81b136cd1fb5736c0a40068e3 truffleruby-24.0.1-linux-aarch64.tar.gz=429e6ada9a95ea23ebb95d01f90eb0f4 truffleruby-24.0.1-macos-amd64.tar.gz=e3aa5ab128f5d169d93f2d6df98c4e77 truffleruby-24.0.1-macos-aarch64.tar.gz=6f81a1afe1b89a40f00c9bd4216ec45d +truffleruby-24.0.2-linux-amd64.tar.gz=1a826ea6323a25becce5940d8e6c4642 +truffleruby-24.0.2-linux-aarch64.tar.gz=45429f35653bd8cbc328eafe81d15e8a +truffleruby-24.0.2-macos-amd64.tar.gz=f68aeb26783d048ae5f78e1c13739747 +truffleruby-24.0.2-macos-aarch64.tar.gz=df05f94696b4f4584a259001a3d4d1d0 yaml-0.1.4.tar.gz=36c852831d02cf90508c29852361d01b zlib-1.2.3.tar.gz=debc62758716a169df9f62e6ab2bc634 zlib-1.2.5.tar.gz=c735eab2d659a96e5a594c9e8541ad63 diff --git a/config/sha512 b/config/sha512 index 0892075..7ba5437 100644 --- a/config/sha512 +++ b/config/sha512 @@ -1223,512 +1223,516 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.2.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-3.0.0-preview1.tar.bz2=aaeeafee545dd1ba1c4df5b7e46e82f7e89e0dcf4fb10677b7e177e66f86e6825e85fa5ae3e74062363883768b3485495a3378f97693d45f675a6e547e989cba https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.0.tar.bz2=3e78b2a73167c3680aebb1ed015c583d4f6c58804d3b272253bee2cef37fd2d1cb3852fd2b408f4af1abca17725d923a1f28d40d2a33896e5cc21c4c6711d7ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.1.tar.bz2=14e7962e180b9ae16607347ba5360b9ec086eb8055b88d2f60b1c9284fafd93fea905aceb441f07d594a34b53647520f9dec38e4e9f6ad3e5a6850750d981a27 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.2.tar.bz2=5b7d88d4405cd45a6a720295cb0b7d3152dd757aac996c8d1a576c6ab2a45cf9ed0b0ac006423791cb038a14153048e96308ecc8ba1e761d4b7671dd6f880d15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.3.tar.bz2=320734a124e26de068457237b5f973278286d7e529e92405c1b856b6e57441b5e76c59d0f519fe43fbdd2c8c48c9dd37dc5094831c0e6a81d804e88888ab6237 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.4.tar.bz2=ca34ccbfc24adc4b2c6c5c0e3b27bd2754c2c5be61e9dfa7b919b4902174e351f45128d887c179c37ccd5163a7f51c213fae96be4d0c356e2d7f96acdd4f164b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.5.tar.bz2=fabb151c29ad7ef7432efd4d51ea1e20180006601617ba896f8b1379555f4088d398e96f7bddd7c9815b266acf5ea94527ef4acfad2446950da6fabc3770f788 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.6.tar.bz2=2728c38987d41169b7110fce2b507b5d3e971d5b043b60c9a3b8d6d385ec2a40d24e464f6cf081844282d6b9fadd4abce670e79f02e4606bdd5aeacd1b57f773 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.7.tar.bz2=f98f4dacd9d8c6c9515ddc2597da8b868c66897577cc5a76819db742f3649881ef5a7f85a880f1e359772b1ab08750dda6fa74ee826938e06b93a9848699b929 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.8.tar.bz2=47fb4b41e60b1e536b3a54e18e9ee92aefee7eef92d49716b46884b2a3d73a02e88e4815df64baedebff80e9e17ac7b0af6e65b406a2c53a4f90421dbc948415 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.9.tar.bz2=c81ad5e16aa18beb7c34eeee68ffa96da243f99ff69cf00932ad5ebe427c1f80e3f7fee31b15ec0d96c1be5c2007dfa6e96c38114f61e958c6b7ecc40270db4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.10.tar.bz2=856210b3eb2bf338c5da2668e830b95d48feb82c1c4407371b18c772df12878703a9eec948a2778acd098bcc8eb402ba6d57b2b935766847f3e652c3dadaf6f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.0.tar.bz2=6ea5e6338319e5d6861d420b10f93b5e6634a9925380c61acfbb258b6609ada76bf2a6b474b53a30b0a81f0dd81cfdd1e610b68698df73f69091f479ad39bc63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.1.tar.bz2=8e8e4ef137b9394ee34b760dbeaf4d23953bec083e5775a423ef6c16b75faf8bdfe99df975ab6b6d762509536b017f3510a9a5e9ab63060208edd4d2d96371eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.2.tar.bz2=756c9ecbe3c9801a0a364143478903318c524f7aba026239a1fb42d7390f74110805543a9ac2a9f8bbbeaee48bc867fd15d400d8bd46576bf4fd417d6136a3b2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.3.tar.bz2=594ff95e33d0f7af7be448a781ac68f895f8344ebb1c9a03898813baa5963024aa84b11baa405fa584070e4195fbfda9b908f1fe171f75f19e5e1d7879bdaaf9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.4.tar.bz2=a9703c6edcfa2ddb87bb73c070d963fc4d59599919865be9b1d93989906698c6f3b9c4fd7f2d597e5d710276555de0b5865676b92aa3aba1f1f41be4052bedc1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.5.tar.bz2=dbd91cccc0a00a1ca7e901d56f9840e62e4f139ff4dbae530169f41897d06523c7e8977138ffc6212e1b60589f3091a4e2f6b6714c0fad22fa65e442b248f61e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.6.tar.bz2=ec967415b5bec95154cd9ff8338a602a6d005fa647afb1e1cff54a0fd4e9c0697b9e952c2dfd8e4b30068a697f5391b9cd165d5d33f3b146fe35f2a8fdf9823c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.7.tar.bz2=b8786ef31db7d950b1309646f81e6a99d56b76223bb8d2d20ae045f09917332a869b14cee1bf235675c7d8eebc6942b5ebd6cf0cbd290ea75d9f9be1475352f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.8.tar.bz2=4d949a715a04cd45f6817b1b26093f7bbf03ca630aaa015972e7d0ca72bae094add18664e1489ebf8ade27c160d2fbcebdb105701d719461af13c4d5fcf2cd22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.9.tar.bz2=ec6cd8bd90ee99aa6470d9d524d89531f96f992efab8a9d6a709a3959ef4c314828276e67b84ed97d415cb3e0c837458d13732dc940c93d4d069d9b881d7f92c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.10.tar.bz2=1f60cae30581e3467c7ec07391de5045f238b61a49661ef0cf76d72ef78d220b7ae70b86b1e72625cf37085b6507fb1dfccfbe5554195f0c6eefaa996e199c16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.0.tar.bz2=343f5dd6703b6b58d61fabefc8a50ce5d02d98c32c8b4e52b8deacc9824369a9f0dc8faff69e90ca7585a194a4d742791765b16c3f5e2417b0f54e0e6f6220b4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.1.tar.bz2=aaf7f9e30b3998b8586764f61d09e434c32aba7479aa79fb6afa71ab11c067384ef3a4b9215a1a3639da807f4f642b9efc62b37b55e989b7ed7d75cedc7cab40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.2.tar.bz2=b834ef95d52abc1f0c224193391bded9b4d2089c694378dd5aa45f8b2b1ea41b1c300445f766841cbb8cdb1114491ffe0095f518e1600746f5f583dd0cff9c1f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.3.tar.bz2=9df5ba9423e0a8af9d825e59f8c69889c70af0f6d67f96708a02d7d61260c83474e2f7b2f240af399911bdfc56850255b4f34554f7013d0417a13bb782403aa4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.4.tar.bz2=1d4b55a6a34249e82880fbacfc1d97a093600005deb982c6b42ccb14bbd7bf1db14e0f6d73bc25f1addd72378850f7edcd63738f2b3cbab569e34e89d563188d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.5.tar.bz2=29a76dbb28d5b63ee0ce64cc2e7d022118350a550d3693b8e38d559bbc4f42fdb6b63af4bcc4ebfffc5c0fbabbf2e18db7228e655de3bb416e344a61737870c7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.6.tar.bz2=122322fb462f8fdcb065e6f9d9968027c320ba9be9ad6fba9011760a7296cec1892a0780d7436903cb7763f5d18cce11860c5c7fce82890eaa139a94d5e89428 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.7.tar.bz2=0c17f52a74b73041c588ed76f73862d179d7b9abf9de61279dc74ba7b7f170179e0db5672a403dcc209b6dec9a865a88a382f5df01f5e6ba4cfe0f66232b4a15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.8.tar.bz2=1a30bbda34fee311762a2f05ac7fbcfb4f373f8840f86b9762b0c07f1cd397e3eb3be83210221384333b625a243c7161ef4f368602a613760391265309e4f304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.0.tar.bz2=edf31b2dd02208c96be25c2f4f7d35e2b122e5d327133545e16038836b848b90f81079be4df47c5493bf4ead1d464fa72a8d0d405bb2509ab0db6335c58ff793 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.1.tar.bz2=91cc7a9cf493c7361f3d507cdbb8e258b7dd710100cca8053b77569c07c04fbc2f72fdceb9fd9a3a5d01f4c423a206da97730c356d017157bc2454041e1f1fd4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.2.tar.bz2=8ea603a27560ddde5fc639b86381a303f886ce80384d8edd0e7bc806f10649760d75a76dd5f2ee445371254e727544ec12df49d7fc8876890b73237f4eecea1c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.3.tar.bz2=c42f24668695be5c291836ae6f39b4366e0357c9bb63cf8be2ad36cefe0c6d19cb921a43159d49d4d062dccc15902ec1698a1a6842d13ccaec45c6cb628da4b7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.4.tar.bz2=3ac89131407faefde80bf2e1bed4baa51c371ab4bffc18c8dcf2624f4d1068c9f933eb66486a2bc7c6c67f674c5bd06747bddfe1f1f9dcd939458a08e1bc6108 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.5.tar.bz2=8ca9a9387b8cb434828fa36e5886bc8a28d70fa46d3e20df60389880477fa2ee54fe63c0c14611a2cb0168ef1149d205640c6003e6a507400ad5fc34fa641bd2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.6.tar.bz2=52795cd7d112ff437adf603f58130ce539209628d2224a685d060d67a07325717981fc6f91736d4abfe014ccc8057bb40a097fcf85f5046aabde0019d08bef16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.7.tar.bz2=bc179a31c746ac6e632ce08f57a8f403d4e463ad72285c0ce008d7fa39b88a22be3a43014c9eb019f6a39d022f9448ef151a8d03e89a4d2e767c4f77684e3750 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.8.tar.bz2=d693e3a800c2200c74b24c207425f41cef206a0b3f20625d18b1590e9891f409d6643ee0e7ab8fdb6e1e85de6fea52c6a307bf8f65324ee0f9ac33306ed1e876 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.9.tar.bz2=4b6cab99f6b7be7705efa5eb6f321b5eeb1d1c6e96d4113bf96b57378aaa4950b39f40ad555f630f17d216d235972f028617ea43c28b1970772ffd16be3d9a67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.10.tar.bz2=40bd90d231fcedbe34ec9963eb59645fdd1036b03056b9b8fa3b56900deb86d94e2a256f90e6aed297288d6797857a3ef9fc27bc6ed05c017b5c8e8ddc465df1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.0.tar.bz2=c1df39ae526da7ebf87510017d7694e6f78c59871baac4e9c5f2d13c22cbecc30925e2783ad93f741110b7c3802e9f25a6c3ff85160b33a4080b0f1fb02f7740 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.1.tar.bz2=930f6f7f654fa14076c84365fbc771d5b09679588c4c478d8f6944770c53fdd37213bdad159fd231efbc079b85ab7ab648b0a97fafd666c38d0e280046c6e2ef https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.2.tar.bz2=cb62ca82d57dfc0e21e532d4b523f49c559c4ed5f3d73adbd9d650bbf23c694d382f3cc25eed6a8630f23e4780db127b4b8b6ecf6fc24b0f6febc820dbc6af3e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.3.tar.bz2=708209a89a18cd99c02392307d2bc63e46bd38c72c8ab0e982b28285f8e006d4ed77e04da3900c880eff01c3350033cd00ffc3be1d3a12c4ee5b263282f0dd05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.4.tar.bz2=c94f5b3129ff41da1b07da1cf742592e9822febf6bcfd0e9eb7145c00b732fc66625056bddc72fe9b631742c70d0e731cc6a9a16a089c7b559ae963b072578eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.5.tar.bz2=b4d20f79eebc5496768fc6adb0735c6a23cffbb39ceaf9c2da42851ff7842dd2318c07877d89564176d206e22b8824d2a3c637b5ef02c5caed0b2b5276581032 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.6.tar.bz2=a09ab93c3d6936d30065236ff2abbd0295988a9359f5a76425cecab47af0ca5b6829530d1708e9ddc9e78d1fbb7c0359b9c7e90227870537d099ccc89c73844b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.7.tar.bz2=f6086c879f8737eaf6eef4461d23270e9e43811186a22f35ed69a8303eb933136e7a690bce2d9e18bcff730725292075e09db0f2384d0e26018b7f2a0df70b32 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.8.tar.bz2=62c631026560ee310a849483f1b48690075477942ce86e0564e92f5ca7834553c435a35a1d6d8dd957c3a7be24c63c32104518995eb3a96e61066a04887bb0d6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.9.tar.bz2=0f10741772d2498167c1eb2aa263292f99748518a4ec03dc19440eb5befa075fa69e68b08a09af6eb2e02e462ff20ab10e4121cfeea7bdc938c04762d81fbc4a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.0.tar.bz2=908132a47bd996f8c76bed54078e71abb154294f97dcba779b4cf0d3b82e31c4635dff89e97d5f6b4f1d797d854c6d020afdf9dc77b10c0e522755fa194a17c3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.1.tar.bz2=39c867ac0af48410c0bc6b01f1ecac00616a59cc07f3f5a3e7cfe8f786b70c7cacab65550dfee777d11b8b7a3ac173bb22c602df370eef6a04b40f8e539025ae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.2.tar.bz2=2f04566f6d778121281bc6ba23ec57ad408049e649b351585bc9a3184848c71873910e159f7fd3909c7372378152f5ed264070aefd45933b97980e80f6df4deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.3.tar.bz2=940375b11c525e3f0bf00e19013eeb886bf85b8d8b66d86d53740170b0ae16b14faa491dbcbec29238f875f84204cb0d52ade17c180d71e129cef5254f338f0c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.4.tar.bz2=1c9d41d7ab7bd69d7e3baa3c4149b1938cc147beb2a63923dadf2fd959732c8cc824e2add0946bcd62f44b0e1d509b80b4796a5929841cda8d28f3a8207b17df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar.bz2=f47443a53e3008cb7b7b7afcbbf1adf44887769e42b3defafceacc1e50e349c9000b98010f853c6b7cafdb54b85b640732a56a8e11ad8e58fedb5fa4724f68d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=fc1c9a08c48ad91edb4afcac5244f386d63940fa906dadaabe02a1eb025375443c8174a6ad1acd50f4583d6c57a88feae86e697ec15c8a25bb49f280b1357783 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=aa611f7c350374d2c5c8652a694022e038cb5a65fde795c43e927067f155d0ccb368b281b1575e679b84cd7ba6042216dc28149e138256faf62dd3060ec0a6a7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=ab04071b90ddb81b68f064fbc9f2bf726729220e4359113556d9b71f3549483f122b796b3b1e4dc8404e6f44a4bdd02e9db2c8066974acf190448c4d5a97dc6b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c769fd3814bf31728b83f2bcdaf0928e6423150609f3db903631f9db68ce0a0f9c87bfce5f93983cd962662148a66cc55f5f42bffc1a1b5a237e6938726629ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=c231f8ecd46760db49796519645bcb5cc9fa1c0582abbc419a2ca81805c81fe8912dc32dcc2c5192ca9ef0d502da8f61ce1ce7ecc87b29edad3a144a8a0c200e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=b41557c83084c8e5bb263aa944499932ce7d84457e4e307f1cffecf62aa44f8543a06299e38fee17ba64f8952048612f9289e24c35acfe2ba02b913c15dc1405 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=001d10af5833a03b42d9a254bde844731d3a796d98ce2efea90fc68e4638c7cc3be31a34fa163d4c5ac18c60e685e5cf2ccf88fac46ae6bc587a48ea35cfb09b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=0a8681afc19372ccd9409bb017967f86c2e6642e083ca47ec904cccc34242040f710392d916a69a327ae6a0bb287d97bc05bbe116a1d93478ae282b32e5fcfab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=e505ff2f00334870d07f4ec9348648b7f3b91dbbad1fddb2f60f7a38572a66a7bf081fc7b386f800d86113aac1ce3cb739c86cf0d6da2bab916a4432ad557c54 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=aee6000ac886cdd4e4044a7b43ab20d54d1e99f6b893af69d0d7e7a202f4ae861f939898580c60996b0bb7c6481eecad69a20acc83c75cc594dfbfde3a22c476 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=86f4e6948eaf2586e018570f09232b94f907766590eb75f00992531ef74676070ac5a2308e121ecc1c23388ece4dbe1ee8a4b2a7ab99ca00a28d6583d6df3d0a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=1bf867b0af84eae4e7996047727fbc7ef459afd3b2ca5885f658a74d62910d00eecddbf0c11b23265c625c26b420421ca5add40079438edca8eacd8b5c0149a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=92a3b217079f9d960cc4fbb5908f7fc7ef71cc3ec8e5e404341e2b8875534c0542167d03b61577776e0b0f049f9ba2e3235842be381b4d484845768adaa6e3f7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=608f0f9eafd72226fd1b39f6c92d0f1c6d3aa7ede096cc390fc4f8bee4326b0937767bc6de84fff536dea48cbf9bdb8ef5598670235e013ccd630b06c5b8fb05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=40cccacc66cc4b7891b01c35375ca913efe008157ae540308b649e14f5753f34f1827861c6e16b500c49ac95e1aa22e1c01444faca5dce71f981452a9e0f1b67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=5a33d600e55f7b8755725d7e2f2102cd76720d524d7b378d85fc21ea8d853166dd97e2e615ab18f9e44122e3404b439dd123f8e23d6ade5328982fe72db2af0b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=37e3a4011b3603807c6e0fd48818b256caf272b3720ee654f38c0ae202cffa21600f9cc751b5335b57905ce67db185b37f548ac9c84d6acfc567f0ef4866635f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=6648c1b6bd962e30e89eacdb6130b1788ccdf6ed05ea13eac32eefc222438a298de8121937262851cf5c4cdcc1a804d5d8bf19667819db6599bfcf79e57b0e17 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=ac690170a6801fd741efb88e67961c0c3d717029b3bd9c6e243074799641c940416fc9cde7b4ba2c56e79551d6cb7fe5f7977649404da0d20d1819d7d3ce0bd3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=e6edfed2dd9d6649c47b1dc1b102f933f76a148e6dd8441add2316073dd255cac851e972366e4821fcd665e55b375fac757d189b7552baaa0b49e82349c71b77 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=69c4895076690037199f2a9b98e622f6b5e3c23ea02de79bcade6193da2b1b88ed0c28006059f4ecc502298442275e7e7324232de04a2f0ce430665057410a05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=175777563303c6d6a04393938ffa7e36e0bc6db33f7d2cf1d42ec852b41ea26dd7d50569eee4cb00497e6bceae95592365ea6718a35451e5c929d8a085aa9649 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=b668f0cd853615fec38253b264115ef0fedd21a7879a663ba844f4c3fa8b87e5ccd8adffbaa12ffa3aa16b108a2a439cecf827e7d8e19ec8041d46e758abc391 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=2039b1fcf55cca35ed3c8446eea45819368016ec1a05a5fd4c6a761b54f5cd56cb3301d5d2674af1ff75bda41eba41b7156e71ac48b88ca7a6474f0e944efd89 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=b4bb324a53c316da488c5f60803933eade9ad5c59a6d58e76787d2dd89dc2d2f18016d2ac4ab0853a40976b4beab70864a9c2d23de194bcd63ad089b2159fa7a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=3a9b5868d707d6a4580a44ab7504cb46a2713f78918142b185f0d62c5b7e0dfebc1ff551b2a52e9726befb70abbde867d2802345a01fd3e4568b9f58ac83c168 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=39007e736b28ca599ea244bf4e54b52e86597c950c0ebd8f1696a02c8eef575a734d089b52c7013d00c02aeb261dd7e2facb45f24b34c75c4bbf14cb8bdc3ae2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=0fc4e39f7382c29fa2119119a78040c611fc8298bd4765025599d3018775cb2bb28f51d38efd4306e9f04eeea20e7c2365f2fbba1233e0494a8258c3c184278a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=5dfbcefa70f5b81887d34e776713bb9c6f7bcecbda8f1c9561daa3e235c725417ab0a930f594303723f226d36306e6a73f228abfa3533280659ab387708182da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=00936db899bca33dfa8d0e6ffd4bd6b0453ad5823a450e50e3a055ea696dcf94b317357732e26208a6f34224c33a8b4a6130e5613262d62381179a52cc8f3a1d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=15b816d190fd58382a2f6f6e087f358b54003f186462abf59dbef545af9044a2b9c65576119185adc6bfd9ebcdb49f03a2a268eed4fb0f0d37aa35fa18adc1fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=3a481c35668be459688a66e4e480e11b4e58c13aecc3751da9de8a3e3282bb4a152128528a804742aa0b4380eb537b666a2b29fd79be0d6968c4ff1fa428eb7b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=c604871b39f396c539c52dd4849d1d42f37530003601f60162860efc777c85e7e1a1ee88a77cfc9ca8ca20f0448a5dde4f39cbdae67470d8d2d283d6fbbf0239 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=12042b5c30179da275fcb6155142ff2787e86cf577caef44b7c4d8175ac671cd461814e9a19f4c9b1e78bbdf041fdd06bd463aa972e194caa91e80778a56bce0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=2bf1c13616b2e255b8c269bcb2f979a45009c079ffdcb10a13e238e5d13b0978e8a974bdc1e7bf8519e15264ed5f577cc8f85a5861b3ea3a4589eb78138a3f2f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=2e7876c8c8a1f4e3cd1913023c564d9e74972ce427e85765bbe9ddf237285d7b96017c1ed17868eb912509881e05aaf96e4a6b353a69989e61c733b346511715 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=06de4f6f2761bc58d94659f826c7c86be50192b7dfdb5c8b6710b384a50299ad161309e2a8c333fa5249d0e7112f74dd0c0b0faa2950a6e74bdba68833f68702 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=597374487d196abdfb389c79d7d09b81026fe3e8043f8811497646eaf47bfa432cfb96e2af9be1a35ad2d05f2f5c800afa3f9e5adb0ea2b2d31812d219232a00 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=ba56050ce3fdbb9117c6c9e767f818ce3d467030713b7693ebb039f6888bd5d7e5f7b1986ed117414037e56e550707c3625a88bfd5d00d7319d0c7ad642fc811 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=395facf2f7a15eecc94e554a60d87c269ba70c5063b24b7bc504f579c0d12a7d858eb0b98c502016ff8bf02aaf11ef765e2291b542759fc96affa186206ffe4f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=d1d527b2e95e3a16f521214c5352bcb379b946e8be1a943da872aff0ab4b8edd93a507d693abd7a8ef1cd5ea1ee6e6bf1f838683f5a447a6cb7992de61f744ad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=e47a50392c4f3ee13a565103e0c5f9474ba0a8f5ff60fc9fe7d290b7f5f9a9ddec962fcbb103a8d3b9c7765a28ba59237975f90aa3637a06a128802ede28b3da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=77fdbe62d1694732a7307c29b4f45d0dcab7e8a729f04f45b216345336c5820715bf3f8f7cab52175c4ca1a431d867c7feef7d802dec61c2cffa4abfa8746e90 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=24da0cfc93ac536c505dfaf2dbddc7b312a3cc5c72a9f47e28b3bba760a53b584422b73da8546ca01cc44d3906a31eed7f27a3dfc0bb574f01f9c08f7c589d20 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=aee8267c4855e95a55b7ab858ca6359d635049743b8e38d34ad1430522a0cd746cd572e77884f7e10af14a731ccd8ebb9cad6ea035b0fca4ae534913a38f43f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=ba3e66bd3dde28e7193b90c44194cf7732d294e592321c482deb3b31ddd9655630f5b04aa89a43eb9d1bc222da10884e9da332bc9da78e9e1b655300db52a444 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1df8a2ad9256985b4ffb3da5b545af4160ccebdd8265711d1b642cd2285a004a42cc2ea51ce3ee78854e599f5196c66448b8e0b043846ef6e6bf992828aefb6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=cc460b3d17d460abec27d77f734e1c1e7a649769c3374f02d32a4ad00f989ff3150dab926a203b209c92475100667dd524774fc37633d71f98737ea2d8868968 jruby-bin-1.7.0.tar.gz=1e466a3f8d52b553c9def09827fda4b8433576b0262c40ee505602754521a00defd821d5ead5052be52baf281c6cb080fd03a8b15c628a0ee67b4e417633e5e2 jruby-bin-1.7.1.tar.gz=ef28381ca30664cf450f9d3df9927530db771d30e86ebcf535af38e1a7e26724ae2bcfe8487cd2eb349bf609a733a25528aae14beab4d13d298b5604ac7353cc jruby-bin-1.7.2.tar.gz=8155c81eea6743951db7383bd9f6b1750614927c9c0b25a6574f6d64898bb3ada2f626c6e0df6c5486561a03cc7d472fc12fe804ce66a3972d2fe02e3f407100 jruby-bin-1.7.3.tar.gz=1d19be25bf4a7dbb0edad71008704377893d3967aa4204a0d59d6883aa04462ef6798c64d0c0fdd3f5129c16ccb42e8507f3fef38ed56054bf6e689de745935a jruby-bin-1.7.4.tar.gz=d7c0ee0316c50ae5413757e956c18ca68e9d99a25cf85be978da0787c13b8978d4ff2712a3effa564cfdf07144be4a56a0cb8acc794a01f43264fe8baeb125e5 jruby-bin-1.7.5.tar.gz=a4984591a3809330b93f4ce79fd1b9c24360f89d88a03bbc76351be623893c4bfc6441375bbea452ba4f24ca8b9357e03ac938fd6c065b3e2348c0f896b22a1b jruby-bin-1.7.6.tar.gz=98600a2d46bfce14111c7eebc62716352a4b685043afdd696b8fe51c6b205eb9569fc2860423a653b842b173198c76c59767156aa48e0d23482dff3358d884f3 jruby-bin-1.7.7.tar.gz=71da2e72c65899216fa15ec568b51aa7004e2ed7dff99ca376b332d3692c83a674c688dc21ee04d177a3961a2bb3973714509d88cc14d0ba9f79c864c6258a06 jruby-bin-1.7.8.tar.gz=42d54243653ec260abdafecce1143161be63fcc38a80f71ab70fcece4bf91545a2b12ed2319f9fd6f6b41916c398a9a8e89e7f0389f59da56f2739665e74522d jruby-bin-1.7.9.tar.gz=f519f53b1d9f57cfe28982ad70b892dc6fc20fe6601d98d65a1dca9f617a0eb8fff74d0fd82ddb858fe105d05ca7c7bbf3a987677ae0363caa2981bea358c096 jruby-bin-1.7.10.tar.gz=160b701f2f500dfab64beb635e5c4dc57760dd422d0fffe8d3cf8d84ee6ea17a877ef77a0087b4888ea9db64ce7750de01a73a51530aa6666a2efdcdccdb89e0 jruby-bin-1.7.11.tar.gz=a53b0fa327b98344cb4a8aad1ba537ddacb709a0e173b1e32656de8a610cb9896e9a4554d54d0d01d2361f8ff1539a0e2ee01308f670df2004225231b704065c jruby-bin-1.7.12.tar.gz=bf2be8a37b53d38c75712a6331f96b999fa6b0e87f453fac7b9d11eeb1b66098ea0778172f1a6a84345e1881f05d63012e28d4068a0bd31122bf2473bbdae5bf jruby-bin-1.7.14.tar.gz=f14e658da7f2abd469edcfd657dbc2505d6a2c04ba1e5f65f2164256f54625da154b338bd3d286ea6a18da61d04d90a61ad6b012bd9461182753483efcd0f603 jruby-bin-1.7.16.tar.gz=47ca714c3211c95c84e9c80ae4fbc894bfd7ee03e1bcc494cb48d839f8538db4aaca7029a4913b8d323e7227450e4e41bb943dc670f43df8a654eb127012033f jruby-bin-1.7.16.1.tar.gz=9bacdf6e212d08e46ac2c49183c8611873f6ecebfcb0e928b5110bdebfeb8751ac087cf8aba09afb9a8ccb58e59f3c3e06a241c1db445835d7a875b0c3deb4b5 jruby-bin-1.7.16.2.tar.gz=349283bb5344a62f282021ce39648a0c8d0b41ecf8f800ab5099b5ce161ff771e688f205a918324cef6ba0ded6b3694b8dd83f46f56be584202b8fee496b37e7 jruby-bin-1.7.17.tar.gz=a3b171df08e789f91c260c5a57ec842a5d62cc8d6b462b772905ec5284e394ed7b78f5b327ca1ff20f5deba8371a86cb03fade75b5f34f233df47bc3f08d469e jruby-bin-1.7.18.tar.gz=b259da2967e246a387687117eb13e8986b57de6ca8e570d6f8f8f07b8097db6e01cea8b0ec3a860b091fde14de535260dc6dbfc638f9e9b49d348f726e969642 jruby-bin-1.7.19.tar.gz=da91efcd51cfc833666f8b7cf949d3b5c41cd8da99ae1559c88a7358fb48df1245c66702c7cf23e7ca012cbefae98787c200352976d4e8aa3e9120057a89dc8c jruby-bin-1.7.20.tar.gz=77131afe46e72c406ab4250e43cd1f98e59a8351c494044ac89f97a7c9a81492f8a8194541055fcf1fc59569e99a577fd6a36a9f6a3952a99f399d4970e80e69 jruby-bin-1.7.21.tar.gz=111883df12a60d06e9924d33057ba72094fcffd44f7e3954d6c6d2190f8e6442804e739cc525a9e75159251a8dc1cc487570792b1b4f5773f4d0082f0eb360d0 jruby-bin-1.7.22.tar.gz=6ed6cbe7b81a8aee60906fdf965bc217b3db794698e2cb37559f36ac119a0cd2a1ae1a7a766535ab491d647e8b4e6b2f63e62011714b757f8691455831ef365c jruby-bin-1.7.23.tar.gz=6f4b97c4e08274f96195deb176e3126e8d047c981cb655cded9665624033fb905d60d5586704a3f91b2ca06d7e78918d9d31131c93e4c90c75a38182e309ac9c jruby-bin-1.7.25.tar.gz=a89ab8d539bff346ad56d345b6a205f74890b9aafe82a2c82e7c19cfc30b77fefde1003e8bd7ed15f141151bc0fd21946203219691383a64f2234fa586e1905b jruby-bin-1.7.26.tar.gz=feee03a50900e459d9ed7d2096056bef126c4551c02c335c4132e2307411f3fc4fd435e8fe44411184773c80f0630a7812b3d798b7e9be2818e1b5a712bc6995 jruby-bin-1.7.27.tar.gz=656f4313fbfe5db8d2d4fc2087a012c91efef848394c48aeaa0041e9a19b87ab74686702955413d2c51d6b4b11c758ba0555b30fdc42e86d66094411324139b6 jruby-bin-9.0.0.0.pre1.tar.gz=988c6a058336ab9ac8b27c7501ceccf3940837f9b9d3ed32a466b891bda1bc13f76199f5bc3baaa1240dd0dfdaee40775f721294d667f3b8b5bb9ac8206e2e83 jruby-bin-9.0.0.0.pre2.tar.gz=f207f9477a12d7ffacd92b1bb5154ba8101dda8f7b2eeadd4fa83eadec9a75727bc1831733d27fde63ba63322ec491201dd23cc6e2c2b5a4b8381a8fbe49e8f2 jruby-bin-9.0.0.0.tar.gz=33308a983533c129cffbf521bdb8c1996a10a6159a4a436248e645bda682c5a5395ac1aa767e971ae679c935f3b61573cb22d5b8c64af026752db3411a6356e1 jruby-bin-9.0.1.0.tar.gz=277dca63f3faad01c98a793f06bb4d558a970a10a66a38482e8372b25f4cf4fea85f1d5624fce7fb5b4310c42ea8aa360f24f6b9b6ef4bb0ebcb036736009ccd jruby-bin-9.0.3.0.tar.gz=d82f83e20ef17a0675843e306ec5e90993e5952cf5a53957a91e369d2c90d92306aa515b1e135c04b45844a81a0f4ae34289b966821ae5f46ea51fe012627352 jruby-bin-9.0.4.0.tar.gz=b9cd4f4a00da8152740b468914046633d5341b10aa26b0ac56835d5896531030c8afbc4c965b30c36923555ed5b145de8ada69e05ca38b01d43621914a331335 jruby-bin-9.0.5.0.tar.gz=7c61cf010fbae571cd6ba334aefcfd917f6de8224d014026297b840d0b890523e94b2fea20f154c82c25c4f9d5992b9481fb569646a7023e5ddb42db1baf5f34 jruby-bin-9.1.0.0.tar.gz=1ffdd352823436086ebfd37c03401a1f3a9cb8a8c5f75476af1f704c4764396a20f49ddb7fb7f0911e1608f7c88a332944330b8849d13e6badb170efb736dbe2 jruby-bin-9.1.1.0.tar.gz=475acda79ab8c54467ae70094aa86842959200127c1e92709f0a731014c469d3e52e4c48770b64ab1bf31e1b710ac4570b421077c85c08071c1356bee55a2900 jruby-bin-9.1.2.0.tar.gz=cc6b1e1a2907c128dd04edf9da11933a54bbed5e861ab6f0208505bca5aa2aa9d9acdd04bfde65824346fbb435584081fc8ec2e2e9a3aeea1bef8047915e0c61 jruby-bin-9.1.3.0.tar.gz=88339f4cc05f7f0ded21f100755156ade33f19873f49c0c64110916da8c0b059df541a77bb36e54fda9cebf042591450d2d6312ffaa879df926870806985e774 jruby-bin-9.1.4.0.tar.gz=ebe0e9d67cb91721d589461e93e26338e3e3a1f0f98de53f25906684140b49d989ca6d3704cd3f6cbf650f30aed9a3989f117bb4732c83ed870364ce4c31fa36 jruby-bin-9.1.5.0.tar.gz=f2a11e6fc88d37fc1b640ea8c9feda4607bea6da5e6520f61ff85e8d6a51543612ae267b45c033214f8fd0e2283153da02001cbc9fd90be4761b7544e1413b9f jruby-bin-9.1.6.0.tar.gz=ca59d199a0fe791efc57f05801ae26c6cf6402bdc0f1a795250b1a2dda39b233ed24c8cb005016e79727f4bcdceb1bad726a60c16935e76fc87e5d1a078fb5bd jruby-bin-9.1.7.0.tar.gz=f2569d4858a33280e90d984aac53662c25ef057ef9903bace6a2214aa2e6a537c9bc8fc76b08f846b3093cc4a12c70c98d725576a4ac771e640b95cfe3697c7d jruby-bin-9.1.8.0.tar.gz=dba3b41b65ff27dbaa203a5cfc78ac7cb9d952c52b452bc774f593383e4ef9389c0bc37549b798f48b63497ce7007b1ac2d2fa252d9a7c3e52146b4ae192ee49 jruby-bin-9.1.9.0.tar.gz=f8f6419be34aeb7b7577e946a62a094f5921d7319b51876c5e07322d99249b3a9f29fea4ee5c2b8184dfccbd5da8f8262fa97f5e93874887f3355dabfccfa0df jruby-bin-9.1.10.0.tar.gz=857783bb45fc5d62148bd687b43af9ce776099dfea75ec4b5d947a46ed270568bceba2a630a3277746a3a9c1fd3111caa9a4cd13493ea8824c1ee190e6d2abf1 jruby-bin-9.1.11.0.tar.gz=718ed3f5a39cd9f9b45c4e11ba44cd32e035f8d9f26fe59230dbaecb71adfb2513ee1bb86ff72e075b02f20151f3f30e53bfa30b6c4b011a93a138d4f479fbf7 jruby-bin-9.1.12.0.tar.gz=8a9f88d517d8002be570aa95aebb0063eb62a47efee191155f9fa4f045854910f78431514f857c438167ec42f4241faf74d4a8d236ae36feae58732312e4bbed jruby-bin-9.1.13.0.tar.gz=ef88f613ada2665d4f63b2e2f15594739de8ba501406e76de417821f44847b0e258524687b0ae0cf5b737520aa4dd9bb59d80a4b89a81408cda638f28bebbead jruby-bin-9.1.14.0.tar.gz=d15ae0c60421951b830524acd21a0f2a56f480e983b148a2722cd36afed8e99a41f518eb8a679bfa2cf87f08637e81c24ea88be40c0a5390e081322f1fc6f8da jruby-bin-9.1.15.0.tar.gz=74a411f42149510180706b2c70610caeea357f6fc3d2a12ff0227586862e6a9dedf09e752596d6c486af7a310a07241f311a1dfc73ead229d7225c09d4508605 jruby-bin-9.1.16.0.tar.gz=94e88dbeb2545250ba5bef50bbe0baa6f3851e9817f67f879ffaab50048bb0d41cd7a0e87ac9ef547e37c2b82cf1d7aae6b8caa43d03c6a9931b8ce0ad4b2afe jruby-bin-9.1.17.0.tar.gz=4c06b9674e20f48d3815b4084bb38e6994670eac804fbc56d717cde7abdb74d57e0ac17b7fa0b500318de405c187c3eaa01441c22621139dfdbeef62a5467a63 jruby-bin-9.2.0.0.tar.gz=79f5e8674089d2f6b260e033e3ceb4571f54cb5cedbca74ba76b52dd7cb30085a8c6c2676e9be57a8ecd9e962fbcb3682a8de38e1cdde2dc6e05bd179556edc3 jruby-bin-9.2.1.0.tar.gz=185e67da4964c9cf1d9142446efa77605e77894444bdc96bbd10fee22637f197aea9fbb0f60d3a42540e5f383d5b06fcf095d572f432544a40c2145deec81926 jruby-bin-9.2.2.0.tar.gz=85e16e38748b6ec5f237eabc8a17eb225c484c20f7ab6728f2a0f650061bc50c8a9601c04b0128e73c410ffe84dacd2b8bb37167aae5595728aa25e88c4c9b92 jruby-bin-9.2.3.0.tar.gz=97ee210157c451567946b38d33380051f82e7e8cb5f7649fffe050542ff6cd627e2c42f4c46739d1f0995c87e7338865b18844741285bf3f72364aa3c841c54c jruby-bin-9.2.4.0.tar.gz=9fe1506e862a17e261cf726e1bb70a9f612a6d7beda919a01405899660d1f4b79ee690ddf9aeed1d2b2f3cbd698be8df4f98d3815352772cc680e9646d721761 jruby-bin-9.2.4.1.tar.gz=2c41e7884cc54819da17ea9b2b773d05d3240d53a2ecb57ba430ab61308066eeb1bfbe6627e6c261f5f27ab5df7f5972656366a04a191a81b0379f620b74512d jruby-bin-9.2.5.0.tar.gz=d548eba8de420c80062021f5b6e6b203f8b7b36e3f11409919eeab87a028a18f9346f27d2cd8b1f33419adcc83fc804a36dbc3cee169ef1d93383b8f5835ba2c jruby-bin-9.2.6.0.tar.gz=20c7897da0d2b585616ea5848998fe8770517e24e16955797db2e5bff4622c348082628d304240a71a97e9551ef7aa63271cfb728eb5fb7e7d19bb48aff20d4c jruby-bin-9.2.7.0.tar.gz=8e71e27fdb149cb7470fb736e7ce858719d13ce6ff8a1e9ab1c1dc71fcc068fb601946bb28ed2feee3670b5e6ebfa8a655a6618d1badfc3763897912c41b1c82 jruby-bin-9.2.8.0.tar.gz=7f71fb5bc8c6c31b31b4c0430ae091871b21aa345777662f264c728c60212365dadb63a7a4b2fff31adbbf8a2e7cfa678d47486e28840f57b86cd45fe9354013 jruby-bin-9.2.9.0.tar.gz=7df33150858ddff586b3bd86120d4bdd80546c7f8e62245f61facbaa5527400a1aebbb33e4a1a8af52066487e3d29760eb96c7ecb9875eb9bc954ccbcb37a4d2 jruby-bin-9.2.10.0.tar.gz=f4ca024602ddab37154f5547132accb26e7c0ac2e913ebe1b5c7806727eb148249e76031ed4623ab53814beb8fb3f472e386f44d57adb5d2b3b00fb2773c8a63 jruby-bin-9.2.11.0.tar.gz=f736a9e139694c84d0a5ea42f36b972adc82c9be13e0b80bd61045c026e4fe31ccdd4be3dd3e94781c846f356e026465e41716fd2744ded2ab0ca39cd33bb46b jruby-bin-9.2.11.1.tar.gz=2f758fabf5910ea01e9c04c7600d9c666f2df3db8622f3eeb3534578075ce65013c42fe9ea6f95d4499945f795e6d566eed2b1545e149af823eb1d29167a1223 jruby-bin-9.2.12.0.tar.gz=1dbc5bb3814a6590f5e8ecf4889152684b5625fe81794a2c4064d598614a85129256002dcd239e294f209b98e3abaf9bfe70467fff48ef66b1531162dc6c3be6 jruby-bin-9.2.13.0.tar.gz=2cba016ad6a376252083122d51335610209d860c41de1902f5cd49ffc2f6b49c350b68df8fc4113c221255af4db7ec07980267b9888369811faf66db369e757c jruby-bin-9.2.14.0.tar.gz=ee3d17e875dd197f92744c7cba62320bfd3f166bbb2ca117f2910780a7c571779c0940e024351e9d4685ee9781dd207e773ace57a4a8a7011869c8b6209513c5 jruby-bin-9.2.15.0.tar.gz=678abfa7654b53b049e4103ae3647775d970c5a7192539378957c1731a3037c852e03f00a496c022c1c438d159a93be6e6f04d7563c811aeb7d261ced643d9e5 jruby-bin-9.2.16.0.tar.gz=f77e314d578a980071bddc25c65659d62e0644927ebc4e7d7d4523935b6c893e611d47ae7478a26ce7acff38b1525eac11b4a329188cdf76aeb07fab667d99d4 jruby-bin-9.2.17.0.tar.gz=e90ac1890a54a892b13adbbeab3cc5242889ff2a4b6cae535c0a3172072bda6ab01b960705ba608d6d7ebe9de5984d8384dbbb6399ab3b2e53a9e347e7849e1b jruby-bin-9.2.18.0.tar.gz=c5816ee0f7b0f559dac70ffc5277f85ae9c41ad176e43d277f820c2727387baba93998b915cadf9708fa78b5cdf3911a9c39c2ebb61a77a38dcff359f7d88a73 jruby-bin-9.2.19.0.tar.gz=3740674035e27cf7961b3570ad65536c30faab1c9a71a42a696b173379e79647411d57e0d1d06b5f9c9a970eb02a595a559191af08a083773dc4601dcfd07491 jruby-bin-9.2.20.0.tar.gz=1961f52f41e7eb9f50b0f382c8166ad988a6b3c0311c342658edb34486b073ed45c1ca5731aa319196db02cec208a4dfc86aa6b436959b80243bfa4f62629735 jruby-bin-9.2.20.1.tar.gz=598e28cbad682fbb30a9a9a9f708e6e1f4b7903300de2477e88a646c42ae594df5b768ff5379ed447f1a7168e93dbe35cc2d5db7087cb2228233a05bc4687908 jruby-bin-9.2.21.0.tar.gz=8f6cfc43ce3ebbd69781da71c5a70746ada090162bf6cb709dca41a6d968e6072ae62f657cb0bd471c648ff294044bfec3079828bdc410bd64758f76a93c3214 jruby-bin-9.3.0.0.tar.gz=06331ce32ee88aaad5e5bc0668d164ec3263f8ef3ed34bb32981b76ca33f8c817e3632550775706481094159f4feb43916ad1f9ec0f0775ad756b16cb7bd9417 jruby-bin-9.3.1.0.tar.gz=bfcbe6dc5ba736fc944af15eb387b545f6c5b987a7db88045913a02a1d30726c5d1255c4dd609aa7c2d2823ddf9d8360223b0575c93302aeef4c54eb37af9abe jruby-bin-9.3.2.0.tar.gz=b1777bfdf1964d7e527bb3dfc47b4b9e8c589cdb301c38ee8ee988bd0c392ca978ee3c1c24e4b5a65bdecff67d1bd96e2d8645e58ff7e891e3622097ea29e925 jruby-bin-9.3.3.0.tar.gz=648e70de0bda710e2dc70fd03c3dc6b798dd4c7b92584c54306c426f59ebe1168a595c4cf94328f6b44674f5507bee354efdb1cd73060b73b0171a3605051c9c jruby-bin-9.3.4.0.tar.gz=6b09decf412a76578179cefaabf01cc8740f70ab5324954e6aa43b1d8b81c37db7a99b1f94d6ced2b459f1c44c3086892b9a2c06b3ea838baf75a8fd5e0447c8 jruby-bin-9.3.6.0.tar.gz=f730522eff27462192808773cbd071cdaefae11f20bc808a8f22515a33960a730f3c87ec727ddfd9dc9b6b35acffeb50c31d75a4794a3f8daa75e1963ebd246b jruby-bin-9.3.7.0.tar.gz=265051c68d3b9dcce708b75f8267303ae84008859c88d7fe4f282395366c3f52fcf1bb161210555c0fd0a2427ff5a728ea9e337feea3d9b69559cadb2f300aed jruby-bin-9.3.8.0.tar.gz=12e795b7e1f14141bde68f52a29b0aa9f1db20515240dce83cffec351cefd25959579e01059d42dc8c8e4280493a70819d9beb1e0523e9bc10a72af16d9abd60 jruby-bin-9.3.9.0.tar.gz=f0b31d98f39a2bd4436764db0b0139433d6868bce7c30c5d6e3552616ba879c93478c499f3e4c884fd3728502916aed5c9ca1be150ae3e80ff47b36710c3f6df jruby-bin-9.3.10.0.tar.gz=aa36fd4c5de7b17f5fdcca1d1314d309e7b4470d46822c45baefbc0ad5180e5530a7054502b97b414352af485e7936659390690dc6198512ba6733d8f8d503ed jruby-bin-9.3.11.0.tar.gz=d9fd90bc64028dcc45687d2be51414b1561add20d20d1392525f4434cc684d505427f5e56827afffbbb0ce2c9cd7c1ef846b0bffa737679afb95d4c160232da5 jruby-bin-9.3.13.0.tar.gz=eb24641fb7a6b9d2039ec953388053e7333b306056f9a5bf745331b04cfc05dc4211a9b7780ce88bcee9184b8cbb219b574574d308bc2720547c116f4d4721dc jruby-bin-9.3.14.0.tar.gz=d9b02fc35133f71140cc7d891061f8190b61b3d1065f00092a2aa9a4beaf7d67297dfb0529691bd24d29607d698f39c62af9018e8307c1e6624c3104a61bb74c jruby-bin-9.3.15.0.tar.gz=e41521ebf453d6b6a9de937556fcaa972c60268285d0af4a41bfb95aad790eb47dd507e182958ca6f4889a0e03eedee0fa4bbc58e3d0407a2b6ba64a8b87a21a jruby-bin-9.4.0.0.tar.gz=fb72f8e087ea08653fa4e4225fa26694c3ff97c41f3deb8731cdb6571c6c9b21e0d8f69e2096f82ee81e2b5c283f912e2a5228c15873dbbd56de96a2ba35d59b jruby-bin-9.4.1.0.tar.gz=46003ef6192718a6372b79ebc89bee37957686224a08fe2f9a6be3c9e479784409d0269f0885c4d1f1351585c5d2cd31fd2ad45014e425bcaf2d44d66b98d299 jruby-bin-9.4.2.0.tar.gz=77e484ab73ece93e7d7283f876f0d541607c6080eee696b702b485be9794cf7e6d464f250a6d75387ee69aef3ba40ccf4f6d9fcfe324c5bc7a14376177ea2bb8 jruby-bin-9.4.3.0.tar.gz=2361f4bb2989f5951b0d3e9d49bf31e6805ce39bdc987ad3c6934daa98ab7c8e69763d40d7412ccef8adbbc198e52f4b83d00998ee12ac43fbfc6b5d88930c15 jruby-bin-9.4.4.0.tar.gz=e89dff0cc5b4a948daa95196d4bd4fee0c6901bb4aa023ae35b3679d9739967c2a74e8a4388b1835465dd39f1332a1f321b450b40c54ad2b81802645b4a31ca4 jruby-bin-9.4.5.0.tar.gz=06db948e5fa6f8559abd3b6891c7b4867b9f54b7bddf0e36d6f20cc1bfb394cdba8ea920213e545c927d1cb865e083cb1089c8e925bc608e0f8784a79b5d330f jruby-bin-9.4.6.0.tar.gz=ebdc671622baf3c42a988d6ebe24af6bfefa1f717f050f602a1b35909a3220316329aad080ee2cd9cd330da9428f8d736502573efa64bd70f093ccc123ab32b0 jruby-bin-9.4.7.0.tar.gz=4fc8b12deba7b8a53a523a41a31c248895adc9bd54a62664a27107e7205369af39c0eaa508a9a70611c3bb845524d8c5f39451c09b8b9cd87059ae15139703b9 jruby-bin-9.4.8.0.tar.gz=0d65fdfd63e2049ab3b8ccbcb4caaaab20aea5a63276aeb20ed4092191a8814f144425dd0d926aeed757ad6b4daa308a98fafe1bbd1647f3db44368066f61868 MagLev-1.0.0.tar.gz=8da29f16e08f657b0d2f147b64f2202ac027db26f85da8dec29f926898f178ac8d11260fd6c0a539a9b9b15eb92d8c7ced86a8cab1861ae7f8a33b6fa468e5cb MagLev-1.1beta.tar.gz=7122af70530e76b9a4cee93244d6872b49616e78086bc8a5db0f32d2b846560b352c4831addbbecc72e0e3158bd52f26c2da14f5d83a515ead30efe7c538b62e MagLev-1.1beta2.tar.gz=43b4b831791074f6e8c12f6fbe6ccec2bd0446dae029d3e6717cde1e7adca8462a2d7dc49c14112cb568b5b3adc8cd051767044b41d57ae51f38aca035ff8597 MagLev-1.1RC1.tar.gz=942c1cf43f1a911230aa43bbac1cea2e2e61b5e19af755e29a6a71139d66d304efcc519072dcc3487a2da7462847530564aff4a2159d675e3270cc938a297dd9 MagLev-1.2Alpha.tar.gz=2672e3e5425df2d2ecc49f85df5845fdb083f74a7b242cac75e33d0c1837079ced8ec8b273807326d08e7bf6f95cb4f1d8351f37af8bb38c4150e6292fc553dc MagLev-1.2Alpha2.tar.gz=4492ed58b6c2b852502a2195836f1db5a80f0619467e4d7b44981a993a5e9a9ea5c9fecf1198de1891583e334bbc3c3a86648ce8afea1137ae9c73a4d76b0f4a MagLev-1.2Alpha3.tar.gz=6290895b22efb986ffd7305b7d651f20a051ab6869d51310bf891fa3eed48526a8617b69f72793e8ac0b57f99bc5de75f34235ef94de967bbdcd51857efc2af6 MagLev-1.2Alpha4.tar.gz=a621e9c615ffec503910540db770754f29bab1646d8e67650d5b82413bd551adfb0bbbb8155407ccb6f80933bfe8ae1bf9b688eb0defbc88710308bde1325683 mruby-1.0.0.tar.gz=4a0f2927da3401df23d5c19ba566995f76775def3badbb14f16510a271e7b40a833fc61841f89d8adc6d57b5b12cb453708961c16a22133c092fab8ecfcd1e3c mruby-1.1.0.tar.gz=afa99a973e9c1b72a5a418d709c4aca08dc7449c427cedef5f12db4ccefb15e11a4fd1c23ceb7e31e49d4d2e602c0b1f9dcf2e0f6cf8ea3466f0b9bee23b53df mruby-1.2.0.tar.gz=bd5de32ba52b6642358752755329fa45a954082122a8983012930056c286ac328fb52fbdd11f34ff7c80af2c0e9a6348abcd5214602aca1150f2e7ae25cad1f2 mruby-1.3.0.tar.gz=13a57306706d2d60693151919ae15bb3621e6e7ed3b5e9c6d3b1c8d44e52b898c1ad394b39946d730ff82a19f5e3b7c2a374f9dcc3b6c6f990581e504f1cb9cb mruby-1.4.0.tar.gz=d2dd6e17c7f8e890ef5b6887538cccdea08a2376ba8f9a478d7d5c4377fd4c31a4af6323b1fc73952ef80e5a4778ca22eac3d724ce7d50b76770f7e614df7da0 mruby-1.4.1.tar.gz=2cbf155ba7819211b6410ea606c4d0db3adf4f47a4018ac45285ab3e32b94f280aa0af0936ead7233411957cfca62979d14bbaaf0d8f40521cba5c12272f2af4 mruby-2.0.0.tar.gz=8379f76b7a06d280e2a2552eec2975ffa3fe85b99028f6f7c009cd908f95faf3cd36a9975f502a5779559baf3c45a4297da0b6bcc038d213a0fdee851f9d01ea mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.1.0-rc.tar.gz=f310b385cbf80c6b6ab67e2a41b931411149639c0bf778799e3358d6a9a59f508f42e3faf72fef9e8ef91088d6184c445af7933a47e4e2b2fe114362d579bac0 mruby-2.1.0.tar.gz=da28b5a078e121c75edf62fc68fad6d5810212bd53a3424d4f585ffe5bbd09f652393ffea0f4b3ddd802e5fe178554dc67040c39c9d5069bdfad4ef22ead7e8d mruby-2.1.1-rc.tar.gz=97c9cc2c79a5dbf2f634ea08532f0f512f8af6ffb99ab4eefd83fc336ca9d97b943e76643971047b4508aaddb5e40176d6cc8fa39a17022455aa15d774eb5b98 mruby-2.1.1-rc2.tar.gz=13aa32a35bd5d8f02a9bfd08d17818dbae78ce46c8b0224a029f9f191cb64ac330eddf3871f4396b9221b987a91e4cd6f8933f59814ac0018155ec8454abff18 mruby-2.1.1.tar.gz=66f9b4bebb5a7b19f5cb1be2bd8b9bc65e4dbb5d4350d238ad5f947c9195fd431f2069f7334036ea63a750e9257e59ae1aef16ac99c7e1f4e17724cd1cbe2e50 rubinius-1.3.3.tar.bz2=8b91baf429dac60663d0e4da3152a60ec6e007f5d6c17ffa430876ec88eb87ade44efae90f2e32e238fd74f1b3d54e27492315f08e7bb073220b402e1e2d3163 rubinius-1.4.1.tar.bz2=928d12aa01a1d0f6c80175d67d3b1f8b9840f69f045c8148786612316421223f4cea71e3c373ee18a3f686b1457557ae547645afe758a99d21c4818dff47b9d1 rubinius-2.0.0.tar.bz2=5c81a6b8cf7b59e08c3b9353b0eb37ce985aaf391f5064df65ffb10f6d12b668287e4d4e61e2c6b560d9234c10f0b64bba74259f2c06f1dac488928544d4131d rubinius-2.1.1.tar.bz2=154cfa93ed59835814b8b974f6d738b049942fcc2b75095d21c87647d002c879fd55aa3d1ec95414b5b66eb9926c25a5c6e3e19a7c0da7dec6edbf434acb9c68 rubinius-2.2.10.tar.bz2=c2168e676059c197123916dd948b83e39bb96e99786bdcaef2e690936b761fedb13740b9f19883f991f1b475f3249ea1696213e8448c41ae15dfc14b3d4e1fda rubinius-2.3.0.tar.bz2=d0f3dd5e3b891bff2eb79b7810c6041e15fbbf0606c379f89575cefd829ac7a394b0c12ed3c5a4d452730797bc0a2c6c82646a19a078b56dcac7acad015a4559 rubinius-2.4.1.tar.bz2=7bcea320006b8cd3d122c407d89c325973a74c32456ba0b649657ac848f4682f2eb7455c13e3007709c22932bc2e1b65e2dd43fda0d3c9f993ddf8a74d1e2cb1 rubinius-2.5.0.tar.bz2=ac94d5bc11524e715fc24c1de33f4d358c2cd65e92fbb64c850dc8151d2a712d268227733c99fcffe298c3bdd6ce080c5e9553e4e8f3238868323498a9d10cae rubinius-2.5.1.tar.bz2=9315f76126d0aa754ee63b190385c24cb084f36293a99aa30fc482fd880d5393aabce361e09ff5514bc2540dfede8e179b7e9212b2dd59bd14ca2aa69d209a83 rubinius-2.5.2.tar.bz2=b48bd8d54a450441a50904b07c75c8d31b59822830a74c952720d6f8d2d86e6a27a84775e975ff2bf55bf3346f34e69d742f308933a9d8476e5e78109cb525f6 rubinius-2.5.3.tar.bz2=b923446d325dc3ce5ad28af9ee527607fae3259b85e85aeff97c1bebbb4520daf70616957b1c0ded900ed19e59025826dee66977c19cd2a2d4e9a0296811eb20 rubinius-2.5.4.tar.bz2=75b7ddbe218e4c92210dbf5a06eb8b3c3aa028d16146982a4e813e3af10a90d33f3e239f4508469c6aba17f02cb8bd10e96a204839975e06519869cacd456c92 rubinius-2.5.5.tar.bz2=a862146ddbbdcd4439eb64e78bfe6d09ae4cca540d19869618426d3f451544658713fe8eb7d46493785eb0cc721077e624293cc44d68eea3ef584967b43a18d7 rubinius-2.5.6.tar.bz2=9a0bdb5d77f80f163925ce409d00be3cee34871baae8bcfdb34c3c7545b92fd14102fecb970e42b3012588d299e504b724025f397a5a00e181ab75f1448e426a rubinius-2.5.7.tar.bz2=8048110b3ba4e5ff8c3f35282896067e1b1b46dccaf9ef4f6c9b6098782f27591ff59ccae0234fd7e881e3aaf17a0b420286b1b52ecd2cb672249655795a6982 rubinius-2.5.8.tar.bz2=23fca2f9747d2b0e544af890c3baacfb7b3a009cc59cbe653762ccdd827a6c915dcc57902d317fa1f7a81f8c12682f6c3a93195331b6de0f705b118e2e8c13f1 ruby-1.9.3-p550.tar.bz2=38767e98df25484f7292437f3cb0f798b3a43e9a7414a5401677e96ad1cc367cb3fa23ac3abe568d5bf2b2ca553713469a8770d41b79bc63daf3fa59cb4e15c6 ruby-1.9.3-p551.tar.bz2=5ea40f8c40cf116030ffdedbe436c1fdbf9a50b7bb44bc890845c9c2a885c34da711bc1a9e9694788c2f4710f7e6e0adc4410aec1ab18a25a27168f25ac3d68c ruby-2.0.0-p576.tar.bz2=e089cca4867cd9c715f4f37e40a1db9af6ba0c74b47e79568121bb980476f8877a87ccb848b973381edb4667c0c73165f5e1761f60db839e67f6326302dbd864 ruby-2.0.0-p594.tar.bz2=8301a51c73fb63a8cfeb14af47d0c18b5bc3c45e3d62fc2ed56a673a1cd6b0015c41f275e70eb14a9e40036b1530977199321e05285e107a6adf58514bef1b3d ruby-2.0.0-p598.tar.bz2=10026a04e01a8ad14ea9c99bbdf4f7d04029b73ee0c01bbf6c2eb2817332d49adacf127b646693b67b5dd7010eaf3b696b23b6335cc0f7ee5a6b56dbba0f6f82 ruby-2.0.0-p643.tar.bz2=453117152e6facdcd5bedaa9c3b1e349382bc5bc1dd3d650ec58b398cb9d2519a2822d05da10bcc5dbbb4f513fc5fef310caa3529d176fa2d453befb28e4d83a ruby-2.0.0-p645.tar.bz2=e9ca186b1cf0877cdbecd43dcab2c5161a53103e926609d5e1b769a4980eab4571bfd0951788b4fc92dfd9d10175b0f5f36ea2c7289e575a9db9b62c02f93185 ruby-2.0.0-p647.tar.bz2=3416af771ebb0b27ceacf23d309bd2a1ede832c2edf48a5ca46f0b0b84b2ab94fb6362a0c7fe4f77b21253539db8161ae26d23a78d1ba729bf03812454d93d04 ruby-2.0.0-p648.tar.bz2=609acf6d6352c9746e21cd7f0e7d29f5eb522e6fff2d5fad0431d63c568cc084ed5b7141f84cd33512d8213200d2d1a22e8d7df71469a980a3a92886133fea38 ruby-2.1.3.tar.bz2=9b48adb161e5e4550a71f61252c8edf59944affb82250babcb64240749af4b672e4a54ccd0feac5b36ea447a358b350b5080125ef2d4acf6e9e8b1ab82612f48 ruby-2.1.4.tar.bz2=68db1567751166c5e7d24b6e5015124b8a15568c50556e1f429486395352fa56c4a195a74820ab135697924149d014b445b345a1b9755678aaf824fba79c606b ruby-2.1.5.tar.bz2=d4b1e3c2b6a0dc79846cce056043c48a2a2a97599c76e9a07af21a77fd10e04c8a34f3a60b6975181bff17b2c452af874fa073ad029549f3203e59095ab70196 ruby-2.1.6.tar.bz2=75d58120b5f387bcadbf6d19e85624f78c74f81b9018baef39207214673f7ebc0700ab31145acd88b4071c896ba8e1302a29c90955bcf5f8c863634125022aa6 ruby-2.1.7.tar.bz2=f610d2dd6a93f0a5e84e04ddedf847bbcea5dd3289b3164cdf60be64f67a80dfd5f9836ea5d169970cd0ce24a7e05ea6190699706567cb0d5cf450de6a70e445 ruby-2.1.8.tar.bz2=7129c012bca7f0e7cfa51c73ba0898697f7a9f31abd5ae57d38be5b6b646fd80ab33be9b262cd3e2486c66f65aaf4ec6e881ae6e5a82ec9df62f00fa072510fc ruby-2.1.9.tar.bz2=a86422132e4c64007a84a91696f4557bdcbc8716fbfe1962f1eef3754ee7f994f4de0b5b7e7231c25057515767040d5c4af33339750b6db15744662e9bd24f38 ruby-2.1.10.tar.bz2=4b7213695416876e4de3cbce912f61ac89db052c74f0daa8424477991cfc49b07300e960177ff576b634a97ee8afef3c5aded5d5806329dbd01d0ce7b42b9b63 ruby-2.2.0-preview1.tar.bz2=2f1190f5d8cd1fa9962d1ff416dae97759d032a96801d77bc6b10136eba59dde1a554ff8c0c2d9ce0d3c1361d4dd12ad573b1266fd53b90ab238d8ce39e6b862 ruby-2.2.0-preview2.tar.bz2=c654d4c047f9463a5fb81eaea0fa5ab7bf316962bc7fb0fb356861e6336ce8ce2162c7779d8b27f72d7bc0e9604b5e5af2910abcb0b0a1f197b3138eaddfd4a5 ruby-2.2.0-rc1.tar.bz2=181201168360bee37dceeef3481a69e8a333a5d329680031fd9d371d30ac64460bbdf4db07546133024f541774e51301f1630cfd988c5e5bf2464834f3abe6bf ruby-2.2.0.tar.bz2=04edc53e8cd1732c3ca61ebeb1d6133614beb10f77f9abb80d8d36352fe8aa205112068e460bf600b2c7e81e0ddcc3b311e7e027c320366f1bd992b3e378a6ad ruby-2.2.1.tar.bz2=af6a8e75a66b953ff33ecbca5111bcf1c6560b6b48b370b700820fcbe91363146c5ac8abd670a14e693b44343ae598bab472ed2902834304c03ffcd9550886d1 ruby-2.2.2.tar.bz2=d6693251296e9c6e8452786ce6b0447c8730aff7f92d0a92733444dbf298a1e7504b7bd29bb6ee4f2155ef94ccb63148311c3ed7ac3403b60120a3ab5c70a162 ruby-2.2.3.tar.bz2=795f1b66a6d4f0baef897068899c3a1a4370ce1268618e6a7d6d4720234444259f371d1ba2e174b2f7580265e9f18eda3f295fbb087447aa6e8fb7a0f07526ce ruby-2.2.4.tar.bz2=d27ca2f19c214ce87f906b57edd41f2f8af35b2871c191470facded9cfda15ba46e5c3bc7d5540225a38da6bd65050fcc8aaa4ffbadbb6bf7dc891c1821da0df ruby-2.2.5.tar.bz2=d3224814361c297bc36646c2e40f63c461ccf5a77fea5a3acdcb2c7ad1705bb229ac6abbd7ad1ae61cbe0fefd7a008c6102568d11366ad3107179302cd3e734e ruby-2.2.6.tar.bz2=7a93f72d236521ac28c8a0bc0c73cf805797a8813d22e02f42c5fc05dd39f6e422817272e0db6a24c245f6f97ad4b2b412a9a47ac50156ab186df596918a5f34 ruby-2.2.7.tar.bz2=83756cd1c91516962b83961e0de59d858618f7ed3e9795f930aab4f199d47a95ed8f867d8aa9b51d508be26d9babf2140117c88241168bac41e6ef702cfadf20 ruby-2.2.8.tar.bz2=aa1c65f76a51a57d9059a38a13a823112b53850a9e7d6f72c3f3e38d381412014521049f7065c1b00877501b3b554235135d0f308045c2a9da133c766f5b9e46 ruby-2.2.9.tar.bz2=2a8c8770fda20a22b79c9115b6f468f8e7ea1092c84a5089af7a3122163e5ad298b493e6637e4d93ba02d899d8a619c94064dda8ac98cf3b93f64f45d5401085 ruby-2.2.10.tar.bz2=f8ec96c2a5f4ecf22052ee0b1029989ded52d7bf5d41be24fef67e732e76f72119302240bca08f0547510a9cd29e941a32e263cad9c8a2bf80023d6bc97b2373 ruby-2.3.0-preview1.tar.bz2=ae6d46c87f59e1fd3703b76dfc45bfcf208625f95ab9f4559f0b9f7050e8681f1a6e419f5fa06b704c83e56879c3a9ff1337dba443bcfca76fadb49c97d97a93 ruby-2.3.0-preview2.tar.bz2=e397f321d4338edba8d005d871408775f03d975da90c8abcfdb457a1bc7e6c87efe58c53b2c3bc122e9f58f619767b271bcc8d5d9663ed4b4288c60556e8d288 ruby-2.3.0.tar.bz2=77b707359e754c3616699d21697752741497c719dc3d6fdfb55ed639e76d52560d293ae54cbe5c63be78dc73fbe60f1b8615d704d017bdfe1994aa9747d26a6c ruby-2.3.1.tar.bz2=a8659b96a3a481a3dbdbb6997eb18ff1f8cd926a9707a90d071e937315c21d372c89252f0d44732ae5007d2678fda8c8fbceafa4e4b4ff500d236fb796284d8d ruby-2.3.2.tar.bz2=78699bae5b0a2382a58f9d51f7d891341f00ad3a90d9ca06b68b1b245cf5acebc3a82133e39bf6a412ac999a5c0f778a0dab177c2569ffbee085ffff6f6ec38e ruby-2.3.3.tar.bz2=88f7782effd35bfe0b4c33140b5eb147d09b63fbb35b9c42d2200c010f387e2b70984ead1eca86569e8ec31f08b35289d440c0ca76b662dadb760f848e863d91 ruby-2.3.4.tar.bz2=ad1f16142615498232d0de85149585be1d2c5de2bc40ec160d272a09e098ef6f317d8b25026001735261fd1c5bc0d1f8513a8474e89f0d86eed5b2fe7338d64e ruby-2.3.5.tar.bz2=3ecc7c0ac10672166e1a58cfcd5ae45dfc637c22cec549a30975575cbe59ec39945d806e47661f45071962ef9404566007a982aedccb7d4241b4459cb88507df ruby-2.3.6.tar.bz2=bc3c7a115745a38e44bd91eb5637b1e412011c471d9749db7960185ef75737b944dd0e524f22432809649952ca7d93f46d458990e9cd2b0db5ca8abf4bc8ea99 ruby-2.3.7.tar.bz2=e72754f7703f0706c4b0bccd053035536053451fe069a55427984cc0bc5692b86bd51c243c5f62f78527c66b08300d2e4aa19b73e6ded13d6020aa2450e66a7d rubu-2.3.8.tar.bz2=6d79e0d25757fd37188a8db3e630a52539bce7927fcb779a2ce9a97b9e5f330753035c16843552f1a1fb6c9a1e5c0f916b3cc8b5c0bfe81e20f35f8442e40ae8 ruby-2.4.0-preview1.tar.bz2=c9873e8686eb54dbde61d6e23cd5197beebccd6cb31fd12c82763ebe1fde17095d7514d9d93c2c82b238032c98691df5479dc2d666a8a590e0fc54450ec29cb5 ruby-2.4.0-preview2.tar.bz2=0c9a59a2f57a99c4ee8539a30f41da1de7547566203f89d856e1be9dbb44365754e6c470145dc9336eb324e0feb2f53d9fef18a1564968ac21f9ee528905949f ruby-2.4.0-preview3.tar.bz2=6602c65a7b1e3bc680acc48217108f4335e84fdd74a9cf06f2e2f9ad00a2fccacf9fa035a912bc9d5cc3f0c7a5e21475971dfac37b0364311ef3645f25c7ddf9 ruby-2.4.0-rc1.tar.bz2=b43902ac7794487197df55a45256819d2e7540b77f1ed4eb68def3e0473ee98860a400862075bafadbde74f242e1dfe36a18cd6fe05ac42aae1ea6dddc9978ce ruby-2.4.0.tar.bz2=bef7bb53f63fb74073d071cc125fb67b273ed0779ef43c2d2969089b9ca21fff1bd012281c5b748f7a3c24dd26e71730d7248c05a01cb23ab2089eb4d02115fe ruby-2.4.1.tar.bz2=1c80d4c30ecb51758a193b26b76802a06d214de7f15570f1e85b5fae4cec81bda7237f086b81f6f2b5767f2e93d347ad1fa3f49d7b5c2e084d5f57c419503f74 ruby-2.4.2.tar.bz2=1a5302d2558089a6b91b815fff9b75a29e690f10861de5fdd48211f3f45025a70dad7495f216e6af9c62d72e69ed316f1a52fada704bdc7e6d8c094d141ea77c ruby-2.4.3.tar.bz2=fb4339e30c04d03b1422b6c32ede45902e072cd26325b36f3fc05c341d42eea6431d88718242dcc9ce24d9cad26f3d26772f2e806bd7d93f40be50268c318409 ruby-2.4.4.tar.bz2=ae632852a5f413561d8134e9ef3bb82adb37317696dd293ef92cb76709ecd45718f14116ecce35b12f1c2dd53ccae8dabc7a924a270072b697512d11f4922347 ruby-2.4.5.tar.bz2=7034fcaeaee41f14bc0ecce0d3d93bd1abe95310e1a0b95fac66eaba867adfb2bf7ba4d0d70d67a15ce8df16052dee405c38cdb18987602e64a2f701d37d3df0 ruby-2.4.6.tar.bz2=292802984e5cff6d526d817bde08216fe801d255c4cede0646e450f22d4a3a81ae612ec5d193dcc2a888e3e98b2531af845b6b863a2952bcf3fb863f95368bcf ruby-2.4.7.tar.bz2=2665bca5f55d4b37f100eec0e2e632d41158139b85fcb8d5806c6dc1699e64194f17b9fe757b5afd6aa2c6e7ccabba8710a9aa8182a2d697add11f2b76cf6958 ruby-2.4.8.tar.bz2=2d7e0f5ad766e2a12a1b53ff838e6bfe86244ffb7202196769c25e9df6f71f3ccdd8605e7ef35c53e54310bc82caf6b368ad5111dd0a3ad70a3aae1a7be93f08 ruby-2.4.9.tar.bz2=d485444dcd025a261a16bd740dae63c0aa23e4138a095584e7a83aec47af34415c7d9cbc1313e92da2ec416b11bfddf20bb1a7b60c80f12906d11ef27409b3e8 ruby-2.4.10.tar.bz2=4d730d2d7cb96b002167ee358258f2620862a5a6d8627cfa5b49bd43c6e59c50c0f437b959d4689b231d57706ec7d5910d9b144f4ca1c1ed56bc879ed92e8a59 ruby-2.5.0-preview1.tar.bz2=2d39ef64aaf7a52014905f4ad59b53e83b71433e50a9227f9f50cbb7a2c9a5db9cd69fa7dbe01234819f7edd2216b3d915f21676f07d12bb5f0f3276358bce7f ruby-2.5.0-rc1.tar.bz2=bf0eb114097f9e505ff846f25e7556a2fb393573b4e8b773f94cf5b47998e221f3962a291db15a3cdbdf4ced5a523812937f80d95f4ee3f7b13c4e37f178d7a7 ruby-2.5.0.tar.bz2=8f6fdf6708e7470f55bc009db2567cd8d4e633ad0678d83a015441ecf5b5d88bd7da8fb8533a42157ff83b74d00b6dc617d39bbb17fc2c6c12287a1d8eaa0f2c ruby-2.5.1.tar.bz2=82e799ecf7257a9f5fe8691c50a478b0f91bd4bdca50341c839634b0da5cd76c5556965cb9437264b66438434c94210c949fe9dab88cbc5b3b7fa34b5382659b ruby-2.5.2.tar.bz2=9f9388a162a3ae9c14ec8999fa3b12ff5397de14f55996cc8761d21c757113db37ace4d326b9606de7ad3a5875aa94fec900dd9b81b2fb0dff558c39422f4aa1 ruby-2.5.3.tar.bz2=6fe89fe9d406bb454457442f908774577369ab2501da4fd15725ccbab77675b88faad739a6c8ad1c7b6690b439a27de5e08035b7546406cdeca65c7b295e2c77 ruby-2.5.4.tar.bz2=3c4f54f38ee50914a44d07e4fd299e53dddd045f2d38da2140586b8a9c45d1172fec2ad5b0411c228a9b31f5e161214820903a65b98caf3b0dfeeaabf2cab6ad ruby-2.5.5.tar.bz2=1b56aa79569b818446440b9f2d13122bf7c2976ab9b2865f5fb62d247d7768dd4ac5b5e463709ffec0f757bff7088afd293c2a8c5349c3780763b6444bb354a8 ruby-2.5.6.tar.bz2=e4511d42d19a7bb39ea79f66bb4eca54b63c2a9d27addc035d6d670c1e59ee48a0c6e9c6bc7d082d1f1114b0668831dce3b7422034517f3c4a06ced0e47a7914 ruby-2.5.7.tar.bz2=7d6a7d41b4f3789f46be5f996099f3eb8321aa4778b2a8ff44142654e769ba4ba2df127dd0f267547e4c8cd6ff46364f18e79838df54fcd7e3fb714294ee0099 ruby-2.5.8.tar.bz2=037a5a0510d50b4da85f081d934b07bd6e1c9b5a1ab9b069b3d6eb131ee811351cf02b61988dda7d7aa248aec91612a58d00929d342f0b19ddd7302712caec58 ruby-2.5.9.tar.bz2=12f58e14cfa6337065b0e82941e39b167813920eb54cbdb4ac4a680dd0cb75d2684d341059e7b4d0da1292bfc4e53041443bd14891a66f50991858b440a835c8 ruby-2.6.0-preview1.tar.bz2=d9cb270529a97670d54f43a0236fab072714e715c39277dab70b7a1843ec818e6700e47e1384c7256f9e0ae41ab2c0b768a0de38a5ecf4f4fff5da6ef5ad4944 ruby-2.6.0-preview2.tar.bz2=3872227e9b1c97c206d19bf1e6ce15a38ee15a26c431b4436605dea67affcf16372358984df76b35e7abaa902c15c16f533ac7af47e3031dea9451bbe459b693 ruby-2.6.0-preview3.tar.bz2=d1693625723796e8902f3e4c4fae444f2912af9173489f7cf18c99db2a217afc971b082fce7089e39f8edd54d762d2b4e72843c8306ed29b05ccb15ac03dbb5b ruby-2.6.0-rc1.tar.bz2=cbd6281b2aab6fbce3f699c1ab57e5423304dca7a547a0b3cd4e8e980326dc7b85b2ca2bfaf3f3a648d40f4222fdf1740d81d422790ee7ae1ba1ed33eb11e3e8 ruby-2.6.0-rc2.tar.bz2=9bfbe83fd3699b71bae2350801d8c967eb128e79b62a9d36fc0f011b83c53cab28a280939f4cc9f0a28f9bf02dce8eea30866ca4d06480dc44289400abf580ba ruby-2.6.0.tar.bz2=ca3daf9acf11d3db2900af21b66231bd1f025427a9d2212b35f6137ca03f77f57171ddfdb99022c8c8bcd730ff92a7a4af54e8a2a770a67d8e16c5807aa391f1 ruby-2.6.1.tar.bz2=fc41429491935b89532733b95476ab9f8a4efc310aad8f4c2bd3b68fba08fd7b6e9ac84c6c88ca892022d1ba76435295f3299ea466f9b5453c07d41cb539af59 ruby-2.6.2.tar.bz2=cad678d2ced4085e99009e4fef83c067dd0e6ead27a8695bc212c0e5112a7fa09ceb27f82638faf91932ef8bdd090f844e0a878ffdf6845a891da4b858588aa0 ruby-2.6.3.tar.bz2=c63c3f527bef88922345f4abb4b9ad467117b63f2132e41722ea6b4234cec3446626c3338e673065a06d2894feee92472807c284cbe613a442c8fda234ea7f88 ruby-2.6.4.tar.bz2=a9fa2f51fb5f86cd8dcaa0925fe6f13d4f19f110b5d4c5fd251f199d16aaf920db39ad3bb50460eb94ab8d471ab2ac8bb54daea4a3bb080eaf45250aac3437fe ruby-2.6.5.tar.bz2=28e0b04ac8ca85203eb8939137b5e5de4850c933faf7f62fc69648fe1886faaabf6cdf48382f9d9585c1720876d10b41dafd33efaeb23341c309917fbd8a6e21 ruby-2.6.6.tar.bz2=001851cf55c4529287ca7cc132afc8c7af4293cdef71feb1922da4901ece255ec453d7697b102a9a90aef2a048fe3d09017ea9378ab4a4df998c21ec3890cdbb ruby-2.6.7.tar.bz2=311ec56d23d0de7a163f66c1ef4e5369b822f8409f8e1f3a25785c803f01c68dd13aa8ddcfb3a0fe6a97bf321950f8d6cd75b2babcb04158e791601914666f7a ruby-2.6.8.tar.bz2=51806d48187dfcce269ff904943dd008df800216ad4797f95481bdeecc2fbac40016bc02eabfff32414839ebb2087511d25eebfd6acead1a1d3813be6c10edf7 ruby-2.6.9.tar.bz2=ff067ebc059094c0a9a0debf54a37aad2c85f7ed47be59299041c9c03a7701529f5063ff32a1b8c56d48ee8585015acba63602ed0176b2797d263d43d67aa241 ruby-2.6.10.tar.bz2=275a0f329641e6c3d3d3c33ffabf585195187eb3baa4fb1dfd35999fa0a80bd5925943fa2711827ac00dffb6c9a1deeadabaf2e9ee401d56926fc167db5ae4a4 ruby-2.7.0-preview1.tar.bz2=a36b241fc1eccba121bb7c2cc5675b11609e0153e25a3a8961b67270c05414b1aa669ce5d4a5ebe4c6b2328ea2b8f8635fbba046b70de103320b3fdcb3d51248 ruby-2.7.0-preview2.tar.bz2=7066ececebbbba4b2933ba1a4f70cdef373169910802259a3e52b4fc144ba298f3cffda4be5fe8a7be8ef769ed43076fa046a9ac2c13bb733475b9852112c6f0 ruby-2.7.0-preview3.tar.bz2=5d8e99e3fd984c7d05c0bc483e1504e81ccdb920cbb2d78cad3c314e197b30316b692fd0199f836acac41246e3a713cb81dc6dd64c27cba56f807df4c193db1a ruby-2.7.0-rc1.tar.bz2=b5f96227775f8bdf19f944a555d0a83d7e84b37bd31fe4b8ac008a3272b1a28a4d94abbb1b5570ee32ec0690ba9d476b837a020a5194bee14bebf6f0e768bc79 ruby-2.7.0-rc2.tar.bz2=9010f72bb3f33b6cd3f515531e6e05198f295bb2a8a788e3a46cdfd776a9f6176b6ba8612f07f0236a11359302d2b77fdecca1dc6be33581edbb028069397a0a ruby-2.7.0.tar.bz2=8b8dd0ceba65bdde53b7c59e6a84bc6bf634c676bfeb2ff0b3604c362c663b465397f31ff6c936441b3daabb78fb7a619be5569480c95f113dd0453488761ce7 ruby-2.7.1.tar.bz2=4af568f5210379239531dbc54d35739f6ff7ab1d7ffcafc54fed2afeb2b30450d2df386504edf96a494465b3f5fd90cb030974668aa7a1fde5a6b042ea9ca858 ruby-2.7.2.tar.bz2=f07592cce4de3532c0fa1c84d53a134527d28ba95e310cd3487ac321c49ee680faeace285de544ee6db432a90aa7538a1d49ff10c72b235968ca362ef9be621d ruby-2.7.3.tar.bz2=e9236138be3e61380140f2e0d42f8fb82ad8f5219d454de2f6c2ec546bb208acc8b0f2020f23e6446660d2b3b9ae873cdd8298471f166a5f1efba8e80b05e746 ruby-2.7.4.tar.bz2=f144c32c9cb0006dfcfa7d297f83f88b881f68c94f0130346c74dfd8758583a68d22accfd0fc9f31db304ab5ff0bc135bfb2868145c0dec1ee6cec5ac6c3725d ruby-2.7.5.tar.bz2=0aa2ac44bc22859a39c43d08b7c7f457df05c2dc36b2574fd70ca399143ef1000dc5e496212db9eb055bc4258523d47d26db3c57a1a5a5d63cf1b3de9f81645a ruby-2.7.6.tar.bz2=4f7f3624afc43da25ebf0f01d5a2f92f72f94bab7423587cfd3920e089b479bf559b159adf2891b996f7e6a98c008a4f73a4a2170e2f8619417660ac1ab24bdc ruby-2.7.7.tar.bz2=24cc772ac1b56d3bb423f1b33716f221bf534f3717a506bf8235a698f8a454db7d79d94ae9a84067153c2f737b3f8f6085f34e36cc04be0d75ae2fdd57718870 ruby-2.7.8.tar.bz2=3a9db8d9e79318f869417f2ebf3365907febc0d1428116eabf3253c51d8420f255782b32fa30a54802b9f5f4187fad80dab0611cc80436feec84db87b0456ec6 ruby-3.0.0-preview1.tar.gz=b94892951f842a1538f4b99022606ac2c0b5031f1ede7eef3833a8caa9ed63e9b22868509173bfefb406f263c65211db75597b152b61f49e5ba2a875fce63a27 ruby-3.0.0-preview2.tar.gz=6fa4191425ae71e41894b60bd9c31d483a562ee8216886360ce18238ab48115b95be0367708612c45f634e7584fba8940a524ba0113ce0f36ce4df78a112d0b7 ruby-3.0.0-rc1.tar.gz=798926db82d27366b39be97556ac5cb322986b96df913c398449bd3ece533e484a3047fe35e7a6241dfbd0f7da803438f5b04b805b33f95c73e3e41d0bb51183 ruby-3.0.0.tar.gz=e62f4f63dc12cff424e8a09adc06477e1fa1ee2a9b2b6e28ca22fd52a211e8b8891c0045d47935014a83f2df2d6fc7c8a4fd87f01e63c585afc5ef753e1dd1c1 ruby-3.0.1.tar.gz=cb81db2c9b698cf8159b2ca6507f4c7f171e4eb387f5730c4b658ed632b7900a169808e6fbec0ee80598d937030ad5d9c56b63a2a339373ec5d9e1c06b7661d0 ruby-3.0.2.tar.gz=e1fba6f5429b5fca9c3f52a32535615fcf95fafa415efc71c46db4cce159f249112c01574c305026be5c50140335696042e47a74194caea045acbfaa4da738cd ruby-3.0.3.tar.gz=39dab51a0d784a38302372b99f96205817d466245202586d22123745761e9cb39db128ec2b984ebc3919b9faf2adf828d19c97d3fb1e56d44be0a81dc5d11b87 ruby-3.0.4.tar.gz=0dfded6826063c1b39bf625a6e13b46c109cb160c8648b78f0965f70e7c7a1a65f1c117fc8f2cf8bdb34d7cbf79fecf1f45d169d2323406d66ab27b18bde1d22 ruby-3.0.5.tar.gz=ea45fcd2ca53b87f18fd8696d00a1e340d2495443216aaf87d3f643cb5bd8bb614a1faacd82d07e7f2b72172397c728316a82d7c34a7b4566191268ea517ccf7 ruby-3.0.6.tar.gz=d596bfd374ae777717379b409afe8ee1655ade0c0539ada7a10af4780b818efe25a28aa50a2a7226741d1776d744e10ad916641f9d12fb31c7444b0a01d0e0cc ruby-3.0.7.tar.gz=66e5116ddd027ab1b27d466104a5b440889318b4f2f74b5fdf3099812bf5f7ef77be62fe1df37e0dc7cd5b2f5efe7fee5b9096910ce815ca4126577cb2abfaa7 ruby-3.1.0-preview1.tar.gz=63f528f20905827d03649ed9804e4a4e5c15078f9c6c8efcfb306baa7baafa17a406eb09a2c08b42e151e14af33b1aadbd9fb1cc84f9353d070b54bbf1ff950d ruby-3.1.0.tar.gz=76009d325e961e601d9a287e36490cbc1f3b5dbf4878fa6eab2c4daa5ff2fed78cbc7525cd87b09828f97cbe2beb30f528928bcc5647af745d03dffe7c5baaa9 ruby-3.1.1.tar.gz=a60d69d35d6d4ad8926b324a6092f962510183d9759b096ba4ce9db2e254e0f436030c2a62741352efe72aec5ca2329b45edd85cca8ad3254a9c57e3d8f66319 ruby-3.1.2.tar.gz=9155d1150398eaea7c9954af61ecf8dfdb885cfcf63a67bbcf6c92e282cd3ccac0ff9234d039286a9623297b65197441438c37f707e31d270ce2fe11e8f38a44 ruby-3.1.3.tar.gz=550cfda2ae492312009a58316e18fd77ea92852718b37443bcd76aac84ba6694fb841fe19bf23bee099f96f5aeed9d03e77c8c02fb194e414eca5f707adbbf90 ruby-3.1.4.tar.gz=41cf1561dd7eb249bb2c2f5ea958884880648cc1d11da9315f14158a2d0ff94b2c5c7d75291a67e57e1813d2ec7b618e5372a9f18ee93be6ed306f47b0d3199a ruby-3.1.5.tar.gz=23661cb1b61013d912b7433f8707bbcd723391694d91f413747c71428e74f8c7385c1304de7d08b70c9fa3bd649e4eb5e9acb472d89dc2ad5678cc54855a24ae ruby-3.2.0-preview1.tar.gz=d24e77161996c2085f613a86d1ed5ef5c5bf0e18eb459f6a93a0014a5d2ce41079283b4283d24cb96448a0986c8c6c52a04584abd4e73911ea59cefeb786836e ruby-3.2.0-preview2.tar.gz=5e9ddcb1a43cff449b0062cc716bfb80a9ebbb14a1b063f34005e2998c2c5033badb44e882232db9b2fceda9376f6615986e983511fda2575d60894752b605cc ruby-3.2.0-preview3.tar.gz=860634d95e4b9c48f18d38146dfbdc3c389666d45454248a4ccdfc3a5d3cd0c71c73533aabf359558117de9add1472af228d8eaec989c9336b1a3a6f03f1ae88 ruby-3.2.0-rc1.tar.gz=798157d785ebae94cb128d3c134fa35e0e90c654972e531cb6562823042f3fb68a270226f7b1cf0c42572ef2b1488a1a3e44f88389ad2a6f9ca4b280a2a8e759 ruby-3.2.0.tar.gz=94203051d20475b95a66660016721a0457d7ea57656a9f16cdd4264d8aa6c4cd8ea2fab659082611bfbd7b00ebbcf0391e883e2ebf384e4fab91869e0a877d35 ruby-3.2.1.tar.gz=f8bbff5e237b501f4042ddc70a19ac1ce74f72f147c90daf7f3007a940136abde37c12a0f7444f713ede09ba847c2cc2897a1742823832e3dc8cce80073164e1 ruby-3.2.2.tar.gz=bcc68f3f24c1c8987d9c80b57332e5791f25b935ba38daf5addf60dbfe3a05f9dcaf21909681b88e862c67c6ed103150f73259c6e35c564f13a00f432e3c1e46 ruby-3.2.3.tar.gz=75aecd9cf87f1fa66b24ecda8837a53162071b4f8801dcfd79119a24c6e81df3e3e2ba478e1cc48c60103dfaab12a00cfa2039a621f8651298eba8bd8d576360 ruby-3.2.4.tar.gz=b695b98dac7bb2c8755a106d949cb1b1b91551092fad263765171ddf8a4d86585259ffab5f7cc9bace70143d645dbe5932cfc61c6dba7817177de391d76bcd79 ruby-3.3.0-preview1.tar.gz=0f891f140ddc6372aa7c4459f8784126e0c341db7b80e72c51e441c5153c43c2d7b965f7807c076862ac84b9b8b0c6a66bbf66fc341746016151397bb21c782a ruby-3.3.0-preview2.tar.gz=1c5a13e519e8487fd40d932b96d14fa729521925c288e7841ab5eada628e506ceca2605bae36eea1aa505d9253383d53cd933b7a4bff96e6de5b1130c7c558e6 ruby-3.3.0-preview3.tar.gz=94db07a6958c09809b2e5b597fa55a121074e8bacb3bf588c83cf0d35b07a8b070172035a49d1abf0d8ee364a9ace824f34e677f7327ffe1acdbab0938ac49c4 ruby-3.3.0.tar.gz=26074009b501fc793d71a74e419f34a6033c9353433919ca74ba2d24a3de432dbb11fd92c2bc285f0e4d951a6d6c74bf5b69a2ab36200c8c26e871746d6e0fc6 ruby-3.3.1.tar.gz=0c8ea922a79152ac7adbfb2541320565bce6a631692fd39d499a06f53ad6339c16fad8374d171351ed63f7bda3312b26d4f8c058c5b6df3d7548fde372c718f1 ruby-3.3.2.tar.gz=a15ba8d6c2830fcd1f2b36f671acf9028c303ec78608fd268da0585db8e95ddd971666e8029bcfa2584da2184a6534e1f2f2da07fa7ca4494e8d842eed206f00 ruby-3.3.3.tar.gz=0388a96127eb6e53b836f7954af51ff62b84cdb7abeab823cb1349993d805b151204e426b9ac04ca8333fbd5e01c386d58bc37d34c4e9286b219dcda7542a150 ruby-3.3.4.tar.gz=56a0b88954a4efd0236626e49cc90cdb15d9bfd42b27d7fc34efae61f500058e58cb32c73fdef5f1505a36602f4632d6148bf3bd1df539cb5581ae157c78c22b ruby-3.4.0-preview1.tar.gz=29c0e32179f7b823b6708f5328e495cd333fe8dd88f7df7d9051deab47add67b14d899bba565bba1a77e1b04c9693d9708541445c112925777bb6891cb7b2b62 rubygems-2.6.11.tgz=3b0dd38c0aaf313c59e299dcf54f7bfb6e6d84b8b739573ddaf599e584da45ed7b1465f6521131b32f237e31a4796d9ef455b8be685064b3fd77a0355dfff13e rubygems-2.6.12.tgz=ebb672488b50f5fc988eab66ab14ce8e887dcc635f71239a85e32fbf1e919ca70196eb4d3f2fee3486cace7064bab0b8b08339c754b723198e1b0b0a0984ab54 rubygems-2.6.13.tgz=c952b6061a9a0778db304c3aa5bea693e71ae2564abfb19f8b123eef66eb1e3877fc7c36f4f1527da97bb320870cbfd4574ac57ad88e850a44fadd67ebdac152 rubygems-2.6.14.tgz=7743845bc5265df3782f85a23896cbb250d8a2bbc9934a27f274b001afa7aa62f7f00f616296f74747ea612d2cb37dd7f533c931aa72550d84c64d2a73d60daf rubygems-2.7.0.tgz=0bd08fbabcc33687c98365ffe6794ca2a5e82160b0297479d4f19bd899d176b7f4efb95248898b26d873f9fc7d86c10cada6e40cdc48738b0bac261c3aad261f rubygems-2.7.1.tgz=fa4ea123760b03b8b8e8ececc55c9dc34249073fb267d310bd903aa7a613267e5d27990bbf28e32c9a746bf884af8a84a0dc202297272f9d477f7710c21bfb60 rubygems-2.7.2.tgz=0f48c6e46663780a571c7ee0e6e772f2e18a755031e7dd8ede7870f238c214b9e3e38153b1ae8f1f78a9aad63c1a079b86573b3a25c57a600d842bdf92b9c4d1 rubygems-2.7.3.tgz=2782331b31947a23f85b285a3d5e7b66e34fe5847bc84dca4f1e6bfe33ce187ab0cbc814229de8111aa19490b656ca78b7c821e4ea6b425449991c01371b7565 rubygems-2.7.4.tgz=90f72a46709ef847666a6a23eecf24521abd5c294b2da8a246bb4c7f85daf4af39a0634fc8093c7bb7ded2ac137ea27fac5ed94af3b70c49e78594285c7a40ce rubygems-2.7.5.tgz=86957f1c438070135df527a15102e40487fcee93a55251463095e4c8794a8616d16ed9bdead0e0ef83c44806bd5016ecd9e178bef608b66af2e68e2c9c49e941 rubygems-2.7.6.tgz=bc168afc40c974dbc7c37eb5678432ba2ed7469c3f007a159699467ff2cff5205c508237193ee8becaa6eb555b043969cc5f92b2aaa6bf7c958dd7c187e258a7 rubygems-2.7.7.tgz=f93b7eacf5ef8725c40d618daf9deabc7e9eed74b3b7f13ecd16f89205fe24958e782314c52f8a8fe3205b93e20b830b4fbf7ff8944ff1cf56feb7de2d773252 rubygems-2.7.8.tgz=3d1cf68377dfcf102028342258aaff5a7257d2d2b34a80508c85aa258d810add46e65a157f902c271b0b7b568c437372d17246e89cd88f8500e47c008d17f1a6 rubygems-2.7.9.tgz=5f699f47bc24d8ffd4f8f44a509a9df71fcd945ca2574dc9d5050bfe06a44830a368f45d204112d7a4f1877e1600a6fe4d1b6b68f9a55288664667b4220a7d72 rubygems-2.7.10.tgz=48a18c0f202f463c38cf5dafecfbc7cc39245e63c7a059ef2cefadda478483794a929ea6b7e0ef062dd4423230746f1f09d7bec06a97fe3ceccc3325397a3e71 rubygems-3.0.0.tgz=047f4d446aae414e4803517088ef47d5cc66319ff08a3795c6d69e83eee9f3e7c3b05419858f7e5b6a8ec224990ca01178a9259961ef2d7ab737bac352a0f18d rubygems-3.0.1.tgz=dc29ad51ec67b1dca82a23973ea92153482788964d0755bdcd3c650116915c461c6e5fb1c826be3ee04a497fec4ac2826904bd406f24611e77cd8c9eaf4d8729 rubygems-3.0.2.tgz=90b46c2cd4f8baee74eb488a40691cc00e754cefc42029d485163d6ad7782df78ba5cbeab08eec6a4f71febe0f6e635e12a9381393008c58eb5e16396df93fbe rubygems-3.0.3.tgz=1dd585243341901c7b4cc60a4902000c10ce57fe2cc9c28e27e274a2e6029f936cde1c99d7097c93c2c5b2c8bcee5d692c8fe5cc00c996a040e4954b674e330e rubygems-3.0.4.tgz=887c64226ec0b32d33f2ea331936683406d54dc74d19e658a23521e25ab50aa23534fe9eecaf696154247ad1df1d24c233d8900b9aabc79096eebd6afef3f775 rubygems-3.0.5.tgz=f5a97cf67d7d043afba7c1aed014f1b64ff6376ea74d3d6533496bc5ca9742e0ccce1a157e6f67d8fcbe59d8e34bbfbcf4ed8be97acf2970603de6381043cb78 rubygems-3.0.6.tgz=1ef1822a2b19790a36a6d242b7d4584222617baa27787ec58961a9cfeb2733f19f9085490ffc72ee375d3153c7114e050c42e68fc8039e727fe5961b09365ee5 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=5dfb040b746e462c297ebcdf84e0f07cd74b86852055dcf0a7cf1814112099bc674bcccd94b03726aee76b253c9345a45d046cbfea230647644f0fd6b1c1ec96 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=17983c442c54d19196be3626e25c64f5474139c0b973624832ba8730efb047bc747c02e59c82f38397bf012c63ab83f79a9c1b64311cab796f08fe96d7d12a1a truffleruby-1.0.0-rc3-linux-amd64.tar.gz=b0b57082d61317911f101da617333d81ee6bede6b6e18f9bed86544dc413339c830198d90cad7ac94c0c8fb690adcfc559dd9f530abb70507ff6a76eee552b61 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=18f9782de56269389320ddad779ec69c168909198d4572e2ea4c18bc8082a539569a76760a6a6da58722fe08d77d83904aaba14baf4075a2833cbd2efc45dff3 truffleruby-1.0.0-rc5-linux-amd64.tar.gz=134d9ba5db7b8a1960d3a88390cd6f7503a0e8565094fb127333d122cd773bfbf9dc976c659029007e6fb68e93486293bac2ee29ab21dae9cb0c06ba57dd2c72 truffleruby-1.0.0-rc5-macos-amd64.tar.gz=5804f1f27916176f5a270de8aac85bc48c38ba37c4e719b09f5777e5c42429271819378cfe096c3cc33d406cd0726f2e37658020f97a438fd53751019831569a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=2597b375f590755b851d3b8cbad3eeab4c965eb02d0c944044f57e39f6c3db1e2f513e2aa55db789e4a885c697f81ce5c8bdbe9a7e44ee30fc09d234e44fb512 truffleruby-1.0.0-rc6-macos-amd64.tar.gz=2eb177190de0408dfdaf30264132955d1db7783ddfb63880d97d5933f66c5662794c3bb6198edf230fbff348674203e61f7f5481e74ac875974467f2f128e939 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=ab3a3dc19f903e68e36b135729693fa025a7c1950139277255e48c972387ef8399beceb3252ac37cc70c0df92838f8a0ba8c45f53665ac4286ef23f9b240806a truffleruby-1.0.0-rc7-macos-amd64.tar.gz=b8423f50a5292e211db7ebd7e2b987fd5c9eaaf34eba86b0644d2716a7f068f2e56deb4357c516b87b437e64fd5ce8515bc181165cc1042c6763f27d71baa59d truffleruby-1.0.0-rc8-linux-amd64.tar.gz=bcd05d304ee9b4da97193575fb1ad78041a0c7710bb444af6aef12ab4261b1873f472175ec51a187a5e99da481d66b81a132fb691643b793e87d655f31d54657 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=2c758221793c38ca8af1831a5d9f3abd555c406569508ac3a86d3c1ea5baeeacf65abb6e904ed3b1e58f555f51bc85ab171135ff4c3d0e08cdae994a861cbda4 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=42e60b69957f77a8623e0dccb7d215e800c27c622364fa76b9c574e8b1d3a4056a058b61ed91eac2375ecf4e51e482a6e17550aa2894a44d1db70687958033da truffleruby-1.0.0-rc9-macos-amd64.tar.gz=18556ee8d2fdec6907fbc8fc33d8b32ea0c58d40ee3df084ffb233e2fcd3a514a553f97c31dcc25dda3f86b1b805ca5fe3c9bf8cb078b92325515f09db6b88ba truffleruby-1.0.0-rc10-linux-amd64.tar.gz=10a7cb1be6214347469d5797091f73c3d7824bfb32a47c13566573a383380b1df9b79b7901ce0fa3af1c97285c90afac21e2de7a66ed88d9495846743b3b25e2 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=53f0939d9d8c3470cb79316d865b765816032528d77a3cf497134f3aa667a6253ae037410801261a8e7d0628198ac5f6aea5ecf9b7313f06ccc1d5e9f94e74ea truffleruby-1.0.0-rc11-linux-amd64.tar.gz=f89bc9a3310634d39f68006307da0b0ddafae036089bdd663e8372777a9562d201a4e69b2e1a602cff5fba6c78a8d4861b6d1020679bd0c72c71b938a4f36a27 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=3f461c12fa9fa57a55cc390eb9887df88f404661a77bffb44f82b4c7e9021513a6df9f6d5f332a36ce0c28ae7e3d5afbbe15cc4b814bc7f86dac2e5ec280f947 truffleruby-1.0.0-rc12-linux-amd64.tar.gz=85f042c308ccdfbeb318cec37056d8d970cab51cb0779425b85b8f76b0a1dd9cdec3191ae2b6b9b6be6e95767db814496450ed20076addd9bd495742f9de3c8c truffleruby-1.0.0-rc12-macos-amd64.tar.gz=067a0f63bbaaed4c8d4120f758c8ecf8c52afd1d30ea9d41489e26289d57a574d2d4ae29e29655378510adfb3f4a07b04b403d6ee98ee6b3d3aa8bff9c8d718f truffleruby-1.0.0-rc13-linux-amd64.tar.gz=1eb6b80cb05133d253f20629a11ed9ec3f37da002d5668cdc6577b2a20524e0cdd4d739d3f1aa2e8c518e2f7ebfd519ec1c647293714a1133ad4d569375c0e69 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=e3cddb0d0ae48f7d5ee4dd094ddb5a13f6a7aff1521b1adf25710971664b235cf67144e3b81525fd710dc49b6f6f6ba06e10eee1df5dc08119e9494c6be86934 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=c982194675b66a0433bd5517fc6f1564db669f595f8c7ba4819bf37e0599474d49a0c606577a898c27fa5ba40ab793c62d8211e7ea398d6b3e2bcc31eb5d55f4 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c14e396396385644333fb4c4aa1fb4b934a3f4e46312146821e5dcdaa097cb5b1efbf397c1dd6117d909803fd27ba8d835904672e98d43dc565e907fed752e1b truffleruby-1.0.0-rc15-linux-amd64.tar.gz=f27a75f929a6e945e49ceaad12f484fdaa918469a2f639b572fc4737b78e1cde0881697057e13a58b2fab7ac64c3a71bc9951561c3a8728e3dec814ef5e95fee truffleruby-1.0.0-rc15-macos-amd64.tar.gz=7aa029c4999d4608c9bcc491771b0434267032dbe9dbf504728079f87ce93e6a90e0fa839295b88c00e5a025186ed0fcc42361428b7874c05e222edb108d6c02 truffleruby-1.0.0-rc16-linux-amd64.tar.gz=e8c508dede11d4f54cf0b15cf92b50caad93076a6065bd2d6784c5ca739f5923ea2b894c6b2b52131f62187c8b305cd11a960fb5a670789802d59b6b2999f0af truffleruby-1.0.0-rc16-macos-amd64.tar.gz=841eff077c38bf594b101edb15942f601ba0dada2122b21b016f53251aa2a635b8d0b63b49bdfb50259b2545d1f498bca95d5f771a15a28edb0dd07216c9b709 truffleruby-19.0.0-linux-amd64.tar.gz=8ec6c7829351e0dc2cce57305947cd540734fe5a0b95b9501d4179993727ab2c331e9fb639b9865c0fed596df3906adf3dcf2efb22c4cfdd23a3dc2137025fd4 truffleruby-19.0.0-macos-amd64.tar.gz=912e0c15d32e40c884b2caaaf9a86a71450d441c960ef98a63dfce80353619073b146dcfe03d9af4273b2811d0899eebe922cc84a51d6f5e6826cc436d793f78 truffleruby-19.0.2-linux-amd64.tar.gz=eec92bfbd776acd61709a428b90b1029c5ea83e5ea839304d23cae3a541dd4fab3b387691fa76643f55d5939c9cac0cbe70dc0b5786e5e0e5d20f3fcd9a21356 truffleruby-19.0.2-macos-amd64.tar.gz=ce647b76c9931feac55baa5acd2c87d8335c606bc5cd7e462bd92ba1b09f4bab5db927f021e3119abfd85c33377003d060f36cf64eb121954fce8878112f01b5 truffleruby-19.1.0-linux-amd64.tar.gz=db01e6dc09fc5f39ca466aa94f725023d49a8f52343f129bf8c32b7f5f76ccf2d573ee3344fce3d5aff9983bc9af618cc5ca6e1dbba93b3f604e4f33f8a69b3f truffleruby-19.1.0-macos-amd64.tar.gz=f002bc0b6efca11eb97c4aa6df33d2e0fcc1de3443efd39d912b028df9dd8954cb76ef3ca7fbe140f4e922d6ae4c1a6a20853490ef1ea0749293e2fcd4ffe8fc truffleruby-19.1.1-linux-amd64.tar.gz=ec031e8c216e31f034d97aaccd6441869221d6946e18f375b44a866550b8e8eb4b2fb923f9ce1a62853bdcd5b9201e0f5d2732ca6525d80171d5732ef522bd25 truffleruby-19.1.1-macos-amd64.tar.gz=1c15918af939a8fe1779b71d9e53d2ce09ca7353173a3b357905d9fe1981ff013cf0f90c6b47e1ca66dd168c2f2d742f28a5fb134cc0231d36146da99f91c3cc truffleruby-19.2.0-linux-amd64.tar.gz=1248bdde9cd3651d7042fe4cecff4ad35534868d543fe2e6f3a5bfc3bc9d10d57b4139fc070f0a03861436a1aabc9a8ebdf3356f39b77a4b8f6a1dcf492f70a4 truffleruby-19.2.0-macos-amd64.tar.gz=92c3154ed229a115cf392826494745aae06dd9228dd0996c2c44c550552f13f9c254367d068452fa4a84eef79c19601c79b87e10f3121fd7b83b803514a41cfd truffleruby-19.2.0.1-linux-amd64.tar.gz=53c78cd1f255f2b7031a70a42b65c0bf80c510b9254f5d7ba82b4787f55f5b09cfa9544c424a90f4619a74179fed07c168bd501e34772ef836a773e89c467cc5 truffleruby-19.2.0.1-macos-amd64.tar.gz=ac11523cd49fac50de1e441039e429fb8cd6c7051d537e5083b64fa68eaa19c9f0a966b269da906c367985f229af82a4811282dbfd0a76ef6565162e1081a659 truffleruby-19.2.1-linux-amd64.tar.gz=c5ffc1b592a74e836a4f6ec75b0e103150a4a40d3183ae853ead38c951a85378163111cf0bd2b81e44548c0a7aeaded3ae8a7ae558d5a02dc9e2cce992b79b58 truffleruby-19.2.1-macos-amd64.tar.gz=bb467b91f66eb7d1e6f1a54a7bc0a3d9503bcbd935e8a02da9ea0b749a51e354b1140d4a4dad6fc05312b560bb9ccdcce4f6583bccd19bb5afee19bf494102fe truffleruby-19.3.0-linux-amd64.tar.gz=0e94777a3feabbf0107ed40847e20dd4e3696ff2b7c3f6ceddf3a53ccd812bd003c84c62a750e8fac9d2490374bf792d69174b48c3ed36b593485d86729136c1 truffleruby-19.3.0-macos-amd64.tar.gz=95470c389e24c865ecdc3d299005cd98f8221a128f3cd75f899b6b7ae5d6dc07962443ce0ff38dfd014589d5aaf08b718dc870a72eb7ea6ced18ec2b2db63095 truffleruby-19.3.0.2-linux-amd64.tar.gz=dc5309b71980657f750b4dd4f8b3bc4e191bc305b638b1e562ff5b0ad7fbba40079ba674caf46226a46b5ca58c10f812354786696264742f351b129fb088a672 truffleruby-19.3.0.2-macos-amd64.tar.gz=ff1c37485ebeff3edcc7081ce09bebe5541012dedff6997662c7f8a064e0ab10bef9a5cdf834263a06ae04ca0391743948bcdea6e6c9d7e1cfef9f21523c2bdb truffleruby-19.3.1-linux-amd64.tar.gz=c724547a9eacfdd135ce05eac9dcfe74e58a5e77c97f88103f83b8513c15c975a0ecf623f623a425ec81fad1b64d3b5e135660d6943608ad08048cda00eace79 truffleruby-19.3.1-macos-amd64.tar.gz=d746b2ad410c15d145d36c676a070ae454ba8e5ec6c594d5ebcf54b1fc719f98e8b8f71b6fd504c3d38df286bd11c5114f73b5ba39be312b11d42d4ca1a17d02 truffleruby-20.0.0-linux-amd64.tar.gz=4efea5ded5fcc6886befba3a3720fe1e5b2e376d46738565e8871a1ce0201a33ed52e78b8af2fb389618bdea99466d126d8537dd0919b0c13f8ff1940cb3e52e truffleruby-20.0.0-macos-amd64.tar.gz=b36488330514b77c7115689042cf2482a0beb9f72a0b05fb4c7a6ecb0835a3da47c3b15c41abd6ffced023e65ecf7eabcfbcc6e41901dcddd0fb3dfed46564c6 truffleruby-20.1.0-linux-amd64.tar.gz=116d57404540b85c15b321793a6f985624a2044af544e659b3607e50159703af5d445e22bff28ae2182dfa752f7500d420e250f6deccc98a2f01e89adba8ac3a truffleruby-20.1.0-macos-amd64.tar.gz=9b1267101dfe78b85c79f7528eb4de96b16933e66d5771efa6272372dac0fb35b199bb9d42773d61f4fa7a15d6cbd18b5753c148f7c3e477c7c4b21633f12b88 truffleruby-20.2.0-linux-amd64.tar.gz=a37eaf8475364b74d948979ac13dc6e6423bf11949ad1d0f2925f78a4495e80de9767001ccdb777c8cfd7f545839fad4d842522620c3acad179404bc4ce6752c truffleruby-20.2.0-macos-amd64.tar.gz=964c1e02cc53e1646060334a9911771e679a8344d811a0f77d5cae3529dfefff259c45505ac84b7debb958514cd5d2276ffd435802085494e0229dd140ce8f00 truffleruby-20.3.0-linux-amd64.tar.gz=ec2d8ff6a5d45fd7091e26430c67cbbdc0f8ffa41e9ac574d48802766fcd144e1f446db807700247ad6d8046b7ed070b5da70ef667e576d6fea60cc64ea5484f truffleruby-20.3.0-macos-amd64.tar.gz=1878f94e05a3c40484bf944a72412b179aa5415a16a7ebc1610cb512a1e1c4a2ce0e98685257ad6e5c14745245c35bb5b28205fb687292c4f17193cbfb3bb606 truffleruby-21.0.0-linux-amd64.tar.gz=b7d1b76cc015d136dbd74515431f4447730850475f81b00885b71b95819134db2656d941736048db42d519f03e1f2df066226513b77208adbdbbeda1f49cab11 truffleruby-21.0.0-macos-amd64.tar.gz=7677b827a9c1758d5f941c512cb0fe8daaa19c3db77b485d7dfa43940151d6b9094c4d9271e18ef5014630142dffb93d168c7ac631a3b5eef6fc61b2f9eecf88 truffleruby-21.1.0-linux-amd64.tar.gz=010e9fb78cab12486641780392be0f284da08dfd955f3a0d1ef72adb52e1c9024b54dc880173645aea2af680b3670a6bb01409198b757239edda4cd9bf2b1e90 truffleruby-21.1.0-macos-amd64.tar.gz=96ef8481faef1bfa7f01bb4d396818ef6f0943d19c6a23dedb68f8346740b72bf06efc707bdd29158cf991cc7073c97f429a07b02c2a48050512b46369850058 truffleruby-21.2.0-linux-amd64.tar.gz=c20af04909a852cb676c90403d852fb367d56eac0f9cf8ba42caa4cad1013ba393cc4611e434614ad132b7b0ed61160aadd887001b08de0767cf58f5e149efe7 truffleruby-21.2.0-macos-amd64.tar.gz=0b8d9633fde53aad78f0baf52858cd5a5716f53ff21698baab17da4a625b4369b88dbd664193e3f0d1b40e64c88699ab4f04bbe40f54189a588c93678962a7be truffleruby-21.2.0.1-linux-amd64.tar.gz=15ceeee383114f974aed5f16c99131d56947e13cfe248b97e55d61263ccd51aa56fc3e0df215196ef7f80ccba9e7f19e7f261d7a91d54bde2d9992caba682d82 truffleruby-21.2.0.1-macos-amd64.tar.gz=8a8762d90c19db4f48433ce0e3f3339e290685d79c6ee9bb7d4359c741edfa6a7360ff65124433d964730ac25b2cc6d8b581191b0a51479f11c2a80031a6c1c8 truffleruby-21.3.0-linux-amd64.tar.gz=b0c07b1ea797de92447a81b350d460c125a2efaff3c290637c4bcf1c216b5abd11148cfb143ad397062a96f36beade8234d0785c42f58fceac0011f629a5220b truffleruby-21.3.0-macos-amd64.tar.gz=42e607fa52a534123989ad232691ede65aa1c615f39320d93aa8ab9c21924eea7bc0aa49aef1a540ec972e2b3dc775d22a99eca3e0c9bc450c525f9020fbb975 truffleruby-22.0.0.2-linux-amd64.tar.gz=2231a0cfd27238c34ea0bbad27ba387453e48f39032607cbb829b347ea6ac804df15eb3f84d50b09248782d6202284498e7bc9aaa2060f0ce81bb83a84d700ad truffleruby-22.0.0.2-macos-amd64.tar.gz=1d7ac44f0862ad23cf17a7bba73d23dfd4727aadd9a3aa9633361e9bcd19655d163e160eae9c8db8ec9892f8fbf82d7a38b1cd689475bf41609a828208098623 truffleruby-22.1.0-linux-amd64.tar.gz=c4c2f9bf4236118c8ea62c08bad89e1034ecdfa0c4815693961c4d2b1b30ca043fe958abfec9cf36a8638aa2e005e71fcc244ebffd9ce11eb68cf48bd98c29d3 truffleruby-22.1.0-macos-amd64.tar.gz=507004ade838e614955e23331845839be656aaeae7869ed3d989c10e6491775a12313ac9ef03e14945f20f5e76d46ce6f7bb860af68a627c48065399cea3c567 truffleruby-22.2.0-linux-amd64.tar.gz=37c09249ef387df3e0614f646abb444cb5b7b2751538ab0432e703abe92a81b82e0d15f89d5ad7cd58afe5f30d9a92dc8471d19f1c1ce10b50478ac74f247739 truffleruby-22.2.0-linux-aarch64.tar.gz=49a7cfb4c81980d9c7a1588ef9f76a9bfb759d4b1925ab11f230d99c15a62e162a08249d23cf5646e2d38ecc2005e27103f2e5d92b83b0a182a4e64319b70c0d truffleruby-22.2.0-macos-amd64.tar.gz=d4c206fb0a5e63c5b7f61f2e62de854e4d0817075ef9ded237d98cd821c286e88d7b150d140d9907a957209f39be96c7025560e3908c89aa337925d2fba690af truffleruby-22.2.0-macos-aarch64.tar.gz=a01c18803777a74717ad699b6ee51eb759d881fb436d24338b557c52d4a693079d7b55f108394ccad0dd69c974cb895f4a36854355e84fecb67e41bf9eb18514 truffleruby-22.3.0-linux-amd64.tar.gz=d53472ae892dadc81c6fe63a597ccfb67e133958431b11716db4d920c78fc86f7496e4b10322d041c900bed77d27e02850da20aa95b297d63a9de2e72cdf3c76 truffleruby-22.3.0-linux-aarch64.tar.gz=dab63d49db4722f0c174ce8b882413102520ff649182946ba332ef5ba0fc6b58913595539a20b59e460faab2fba36f762dc8eb66aa729d4a6bb90feb2a95f053 truffleruby-22.3.0-macos-amd64.tar.gz=15c91d25fd6fb1d9f3f2a0b36676da5c8a76d62be86cff463ebe6c7e6aed2d9b6de9062021ab1b9b29cfb7a92b5682c860939acd71d12dba7e4a6bf3964fef3d truffleruby-22.3.0-macos-aarch64.tar.gz=7c44d0dd07e4ecd84a92f6dd574dc185906121b8eb75f6fe097b9d4738aa30751664d70e9027e072eeaa1dffa05fe7bcfc06be0c2dc950142f60664baf5eac69 truffleruby-22.3.1-linux-amd64.tar.gz=f41d3bd22500b7291121368169f8558df4563c840a01b70ff7feea3593f0152d8d77d4437af362bad62f25b79bce1ce8ddaa1bd8172a2a7ef8b61cdb6e478c9e truffleruby-22.3.1-linux-aarch64.tar.gz=1ca5221f0dc5ae3e0bd9545be474e115b2e62737701df95c6ee6cdaae5d82815acbe6af961ff23afee64dc26e655c7786d4347e3694c140773f065534322ee59 truffleruby-22.3.1-macos-amd64.tar.gz=bae16cc04c6018703833121f4258c3f18fa5062309d0600458be3c51c838bc63976a026db0f28d23005df9b640ccad0a9cafc56610a5ca9c24951c66b62097d9 truffleruby-22.3.1-macos-aarch64.tar.gz=b56e230d8fbc95d19364e695aaf1e552238b02ace7056f636808a7d7510777cddfde572ace5238ea1e314351bdd1a053ab3912d0889f51f55c722797c83eaaee truffleruby-23.0.0-preview1-linux-amd64.tar.gz=d538412f12d5ce743c351acbaa483b8b85dd2cf84fe06b3e90ca21f3c2fc0465df9c1773b3515fe4296d599f45e9cbb935dc5a69fe45668321e5639d58608ef4 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=f10b5ac749b11f93c2469f2c8a713ad090cb653761ae0a3e1ba4c19b0c96bd61c5e8da74d8944f9487c2d327d268a188f2cb56028d2beaca2a7816e63123600b truffleruby-23.0.0-preview1-macos-amd64.tar.gz=cd9db49c4253bd66cad6f9ae111c83d3befd0102a7ccb72a2407d22dc576ba7f3a26a90cd479f26dee3565d2f893a2b7c8b549e2351336f35d2632e57966657c truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=28b77d9943cd1617e0445633a9fea8911cfa975f5c581192439cd0944d2a17c2b0558e3e4112588b5fc77b57c48d857ad68ac51fcb867250625ad85406d87acc truffleruby-23.0.0-linux-amd64.tar.gz=da702de2e8c994f2646a3de5b44824210dbd37129cd2f91c3bdd990a1b0d0b05dee4443ad0f6cf98fdb4e489c9f4cde64f3561baf486dc642d4981a1a1812925 truffleruby-23.0.0-linux-aarch64.tar.gz=808254a154adcfd1bbd6e22bcdafebb6169c6f8cfd1c55382d446bb66002384ee844dcd8b5f642703ef440f7566645d190081f45e04a7d8d59bf87571cb4430a truffleruby-23.0.0-macos-amd64.tar.gz=f775d57e63c606eef424a1115408ed8539ef47d6bea0125ad1de7ee4fd5971e96747cb7f5d22d91d2f004edbd6ed6b9b5bd014127dc1abe7821a3a987a72d9dc truffleruby-23.0.0-macos-aarch64.tar.gz=000069854458f81d97eefe14123fbb69937942825e77d35602d55fa279123808177a34f252aec9dcfa48b93feacbee81ae0f0e7043c2d8a9ace2a4bb61ab253f truffleruby-23.1.0-linux-amd64.tar.gz=1868799d989c51798cf07b5243457af7ae2436dd19805fd634c98b2f1885266b5c3ec81dde668c2e5a290e9028f6f9fd223d153489df6ffcc74d45240aa020ad truffleruby-23.1.0-linux-aarch64.tar.gz=2766621877996ad35fddb94f978feed531307e8abf601dcf863754c96782b8149c3ac512dfe6dd2bdef0fe0e8a968bdd77608c41020434aaef4e7250c09edd74 truffleruby-23.1.0-macos-amd64.tar.gz=06c5a1d6ad644fd81737f0a1fd24c1529f712abe2a4485ad597aca7c35ca2af898121bb5883552cf518e2afdcb4221c8ad013759b46a69e34249e7c5ebe2b170 truffleruby-23.1.0-macos-aarch64.tar.gz=496cacc5cf413a48b60184e097a962ab5d2236c539f07cc0a9a2d9ef57dfc911a26b125cc3ad9408f6170c6f93c7562f35729c8313be0301972be21c10097942 truffleruby-23.1.1-linux-amd64.tar.gz=dbca85e281bf2484371a0bbcc202ca700acc704304d966b9202cf3835e82f6eb502e43522355f4c9e5a743877d93f5609006fbba2c5e6343a89de130e5209f6a truffleruby-23.1.1-linux-aarch64.tar.gz=6a58842d79247d8a64c513d68db9d53ea5640c02f71a1bc45f103baaaca67bb224939ae5f21ef55daa9d9b9697404052d39a3c382768ca366ab7892b8bf1abbe truffleruby-23.1.1-macos-amd64.tar.gz=7cc6bc957b7ffa42e9fbfe2f6e3014bf1e7996f2754e9e74377078c2c7bc7ac8e10598f1e1452839fc5b9583c823a2a735731ca193a6af2814a02566cc4cd9e4 truffleruby-23.1.1-macos-aarch64.tar.gz=a85b8189ef8a280f6a27d4c1c93893f844266dbdc15b8c4988cdf581613a353508fae4872ac9380efcc47f36357e137861521712c00ce8548041762a8987a9b2 truffleruby-23.1.2-linux-amd64.tar.gz=6307fd71fb1431fb12346d1f13dee4b3afe53947e8a9c1f3e3aa0baae5f9fc9e1496ede0a7d86b169d912ffef9625af998b4e698dc57a2a649140150e3fae28a truffleruby-23.1.2-linux-aarch64.tar.gz=0f0c5e4aa4e9fbc9b9f91d2b3d3fbfe26e78c5bc5b369fc78dd54775a7582b8c084a64f02848058bec79387fd80b09a5a5594ecfb268635fe76e1f9d957c2e92 truffleruby-23.1.2-macos-amd64.tar.gz=648401a73b29c28862a1fa077c2e1bf8fff65015c8bc690ff883a00a3dfd99389ffdb71f39ad85a4f16c531470f4cc891ae51ec927a426b0fa05fa85c9c6a2f9 truffleruby-23.1.2-macos-aarch64.tar.gz=4ec88684c09aacfa1d8bfed9a17243579ededacecd869e98e12841710bae29ed6e5f080611e53fc217a853f730bb2a9cb3d47ef15443eb8a1ad76a120118c8a5 truffleruby-24.0.0-linux-amd64.tar.gz=3a59a4dc58ad03549d8e63db1485767757715fc9aec21b2b67b1440b13871a04541abeff9bc8201b3088e1865360b1667459e536d3cfb09687dbffca95deafeb truffleruby-24.0.0-linux-aarch64.tar.gz=50f3993b7362bb6e7da80f7327df3d079bb02f98b67012e2135005d77e61648e4f3268f767d8ca245ec5889ff934fbcccb94fd5ecbd55bb0cd9cca900fe10509 truffleruby-24.0.0-macos-amd64.tar.gz=9ec8bb340b15e29550448e123e3ab0f183edb9bbe7e052743cb2306cbd1956a5789c5a367c80c5e8d913dce2b804448dd6815e4d3421515166daf8db51d37c7d truffleruby-24.0.0-macos-aarch64.tar.gz=499f83bf65dcb6ecc92414a3550673e6a0baaddfe3ab13c0bd7aa1bdde1ae2a61d9d0ca8001c0d12688d9e09f98f9e2946a651220fe7d200bb0ec6f285394701 truffleruby-24.0.1-linux-amd64.tar.gz=62b4e8508eba8cdaac70e99ac9cb0b33a663b4195d79b2dad3d771ef538c6c41d1d91bb7bb07fbbafbcbbcaf17814ffaf6d6bdbafd474ba6a8ecdac30315a8c9 truffleruby-24.0.1-linux-aarch64.tar.gz=817d877848ea4bb55658ce34bbda52926be12426a8a5e1c4588bc0ec1896018b06dce176336b382f80a7c6d073d4331b20694a7797ee8fdf0177e973053bf929 truffleruby-24.0.1-macos-amd64.tar.gz=2ea65bea154aa38cce3f00f24fc9a4aab5e7478fafd070d0cc966878371c070d5a1776b7405e2c9e4cfa14e5c51219ed0fa988294eb4708690983b348886f439 truffleruby-24.0.1-macos-aarch64.tar.gz=bc1923e21768d34779c1bcd7850456a01ddc01acd1ccf20f4fb4a446fb847f8c51b1ff4a7c0cdc317ef8ce057ac24f18f25b778a02a6e2b185e0055d946ecaf2 +truffleruby-24.0.2-linux-amd64.tar.gz=5d111beb862b618c4e6a7f8aea1d3d6476740513efdd59bf980a2b6d525a017f46fe02017b075962a4919a001b60bd9a070e69fedfa8a85533c0adbad2a8d86b +truffleruby-24.0.2-linux-aarch64.tar.gz=8e3ba19df4e5509c4719bc3bb621f70ca6a0e683d48a296703649b88abd83a165e8a64ad2d7dc45394b6de0b214a95a395fa449f5393dd9e67deab9e149cf494 +truffleruby-24.0.2-macos-amd64.tar.gz=06d3b5533c4e26aa1356e602c672efad99208aaee96110904216e16dcfb1d99a7535c3ef275f9a14635dd2f05110798b3c75d71199f6010f23c92c6990492cef +truffleruby-24.0.2-macos-aarch64.tar.gz=ba36d3f1680112e6623b14a4bb902a5f65f11e9827f44462161b1c79ee344ca340566289aa1f841c1e213daef5608c159343cc203d07f41c2a55eaeb25db0987
rvm/rvm
210da3d61af4326bdbb22cb5c46f376f259a985c
Add support for Ruby 3.3.4 (#5488)
diff --git a/CHANGELOG.md b/CHANGELOG.md index a8a776f..0d295de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,579 +1,580 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Use OpenSSL 3 for Ruby 3.2 and 3.3 [\#5480](https://github.com/rvm/rvm/pull/5480) * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) * Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) * Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) * Install `libncurses-dev` instead of `libncurses5-dev` on newer Debian and Ubuntu versions [\#5477](https://github.com/rvm/rvm/pull/5477) * Use `zlib-ng-compat` packages for Fedora 40+ [\#5479](https://github.com/rvm/rvm/pull/5479) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) * 3.3.3 [\#5474](https://github.com/rvm/rvm/pull/5474) +* 3.3.4 [\#5488](https://github.com/rvm/rvm/pull/5488) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) * 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.3.15.0 [\#5482](https://github.com/rvm/rvm/pull/5482) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) * 9.4.8.0 [\#5484](https://github.com/rvm/rvm/pull/5484) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) #### Upgraded Ruby interpreters: * Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159), 2.5.0-preview1 [\#4204](https://github.com/rvm/rvm/pull/4204), 2.2.9, 2.3.6, 2.4.3 and 2.5.0-rc1 [\#4261](https://github.com/rvm/rvm/pull/4261), 2.5.0 [\#4265](https://github.com/rvm/rvm/pull/4265), 2.6.0-preview1 [\#4317](https://github.com/rvm/rvm/pull/4317), 2.2.10, 2.3.7, 2.4.4, 2.5.1 [\#4340](https://github.com/rvm/rvm/pull/4340) and 2.6.0-preview2[\#4395](https://github.com/rvm/rvm/pull/4395) * Add support for Rubinius 3.85-3.100 * Add support for JRuby 9.1.14.0 [\#4224](https://github.com/rvm/rvm/pull/4224), 9.1.15.0 [\#4258](https://github.com/rvm/rvm/pull/4258), 9.1.16.0 [\#4316](https://github.com/rvm/rvm/pull/4316), 9.1.17.0 [\#4366](https://github.com/rvm/rvm/pull/4366), 9.2.0.0 [\#4390](https://github.com/rvm/rvm/pull/4390) * Add support for mruby 1.4.0 [\#4286](https://github.com/rvm/rvm/pull/4286) * Add support for MagLev 1.1* and 1.2Alpha-1.2Alpha4 [\#4289](https://github.com/rvm/rvm/pull/4289) * Add support for RubyGems 2.6.14 [\#4205](https://github.com/rvm/rvm/pull/4205), 2.7.0-2.7.4 [\#4276](https://github.com/rvm/rvm/issues/4276) and 2.7.5-6 #### Binaries: * Ubuntu 16.04 x64 binaries for Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4362](https://github.com/rvm/rvm/issues/4362), 2.2.9, 2.3.6 and 2.4.3 [\#4259](https://github.com/rvm/rvm/issues/4259), 2.2.8, 2.3.5 and 2.4.2 [\#4161](https://github.com/rvm/rvm/issues/4161), 2.5.0 [\#4272](https://github.com/rvm/rvm/pull/4272) * Ubuntu 17.04 for Ruby 2.1.\*, 2.2.\* [\#4233](https://github.com/rvm/rvm/pull/4233) ## [1.29.3](https://github.com/rvm/rvm/releases/tag/1.29.3) 10 September 2017 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.2...1.29.3) #### New features: * Add RVM commands missing in bash shell completion [\#4078](https://github.com/rvm/rvm/pull/4078) * Railsexpress patches for 2.3.4, 2.3-head [\#4084](https://github.com/rvm/rvm/pull/4084), 2.2.5 and 2.2.6 [\#4153](https://github.com/rvm/rvm/pull/4153) * Update `gem-wrappers` to 1.3.0: Show warnings when the target binary is missing or is not executable [gem-wrappers \#9](https://github.com/rvm/gem-wrappers/issues/9) * Detect Zorin OS as Ubuntu [\#4140](https://github.com/rvm/rvm/issues/4140) #### Bug fixes: * Infinite loop in `gemset_create` [\#4102](https://github.com/rvm/rvm/issues/4102) * Command not found `__rvm_remote_version` error [\#4085](https://github.com/rvm/rvm/pull/4085) * Fix path of version script in `environment` [\#4117](https://github.com/rvm/rvm/pull/4117) * Define `cd()`, `pushd()` and `popd()` properly when using zsh [\#4132](https://github.com/rvm/rvm/pull/4132) * Update gem-wrappers to 1.3.1: Avoid warnings for missing ruby binaries [\#4104](https://github.com/rvm/rvm/issues/4104) * Handles :engine=> and :engine_version=> in Gemfile * Makes $rvm_ruby_string is not installed searchable by adding a fixed keyword * Correctly quotes suggested install command * Fix path to version script in rvm-installer [\#4134](https://github.com/rvm/rvm/pull/4134) * Fix rvm autolibs status, fix [\#4123](https://github.com/rvm/rvm/issues/4123) * Ruby 2.3.x and older are not compatible with OpenSSL 1.1.x on Arch [\#4006](https://github.com/rvm/rvm/issues/4006) * Allow comments after ruby directive in Gemfile [\#4056](https://github.com/rvm/rvm/issues/4056) * Ruby 2.3/4 compilation fix for GCC 7 [\#4080](https://github.com/rvm/rvm/issues/4080) [\#4115](https://github.com/rvm/rvm/issues/4115) * Add warning for sudo users [\#4009](https://github.com/rvm/rvm/issues/4009) * Allows running RVM shell function in Bash with `set -o nounset` [\#4013](https://github.com/rvm/rvm/issues/4013) * Ensure `rvm_hooks_path` is set [\#3902](https://github.com/rvm/rvm/issues/3902) * Allow building static ruby with `--disbale-shared` [\#4091](https://github.com/rvm/rvm/issues/4091) * Restore detection of `gpg` command for veryfication of signatures [\#4059](https://github.com/rvm/rvm/issues/4059) * Update `gem-wrappers` to 1.3.2: Avoid nested chdir warnings [gem-wrappers \#11](https://github.com/rvm/gem-wrappers/pull/11) * Fix RVM folder cleanup during installation [\#4333](https://github.com/rvm/rvm/issues/4333) * Fix found project file reject reasons for bash -e [\#4314](https://github.com/rvm/rvm/pull/4314) diff --git a/config/known b/config/known index c58b274..58d2b0c 100644 --- a/config/known +++ b/config/known @@ -1,81 +1,81 @@ # MRI Rubies [ruby-]1.8.6[-p420] [ruby-]1.8.7[-head] # security released on head [ruby-]1.9.1[-p431] [ruby-]1.9.2[-p330] [ruby-]1.9.3[-p551] [ruby-]2.0.0[-p648] [ruby-]2.1[.10] [ruby-]2.2[.10] [ruby-]2.3[.8] [ruby-]2.4[.10] [ruby-]2.5[.9] [ruby-]2.6[.10] [ruby-]2.7[.8] [ruby-]3.0[.7] [ruby-]3.1[.5] [ruby-]3.2[.4] -[ruby-]3[.3.3] +[ruby-]3[.3.4] [ruby-]3.4[.0-preview1] ruby-head # for forks use: rvm install ruby-head-<name> --url https://github.com/github/ruby.git --branch 2.2 # JRuby jruby-1.6[.8] jruby-1.7[.27] jruby-9.1[.17.0] jruby-9.2[.21.0] jruby-9.3[.15.0] jruby[-9.4.8.0] jruby-head # Rubinius rbx-1[.4.3] rbx-2.3[.0] rbx-2.4[.1] rbx-2[.5.8] rbx-3[.107] rbx-4[.20] rbx-5[.0] rbx-head # TruffleRuby truffleruby[-24.0.1] # Opal opal # Minimalistic ruby implementation - ISO 30170:2012 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1[.4.1] mruby-2.0.1 mruby-2[.1.1] mruby[-head] # Ruby Enterprise Edition ree-1.8.6 ree[-1.8.7][-2012.02] # Topaz topaz # MagLev maglev-1.0.0 maglev-1.1[RC1] maglev[-1.2Alpha4] maglev-head # Mac OS X Snow Leopard Or Newer macruby-0.10 macruby-0.11 macruby[-0.12] macruby-nightly macruby-head # IronRuby ironruby[-1.1.3] ironruby-head diff --git a/config/known_strings b/config/known_strings index 0cb674e..8a6bc6b 100644 --- a/config/known_strings +++ b/config/known_strings @@ -5,558 +5,559 @@ jruby-0.9.1 jruby-0.9.2 jruby-0.9.8 jruby-0.9.9 jruby-1.0.0RC1 jruby-1.0.0RC2 jruby-1.0.0RC3 jruby-1.0 jruby-1.0.1 jruby-1.0.2 jruby-1.0.3 jruby-1.1b1 jruby-1.1RC1 jruby-1.1RC2 jruby-1.1RC3 jruby-1.1 jruby-1.1.1 jruby-1.1.2 jruby-1.1.3 jruby-1.1.4 jruby-1.1.5 jruby-1.1.6RC1 jruby-1.1.6 jruby-1.2.0RC1 jruby-1.2.0RC2 jruby-1.2.0 jruby-1.3.0RC1 jruby-1.3.0RC2 jruby-1.3.0 jruby-1.3.1 jruby-1.4.0RC1 jruby-1.4.0RC2 jruby-1.4.0RC3 jruby-1.4.0 jruby-1.4.1 jruby-1.5.0.RC1 jruby-1.5.0.RC2 jruby-1.5.0.RC3 jruby-1.5.0 jruby-1.5.1 jruby-1.5.2 jruby-1.5.3 jruby-1.5.4 jruby-1.5.5 jruby-1.5.6 jruby-1.6.0.RC1 jruby-1.6.0.RC2 jruby-1.6.0.RC3 jruby-1.6.0 jruby-1.6.1 jruby-1.6.2 jruby-1.6.3 jruby-1.6.4 jruby-1.6.5 jruby-1.6.5.1 jruby-1.6.7 jruby-1.6.7.2 jruby-1.6.8 jruby-1.7.0.preview1 jruby-1.7.0.preview2 jruby-1.7.0.RC1 jruby-1.7.0.RC2 jruby-1.7.0 jruby-1.7.1 jruby-1.7.2 jruby-1.7.3 jruby-1.7.4 jruby-1.7.5 jruby-1.7.6 jruby-1.7.7 jruby-1.7.8 jruby-1.7.9 jruby-1.7.10 jruby-1.7.11 jruby-1.7.12 jruby-1.7.13 jruby-1.7.14 jruby-1.7.15 jruby-1.7.16 jruby-1.7.16.1 jruby-1.7.16.2 jruby-1.7.17 jruby-1.7.18 jruby-1.7.19 jruby-1.7.20 jruby-1.7.20.1 jruby-1.7.21 jruby-1.7.22 jruby-1.7.23 jruby-1.7.24 jruby-1.7.25 jruby-1.7.26 jruby-1.7.27 jruby-9.0.0.0.pre1 jruby-9.0.0.0.pre2 jruby-9.0.0.0.rc1 jruby-9.0.0.0.rc2 jruby-9.0.0.0 jruby-9.0.1.0 jruby-9.0.2.0 jruby-9.0.3.0 jruby-9.0.4.0 jruby-9.0.5.0 jruby-9.1.0.0 jruby-9.1.1.0 jruby-9.1.2.0 jruby-9.1.3.0 jruby-9.1.4.0 jruby-9.1.5.0 jruby-9.1.6.0 jruby-9.1.7.0 jruby-9.1.8.0 jruby-9.1.9.0 jruby-9.1.10.0 jruby-9.1.11.0 jruby-9.1.12.0 jruby-9.1.13.0 jruby-9.1.14.0 jruby-9.1.15.0 jruby-9.1.16.0 jruby-9.1.17.0 jruby-9.2.0.0 jruby-9.2.1.0 jruby-9.2.2.0 jruby-9.2.3.0 jruby-9.2.4.0 jruby-9.2.4.1 jruby-9.2.5.0 jruby-9.2.6.0 jruby-9.2.7.0 jruby-9.2.8.0 jruby-9.2.9.0 jruby-9.2.10.0 jruby-9.2.11.0 jruby-9.2.11.1 jruby-9.2.12.0 jruby-9.2.13.0 jruby-9.2.14.0 jruby-9.2.15.0 jruby-9.2.16.0 jruby-9.2.17.0 jruby-9.2.18.0 jruby-9.2.19.0 jruby-9.2.20.0 jruby-9.2.20.1 jruby-9.2.21.0 jruby-9.3.0.0 jruby-9.3.1.0 jruby-9.3.2.0 jruby-9.3.3.0 jruby-9.3.4.0 jruby-9.3.6.0 jruby-9.3.7.0 jruby-9.3.8.0 jruby-9.3.9.0 jruby-9.3.10.0 jruby-9.3.11.0 jruby-9.3.13.0 jruby-9.3.14.0 jruby-9.3.15.0 jruby-9.4.0.0 jruby-9.4.1.0 jruby-9.4.2.0 jruby-9.4.3.0 jruby-9.4.4.0 jruby-9.4.5.0 jruby-9.4.6.0 jruby-9.4.7.0 jruby-9.4.8.0 macruby-0.12 maglev-1.0.0 maglev-1.1beta maglev-1.1beta2 maglev-1.1RC1 maglev-1.2Alpha maglev-1.2Alpha2 maglev-1.2Alpha3 maglev-1.2Alpha4 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1.4.0 mruby-1.4.1 mruby-2.0.0 mruby-2.0.1 mruby-2.1.0-rc mruby-2.1.0 mruby-2.1.1-rc mruby-2.1.1-rc2 mruby-2.1.1 rbx-1.0.0-20100514 rbx-1.0.1-20100603 rbx-1.1.0-20100923 rbx-1.1.1-20101116 rbx-1.2.0-20101221 rbx-1.2.1-20110215 rbx-1.2.2-20110222 rbx-1.2.3-20110315 rbx-1.2.4-20110705 rbx-1.3.2 rbx-1.3.3 rbx-1.4.1 rbx-1.4.3 rbx-2.0.0 rbx-2.1.0 rbx-2.1.1 rbx-2.2.0 rbx-2.2.2 rbx-2.2.3 rbx-2.2.4 rbx-2.2.5 rbx-2.2.6 rbx-2.2.7 rbx-2.2.8 rbx-2.2.9 rbx-2.2.10 rbx-2.3.0 rbx-2.4.0 rbx-2.4.1 rbx-2.5.0 rbx-2.5.1 rbx-2.5.2 rbx-2.5.3 rbx-2.5.4 rbx-2.5.5 rbx-2.5.6 rbx-2.5.7 rbx-2.5.8 rbx-3.70 rbx-3.71 rbx-3.72 rbx-3.73 rbx-3.74 rbx-3.75 rbx-3.76 rbx-3.77 rbx-3.78 rbx-3.79 rbx-3.80 rbx-3.81 rbx-3.82 rbx-3.83 rbx-3.84 rbx-3.85 rbx-3.86 rbx-3.87 rbx-3.88 rbx-3.89 rbx-3.90 rbx-3.91 rbx-3.92 rbx-3.93 rbx-3.94 rbx-3.95 rbx-3.96 rbx-3.97 rbx-3.98 rbx-3.99 rbx-3.100 rbx-3.101 rbx-3.102 rbx-3.103 rbx-3.104 rbx-3.105 rbx-3.106 rbx-3.107 rbx-4.0 rbx-4.1 rbx-4.2 rbx-4.3 rbx-4.4 rbx-4.5 rbx-4.6 rbx-4.7 rbx-4.8 rbx-4.9 rbx-4.10 rbx-4.11 rbx-4.12 rbx-4.13 rbx-4.14 rbx-4.15 rbx-4.16 rbx-4.17 rbx-4.18 rbx-4.19 rbx-4.20 rbx-5.0 ree-1.8.6-20080507 ree-1.8.6-20080621 ree-1.8.6-20080623 ree-1.8.6-20080624 ree-1.8.6-20080709 ree-1.8.6-20080810 ree-1.8.6-20081205 ree-1.8.6-20081215 ree-1.8.6-20090113 ree-1.8.6-20090201 ree-1.8.6-20090421 ree-1.8.6-20090520 ree-1.8.6-20090610 ree-1.8.6-20090928 ree-1.8.7-2009.10 ree-1.8.7-2010.01 ree-1.8.7-2010.02 ree-1.8.7-2011.01 ree-1.8.7-2011.02 ree-1.8.7-2011.03 ree-1.8.7-2011.12 ree-1.8.7-2012.02 ruby-1.8.5-p115 ruby-1.8.5-p231 ruby-1.8.6-p286 ruby-1.8.6-p287 ruby-1.8.6-p369 ruby-1.8.6-p383 ruby-1.8.6-p398 ruby-1.8.6-p399 ruby-1.8.6-p420 ruby-1.8.7-p160 ruby-1.8.7-p174 ruby-1.8.7-p248 ruby-1.8.7-p249 ruby-1.8.7-p299 ruby-1.8.7-p302 ruby-1.8.7-p330 ruby-1.8.7-p334 ruby-1.8.7-p352 ruby-1.8.7-p357 ruby-1.8.7-p358 ruby-1.8.7-p370 ruby-1.8.7-p371 ruby-1.8.7-p374 ruby-1.9.0 ruby-1.9.1-p129 ruby-1.9.1-p243 ruby-1.9.1-p376 ruby-1.9.1-p378 ruby-1.9.1-p429 ruby-1.9.1-p431 ruby-1.9.2-p0 ruby-1.9.2-p136 ruby-1.9.2-p180 ruby-1.9.2-p290 ruby-1.9.2-p318 ruby-1.9.2-p320 ruby-1.9.2-p330 ruby-1.9.3-preview1 ruby-1.9.3-rc1 ruby-1.9.3-p0 ruby-1.9.3-p125 ruby-1.9.3-p194 ruby-1.9.3-p286 ruby-1.9.3-p327 ruby-1.9.3-p362 ruby-1.9.3-p374 ruby-1.9.3-p385 ruby-1.9.3-p392 ruby-1.9.3-p429 ruby-1.9.3-p448 ruby-1.9.3-p484 ruby-1.9.3-p545 ruby-1.9.3-p547 ruby-1.9.3-p550 ruby-1.9.3-p551 ruby-2.0.0-preview1 ruby-2.0.0-preview2 ruby-2.0.0-rc1 ruby-2.0.0-rc2 ruby-2.0.0-p0 ruby-2.0.0-p195 ruby-2.0.0-p247 ruby-2.0.0-p353 ruby-2.0.0-p451 ruby-2.0.0-p481 ruby-2.0.0-p576 ruby-2.0.0-p594 ruby-2.0.0-p598 ruby-2.0.0-p643 ruby-2.0.0-p645 ruby-2.0.0-p647 ruby-2.0.0-p648 ruby-2.1.0-preview1 ruby-2.1.0-preview2 ruby-2.1.0-rc1 ruby-2.1.0 ruby-2.1.1 ruby-2.1.2 ruby-2.1.3 ruby-2.1.4 ruby-2.1.5 ruby-2.1.6 ruby-2.1.7 ruby-2.1.8 ruby-2.1.9 ruby-2.1.10 ruby-2.2.0-preview1 ruby-2.2.0-preview2 ruby-2.2.0-rc1 ruby-2.2.0 ruby-2.2.1 ruby-2.2.2 ruby-2.2.3 ruby-2.2.4 ruby-2.2.5 ruby-2.2.6 ruby-2.2.7 ruby-2.2.8 ruby-2.2.9 ruby-2.2.10 ruby-2.3.0-preview1 ruby-2.3.0-preview2 ruby-2.3.0 ruby-2.3.1 ruby-2.3.2 ruby-2.3.3 ruby-2.3.4 ruby-2.3.5 ruby-2.3.6 ruby-2.3.7 ruby-2.3.8 ruby-2.4.0-preview1 ruby-2.4.0-preview2 ruby-2.4.0-preview3 ruby-2.4.0-rc1 ruby-2.4.0 ruby-2.4.1 ruby-2.4.2 ruby-2.4.3 ruby-2.4.4 ruby-2.4.5 ruby-2.4.6 ruby-2.4.7 ruby-2.4.8 ruby-2.4.9 ruby-2.4.10 ruby-2.5.0-preview1 ruby-2.5.0-rc1 ruby-2.5.0 ruby-2.5.1 ruby-2.5.2 ruby-2.5.3 ruby-2.5.4 ruby-2.5.5 ruby-2.5.6 ruby-2.5.7 ruby-2.5.8 ruby-2.5.9 ruby-2.6.0-preview1 ruby-2.6.0-preview2 ruby-2.6.0-preview3 ruby-2.6.0-rc1 ruby-2.6.0-rc2 ruby-2.6.0 ruby-2.6.1 ruby-2.6.2 ruby-2.6.3 ruby-2.6.4 ruby-2.6.5 ruby-2.6.6 ruby-2.6.7 ruby-2.6.8 ruby-2.6.9 ruby-2.6.10 ruby-2.7.0-preview1 ruby-2.7.0-preview2 ruby-2.7.0-preview3 ruby-2.7.0-rc1 ruby-2.7.0-rc2 ruby-2.7.0 ruby-2.7.1 ruby-2.7.2 ruby-2.7.3 ruby-2.7.4 ruby-2.7.5 ruby-2.7.6 ruby-2.7.7 ruby-2.7.8 ruby-3.0.0-preview1 ruby-3.0.0-preview2 ruby-3.0.0-rc1 ruby-3.0.0 ruby-3.0.1 ruby-3.0.2 ruby-3.0.3 ruby-3.0.4 ruby-3.0.5 ruby-3.0.6 ruby-3.0.7 ruby-3.1.0-preview1 ruby-3.1.0 ruby-3.1.1 ruby-3.1.2 ruby-3.1.3 ruby-3.1.4 ruby-3.1.5 ruby-3.2.0-preview1 ruby-3.2.0-preview2 ruby-3.2.0-preview3 ruby-3.2.0-rc1 ruby-3.2.0 ruby-3.2.1 ruby-3.2.2 ruby-3.2.3 ruby-3.2.4 ruby-3.3.0-preview1 ruby-3.3.0-preview2 ruby-3.3.0-preview3 ruby-3.3.0 ruby-3.3.1 ruby-3.3.2 ruby-3.3.3 +ruby-3.3.4 ruby-3.4.0-preview1 truffleruby-1.0.0-rc2 truffleruby-1.0.0-rc3 truffleruby-1.0.0-rc5 truffleruby-1.0.0-rc6 truffleruby-1.0.0-rc7 truffleruby-1.0.0-rc8 truffleruby-1.0.0-rc9 truffleruby-1.0.0-rc10 truffleruby-1.0.0-rc11 truffleruby-1.0.0-rc12 truffleruby-1.0.0-rc13 truffleruby-1.0.0-rc14 truffleruby-1.0.0-rc15 truffleruby-1.0.0-rc16 truffleruby-19.0.0 truffleruby-19.0.2 truffleruby-19.1.0 truffleruby-19.1.1 truffleruby-19.2.0 truffleruby-19.2.0.1 truffleruby-19.2.1 truffleruby-19.3.0 truffleruby-19.3.0.2 truffleruby-19.3.1 truffleruby-20.0.0 truffleruby-20.1.0 truffleruby-20.2.0 truffleruby-20.3.0 truffleruby-21.0.0 truffleruby-21.1.0 truffleruby-21.2.0 truffleruby-21.2.0.1 truffleruby-21.3.0 truffleruby-22.0.0.2 truffleruby-22.1.0 truffleruby-22.2.0 truffleruby-22.3.0 truffleruby-22.3.1 truffleruby-23.0.0-preview1 truffleruby-23.0.0 truffleruby-23.1.0 truffleruby-23.1.1 truffleruby-23.1.2 truffleruby-24.0.0 truffleruby-24.0.1 diff --git a/config/md5 b/config/md5 index 28a6f9d..c6648c8 100644 --- a/config/md5 +++ b/config/md5 @@ -1278,756 +1278,757 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.6.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.7.tar.bz2=5cc60a18ac4cca5322994c6d19753846 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.8.tar.bz2=45b547a987088761a88143e5fabef13e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.9.tar.bz2=e993696c73e6be0017d90ccdddbcc644 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.0.tar.bz2=032a73d5182d84cbbf20b6e7e310c7c2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.1.tar.bz2=07c61bc0c9e09fc87808f62985cbff25 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.2.tar.bz2=62745ec761a45826841002e72cfca795 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.3.tar.bz2=538383cc35e5710a2175f36416ca3b7c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.4.tar.bz2=8a17255fa833fe3ff9c0275db79bfbff https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar.bz2=66dc3fdf49b1371fd6d362f3ea9d019b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=873b63cc2e4abbb6ec5126ab07ce429a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=84658482a83ee3a4c80d145d0bd7ccb8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=d3af42a4fd701e0710d5f6a16e6bb9a3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c5f56b0149ab787d89c69056eb45e483 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=13f1011cc048aef7199ae8f14bc2ac62 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=fba1bf0b819f52561deab198fd36743d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=3ec8f383026889e2f3c328d86839a7b2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=9c3775365cab8e1e82aa19e87b9711dd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=cce17e87cc9bfcb6b995e5f1996c423c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=b80a93441133b85258d97085aeead20a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=74c45b08a2dc28871ff158b608cc8685 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=469b22a4b12f23e86ac25b3d797ff559 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=ea7767cbfacd744813ccaedd1b4e0013 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=0d9f69db1bd665c9e5c9592b483b31a1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=068f5c90b5b381cd58d8804ca2b3be64 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=6181192273efab4aabaa8628fc83c7be https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=fa690cb7132706fb25dfc625e949e96a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=c443f32cd4c91fb37ff79bd86906e1bc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=6fa3edab1bbacf7328074a7fba22be50 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=a950bc4af16446fce2f9266e95629bdb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=d9bce275c2f36dbde8a6c25f9fa10c2e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=6486c5ce9ec697039b0bb36d2bf18a0d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=79f0927984b8e6e7934b34bdb2a3e5e5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=214ac1e49a75291a68c63134bc246a8a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=94a39d1b226350362666f6305866b20b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=4db7d99d775a7f24bb55c6053d4eb864 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=c0db831a97b8427e0777adeaebf7a9d8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=830b4845fbfd45df75758e311a013ffc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=3fc39c824b2060a3a2766ca01037dd15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=0b395f3884c78c6938896ff253c5251b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=2be294a056a45a50262d1796906f8860 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=0270733b808489a91e41f73d9fe971e9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=33db4a687e4943faf6c2853179b67935 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=dea6663b2c113190e9b99a6dcedb3aa0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=835e563bfbe3c8311326660a51f3394c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=66e3c1e1140300c8236c13e3178cb8ab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=07b12bd2a7d8242c34d824882e654c22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=fe12c0e211f90076b51c7916c830971f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=65ab3105b0c6d5e8a2e9977a3ab7ed94 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=08547ad8e760e0776c74401ae5bbd8e5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=631b4ea065d18df96c6ccbc141904bb3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=03a67e234d886f3c698c1571e42cc7a6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=0ded0cb8ce18a846d71d7e04d24c2e78 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=5251aed0ba4d8349413d6bf4c261bea3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=f09694c4f23d7625f72606bce0efb710 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=340db3acb58829b51e4a7ac1c77246d4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1bd86cb46a9e6c40c285258879a3d59 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=d86b2a1e9721b9459e1283006e03fa92 ironruby-1.0.zip=7a92888837b3507355ed391dbfc0ab83 ironruby-1.1.3.zip=4f2af6253a459cc054d6c55956e514a9 jruby-bin-1.3.1.tar.gz=4a95db8fc93ed7219663fbede98b6117 jruby-bin-1.4.tar.gz=54dba9a88b2b3f99ac86a79828d0178b jruby-bin-1.4.0.tar.gz=f37322c18e9134e91e064aebb4baa4c7 jruby-bin-1.4.0.zip=3a9c8a5115a679da7d7a49a56d57d4c0 jruby-bin-1.4.1.tar.gz=a4aa8c43d1b9ffd9dbc6cb738d55a034 jruby-bin-1.5.0.tar.gz=ee2b4e326e8b87858e5dd0c8e94102e6 jruby-bin-1.5.1.tar.gz=74251383e08e8c339cacc35a7900d3af jruby-bin-1.5.2.tar.gz=d239deb9a108a6abbfbd6cb79cf8255b jruby-bin-1.5.3.tar.gz=ccb0b2dbc300d8dd4ad1bd4da48b8320 jruby-bin-1.5.5.tar.gz=8e00f7d40cbf221f733d6f7a15784e9a jruby-bin-1.5.6.tar.gz=94033a36517645b7a7ec781a3507c654 jruby-bin-1.6.0.tar.gz=f4d7e339dfc0fbaef5b878d1c0a66fbe jruby-bin-1.6.2.tar.gz=a46f978c24a208717023bb4b8995c678 jruby-bin-1.6.3.tar.gz=694b80e4eea784cdc1eb39fb1e3132c9 jruby-bin-1.6.4.tar.gz=0e96b6f4d1c6f12b5ac480cd7ab7da78 jruby-bin-1.6.5.tar.gz=54354082673bd115f945890dc6864413 jruby-bin-1.6.5.1.tar.gz=246a7aa2b7d7e6e9e8a0c2e282cbcfd0 jruby-bin-1.6.7.tar.gz=fd1b8d7389aa92da69ea6efb4782e40a jruby-bin-1.6.7.2.tar.gz=1e520f1b5130114464e5f1950cb24774 jruby-bin-1.6.8.tar.gz=a76ac5845640e4a1ebdfa74421efc935 jruby-bin-1.7.0.preview1.tar.gz=7b9e5e1cd0d818d0199086d948f948b4 jruby-bin-1.7.0.preview2.tar.gz=e8f1623759590aadbf49e4cc53f1cb61 jruby-bin-1.7.0.RC1.tar.gz=bdddcee3d126cddd9a85b5a066a7e25e jruby-bin-1.7.0.RC2.tar.gz=ffe2dd61711f4574fed344af151e5de5 jruby-bin-1.7.0.tar.gz=21861e0ecdbf48cda713c8ade82fdddb jruby-bin-1.7.1.tar.gz=86e659863541d8b987cb7bfbe3b4cfb0 jruby-bin-1.7.2.tar.gz=6ec9293b6dffd1e8ee57e9b7c6d18cbe jruby-bin-1.7.3.tar.gz=f0adf8ccee6f6777f7ab8e5e1d7a1f47 jruby-bin-1.7.4.tar.gz=c6a56eae78db28dddba911ccd0848c32 jruby-bin-1.7.5.tar.gz=c2a28c43c8095127d4a4aee0cf9b1439 jruby-bin-1.7.6.tar.gz=5d10011516a3d3bde10209b60cfcc0ef jruby-bin-1.7.7.tar.gz=9d6df2188fa57f12bf6fde4e4b2e3f09 jruby-bin-1.7.8.tar.gz=1e68f39d6dba7b6d9db81e24bb6b7d0a jruby-bin-1.7.9.tar.gz=b2e44f1f44837c07068ee453a89f4b55 jruby-bin-1.7.10.tar.gz=c84fe9245a73f9cd29f56343b7d2e39a jruby-bin-1.7.11.tar.gz=d6e6ab72426fa7fdc9ae55950980d877 jruby-bin-1.7.12.tar.gz=2073aa6dfc7c701ef7c3d3143d181582 jruby-bin-1.7.14.tar.gz=bc33284f27a3508a70d2ade100a2f6bd jruby-bin-1.7.15.tar.gz=92e63cffcb86842511aeeed95bdf96ed jruby-bin-1.7.16.tar.gz=92cb058d1a896257b5ac1c26dc433506 jruby-bin-1.7.16.1.tar.gz=eec2f0e03560bacf02a09c0096a99cad jruby-bin-1.7.16.2.tar.gz=cd31909b67239c5c6a795521fca5c239 jruby-bin-1.7.17.tar.gz=8b78ba1acdb718431f71c38287c07967 jruby-bin-1.7.18.tar.gz=aa7286140be0f6f60534ebffededc708 jruby-bin-1.7.19.tar.gz=bc38596757d8000d6ca4c4c3f8eacea6 jruby-bin-1.7.20.tar.gz=0c2adc160cb85c888b269e8ac4f886fc jruby-bin-1.7.21.tar.gz=bc91594072032023d146f330764d3274 jruby-bin-1.7.22.tar.gz=1da904bf41d362d0d0b366d9e781168f jruby-bin-1.7.23.tar.gz=41e3f45c28c94a275f9eeb22721da35d jruby-bin-1.7.25.tar.gz=fc43ead73f657f5261428923974fd605 jruby-bin-1.7.26.tar.gz=4ca60264a9560f37fdba8108543e72c2 jruby-bin-1.7.27.tar.gz=b98b0a2c52e885a868a2b60092e1cd3d jruby-bin-9.0.0.0.pre1.tar.gz=d5c8b30648348aa883f893d464d46bf1 jruby-bin-9.0.0.0.pre2.tar.gz=86994a9d7ed2cf318c75392623a3e6da jruby-bin-9.0.0.0.tar.gz=fe9036ea69bf23dc3b69cfc94adb5404 jruby-bin-9.0.1.0.tar.gz=a82bc640e0080b1d9a21d1477c8400e3 jruby-bin-9.0.3.0.tar.gz=828dd6c6dd18e5b186ccfd65753077bd jruby-bin-9.0.4.0.tar.gz=645bf4a1dcde3f19dc0fff75c8b4b685 jruby-bin-9.0.5.0.tar.gz=1d2dc649cbacbe26418ef3ba421018b1 jruby-bin-9.1.0.0.tar.gz=fe26e6308d006d35eb613cdd47d1dc99 jruby-bin-9.1.1.0.tar.gz=8356334270df07a214590d00a986837b jruby-bin-9.1.2.0.tar.gz=749bb917dde9666e365e12bbe776a5c2 jruby-bin-9.1.3.0.tar.gz=91c246cd623702032e88283565da5480 jruby-bin-9.1.4.0.tar.gz=5b80b78c09bf0cd4dcbcb9e1fe3e8b73 jruby-bin-9.1.5.0.tar.gz=e9b2cc44757db4cfbe7da79601d0169a jruby-bin-9.1.6.0.tar.gz=4092a89b01b55d1fb5498113f97ab0ca jruby-bin-9.1.7.0.tar.gz=b120c3eaeef7ff2aed3a57701e414e78 jruby-bin-9.1.8.0.tar.gz=0fdee002c56ec91dff1efffce205265c jruby-bin-9.1.9.0.tar.gz=170efc34297d7ac2a56bb1163e96b363 jruby-bin-9.1.10.0.tar.gz=b75e0d1a200e8f790d8bbc84f91e3002 jruby-bin-9.1.11.0.tar.gz=0502a14141da25a460ce197720bab4c3 jruby-bin-9.1.12.0.tar.gz=74bd7ae08c159fc62cb6f64845a868cc jruby-bin-9.1.13.0.tar.gz=6c642c8a2653a585779f453d8c843fd7 jruby-bin-9.1.14.0.tar.gz=a7e0ecd529690025d327c45744f60fa4 jruby-bin-9.1.15.0.tar.gz=01c29690324d7eb414fba66e4c009c9e jruby-bin-9.1.16.0.tar.gz=e64c3aa1310c272194fd1750b0b79fac jruby-bin-9.1.17.0.tar.gz=f28d1fcbb60e550f3abd839102ad0069 jruby-bin-9.2.0.0.tar.gz=bd476da4bed39ffcfff7116f448a5365 jruby-bin-9.2.1.0.tar.gz=4b78b0a40ca541556f5ee75a815e0be0 jruby-bin-9.2.2.0.tar.gz=be678559801be029fe233c33396e34d2 jruby-bin-9.2.3.0.tar.gz=79328ab1ed37d612da35271183e46bbd jruby-bin-9.2.4.0.tar.gz=f538f2be459f0f0e517a53446e78a354 jruby-bin-9.2.4.1.tar.gz=d373bbc2bd6caabfcc9914c4067e9d24 jruby-bin-9.2.5.0.tar.gz=14582fd6eee19610f0a7433ce5dd5ce4 jruby-bin-9.2.6.0.tar.gz=dba182ac9943b726b609ca61747c1835 jruby-bin-9.2.7.0.tar.gz=c0111b2cafa920df76284044e1aeedc7 jruby-bin-9.2.8.0.tar.gz=7d652b586a18f1c665289fd7e6edf4f5 jruby-bin-9.2.9.0.tar.gz=74b3451f79c13c2fc66c6dee69d46699 jruby-bin-9.2.10.0.tar.gz=e6ce97eae6e35b622c1b572f9297705b jruby-bin-9.2.11.0.tar.gz=22b003adfb03b253721cc85db248698f jruby-bin-9.2.11.1.tar.gz=687586132f7b649b1bdd7b823577c9d8 jruby-bin-9.2.12.0.tar.gz=cc7599837fbd0839cce7293577a34f2c jruby-bin-9.2.13.0.tar.gz=99df4eb89f88c7582bfe7c313daec7b4 jruby-bin-9.2.14.0.tar.gz=421c5b8146701177a738a0a691190018 jruby-bin-9.2.15.0.tar.gz=ba593f1de2c4e592a8ca9b9e903af457 jruby-bin-9.2.16.0.tar.gz=d8d954ee0ab6f4868c3fc63339660af9 jruby-bin-9.2.17.0.tar.gz=382fb3d9d2982efd5396f1a42e3fa6a1 jruby-bin-9.2.18.0.tar.gz=002ac95859a2176cb0a58d81d6e0fb14 jruby-bin-9.2.19.0.tar.gz=0961867a77838853f32ee72dbde7c00e jruby-bin-9.2.20.0.tar.gz=840876dd0ca0098452dd2667fe9dd7f4 jruby-bin-9.2.20.1.tar.gz=5856ed030f0d9e75d2384cf42f62a4de jruby-bin-9.2.21.0.tar.gz=9957c1d2bd9265144fe55f9f7093272a jruby-bin-9.3.0.0.tar.gz=501a3c975b3c9478b72d4b0cd37170b9 jruby-bin-9.3.1.0.tar.gz=201d3e483bf847f5c59f4b1f3bf594d5 jruby-bin-9.3.2.0.tar.gz=259c276f68a01495dda24407394a382d jruby-bin-9.3.3.0.tar.gz=cd49b81753048cee9c8ffdd2ce1cb3e2 jruby-bin-9.3.4.0.tar.gz=7292dd9a56155aa015ec08c03855b3fc jruby-bin-9.3.6.0.tar.gz=bc5a7b02be69fdf3f5584e8880fc7dcc jruby-bin-9.3.7.0.tar.gz=49b17b5cd7cf8bfb09d8f64147d992ef jruby-bin-9.3.8.0.tar.gz=6ea209b699a06944d0653d8048d8bfec jruby-bin-9.3.9.0.tar.gz=9a0f0a931346bc6ea34196a5c88002ec jruby-bin-9.3.10.0.tar.gz=83c9d776dfc8cf33bfa60f7e78077160 jruby-bin-9.3.11.0.tar.gz=6ccc04e658c49db19fc0c452db0f2931 jruby-bin-9.3.13.0.tar.gz=3f20268b494da900504e921507248183 jruby-bin-9.3.14.0.tar.gz=87a96fd3af448ec8fd5ca45c6469ecc9 jruby-bin-9.3.15.0.tar.gz=385fabe180b68fb8cd3743b315109e5f jruby-bin-9.4.0.0.tar.gz=d0136daa4910f6e6b21858260eb00fe2 jruby-bin-9.4.1.0.tar.gz=abe2669672ac973f1b41a4d3860eb7ae jruby-bin-9.4.2.0.tar.gz=486e50f3c74e7400e71631819fde91da jruby-bin-9.4.3.0.tar.gz=526006fefb3e5ffc5095ab5599cc38c6 jruby-bin-9.4.4.0.tar.gz=287b5c3a9b63ff93e49ae9dc0347263b jruby-bin-9.4.5.0.tar.gz=09c6fceb38d6c086af2e4d5f21f9fe65 jruby-bin-9.4.6.0.tar.gz=5e2fe4ed897d938332ee0d85d2aa60bc jruby-bin-9.4.7.0.tar.gz=a0633ca837efff62edca84ceae1f5515 jruby-bin-9.4.8.0.tar.gz=9f520a3a416b598b4e53916e7180b623 libiconv-1.13.1.tar.gz=7ab33ebd26687c744a37264a330bbe9a MacRuby%200.5.zip=675454a8c7bc19d606d90a726e08427c MacRuby%200.6.zip=a80afd3700c88cf95c539fc63b272faf MacRuby%200.7.1.zip=e8245dcd03c0757dfae7e6fee913947a MacRuby%200.7.zip=0bb60588c9ec9b1517665743bb05132f MacRuby%200.8.zip=735ac0a70f539e00b5de6fbec09c2c5c MacRuby%200.9.zip=fa01345e8fbfee620bbac64743a45f69 MacRuby%200.10.zip=1662d13d2f73cfc26258598f6988dcbc MacRuby%200.11.zip=b0cc23d60484a07012bcad549cef6054 MacRuby%200.12.zip=e1c5fa1b007a1cdc38c527a47302bf5e MagLev-1.0.0.tar.gz=e02cb8ee04438451eb78df14f91a68a9 MagLev-1.1beta.tar.gz=d542c7af290ce3b588b57629906b19e9 MagLev-1.1beta2.tar.gz=0ef88d5d145611aef324cb51be0aaafd MagLev-1.1RC1.tar.gz=41f4a0994daf1e5271cbd0ebe57816f4 MagLev-1.2Alpha.tar.gz=5c7dd3acef9dbddc0829bb1daa087abb MagLev-1.2Alpha2.tar.gz=cbbeae109854a6bf107a747a93fd478b MagLev-1.2Alpha3.tar.gz=b7470518f2b697eb1a5a39eff9b6d749 MagLev-1.2Alpha4.tar.gz=d54f04a611ce838b9d7009627065b7ca mruby-1.0.0.tar.gz=d9aec6a20fc1add65ee07ff6cf0e1ef2 mruby-1.1.0.tar.gz=60d75ea704c9285f3c80b3ad1d2b68de mruby-1.2.0.tar.gz=b5a3b7962d9db8cb8fb8105aa914d16c mruby-1.3.0.tar.gz=9714dd2804064d0043e099b7211d72b9 mruby-1.4.0.tar.gz=25efc35511070454074b36863c4d5b5e mruby-1.4.1.tar.gz=b40bf09af3f4c6e2bc443b9ac803a3ad mruby-2.0.0.tar.gz=b86c6a1dd86cb4ebe51e3fe38964a830 mruby-2.0.1.tar.gz=15b426a8a94a610c45414578786d05e3 mruby-2.1.0-rc.tar.gz=58a85fcb102d72900a25190da670e01d mruby-2.1.0.tar.gz=c01a4bbf62e6f5765c70b8813e0ce7da mruby-2.1.1-rc.tar.gz=809edd80e680855e7c4cf3c569972f28 mruby-2.1.1-rc2.tar.gz=24879fa5eb587f9415f03f8f3701842e mruby-2.1.1.tar.gz=c0ee4a112695046b9e4f177e31096d6c ncurses.tar.gz=cce05daf61a64501ef6cd8da1f727ec6 openssl-0.9.8k.tar.gz=e555c6d58d276aec7fdc53363e338ab3 openssl-0.9.8n.tar.gz=076d8efc3ed93646bd01f04e23c07066 openssl-1.0.1c.tar.gz=ae412727c8c15b67880aef7bd2999b2e openssl-1.0.1i.tar.gz=c8dc151a671b9b92ff3e4c118b174972 pkg-config-0.23.tar.gz=d922a88782b64441d06547632fd85744 readline-5.2.tar.gz=e39331f32ad14009b9ff49cc10c5e751 readline-6.0.tar.gz=b7f65a48add447693be6e86f04a63019 readline-6.2.tar.gz=67948acb2ca081f23359d0256e9a271c release-2.0.0-rc1.zip=b05b5e3c2712a294e4b09ebf450c1bfe rubinius-1.0.0-20100514.tar.gz=b05f4e791d3712c5a50b3d210dac6eb0 rubinius-1.0.1-20100603.tar.gz=eb185703c7ae0c0210e8dcb7f783ee8e rubinius-1.1.0-20100923.tar.gz=e2ae16238b201de09975abe19da09ea9 rubinius-1.1.1-20101116.tar.gz=b39f618eeba37c3aff215da8bca55fd7 rubinius-1.2.0-20101221.tar.gz=4284c2660f1f648942de35d4fc871f70 rubinius-1.2.1-20110215.tar.gz=e4a5127480062fddddc7ce2860b3b813 rubinius-1.2.2-20110222.tar.gz=59124378fb7ee040e9ee4e4736d89fc0 rubinius-1.2.3-20110315.tar.gz=9782dab18c2dd440af6b76e8eb5bc0f0 rubinius-1.2.4-20110705.tar.gz=403c777d19b3553e9cb36701fe002c5e rubinius-1.3.2.tar.bz2=64801ad8dd4e5e4fcb74ff313fec0a69 rubinius-1.3.3.tar.bz2=79f1f860ed8242257bd7f3e88c81a197 rubinius-1.4.1.tar.bz2=76b840405d4b9303261c27cf15002386 rubinius-2.0.0.tar.bz2=62e379e044c822b81e7b20a27daf133e rubinius-2.1.0.tar.bz2=908053f38fd840c75a93aab7487c20a5 rubinius-2.1.1.tar.bz2=6b4df0caec5ea88373e113f97a3b4c72 rubinius-2.2.0.tar.bz2=f1fbc6f3baf1da5ad86b3858f30f3349 rubinius-2.2.2.tar.bz2=ac70d629ea43525d91e81f4ccf135299 rubinius-2.2.3.tar.bz2=d9978cf1a4e8f0310db63e49834f9837 rubinius-2.2.4.tar.bz2=c10699da85a8eb5861a37b29077213bd rubinius-2.2.5.tar.bz2=5996dc8529b2ffe5921c5e7020bee20e rubinius-2.2.6.tar.bz2=85339bb6dd525eee719edf0551868f56 rubinius-2.2.7.tar.bz2=de2e6f4c3bd9a90bcb89f2ea27ddee9e rubinius-2.2.8.tar.bz2=c4db1ffb8dbdf864240cabe8b7758b49 rubinius-2.2.9.tar.bz2=0bf87ba617fa989e47d20942410028af rubinius-2.2.10.tar.bz2=8680da7eb921e6f595a1d716915ca7e0 rubinius-2.3.0.tar.bz2=e003a30af6689c8198116b3405d09d8e rubinius-2.4.0.tar.bz2=62391a51f49820daa51463066c3ce007 rubinius-2.4.1.tar.bz2=7758721b6e848387c3943ddb9ebd9479 rubinius-2.5.0.tar.bz2=178baa1ad172df0801765ea93bc36d87 rubinius-2.5.1.tar.bz2=77e1b87dc357691ad44b561a5f45c188 rubinius-2.5.2.tar.bz2=e5973d6e0a16f0390dc2a7478db83ff5 rubinius-2.5.3.tar.bz2=b19709eb3fa9e05b3fa6a357b33e3b5b rubinius-2.5.4.tar.bz2=64587916e5d445ed9bc630017a04498e rubinius-2.5.5.tar.bz2=ef671bbab50cbe2f70f953c491311261 rubinius-2.5.6.tar.bz2=597e4b049f49966c646faf699856c1b9 rubinius-2.5.7.tar.bz2=9a7f404019bce9fc34a7af7feb7cbb74 rubinius-2.5.8.tar.bz2=a24520892cada1f660e719a25abf63e3 ruby-1.8.5-p115.tar.bz2=03955e3c367b9beb3efe144c9f00d689 ruby-1.8.5-p115.tar.gz=20ca6cc87eb077296806412feaac0356 ruby-1.8.5-p231.tar.bz2=327f5aa6573787432222e96195cffd1e ruby-1.8.5-p231.tar.gz=e900cf225d55414bffe878f00a85807c ruby-1.8.6-p286.tar.bz2=e6b6bf8f34370e433936adb7a7065e63 ruby-1.8.6-p286.tar.gz=797ea136fe43e4286c9362ee4516674e ruby-1.8.6-p287.tar.bz2=80b5f3db12531d36e6c81fac6d05dda9 ruby-1.8.6-p287.tar.gz=6ff3420094711266c3201a0c7c2faa38 ruby-1.8.6-p369.tar.bz2=c3c1f3dd0dfbd2e17a04e59c2f12cfc8 ruby-1.8.6-p369.tar.gz=8c140ae28b4c3947b92dfad69109d90b ruby-1.8.6-p383.tar.bz2=a48703cd982b9f0e3002700a50b0e88e ruby-1.8.6-p383.tar.gz=4f49544d4a4d0d34e9d86c41e853db2e ruby-1.8.6-p398.tar.bz2=fbd43dc44ee26be4d37e6bebbed6f8bd ruby-1.8.6-p398.tar.gz=736db5f56c2d9b0136e563d049249fa8 ruby-1.8.6-p399.tar.bz2=f77c307cb72fb8808b0e85af5d05cefc ruby-1.8.6-p399.tar.gz=c3d16cdd3c1ee8f3b7d1c399d4884e33 ruby-1.8.6-p420.tar.bz2=1c7a978e9ffd4f56dc2ad74bbd2c34f3 ruby-1.8.6-p420.tar.gz=ca1eee44f842e93b5098bc5a2bb9a40b ruby-1.8.7-p160.tar.bz2=f8ddb886b8a81cf005f53e9a9541091d ruby-1.8.7-p160.tar.gz=945398f97e2de6dd8ab6df68d10bb1a1 ruby-1.8.7-p174.tar.bz2=88c45aaf627b4404e5e4273cb03ba2ee ruby-1.8.7-p174.tar.gz=18dcdfef761a745ac7da45b61776afa5 ruby-1.8.7-p248.tar.bz2=37e19d46b7d4b845f57d3389084b94a6 ruby-1.8.7-p248.tar.gz=60a65374689ac8b90be54ca9c61c48e3 ruby-1.8.7-p249.tar.bz2=37200cc956a16996bbfd25bb4068f242 ruby-1.8.7-p249.tar.gz=d7db7763cffad279952eb7e9bbfc221c ruby-1.8.7-p299.tar.bz2=244439a87d75ab24170a9c2b451ce351 ruby-1.8.7-p299.tar.gz=43533980ee0ea57381040d4135cf9677 ruby-1.8.7-p302.tar.bz2=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p302.tar.gz=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p330.tar.bz2=2689719fb42c8cf0aa336f8c8933f413 ruby-1.8.7-p330.tar.gz=50a49edb787211598d08e756e733e42e ruby-1.8.7-p334.tar.bz2=2f14f604bf981bb938ab5fc8b09eb1a6 ruby-1.8.7-p334.tar.gz=aacb6ee5dfe2367682bba56af7f415b8 ruby-1.8.7-p352.tar.bz2=0c61ea41d1b1183b219b9afe97f18f52 ruby-1.8.7-p352.tar.gz=0c33f663a10a540ea65677bb755e57a7 ruby-1.8.7-p357.tar.bz2=3abd9e2a29f756a0d30c7bfca578cdeb ruby-1.8.7-p357.tar.gz=b2b8248ff5097cfd629f5b9768d1df82 ruby-1.8.7-p358.tar.bz2=de35f00997f4ccee3e22dff0f2d01b8a ruby-1.8.7-p370.tar.bz2=1e4c3194537dd8ff92e756993e55a29d ruby-1.8.7-p371.tar.bz2=c27526b298659a186bdb5107fcec2341 ruby-1.8.7-p371.tar.gz=653f07bb45f03d0bf3910491288764df ruby-1.8.7-p374.tar.bz2=83c92e2b57ea08f31187060098b2200b ruby-1.8.7-p374.tar.gz=b72a0bc5b824398537762e5272bbb8dc ruby-1.9.0.tar.bz2=17eb66ac3721340d21db352d8f5dec76 ruby-1.9.1-p129.tar.bz2=6fa62b20f72da471195830dec4eb2013 ruby-1.9.1-p129.tar.gz=c71f413514ee6341c627be2957023a5c ruby-1.9.1-p243.tar.bz2=66d4f8403d13623051091347764881a0 ruby-1.9.1-p243.tar.gz=515bfd965814e718c0943abf3dde5494 ruby-1.9.1-p376.tar.bz2=e019ae9c643c5efe91be49e29781fb94 ruby-1.9.1-p376.tar.gz=ebb20550a11e7f1a2fbd6fdec2a3e0a3 ruby-1.9.1-p378.tar.bz2=5922459622a23612eb9b68a3586cb5f8 ruby-1.9.1-p378.tar.gz=9fc5941bda150ac0a33b299e1e53654c ruby-1.9.1-p429.tar.bz2=09df32ae51b6337f7a2e3b1909b26213 ruby-1.9.1-p429.tar.gz=0f6d7630f26042e00bc59875755cf879 ruby-1.9.1-p431.tar.bz2=03179138ae95dbfae872ef49e9cc6da7 ruby-1.9.1-p431.tar.gz=23f28cffc007ed5ac72c8e9bec6837ce ruby-1.9.2-p0.tar.bz2=d8a02cadf57d2571cd4250e248ea7e4b ruby-1.9.2-p0.tar.gz=755aba44607c580fddc25e7c89260460 ruby-1.9.2-p136.tar.bz2=52958d35d1b437f5d9d225690de94c13 ruby-1.9.2-p136.tar.gz=6e17b200b907244478582b7d06cd512e ruby-1.9.2-p180.tar.bz2=68510eeb7511c403b91fe5476f250538 ruby-1.9.2-p180.tar.gz=0d6953820c9918820dd916e79f4bfde8 ruby-1.9.2-p290.tar.bz2=096758c3e853b839dc980b183227b182 ruby-1.9.2-p290.tar.gz=604da71839a6ae02b5b5b5e1b792d5eb ruby-1.9.2-p318.tar.bz2=be431c6cbfa27e3836a06c6315717747 ruby-1.9.2-p318.tar.gz=cc7bf1025128e1985882ae243f348802 ruby-1.9.2-p320.tar.bz2=b226dfe95d92750ee7163e899b33af00 ruby-1.9.2-p320.tar.gz=5ef5d9c07af207710bd9c2ad1cef4b42 ruby-1.9.2-p330.tar.bz2=8ba4aaf707023e76f80fc8f455c99858 ruby-1.9.2-p330.tar.gz=4b9330730491f96b402adc4a561e859a ruby-1.9.3-p0.tar.bz2=65401fb3194cdccd6c1175ab29b8fdb8 ruby-1.9.3-p0.tar.gz=8e2fef56185cfbaf29d0c8329fc77c05 ruby-1.9.3-p125.tar.bz2=702529a7f8417ed79f628b77d8061aa5 ruby-1.9.3-p125.tar.gz=e3ea86b9d3fc2d3ec867f66969ae3b92 ruby-1.9.3-p194.tar.bz2=2278eff4cfed3cbc0653bc73085caa34 ruby-1.9.3-p194.tar.gz=bc0c715c69da4d1d8bd57069c19f6c0e ruby-1.9.3-p286.tar.bz2=e76848a86606a4fd5dcf14fc4b4e755e ruby-1.9.3-p327.tar.bz2=7d602aba93f31ceef32800999855fbca ruby-1.9.3-p327.tar.gz=96118e856b502b5d7b3a4398e6c6e98c ruby-1.9.3-p362.tar.bz2=13c26ea368d88a560f07cc8c5eb4fa05 ruby-1.9.3-p374.tar.bz2=944e73eba9ee9e1f2647ff32ec0b14b2 ruby-1.9.3-p385.tar.bz2=5ec9aff670f4912b0f6f0e11e855ef6c ruby-1.9.3-p392.tar.bz2=a810d64e2255179d2f334eb61fb8519c ruby-1.9.3-p392.tar.gz=f689a7b61379f83cbbed3c7077d83859 ruby-1.9.3-p429.tar.bz2=c2b2de5ef15ea9b1aaa3152f9112af1b ruby-1.9.3-p429.tar.gz=993c72f7f805a9eb453f90b0b7fe0d2b ruby-1.9.3-p448.tar.bz2=aa710d386e5903f78f0231868255e6af ruby-1.9.3-p448.tar.gz=a893cff26bcf351b8975ebf2a63b1023 ruby-1.9.3-p484.tar.bz2=03f5b08804927ceabe5122cb90f5d0a9 ruby-1.9.3-p484.tar.gz=8ac0dee72fe12d75c8b2d0ef5d0c2968 ruby-1.9.3-p545.tar.bz2=4743c1dc48491070bae8fc8b423bc1a7 ruby-1.9.3-p545.tar.gz=8e8f6e4d7d0bb54e0edf8d9c4120f40c ruby-1.9.3-p547.tar.bz2=5363d399be7f827c77bf8ae5d1a69b38 ruby-1.9.3-p547.tar.gz=7531f9b1b35b16f3eb3d7bea786babfd ruby-1.9.3-p550.tar.bz2=c2169c8b14ccefd036081aba5ffa96da ruby-1.9.3-p551.tar.bz2=0d8b272b05c3449dc848bb7570f65bfe ruby-1.9.3-preview1.tar.bz2=7d93dc773c5824f05c6e6630d8c4bf9b ruby-1.9.3-preview1.tar.gz=0f0220be4cc7c51a82c1bd8f6a0969f3 ruby-1.9.3-rc1.tar.bz2=26f0dc51ad981e12c58b48380112fa4d ruby-1.9.3-rc1.tar.gz=46a2a481536ca0ca0b80ad2b091df68e ruby-2.0.0-p0.tar.bz2=895c1c581f8d28e8b3bb02472b2ccf6a ruby-2.0.0-p195.tar.bz2=2f54faea6ee1ca500632ec3c0cb59cb6 ruby-2.0.0-p247.tar.bz2=60913f3eec0c4071f44df42600be2604 ruby-2.0.0-p353.tar.bz2=20eb8f067d20f6b76b7e16cce2a85a55 ruby-2.0.0-p451.tar.bz2=908e4d1dbfe7362b15892f16af05adf8 ruby-2.0.0-p481.tar.bz2=ea406a8d415a1a5d8365596d4288f3da ruby-2.0.0-p576.tar.bz2=eccd42d43620544a085c5e3834572f37 ruby-2.0.0-p594.tar.bz2=58469c0daf5f3a892a70cc674ea59c7f ruby-2.0.0-p598.tar.bz2=a3f3908103a7d209d1d1cf4712e3953c ruby-2.0.0-p643.tar.bz2=1390888cac6cd175e6f164eff378cdde ruby-2.0.0-p645.tar.bz2=d576240c97cfcc3ed9bdc457eb1e8280 ruby-2.0.0-p647.tar.bz2=27a3ea1a8b8bca1a6de43a7d08e88b69 ruby-2.0.0-p648.tar.bz2=3544031334f4665aa2eb1414babc9345 ruby-2.0.0-preview1.tar.bz2=47a0f662f0e258aa1c5e429c310861b3 ruby-2.0.0-preview2.tar.bz2=a645a783c3302cc094a9963a5e700a4d ruby-2.0.0-rc1.tar.bz2=24cebdda11e01ff4889ac983cd7dc02c ruby-2.0.0-rc2.tar.bz2=e92420131bd7994513e0bf09a3e2a19b ruby-2.1.0-preview1.tar.bz2=d32d1ea23988399afadbd21c5a7a37fc ruby-2.1.0-preview2.tar.bz2=9d566a9b2d2e7e35ad6125e2a14ce672 ruby-2.1.0-rc1.tar.bz2=cae095b90349b5b0f7026060cc3dd2c5 ruby-2.1.0.tar.bz2=1546eeb763ac7754365664be763a1e8f ruby-2.1.1.tar.bz2=53edc33b2f590ecdd9f6a344b9d92d0d ruby-2.1.1.tar.gz=e57fdbb8ed56e70c43f39c79da1654b2 ruby-2.1.2.tar.bz2=ed9b8565bdeccb401d628ec8d54a0774 ruby-2.1.2.tar.gz=a5b5c83565f8bd954ee522bd287d2ca1 ruby-2.1.3.tar.bz2=02b7da3bb06037c777ca52e1194efccb ruby-2.1.4.tar.bz2=f4136e781d261e3cc20748005e1740b7 ruby-2.1.5.tar.bz2=a7c3e5fec47eff23091b566e9e1dac1b ruby-2.1.6.tar.bz2=e1a8e6c6bfbb09bb7f8d6be8f508e4a1 ruby-2.1.7.tar.bz2=3a878e98311d543e5de3533b82ef4a5a ruby-2.1.8.tar.bz2=b17130b5f02a61640ae3b629af931610 ruby-2.1.9.tar.bz2=62bd1cbfcbc22e4d137462bce992f6d1 ruby-2.1.10.tar.bz2=5155c624807ff2418a9e9f15202954d0 ruby-2.2.0-preview1.tar.bz2=767b132eec3e70b14afe5884a7a767b1 ruby-2.2.0-preview2.tar.bz2=d7abace25a8ffe861cb2807bef1c58a6 ruby-2.2.0-rc1.tar.bz2=7144732d30dd4547c0a59862b3345d54 ruby-2.2.0.tar.bz2=d03cd4690fec1fff81d096d1c1255fde ruby-2.2.1.tar.bz2=06973777736d8e6bdad8dcaa469a9da3 ruby-2.2.2.tar.bz2=af6eb4fa7247f1f7b2e19c8e6f3e3145 ruby-2.2.3.tar.bz2=f49a734729a71774d4a94a9a603114b2 ruby-2.2.4.tar.bz2=c3d65f6d2ebe90dda81a37885ea244f5 ruby-2.2.5.tar.bz2=0c7edd1ff3650c3b74da2efaf641bf34 ruby-2.2.6.tar.bz2=3d13cf447142b8a11cd9beb7bc63fee0 ruby-2.2.7.tar.bz2=ca7224d80c08b015bc3b8c226d0914c3 ruby-2.2.8.tar.bz2=054d2e2904d5175662293e29c3bdb927 ruby-2.2.9.tar.bz2=575adf8ede6b1ca7236a5341e73536b0 ruby-2.2.10.tar.bz2=bef1909a4c885157870ef69548cdad3a ruby-2.3.0-preview1.tar.bz2=776000d74ec6dd34bf355ff6921c8311 ruby-2.3.0-preview2.tar.bz2=3ad442ccb337e77e4acaa4113f25b76a ruby-2.3.0.tar.bz2=f0d9f9bbdc87372ca98988a571875819 ruby-2.3.1.tar.bz2=c194281f63d7fcd816747fe78474be5e ruby-2.3.2.tar.bz2=9d00f3772f1c8fa5eecdfea089e3032f ruby-2.3.3.tar.bz2=04b9c461a2bc1eec0535ad1947cad4fb ruby-2.3.4.tar.bz2=99961e97566aee6d63635e2da4cf73ac ruby-2.3.5.tar.bz2=e1efc3d5a948ca1f552005efe5925513 ruby-2.3.6.tar.bz2=b2443b11ee80319a119f7ec0c9b8d79a ruby-2.3.7.tar.bz2=5eb580d5cd13ffb5aacfb96580c0043d ruby-2.3.8.tar.bz2=78045332e298dfd859ceef9fe946950f ruby-2.4.0-preview1.tar.bz2=64b8983b5f53d053906e394f734aa296 ruby-2.4.0-preview2.tar.bz2=1074e8dea5baa89af7f7c2d1d2b9ebaa ruby-2.4.0-preview3.tar.bz2=9f767e6bc61830735ea7dc9cd5a63653 ruby-2.4.0-rc1.tar.bz2=0f8b665acf4e883334adc121a42a206f ruby-2.4.0.tar.bz2=98f29161860fe1b6c65396717847a358 ruby-2.4.1.tar.bz2=07b2ae5d2f46321c95b37066c8415900 ruby-2.4.2.tar.bz2=5ff3ad6ec816bcce8806a55090936ab6 ruby-2.4.3.tar.bz2=ac8215ba561cc7c79b4f61daee11b706 ruby-2.4.4.tar.bz2=d994274eaa95b82aa5d31ec2188253c6 ruby-2.4.5.tar.bz2=45d70a8bb9397d818795ffe992163d27 ruby-2.4.6.tar.bz2=4abd13c50c1fc273a0a81a0ae74ed39f ruby-2.4.7.tar.bz2=1ce166ced489908993d78e8bb68325e0 ruby-2.4.8.tar.bz2=396d35f1a2d1deaf303f59cb5245d4ae ruby-2.4.9.tar.bz2=0b3447370651df55a2014a170c0cb1d5 ruby-2.4.10.tar.bz2=b10a7d2fcaf218c98edbaf57efc36e58 ruby-2.5.0-preview1.tar.bz2=889454189f41e271ae5ba15382911b6a ruby-2.5.0-rc1.tar.bz2=f5acdeacf56aced3c00ae6a8fa816bbc ruby-2.5.0.tar.bz2=63a6cd49546783d62de25a0ffc4aecc3 ruby-2.5.1.tar.bz2=5aaaf2fb4893214fa316516f3ac43519 ruby-2.5.2.tar.bz2=e90ab127e2ac3ee1d8840835e8ba1f13 ruby-2.5.3.tar.bz2=49aea0bf56d25351ccaf938c642400df ruby-2.5.4.tar.bz2=0c923215470f1debe593fe21e66fd37b ruby-2.5.5.tar.bz2=8f41b5cb683d48b5cb6cdfe03d135d6b ruby-2.5.6.tar.bz2=f2a74416ab3016434896194120796f04 ruby-2.5.7.tar.bz2=65597b69aa54bdca8745502c10349f96 ruby-2.5.8.tar.bz2=9ec96e7a590ef801ede294b6184c9c0f ruby-2.5.9.tar.bz2=9e905a545a729af1f1620ddfc2976fe5 ruby-2.6.0-preview1.tar.bz2=1ce507e27fa02aeb36100dabcf1da94f ruby-2.6.0-preview2.tar.bz2=e45011116334d21857b9e1712a01e6b3 ruby-2.6.0-preview3.tar.bz2=b326ceee3d3756f892515009e148f4b2 ruby-2.6.0-rc1.tar.bz2=40457a72e36cbecd0c51d9f895347302 ruby-2.6.0-rc2.tar.bz2=9665e6d886a9da2d4076fa75836798f1 ruby-2.6.0.tar.bz2=d3372daec93f83e7a91c669821053014 ruby-2.6.1.tar.bz2=73d19ac478db1a178be5ae2f2fb8c9ec ruby-2.6.2.tar.bz2=658fcc0da15578c2420ded807b11cce1 ruby-2.6.3.tar.bz2=52e609b756735115814b9c8463f185e2 ruby-2.6.4.tar.bz2=d9b35753c65f54c745ab6b0094511839 ruby-2.6.5.tar.bz2=d1b89c88effb71d75cd7ef77c35e1985 ruby-2.6.6.tar.bz2=abc030870bfbe18ae9c356abebd95cb6 ruby-2.6.7.tar.bz2=46f24740181f91247c72f19d52334379 ruby-2.6.8.tar.bz2=c53761123d17e929cfe248f50429bcab ruby-2.6.9.tar.bz2=ddc24495adaf215c8ee40630b4a55041 ruby-2.6.10.tar.bz2=6ad76db639ab308e3b6c19408729a0cf ruby-2.7.0-preview1.tar.bz2=82fab0496947acd847a6b2eb758acfc6 ruby-2.7.0-preview2.tar.bz2=966a544ab59114591898403c23d91397 ruby-2.7.0-preview3.tar.bz2=2fa6c213774744b287e7e0212b43f626 ruby-2.7.0-rc1.tar.bz2=48a8837cb352f5b95e97a1ae0d62a9d0 ruby-2.7.0-rc2.tar.bz2=cca58fdb8c5e8be8273842d54199c42d ruby-2.7.0.tar.bz2=89347748b7414f5bc7aeb8f4a87ebef4 ruby-2.7.1.tar.bz2=4bb2b2b2f0c6953859e30af140cf249a ruby-2.7.2.tar.bz2=a8acc9c24708fe29dfc287823ecaae65 ruby-2.7.3.tar.bz2=604acb258b1d8228f55799e846cfe6d3 ruby-2.7.4.tar.bz2=52705d799ed851dd3bfd5634265cde46 ruby-2.7.5.tar.bz2=d97d4377eee18b0e790510c3afed648c ruby-2.7.6.tar.bz2=1b6efacb9f129d0253d8a9faa9c21f99 ruby-2.7.7.tar.bz2=63c55e75150251d3ba092b662138e4af ruby-2.7.8.tar.bz2=f44dedf51fdb7441a7dba592d6a4a14d ruby-3.0.0-preview1.tar.gz=991df063b86a8f8412ca07f548579f39 ruby-3.0.0-preview2.tar.gz=ce14b24e923f2e269fea6441791a7248 ruby-3.0.0-rc1.tar.gz=848a8628c8abde270b66e2474049a4a3 ruby-3.0.0.tar.gz=d6af36269a1b0bc278236d371543ad97 ruby-3.0.1.tar.gz=8d1c460a9a9d48a353de3eb0f338bbfd ruby-3.0.2.tar.gz=b973af486291a1e17ad50d88472bfa86 ruby-3.0.3.tar.gz=9ecae293da9547c1438a970f04f64655 ruby-3.0.4.tar.gz=ec9de9a15acc4f205b08816d94267415 ruby-3.0.5.tar.gz=cdff2395625dc1d632fc5400c8fec103 ruby-3.0.6.tar.gz=6b5a7b14505697e6fc2b40b345679f40 ruby-3.0.7.tar.gz=147a3467facc704b5d479e809c131603 ruby-3.1.0-preview1.tar.gz=d131b9bca700ee87ea276f8233ea4c0b ruby-3.1.0.tar.gz=1ca89d713f2c18a20104befed51b3b9a ruby-3.1.1.tar.gz=702778a0ef8b7a01ef7530a541002e19 ruby-3.1.2.tar.gz=9daf064899cccc32fd564117c7a7e0dd ruby-3.1.3.tar.gz=cce38a2b2c589d59f440f67c7d8cc697 ruby-3.1.4.tar.gz=3e601ae6db76a487219a1084e5cb4c9c ruby-3.1.5.tar.gz=ce1e92ddb1230fa2d4f4367882542555 ruby-3.2.0-preview1.tar.gz=a83c91d53e130fe232e4c27ecc8738da ruby-3.2.0-preview2.tar.gz=56e7801b37612b82285c9a09cfeb28ce ruby-3.2.0-preview3.tar.gz=0ed16faae50403b4e2ba2e85ec2314a1 ruby-3.2.0-rc1.tar.gz=4657d7013702adce21ca21dfe71ea4a0 ruby-3.2.0.tar.gz=76ca7e7d71898ab1e85155d69403754e ruby-3.2.1.tar.gz=055101c924538467c63fcbf42abddc75 ruby-3.2.2.tar.gz=eb6f18605e1e1be5dfb5b45f31bf6a93 ruby-3.2.3.tar.gz=e0ba90554f7ea41c587ffa7fcfd064ca ruby-3.2.4.tar.gz=c48283a23c72d7aae19b7f510b89444a ruby-3.3.0-preview1.tar.gz=0833f555b1b8d5423953600fb4146639 ruby-3.3.0-preview2.tar.gz=4f82f4c9e512ec0a53baa1be8d35ebf7 ruby-3.3.0-preview3.tar.gz=a32ede198a9da50d4afc4421a4a993ad ruby-3.3.0.tar.gz=f57422a0f995cd5a93c726f6c42c310a ruby-3.3.1.tar.gz=368e331a35145ace4948390ed76cf1df ruby-3.3.2.tar.gz=9a7efebc6a0e4810c716ec6d401dc372 ruby-3.3.3.tar.gz=beb9773cc4d9d8da29463ab175e4db28 +ruby-3.3.4.tar.gz=f2e16c1a56e07e185214e85c62657941 ruby-3.4.0-preview1.tar.gz=93b9b1040a2dd7be7514a7870aa7da03 ruby-enterprise-1.8.6-20080507.tar.gz=17e3c52e73e42809f57ad0000a6cb4ab ruby-enterprise-1.8.6-20080621.tar.gz=626fc3811eee2dc92ac27ea63d37a8b2 ruby-enterprise-1.8.6-20080623.tar.gz=0bf8a3a93c6b37bb1260cc09b05e81fd ruby-enterprise-1.8.6-20080624.tar.gz=de58b97128aa65209f291c66eab7c4a7 ruby-enterprise-1.8.6-20080709.tar.gz=f0ded08cec64959fa388ec6a237b9c47 ruby-enterprise-1.8.6-20080810.tar.gz=bfdcf06f437af825cd9f2d321f9d1896 ruby-enterprise-1.8.6-20081205.tar.gz=50206bec9be2e08a862e5ec2e70fa693 ruby-enterprise-1.8.6-20081215.tar.gz=aab57b7d5061c1980bec5dbe311ec9b2 ruby-enterprise-1.8.6-20090113.tar.gz=e8d796a5bae0ec1029a88ba95c5d901d ruby-enterprise-1.8.6-20090201.tar.gz=a965e6789b553efaed72191825b13713 ruby-enterprise-1.8.6-20090421.tar.gz=c777b361aadccda7988be16ede7ab15f ruby-enterprise-1.8.6-20090520.tar.gz=156572a8296bd0440970a6bb95018a13 ruby-enterprise-1.8.6-20090610.tar.gz=0bf66ee626918464a6eccdd83c99d63a ruby-enterprise-1.8.7-2009.10.tar.gz=3727eef7b6b1b2f31db7d091328d966e ruby-enterprise-1.8.7-2010.01.tar.gz=587aaea02c86ddbb87394a340a25e554 ruby-enterprise-1.8.7-2010.02.tar.gz=4df7b09c01adfd711b0ab76837611542 ruby-enterprise-1.8.7-2011.01.tar.gz=4640634347cd8e5469cb718853e2112e ruby-enterprise-1.8.7-2011.02.tar.gz=8c5faa11c1ddaed3f44b7294711980cc ruby-enterprise-1.8.7-2011.03.tar.gz=038604ce25349e54363c5df9cd535ec8 ruby-enterprise-1.8.7-2011.12.tar.gz=1e5f3059d52a67ab5d91d472b756de08 ruby-enterprise-1.8.7-2012.02.tar.gz=8d086d2fe68a4c57ba76228e97fb3116 ruby-enterprise-1.8.7-20090928.tar.gz=ae00018ce89d95419dfde370fcd485ac rubygems-0.4.0.tgz=86a64616548a793e1a5f825f0dd385b9 rubygems-0.5.0.tgz=80d151edd94a06bcd2452a7e272b4d96 rubygems-0.6.0.tgz=5df803f5a04654833690dd32283de741 rubygems-0.6.1.tgz=c4a0faa9f876ad805ae80d1396a29d97 rubygems-0.7.0.tgz=ede9b55343219e8b3491793aa12c46f3 rubygems-0.8.0.tgz=9ef6e3c34dcb54e295c8e57321ddc079 rubygems-0.8.1.tgz=6276d268b420c0d61796cdbf6d28dae4 rubygems-0.8.3.tgz=6e6da80f61d6e77d0ad9e531767f6fd5 rubygems-0.8.4.tgz=a2ad2d03dae8a98002c2a7cd6c3ed352 rubygems-0.8.5.tgz=b917c084e1e6e99d8e102af8dd687ddb rubygems-0.8.6.tgz=9de98d2f62e3f91521b0207a4dcdeb5b rubygems-0.8.7.tgz=7fc04b9f9acc0c18cbbe6222be8d0bd3 rubygems-0.8.8.tgz=a8535e9c35a4c215d6ef9268d4bc69ed rubygems-0.8.10.tgz=d26592e280c0fb24c51f2837c3f48e67 rubygems-0.8.11.tgz=aa363b428c4c1fc2e076a4ff77b957d7 rubygems-0.9.0.tgz=5d496e1f415b8b4033ab867f01d1161f rubygems-0.9.1.tgz=a62314cdb174ccc88a27b8924fa79e4a rubygems-0.9.2.tgz=cc525053dd465ab6e33af382166fa808 rubygems-0.9.3.tgz=600940a22ecd79e28e0fd37ad1f1d871 rubygems-0.9.4.tgz=b5680acaa019c80ea44fe87cc2e227da rubygems-0.9.5.tgz=91f7036a724e34cc66dd8d09348733d9 rubygems-1.0.0.tgz=b0b74eac0cbfc5a13f895ab6f803edc1 rubygems-1.0.1.tgz=0d5851084955c327ee1dc9cbd631aa5f rubygems-1.1.0.tgz=85f994904c5b4045f0a859b29d0be717 rubygems-1.1.1.tgz=1a77c5b6b293a3ccd5261dc120641ccc rubygems-1.2.0.tgz=b77a4234360735174d1692e6fc598402 rubygems-1.3.0.tgz=63d3dfc038710eaf532b6a133225115a rubygems-1.3.1.tgz=a04ee6f6897077c5b75f5fd1e134c5a9 rubygems-1.3.2.tgz=6204d0a4c526a1d8fdbce746647b179a rubygems-1.3.3.tgz=0e9697db44d812712350baf28016b4a7 rubygems-1.3.4.tgz=b17b398503253bf36a101c58f02a226f rubygems-1.3.5.tgz=6e317335898e73beab15623cdd5f8cff rubygems-1.3.6.tgz=789ca8e9ad1d4d3fe5f0534fcc038a0d rubygems-1.3.7.tgz=e85cfadd025ff6ab689375adbf344bbe rubygems-1.4.1.tgz=e915dbf79e22249d10c0fcf503a5adda rubygems-1.4.2.tgz=b5badb7c5adda38d9866fa21ae46bbcc rubygems-1.5.0.tgz=49bef7186bf3c0ca6ee7adf4b585bccc rubygems-1.5.1.tgz=47577a5e33c9c6f1e3a56aff7f51d0ff rubygems-1.5.2.tgz=3951f94c09c16c774c8bcebc94fa5374 rubygems-1.5.3.tgz=38bbbdc17aef923fb41f054cf8421116 rubygems-1.6.0.tgz=abd27b5a9002100ff74ddb398a1c9689 rubygems-1.6.1.tgz=a77c64896aaa10d64aaf34f5c1488173 rubygems-1.6.2.tgz=0c95a9869914ba1a45bf71d3b8048420 rubygems-1.8.6.tgz=8e95d0c5b377a003f3d54a49461e81d9 rubygems-1.8.9.tgz=fc399445d693c29778779e5828ee5e90 rubygems-1.8.10.tgz=5b08ee31740c9b0bd36f6c04d537e7d4 rubygems-1.8.23.1.tgz=5259ce3eb7988950fa3aff9051a5de91 rubygems-1.8.23.2.tgz=fb377c7fd387df14a33e529153adc316 rubygems-1.8.23.tgz=178b0ebae78dbb46963c51ad29bb6bd9 rubygems-1.8.24.tgz=3a555b9d579f6a1a1e110628f5110c6b rubygems-1.8.25.tgz=1376a258d43c53750a8df30e67853e10 rubygems-1.8.26.tgz=0ea47f1efd010f4c82b8a51a934f48dc rubygems-1.8.27.tgz=6686ad26735c21d0d6e58b6192c7da5d rubygems-1.8.28.tgz=2df78039f391fb1f71c02c2fc5671c94 rubygems-1.8.29.tgz=a57fec0af33e2e2e1dbb3a68f6cc7269 rubygems-2.0.0.tgz=89ce467eb2d55657e9965a46559acbcf rubygems-2.0.1.tgz=2652ab6f001a873b8933e2ca09505974 rubygems-2.0.2.tgz=3471f140a70bcd32a7495b545cfce790 rubygems-2.0.3.tgz=854691f145cea98b4100e5b0831b73ed rubygems-2.0.4.tgz=3ec32dbe783bab37a87f50758f8efe13 rubygems-2.0.5.tgz=641d82672937d40d664dbc18f49cdcec rubygems-2.0.6.tgz=0633f50db16112bf6c3cf9bfb9ceb9bd rubygems-2.0.7.tgz=9046700f1222712fedfb836fafa08c50 rubygems-2.0.8.tgz=5432214a740c0d13482e43a5328a6518 rubygems-2.0.9.tgz=bc55898247297ffa190223276b1b1bd7 rubygems-2.0.10.tgz=5457ba403cd9a5f4f5fb2ef4a2a1c03e rubygems-2.0.11.tgz=0f28e3fde3348c0f23ceecba73a6cbef rubygems-2.0.12.tgz=99c416517e2de1146d2c6fbb4c4c1441 rubygems-2.0.13.tgz=3970e66a670ddb6d1aade9c7b18033d4 rubygems-2.0.14.tgz=4a7aa0b144e465230ab5d7b59dfd7e8f rubygems-2.1.0.tgz=9a9d242baef5e58fbfe79ec5206cd316 rubygems-2.1.1.tgz=b34d6f4028b69a84123a6b7cb0ac8028 rubygems-2.1.2.tgz=b5c5c4430be60f911014216d41886ef3 rubygems-2.1.3.tgz=ac7bbdfecd49f9304756aa5ebeb51400 rubygems-2.1.4.tgz=aa502b1ea90fbdd14ca9b32634795c2b rubygems-2.1.5.tgz=60564b762d4e186815997653b1c876ab rubygems-2.1.6.tgz=e11237a8f87dbd8c085770551d64a8f8 rubygems-2.1.7.tgz=b721ed7d5fd57ed05f77eb21a3a592ee rubygems-2.1.8.tgz=cc4c84c0482840389a457740e8083ed9 rubygems-2.1.9.tgz=2636bf26c0a9ec889c7bd938887bd9a3 rubygems-2.1.10.tgz=6fa671d7d6605de73d16f529cf7bffb8 rubygems-2.1.11.tgz=b561b7aaa70d387e230688066e46e448 rubygems-2.2.0.rc.1.tgz=f7d80b612339169569f2675155c202f1 rubygems-2.2.0.tgz=3c16e50673adb99d1ce76d5231f764bd rubygems-2.4.8.tgz=dc77b51449dffe5b31776bff826bf559 rubygems-2.6.10.tgz=ab5a0028d2a0653691b29d7463bd0892 rubygems-2.6.11.tgz=8d514b836fcf3ae2c20b4fe8d5cdc3c5 rubygems-2.6.12.tgz=7c454ef88b716c1a123f62b26bb9612b rubygems-2.6.13.tgz=e6f19b51614055d826e431549a12a80b rubygems-2.6.14.tgz=e0a6914ce03b91dfc6d448ebf292f145 rubygems-2.7.0.tgz=771c40015538c0f225c5249e4bc7d441 rubygems-2.7.1.tgz=65646f28f3c36ccaa7f991c17e15b8a9 rubygems-2.7.2.tgz=312a238ed98a61d2b3d165b790b6062b rubygems-2.7.3.tgz=fb3a1927a1842b75677a24f48dd63ddc rubygems-2.7.4.tgz=e9bbf5a4cc9a74293884b91f49603ea0 rubygems-2.7.5.tgz=516a4f219976003feb4b4f797cbc66b0 rubygems-2.7.6.tgz=366cea352c2b1243db726013c3d76fc4 rubygems-2.7.7.tgz=b6721f6ce4af08f68c6f513bbddfe484 rubygems-2.7.8.tgz=a3ed89a34e1ae8f9da0c620a8aa35f12 rubygems-2.7.9.tgz=173272ed55405caf7f858b6981fff526 rubygems-2.7.10.tgz=464754059d8ca01c1121a1233d866e8c rubygems-3.0.0.tgz=3908105894e531f7ad3aceb8b41dcbcd rubygems-3.0.1.tgz=1e8af9b87a67f15841ad2be7d5725a5f rubygems-3.0.2.tgz=d8db1b516ae1e35b8f6f56cb526f879a rubygems-3.0.3.tgz=b7a7dd5f85485334a6cb61b7dac20cff rubygems-3.0.4.tgz=7d0c49077a2d19f48d88567cfa3cf17a rubygems-3.0.5.tgz=4664467d621d719688e4778d147c306a rubygems-3.0.6.tgz=60d84e843b131fb87c8fd67e8fac6470 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=3e9afdf72f153e2f66259fc2b6fca594 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=c30459287aec83548cfcb17340fa73d5 truffleruby-1.0.0-rc3-linux-amd64.tar.gz=138f6814451ce634b0fae3aca5579248 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=94ed54ecb65bea2166a2159431b0362b truffleruby-1.0.0-rc5-linux-amd64.tar.gz=9e5428611e22b093d05afebbe0ccbc2b truffleruby-1.0.0-rc5-macos-amd64.tar.gz=b32a254fed71434c3431fb2effb35c5a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=7f394a8c7fe356b7bd36683c57f74ebd truffleruby-1.0.0-rc6-macos-amd64.tar.gz=f033329d03f1f846d25728c2af9d7524 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=184e98f2d6939f63db4b915943ff60c6 truffleruby-1.0.0-rc7-macos-amd64.tar.gz=d19213b33011f7a55e0f32d25e19184f truffleruby-1.0.0-rc8-linux-amd64.tar.gz=a394167c0331c6d8c1123e1f992e5411 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=dc1bf0fcfdd5837ae0ca56d6d6e5f7b0 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=f6ec25bd532bf0551d35327d1aa4caf9 truffleruby-1.0.0-rc9-macos-amd64.tar.gz=c80a345f9071521cf1961ab75ebc7dd1 truffleruby-1.0.0-rc10-linux-amd64.tar.gz=3a889726efcdf33feb7ef3df13fd5f39 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=bba618b4483b79eebf9f0e7af4078502 truffleruby-1.0.0-rc11-linux-amd64.tar.gz=a25e179ca0be96a1bc737a600729c195 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=bb8d8f5525e1ba86bb039e56291c6c7c truffleruby-1.0.0-rc12-linux-amd64.tar.gz=872774837057489250527bf863192115 truffleruby-1.0.0-rc12-macos-amd64.tar.gz=bb4a64e6c4882fd0c5e412bf9c57720b truffleruby-1.0.0-rc13-linux-amd64.tar.gz=0f36eed2eb36846785fdd4eae24adfa0 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=1bd3087a0f2df4c006b87c9488ada6d4 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=9eddd1aa98c9649e7c01bb10bf28c471 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c93643f1d00b370411310ee7a1dd5330 truffleruby-1.0.0-rc15-linux-amd64.tar.gz=bc7339a6218ea991f2c72ce8759cb6e3 truffleruby-1.0.0-rc15-macos-amd64.tar.gz=1671d08dd2f5026d58b326fd55c9b7de truffleruby-1.0.0-rc16-linux-amd64.tar.gz=5564d17f19b8ee0edb96ab5b1bfbda98 truffleruby-1.0.0-rc16-macos-amd64.tar.gz=61583b529b6a1337398b0966db952d24 truffleruby-19.0.0-linux-amd64.tar.gz=006220c7bde7d0b5c72481133624a83f truffleruby-19.0.0-macos-amd64.tar.gz=9ef7f5a311465d35e54ac6e00ec3d169 truffleruby-19.0.2-linux-amd64.tar.gz=2f7fe574e0695fb6001f4f5282aa2f79 truffleruby-19.0.2-macos-amd64.tar.gz=aa20f76b3eac1f4976a507364201d1ad truffleruby-19.1.0-linux-amd64.tar.gz=71368f8371069017d911528f052b0a55 truffleruby-19.1.0-macos-amd64.tar.gz=7f086adbc89fdfaed35273394ac3ac66 truffleruby-19.1.1-linux-amd64.tar.gz=c1ad4d17bb40e214b124222f3a7c6db6 truffleruby-19.1.1-macos-amd64.tar.gz=f4e76b0612319b4a82480cbd1fc90210 truffleruby-19.2.0-linux-amd64.tar.gz=458ed5fec1a849ef5b00e19b0e25d5e9 truffleruby-19.2.0-macos-amd64.tar.gz=dc324575ad20e3054980835c24ea7161 truffleruby-19.2.0.1-linux-amd64.tar.gz=ad7444145550d89931199159163077c1 truffleruby-19.2.0.1-macos-amd64.tar.gz=b5bcfb0aaded1e2d1763089ab6c9a14d truffleruby-19.2.1-linux-amd64.tar.gz=fc4879d2b0cc22c152a8bf893a72c346 truffleruby-19.2.1-macos-amd64.tar.gz=71448ff3f8f1da086f222751d3f853bc truffleruby-19.3.0-linux-amd64.tar.gz=dd44ac30b5a1ef3a7d61172cda9b30b6 truffleruby-19.3.0-macos-amd64.tar.gz=41daa52f0f308abb77a2b91c1b7e0f3d truffleruby-19.3.0.2-linux-amd64.tar.gz=2db2cb5c29523c9bdb6f59dfa0bd74ce truffleruby-19.3.0.2-macos-amd64.tar.gz=edf1603643938686dce57139aadf7d3c truffleruby-19.3.1-linux-amd64.tar.gz=a14c028351f7a3965bcb56e9b22364de truffleruby-19.3.1-macos-amd64.tar.gz=a8707d0af3eda694ec07a5387d3443fb truffleruby-20.0.0-linux-amd64.tar.gz=b30110ecbc50c4fce402fdf44c45dad5 truffleruby-20.0.0-macos-amd64.tar.gz=0671e5909cefb9a2c12c473fc0110821 truffleruby-20.1.0-linux-amd64.tar.gz=4592b5fc3636d82fc998ab6fe0a43584 truffleruby-20.1.0-macos-amd64.tar.gz=3c0be43db86817c7037d3ff5053d322d truffleruby-20.2.0-linux-amd64.tar.gz=e9859decb24829f9a189d88b3c2e9b79 truffleruby-20.2.0-macos-amd64.tar.gz=49e7ccf8f9e60d6c59b3b07b854466cf truffleruby-20.3.0-linux-amd64.tar.gz=93a20845f7d9d39100761424dfc0a734 truffleruby-20.3.0-macos-amd64.tar.gz=b178b7a94fac58400450417612fe3441 truffleruby-21.0.0-linux-amd64.tar.gz=c03304a505c8699e697acecf5030d95f truffleruby-21.0.0-macos-amd64.tar.gz=019796be37a58ef8e186a625f2ff5d07 truffleruby-21.1.0-linux-amd64.tar.gz=065bfcc48f6925410e0da21e16428b64 truffleruby-21.1.0-macos-amd64.tar.gz=325f6854c10d8a3a114c80da582c469f truffleruby-21.2.0-linux-amd64.tar.gz=0aec44721a040845347f18c1f72ceb75 truffleruby-21.2.0-macos-amd64.tar.gz=76d27715b20902df5779f7a0c00852b1 truffleruby-21.2.0.1-linux-amd64.tar.gz=f68e9b8a9f9cae5efc5ac45a7d9e760d truffleruby-21.2.0.1-macos-amd64.tar.gz=b021e50fc94cab590b49d27f2ea821b0 truffleruby-21.3.0-linux-amd64.tar.gz=359aca79cba4e08f9955d9c6543c2189 truffleruby-21.3.0-macos-amd64.tar.gz=d9e2e2c6fcd3ac16f0c37b0ccffb4f41 truffleruby-22.0.0.2-linux-amd64.tar.gz=324327026e9b2963a8e5fb4ee3f4e216 truffleruby-22.0.0.2-macos-amd64.tar.gz=7029d0e291d498a264d9b413729a3e17 truffleruby-22.1.0-linux-amd64.tar.gz=9329cf507ba8ac529e93156cacc1425d truffleruby-22.1.0-macos-amd64.tar.gz=353242978b46cafc34b05e2c81206096 truffleruby-22.2.0-linux-amd64.tar.gz=5d676377056ae94fe847be721c20405b truffleruby-22.2.0-linux-aarch64.tar.gz=b774f4b7d330842521f1e6e56cb41db5 truffleruby-22.2.0-macos-amd64.tar.gz=e45fdd9a05aec6220a76fb707b0a5ae8 truffleruby-22.2.0-macos-aarch64.tar.gz=ebcbfe056d90d06de4bd0a9d699bad8f truffleruby-22.3.0-linux-amd64.tar.gz=ada8bc5dc52aca8317eaeab04d91e877 truffleruby-22.3.0-linux-aarch64.tar.gz=11493301d5519aa73e8f0e140cefb581 truffleruby-22.3.0-macos-amd64.tar.gz=9e27c677637b69b0460fb0a4569a5cca truffleruby-22.3.0-macos-aarch64.tar.gz=eaa1c9020b521226f8bb48b8c7e5c596 truffleruby-22.3.1-linux-amd64.tar.gz=243d926f038fd2220c03dfbe40ef58c3 truffleruby-22.3.1-linux-aarch64.tar.gz=01487fe680863381489bf2a0a2ac162b truffleruby-22.3.1-macos-amd64.tar.gz=b3d5a777d94856e51034d81076e8ef72 truffleruby-22.3.1-macos-aarch64.tar.gz=320ce75730a5b9f16f111eb7ef5e4e09 truffleruby-23.0.0-preview1-linux-amd64.tar.gz=76c1cb23ee63ba4de93a0c23784bfca9 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=eec3fc74565f08e9468982692f7f9010 truffleruby-23.0.0-preview1-macos-amd64.tar.gz=50e38f3cd548dfe78f397f76ed577bf1 truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=b769bcf9b843d9b2980def1e2139284f truffleruby-23.0.0-linux-amd64.tar.gz=6e1a491406c5dbf42de10fcb3ed7dc1c truffleruby-23.0.0-linux-aarch64.tar.gz=5c3663f64bee707173b2684355a9a42e truffleruby-23.0.0-macos-amd64.tar.gz=515a9a8a0f39ba9399e869cd418ebff5 truffleruby-23.0.0-macos-aarch64.tar.gz=57e5fa52270e692b82c445107fe6b6a6 truffleruby-23.1.0-linux-amd64.tar.gz=f7511c19045e57e72f9b5415bc17c8e8 truffleruby-23.1.0-linux-aarch64.tar.gz=e8a20dd919a2ff77b7cc5457e853d15d truffleruby-23.1.0-macos-amd64.tar.gz=d3b6a3cbc0a230ebae6f3a462a32ddd3 truffleruby-23.1.0-macos-aarch64.tar.gz=ee74fc5d192c2fb8afd0458d2d429c02 truffleruby-23.1.1-linux-amd64.tar.gz=d7e1c040da170aaa36b5f5a1d106d237 truffleruby-23.1.1-linux-aarch64.tar.gz=cf508ba3787be20c03bac690f3bdbac5 truffleruby-23.1.1-macos-amd64.tar.gz=a662a8672871524808500dddef3808c1 truffleruby-23.1.1-macos-aarch64.tar.gz=de543312024993a533e3caa63b396127 truffleruby-23.1.2-linux-amd64.tar.gz=e3e5b01b291d7fea61be2be842c7e8dc truffleruby-23.1.2-linux-aarch64.tar.gz=8fe26f643fa81eec6de3bde7024c858a truffleruby-23.1.2-macos-amd64.tar.gz=83bc41bf699fa847df7e60412bee2823 truffleruby-23.1.2-macos-aarch64.tar.gz=7dbd2e182cfec0cf2d2e37784721903f truffleruby-24.0.0-linux-amd64.tar.gz=202f05706d28faca75d5e3cd0f9bef78 truffleruby-24.0.0-linux-aarch64.tar.gz=4faaf4edde4f6a516246b7c2f4ee80b3 truffleruby-24.0.0-macos-amd64.tar.gz=d07f27e0e29398c6de836b0049105c12 truffleruby-24.0.0-macos-aarch64.tar.gz=10cf176718968893468caba617c02141 truffleruby-24.0.1-linux-amd64.tar.gz=2914bfb81b136cd1fb5736c0a40068e3 truffleruby-24.0.1-linux-aarch64.tar.gz=429e6ada9a95ea23ebb95d01f90eb0f4 truffleruby-24.0.1-macos-amd64.tar.gz=e3aa5ab128f5d169d93f2d6df98c4e77 truffleruby-24.0.1-macos-aarch64.tar.gz=6f81a1afe1b89a40f00c9bd4216ec45d yaml-0.1.4.tar.gz=36c852831d02cf90508c29852361d01b zlib-1.2.3.tar.gz=debc62758716a169df9f62e6ab2bc634 zlib-1.2.5.tar.gz=c735eab2d659a96e5a594c9e8541ad63 diff --git a/config/sha512 b/config/sha512 index e828116..0892075 100644 --- a/config/sha512 +++ b/config/sha512 @@ -1089,645 +1089,646 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.1.10.ta https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.0.tar.bz2=e610c0029dd68d15b582f09086ac39a6e5d039ffa9c18e5fefaffe4b0279445258050327bf7c02c8ef672a7ec58a32f5850c044d9083694d0b55424f2b75e945 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.1.tar.bz2=d841aff173f5a0af71384b56e1430395b287a771f80131279e22647e368acb20b5c22e5c0d4858510525b9783da499b6f6fade081e1d37fac3fe7a50cb34cee0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.2.tar.bz2=17be6eea903f162178edae84c67f263b9532405c0cb5bb320fa51b019869d114e0dc4ad7fafd6cb2597e45b73d4777d3c4e0d4f22141de30bd2ad02ccdd41ee3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.3.tar.bz2=8dd4bb1cafb2d82586b199bf032edaf23fd9bcf8a05b7e2087de172b8a8c6c4fb96584fb15372033b97bbe11a7f8aab25057c03d71e5ee21ec4a647f95687413 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.4.tar.bz2=54f9fceb0496f647b3c59dd7411a583c74e7886d8f127aba10379de739c85e45d62c2688280ba5d21a45c5054f42a2645ac2a9d990ec1a16cbb2c533edd9eff4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.5.tar.bz2=1aee7aa974a08c6bb5a29b0782efa2950c1e530bc2100e018d66450e8e89701673a034a45adcf70bdc37f52d4027ae263d7e4410d64fc637b594ad624f10a25c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.6.tar.bz2=693173e4e235300cf30ce1592bada6aba5bb29a123157aa419ba8403757682cff31c9b2b0a4e97daed557953f52c26ebe0e49605e1d12f5e4247e0096d736630 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.7.tar.bz2=8af3b57425f7cac45e7bc61029f872facc87e9ffeb3243f8fb43407cbc0a581491f38091b0fa45c8c148b730fd8cd493aa5286177b68092d7944dd73ba585299 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.8.tar.bz2=f1a7801bd0116914a055ff4013840faeac0e432b55aaae4c0bb61eda3d812eb5b3093c2c536fd9e2e28eca81137300f84418d8bc8dd9e48ffe245ad90dd3eab7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.0.tar.bz2=e1fea7c85410615f76b02df366ee49f929cd3bf3e52c3fef8b848a8a6d2b982de03c325aac664c6550b216a11cde64ae571bd5a5467ddd4a8b61039d874b2955 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.1.tar.bz2=e8b6b5dafc4b46e97fd905a5396d09ee1cfd1c0b4b74b9c3bd9e1056684f05345ac1599817cd9cb1dcd410e4e3ea23d5f2fc86da12e01fd076434c1b2917f117 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.3.tar.bz2=8172c35a381adfdbf0f90fddf526e3a5c5d4590e133e041aeb339137c1c31f16a47b904c61048c29906dfd2245572dd69caec507432628bbc98bb3eb94891575 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.4.tar.bz2=fe9370f2f45c557fd24574219e9597826f4614a8c59f092bce54338a2e927d16bfd4abbcaf0203a60a35a11169310d45e79c4a33fa4d45916bd6e4eefcc7b888 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.5.tar.bz2=e42fe5b628b6a6cfc87abaadbd9140cbc5c0000993c3272740ee6e20d07d2bacffe5148213f9628d6bc6f97211c0905e55d7bd304763ae095d86df8c2b2d15fa https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.0.tar.bz2=baadb5c405fab06da091e75af6497370757cb694d50c9f76fb06bc0a281df13f4ae893df49657c7dd7e86dfbd052d2cb7297961f9739cda4089ed71e52ae7bed https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.1.tar.bz2=71ad68ef1317ce5ba51353cc226fc7b11923d9022770b355cb1180be7c2ba4bdd87b079a8dec15c09ef3ad42056018a41a603bd0a10b8124433f36b0930153d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.2.tar.bz2=440f27f682a7f9d2a99ff8c0687c1fecebd8bce494b9db48ab9d303250b8ea12dee51eed0f68d940f141d8e2699653fca7d2a6811eddc5c512a9fe39430fde3f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-1.9.3-p392.tar.bz2=3582744ce4a4ca8b497c918e129823167e80909367d65484c2a09a8e6fa185a38bfda8c1b6676742acb492472d0687fc5b6eb18965201e0f54268d835f618df4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-1.9.3-p551.tar.bz2=fc04b976fa02fc5c1cd4ccdd49948b5e289b3a5bba16ef99266b65fbb35f0c20a0ed02d5b147f2fc4469db6a7b6665d34e0373dba242ff04c95fa27642cfde1e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.0.0-p648.tar.bz2=7dd451549e9c1a43ef86be51eaa746344c424d1accbc9cfd360067c3aec20db8ffee277e1108d40c280f1b8ec0851c6e51bc448f25505508d9af153878d9b091 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.0.tar.bz2=cfe087a9daa6de2ef00a6501d568a25a3386da730304697e1bdb9fbb098617a143f073e58629876de4f09a1e8a60a48ec05864fcbccbd6733d9e1b3d309a1100 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.1.tar.bz2=b74cc64103a31b9b9545474fe202ab9f9b15569681262438056865e4dcad08419c44bb696c7dc8a18f72b3bd8e5e98201d0c3608ea652c907372c3c95cb7e16f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.2.tar.bz2=fafffbcd24eb3c55c89704e6e8ea48ad6be286bbb4e38f56c3b3d61f9bf4f6bec28882da2ff60f17f79516476ae50cc4cb8c6a8cf4a0f31b910d6153727caed2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.3.tar.bz2=4daaf8bba3a04d46e04720ff2af1469e1caa68168f5c27d1d3e0cab922055b1f9c0b26ee64c3cb46c17b6a9651ee7a11bad19e9414102455e96454f1a7929408 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.4.tar.bz2=988c13e900168b901a3a3deb4bb96e19b15205cf4c2793b56854b58924fff652946a083be6615b2053fb5285df0fd218d1f9f91562798f0386f0758973765dcd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.5.tar.bz2=c7396627e45d8df68b18c2491fa756085aeb4ec28c1cc707617cd903fcd47d4fdd3cd6ed225dccc14497afb14200b9bea5ba38f1e8dc621c4aea8b8f0f1ccc7d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.6.tar.bz2=389aa514d93d165fe299856a5348b1667f295aaeb49094bb5ff49e9c6861bac603e698c36bf81777797d05a1d3c405e37c1a00a4dbb85f262bf02c1b0e16ff04 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.7.tar.bz2=5a38bc1dd227658347114b935ad66e27fab67b8da9529a7f9083d6aac5743c40aea8c33ca95d4f10ed1d56f29bcc2c0747a3e88b87425a5786245792d8851301 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.8.tar.bz2=44e36e4918ab4c354cacdd20be30acf12f060aab808172184251186758f750ce688eef72f39ea110ab6429fbaaa5a792b1915a5c2d845b6e22a3cc4bc851c6b9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.9.tar.bz2=358f12ae2d4e177a080bbcde8b275691418884eae9a42c98161170c7b0f6029ffebf7ffad27961bfc8a50a393796934a2dd2c7f0ad2a35992c35dbd6c8c6349f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.10.tar.bz2=e7e98be6cf658eaab81486360f4d5d22f86805582feee4aa11a8e2fe6b461db69b850c7ea98840af0811910be7f534317ab5887bc48f47a9591b65fa7262feea https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.0.tar.bz2=307ee69b3051fcec2942fce075232a62f6adf6486239a89fab7bd63a9bf068e36371e67a5e42f86ed60e31b8219ff431c2d4bcf519b2c10393504942d2d90a9d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.1.tar.bz2=a0a30a805be9c43cfe52793d103e9f0dc6076d02b0c5af36d650564aa43958164a278958f7a7e1132ee5d3357cdcfaa8d59a4cc0bab027e288d935a44958b743 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.2.tar.bz2=d3218d01a18f5dbcdb65f216469a463215784170d32110f06372fda6325bc17e2c2aec1601a5bf3319ad753b123de056e6bee8aacdd7c64c4859570d40571ec6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.3.tar.bz2=4fb3bc10aa46a85cc37fb041d351b2a8f74d70c3de32fbceefebcd6e757cd8dffdfc86cd14fa6ae7d5273f875e1d4e13e6446b6dd1882c8fb015d1d34ab5ed2a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.4.tar.bz2=a008439e903b1e97eb5a66a88cf72c2e7438b12b78750411ba0ffa496c68beb8cacc2037763be1c8c8841fe9a248d4be0d0976420db0520b4b8456aed5480f3d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.5.tar.bz2=14573495aadfabb81b985aa485c0090a816f459a0db8e790a7d1bd948897cf650fef4e8aad7d2ab8232d2ebf56bf08363730dbbfbc2318625dcab04d3904b3dc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.6.tar.bz2=e915bc10ecd1129d7ed55a12fdefdd6b6fccc281cb3cc0790e5970978f17652068ccd7fdc160608cadc8556abb73a2c187d041899adfcfcb4a311285415145ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.7.tar.bz2=d80b934273b84d7ccc4e17fa07c9e0a0f95cb4a38224bd60ff73772ef7ecb3d1974e686bb10aa319642709e49789c0886f98f4fc1ccc5312a19ca19f03674e7e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.8.tar.bz2=9bf0cc35deab5f53900bc8e8264dc1b57f91a3477f241848df48109f4b5c97f3140470f523fa768a7543c61cdb7a93427866d871d09ebf8060a5cb75ac6d3790 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.9.tar.bz2=0cdefbcc88c5b9d34c08c8871c548772bd473dbaf54738f9855afddae8da5eecda607b36c546077efd0165114da385cd1f296433afe411f57a524fbff0a69291 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.10.tar.bz2=3aed1b12ca46e34fce66ac23bdd97ef815918275d91ca4723f9a6f2a2b93cb2b66f845747951593eaaf078bd0d982e06efa7641fc3e11d141b7605b086f93393 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.0.tar.bz2=ac6a699d5d08b33e7580a24c9357c0c8e8378208fc7385f5582f088a879f61e48a4654d72f03263a1dcf33fb0838b01c8c21fd39c5e2549d683466e0441381d5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.1.tar.bz2=77cb7698c66ccede33f558f6ab9ebe4be3b775a567d1d4dc12fd85d7b0f28d7bd446b18ef48ba1c879dadd76b50540b57f283e9f226e904e620afc3ba6585bae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.2.tar.bz2=9592c8e2fd9266f5d1cc780706f558e15d775cece995f5b6e933c54be7b7f2be2839b28ef1898b2072c5cdce36b830e72f967062ece4393765f8dbc88c6dff88 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.3.tar.bz2=8243575f30eb38409003b0450ddece621a589e29a4ffe219410820bc2afb97b7daec4c81d59d95dcfc83138414a2df707c925f0eb56907d565dac4bbd5a929d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.4.tar.bz2=ae16edab6e55d1b2506c4cb30d836639035a7fc153511125b578d6da8a8b40cd87650855fc6b4cf777c1fa0428c593325af88d9ad25d53acfbde0051a730eaa5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.5.tar.bz2=10f4aff595d12bdb425eb3268c868e0efb92059e6aed8683fefa5abedc1ef21d23a45e17802edd8e5e0924ba1c3277b653c0559ef4ad4c9dd2be2fee17226f8d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.6.tar.bz2=bc352df203155008da7a1099f7f7d26eb9f80e0d2e41c8adec5eb47f976529c6126bccc207563de87ccc2867d1e4c43797efbf295c9a7a4afce002ee19116074 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.7.tar.bz2=d71dc217011d154ef7b33780366bff07e4232ae77321ad6d16f19090f924ed3867c31f2af4aca4ffbc6a536b0320b676716ffb43e34b0323e81eafab13f17fa1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.8.tar.bz2=aae74010426e2a1288280f3611ba6aac842ff573f9b122fda9a4f1c514e09cb3d22281e6957b4acfcc753c94113852e083a9a80d0cae6b33682b83669c475eab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.0.tar.bz2=4a083c168d9facf3346b67dde02d9705109feef6fcd4e3c7c59c2bcb35c83597305e09ee143915fd993799a888d6d9ffffadb386bd57e9477312566dd6164deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.1.tar.bz2=58b30b00156691de2acc5d21d3255029fc3f9f2536e668298ab160d300fa0bf3eb0705aa524c9123ff09d770807cda0154bae012632b7e87120d7538f844560f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.2.tar.bz2=4c3c586765fd5afb55383d16eb9d0e7ffa5b1ff988a2b1d847e3f972a211b2401f035ff6c02d71de558cc161655438727079aafcc8ab80c97e07e16cd7fb1304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.3.tar.bz2=e66a4ca4b95496964ff4d77e36caf0894d913c1116f901c9b589da5a0e388302b64a79ad6acfe7eb1ca5917825bc0f866b482f074f1d5fed96d91e238f7ef454 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.4.tar.bz2=f95eee611be949327224b89942f4344e7d8e075b958ce3418b5874e9b23981113e4fd58254629fa9f6c2fdaf5840d44785ecf5f04433987f8fc4415df5c3e367 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.5.tar.bz2=447b28420be5b19f6b1381d232920e3c20bc894c2e0d1d2e394cc44e7859d02d177ec3ee09ce96e922f55b7fe2651918805f00fb783af3780e5f25c21f330195 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.6.tar.bz2=5f60bde5843fdc0b05bb852a2f1b30ce085dbcf7acaf105d5af951398b845c766113ff3740d44585ce3814b4953c004230eb4dc2ce8746b6236ea4b7a1d1cb10 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.7.tar.bz2=929a03725dba7de8d7eee3fe8987b858b9b9d6d377beee710af5c3e84b02501996444aa7b2c1db458aefc3e765da17cd17ac30fb0b4d77ab1e54239e72fa2a63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.8.tar.bz2=227849b5809072b3aee211125c2aad3e2e4984e9d9b4415dd8c01dbff70eb9c3758c3cf54f2b97fe282f7a42f205a2becf7b86e1e6ebb4a4d048ca32659603e1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.9.tar.bz2=c15a46ba1e89cc41523a21eec90d4e3af5b9739d27c2f2b51047f2c1db832e2773cbc04871a176f71e7124eb3f7b53262e40a1baab87262f8811a8d69d8e5358 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.10.tar.bz2=b83334e272e78995b699de28bff67accfc151cc7fb193d5c5746fcf06087643564b3a0b538cb64f50706642a620dba2cc54191357321852db42cc8c5648270df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.0.tar.bz2=82038a66827fbdaf60f404103b3956ead4e03c999893f0095109e7d853919992cab615f85cd96ba9158402b2de5a68fcbdb8b32e9d07c6f754e0591f72851b40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.1.tar.bz2=31e9f176ba61480b33b7761d2a19119a200ad61c8f85145f736eb196de50babaf278d023b274274c6a31f2173c5d022bb93e0f8d46a88223659d8ebcf6f5e278 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.2.tar.bz2=75d25fa6dc81ce8a62d02adc2e163e7c222c5946116c4880cec19460e2309457ee1a11a8eac94243ee8437514bfbba9ebee939218b6ccc7e5c1f15b673d432e7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.3.tar.bz2=84c93c85aa3733f2ac82e695c19e714ad4afd096edd6abda8a4915311d1f604453fc3fdc290c6ae1f9055d305ef400f8f8f152c5e15eb230baf7cfd5e192b7fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.4.tar.bz2=131b874ac376f42f3427dcbeb0adb0edd18ece834514ff5cc15f3b3e29b8f14697050051224d7ba2b509d428f780c653a4d7101149b8ded41ae373aab871e90a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.5.tar.bz2=f55d2ff7f2eae4d30fbc14226c928d1caff21db1f2cd559d3caeb0c07a7a3f034fa369d95f783e6f38cecb493d99aa1928def9d8574698e3edea3d33515749f4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.6.tar.bz2=06b12b2a1e85248311cf55620499806078b3b67110fb45dad9cb11cbaf1e230ce8a0da23c7de0a5abfccdeada8eb799f038b1a09980ee9572ec415e24fcf8c76 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.7.tar.bz2=49128b7845954f1f04502a484f17d5c0c6ecf8990047f5a383b2752ea9e09839e5994b210c2f60307d44ffa8b440472116fa1231ea899caf639e1b8a72f7f97c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.8.tar.bz2=24290aab4e0d48719659f8c1153d2b08020f17ae845e9ac6d6b6d3203e4a5b19061e907a214e8d4390277584ff4b46dd4a0113c6b201fa37e8a95c42fab5aea5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.9.tar.bz2=c2771d6b12f4240200926b2c40ec1bd3058c9ef213e2c6032e44799fa34b75b00f2564a0f7c0d9f972870d34c7742174310bfe3b15e2742a17ba2fa05e5a27cd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.0.tar.bz2=1be48c38da41f462c23d516f465ed34e2fe90c6fd53ee06f1efc9107077d9937413bee589d5d3384aee5c09da7087fa84864a50089bd1cf3c385ba3399e9b0a2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.1.tar.bz2=b7e1204e0e501312828ca0e30b77434b2d8d94581627196f0195ba93fb10a11046d44942393bd8a261585c564bc721313152a9087aa56b57b433ed14cc7922be https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.2.tar.bz2=e91a187a9e726ed26ddfaf09cc49473c8379545e2265934fcd1a1fa78ba99f9a119fe2c3c8247eab583389c3af7ec40a0e71da19f6ecc17ffc086759cebaaa15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.3.tar.bz2=77d9be5bbcd115131ec7c842a4449729d1515bf2106a6a235472dc96b58a56873c2d0fe6a3b824dd15ad00194b30e72a75813d8b4e10ee11cc793973130e2401 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.4.tar.bz2=a2e5409a1a88557bef747ca9b1ea65ac90e430500a8f9370023b4314cb5d1e0679a1b03761980ab2e933ac3521188e2151e521408e33cb4dde5f0bf802d81a41 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.5.tar.bz2=ed6288a4d81a740d722b43925db8f22f794cc704bf834a1f9c844e2072baceb8938547abb8f4fb1a50f92c34a8616904fc2679a44bf4adec4e78ce00e8456b45 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.6.tar.bz2=08cda5ff00b9297b46d1fb620301066b21240951924337b8b87d27526e55024e61121e51d9b35feea2ac5eed4027658b39ff487195140e7abe9158181c3349af https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.7.tar.bz2=3cc5695814c4ca49b6a0d7790093e85f5a359c5411618a12e60f4bda75c3635b94736762983e287cd04ce3ee3155d824bd9bb202aa929f85387a741d1685dd06 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.8.tar.bz2=91e371298a6dc1083c8b6265cc8d3d388d17a21d59e0103bba7e68640f80bdd12b98547584b1cd0feb7f8dad6ad530ef5660a154075960e1a76061d534609296 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.9.tar.bz2=7e3d0f7f42d644cf4eecfd88801afe088260d5fc8f490895378d5e4ede76b2bd67959b9803db59f7b19287801df43eba920885aa1bcd29f60d225745d67093c0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.10.tar.bz2=64683129da9a476d268ffde06bd7aa1c67b3c7c97b539d856833ffb127f458a55176d8b4a101e60b18ee923485097f3bd98e8216c3092c3d0527f6111cf7a051 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.0.tar.bz2=cada908be34428bc2f302bad6ebd778a2c7a8e979476e00e45c9444b65d7f48f397b838549d56ceb91f0e5593ffd663e9facc4ea5f5c6a4aecda85a5a1136496 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.1.tar.bz2=06cb5f2f0c0941802119dbdf34995446d6d69ee59eed9a5e9d7f9e7f0e14de440a9e77eee330357fa305e81ee39a6868651c740ebc91bb9a2085a74b33685f4c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.2.tar.bz2=23654c65e6e62354857f86098852af0ba50a15643df5e7f6fc8b710e35a3872f6eb7dc1bf9266375361f696d8ded0bcdb9ee9acdc8d0c975955d299292da7e21 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.3.tar.bz2=ac02a93a62c55a2a10dc260cd52749bd8f4bcf1a2d43dad3cfd2e5c0bf7800c51a5b00779526d84f759f6d50ce673c7f3e526392c4ab68322649f4fe980f2ac3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.4.tar.bz2=88651ffa2f1623ca3b93b60a591e828ea0dcfc73daf1eead2629531beef291331f8ed1a4a33d682828ca60bacfdd7fea77bcd67f1a0bdbfa9d1e4f173da53208 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.5.tar.bz2=001486271268cd1d2252f46b32001b25d493bbbc8ce981ecb608eaf8d2c2e6d6361f6d9bf052b9b2d7694e228bc302a1082689f2038564439705fbecc00de1ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.6.tar.bz2=a48c974f341cd10143eacf46a9d0eef45cfca3ed91ebc9f7fcbba73d408408eebc60c55e15dab391bc4a9ada6777e2be3ec4b9e849927c5782f4443a813a6ea9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.7.tar.bz2=b9e99d1df4a772441edf7fa4e05dd5aaa62efcc5a8c89fee68aa80c4bf1d17ad0e5ecae5682a10d2eb0ff78ee79c583f0cec46f5ac11ae874126082b9f8d76e4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.0-preview1.tar.bz2=8fe71fdb37955b031769359dadc5062b6c15e0618fd8961c932212a6a2610829aba8b1dbdcf4bdcc2e133665e043b29088f714874e3ef3a41d688b7beba78928 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.0.tar.bz2=c51f55af33e09ed425715dae0dd59dfa253e909bbd44b4bf3dc34452656438c23a754f6b2ccf0a3e878463519043361dc7ad8a757c87a3ae0e747599547dc7cc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.1.tar.bz2=fd09a4d721388c2b9f2fd09b68175dbd620e11df02ff7cea4e438d3205494a9883c25def06d6c1ae4207e7f82bc48fdd122fe12630bb9af9da451ce6be19d86a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.2.tar.bz2=2ade19f26f6e2eaf65a8ac3e9ca21cc8fe04252df58f9b14c6d0f92aba3c0eff27b1c68b1b05041496c367051e020dca7b0c64bf44fb07b4fbdee9e68b78fdf7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.3.tar.bz2=11d81f71ec3d293916bd6a00d28dfbcc93e721d12c6137fd58febb79e7399f8fd1ab5a66915863311db9539009dac06612a4b2daf0408fc1f1e84db8f8f4fdb8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.4.tar.bz2=bff3db8c69e85d503bb0686644f2d60b97c599e0cacbdb7cd4b18d630c50d04ed0dd90ea97be01c3b3220589abefc1e4dbef39246860e3c70993f0f2de738053 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.5.tar.bz2=32f69f0e33f7f7d41f4c0e5c5a1cd859a4c6032b0978c317ec3d333da42047b7f8f8dee9c4d72afe890b47b9f17901139142cfbbf228018d8ab5d02f7a01f0a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.0.tar.bz2=f7fb515855de32badd6e5ebbb03980312144b69dd8b696fb56320981e4f0964065cd13853a34dd321fca1ab160510dee8fc3b6c99f2a5e007e6974d70a564db5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.1.tar.bz2=de183d962dd4a8c95bea54f8740cc34931c2d856783fe7506f0252c5c71bb7125db00c9c7eaf8e80f8fa1c97208ba4b2a4d6c1a76e38d2b6251a92166749fb37 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.2.tar.bz2=7589f0292f72a2217e5024b51791f9a719ff0862bf39480f1460b5106f1c11172c72ccc1fe2a00b166d80610d76fcbefe64b7c9df0ed3a72c58964c2402982c0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.3.tar.bz2=d79cbc4812ebe9b308a145e96f6e7f64c2692b04370ecba0bcbaae5427afcc7e57ee83b4537914b6b90494fd45a11bbf2b27999a7a74c7fd569687a93c43961f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.2.0.tar.bz2=2d11ad1c89c1ce9873dcdc87c41cf38105b00e265277a173d721fce4bd350af73caf01fa4a5797e926f1a0cb180f1c6e969149d1d524c4df797939cdbbe9657f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.2.1.tar.bz2=cbfe8a92e732675ca1f7d51c04775dfdedec1b9f21b3b7f0760ef61b7c375cc4b0758a17302242087b55faac7c3f1217fab0f6a2e713a05dac082cd6a5d5df3c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.0.tar.bz2=172189c66b3c721e7413f0088f50e4eb8dd80d87779c3a4e74231f7036eeaacb8e373b7f5ff017f8aa274c1e1c872066f2f93485a2a369a7e9b442d157840bf2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.1.tar.bz2=829fcc1a3d878ee28e89a58a2f6d4221cec115d241a007b048953672d57548002c3a105ea4e65e344137091baaf5d5c54232a54c116afe03d0f3d61c07547c2c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.2.tar.bz2=ec2e7bd32e2d574773486e1c1d733611465765cf14895fa6b017b6ed6301ef40cd062496a3926788851e7ff3bdd62b488d03385aeacc66bed53aed18a6dec225 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.3.tar.bz2=79f822725d4e3bb7daf416e736d87f3b01c21d011423a2b3c65d9019a47ad4df256fd4a1f171961267ab8f20387019fec8f3f4ebfb6664f682bdf36914f6a329 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.4.tar.bz2=aba571bed773554b18863e6b942f2bca743729834657689a016938a34b7e4352e68d9fffc440b2fd4fcdd1bed4d1ba5dde689da535088d7ff8ae7dc364ac3b2a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.5.tar.bz2=0e46655028859f5abb64d71a5585db638d00edb9d20a487739d307bc1dfa2fca4ad196e04044dceab0e279286379e73110590c772a06786214c4eb23557324f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.6.tar.bz2=177e9f0a193f9dc45f8653306cf6a87bffba16780220fedbd8be67a3608a8f8d370011f3993590d58805a8ea4833d95196385fede4b513d908fd4263a82f113b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.7.tar.bz2=88bfad0d6258372d4e9739613a07352e954db3deb43c0e2d2a176f9cf55bc5e2df73e4cb04bda75e2dbb210799649f020a7284cd2acb5fb92d2b115a933a4f03 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.8.tar.bz2=3710f83ed7f3f30c9b5d3dd515c168534d01811cd33f20d3a54e654dfb5140afc8198f46dd823ac45072a83d844ad866af1e2b8265f54f9997356be88fa254a6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.9.tar.bz2=078ce0d7433e63d947fe4cb0cd5a14e6f5fca00b7309d7288359ed90989dbf618bd8c1f5f31b607f3ad6b0cf540d715dec2c38cfbf71cd170e572321598bde7e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.10.tar.bz2=f97f877f7afa604dfa7e8f1b399a4c034e79b616c95bd4e48927d88d1e8adf8e203901fa178f93c6af4511d26a38e2d8cced7225c2e75457bb02dc27b8feedad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.0.tar.bz2=ad619ccf77132166151e4982996e93135fb91d97701ef9aea12b6bd05e18e585dc4d5fc34883b3369ebba15474741db238fb90192eb273dd5428864429525d9b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.1.tar.bz2=9094c9bbda4c3d830382e89e4e1c24fe43cebd9d733b6878a43a34d679092bdb6c7b23cb3cc08d4efc6e15449c68862799713006703f95e2862bad1c0b0bb94a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.2.tar.bz2=54c8fc2f2a99f834292b83ef8e68e2b120f20fc4ff74856c13137065b95262f62188ed5c6ffea8fc4b0c1034d9f8a1b497878d6a581391d422994911f5fcb35d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.3.tar.bz2=b26daf1825cbc9cbe51e1abea84f3aae542beec7c26628201325026b4d4bdeeb46f8053a1c105973242ef532e66bd4eda5199dc1aa4faba1a6393f9cc126d856 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.4.tar.bz2=e5718fb13f2fe7f6b34fbc2b1a6db95576fcf9cbed481fea59fd4dd28d064104a912a1000533810221141ec09e9fd8d1e59850ae5a26ae441bb6d8878f42c418 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.5.tar.bz2=71ae2c5bac04a97694310daf76e896a1a02c245274e9c96ca96740f78a0e245302564bce757f1688d3e83b7c0c88989f702814c434101f8df786c1276a4f5a2d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.6.tar.bz2=1693ebd7cd3a452f51ce2ef32144aa36f6fa8121ec68cd0fff715db8981214ea9fc729099e4495e1e8bc346409551d4b93c6c3803fe187fc0c25360b80caab72 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.7.tar.bz2=53b05c51b970a239fab953dcf3bb433f59465fa0b4dfe58066132a1bf6247cbe4adcafe41b219ba453ea392f88a521349df14d58a91a855c53c9b9ba4cc16c4c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.8.tar.bz2=b9b0d99e590a48ceedbd1d6318c29b8fecc12b02ce5a6f1555593eb1b3e284c766f2f8800ee3070fb7a041593e4a3806d53590be760381268ef0f9588e127b08 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.0.tar.bz2=90491968190f4809fefb4068fcc37fb7e2ef179454f57c90bf2af308541f1ec175a72ded53202c1e86dbb63cb6b47678656f753574bf6ba525e982f3278a7602 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.1.tar.bz2=7f9ce1b6872352a6feb539948d26dbdfefb3d4225ba582ef8730be8fd85d5c350bd6f21346d43cfe26a8501c4ad145d733d94da5dbf25b15e7610ca037ad4227 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.2.tar.bz2=8544797f46d54cc4098227809561023bb7bd01eb2330724a94921c5a79ac64b44bd56069d7a77a3e6d2d3dbc504ec25157daf7fdf921c3acb3b4289ce1bbfb5c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.3.tar.bz2=fe086aad84ac7fe8009ea2bc16f0ccb7c60a5fc9034690af38fce1a05582a6226dc3d7b80d08d1952d03a9abcebd7b361f5fa2d506d71e1f5aae9b5f31ac22af https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.4.tar.bz2=ce06ce97ea1554972b00781332f126e767a3ab98f5023d3dc83195bb36b954b1b497961c74bf31340827d9a5de2e0bb34240accbadad550b2e692d26cb097d4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.5.tar.bz2=6fa248065a48cebd1e9950ae07f3e653b3e29e369fdd914908be0b215257fa2766b0182e392fb869af51cd498e258435f6d9b45a03452356dc08da0e96877ae4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.6.tar.bz2=ce912342033f395ba6298051b081c89832f656d61ecf2064e9568692552a938599c816d2cd1fd1f9bee721611f890b8329985c69f4d5b2bdbfa6635b48afe3b1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.0.tar.bz2=cbfc7a1cddff0385187a7bf2eb9dc71a8d14912cbbe4e9529b79414e49e681302ac9009b7c8e6fcf92a9f19a0ca5053a6ed25edfdb510e3e4e247474d471c58c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.1.tar.bz2=29b99b3e04325ceca89b64c7846aeadb412215270f6f7c390fb1e275ebe19b2faef811778c0615b2d4720ddd942a2cc209c72e623f559e6c04e78849cc1c1b1e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.2.tar.bz2=f67ab3ac13ae90622fb3664a869b0c584b97df0500384a28bda9c5c36cf2a27ac1f66afafea08bb29bbfbfc1e0ddc444427993ff4163987f5510c4158a90a96d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-3.0.0-preview1.tar.bz2=aaeeafee545dd1ba1c4df5b7e46e82f7e89e0dcf4fb10677b7e177e66f86e6825e85fa5ae3e74062363883768b3485495a3378f97693d45f675a6e547e989cba https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.0.tar.bz2=3e78b2a73167c3680aebb1ed015c583d4f6c58804d3b272253bee2cef37fd2d1cb3852fd2b408f4af1abca17725d923a1f28d40d2a33896e5cc21c4c6711d7ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.1.tar.bz2=14e7962e180b9ae16607347ba5360b9ec086eb8055b88d2f60b1c9284fafd93fea905aceb441f07d594a34b53647520f9dec38e4e9f6ad3e5a6850750d981a27 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.2.tar.bz2=5b7d88d4405cd45a6a720295cb0b7d3152dd757aac996c8d1a576c6ab2a45cf9ed0b0ac006423791cb038a14153048e96308ecc8ba1e761d4b7671dd6f880d15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.3.tar.bz2=320734a124e26de068457237b5f973278286d7e529e92405c1b856b6e57441b5e76c59d0f519fe43fbdd2c8c48c9dd37dc5094831c0e6a81d804e88888ab6237 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.4.tar.bz2=ca34ccbfc24adc4b2c6c5c0e3b27bd2754c2c5be61e9dfa7b919b4902174e351f45128d887c179c37ccd5163a7f51c213fae96be4d0c356e2d7f96acdd4f164b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.5.tar.bz2=fabb151c29ad7ef7432efd4d51ea1e20180006601617ba896f8b1379555f4088d398e96f7bddd7c9815b266acf5ea94527ef4acfad2446950da6fabc3770f788 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.6.tar.bz2=2728c38987d41169b7110fce2b507b5d3e971d5b043b60c9a3b8d6d385ec2a40d24e464f6cf081844282d6b9fadd4abce670e79f02e4606bdd5aeacd1b57f773 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.7.tar.bz2=f98f4dacd9d8c6c9515ddc2597da8b868c66897577cc5a76819db742f3649881ef5a7f85a880f1e359772b1ab08750dda6fa74ee826938e06b93a9848699b929 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.8.tar.bz2=47fb4b41e60b1e536b3a54e18e9ee92aefee7eef92d49716b46884b2a3d73a02e88e4815df64baedebff80e9e17ac7b0af6e65b406a2c53a4f90421dbc948415 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.9.tar.bz2=c81ad5e16aa18beb7c34eeee68ffa96da243f99ff69cf00932ad5ebe427c1f80e3f7fee31b15ec0d96c1be5c2007dfa6e96c38114f61e958c6b7ecc40270db4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.10.tar.bz2=856210b3eb2bf338c5da2668e830b95d48feb82c1c4407371b18c772df12878703a9eec948a2778acd098bcc8eb402ba6d57b2b935766847f3e652c3dadaf6f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.0.tar.bz2=6ea5e6338319e5d6861d420b10f93b5e6634a9925380c61acfbb258b6609ada76bf2a6b474b53a30b0a81f0dd81cfdd1e610b68698df73f69091f479ad39bc63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.1.tar.bz2=8e8e4ef137b9394ee34b760dbeaf4d23953bec083e5775a423ef6c16b75faf8bdfe99df975ab6b6d762509536b017f3510a9a5e9ab63060208edd4d2d96371eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.2.tar.bz2=756c9ecbe3c9801a0a364143478903318c524f7aba026239a1fb42d7390f74110805543a9ac2a9f8bbbeaee48bc867fd15d400d8bd46576bf4fd417d6136a3b2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.3.tar.bz2=594ff95e33d0f7af7be448a781ac68f895f8344ebb1c9a03898813baa5963024aa84b11baa405fa584070e4195fbfda9b908f1fe171f75f19e5e1d7879bdaaf9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.4.tar.bz2=a9703c6edcfa2ddb87bb73c070d963fc4d59599919865be9b1d93989906698c6f3b9c4fd7f2d597e5d710276555de0b5865676b92aa3aba1f1f41be4052bedc1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.5.tar.bz2=dbd91cccc0a00a1ca7e901d56f9840e62e4f139ff4dbae530169f41897d06523c7e8977138ffc6212e1b60589f3091a4e2f6b6714c0fad22fa65e442b248f61e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.6.tar.bz2=ec967415b5bec95154cd9ff8338a602a6d005fa647afb1e1cff54a0fd4e9c0697b9e952c2dfd8e4b30068a697f5391b9cd165d5d33f3b146fe35f2a8fdf9823c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.7.tar.bz2=b8786ef31db7d950b1309646f81e6a99d56b76223bb8d2d20ae045f09917332a869b14cee1bf235675c7d8eebc6942b5ebd6cf0cbd290ea75d9f9be1475352f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.8.tar.bz2=4d949a715a04cd45f6817b1b26093f7bbf03ca630aaa015972e7d0ca72bae094add18664e1489ebf8ade27c160d2fbcebdb105701d719461af13c4d5fcf2cd22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.9.tar.bz2=ec6cd8bd90ee99aa6470d9d524d89531f96f992efab8a9d6a709a3959ef4c314828276e67b84ed97d415cb3e0c837458d13732dc940c93d4d069d9b881d7f92c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.10.tar.bz2=1f60cae30581e3467c7ec07391de5045f238b61a49661ef0cf76d72ef78d220b7ae70b86b1e72625cf37085b6507fb1dfccfbe5554195f0c6eefaa996e199c16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.0.tar.bz2=343f5dd6703b6b58d61fabefc8a50ce5d02d98c32c8b4e52b8deacc9824369a9f0dc8faff69e90ca7585a194a4d742791765b16c3f5e2417b0f54e0e6f6220b4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.1.tar.bz2=aaf7f9e30b3998b8586764f61d09e434c32aba7479aa79fb6afa71ab11c067384ef3a4b9215a1a3639da807f4f642b9efc62b37b55e989b7ed7d75cedc7cab40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.2.tar.bz2=b834ef95d52abc1f0c224193391bded9b4d2089c694378dd5aa45f8b2b1ea41b1c300445f766841cbb8cdb1114491ffe0095f518e1600746f5f583dd0cff9c1f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.3.tar.bz2=9df5ba9423e0a8af9d825e59f8c69889c70af0f6d67f96708a02d7d61260c83474e2f7b2f240af399911bdfc56850255b4f34554f7013d0417a13bb782403aa4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.4.tar.bz2=1d4b55a6a34249e82880fbacfc1d97a093600005deb982c6b42ccb14bbd7bf1db14e0f6d73bc25f1addd72378850f7edcd63738f2b3cbab569e34e89d563188d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.5.tar.bz2=29a76dbb28d5b63ee0ce64cc2e7d022118350a550d3693b8e38d559bbc4f42fdb6b63af4bcc4ebfffc5c0fbabbf2e18db7228e655de3bb416e344a61737870c7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.6.tar.bz2=122322fb462f8fdcb065e6f9d9968027c320ba9be9ad6fba9011760a7296cec1892a0780d7436903cb7763f5d18cce11860c5c7fce82890eaa139a94d5e89428 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.7.tar.bz2=0c17f52a74b73041c588ed76f73862d179d7b9abf9de61279dc74ba7b7f170179e0db5672a403dcc209b6dec9a865a88a382f5df01f5e6ba4cfe0f66232b4a15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.8.tar.bz2=1a30bbda34fee311762a2f05ac7fbcfb4f373f8840f86b9762b0c07f1cd397e3eb3be83210221384333b625a243c7161ef4f368602a613760391265309e4f304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.0.tar.bz2=edf31b2dd02208c96be25c2f4f7d35e2b122e5d327133545e16038836b848b90f81079be4df47c5493bf4ead1d464fa72a8d0d405bb2509ab0db6335c58ff793 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.1.tar.bz2=91cc7a9cf493c7361f3d507cdbb8e258b7dd710100cca8053b77569c07c04fbc2f72fdceb9fd9a3a5d01f4c423a206da97730c356d017157bc2454041e1f1fd4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.2.tar.bz2=8ea603a27560ddde5fc639b86381a303f886ce80384d8edd0e7bc806f10649760d75a76dd5f2ee445371254e727544ec12df49d7fc8876890b73237f4eecea1c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.3.tar.bz2=c42f24668695be5c291836ae6f39b4366e0357c9bb63cf8be2ad36cefe0c6d19cb921a43159d49d4d062dccc15902ec1698a1a6842d13ccaec45c6cb628da4b7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.4.tar.bz2=3ac89131407faefde80bf2e1bed4baa51c371ab4bffc18c8dcf2624f4d1068c9f933eb66486a2bc7c6c67f674c5bd06747bddfe1f1f9dcd939458a08e1bc6108 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.5.tar.bz2=8ca9a9387b8cb434828fa36e5886bc8a28d70fa46d3e20df60389880477fa2ee54fe63c0c14611a2cb0168ef1149d205640c6003e6a507400ad5fc34fa641bd2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.6.tar.bz2=52795cd7d112ff437adf603f58130ce539209628d2224a685d060d67a07325717981fc6f91736d4abfe014ccc8057bb40a097fcf85f5046aabde0019d08bef16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.7.tar.bz2=bc179a31c746ac6e632ce08f57a8f403d4e463ad72285c0ce008d7fa39b88a22be3a43014c9eb019f6a39d022f9448ef151a8d03e89a4d2e767c4f77684e3750 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.8.tar.bz2=d693e3a800c2200c74b24c207425f41cef206a0b3f20625d18b1590e9891f409d6643ee0e7ab8fdb6e1e85de6fea52c6a307bf8f65324ee0f9ac33306ed1e876 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.9.tar.bz2=4b6cab99f6b7be7705efa5eb6f321b5eeb1d1c6e96d4113bf96b57378aaa4950b39f40ad555f630f17d216d235972f028617ea43c28b1970772ffd16be3d9a67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.10.tar.bz2=40bd90d231fcedbe34ec9963eb59645fdd1036b03056b9b8fa3b56900deb86d94e2a256f90e6aed297288d6797857a3ef9fc27bc6ed05c017b5c8e8ddc465df1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.0.tar.bz2=c1df39ae526da7ebf87510017d7694e6f78c59871baac4e9c5f2d13c22cbecc30925e2783ad93f741110b7c3802e9f25a6c3ff85160b33a4080b0f1fb02f7740 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.1.tar.bz2=930f6f7f654fa14076c84365fbc771d5b09679588c4c478d8f6944770c53fdd37213bdad159fd231efbc079b85ab7ab648b0a97fafd666c38d0e280046c6e2ef https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.2.tar.bz2=cb62ca82d57dfc0e21e532d4b523f49c559c4ed5f3d73adbd9d650bbf23c694d382f3cc25eed6a8630f23e4780db127b4b8b6ecf6fc24b0f6febc820dbc6af3e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.3.tar.bz2=708209a89a18cd99c02392307d2bc63e46bd38c72c8ab0e982b28285f8e006d4ed77e04da3900c880eff01c3350033cd00ffc3be1d3a12c4ee5b263282f0dd05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.4.tar.bz2=c94f5b3129ff41da1b07da1cf742592e9822febf6bcfd0e9eb7145c00b732fc66625056bddc72fe9b631742c70d0e731cc6a9a16a089c7b559ae963b072578eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.5.tar.bz2=b4d20f79eebc5496768fc6adb0735c6a23cffbb39ceaf9c2da42851ff7842dd2318c07877d89564176d206e22b8824d2a3c637b5ef02c5caed0b2b5276581032 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.6.tar.bz2=a09ab93c3d6936d30065236ff2abbd0295988a9359f5a76425cecab47af0ca5b6829530d1708e9ddc9e78d1fbb7c0359b9c7e90227870537d099ccc89c73844b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.7.tar.bz2=f6086c879f8737eaf6eef4461d23270e9e43811186a22f35ed69a8303eb933136e7a690bce2d9e18bcff730725292075e09db0f2384d0e26018b7f2a0df70b32 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.8.tar.bz2=62c631026560ee310a849483f1b48690075477942ce86e0564e92f5ca7834553c435a35a1d6d8dd957c3a7be24c63c32104518995eb3a96e61066a04887bb0d6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.9.tar.bz2=0f10741772d2498167c1eb2aa263292f99748518a4ec03dc19440eb5befa075fa69e68b08a09af6eb2e02e462ff20ab10e4121cfeea7bdc938c04762d81fbc4a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.0.tar.bz2=908132a47bd996f8c76bed54078e71abb154294f97dcba779b4cf0d3b82e31c4635dff89e97d5f6b4f1d797d854c6d020afdf9dc77b10c0e522755fa194a17c3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.1.tar.bz2=39c867ac0af48410c0bc6b01f1ecac00616a59cc07f3f5a3e7cfe8f786b70c7cacab65550dfee777d11b8b7a3ac173bb22c602df370eef6a04b40f8e539025ae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.2.tar.bz2=2f04566f6d778121281bc6ba23ec57ad408049e649b351585bc9a3184848c71873910e159f7fd3909c7372378152f5ed264070aefd45933b97980e80f6df4deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.3.tar.bz2=940375b11c525e3f0bf00e19013eeb886bf85b8d8b66d86d53740170b0ae16b14faa491dbcbec29238f875f84204cb0d52ade17c180d71e129cef5254f338f0c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.4.tar.bz2=1c9d41d7ab7bd69d7e3baa3c4149b1938cc147beb2a63923dadf2fd959732c8cc824e2add0946bcd62f44b0e1d509b80b4796a5929841cda8d28f3a8207b17df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar.bz2=f47443a53e3008cb7b7b7afcbbf1adf44887769e42b3defafceacc1e50e349c9000b98010f853c6b7cafdb54b85b640732a56a8e11ad8e58fedb5fa4724f68d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=fc1c9a08c48ad91edb4afcac5244f386d63940fa906dadaabe02a1eb025375443c8174a6ad1acd50f4583d6c57a88feae86e697ec15c8a25bb49f280b1357783 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=aa611f7c350374d2c5c8652a694022e038cb5a65fde795c43e927067f155d0ccb368b281b1575e679b84cd7ba6042216dc28149e138256faf62dd3060ec0a6a7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=ab04071b90ddb81b68f064fbc9f2bf726729220e4359113556d9b71f3549483f122b796b3b1e4dc8404e6f44a4bdd02e9db2c8066974acf190448c4d5a97dc6b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c769fd3814bf31728b83f2bcdaf0928e6423150609f3db903631f9db68ce0a0f9c87bfce5f93983cd962662148a66cc55f5f42bffc1a1b5a237e6938726629ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=c231f8ecd46760db49796519645bcb5cc9fa1c0582abbc419a2ca81805c81fe8912dc32dcc2c5192ca9ef0d502da8f61ce1ce7ecc87b29edad3a144a8a0c200e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=b41557c83084c8e5bb263aa944499932ce7d84457e4e307f1cffecf62aa44f8543a06299e38fee17ba64f8952048612f9289e24c35acfe2ba02b913c15dc1405 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=001d10af5833a03b42d9a254bde844731d3a796d98ce2efea90fc68e4638c7cc3be31a34fa163d4c5ac18c60e685e5cf2ccf88fac46ae6bc587a48ea35cfb09b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=0a8681afc19372ccd9409bb017967f86c2e6642e083ca47ec904cccc34242040f710392d916a69a327ae6a0bb287d97bc05bbe116a1d93478ae282b32e5fcfab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=e505ff2f00334870d07f4ec9348648b7f3b91dbbad1fddb2f60f7a38572a66a7bf081fc7b386f800d86113aac1ce3cb739c86cf0d6da2bab916a4432ad557c54 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=aee6000ac886cdd4e4044a7b43ab20d54d1e99f6b893af69d0d7e7a202f4ae861f939898580c60996b0bb7c6481eecad69a20acc83c75cc594dfbfde3a22c476 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=86f4e6948eaf2586e018570f09232b94f907766590eb75f00992531ef74676070ac5a2308e121ecc1c23388ece4dbe1ee8a4b2a7ab99ca00a28d6583d6df3d0a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=1bf867b0af84eae4e7996047727fbc7ef459afd3b2ca5885f658a74d62910d00eecddbf0c11b23265c625c26b420421ca5add40079438edca8eacd8b5c0149a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=92a3b217079f9d960cc4fbb5908f7fc7ef71cc3ec8e5e404341e2b8875534c0542167d03b61577776e0b0f049f9ba2e3235842be381b4d484845768adaa6e3f7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=608f0f9eafd72226fd1b39f6c92d0f1c6d3aa7ede096cc390fc4f8bee4326b0937767bc6de84fff536dea48cbf9bdb8ef5598670235e013ccd630b06c5b8fb05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=40cccacc66cc4b7891b01c35375ca913efe008157ae540308b649e14f5753f34f1827861c6e16b500c49ac95e1aa22e1c01444faca5dce71f981452a9e0f1b67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=5a33d600e55f7b8755725d7e2f2102cd76720d524d7b378d85fc21ea8d853166dd97e2e615ab18f9e44122e3404b439dd123f8e23d6ade5328982fe72db2af0b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=37e3a4011b3603807c6e0fd48818b256caf272b3720ee654f38c0ae202cffa21600f9cc751b5335b57905ce67db185b37f548ac9c84d6acfc567f0ef4866635f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=6648c1b6bd962e30e89eacdb6130b1788ccdf6ed05ea13eac32eefc222438a298de8121937262851cf5c4cdcc1a804d5d8bf19667819db6599bfcf79e57b0e17 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=ac690170a6801fd741efb88e67961c0c3d717029b3bd9c6e243074799641c940416fc9cde7b4ba2c56e79551d6cb7fe5f7977649404da0d20d1819d7d3ce0bd3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=e6edfed2dd9d6649c47b1dc1b102f933f76a148e6dd8441add2316073dd255cac851e972366e4821fcd665e55b375fac757d189b7552baaa0b49e82349c71b77 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=69c4895076690037199f2a9b98e622f6b5e3c23ea02de79bcade6193da2b1b88ed0c28006059f4ecc502298442275e7e7324232de04a2f0ce430665057410a05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=175777563303c6d6a04393938ffa7e36e0bc6db33f7d2cf1d42ec852b41ea26dd7d50569eee4cb00497e6bceae95592365ea6718a35451e5c929d8a085aa9649 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=b668f0cd853615fec38253b264115ef0fedd21a7879a663ba844f4c3fa8b87e5ccd8adffbaa12ffa3aa16b108a2a439cecf827e7d8e19ec8041d46e758abc391 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=2039b1fcf55cca35ed3c8446eea45819368016ec1a05a5fd4c6a761b54f5cd56cb3301d5d2674af1ff75bda41eba41b7156e71ac48b88ca7a6474f0e944efd89 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=b4bb324a53c316da488c5f60803933eade9ad5c59a6d58e76787d2dd89dc2d2f18016d2ac4ab0853a40976b4beab70864a9c2d23de194bcd63ad089b2159fa7a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=3a9b5868d707d6a4580a44ab7504cb46a2713f78918142b185f0d62c5b7e0dfebc1ff551b2a52e9726befb70abbde867d2802345a01fd3e4568b9f58ac83c168 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=39007e736b28ca599ea244bf4e54b52e86597c950c0ebd8f1696a02c8eef575a734d089b52c7013d00c02aeb261dd7e2facb45f24b34c75c4bbf14cb8bdc3ae2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=0fc4e39f7382c29fa2119119a78040c611fc8298bd4765025599d3018775cb2bb28f51d38efd4306e9f04eeea20e7c2365f2fbba1233e0494a8258c3c184278a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=5dfbcefa70f5b81887d34e776713bb9c6f7bcecbda8f1c9561daa3e235c725417ab0a930f594303723f226d36306e6a73f228abfa3533280659ab387708182da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=00936db899bca33dfa8d0e6ffd4bd6b0453ad5823a450e50e3a055ea696dcf94b317357732e26208a6f34224c33a8b4a6130e5613262d62381179a52cc8f3a1d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=15b816d190fd58382a2f6f6e087f358b54003f186462abf59dbef545af9044a2b9c65576119185adc6bfd9ebcdb49f03a2a268eed4fb0f0d37aa35fa18adc1fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=3a481c35668be459688a66e4e480e11b4e58c13aecc3751da9de8a3e3282bb4a152128528a804742aa0b4380eb537b666a2b29fd79be0d6968c4ff1fa428eb7b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=c604871b39f396c539c52dd4849d1d42f37530003601f60162860efc777c85e7e1a1ee88a77cfc9ca8ca20f0448a5dde4f39cbdae67470d8d2d283d6fbbf0239 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=12042b5c30179da275fcb6155142ff2787e86cf577caef44b7c4d8175ac671cd461814e9a19f4c9b1e78bbdf041fdd06bd463aa972e194caa91e80778a56bce0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=2bf1c13616b2e255b8c269bcb2f979a45009c079ffdcb10a13e238e5d13b0978e8a974bdc1e7bf8519e15264ed5f577cc8f85a5861b3ea3a4589eb78138a3f2f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=2e7876c8c8a1f4e3cd1913023c564d9e74972ce427e85765bbe9ddf237285d7b96017c1ed17868eb912509881e05aaf96e4a6b353a69989e61c733b346511715 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=06de4f6f2761bc58d94659f826c7c86be50192b7dfdb5c8b6710b384a50299ad161309e2a8c333fa5249d0e7112f74dd0c0b0faa2950a6e74bdba68833f68702 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=597374487d196abdfb389c79d7d09b81026fe3e8043f8811497646eaf47bfa432cfb96e2af9be1a35ad2d05f2f5c800afa3f9e5adb0ea2b2d31812d219232a00 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=ba56050ce3fdbb9117c6c9e767f818ce3d467030713b7693ebb039f6888bd5d7e5f7b1986ed117414037e56e550707c3625a88bfd5d00d7319d0c7ad642fc811 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=395facf2f7a15eecc94e554a60d87c269ba70c5063b24b7bc504f579c0d12a7d858eb0b98c502016ff8bf02aaf11ef765e2291b542759fc96affa186206ffe4f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=d1d527b2e95e3a16f521214c5352bcb379b946e8be1a943da872aff0ab4b8edd93a507d693abd7a8ef1cd5ea1ee6e6bf1f838683f5a447a6cb7992de61f744ad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=e47a50392c4f3ee13a565103e0c5f9474ba0a8f5ff60fc9fe7d290b7f5f9a9ddec962fcbb103a8d3b9c7765a28ba59237975f90aa3637a06a128802ede28b3da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=77fdbe62d1694732a7307c29b4f45d0dcab7e8a729f04f45b216345336c5820715bf3f8f7cab52175c4ca1a431d867c7feef7d802dec61c2cffa4abfa8746e90 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=24da0cfc93ac536c505dfaf2dbddc7b312a3cc5c72a9f47e28b3bba760a53b584422b73da8546ca01cc44d3906a31eed7f27a3dfc0bb574f01f9c08f7c589d20 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=aee8267c4855e95a55b7ab858ca6359d635049743b8e38d34ad1430522a0cd746cd572e77884f7e10af14a731ccd8ebb9cad6ea035b0fca4ae534913a38f43f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=ba3e66bd3dde28e7193b90c44194cf7732d294e592321c482deb3b31ddd9655630f5b04aa89a43eb9d1bc222da10884e9da332bc9da78e9e1b655300db52a444 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1df8a2ad9256985b4ffb3da5b545af4160ccebdd8265711d1b642cd2285a004a42cc2ea51ce3ee78854e599f5196c66448b8e0b043846ef6e6bf992828aefb6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=cc460b3d17d460abec27d77f734e1c1e7a649769c3374f02d32a4ad00f989ff3150dab926a203b209c92475100667dd524774fc37633d71f98737ea2d8868968 jruby-bin-1.7.0.tar.gz=1e466a3f8d52b553c9def09827fda4b8433576b0262c40ee505602754521a00defd821d5ead5052be52baf281c6cb080fd03a8b15c628a0ee67b4e417633e5e2 jruby-bin-1.7.1.tar.gz=ef28381ca30664cf450f9d3df9927530db771d30e86ebcf535af38e1a7e26724ae2bcfe8487cd2eb349bf609a733a25528aae14beab4d13d298b5604ac7353cc jruby-bin-1.7.2.tar.gz=8155c81eea6743951db7383bd9f6b1750614927c9c0b25a6574f6d64898bb3ada2f626c6e0df6c5486561a03cc7d472fc12fe804ce66a3972d2fe02e3f407100 jruby-bin-1.7.3.tar.gz=1d19be25bf4a7dbb0edad71008704377893d3967aa4204a0d59d6883aa04462ef6798c64d0c0fdd3f5129c16ccb42e8507f3fef38ed56054bf6e689de745935a jruby-bin-1.7.4.tar.gz=d7c0ee0316c50ae5413757e956c18ca68e9d99a25cf85be978da0787c13b8978d4ff2712a3effa564cfdf07144be4a56a0cb8acc794a01f43264fe8baeb125e5 jruby-bin-1.7.5.tar.gz=a4984591a3809330b93f4ce79fd1b9c24360f89d88a03bbc76351be623893c4bfc6441375bbea452ba4f24ca8b9357e03ac938fd6c065b3e2348c0f896b22a1b jruby-bin-1.7.6.tar.gz=98600a2d46bfce14111c7eebc62716352a4b685043afdd696b8fe51c6b205eb9569fc2860423a653b842b173198c76c59767156aa48e0d23482dff3358d884f3 jruby-bin-1.7.7.tar.gz=71da2e72c65899216fa15ec568b51aa7004e2ed7dff99ca376b332d3692c83a674c688dc21ee04d177a3961a2bb3973714509d88cc14d0ba9f79c864c6258a06 jruby-bin-1.7.8.tar.gz=42d54243653ec260abdafecce1143161be63fcc38a80f71ab70fcece4bf91545a2b12ed2319f9fd6f6b41916c398a9a8e89e7f0389f59da56f2739665e74522d jruby-bin-1.7.9.tar.gz=f519f53b1d9f57cfe28982ad70b892dc6fc20fe6601d98d65a1dca9f617a0eb8fff74d0fd82ddb858fe105d05ca7c7bbf3a987677ae0363caa2981bea358c096 jruby-bin-1.7.10.tar.gz=160b701f2f500dfab64beb635e5c4dc57760dd422d0fffe8d3cf8d84ee6ea17a877ef77a0087b4888ea9db64ce7750de01a73a51530aa6666a2efdcdccdb89e0 jruby-bin-1.7.11.tar.gz=a53b0fa327b98344cb4a8aad1ba537ddacb709a0e173b1e32656de8a610cb9896e9a4554d54d0d01d2361f8ff1539a0e2ee01308f670df2004225231b704065c jruby-bin-1.7.12.tar.gz=bf2be8a37b53d38c75712a6331f96b999fa6b0e87f453fac7b9d11eeb1b66098ea0778172f1a6a84345e1881f05d63012e28d4068a0bd31122bf2473bbdae5bf jruby-bin-1.7.14.tar.gz=f14e658da7f2abd469edcfd657dbc2505d6a2c04ba1e5f65f2164256f54625da154b338bd3d286ea6a18da61d04d90a61ad6b012bd9461182753483efcd0f603 jruby-bin-1.7.16.tar.gz=47ca714c3211c95c84e9c80ae4fbc894bfd7ee03e1bcc494cb48d839f8538db4aaca7029a4913b8d323e7227450e4e41bb943dc670f43df8a654eb127012033f jruby-bin-1.7.16.1.tar.gz=9bacdf6e212d08e46ac2c49183c8611873f6ecebfcb0e928b5110bdebfeb8751ac087cf8aba09afb9a8ccb58e59f3c3e06a241c1db445835d7a875b0c3deb4b5 jruby-bin-1.7.16.2.tar.gz=349283bb5344a62f282021ce39648a0c8d0b41ecf8f800ab5099b5ce161ff771e688f205a918324cef6ba0ded6b3694b8dd83f46f56be584202b8fee496b37e7 jruby-bin-1.7.17.tar.gz=a3b171df08e789f91c260c5a57ec842a5d62cc8d6b462b772905ec5284e394ed7b78f5b327ca1ff20f5deba8371a86cb03fade75b5f34f233df47bc3f08d469e jruby-bin-1.7.18.tar.gz=b259da2967e246a387687117eb13e8986b57de6ca8e570d6f8f8f07b8097db6e01cea8b0ec3a860b091fde14de535260dc6dbfc638f9e9b49d348f726e969642 jruby-bin-1.7.19.tar.gz=da91efcd51cfc833666f8b7cf949d3b5c41cd8da99ae1559c88a7358fb48df1245c66702c7cf23e7ca012cbefae98787c200352976d4e8aa3e9120057a89dc8c jruby-bin-1.7.20.tar.gz=77131afe46e72c406ab4250e43cd1f98e59a8351c494044ac89f97a7c9a81492f8a8194541055fcf1fc59569e99a577fd6a36a9f6a3952a99f399d4970e80e69 jruby-bin-1.7.21.tar.gz=111883df12a60d06e9924d33057ba72094fcffd44f7e3954d6c6d2190f8e6442804e739cc525a9e75159251a8dc1cc487570792b1b4f5773f4d0082f0eb360d0 jruby-bin-1.7.22.tar.gz=6ed6cbe7b81a8aee60906fdf965bc217b3db794698e2cb37559f36ac119a0cd2a1ae1a7a766535ab491d647e8b4e6b2f63e62011714b757f8691455831ef365c jruby-bin-1.7.23.tar.gz=6f4b97c4e08274f96195deb176e3126e8d047c981cb655cded9665624033fb905d60d5586704a3f91b2ca06d7e78918d9d31131c93e4c90c75a38182e309ac9c jruby-bin-1.7.25.tar.gz=a89ab8d539bff346ad56d345b6a205f74890b9aafe82a2c82e7c19cfc30b77fefde1003e8bd7ed15f141151bc0fd21946203219691383a64f2234fa586e1905b jruby-bin-1.7.26.tar.gz=feee03a50900e459d9ed7d2096056bef126c4551c02c335c4132e2307411f3fc4fd435e8fe44411184773c80f0630a7812b3d798b7e9be2818e1b5a712bc6995 jruby-bin-1.7.27.tar.gz=656f4313fbfe5db8d2d4fc2087a012c91efef848394c48aeaa0041e9a19b87ab74686702955413d2c51d6b4b11c758ba0555b30fdc42e86d66094411324139b6 jruby-bin-9.0.0.0.pre1.tar.gz=988c6a058336ab9ac8b27c7501ceccf3940837f9b9d3ed32a466b891bda1bc13f76199f5bc3baaa1240dd0dfdaee40775f721294d667f3b8b5bb9ac8206e2e83 jruby-bin-9.0.0.0.pre2.tar.gz=f207f9477a12d7ffacd92b1bb5154ba8101dda8f7b2eeadd4fa83eadec9a75727bc1831733d27fde63ba63322ec491201dd23cc6e2c2b5a4b8381a8fbe49e8f2 jruby-bin-9.0.0.0.tar.gz=33308a983533c129cffbf521bdb8c1996a10a6159a4a436248e645bda682c5a5395ac1aa767e971ae679c935f3b61573cb22d5b8c64af026752db3411a6356e1 jruby-bin-9.0.1.0.tar.gz=277dca63f3faad01c98a793f06bb4d558a970a10a66a38482e8372b25f4cf4fea85f1d5624fce7fb5b4310c42ea8aa360f24f6b9b6ef4bb0ebcb036736009ccd jruby-bin-9.0.3.0.tar.gz=d82f83e20ef17a0675843e306ec5e90993e5952cf5a53957a91e369d2c90d92306aa515b1e135c04b45844a81a0f4ae34289b966821ae5f46ea51fe012627352 jruby-bin-9.0.4.0.tar.gz=b9cd4f4a00da8152740b468914046633d5341b10aa26b0ac56835d5896531030c8afbc4c965b30c36923555ed5b145de8ada69e05ca38b01d43621914a331335 jruby-bin-9.0.5.0.tar.gz=7c61cf010fbae571cd6ba334aefcfd917f6de8224d014026297b840d0b890523e94b2fea20f154c82c25c4f9d5992b9481fb569646a7023e5ddb42db1baf5f34 jruby-bin-9.1.0.0.tar.gz=1ffdd352823436086ebfd37c03401a1f3a9cb8a8c5f75476af1f704c4764396a20f49ddb7fb7f0911e1608f7c88a332944330b8849d13e6badb170efb736dbe2 jruby-bin-9.1.1.0.tar.gz=475acda79ab8c54467ae70094aa86842959200127c1e92709f0a731014c469d3e52e4c48770b64ab1bf31e1b710ac4570b421077c85c08071c1356bee55a2900 jruby-bin-9.1.2.0.tar.gz=cc6b1e1a2907c128dd04edf9da11933a54bbed5e861ab6f0208505bca5aa2aa9d9acdd04bfde65824346fbb435584081fc8ec2e2e9a3aeea1bef8047915e0c61 jruby-bin-9.1.3.0.tar.gz=88339f4cc05f7f0ded21f100755156ade33f19873f49c0c64110916da8c0b059df541a77bb36e54fda9cebf042591450d2d6312ffaa879df926870806985e774 jruby-bin-9.1.4.0.tar.gz=ebe0e9d67cb91721d589461e93e26338e3e3a1f0f98de53f25906684140b49d989ca6d3704cd3f6cbf650f30aed9a3989f117bb4732c83ed870364ce4c31fa36 jruby-bin-9.1.5.0.tar.gz=f2a11e6fc88d37fc1b640ea8c9feda4607bea6da5e6520f61ff85e8d6a51543612ae267b45c033214f8fd0e2283153da02001cbc9fd90be4761b7544e1413b9f jruby-bin-9.1.6.0.tar.gz=ca59d199a0fe791efc57f05801ae26c6cf6402bdc0f1a795250b1a2dda39b233ed24c8cb005016e79727f4bcdceb1bad726a60c16935e76fc87e5d1a078fb5bd jruby-bin-9.1.7.0.tar.gz=f2569d4858a33280e90d984aac53662c25ef057ef9903bace6a2214aa2e6a537c9bc8fc76b08f846b3093cc4a12c70c98d725576a4ac771e640b95cfe3697c7d jruby-bin-9.1.8.0.tar.gz=dba3b41b65ff27dbaa203a5cfc78ac7cb9d952c52b452bc774f593383e4ef9389c0bc37549b798f48b63497ce7007b1ac2d2fa252d9a7c3e52146b4ae192ee49 jruby-bin-9.1.9.0.tar.gz=f8f6419be34aeb7b7577e946a62a094f5921d7319b51876c5e07322d99249b3a9f29fea4ee5c2b8184dfccbd5da8f8262fa97f5e93874887f3355dabfccfa0df jruby-bin-9.1.10.0.tar.gz=857783bb45fc5d62148bd687b43af9ce776099dfea75ec4b5d947a46ed270568bceba2a630a3277746a3a9c1fd3111caa9a4cd13493ea8824c1ee190e6d2abf1 jruby-bin-9.1.11.0.tar.gz=718ed3f5a39cd9f9b45c4e11ba44cd32e035f8d9f26fe59230dbaecb71adfb2513ee1bb86ff72e075b02f20151f3f30e53bfa30b6c4b011a93a138d4f479fbf7 jruby-bin-9.1.12.0.tar.gz=8a9f88d517d8002be570aa95aebb0063eb62a47efee191155f9fa4f045854910f78431514f857c438167ec42f4241faf74d4a8d236ae36feae58732312e4bbed jruby-bin-9.1.13.0.tar.gz=ef88f613ada2665d4f63b2e2f15594739de8ba501406e76de417821f44847b0e258524687b0ae0cf5b737520aa4dd9bb59d80a4b89a81408cda638f28bebbead jruby-bin-9.1.14.0.tar.gz=d15ae0c60421951b830524acd21a0f2a56f480e983b148a2722cd36afed8e99a41f518eb8a679bfa2cf87f08637e81c24ea88be40c0a5390e081322f1fc6f8da jruby-bin-9.1.15.0.tar.gz=74a411f42149510180706b2c70610caeea357f6fc3d2a12ff0227586862e6a9dedf09e752596d6c486af7a310a07241f311a1dfc73ead229d7225c09d4508605 jruby-bin-9.1.16.0.tar.gz=94e88dbeb2545250ba5bef50bbe0baa6f3851e9817f67f879ffaab50048bb0d41cd7a0e87ac9ef547e37c2b82cf1d7aae6b8caa43d03c6a9931b8ce0ad4b2afe jruby-bin-9.1.17.0.tar.gz=4c06b9674e20f48d3815b4084bb38e6994670eac804fbc56d717cde7abdb74d57e0ac17b7fa0b500318de405c187c3eaa01441c22621139dfdbeef62a5467a63 jruby-bin-9.2.0.0.tar.gz=79f5e8674089d2f6b260e033e3ceb4571f54cb5cedbca74ba76b52dd7cb30085a8c6c2676e9be57a8ecd9e962fbcb3682a8de38e1cdde2dc6e05bd179556edc3 jruby-bin-9.2.1.0.tar.gz=185e67da4964c9cf1d9142446efa77605e77894444bdc96bbd10fee22637f197aea9fbb0f60d3a42540e5f383d5b06fcf095d572f432544a40c2145deec81926 jruby-bin-9.2.2.0.tar.gz=85e16e38748b6ec5f237eabc8a17eb225c484c20f7ab6728f2a0f650061bc50c8a9601c04b0128e73c410ffe84dacd2b8bb37167aae5595728aa25e88c4c9b92 jruby-bin-9.2.3.0.tar.gz=97ee210157c451567946b38d33380051f82e7e8cb5f7649fffe050542ff6cd627e2c42f4c46739d1f0995c87e7338865b18844741285bf3f72364aa3c841c54c jruby-bin-9.2.4.0.tar.gz=9fe1506e862a17e261cf726e1bb70a9f612a6d7beda919a01405899660d1f4b79ee690ddf9aeed1d2b2f3cbd698be8df4f98d3815352772cc680e9646d721761 jruby-bin-9.2.4.1.tar.gz=2c41e7884cc54819da17ea9b2b773d05d3240d53a2ecb57ba430ab61308066eeb1bfbe6627e6c261f5f27ab5df7f5972656366a04a191a81b0379f620b74512d jruby-bin-9.2.5.0.tar.gz=d548eba8de420c80062021f5b6e6b203f8b7b36e3f11409919eeab87a028a18f9346f27d2cd8b1f33419adcc83fc804a36dbc3cee169ef1d93383b8f5835ba2c jruby-bin-9.2.6.0.tar.gz=20c7897da0d2b585616ea5848998fe8770517e24e16955797db2e5bff4622c348082628d304240a71a97e9551ef7aa63271cfb728eb5fb7e7d19bb48aff20d4c jruby-bin-9.2.7.0.tar.gz=8e71e27fdb149cb7470fb736e7ce858719d13ce6ff8a1e9ab1c1dc71fcc068fb601946bb28ed2feee3670b5e6ebfa8a655a6618d1badfc3763897912c41b1c82 jruby-bin-9.2.8.0.tar.gz=7f71fb5bc8c6c31b31b4c0430ae091871b21aa345777662f264c728c60212365dadb63a7a4b2fff31adbbf8a2e7cfa678d47486e28840f57b86cd45fe9354013 jruby-bin-9.2.9.0.tar.gz=7df33150858ddff586b3bd86120d4bdd80546c7f8e62245f61facbaa5527400a1aebbb33e4a1a8af52066487e3d29760eb96c7ecb9875eb9bc954ccbcb37a4d2 jruby-bin-9.2.10.0.tar.gz=f4ca024602ddab37154f5547132accb26e7c0ac2e913ebe1b5c7806727eb148249e76031ed4623ab53814beb8fb3f472e386f44d57adb5d2b3b00fb2773c8a63 jruby-bin-9.2.11.0.tar.gz=f736a9e139694c84d0a5ea42f36b972adc82c9be13e0b80bd61045c026e4fe31ccdd4be3dd3e94781c846f356e026465e41716fd2744ded2ab0ca39cd33bb46b jruby-bin-9.2.11.1.tar.gz=2f758fabf5910ea01e9c04c7600d9c666f2df3db8622f3eeb3534578075ce65013c42fe9ea6f95d4499945f795e6d566eed2b1545e149af823eb1d29167a1223 jruby-bin-9.2.12.0.tar.gz=1dbc5bb3814a6590f5e8ecf4889152684b5625fe81794a2c4064d598614a85129256002dcd239e294f209b98e3abaf9bfe70467fff48ef66b1531162dc6c3be6 jruby-bin-9.2.13.0.tar.gz=2cba016ad6a376252083122d51335610209d860c41de1902f5cd49ffc2f6b49c350b68df8fc4113c221255af4db7ec07980267b9888369811faf66db369e757c jruby-bin-9.2.14.0.tar.gz=ee3d17e875dd197f92744c7cba62320bfd3f166bbb2ca117f2910780a7c571779c0940e024351e9d4685ee9781dd207e773ace57a4a8a7011869c8b6209513c5 jruby-bin-9.2.15.0.tar.gz=678abfa7654b53b049e4103ae3647775d970c5a7192539378957c1731a3037c852e03f00a496c022c1c438d159a93be6e6f04d7563c811aeb7d261ced643d9e5 jruby-bin-9.2.16.0.tar.gz=f77e314d578a980071bddc25c65659d62e0644927ebc4e7d7d4523935b6c893e611d47ae7478a26ce7acff38b1525eac11b4a329188cdf76aeb07fab667d99d4 jruby-bin-9.2.17.0.tar.gz=e90ac1890a54a892b13adbbeab3cc5242889ff2a4b6cae535c0a3172072bda6ab01b960705ba608d6d7ebe9de5984d8384dbbb6399ab3b2e53a9e347e7849e1b jruby-bin-9.2.18.0.tar.gz=c5816ee0f7b0f559dac70ffc5277f85ae9c41ad176e43d277f820c2727387baba93998b915cadf9708fa78b5cdf3911a9c39c2ebb61a77a38dcff359f7d88a73 jruby-bin-9.2.19.0.tar.gz=3740674035e27cf7961b3570ad65536c30faab1c9a71a42a696b173379e79647411d57e0d1d06b5f9c9a970eb02a595a559191af08a083773dc4601dcfd07491 jruby-bin-9.2.20.0.tar.gz=1961f52f41e7eb9f50b0f382c8166ad988a6b3c0311c342658edb34486b073ed45c1ca5731aa319196db02cec208a4dfc86aa6b436959b80243bfa4f62629735 jruby-bin-9.2.20.1.tar.gz=598e28cbad682fbb30a9a9a9f708e6e1f4b7903300de2477e88a646c42ae594df5b768ff5379ed447f1a7168e93dbe35cc2d5db7087cb2228233a05bc4687908 jruby-bin-9.2.21.0.tar.gz=8f6cfc43ce3ebbd69781da71c5a70746ada090162bf6cb709dca41a6d968e6072ae62f657cb0bd471c648ff294044bfec3079828bdc410bd64758f76a93c3214 jruby-bin-9.3.0.0.tar.gz=06331ce32ee88aaad5e5bc0668d164ec3263f8ef3ed34bb32981b76ca33f8c817e3632550775706481094159f4feb43916ad1f9ec0f0775ad756b16cb7bd9417 jruby-bin-9.3.1.0.tar.gz=bfcbe6dc5ba736fc944af15eb387b545f6c5b987a7db88045913a02a1d30726c5d1255c4dd609aa7c2d2823ddf9d8360223b0575c93302aeef4c54eb37af9abe jruby-bin-9.3.2.0.tar.gz=b1777bfdf1964d7e527bb3dfc47b4b9e8c589cdb301c38ee8ee988bd0c392ca978ee3c1c24e4b5a65bdecff67d1bd96e2d8645e58ff7e891e3622097ea29e925 jruby-bin-9.3.3.0.tar.gz=648e70de0bda710e2dc70fd03c3dc6b798dd4c7b92584c54306c426f59ebe1168a595c4cf94328f6b44674f5507bee354efdb1cd73060b73b0171a3605051c9c jruby-bin-9.3.4.0.tar.gz=6b09decf412a76578179cefaabf01cc8740f70ab5324954e6aa43b1d8b81c37db7a99b1f94d6ced2b459f1c44c3086892b9a2c06b3ea838baf75a8fd5e0447c8 jruby-bin-9.3.6.0.tar.gz=f730522eff27462192808773cbd071cdaefae11f20bc808a8f22515a33960a730f3c87ec727ddfd9dc9b6b35acffeb50c31d75a4794a3f8daa75e1963ebd246b jruby-bin-9.3.7.0.tar.gz=265051c68d3b9dcce708b75f8267303ae84008859c88d7fe4f282395366c3f52fcf1bb161210555c0fd0a2427ff5a728ea9e337feea3d9b69559cadb2f300aed jruby-bin-9.3.8.0.tar.gz=12e795b7e1f14141bde68f52a29b0aa9f1db20515240dce83cffec351cefd25959579e01059d42dc8c8e4280493a70819d9beb1e0523e9bc10a72af16d9abd60 jruby-bin-9.3.9.0.tar.gz=f0b31d98f39a2bd4436764db0b0139433d6868bce7c30c5d6e3552616ba879c93478c499f3e4c884fd3728502916aed5c9ca1be150ae3e80ff47b36710c3f6df jruby-bin-9.3.10.0.tar.gz=aa36fd4c5de7b17f5fdcca1d1314d309e7b4470d46822c45baefbc0ad5180e5530a7054502b97b414352af485e7936659390690dc6198512ba6733d8f8d503ed jruby-bin-9.3.11.0.tar.gz=d9fd90bc64028dcc45687d2be51414b1561add20d20d1392525f4434cc684d505427f5e56827afffbbb0ce2c9cd7c1ef846b0bffa737679afb95d4c160232da5 jruby-bin-9.3.13.0.tar.gz=eb24641fb7a6b9d2039ec953388053e7333b306056f9a5bf745331b04cfc05dc4211a9b7780ce88bcee9184b8cbb219b574574d308bc2720547c116f4d4721dc jruby-bin-9.3.14.0.tar.gz=d9b02fc35133f71140cc7d891061f8190b61b3d1065f00092a2aa9a4beaf7d67297dfb0529691bd24d29607d698f39c62af9018e8307c1e6624c3104a61bb74c jruby-bin-9.3.15.0.tar.gz=e41521ebf453d6b6a9de937556fcaa972c60268285d0af4a41bfb95aad790eb47dd507e182958ca6f4889a0e03eedee0fa4bbc58e3d0407a2b6ba64a8b87a21a jruby-bin-9.4.0.0.tar.gz=fb72f8e087ea08653fa4e4225fa26694c3ff97c41f3deb8731cdb6571c6c9b21e0d8f69e2096f82ee81e2b5c283f912e2a5228c15873dbbd56de96a2ba35d59b jruby-bin-9.4.1.0.tar.gz=46003ef6192718a6372b79ebc89bee37957686224a08fe2f9a6be3c9e479784409d0269f0885c4d1f1351585c5d2cd31fd2ad45014e425bcaf2d44d66b98d299 jruby-bin-9.4.2.0.tar.gz=77e484ab73ece93e7d7283f876f0d541607c6080eee696b702b485be9794cf7e6d464f250a6d75387ee69aef3ba40ccf4f6d9fcfe324c5bc7a14376177ea2bb8 jruby-bin-9.4.3.0.tar.gz=2361f4bb2989f5951b0d3e9d49bf31e6805ce39bdc987ad3c6934daa98ab7c8e69763d40d7412ccef8adbbc198e52f4b83d00998ee12ac43fbfc6b5d88930c15 jruby-bin-9.4.4.0.tar.gz=e89dff0cc5b4a948daa95196d4bd4fee0c6901bb4aa023ae35b3679d9739967c2a74e8a4388b1835465dd39f1332a1f321b450b40c54ad2b81802645b4a31ca4 jruby-bin-9.4.5.0.tar.gz=06db948e5fa6f8559abd3b6891c7b4867b9f54b7bddf0e36d6f20cc1bfb394cdba8ea920213e545c927d1cb865e083cb1089c8e925bc608e0f8784a79b5d330f jruby-bin-9.4.6.0.tar.gz=ebdc671622baf3c42a988d6ebe24af6bfefa1f717f050f602a1b35909a3220316329aad080ee2cd9cd330da9428f8d736502573efa64bd70f093ccc123ab32b0 jruby-bin-9.4.7.0.tar.gz=4fc8b12deba7b8a53a523a41a31c248895adc9bd54a62664a27107e7205369af39c0eaa508a9a70611c3bb845524d8c5f39451c09b8b9cd87059ae15139703b9 jruby-bin-9.4.8.0.tar.gz=0d65fdfd63e2049ab3b8ccbcb4caaaab20aea5a63276aeb20ed4092191a8814f144425dd0d926aeed757ad6b4daa308a98fafe1bbd1647f3db44368066f61868 MagLev-1.0.0.tar.gz=8da29f16e08f657b0d2f147b64f2202ac027db26f85da8dec29f926898f178ac8d11260fd6c0a539a9b9b15eb92d8c7ced86a8cab1861ae7f8a33b6fa468e5cb MagLev-1.1beta.tar.gz=7122af70530e76b9a4cee93244d6872b49616e78086bc8a5db0f32d2b846560b352c4831addbbecc72e0e3158bd52f26c2da14f5d83a515ead30efe7c538b62e MagLev-1.1beta2.tar.gz=43b4b831791074f6e8c12f6fbe6ccec2bd0446dae029d3e6717cde1e7adca8462a2d7dc49c14112cb568b5b3adc8cd051767044b41d57ae51f38aca035ff8597 MagLev-1.1RC1.tar.gz=942c1cf43f1a911230aa43bbac1cea2e2e61b5e19af755e29a6a71139d66d304efcc519072dcc3487a2da7462847530564aff4a2159d675e3270cc938a297dd9 MagLev-1.2Alpha.tar.gz=2672e3e5425df2d2ecc49f85df5845fdb083f74a7b242cac75e33d0c1837079ced8ec8b273807326d08e7bf6f95cb4f1d8351f37af8bb38c4150e6292fc553dc MagLev-1.2Alpha2.tar.gz=4492ed58b6c2b852502a2195836f1db5a80f0619467e4d7b44981a993a5e9a9ea5c9fecf1198de1891583e334bbc3c3a86648ce8afea1137ae9c73a4d76b0f4a MagLev-1.2Alpha3.tar.gz=6290895b22efb986ffd7305b7d651f20a051ab6869d51310bf891fa3eed48526a8617b69f72793e8ac0b57f99bc5de75f34235ef94de967bbdcd51857efc2af6 MagLev-1.2Alpha4.tar.gz=a621e9c615ffec503910540db770754f29bab1646d8e67650d5b82413bd551adfb0bbbb8155407ccb6f80933bfe8ae1bf9b688eb0defbc88710308bde1325683 mruby-1.0.0.tar.gz=4a0f2927da3401df23d5c19ba566995f76775def3badbb14f16510a271e7b40a833fc61841f89d8adc6d57b5b12cb453708961c16a22133c092fab8ecfcd1e3c mruby-1.1.0.tar.gz=afa99a973e9c1b72a5a418d709c4aca08dc7449c427cedef5f12db4ccefb15e11a4fd1c23ceb7e31e49d4d2e602c0b1f9dcf2e0f6cf8ea3466f0b9bee23b53df mruby-1.2.0.tar.gz=bd5de32ba52b6642358752755329fa45a954082122a8983012930056c286ac328fb52fbdd11f34ff7c80af2c0e9a6348abcd5214602aca1150f2e7ae25cad1f2 mruby-1.3.0.tar.gz=13a57306706d2d60693151919ae15bb3621e6e7ed3b5e9c6d3b1c8d44e52b898c1ad394b39946d730ff82a19f5e3b7c2a374f9dcc3b6c6f990581e504f1cb9cb mruby-1.4.0.tar.gz=d2dd6e17c7f8e890ef5b6887538cccdea08a2376ba8f9a478d7d5c4377fd4c31a4af6323b1fc73952ef80e5a4778ca22eac3d724ce7d50b76770f7e614df7da0 mruby-1.4.1.tar.gz=2cbf155ba7819211b6410ea606c4d0db3adf4f47a4018ac45285ab3e32b94f280aa0af0936ead7233411957cfca62979d14bbaaf0d8f40521cba5c12272f2af4 mruby-2.0.0.tar.gz=8379f76b7a06d280e2a2552eec2975ffa3fe85b99028f6f7c009cd908f95faf3cd36a9975f502a5779559baf3c45a4297da0b6bcc038d213a0fdee851f9d01ea mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.1.0-rc.tar.gz=f310b385cbf80c6b6ab67e2a41b931411149639c0bf778799e3358d6a9a59f508f42e3faf72fef9e8ef91088d6184c445af7933a47e4e2b2fe114362d579bac0 mruby-2.1.0.tar.gz=da28b5a078e121c75edf62fc68fad6d5810212bd53a3424d4f585ffe5bbd09f652393ffea0f4b3ddd802e5fe178554dc67040c39c9d5069bdfad4ef22ead7e8d mruby-2.1.1-rc.tar.gz=97c9cc2c79a5dbf2f634ea08532f0f512f8af6ffb99ab4eefd83fc336ca9d97b943e76643971047b4508aaddb5e40176d6cc8fa39a17022455aa15d774eb5b98 mruby-2.1.1-rc2.tar.gz=13aa32a35bd5d8f02a9bfd08d17818dbae78ce46c8b0224a029f9f191cb64ac330eddf3871f4396b9221b987a91e4cd6f8933f59814ac0018155ec8454abff18 mruby-2.1.1.tar.gz=66f9b4bebb5a7b19f5cb1be2bd8b9bc65e4dbb5d4350d238ad5f947c9195fd431f2069f7334036ea63a750e9257e59ae1aef16ac99c7e1f4e17724cd1cbe2e50 rubinius-1.3.3.tar.bz2=8b91baf429dac60663d0e4da3152a60ec6e007f5d6c17ffa430876ec88eb87ade44efae90f2e32e238fd74f1b3d54e27492315f08e7bb073220b402e1e2d3163 rubinius-1.4.1.tar.bz2=928d12aa01a1d0f6c80175d67d3b1f8b9840f69f045c8148786612316421223f4cea71e3c373ee18a3f686b1457557ae547645afe758a99d21c4818dff47b9d1 rubinius-2.0.0.tar.bz2=5c81a6b8cf7b59e08c3b9353b0eb37ce985aaf391f5064df65ffb10f6d12b668287e4d4e61e2c6b560d9234c10f0b64bba74259f2c06f1dac488928544d4131d rubinius-2.1.1.tar.bz2=154cfa93ed59835814b8b974f6d738b049942fcc2b75095d21c87647d002c879fd55aa3d1ec95414b5b66eb9926c25a5c6e3e19a7c0da7dec6edbf434acb9c68 rubinius-2.2.10.tar.bz2=c2168e676059c197123916dd948b83e39bb96e99786bdcaef2e690936b761fedb13740b9f19883f991f1b475f3249ea1696213e8448c41ae15dfc14b3d4e1fda rubinius-2.3.0.tar.bz2=d0f3dd5e3b891bff2eb79b7810c6041e15fbbf0606c379f89575cefd829ac7a394b0c12ed3c5a4d452730797bc0a2c6c82646a19a078b56dcac7acad015a4559 rubinius-2.4.1.tar.bz2=7bcea320006b8cd3d122c407d89c325973a74c32456ba0b649657ac848f4682f2eb7455c13e3007709c22932bc2e1b65e2dd43fda0d3c9f993ddf8a74d1e2cb1 rubinius-2.5.0.tar.bz2=ac94d5bc11524e715fc24c1de33f4d358c2cd65e92fbb64c850dc8151d2a712d268227733c99fcffe298c3bdd6ce080c5e9553e4e8f3238868323498a9d10cae rubinius-2.5.1.tar.bz2=9315f76126d0aa754ee63b190385c24cb084f36293a99aa30fc482fd880d5393aabce361e09ff5514bc2540dfede8e179b7e9212b2dd59bd14ca2aa69d209a83 rubinius-2.5.2.tar.bz2=b48bd8d54a450441a50904b07c75c8d31b59822830a74c952720d6f8d2d86e6a27a84775e975ff2bf55bf3346f34e69d742f308933a9d8476e5e78109cb525f6 rubinius-2.5.3.tar.bz2=b923446d325dc3ce5ad28af9ee527607fae3259b85e85aeff97c1bebbb4520daf70616957b1c0ded900ed19e59025826dee66977c19cd2a2d4e9a0296811eb20 rubinius-2.5.4.tar.bz2=75b7ddbe218e4c92210dbf5a06eb8b3c3aa028d16146982a4e813e3af10a90d33f3e239f4508469c6aba17f02cb8bd10e96a204839975e06519869cacd456c92 rubinius-2.5.5.tar.bz2=a862146ddbbdcd4439eb64e78bfe6d09ae4cca540d19869618426d3f451544658713fe8eb7d46493785eb0cc721077e624293cc44d68eea3ef584967b43a18d7 rubinius-2.5.6.tar.bz2=9a0bdb5d77f80f163925ce409d00be3cee34871baae8bcfdb34c3c7545b92fd14102fecb970e42b3012588d299e504b724025f397a5a00e181ab75f1448e426a rubinius-2.5.7.tar.bz2=8048110b3ba4e5ff8c3f35282896067e1b1b46dccaf9ef4f6c9b6098782f27591ff59ccae0234fd7e881e3aaf17a0b420286b1b52ecd2cb672249655795a6982 rubinius-2.5.8.tar.bz2=23fca2f9747d2b0e544af890c3baacfb7b3a009cc59cbe653762ccdd827a6c915dcc57902d317fa1f7a81f8c12682f6c3a93195331b6de0f705b118e2e8c13f1 ruby-1.9.3-p550.tar.bz2=38767e98df25484f7292437f3cb0f798b3a43e9a7414a5401677e96ad1cc367cb3fa23ac3abe568d5bf2b2ca553713469a8770d41b79bc63daf3fa59cb4e15c6 ruby-1.9.3-p551.tar.bz2=5ea40f8c40cf116030ffdedbe436c1fdbf9a50b7bb44bc890845c9c2a885c34da711bc1a9e9694788c2f4710f7e6e0adc4410aec1ab18a25a27168f25ac3d68c ruby-2.0.0-p576.tar.bz2=e089cca4867cd9c715f4f37e40a1db9af6ba0c74b47e79568121bb980476f8877a87ccb848b973381edb4667c0c73165f5e1761f60db839e67f6326302dbd864 ruby-2.0.0-p594.tar.bz2=8301a51c73fb63a8cfeb14af47d0c18b5bc3c45e3d62fc2ed56a673a1cd6b0015c41f275e70eb14a9e40036b1530977199321e05285e107a6adf58514bef1b3d ruby-2.0.0-p598.tar.bz2=10026a04e01a8ad14ea9c99bbdf4f7d04029b73ee0c01bbf6c2eb2817332d49adacf127b646693b67b5dd7010eaf3b696b23b6335cc0f7ee5a6b56dbba0f6f82 ruby-2.0.0-p643.tar.bz2=453117152e6facdcd5bedaa9c3b1e349382bc5bc1dd3d650ec58b398cb9d2519a2822d05da10bcc5dbbb4f513fc5fef310caa3529d176fa2d453befb28e4d83a ruby-2.0.0-p645.tar.bz2=e9ca186b1cf0877cdbecd43dcab2c5161a53103e926609d5e1b769a4980eab4571bfd0951788b4fc92dfd9d10175b0f5f36ea2c7289e575a9db9b62c02f93185 ruby-2.0.0-p647.tar.bz2=3416af771ebb0b27ceacf23d309bd2a1ede832c2edf48a5ca46f0b0b84b2ab94fb6362a0c7fe4f77b21253539db8161ae26d23a78d1ba729bf03812454d93d04 ruby-2.0.0-p648.tar.bz2=609acf6d6352c9746e21cd7f0e7d29f5eb522e6fff2d5fad0431d63c568cc084ed5b7141f84cd33512d8213200d2d1a22e8d7df71469a980a3a92886133fea38 ruby-2.1.3.tar.bz2=9b48adb161e5e4550a71f61252c8edf59944affb82250babcb64240749af4b672e4a54ccd0feac5b36ea447a358b350b5080125ef2d4acf6e9e8b1ab82612f48 ruby-2.1.4.tar.bz2=68db1567751166c5e7d24b6e5015124b8a15568c50556e1f429486395352fa56c4a195a74820ab135697924149d014b445b345a1b9755678aaf824fba79c606b ruby-2.1.5.tar.bz2=d4b1e3c2b6a0dc79846cce056043c48a2a2a97599c76e9a07af21a77fd10e04c8a34f3a60b6975181bff17b2c452af874fa073ad029549f3203e59095ab70196 ruby-2.1.6.tar.bz2=75d58120b5f387bcadbf6d19e85624f78c74f81b9018baef39207214673f7ebc0700ab31145acd88b4071c896ba8e1302a29c90955bcf5f8c863634125022aa6 ruby-2.1.7.tar.bz2=f610d2dd6a93f0a5e84e04ddedf847bbcea5dd3289b3164cdf60be64f67a80dfd5f9836ea5d169970cd0ce24a7e05ea6190699706567cb0d5cf450de6a70e445 ruby-2.1.8.tar.bz2=7129c012bca7f0e7cfa51c73ba0898697f7a9f31abd5ae57d38be5b6b646fd80ab33be9b262cd3e2486c66f65aaf4ec6e881ae6e5a82ec9df62f00fa072510fc ruby-2.1.9.tar.bz2=a86422132e4c64007a84a91696f4557bdcbc8716fbfe1962f1eef3754ee7f994f4de0b5b7e7231c25057515767040d5c4af33339750b6db15744662e9bd24f38 ruby-2.1.10.tar.bz2=4b7213695416876e4de3cbce912f61ac89db052c74f0daa8424477991cfc49b07300e960177ff576b634a97ee8afef3c5aded5d5806329dbd01d0ce7b42b9b63 ruby-2.2.0-preview1.tar.bz2=2f1190f5d8cd1fa9962d1ff416dae97759d032a96801d77bc6b10136eba59dde1a554ff8c0c2d9ce0d3c1361d4dd12ad573b1266fd53b90ab238d8ce39e6b862 ruby-2.2.0-preview2.tar.bz2=c654d4c047f9463a5fb81eaea0fa5ab7bf316962bc7fb0fb356861e6336ce8ce2162c7779d8b27f72d7bc0e9604b5e5af2910abcb0b0a1f197b3138eaddfd4a5 ruby-2.2.0-rc1.tar.bz2=181201168360bee37dceeef3481a69e8a333a5d329680031fd9d371d30ac64460bbdf4db07546133024f541774e51301f1630cfd988c5e5bf2464834f3abe6bf ruby-2.2.0.tar.bz2=04edc53e8cd1732c3ca61ebeb1d6133614beb10f77f9abb80d8d36352fe8aa205112068e460bf600b2c7e81e0ddcc3b311e7e027c320366f1bd992b3e378a6ad ruby-2.2.1.tar.bz2=af6a8e75a66b953ff33ecbca5111bcf1c6560b6b48b370b700820fcbe91363146c5ac8abd670a14e693b44343ae598bab472ed2902834304c03ffcd9550886d1 ruby-2.2.2.tar.bz2=d6693251296e9c6e8452786ce6b0447c8730aff7f92d0a92733444dbf298a1e7504b7bd29bb6ee4f2155ef94ccb63148311c3ed7ac3403b60120a3ab5c70a162 ruby-2.2.3.tar.bz2=795f1b66a6d4f0baef897068899c3a1a4370ce1268618e6a7d6d4720234444259f371d1ba2e174b2f7580265e9f18eda3f295fbb087447aa6e8fb7a0f07526ce ruby-2.2.4.tar.bz2=d27ca2f19c214ce87f906b57edd41f2f8af35b2871c191470facded9cfda15ba46e5c3bc7d5540225a38da6bd65050fcc8aaa4ffbadbb6bf7dc891c1821da0df ruby-2.2.5.tar.bz2=d3224814361c297bc36646c2e40f63c461ccf5a77fea5a3acdcb2c7ad1705bb229ac6abbd7ad1ae61cbe0fefd7a008c6102568d11366ad3107179302cd3e734e ruby-2.2.6.tar.bz2=7a93f72d236521ac28c8a0bc0c73cf805797a8813d22e02f42c5fc05dd39f6e422817272e0db6a24c245f6f97ad4b2b412a9a47ac50156ab186df596918a5f34 ruby-2.2.7.tar.bz2=83756cd1c91516962b83961e0de59d858618f7ed3e9795f930aab4f199d47a95ed8f867d8aa9b51d508be26d9babf2140117c88241168bac41e6ef702cfadf20 ruby-2.2.8.tar.bz2=aa1c65f76a51a57d9059a38a13a823112b53850a9e7d6f72c3f3e38d381412014521049f7065c1b00877501b3b554235135d0f308045c2a9da133c766f5b9e46 ruby-2.2.9.tar.bz2=2a8c8770fda20a22b79c9115b6f468f8e7ea1092c84a5089af7a3122163e5ad298b493e6637e4d93ba02d899d8a619c94064dda8ac98cf3b93f64f45d5401085 ruby-2.2.10.tar.bz2=f8ec96c2a5f4ecf22052ee0b1029989ded52d7bf5d41be24fef67e732e76f72119302240bca08f0547510a9cd29e941a32e263cad9c8a2bf80023d6bc97b2373 ruby-2.3.0-preview1.tar.bz2=ae6d46c87f59e1fd3703b76dfc45bfcf208625f95ab9f4559f0b9f7050e8681f1a6e419f5fa06b704c83e56879c3a9ff1337dba443bcfca76fadb49c97d97a93 ruby-2.3.0-preview2.tar.bz2=e397f321d4338edba8d005d871408775f03d975da90c8abcfdb457a1bc7e6c87efe58c53b2c3bc122e9f58f619767b271bcc8d5d9663ed4b4288c60556e8d288 ruby-2.3.0.tar.bz2=77b707359e754c3616699d21697752741497c719dc3d6fdfb55ed639e76d52560d293ae54cbe5c63be78dc73fbe60f1b8615d704d017bdfe1994aa9747d26a6c ruby-2.3.1.tar.bz2=a8659b96a3a481a3dbdbb6997eb18ff1f8cd926a9707a90d071e937315c21d372c89252f0d44732ae5007d2678fda8c8fbceafa4e4b4ff500d236fb796284d8d ruby-2.3.2.tar.bz2=78699bae5b0a2382a58f9d51f7d891341f00ad3a90d9ca06b68b1b245cf5acebc3a82133e39bf6a412ac999a5c0f778a0dab177c2569ffbee085ffff6f6ec38e ruby-2.3.3.tar.bz2=88f7782effd35bfe0b4c33140b5eb147d09b63fbb35b9c42d2200c010f387e2b70984ead1eca86569e8ec31f08b35289d440c0ca76b662dadb760f848e863d91 ruby-2.3.4.tar.bz2=ad1f16142615498232d0de85149585be1d2c5de2bc40ec160d272a09e098ef6f317d8b25026001735261fd1c5bc0d1f8513a8474e89f0d86eed5b2fe7338d64e ruby-2.3.5.tar.bz2=3ecc7c0ac10672166e1a58cfcd5ae45dfc637c22cec549a30975575cbe59ec39945d806e47661f45071962ef9404566007a982aedccb7d4241b4459cb88507df ruby-2.3.6.tar.bz2=bc3c7a115745a38e44bd91eb5637b1e412011c471d9749db7960185ef75737b944dd0e524f22432809649952ca7d93f46d458990e9cd2b0db5ca8abf4bc8ea99 ruby-2.3.7.tar.bz2=e72754f7703f0706c4b0bccd053035536053451fe069a55427984cc0bc5692b86bd51c243c5f62f78527c66b08300d2e4aa19b73e6ded13d6020aa2450e66a7d rubu-2.3.8.tar.bz2=6d79e0d25757fd37188a8db3e630a52539bce7927fcb779a2ce9a97b9e5f330753035c16843552f1a1fb6c9a1e5c0f916b3cc8b5c0bfe81e20f35f8442e40ae8 ruby-2.4.0-preview1.tar.bz2=c9873e8686eb54dbde61d6e23cd5197beebccd6cb31fd12c82763ebe1fde17095d7514d9d93c2c82b238032c98691df5479dc2d666a8a590e0fc54450ec29cb5 ruby-2.4.0-preview2.tar.bz2=0c9a59a2f57a99c4ee8539a30f41da1de7547566203f89d856e1be9dbb44365754e6c470145dc9336eb324e0feb2f53d9fef18a1564968ac21f9ee528905949f ruby-2.4.0-preview3.tar.bz2=6602c65a7b1e3bc680acc48217108f4335e84fdd74a9cf06f2e2f9ad00a2fccacf9fa035a912bc9d5cc3f0c7a5e21475971dfac37b0364311ef3645f25c7ddf9 ruby-2.4.0-rc1.tar.bz2=b43902ac7794487197df55a45256819d2e7540b77f1ed4eb68def3e0473ee98860a400862075bafadbde74f242e1dfe36a18cd6fe05ac42aae1ea6dddc9978ce ruby-2.4.0.tar.bz2=bef7bb53f63fb74073d071cc125fb67b273ed0779ef43c2d2969089b9ca21fff1bd012281c5b748f7a3c24dd26e71730d7248c05a01cb23ab2089eb4d02115fe ruby-2.4.1.tar.bz2=1c80d4c30ecb51758a193b26b76802a06d214de7f15570f1e85b5fae4cec81bda7237f086b81f6f2b5767f2e93d347ad1fa3f49d7b5c2e084d5f57c419503f74 ruby-2.4.2.tar.bz2=1a5302d2558089a6b91b815fff9b75a29e690f10861de5fdd48211f3f45025a70dad7495f216e6af9c62d72e69ed316f1a52fada704bdc7e6d8c094d141ea77c ruby-2.4.3.tar.bz2=fb4339e30c04d03b1422b6c32ede45902e072cd26325b36f3fc05c341d42eea6431d88718242dcc9ce24d9cad26f3d26772f2e806bd7d93f40be50268c318409 ruby-2.4.4.tar.bz2=ae632852a5f413561d8134e9ef3bb82adb37317696dd293ef92cb76709ecd45718f14116ecce35b12f1c2dd53ccae8dabc7a924a270072b697512d11f4922347 ruby-2.4.5.tar.bz2=7034fcaeaee41f14bc0ecce0d3d93bd1abe95310e1a0b95fac66eaba867adfb2bf7ba4d0d70d67a15ce8df16052dee405c38cdb18987602e64a2f701d37d3df0 ruby-2.4.6.tar.bz2=292802984e5cff6d526d817bde08216fe801d255c4cede0646e450f22d4a3a81ae612ec5d193dcc2a888e3e98b2531af845b6b863a2952bcf3fb863f95368bcf ruby-2.4.7.tar.bz2=2665bca5f55d4b37f100eec0e2e632d41158139b85fcb8d5806c6dc1699e64194f17b9fe757b5afd6aa2c6e7ccabba8710a9aa8182a2d697add11f2b76cf6958 ruby-2.4.8.tar.bz2=2d7e0f5ad766e2a12a1b53ff838e6bfe86244ffb7202196769c25e9df6f71f3ccdd8605e7ef35c53e54310bc82caf6b368ad5111dd0a3ad70a3aae1a7be93f08 ruby-2.4.9.tar.bz2=d485444dcd025a261a16bd740dae63c0aa23e4138a095584e7a83aec47af34415c7d9cbc1313e92da2ec416b11bfddf20bb1a7b60c80f12906d11ef27409b3e8 ruby-2.4.10.tar.bz2=4d730d2d7cb96b002167ee358258f2620862a5a6d8627cfa5b49bd43c6e59c50c0f437b959d4689b231d57706ec7d5910d9b144f4ca1c1ed56bc879ed92e8a59 ruby-2.5.0-preview1.tar.bz2=2d39ef64aaf7a52014905f4ad59b53e83b71433e50a9227f9f50cbb7a2c9a5db9cd69fa7dbe01234819f7edd2216b3d915f21676f07d12bb5f0f3276358bce7f ruby-2.5.0-rc1.tar.bz2=bf0eb114097f9e505ff846f25e7556a2fb393573b4e8b773f94cf5b47998e221f3962a291db15a3cdbdf4ced5a523812937f80d95f4ee3f7b13c4e37f178d7a7 ruby-2.5.0.tar.bz2=8f6fdf6708e7470f55bc009db2567cd8d4e633ad0678d83a015441ecf5b5d88bd7da8fb8533a42157ff83b74d00b6dc617d39bbb17fc2c6c12287a1d8eaa0f2c ruby-2.5.1.tar.bz2=82e799ecf7257a9f5fe8691c50a478b0f91bd4bdca50341c839634b0da5cd76c5556965cb9437264b66438434c94210c949fe9dab88cbc5b3b7fa34b5382659b ruby-2.5.2.tar.bz2=9f9388a162a3ae9c14ec8999fa3b12ff5397de14f55996cc8761d21c757113db37ace4d326b9606de7ad3a5875aa94fec900dd9b81b2fb0dff558c39422f4aa1 ruby-2.5.3.tar.bz2=6fe89fe9d406bb454457442f908774577369ab2501da4fd15725ccbab77675b88faad739a6c8ad1c7b6690b439a27de5e08035b7546406cdeca65c7b295e2c77 ruby-2.5.4.tar.bz2=3c4f54f38ee50914a44d07e4fd299e53dddd045f2d38da2140586b8a9c45d1172fec2ad5b0411c228a9b31f5e161214820903a65b98caf3b0dfeeaabf2cab6ad ruby-2.5.5.tar.bz2=1b56aa79569b818446440b9f2d13122bf7c2976ab9b2865f5fb62d247d7768dd4ac5b5e463709ffec0f757bff7088afd293c2a8c5349c3780763b6444bb354a8 ruby-2.5.6.tar.bz2=e4511d42d19a7bb39ea79f66bb4eca54b63c2a9d27addc035d6d670c1e59ee48a0c6e9c6bc7d082d1f1114b0668831dce3b7422034517f3c4a06ced0e47a7914 ruby-2.5.7.tar.bz2=7d6a7d41b4f3789f46be5f996099f3eb8321aa4778b2a8ff44142654e769ba4ba2df127dd0f267547e4c8cd6ff46364f18e79838df54fcd7e3fb714294ee0099 ruby-2.5.8.tar.bz2=037a5a0510d50b4da85f081d934b07bd6e1c9b5a1ab9b069b3d6eb131ee811351cf02b61988dda7d7aa248aec91612a58d00929d342f0b19ddd7302712caec58 ruby-2.5.9.tar.bz2=12f58e14cfa6337065b0e82941e39b167813920eb54cbdb4ac4a680dd0cb75d2684d341059e7b4d0da1292bfc4e53041443bd14891a66f50991858b440a835c8 ruby-2.6.0-preview1.tar.bz2=d9cb270529a97670d54f43a0236fab072714e715c39277dab70b7a1843ec818e6700e47e1384c7256f9e0ae41ab2c0b768a0de38a5ecf4f4fff5da6ef5ad4944 ruby-2.6.0-preview2.tar.bz2=3872227e9b1c97c206d19bf1e6ce15a38ee15a26c431b4436605dea67affcf16372358984df76b35e7abaa902c15c16f533ac7af47e3031dea9451bbe459b693 ruby-2.6.0-preview3.tar.bz2=d1693625723796e8902f3e4c4fae444f2912af9173489f7cf18c99db2a217afc971b082fce7089e39f8edd54d762d2b4e72843c8306ed29b05ccb15ac03dbb5b ruby-2.6.0-rc1.tar.bz2=cbd6281b2aab6fbce3f699c1ab57e5423304dca7a547a0b3cd4e8e980326dc7b85b2ca2bfaf3f3a648d40f4222fdf1740d81d422790ee7ae1ba1ed33eb11e3e8 ruby-2.6.0-rc2.tar.bz2=9bfbe83fd3699b71bae2350801d8c967eb128e79b62a9d36fc0f011b83c53cab28a280939f4cc9f0a28f9bf02dce8eea30866ca4d06480dc44289400abf580ba ruby-2.6.0.tar.bz2=ca3daf9acf11d3db2900af21b66231bd1f025427a9d2212b35f6137ca03f77f57171ddfdb99022c8c8bcd730ff92a7a4af54e8a2a770a67d8e16c5807aa391f1 ruby-2.6.1.tar.bz2=fc41429491935b89532733b95476ab9f8a4efc310aad8f4c2bd3b68fba08fd7b6e9ac84c6c88ca892022d1ba76435295f3299ea466f9b5453c07d41cb539af59 ruby-2.6.2.tar.bz2=cad678d2ced4085e99009e4fef83c067dd0e6ead27a8695bc212c0e5112a7fa09ceb27f82638faf91932ef8bdd090f844e0a878ffdf6845a891da4b858588aa0 ruby-2.6.3.tar.bz2=c63c3f527bef88922345f4abb4b9ad467117b63f2132e41722ea6b4234cec3446626c3338e673065a06d2894feee92472807c284cbe613a442c8fda234ea7f88 ruby-2.6.4.tar.bz2=a9fa2f51fb5f86cd8dcaa0925fe6f13d4f19f110b5d4c5fd251f199d16aaf920db39ad3bb50460eb94ab8d471ab2ac8bb54daea4a3bb080eaf45250aac3437fe ruby-2.6.5.tar.bz2=28e0b04ac8ca85203eb8939137b5e5de4850c933faf7f62fc69648fe1886faaabf6cdf48382f9d9585c1720876d10b41dafd33efaeb23341c309917fbd8a6e21 ruby-2.6.6.tar.bz2=001851cf55c4529287ca7cc132afc8c7af4293cdef71feb1922da4901ece255ec453d7697b102a9a90aef2a048fe3d09017ea9378ab4a4df998c21ec3890cdbb ruby-2.6.7.tar.bz2=311ec56d23d0de7a163f66c1ef4e5369b822f8409f8e1f3a25785c803f01c68dd13aa8ddcfb3a0fe6a97bf321950f8d6cd75b2babcb04158e791601914666f7a ruby-2.6.8.tar.bz2=51806d48187dfcce269ff904943dd008df800216ad4797f95481bdeecc2fbac40016bc02eabfff32414839ebb2087511d25eebfd6acead1a1d3813be6c10edf7 ruby-2.6.9.tar.bz2=ff067ebc059094c0a9a0debf54a37aad2c85f7ed47be59299041c9c03a7701529f5063ff32a1b8c56d48ee8585015acba63602ed0176b2797d263d43d67aa241 ruby-2.6.10.tar.bz2=275a0f329641e6c3d3d3c33ffabf585195187eb3baa4fb1dfd35999fa0a80bd5925943fa2711827ac00dffb6c9a1deeadabaf2e9ee401d56926fc167db5ae4a4 ruby-2.7.0-preview1.tar.bz2=a36b241fc1eccba121bb7c2cc5675b11609e0153e25a3a8961b67270c05414b1aa669ce5d4a5ebe4c6b2328ea2b8f8635fbba046b70de103320b3fdcb3d51248 ruby-2.7.0-preview2.tar.bz2=7066ececebbbba4b2933ba1a4f70cdef373169910802259a3e52b4fc144ba298f3cffda4be5fe8a7be8ef769ed43076fa046a9ac2c13bb733475b9852112c6f0 ruby-2.7.0-preview3.tar.bz2=5d8e99e3fd984c7d05c0bc483e1504e81ccdb920cbb2d78cad3c314e197b30316b692fd0199f836acac41246e3a713cb81dc6dd64c27cba56f807df4c193db1a ruby-2.7.0-rc1.tar.bz2=b5f96227775f8bdf19f944a555d0a83d7e84b37bd31fe4b8ac008a3272b1a28a4d94abbb1b5570ee32ec0690ba9d476b837a020a5194bee14bebf6f0e768bc79 ruby-2.7.0-rc2.tar.bz2=9010f72bb3f33b6cd3f515531e6e05198f295bb2a8a788e3a46cdfd776a9f6176b6ba8612f07f0236a11359302d2b77fdecca1dc6be33581edbb028069397a0a ruby-2.7.0.tar.bz2=8b8dd0ceba65bdde53b7c59e6a84bc6bf634c676bfeb2ff0b3604c362c663b465397f31ff6c936441b3daabb78fb7a619be5569480c95f113dd0453488761ce7 ruby-2.7.1.tar.bz2=4af568f5210379239531dbc54d35739f6ff7ab1d7ffcafc54fed2afeb2b30450d2df386504edf96a494465b3f5fd90cb030974668aa7a1fde5a6b042ea9ca858 ruby-2.7.2.tar.bz2=f07592cce4de3532c0fa1c84d53a134527d28ba95e310cd3487ac321c49ee680faeace285de544ee6db432a90aa7538a1d49ff10c72b235968ca362ef9be621d ruby-2.7.3.tar.bz2=e9236138be3e61380140f2e0d42f8fb82ad8f5219d454de2f6c2ec546bb208acc8b0f2020f23e6446660d2b3b9ae873cdd8298471f166a5f1efba8e80b05e746 ruby-2.7.4.tar.bz2=f144c32c9cb0006dfcfa7d297f83f88b881f68c94f0130346c74dfd8758583a68d22accfd0fc9f31db304ab5ff0bc135bfb2868145c0dec1ee6cec5ac6c3725d ruby-2.7.5.tar.bz2=0aa2ac44bc22859a39c43d08b7c7f457df05c2dc36b2574fd70ca399143ef1000dc5e496212db9eb055bc4258523d47d26db3c57a1a5a5d63cf1b3de9f81645a ruby-2.7.6.tar.bz2=4f7f3624afc43da25ebf0f01d5a2f92f72f94bab7423587cfd3920e089b479bf559b159adf2891b996f7e6a98c008a4f73a4a2170e2f8619417660ac1ab24bdc ruby-2.7.7.tar.bz2=24cc772ac1b56d3bb423f1b33716f221bf534f3717a506bf8235a698f8a454db7d79d94ae9a84067153c2f737b3f8f6085f34e36cc04be0d75ae2fdd57718870 ruby-2.7.8.tar.bz2=3a9db8d9e79318f869417f2ebf3365907febc0d1428116eabf3253c51d8420f255782b32fa30a54802b9f5f4187fad80dab0611cc80436feec84db87b0456ec6 ruby-3.0.0-preview1.tar.gz=b94892951f842a1538f4b99022606ac2c0b5031f1ede7eef3833a8caa9ed63e9b22868509173bfefb406f263c65211db75597b152b61f49e5ba2a875fce63a27 ruby-3.0.0-preview2.tar.gz=6fa4191425ae71e41894b60bd9c31d483a562ee8216886360ce18238ab48115b95be0367708612c45f634e7584fba8940a524ba0113ce0f36ce4df78a112d0b7 ruby-3.0.0-rc1.tar.gz=798926db82d27366b39be97556ac5cb322986b96df913c398449bd3ece533e484a3047fe35e7a6241dfbd0f7da803438f5b04b805b33f95c73e3e41d0bb51183 ruby-3.0.0.tar.gz=e62f4f63dc12cff424e8a09adc06477e1fa1ee2a9b2b6e28ca22fd52a211e8b8891c0045d47935014a83f2df2d6fc7c8a4fd87f01e63c585afc5ef753e1dd1c1 ruby-3.0.1.tar.gz=cb81db2c9b698cf8159b2ca6507f4c7f171e4eb387f5730c4b658ed632b7900a169808e6fbec0ee80598d937030ad5d9c56b63a2a339373ec5d9e1c06b7661d0 ruby-3.0.2.tar.gz=e1fba6f5429b5fca9c3f52a32535615fcf95fafa415efc71c46db4cce159f249112c01574c305026be5c50140335696042e47a74194caea045acbfaa4da738cd ruby-3.0.3.tar.gz=39dab51a0d784a38302372b99f96205817d466245202586d22123745761e9cb39db128ec2b984ebc3919b9faf2adf828d19c97d3fb1e56d44be0a81dc5d11b87 ruby-3.0.4.tar.gz=0dfded6826063c1b39bf625a6e13b46c109cb160c8648b78f0965f70e7c7a1a65f1c117fc8f2cf8bdb34d7cbf79fecf1f45d169d2323406d66ab27b18bde1d22 ruby-3.0.5.tar.gz=ea45fcd2ca53b87f18fd8696d00a1e340d2495443216aaf87d3f643cb5bd8bb614a1faacd82d07e7f2b72172397c728316a82d7c34a7b4566191268ea517ccf7 ruby-3.0.6.tar.gz=d596bfd374ae777717379b409afe8ee1655ade0c0539ada7a10af4780b818efe25a28aa50a2a7226741d1776d744e10ad916641f9d12fb31c7444b0a01d0e0cc ruby-3.0.7.tar.gz=66e5116ddd027ab1b27d466104a5b440889318b4f2f74b5fdf3099812bf5f7ef77be62fe1df37e0dc7cd5b2f5efe7fee5b9096910ce815ca4126577cb2abfaa7 ruby-3.1.0-preview1.tar.gz=63f528f20905827d03649ed9804e4a4e5c15078f9c6c8efcfb306baa7baafa17a406eb09a2c08b42e151e14af33b1aadbd9fb1cc84f9353d070b54bbf1ff950d ruby-3.1.0.tar.gz=76009d325e961e601d9a287e36490cbc1f3b5dbf4878fa6eab2c4daa5ff2fed78cbc7525cd87b09828f97cbe2beb30f528928bcc5647af745d03dffe7c5baaa9 ruby-3.1.1.tar.gz=a60d69d35d6d4ad8926b324a6092f962510183d9759b096ba4ce9db2e254e0f436030c2a62741352efe72aec5ca2329b45edd85cca8ad3254a9c57e3d8f66319 ruby-3.1.2.tar.gz=9155d1150398eaea7c9954af61ecf8dfdb885cfcf63a67bbcf6c92e282cd3ccac0ff9234d039286a9623297b65197441438c37f707e31d270ce2fe11e8f38a44 ruby-3.1.3.tar.gz=550cfda2ae492312009a58316e18fd77ea92852718b37443bcd76aac84ba6694fb841fe19bf23bee099f96f5aeed9d03e77c8c02fb194e414eca5f707adbbf90 ruby-3.1.4.tar.gz=41cf1561dd7eb249bb2c2f5ea958884880648cc1d11da9315f14158a2d0ff94b2c5c7d75291a67e57e1813d2ec7b618e5372a9f18ee93be6ed306f47b0d3199a ruby-3.1.5.tar.gz=23661cb1b61013d912b7433f8707bbcd723391694d91f413747c71428e74f8c7385c1304de7d08b70c9fa3bd649e4eb5e9acb472d89dc2ad5678cc54855a24ae ruby-3.2.0-preview1.tar.gz=d24e77161996c2085f613a86d1ed5ef5c5bf0e18eb459f6a93a0014a5d2ce41079283b4283d24cb96448a0986c8c6c52a04584abd4e73911ea59cefeb786836e ruby-3.2.0-preview2.tar.gz=5e9ddcb1a43cff449b0062cc716bfb80a9ebbb14a1b063f34005e2998c2c5033badb44e882232db9b2fceda9376f6615986e983511fda2575d60894752b605cc ruby-3.2.0-preview3.tar.gz=860634d95e4b9c48f18d38146dfbdc3c389666d45454248a4ccdfc3a5d3cd0c71c73533aabf359558117de9add1472af228d8eaec989c9336b1a3a6f03f1ae88 ruby-3.2.0-rc1.tar.gz=798157d785ebae94cb128d3c134fa35e0e90c654972e531cb6562823042f3fb68a270226f7b1cf0c42572ef2b1488a1a3e44f88389ad2a6f9ca4b280a2a8e759 ruby-3.2.0.tar.gz=94203051d20475b95a66660016721a0457d7ea57656a9f16cdd4264d8aa6c4cd8ea2fab659082611bfbd7b00ebbcf0391e883e2ebf384e4fab91869e0a877d35 ruby-3.2.1.tar.gz=f8bbff5e237b501f4042ddc70a19ac1ce74f72f147c90daf7f3007a940136abde37c12a0f7444f713ede09ba847c2cc2897a1742823832e3dc8cce80073164e1 ruby-3.2.2.tar.gz=bcc68f3f24c1c8987d9c80b57332e5791f25b935ba38daf5addf60dbfe3a05f9dcaf21909681b88e862c67c6ed103150f73259c6e35c564f13a00f432e3c1e46 ruby-3.2.3.tar.gz=75aecd9cf87f1fa66b24ecda8837a53162071b4f8801dcfd79119a24c6e81df3e3e2ba478e1cc48c60103dfaab12a00cfa2039a621f8651298eba8bd8d576360 ruby-3.2.4.tar.gz=b695b98dac7bb2c8755a106d949cb1b1b91551092fad263765171ddf8a4d86585259ffab5f7cc9bace70143d645dbe5932cfc61c6dba7817177de391d76bcd79 ruby-3.3.0-preview1.tar.gz=0f891f140ddc6372aa7c4459f8784126e0c341db7b80e72c51e441c5153c43c2d7b965f7807c076862ac84b9b8b0c6a66bbf66fc341746016151397bb21c782a ruby-3.3.0-preview2.tar.gz=1c5a13e519e8487fd40d932b96d14fa729521925c288e7841ab5eada628e506ceca2605bae36eea1aa505d9253383d53cd933b7a4bff96e6de5b1130c7c558e6 ruby-3.3.0-preview3.tar.gz=94db07a6958c09809b2e5b597fa55a121074e8bacb3bf588c83cf0d35b07a8b070172035a49d1abf0d8ee364a9ace824f34e677f7327ffe1acdbab0938ac49c4 ruby-3.3.0.tar.gz=26074009b501fc793d71a74e419f34a6033c9353433919ca74ba2d24a3de432dbb11fd92c2bc285f0e4d951a6d6c74bf5b69a2ab36200c8c26e871746d6e0fc6 ruby-3.3.1.tar.gz=0c8ea922a79152ac7adbfb2541320565bce6a631692fd39d499a06f53ad6339c16fad8374d171351ed63f7bda3312b26d4f8c058c5b6df3d7548fde372c718f1 ruby-3.3.2.tar.gz=a15ba8d6c2830fcd1f2b36f671acf9028c303ec78608fd268da0585db8e95ddd971666e8029bcfa2584da2184a6534e1f2f2da07fa7ca4494e8d842eed206f00 ruby-3.3.3.tar.gz=0388a96127eb6e53b836f7954af51ff62b84cdb7abeab823cb1349993d805b151204e426b9ac04ca8333fbd5e01c386d58bc37d34c4e9286b219dcda7542a150 +ruby-3.3.4.tar.gz=56a0b88954a4efd0236626e49cc90cdb15d9bfd42b27d7fc34efae61f500058e58cb32c73fdef5f1505a36602f4632d6148bf3bd1df539cb5581ae157c78c22b ruby-3.4.0-preview1.tar.gz=29c0e32179f7b823b6708f5328e495cd333fe8dd88f7df7d9051deab47add67b14d899bba565bba1a77e1b04c9693d9708541445c112925777bb6891cb7b2b62 rubygems-2.6.11.tgz=3b0dd38c0aaf313c59e299dcf54f7bfb6e6d84b8b739573ddaf599e584da45ed7b1465f6521131b32f237e31a4796d9ef455b8be685064b3fd77a0355dfff13e rubygems-2.6.12.tgz=ebb672488b50f5fc988eab66ab14ce8e887dcc635f71239a85e32fbf1e919ca70196eb4d3f2fee3486cace7064bab0b8b08339c754b723198e1b0b0a0984ab54 rubygems-2.6.13.tgz=c952b6061a9a0778db304c3aa5bea693e71ae2564abfb19f8b123eef66eb1e3877fc7c36f4f1527da97bb320870cbfd4574ac57ad88e850a44fadd67ebdac152 rubygems-2.6.14.tgz=7743845bc5265df3782f85a23896cbb250d8a2bbc9934a27f274b001afa7aa62f7f00f616296f74747ea612d2cb37dd7f533c931aa72550d84c64d2a73d60daf rubygems-2.7.0.tgz=0bd08fbabcc33687c98365ffe6794ca2a5e82160b0297479d4f19bd899d176b7f4efb95248898b26d873f9fc7d86c10cada6e40cdc48738b0bac261c3aad261f rubygems-2.7.1.tgz=fa4ea123760b03b8b8e8ececc55c9dc34249073fb267d310bd903aa7a613267e5d27990bbf28e32c9a746bf884af8a84a0dc202297272f9d477f7710c21bfb60 rubygems-2.7.2.tgz=0f48c6e46663780a571c7ee0e6e772f2e18a755031e7dd8ede7870f238c214b9e3e38153b1ae8f1f78a9aad63c1a079b86573b3a25c57a600d842bdf92b9c4d1 rubygems-2.7.3.tgz=2782331b31947a23f85b285a3d5e7b66e34fe5847bc84dca4f1e6bfe33ce187ab0cbc814229de8111aa19490b656ca78b7c821e4ea6b425449991c01371b7565 rubygems-2.7.4.tgz=90f72a46709ef847666a6a23eecf24521abd5c294b2da8a246bb4c7f85daf4af39a0634fc8093c7bb7ded2ac137ea27fac5ed94af3b70c49e78594285c7a40ce rubygems-2.7.5.tgz=86957f1c438070135df527a15102e40487fcee93a55251463095e4c8794a8616d16ed9bdead0e0ef83c44806bd5016ecd9e178bef608b66af2e68e2c9c49e941 rubygems-2.7.6.tgz=bc168afc40c974dbc7c37eb5678432ba2ed7469c3f007a159699467ff2cff5205c508237193ee8becaa6eb555b043969cc5f92b2aaa6bf7c958dd7c187e258a7 rubygems-2.7.7.tgz=f93b7eacf5ef8725c40d618daf9deabc7e9eed74b3b7f13ecd16f89205fe24958e782314c52f8a8fe3205b93e20b830b4fbf7ff8944ff1cf56feb7de2d773252 rubygems-2.7.8.tgz=3d1cf68377dfcf102028342258aaff5a7257d2d2b34a80508c85aa258d810add46e65a157f902c271b0b7b568c437372d17246e89cd88f8500e47c008d17f1a6 rubygems-2.7.9.tgz=5f699f47bc24d8ffd4f8f44a509a9df71fcd945ca2574dc9d5050bfe06a44830a368f45d204112d7a4f1877e1600a6fe4d1b6b68f9a55288664667b4220a7d72 rubygems-2.7.10.tgz=48a18c0f202f463c38cf5dafecfbc7cc39245e63c7a059ef2cefadda478483794a929ea6b7e0ef062dd4423230746f1f09d7bec06a97fe3ceccc3325397a3e71 rubygems-3.0.0.tgz=047f4d446aae414e4803517088ef47d5cc66319ff08a3795c6d69e83eee9f3e7c3b05419858f7e5b6a8ec224990ca01178a9259961ef2d7ab737bac352a0f18d rubygems-3.0.1.tgz=dc29ad51ec67b1dca82a23973ea92153482788964d0755bdcd3c650116915c461c6e5fb1c826be3ee04a497fec4ac2826904bd406f24611e77cd8c9eaf4d8729 rubygems-3.0.2.tgz=90b46c2cd4f8baee74eb488a40691cc00e754cefc42029d485163d6ad7782df78ba5cbeab08eec6a4f71febe0f6e635e12a9381393008c58eb5e16396df93fbe rubygems-3.0.3.tgz=1dd585243341901c7b4cc60a4902000c10ce57fe2cc9c28e27e274a2e6029f936cde1c99d7097c93c2c5b2c8bcee5d692c8fe5cc00c996a040e4954b674e330e rubygems-3.0.4.tgz=887c64226ec0b32d33f2ea331936683406d54dc74d19e658a23521e25ab50aa23534fe9eecaf696154247ad1df1d24c233d8900b9aabc79096eebd6afef3f775 rubygems-3.0.5.tgz=f5a97cf67d7d043afba7c1aed014f1b64ff6376ea74d3d6533496bc5ca9742e0ccce1a157e6f67d8fcbe59d8e34bbfbcf4ed8be97acf2970603de6381043cb78 rubygems-3.0.6.tgz=1ef1822a2b19790a36a6d242b7d4584222617baa27787ec58961a9cfeb2733f19f9085490ffc72ee375d3153c7114e050c42e68fc8039e727fe5961b09365ee5 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=5dfb040b746e462c297ebcdf84e0f07cd74b86852055dcf0a7cf1814112099bc674bcccd94b03726aee76b253c9345a45d046cbfea230647644f0fd6b1c1ec96 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=17983c442c54d19196be3626e25c64f5474139c0b973624832ba8730efb047bc747c02e59c82f38397bf012c63ab83f79a9c1b64311cab796f08fe96d7d12a1a truffleruby-1.0.0-rc3-linux-amd64.tar.gz=b0b57082d61317911f101da617333d81ee6bede6b6e18f9bed86544dc413339c830198d90cad7ac94c0c8fb690adcfc559dd9f530abb70507ff6a76eee552b61 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=18f9782de56269389320ddad779ec69c168909198d4572e2ea4c18bc8082a539569a76760a6a6da58722fe08d77d83904aaba14baf4075a2833cbd2efc45dff3 truffleruby-1.0.0-rc5-linux-amd64.tar.gz=134d9ba5db7b8a1960d3a88390cd6f7503a0e8565094fb127333d122cd773bfbf9dc976c659029007e6fb68e93486293bac2ee29ab21dae9cb0c06ba57dd2c72 truffleruby-1.0.0-rc5-macos-amd64.tar.gz=5804f1f27916176f5a270de8aac85bc48c38ba37c4e719b09f5777e5c42429271819378cfe096c3cc33d406cd0726f2e37658020f97a438fd53751019831569a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=2597b375f590755b851d3b8cbad3eeab4c965eb02d0c944044f57e39f6c3db1e2f513e2aa55db789e4a885c697f81ce5c8bdbe9a7e44ee30fc09d234e44fb512 truffleruby-1.0.0-rc6-macos-amd64.tar.gz=2eb177190de0408dfdaf30264132955d1db7783ddfb63880d97d5933f66c5662794c3bb6198edf230fbff348674203e61f7f5481e74ac875974467f2f128e939 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=ab3a3dc19f903e68e36b135729693fa025a7c1950139277255e48c972387ef8399beceb3252ac37cc70c0df92838f8a0ba8c45f53665ac4286ef23f9b240806a truffleruby-1.0.0-rc7-macos-amd64.tar.gz=b8423f50a5292e211db7ebd7e2b987fd5c9eaaf34eba86b0644d2716a7f068f2e56deb4357c516b87b437e64fd5ce8515bc181165cc1042c6763f27d71baa59d truffleruby-1.0.0-rc8-linux-amd64.tar.gz=bcd05d304ee9b4da97193575fb1ad78041a0c7710bb444af6aef12ab4261b1873f472175ec51a187a5e99da481d66b81a132fb691643b793e87d655f31d54657 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=2c758221793c38ca8af1831a5d9f3abd555c406569508ac3a86d3c1ea5baeeacf65abb6e904ed3b1e58f555f51bc85ab171135ff4c3d0e08cdae994a861cbda4 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=42e60b69957f77a8623e0dccb7d215e800c27c622364fa76b9c574e8b1d3a4056a058b61ed91eac2375ecf4e51e482a6e17550aa2894a44d1db70687958033da truffleruby-1.0.0-rc9-macos-amd64.tar.gz=18556ee8d2fdec6907fbc8fc33d8b32ea0c58d40ee3df084ffb233e2fcd3a514a553f97c31dcc25dda3f86b1b805ca5fe3c9bf8cb078b92325515f09db6b88ba truffleruby-1.0.0-rc10-linux-amd64.tar.gz=10a7cb1be6214347469d5797091f73c3d7824bfb32a47c13566573a383380b1df9b79b7901ce0fa3af1c97285c90afac21e2de7a66ed88d9495846743b3b25e2 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=53f0939d9d8c3470cb79316d865b765816032528d77a3cf497134f3aa667a6253ae037410801261a8e7d0628198ac5f6aea5ecf9b7313f06ccc1d5e9f94e74ea truffleruby-1.0.0-rc11-linux-amd64.tar.gz=f89bc9a3310634d39f68006307da0b0ddafae036089bdd663e8372777a9562d201a4e69b2e1a602cff5fba6c78a8d4861b6d1020679bd0c72c71b938a4f36a27 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=3f461c12fa9fa57a55cc390eb9887df88f404661a77bffb44f82b4c7e9021513a6df9f6d5f332a36ce0c28ae7e3d5afbbe15cc4b814bc7f86dac2e5ec280f947 truffleruby-1.0.0-rc12-linux-amd64.tar.gz=85f042c308ccdfbeb318cec37056d8d970cab51cb0779425b85b8f76b0a1dd9cdec3191ae2b6b9b6be6e95767db814496450ed20076addd9bd495742f9de3c8c truffleruby-1.0.0-rc12-macos-amd64.tar.gz=067a0f63bbaaed4c8d4120f758c8ecf8c52afd1d30ea9d41489e26289d57a574d2d4ae29e29655378510adfb3f4a07b04b403d6ee98ee6b3d3aa8bff9c8d718f truffleruby-1.0.0-rc13-linux-amd64.tar.gz=1eb6b80cb05133d253f20629a11ed9ec3f37da002d5668cdc6577b2a20524e0cdd4d739d3f1aa2e8c518e2f7ebfd519ec1c647293714a1133ad4d569375c0e69 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=e3cddb0d0ae48f7d5ee4dd094ddb5a13f6a7aff1521b1adf25710971664b235cf67144e3b81525fd710dc49b6f6f6ba06e10eee1df5dc08119e9494c6be86934 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=c982194675b66a0433bd5517fc6f1564db669f595f8c7ba4819bf37e0599474d49a0c606577a898c27fa5ba40ab793c62d8211e7ea398d6b3e2bcc31eb5d55f4 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c14e396396385644333fb4c4aa1fb4b934a3f4e46312146821e5dcdaa097cb5b1efbf397c1dd6117d909803fd27ba8d835904672e98d43dc565e907fed752e1b truffleruby-1.0.0-rc15-linux-amd64.tar.gz=f27a75f929a6e945e49ceaad12f484fdaa918469a2f639b572fc4737b78e1cde0881697057e13a58b2fab7ac64c3a71bc9951561c3a8728e3dec814ef5e95fee truffleruby-1.0.0-rc15-macos-amd64.tar.gz=7aa029c4999d4608c9bcc491771b0434267032dbe9dbf504728079f87ce93e6a90e0fa839295b88c00e5a025186ed0fcc42361428b7874c05e222edb108d6c02 truffleruby-1.0.0-rc16-linux-amd64.tar.gz=e8c508dede11d4f54cf0b15cf92b50caad93076a6065bd2d6784c5ca739f5923ea2b894c6b2b52131f62187c8b305cd11a960fb5a670789802d59b6b2999f0af truffleruby-1.0.0-rc16-macos-amd64.tar.gz=841eff077c38bf594b101edb15942f601ba0dada2122b21b016f53251aa2a635b8d0b63b49bdfb50259b2545d1f498bca95d5f771a15a28edb0dd07216c9b709 truffleruby-19.0.0-linux-amd64.tar.gz=8ec6c7829351e0dc2cce57305947cd540734fe5a0b95b9501d4179993727ab2c331e9fb639b9865c0fed596df3906adf3dcf2efb22c4cfdd23a3dc2137025fd4 truffleruby-19.0.0-macos-amd64.tar.gz=912e0c15d32e40c884b2caaaf9a86a71450d441c960ef98a63dfce80353619073b146dcfe03d9af4273b2811d0899eebe922cc84a51d6f5e6826cc436d793f78 truffleruby-19.0.2-linux-amd64.tar.gz=eec92bfbd776acd61709a428b90b1029c5ea83e5ea839304d23cae3a541dd4fab3b387691fa76643f55d5939c9cac0cbe70dc0b5786e5e0e5d20f3fcd9a21356 truffleruby-19.0.2-macos-amd64.tar.gz=ce647b76c9931feac55baa5acd2c87d8335c606bc5cd7e462bd92ba1b09f4bab5db927f021e3119abfd85c33377003d060f36cf64eb121954fce8878112f01b5 truffleruby-19.1.0-linux-amd64.tar.gz=db01e6dc09fc5f39ca466aa94f725023d49a8f52343f129bf8c32b7f5f76ccf2d573ee3344fce3d5aff9983bc9af618cc5ca6e1dbba93b3f604e4f33f8a69b3f truffleruby-19.1.0-macos-amd64.tar.gz=f002bc0b6efca11eb97c4aa6df33d2e0fcc1de3443efd39d912b028df9dd8954cb76ef3ca7fbe140f4e922d6ae4c1a6a20853490ef1ea0749293e2fcd4ffe8fc truffleruby-19.1.1-linux-amd64.tar.gz=ec031e8c216e31f034d97aaccd6441869221d6946e18f375b44a866550b8e8eb4b2fb923f9ce1a62853bdcd5b9201e0f5d2732ca6525d80171d5732ef522bd25 truffleruby-19.1.1-macos-amd64.tar.gz=1c15918af939a8fe1779b71d9e53d2ce09ca7353173a3b357905d9fe1981ff013cf0f90c6b47e1ca66dd168c2f2d742f28a5fb134cc0231d36146da99f91c3cc truffleruby-19.2.0-linux-amd64.tar.gz=1248bdde9cd3651d7042fe4cecff4ad35534868d543fe2e6f3a5bfc3bc9d10d57b4139fc070f0a03861436a1aabc9a8ebdf3356f39b77a4b8f6a1dcf492f70a4 truffleruby-19.2.0-macos-amd64.tar.gz=92c3154ed229a115cf392826494745aae06dd9228dd0996c2c44c550552f13f9c254367d068452fa4a84eef79c19601c79b87e10f3121fd7b83b803514a41cfd truffleruby-19.2.0.1-linux-amd64.tar.gz=53c78cd1f255f2b7031a70a42b65c0bf80c510b9254f5d7ba82b4787f55f5b09cfa9544c424a90f4619a74179fed07c168bd501e34772ef836a773e89c467cc5 truffleruby-19.2.0.1-macos-amd64.tar.gz=ac11523cd49fac50de1e441039e429fb8cd6c7051d537e5083b64fa68eaa19c9f0a966b269da906c367985f229af82a4811282dbfd0a76ef6565162e1081a659 truffleruby-19.2.1-linux-amd64.tar.gz=c5ffc1b592a74e836a4f6ec75b0e103150a4a40d3183ae853ead38c951a85378163111cf0bd2b81e44548c0a7aeaded3ae8a7ae558d5a02dc9e2cce992b79b58 truffleruby-19.2.1-macos-amd64.tar.gz=bb467b91f66eb7d1e6f1a54a7bc0a3d9503bcbd935e8a02da9ea0b749a51e354b1140d4a4dad6fc05312b560bb9ccdcce4f6583bccd19bb5afee19bf494102fe truffleruby-19.3.0-linux-amd64.tar.gz=0e94777a3feabbf0107ed40847e20dd4e3696ff2b7c3f6ceddf3a53ccd812bd003c84c62a750e8fac9d2490374bf792d69174b48c3ed36b593485d86729136c1 truffleruby-19.3.0-macos-amd64.tar.gz=95470c389e24c865ecdc3d299005cd98f8221a128f3cd75f899b6b7ae5d6dc07962443ce0ff38dfd014589d5aaf08b718dc870a72eb7ea6ced18ec2b2db63095 truffleruby-19.3.0.2-linux-amd64.tar.gz=dc5309b71980657f750b4dd4f8b3bc4e191bc305b638b1e562ff5b0ad7fbba40079ba674caf46226a46b5ca58c10f812354786696264742f351b129fb088a672 truffleruby-19.3.0.2-macos-amd64.tar.gz=ff1c37485ebeff3edcc7081ce09bebe5541012dedff6997662c7f8a064e0ab10bef9a5cdf834263a06ae04ca0391743948bcdea6e6c9d7e1cfef9f21523c2bdb truffleruby-19.3.1-linux-amd64.tar.gz=c724547a9eacfdd135ce05eac9dcfe74e58a5e77c97f88103f83b8513c15c975a0ecf623f623a425ec81fad1b64d3b5e135660d6943608ad08048cda00eace79 truffleruby-19.3.1-macos-amd64.tar.gz=d746b2ad410c15d145d36c676a070ae454ba8e5ec6c594d5ebcf54b1fc719f98e8b8f71b6fd504c3d38df286bd11c5114f73b5ba39be312b11d42d4ca1a17d02 truffleruby-20.0.0-linux-amd64.tar.gz=4efea5ded5fcc6886befba3a3720fe1e5b2e376d46738565e8871a1ce0201a33ed52e78b8af2fb389618bdea99466d126d8537dd0919b0c13f8ff1940cb3e52e truffleruby-20.0.0-macos-amd64.tar.gz=b36488330514b77c7115689042cf2482a0beb9f72a0b05fb4c7a6ecb0835a3da47c3b15c41abd6ffced023e65ecf7eabcfbcc6e41901dcddd0fb3dfed46564c6 truffleruby-20.1.0-linux-amd64.tar.gz=116d57404540b85c15b321793a6f985624a2044af544e659b3607e50159703af5d445e22bff28ae2182dfa752f7500d420e250f6deccc98a2f01e89adba8ac3a truffleruby-20.1.0-macos-amd64.tar.gz=9b1267101dfe78b85c79f7528eb4de96b16933e66d5771efa6272372dac0fb35b199bb9d42773d61f4fa7a15d6cbd18b5753c148f7c3e477c7c4b21633f12b88 truffleruby-20.2.0-linux-amd64.tar.gz=a37eaf8475364b74d948979ac13dc6e6423bf11949ad1d0f2925f78a4495e80de9767001ccdb777c8cfd7f545839fad4d842522620c3acad179404bc4ce6752c truffleruby-20.2.0-macos-amd64.tar.gz=964c1e02cc53e1646060334a9911771e679a8344d811a0f77d5cae3529dfefff259c45505ac84b7debb958514cd5d2276ffd435802085494e0229dd140ce8f00 truffleruby-20.3.0-linux-amd64.tar.gz=ec2d8ff6a5d45fd7091e26430c67cbbdc0f8ffa41e9ac574d48802766fcd144e1f446db807700247ad6d8046b7ed070b5da70ef667e576d6fea60cc64ea5484f truffleruby-20.3.0-macos-amd64.tar.gz=1878f94e05a3c40484bf944a72412b179aa5415a16a7ebc1610cb512a1e1c4a2ce0e98685257ad6e5c14745245c35bb5b28205fb687292c4f17193cbfb3bb606 truffleruby-21.0.0-linux-amd64.tar.gz=b7d1b76cc015d136dbd74515431f4447730850475f81b00885b71b95819134db2656d941736048db42d519f03e1f2df066226513b77208adbdbbeda1f49cab11 truffleruby-21.0.0-macos-amd64.tar.gz=7677b827a9c1758d5f941c512cb0fe8daaa19c3db77b485d7dfa43940151d6b9094c4d9271e18ef5014630142dffb93d168c7ac631a3b5eef6fc61b2f9eecf88 truffleruby-21.1.0-linux-amd64.tar.gz=010e9fb78cab12486641780392be0f284da08dfd955f3a0d1ef72adb52e1c9024b54dc880173645aea2af680b3670a6bb01409198b757239edda4cd9bf2b1e90 truffleruby-21.1.0-macos-amd64.tar.gz=96ef8481faef1bfa7f01bb4d396818ef6f0943d19c6a23dedb68f8346740b72bf06efc707bdd29158cf991cc7073c97f429a07b02c2a48050512b46369850058 truffleruby-21.2.0-linux-amd64.tar.gz=c20af04909a852cb676c90403d852fb367d56eac0f9cf8ba42caa4cad1013ba393cc4611e434614ad132b7b0ed61160aadd887001b08de0767cf58f5e149efe7 truffleruby-21.2.0-macos-amd64.tar.gz=0b8d9633fde53aad78f0baf52858cd5a5716f53ff21698baab17da4a625b4369b88dbd664193e3f0d1b40e64c88699ab4f04bbe40f54189a588c93678962a7be truffleruby-21.2.0.1-linux-amd64.tar.gz=15ceeee383114f974aed5f16c99131d56947e13cfe248b97e55d61263ccd51aa56fc3e0df215196ef7f80ccba9e7f19e7f261d7a91d54bde2d9992caba682d82 truffleruby-21.2.0.1-macos-amd64.tar.gz=8a8762d90c19db4f48433ce0e3f3339e290685d79c6ee9bb7d4359c741edfa6a7360ff65124433d964730ac25b2cc6d8b581191b0a51479f11c2a80031a6c1c8 truffleruby-21.3.0-linux-amd64.tar.gz=b0c07b1ea797de92447a81b350d460c125a2efaff3c290637c4bcf1c216b5abd11148cfb143ad397062a96f36beade8234d0785c42f58fceac0011f629a5220b truffleruby-21.3.0-macos-amd64.tar.gz=42e607fa52a534123989ad232691ede65aa1c615f39320d93aa8ab9c21924eea7bc0aa49aef1a540ec972e2b3dc775d22a99eca3e0c9bc450c525f9020fbb975 truffleruby-22.0.0.2-linux-amd64.tar.gz=2231a0cfd27238c34ea0bbad27ba387453e48f39032607cbb829b347ea6ac804df15eb3f84d50b09248782d6202284498e7bc9aaa2060f0ce81bb83a84d700ad truffleruby-22.0.0.2-macos-amd64.tar.gz=1d7ac44f0862ad23cf17a7bba73d23dfd4727aadd9a3aa9633361e9bcd19655d163e160eae9c8db8ec9892f8fbf82d7a38b1cd689475bf41609a828208098623 truffleruby-22.1.0-linux-amd64.tar.gz=c4c2f9bf4236118c8ea62c08bad89e1034ecdfa0c4815693961c4d2b1b30ca043fe958abfec9cf36a8638aa2e005e71fcc244ebffd9ce11eb68cf48bd98c29d3 truffleruby-22.1.0-macos-amd64.tar.gz=507004ade838e614955e23331845839be656aaeae7869ed3d989c10e6491775a12313ac9ef03e14945f20f5e76d46ce6f7bb860af68a627c48065399cea3c567 truffleruby-22.2.0-linux-amd64.tar.gz=37c09249ef387df3e0614f646abb444cb5b7b2751538ab0432e703abe92a81b82e0d15f89d5ad7cd58afe5f30d9a92dc8471d19f1c1ce10b50478ac74f247739 truffleruby-22.2.0-linux-aarch64.tar.gz=49a7cfb4c81980d9c7a1588ef9f76a9bfb759d4b1925ab11f230d99c15a62e162a08249d23cf5646e2d38ecc2005e27103f2e5d92b83b0a182a4e64319b70c0d truffleruby-22.2.0-macos-amd64.tar.gz=d4c206fb0a5e63c5b7f61f2e62de854e4d0817075ef9ded237d98cd821c286e88d7b150d140d9907a957209f39be96c7025560e3908c89aa337925d2fba690af truffleruby-22.2.0-macos-aarch64.tar.gz=a01c18803777a74717ad699b6ee51eb759d881fb436d24338b557c52d4a693079d7b55f108394ccad0dd69c974cb895f4a36854355e84fecb67e41bf9eb18514 truffleruby-22.3.0-linux-amd64.tar.gz=d53472ae892dadc81c6fe63a597ccfb67e133958431b11716db4d920c78fc86f7496e4b10322d041c900bed77d27e02850da20aa95b297d63a9de2e72cdf3c76 truffleruby-22.3.0-linux-aarch64.tar.gz=dab63d49db4722f0c174ce8b882413102520ff649182946ba332ef5ba0fc6b58913595539a20b59e460faab2fba36f762dc8eb66aa729d4a6bb90feb2a95f053 truffleruby-22.3.0-macos-amd64.tar.gz=15c91d25fd6fb1d9f3f2a0b36676da5c8a76d62be86cff463ebe6c7e6aed2d9b6de9062021ab1b9b29cfb7a92b5682c860939acd71d12dba7e4a6bf3964fef3d truffleruby-22.3.0-macos-aarch64.tar.gz=7c44d0dd07e4ecd84a92f6dd574dc185906121b8eb75f6fe097b9d4738aa30751664d70e9027e072eeaa1dffa05fe7bcfc06be0c2dc950142f60664baf5eac69 truffleruby-22.3.1-linux-amd64.tar.gz=f41d3bd22500b7291121368169f8558df4563c840a01b70ff7feea3593f0152d8d77d4437af362bad62f25b79bce1ce8ddaa1bd8172a2a7ef8b61cdb6e478c9e truffleruby-22.3.1-linux-aarch64.tar.gz=1ca5221f0dc5ae3e0bd9545be474e115b2e62737701df95c6ee6cdaae5d82815acbe6af961ff23afee64dc26e655c7786d4347e3694c140773f065534322ee59 truffleruby-22.3.1-macos-amd64.tar.gz=bae16cc04c6018703833121f4258c3f18fa5062309d0600458be3c51c838bc63976a026db0f28d23005df9b640ccad0a9cafc56610a5ca9c24951c66b62097d9 truffleruby-22.3.1-macos-aarch64.tar.gz=b56e230d8fbc95d19364e695aaf1e552238b02ace7056f636808a7d7510777cddfde572ace5238ea1e314351bdd1a053ab3912d0889f51f55c722797c83eaaee truffleruby-23.0.0-preview1-linux-amd64.tar.gz=d538412f12d5ce743c351acbaa483b8b85dd2cf84fe06b3e90ca21f3c2fc0465df9c1773b3515fe4296d599f45e9cbb935dc5a69fe45668321e5639d58608ef4 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=f10b5ac749b11f93c2469f2c8a713ad090cb653761ae0a3e1ba4c19b0c96bd61c5e8da74d8944f9487c2d327d268a188f2cb56028d2beaca2a7816e63123600b truffleruby-23.0.0-preview1-macos-amd64.tar.gz=cd9db49c4253bd66cad6f9ae111c83d3befd0102a7ccb72a2407d22dc576ba7f3a26a90cd479f26dee3565d2f893a2b7c8b549e2351336f35d2632e57966657c truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=28b77d9943cd1617e0445633a9fea8911cfa975f5c581192439cd0944d2a17c2b0558e3e4112588b5fc77b57c48d857ad68ac51fcb867250625ad85406d87acc truffleruby-23.0.0-linux-amd64.tar.gz=da702de2e8c994f2646a3de5b44824210dbd37129cd2f91c3bdd990a1b0d0b05dee4443ad0f6cf98fdb4e489c9f4cde64f3561baf486dc642d4981a1a1812925 truffleruby-23.0.0-linux-aarch64.tar.gz=808254a154adcfd1bbd6e22bcdafebb6169c6f8cfd1c55382d446bb66002384ee844dcd8b5f642703ef440f7566645d190081f45e04a7d8d59bf87571cb4430a truffleruby-23.0.0-macos-amd64.tar.gz=f775d57e63c606eef424a1115408ed8539ef47d6bea0125ad1de7ee4fd5971e96747cb7f5d22d91d2f004edbd6ed6b9b5bd014127dc1abe7821a3a987a72d9dc truffleruby-23.0.0-macos-aarch64.tar.gz=000069854458f81d97eefe14123fbb69937942825e77d35602d55fa279123808177a34f252aec9dcfa48b93feacbee81ae0f0e7043c2d8a9ace2a4bb61ab253f truffleruby-23.1.0-linux-amd64.tar.gz=1868799d989c51798cf07b5243457af7ae2436dd19805fd634c98b2f1885266b5c3ec81dde668c2e5a290e9028f6f9fd223d153489df6ffcc74d45240aa020ad truffleruby-23.1.0-linux-aarch64.tar.gz=2766621877996ad35fddb94f978feed531307e8abf601dcf863754c96782b8149c3ac512dfe6dd2bdef0fe0e8a968bdd77608c41020434aaef4e7250c09edd74 truffleruby-23.1.0-macos-amd64.tar.gz=06c5a1d6ad644fd81737f0a1fd24c1529f712abe2a4485ad597aca7c35ca2af898121bb5883552cf518e2afdcb4221c8ad013759b46a69e34249e7c5ebe2b170 truffleruby-23.1.0-macos-aarch64.tar.gz=496cacc5cf413a48b60184e097a962ab5d2236c539f07cc0a9a2d9ef57dfc911a26b125cc3ad9408f6170c6f93c7562f35729c8313be0301972be21c10097942 truffleruby-23.1.1-linux-amd64.tar.gz=dbca85e281bf2484371a0bbcc202ca700acc704304d966b9202cf3835e82f6eb502e43522355f4c9e5a743877d93f5609006fbba2c5e6343a89de130e5209f6a truffleruby-23.1.1-linux-aarch64.tar.gz=6a58842d79247d8a64c513d68db9d53ea5640c02f71a1bc45f103baaaca67bb224939ae5f21ef55daa9d9b9697404052d39a3c382768ca366ab7892b8bf1abbe truffleruby-23.1.1-macos-amd64.tar.gz=7cc6bc957b7ffa42e9fbfe2f6e3014bf1e7996f2754e9e74377078c2c7bc7ac8e10598f1e1452839fc5b9583c823a2a735731ca193a6af2814a02566cc4cd9e4 truffleruby-23.1.1-macos-aarch64.tar.gz=a85b8189ef8a280f6a27d4c1c93893f844266dbdc15b8c4988cdf581613a353508fae4872ac9380efcc47f36357e137861521712c00ce8548041762a8987a9b2 truffleruby-23.1.2-linux-amd64.tar.gz=6307fd71fb1431fb12346d1f13dee4b3afe53947e8a9c1f3e3aa0baae5f9fc9e1496ede0a7d86b169d912ffef9625af998b4e698dc57a2a649140150e3fae28a truffleruby-23.1.2-linux-aarch64.tar.gz=0f0c5e4aa4e9fbc9b9f91d2b3d3fbfe26e78c5bc5b369fc78dd54775a7582b8c084a64f02848058bec79387fd80b09a5a5594ecfb268635fe76e1f9d957c2e92 truffleruby-23.1.2-macos-amd64.tar.gz=648401a73b29c28862a1fa077c2e1bf8fff65015c8bc690ff883a00a3dfd99389ffdb71f39ad85a4f16c531470f4cc891ae51ec927a426b0fa05fa85c9c6a2f9 truffleruby-23.1.2-macos-aarch64.tar.gz=4ec88684c09aacfa1d8bfed9a17243579ededacecd869e98e12841710bae29ed6e5f080611e53fc217a853f730bb2a9cb3d47ef15443eb8a1ad76a120118c8a5 truffleruby-24.0.0-linux-amd64.tar.gz=3a59a4dc58ad03549d8e63db1485767757715fc9aec21b2b67b1440b13871a04541abeff9bc8201b3088e1865360b1667459e536d3cfb09687dbffca95deafeb truffleruby-24.0.0-linux-aarch64.tar.gz=50f3993b7362bb6e7da80f7327df3d079bb02f98b67012e2135005d77e61648e4f3268f767d8ca245ec5889ff934fbcccb94fd5ecbd55bb0cd9cca900fe10509 truffleruby-24.0.0-macos-amd64.tar.gz=9ec8bb340b15e29550448e123e3ab0f183edb9bbe7e052743cb2306cbd1956a5789c5a367c80c5e8d913dce2b804448dd6815e4d3421515166daf8db51d37c7d truffleruby-24.0.0-macos-aarch64.tar.gz=499f83bf65dcb6ecc92414a3550673e6a0baaddfe3ab13c0bd7aa1bdde1ae2a61d9d0ca8001c0d12688d9e09f98f9e2946a651220fe7d200bb0ec6f285394701 truffleruby-24.0.1-linux-amd64.tar.gz=62b4e8508eba8cdaac70e99ac9cb0b33a663b4195d79b2dad3d771ef538c6c41d1d91bb7bb07fbbafbcbbcaf17814ffaf6d6bdbafd474ba6a8ecdac30315a8c9 truffleruby-24.0.1-linux-aarch64.tar.gz=817d877848ea4bb55658ce34bbda52926be12426a8a5e1c4588bc0ec1896018b06dce176336b382f80a7c6d073d4331b20694a7797ee8fdf0177e973053bf929 truffleruby-24.0.1-macos-amd64.tar.gz=2ea65bea154aa38cce3f00f24fc9a4aab5e7478fafd070d0cc966878371c070d5a1776b7405e2c9e4cfa14e5c51219ed0fa988294eb4708690983b348886f439 truffleruby-24.0.1-macos-aarch64.tar.gz=bc1923e21768d34779c1bcd7850456a01ddc01acd1ccf20f4fb4a446fb847f8c51b1ff4a7c0cdc317ef8ce057ac24f18f25b778a02a6e2b185e0055d946ecaf2
rvm/rvm
1b5a2e6cdfd991120f732387b016e30a711b47d6
Require openssl@3 for Ruby 3.2 and 3.3 (#5480)
diff --git a/.github/workflows/specs.yml b/.github/workflows/specs.yml index fa1eaa4..3c63e2e 100644 --- a/.github/workflows/specs.yml +++ b/.github/workflows/specs.yml @@ -1,37 +1,44 @@ name: CI on: [push, pull_request] permissions: contents: read # to fetch code (actions/checkout) jobs: tests: strategy: fail-fast: false matrix: + ruby: + - 3.1.6 + - 3.2.4 + - 3.3.3 os: - ubuntu-latest - macos-13 + - macos-14 test: # For some reason, after running these tests, # `source ~/.rvm/scripts/rvm` fails on macOS, so run them last. # See https://github.com/rvm/rvm/pull/5387#issuecomment-2009391015 # These tests also change the default ruby, which is another reason to run them last. - "tests/fast/*" - "tests/long/truffleruby_comment_test.sh" include: - os: ubuntu-latest + ruby: 3.3.3 # works on local, but fails in CI, needs to be investigated test: "tests/long/named_ruby_and_gemsets_comment_test.sh" - os: ubuntu-latest + ruby: 3.3.3 # https://github.com/rvm/rvm/issues/4937 test: "tests/long/ruby_prepare_mount_comment_test.sh" runs-on: ${{ matrix.os }} env: TERM: ansi RVM_SKIP_BREW_UPDATE: true steps: - uses: actions/checkout@v4 - run: ./install - - run: source ~/.rvm/scripts/rvm && rvm use 2.7.7 --install --default + - run: source ~/.rvm/scripts/rvm && rvm use ${{ matrix.ruby }} --install --default - run: source ~/.rvm/scripts/rvm && gem install tf -v '>=0.4.1' - run: source ~/.rvm/scripts/rvm && tf --text ${{ matrix.test }} diff --git a/CHANGELOG.md b/CHANGELOG.md index aef7cea..6203556 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,519 +1,520 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features +* Use OpenSSL 3 for Ruby 3.2 and 3.3 [\#5480](https://github.com/rvm/rvm/pull/5480) * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) * Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) * Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) * Install `libncurses-dev` instead of `libncurses5-dev` on newer Debian and Ubuntu versions [\#5477](https://github.com/rvm/rvm/pull/5477) * Use `zlib-ng-compat` packages for Fedora 40+ [\#5479](https://github.com/rvm/rvm/pull/5479) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) * 3.3.3 [\#5474](https://github.com/rvm/rvm/pull/5474) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) * 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) diff --git a/scripts/functions/requirements/osx_brew b/scripts/functions/requirements/osx_brew index 6ab9408..82ff529 100644 --- a/scripts/functions/requirements/osx_brew +++ b/scripts/functions/requirements/osx_brew @@ -1,557 +1,562 @@ #!/usr/bin/env bash requirements_find_osx_brew() { if __rvm_which brew >/dev/null 2>&1 then return 0 else \typeset __binary for __binary in ~/homebrew/bin/brew ~/.homebrew/bin/brew /usr/local/bin/brew /opt/homebrew/bin/brew do if [[ -f "${__binary}" && -s "${__binary}" && -x "${__binary}" ]] then PATH="$PATH:${__binary%/*}" return 0 fi done return 1 fi } requirements_osx_brew_version_list() { if __rvm_which $1 >/dev/null then $1 --version 2>/dev/null | __rvm_sed -n -e '1{s/^.* //; p;}' fi __rvm_ls -1 $( brew --cellar )/$1/ 2>/dev/null } requirements_osx_brew_lib_installed_prefix_check() { brew_lib_prefix="$( brew --prefix "$1" 2>/dev/null )" && [[ -n "${brew_lib_prefix}" && -d "${brew_lib_prefix}" ]] || return $? } requirements_osx_brew_lib_installed() { \typeset brew_lib_prefix # Test for older versions of Homebrew before adding the `--formula` flag. brew_version=$( brew --version | awk 'NR==1 { print $2 }' ) if __rvm_version_compare $brew_version -ge 2.5.7 then brew_ls_flags="--formula" fi brew list -1 $brew_ls_flags | __rvm_grep "^${1}$" >/dev/null && requirements_osx_brew_lib_installed_prefix_check "$1" || return $? } requirements_osx_brew_lib_available() { brew search "/^${1}$/" | __rvm_grep "^${1}$" >/dev/null || return $? } requirements_osx_brew_libs_error() { rvm_warn "There were package ${1} errors, make sure to read the log. Try \`brew tap --repair\` and make sure \`brew doctor\` looks reasonable. Check Homebrew requirements https://docs.brew.sh/Installation" } requirements_osx_brew_libs_install() { brew install "$@" --force || { \typeset ret=$? requirements_osx_brew_libs_error "installation" return $ret } } requirements_osx_brew_libs_remove() { brew remove "$@" || { \typeset ret=$? requirements_osx_brew_libs_error "removal" return $ret } } requirements_osx_brew_check_custom() { brew tap | __rvm_grep "$1" >/dev/null || __rvm_add_once packages_custom "$1" } requirements_osx_brew_install_custom() { \typeset __tap for __tap do brew tap "${__tap}" || return $? done } requirements_osx_brew_libs_outdated_filter() { \typeset IFS IFS="|" brew outdated --quiet | __rvm_grep -E "$*" } requirements_osx_brew_libs_try_upgrade() { (( rvm_autolibs_flag_number > 0 )) || return 0 \typeset -a outdated_libs __rvm_read_lines outdated_libs <( requirements_osx_brew_libs_outdated_filter "$@" ) if (( ${#outdated_libs[@]} )) then rvm_requiremnts_fail_or_run_action 2 \ "Homebrew libs '${outdated_libs[*]}' require update - skipping." \ brew upgrade "${outdated_libs[@]}" || return $? fi } requirements_osx_brew_libs_set_path() { \typeset brew_lib brew_lib_prefix for brew_lib do if requirements_osx_brew_lib_installed_prefix_check "${brew_lib}" then __rvm_add_to_path prepend "${brew_lib_prefix}/bin" fi done rvm_debug "PATH=$PATH" } requirements_osx_brew_libs_configure() { \typeset package brew_lib brew_lib_prefix package="$1" shift for brew_lib do if requirements_osx_brew_lib_installed_prefix_check "${brew_lib}" then __rvm_update_configure_opt_dir "${package}" "${brew_lib_prefix}" fi done } requirements_osx_brew_after() { (( ${#packages_installed[@]} == 0 )) || requirements_osx_brew_libs_try_upgrade "${packages_installed[@]}" || return $? requirements_osx_brew_libs_set_path "${brew_libs[@]}" || return $? requirements_osx_brew_libs_configure "$1" "${brew_libs_conf[@]}" || return $? case "$1" in (jruby*) true ;; (*) requirements_osx_brew_after_update_certs_openssl "$1" ;; esac unset brew_libs brew_libs_conf brew_openssl_package } requirements_osx_brew_after_update_certs_openssl() { \typeset brew_lib_prefix if requirements_osx_brew_lib_installed_prefix_check "$brew_openssl_package" && [[ -x "${brew_lib_prefix}/bin/openssl" ]] then requirements_osx_update_openssl_cert "${brew_lib_prefix}/bin/openssl" || return $? else rvm_requiremnts_fail_always 2 \ "Somehow it happened there is no executable 'openssl', run 'brew doctor' and make sure latest '$brew_openssl_package' is installed properly." || return 12 # passing by 127 could be read as missing rvm. fi } requirements_osx_brew_libs_default_check_gcc() { if requirements_detect_installed gcc gcc@8 gcc@7 gcc@6 gcc@5 [email protected] then case "${packages_installed[*]}" in (*gcc*) export CC="$(brew --prefix gcc )/bin/gcc-8" ;; (*gcc@8*) export CC="$(brew --prefix gcc@8 )/bin/gcc-8" ;; (*gcc@7*) export CC="$(brew --prefix gcc@7 )/bin/gcc-7" ;; (*gcc@6*) export CC="$(brew --prefix gcc@6 )/bin/gcc-6" ;; (*gcc@5*) export CC="$(brew --prefix gcc@5 )/bin/gcc-5" ;; (*[email protected]*) export CC="$(brew --prefix [email protected] )/bin/gcc-4.9" ;; (*) return 1 ;; esac else return $? fi } requirements_osx_brew_libs_default_add_gcc_v_auto() { # Install gcc from brew only for macOS earlier then Mojave (10.14) if __rvm_version_compare "${_system_version}" -lt 10.14 then if __rvm_version_compare "${_system_version}" -ge 10.10 then requirements_osx_brew_libs_default_add_gcc_v 6.0 else requirements_osx_brew_libs_default_add_gcc_v 4.9 fi fi } requirements_osx_brew_libs_default_add_gcc_v() { case "$1" in (4.9) requirements_osx_brew_libs_default_add_gcc "$2" gcc-4.9 [email protected] ;; (5.0) requirements_osx_brew_libs_default_add_gcc "$2" gcc-5.0 gcc@5 ;; (6.0) requirements_osx_brew_libs_default_add_gcc "$2" gcc-6.0 gcc@6 ;; (7.0) requirements_osx_brew_libs_default_add_gcc "$2" gcc-7.0 gcc@7 ;; (8.0) requirements_osx_brew_libs_default_add_gcc "$2" gcc-8.0 gcc@8 ;; (*) rvm_error "Do not know how to check/install gcc '$1'." return 1 ;; esac } requirements_osx_brew_libs_default_add_gcc() { if [[ -n "$1" ]] && __rvm_which "$1" >/dev/null then true else export CC="$2" if __rvm_which "$2" >/dev/null then true else if [[ -z "${3:-}" ]] then false # no package known and binary not found else if [[ -z "$(brew --prefix $3 2>/dev/null)" ]] then rvm_error "We don't know how to install <code>$3</code>" rvm_log "Try to run <code>brew install $3</code> and re-run the same rvm command afterwards." false else export CC="$(brew --prefix $3 2>/dev/null || brew --prefix)/bin/$2" brew_libs+=( "$3" ) fi fi fi fi } requirements_osx_brew_define_gcc() { # Old gcc46 but it will most likely not work on OSX 10.10+ if __rvm_version_compare "${_system_version}" -ge 10.10 then undesired_check gcc46 fi \typeset selected_compiler="$( __rvm_selected_compiler )" case "${selected_compiler:-}" in ("") case "$1" in (rbx-2*|rubinius-2*) brew_libs_conf+=( [email protected] ) ;; (rbx-3*|rubinius-3*|rbx*head|rubinius*head) requirements_check git openssl readline libyaml gdbm llvm@5 rvm_configure_flags+=( --llvm-config="$(brew --prefix llvm@5)/bin/llvm-config" ) ;; (truffleruby*) requirements_check libyaml ;; (*) # Install gcc from brew only for macOS earlier then Mojave (10.14) if __rvm_version_compare "${_system_version}" -lt 10.14 then __ruby_clang_ok "$1" || requirements_osx_brew_libs_default_check_gcc || requirements_osx_brew_libs_default_add_gcc_v_auto || return $? fi ;; esac ;; (*gcc-4.9|*gcc-5|*gcc-6|*gcc-7|*gcc-8|*gcc) requirements_osx_brew_libs_default_add_gcc_v ${selected_compiler##*-} "${selected_compiler}" || return $? # version # full_path ;; (*) rvm_warn "We don't know how to ensure that selected compiler '${selected_compiler}' exists." ;; esac } requirements_osx_brew_define_openssl() { # OpenSSL version depends on the version of Ruby being installed undesired_check openssl098 case "$1" in (ruby-2.3*|ruby-2.2*|ruby-2.1*|ruby-2.0*|ruby-1.9*|ruby-1.8*) brew_openssl_package="openssl" ;; + (ruby-2*|ruby-3.0*) + brew_openssl_package="[email protected]" + # Needed for older openssl: https://bugs.ruby-lang.org/issues/18763 + export PKG_CONFIG_PATH="$(brew --prefix [email protected])/lib/pkgconfig:$PKG_CONFIG_PATH" + ;; + (ree-1.8*) brew_openssl_package="openssl" ;; (rbx-1*|rbx-2*) brew_openssl_package="openssl" ;; (truffleruby*) brew_openssl_package="openssl" ;; (*) - brew_openssl_package="[email protected]" - # Needed for older openssl: https://bugs.ruby-lang.org/issues/18763 - export PKG_CONFIG_PATH="$(brew --prefix [email protected])/lib/pkgconfig:$PKG_CONFIG_PATH" + brew_openssl_package="openssl@3" + export PKG_CONFIG_PATH="$(brew --prefix openssl@3)/lib/pkgconfig:$PKG_CONFIG_PATH" ;; esac brew_libs_conf+=( "$brew_openssl_package" ) } requirements_osx_brew_libs_default() { brew_libs=( autoconf automake libtool pkg-config coreutils ) brew_libs_conf=( libyaml libksba readline zlib ) requirements_osx_brew_define_gcc "$1" requirements_osx_brew_define_openssl "$1" requirements_check "${brew_libs[@]}" "${brew_libs_conf[@]}" || return $? } requirements_osx_brew_define() { case "$1" in (rvm) true ;; (jruby*) requirements_check make if is_head_or_disable_binary "$1" then __rvm_which git >/dev/null || requirements_check git case $( jruby_installation_method "$1" ) in mvn) requirements_check_custom_after mvn=maven ;; esac fi requiremnts_osx_java_fail || return $? ;; (ir*) __rvm_which mono >/dev/null 2>&1 || return $? ;; (opal) requirements_check node ;; (truffleruby*) requirements_osx_brew_libs_default "$1" ;; (ruby*head) __rvm_which git >/dev/null || requirements_check git requirements_osx_brew_libs_default "$1" requirements_version_minimal autoconf 2.67 ;; (*-head) __rvm_which git >/dev/null || requirements_check git requirements_osx_brew_libs_default "$1" ;; (*) requirements_osx_brew_libs_default "$1" ;; esac } __CLT_version_at_least() { \typeset __version="$( pkgutil --pkg-info com.apple.pkg.DeveloperToolsCLI 2>/dev/null | __rvm_awk '$1~/version:/{print $2}' )" [[ -n "${__version}" ]] || __version="$( pkgutil --pkg-info com.apple.pkg.CLTools_Executables 2>/dev/null | __rvm_awk '$1~/version:/{print $2}' )" [[ -n "${__version}" ]] ||return $? __rvm_version_compare "${__version}" -ge "$1" || return $? } requirements_osx_brew_update_system() { if __rvm_version_compare "${_system_version}" -ge 10.7 then __rvm_detect_xcode_version_at_least 4.6.2 || __CLT_version_at_least 4.6.0 || { \typeset ret=$? rvm_error " Xcode version older than 4.6.2 installed, download and install newer version from: http://connect.apple.com After installation open Xcode, go to Downloads and install Command Line Tools. " return $ret } fi [ -n "$RVM_SKIP_BREW_UPDATE" ] || brew update || { \typeset ret=$? rvm_error "Failed to update Homebrew, follow instructions at https://docs.brew.sh/Common-Issues and make sure \`brew update\` works before continuing." return $ret } } requirements_osx_brew_install_brew_setup() { if __rvm_version_compare "${_system_version}" -ge 10.5 then homebrew_repo="Homebrew/brew" homebrew_installer="https://raw.githubusercontent.com/Homebrew/install/master/install" homebrew_name="Homebrew" else homebrew_repo="mistydemeo/tigerbrew" homebrew_installer="https://raw.githubusercontent.com/mistydemeo/tigerbrew/go/install" homebrew_name="Tigerbrew" fi if (( UID == 0 )) && [[ -z "${SUDO_USER:-}" ]] then rvm_error "Requested installation of ${homebrew_name} but the process is running as 'root', make sure to run with 'sudo' from normal user and try again." return 1 fi homebrew_home_default="/usr/local" printf "%b" "About to install ${homebrew_name} in the default location \`$homebrew_home_default\`.\n It is possible to select a custom location, however it is not recommended and some things might not work. You should do it only if you do not have write rights to \`$homebrew_home_default\`. Press ENTER to install ${homebrew_name} in the default location \`$homebrew_home_default\` or type a custom path (needs to be writable for the current user)\n: " read homebrew_home || return $? rvm_debug "homebrew_home=${homebrew_home:=$homebrew_home_default}" } requirements_osx_brew_install_brew_install() { if [[ "${homebrew_home}" == "${homebrew_home_default}" ]] then rvm_debug "Default homebrew installation from: $homebrew_installer" if [[ -n "${SUDO_USER:-}" ]] then su - ${SUDO_USER} -c "ruby -e \"$(curl -fsSL $homebrew_installer)\"" || return $? else ruby -e "$(curl -fsSL $homebrew_installer)" || return $? fi else rvm_debug "Simplified homebrew installation from: https://github.com/${homebrew_repo}/tarball/master" mkdir -p "${homebrew_home}" || return $? __rvm_curl https://github.com/${homebrew_repo}/tarball/master | tar xz --strip 1 -C "${homebrew_home}" __rvm_check_pipestatus ${PIPESTATUS[@]} ${pipestatus[@]} || return $? chmod +x "${homebrew_home}/bin/brew" # just in case if [[ -n "${SUDO_USER:-}" ]] then chown -R ${SUDO_USER} "${homebrew_home}" fi fi PATH="$PATH:${homebrew_home}/bin" } requirements_osx_brew_install_brew() { \typeset homebrew_home_default homebrew_home homebrew_repo homebrew_installer homebrew_name requirements_osx_brew_install_brew_setup || return $? requirements_osx_brew_install_brew_install || return $? } requirements_osx_brew_ensure_brew_available() { __rvm_which brew >/dev/null || { rvm_requiremnts_fail_or_run_action 2 \ "Requested installation with Homebrew libs, but Homebrew is not available." \ requirements_osx_brew_install_brew || return $? } __rvm_which brew >/dev/null || { \typeset __result=$? rvm_error "\ Something went wrong during Homebrew installation, can not find 'brew' command, please report a bug: https://github.com/rvm/rvm/issues" return $__result } } requirements_osx_brew_ensure_brew_can_install() { # only check for 3+ (packages install, enabled) (( rvm_autolibs_flag_number > 2 )) || return 0 \typeset __celar_path __celar_path="$(brew --cellar)" if [[ ! -w "${__celar_path%/*}/bin" ]] then rvm_error "ERROR: '${__celar_path%/*}/bin' is not writable - it is required for Homebrew, try 'brew doctor' to fix it!" return 1 elif [[ ! -w "${__celar_path}" && -e "${__celar_path}" ]] then rvm_error "ERROR: '${__celar_path}' is not writable - it is required for Homebrew, try 'brew doctor' to fix it!" return 1 else rvm_debug "brew seems to be writable" fi } requirements_osx_brew_before() { requirements_osx_brew_ensure_brew_available || return $? requirements_osx_brew_ensure_brew_can_install || return $? }
rvm/rvm
3cf48a446485001ee771e0d7598297e2e1ffecf3
Fix zlib packages for Fedora 40+ (#5479)
diff --git a/CHANGELOG.md b/CHANGELOG.md index 82198e4..aef7cea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,551 +1,552 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) * Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) * Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) * Install `libncurses-dev` instead of `libncurses5-dev` on newer Debian and Ubuntu versions [\#5477](https://github.com/rvm/rvm/pull/5477) +* Use `zlib-ng-compat` packages for Fedora 40+ [\#5479](https://github.com/rvm/rvm/pull/5479) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) * 3.3.3 [\#5474](https://github.com/rvm/rvm/pull/5474) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) * 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) #### Upgraded Ruby interpreters: * Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159), 2.5.0-preview1 [\#4204](https://github.com/rvm/rvm/pull/4204), 2.2.9, 2.3.6, 2.4.3 and 2.5.0-rc1 [\#4261](https://github.com/rvm/rvm/pull/4261), 2.5.0 [\#4265](https://github.com/rvm/rvm/pull/4265), 2.6.0-preview1 [\#4317](https://github.com/rvm/rvm/pull/4317), 2.2.10, 2.3.7, 2.4.4, 2.5.1 [\#4340](https://github.com/rvm/rvm/pull/4340) and 2.6.0-preview2[\#4395](https://github.com/rvm/rvm/pull/4395) * Add support for Rubinius 3.85-3.100 * Add support for JRuby 9.1.14.0 [\#4224](https://github.com/rvm/rvm/pull/4224), 9.1.15.0 [\#4258](https://github.com/rvm/rvm/pull/4258), 9.1.16.0 [\#4316](https://github.com/rvm/rvm/pull/4316), 9.1.17.0 [\#4366](https://github.com/rvm/rvm/pull/4366), 9.2.0.0 [\#4390](https://github.com/rvm/rvm/pull/4390) * Add support for mruby 1.4.0 [\#4286](https://github.com/rvm/rvm/pull/4286) * Add support for MagLev 1.1* and 1.2Alpha-1.2Alpha4 [\#4289](https://github.com/rvm/rvm/pull/4289) * Add support for RubyGems 2.6.14 [\#4205](https://github.com/rvm/rvm/pull/4205), 2.7.0-2.7.4 [\#4276](https://github.com/rvm/rvm/issues/4276) and 2.7.5-6 #### Binaries: * Ubuntu 16.04 x64 binaries for Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4362](https://github.com/rvm/rvm/issues/4362), 2.2.9, 2.3.6 and 2.4.3 [\#4259](https://github.com/rvm/rvm/issues/4259), 2.2.8, 2.3.5 and 2.4.2 [\#4161](https://github.com/rvm/rvm/issues/4161), 2.5.0 [\#4272](https://github.com/rvm/rvm/pull/4272) * Ubuntu 17.04 for Ruby 2.1.\*, 2.2.\* [\#4233](https://github.com/rvm/rvm/pull/4233) ## [1.29.3](https://github.com/rvm/rvm/releases/tag/1.29.3) 10 September 2017 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.2...1.29.3) #### New features: * Add RVM commands missing in bash shell completion [\#4078](https://github.com/rvm/rvm/pull/4078) * Railsexpress patches for 2.3.4, 2.3-head [\#4084](https://github.com/rvm/rvm/pull/4084), 2.2.5 and 2.2.6 [\#4153](https://github.com/rvm/rvm/pull/4153) * Update `gem-wrappers` to 1.3.0: Show warnings when the target binary is missing or is not executable [gem-wrappers \#9](https://github.com/rvm/gem-wrappers/issues/9) * Detect Zorin OS as Ubuntu [\#4140](https://github.com/rvm/rvm/issues/4140) diff --git a/scripts/functions/requirements/fedora b/scripts/functions/requirements/fedora index c1ac6bd..661283c 100644 --- a/scripts/functions/requirements/fedora +++ b/scripts/functions/requirements/fedora @@ -1,53 +1,64 @@ #!/usr/bin/env bash requirements_fedora_define_openssl() { case "$1" in (ruby-2.3*|ruby-2.2*|ruby-2.1*|ruby-2.0*|ruby-1.9*|ruby-1.8*) if __rvm_version_compare "${_system_version}" -ge 26 then undesired_check openssl-devel requirements_check compat-openssl10-devel else undesired_check compat-openssl10-devel requirements_check openssl-devel fi ;; (ruby-2.7*|ruby-2.6*|ruby-2.5*|ruby-2.4*) if __rvm_version_compare "${_system_version}" -ge 36 then undesired_check openssl-devel requirements_check openssl1.1-devel else undesired_check compat-openssl10-devel requirements_check openssl-devel fi ;; (*) undesired_check compat-openssl10-devel requirements_check openssl-devel ;; esac } requirements_fedora_define_glibc() { if __rvm_version_compare "${_system_version}" -lt 33 then requirements_check glibc-headers glibc-devel else requirements_check glibc-devel fi } +requirements_fedora_define_zlib() +{ + if + __rvm_version_compare "${_system_version}" -ge 40 + then + requirements_check zlib-ng-compat zlib-ng-compat-devel + else + requirements_check zlib zlib-devel + fi +} + if __rvm_which dnf >/dev/null 2>&1 # should be true for Fedora 22+ then source "$rvm_scripts_path/functions/requirements/fedora_dnf" else source "$rvm_scripts_path/functions/requirements/fedora_yum" fi diff --git a/scripts/functions/requirements/fedora_dnf b/scripts/functions/requirements/fedora_dnf index 3a36903..4b1baed 100644 --- a/scripts/functions/requirements/fedora_dnf +++ b/scripts/functions/requirements/fedora_dnf @@ -1,93 +1,95 @@ #!/usr/bin/env bash requirements_fedora_lib_installed() { dnf list installed "$1" >/dev/null 2>&1 || return $? } requirements_fedora_lib_available() { dnf info "$1" >/dev/null 2>&1 || return $? } requirements_fedora_libs_install() { __rvm_try_sudo dnf install -y "$@" || return $? } requirements_fedora_libs_remove() { __rvm_try_sudo dnf remove -y "$@" || return $? } requirements_fedora_check_binary() { { __rvm_which update-alternatives >/dev/null && update-alternatives --display "$1" >/dev/null 2>&1 } || __rvm_which "$1" >/dev/null || return $? } requirements_fedora_define() { case "$1" in (rvm) requirements_check bash curl patch ;; (jruby*) requirements_check make if is_head_or_disable_binary "$1" then requirements_check git requirements_fedora_check_binary javac || requirements_check_fallback java-1.8.0-openjdk-devel java-devel || requirements_check_fallback java-1.7.0-openjdk-devel java-devel case $( jruby_installation_method "$1" ) in mvn) requirements_check_custom_after mvn=maven ;; esac else requirements_fedora_check_binary java || requirements_check_fallback java-1.8.0-openjdk java || requirements_check_fallback java-1.7.0-openjdk java fi ;; (rbx*|rubinius*) requirements_check automake bison clang-3.6 flex gdbm-devel git libyaml-devel llvm-devel llvm-static \ - make ncurses-devel openssl-devel readline-devel ruby-devel rubygems zlib-devel + make ncurses-devel openssl-devel readline-devel ruby-devel rubygems + requirements_fedora_define_zlib $1 ;; (truffleruby*) requirements_check zlib-devel make gcc libxml2 libyaml-devel requirements_fedora_define_openssl "$1" ;; (ir*) true # not that easy ;; (opal) true # not that easy ;; (*-head) requirements_check git requirements_fedora_define "${1%-head}" ;; (*) requirements_check autoconf automake bison bzip2 gcc-c++ libffi-devel libtool \ - libyaml-devel make patch readline readline-devel sqlite-devel zlib zlib-devel + libyaml-devel make patch readline readline-devel sqlite-devel requirements_fedora_define_openssl $1 requirements_fedora_define_glibc $1 + requirements_fedora_define_zlib $1 ;; esac }
rvm/rvm
d63601e3b3ad3ac2ce54cc84d2992c5b95ffadae
Add support for unversioned libncurses-dev packages on newer Debian-like systems (#5475) (#5477)
diff --git a/CHANGELOG.md b/CHANGELOG.md index b8529c2..82198e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,550 +1,551 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) * Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) * Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) +* Install `libncurses-dev` instead of `libncurses5-dev` on newer Debian and Ubuntu versions [\#5477](https://github.com/rvm/rvm/pull/5477) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) * 3.3.3 [\#5474](https://github.com/rvm/rvm/pull/5474) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) * 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) #### Upgraded Ruby interpreters: * Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159), 2.5.0-preview1 [\#4204](https://github.com/rvm/rvm/pull/4204), 2.2.9, 2.3.6, 2.4.3 and 2.5.0-rc1 [\#4261](https://github.com/rvm/rvm/pull/4261), 2.5.0 [\#4265](https://github.com/rvm/rvm/pull/4265), 2.6.0-preview1 [\#4317](https://github.com/rvm/rvm/pull/4317), 2.2.10, 2.3.7, 2.4.4, 2.5.1 [\#4340](https://github.com/rvm/rvm/pull/4340) and 2.6.0-preview2[\#4395](https://github.com/rvm/rvm/pull/4395) * Add support for Rubinius 3.85-3.100 * Add support for JRuby 9.1.14.0 [\#4224](https://github.com/rvm/rvm/pull/4224), 9.1.15.0 [\#4258](https://github.com/rvm/rvm/pull/4258), 9.1.16.0 [\#4316](https://github.com/rvm/rvm/pull/4316), 9.1.17.0 [\#4366](https://github.com/rvm/rvm/pull/4366), 9.2.0.0 [\#4390](https://github.com/rvm/rvm/pull/4390) * Add support for mruby 1.4.0 [\#4286](https://github.com/rvm/rvm/pull/4286) * Add support for MagLev 1.1* and 1.2Alpha-1.2Alpha4 [\#4289](https://github.com/rvm/rvm/pull/4289) * Add support for RubyGems 2.6.14 [\#4205](https://github.com/rvm/rvm/pull/4205), 2.7.0-2.7.4 [\#4276](https://github.com/rvm/rvm/issues/4276) and 2.7.5-6 #### Binaries: * Ubuntu 16.04 x64 binaries for Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4362](https://github.com/rvm/rvm/issues/4362), 2.2.9, 2.3.6 and 2.4.3 [\#4259](https://github.com/rvm/rvm/issues/4259), 2.2.8, 2.3.5 and 2.4.2 [\#4161](https://github.com/rvm/rvm/issues/4161), 2.5.0 [\#4272](https://github.com/rvm/rvm/pull/4272) * Ubuntu 17.04 for Ruby 2.1.\*, 2.2.\* [\#4233](https://github.com/rvm/rvm/pull/4233) ## [1.29.3](https://github.com/rvm/rvm/releases/tag/1.29.3) 10 September 2017 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.2...1.29.3) #### New features: * Add RVM commands missing in bash shell completion [\#4078](https://github.com/rvm/rvm/pull/4078) * Railsexpress patches for 2.3.4, 2.3-head [\#4084](https://github.com/rvm/rvm/pull/4084), 2.2.5 and 2.2.6 [\#4153](https://github.com/rvm/rvm/pull/4153) * Update `gem-wrappers` to 1.3.0: Show warnings when the target binary is missing or is not executable [gem-wrappers \#9](https://github.com/rvm/gem-wrappers/issues/9) * Detect Zorin OS as Ubuntu [\#4140](https://github.com/rvm/rvm/issues/4140) diff --git a/scripts/functions/requirements/debian b/scripts/functions/requirements/debian index 3e98fdb..baae35e 100644 --- a/scripts/functions/requirements/debian +++ b/scripts/functions/requirements/debian @@ -1,196 +1,208 @@ #!/usr/bin/env bash # AMD64, i386, ARM - this is different from _system_arch as it's not translated. requirements_debian_arch() { __architecture="$(dpkg --print-architecture)" } # Queries the dpkg system for packages that are installed only asking about # the package name and it's arch. This package will fall back to :all for # cases where we cannot get an arch specific package (such is the case # for a few packages.) requirements_debian_lib_installed() { dpkg-query -s "${1}:${__architecture}" >/dev/null 2>&1 || dpkg-query -s "${1}:all" >/dev/null 2>&1 || dpkg-query -s "$1" 2>/dev/null | __rvm_grep "Architecture: ${__architecture}" >/dev/null || dpkg-query -s "$1" 2>/dev/null | __rvm_grep "Architecture: all" >/dev/null || return $? } # Informs us if a package is even available on the distro we are working # with, this is more of a transitional method kind of like Ubuntu # has a transitional git-core package right now. This will allow us # to continue to support older versions of Ubuntu while enforcing newer # packages on newer Ubuntu. requirements_debian_lib_available() { apt-cache show "$1" >/dev/null 2>&1 || return $? } requirements_debian_libs_install() { __rvm_try_sudo apt-get --no-install-recommends --yes install "$@" || return $? } requirements_debian_libs_remove() { __rvm_try_sudo apt-get --yes remove "$@" || return $? } requirements_debian_update_system() { __rvm_try_sudo apt-get --quiet --yes update || { \typeset __ret=$? case ${__ret} in (100) rvm_error "There has been an error while updating your system using \`apt-get\`. It seems that there are some 404 Not Found errors for repositories listed in: /etc/apt/sources.list /etc/apt/sources.list.d/*.list Make sure that all repositories are available from your system and verify your setup by running manually: sudo apt-get update Make sure that it works correctly before proceeding with RVM. If you are working from the GUI instead of the terminal, you might want to verify and fix broken repositories using \"Software & Updates\" application. " ;; esac return ${__ret} } } requirements_debian_define_libgmp() { if [[ "${_system_version}" == 6* ]] then requirements_check libgmp3-dev else requirements_check libgmp-dev fi } +requirements_debian_define_libncurses() +{ + if + __rvm_version_compare ${_system_version} -ge 13 + then + requirements_check libncurses-dev + else + requirements_check libncurses5-dev + fi +} + requirements_debian_define_libreadline() { if __rvm_version_compare ${_system_version} -ge 9 then requirements_check libreadline-dev else requirements_check libreadline6-dev fi } requirements_debian_define_libssl() { # Legacy libssl-dev required by older version of ruby has been renamed to libssl1.0-dev # starting from Debian 9 (Stretch) case "$1" in (ruby-2.3*|ruby-2.2*|ruby-2.1*|ruby-2.0*|ruby-1.9*|ruby-1.8*) if __rvm_version_compare ${_system_version} -ge 9 then undesired_check libssl-dev requirements_check libssl1.0-dev else requirements_check libssl-dev fi ;; (*) requirements_check libssl-dev ;; esac } requirements_debian_define_clang_llvm() { requirements_check clang-3.6 llvm-3.6 llvm-3.6-dev } requirements_debian_define_base() { requirements_check "$@" \ - autoconf automake bison ca-certificates curl libc6-dev libffi-dev libgdbm-dev libncurses5-dev \ + autoconf automake bison ca-certificates curl libc6-dev libffi-dev libgdbm-dev \ libsqlite3-dev libtool libyaml-dev make openssl patch pkg-config sqlite3 zlib1g zlib1g-dev requirements_${_system_name_lowercase}_define_libgmp + requirements_${_system_name_lowercase}_define_libncurses requirements_${_system_name_lowercase}_define_libreadline } requirements_debian_define_java() { update-alternatives --list ${1:-java} >/dev/null 2>&1 || requirements_check_fallback \ openjdk-8-jre-headless openjdk-8-jdk oracle-j2sdk1.8 \ openjdk-7-jre-headless openjdk-7-jdk oracle-j2sdk1.7 \ openjdk-6-jre-headless opendjk-6-jdk oracle-j2sdk1.6 } requirements_debian_define() { \typeset __architecture requirements_debian_arch if [[ "$1" == *head ]] then requirements_check_fallback git git-core fi case "$1" in (rvm) requirements_check bash curl patch bzip2 ca-certificates gawk ;; (jruby*) requirements_check g++ make if is_head_or_disable_binary "$1" then requirements_debian_define_java javac requirements_check_fallback git git-core case $( jruby_installation_method "$1" ) in ant) __rvm_which ant >/dev/null || requirements_check ant ;; mvn) __rvm_which mvn >/dev/null || requirements_check_fallback maven maven2 ;; esac else requirements_debian_define_java java fi ;; (ir*) requirements_check curl mono-2.0-devel ;; (opal) requirements_check nodejs npm ;; (rbx*|rubinius*) requirements_debian_define_base flex ruby-dev libreadline-dev libedit-dev requirements_${_system_name_lowercase}_define_libssl "$1" requirements_${_system_name_lowercase}_define_clang_llvm "$1" ;; (truffleruby*) requirements_debian_define_base requirements_${_system_name_lowercase}_define_libssl "$1" requirements_check make gcc libxml2 libyaml-dev ;; (*) requirements_debian_define_base g++ gcc requirements_${_system_name_lowercase}_define_libssl "$1" ;; esac } diff --git a/scripts/functions/requirements/deepin b/scripts/functions/requirements/deepin index 4ceb7b4..400c566 100644 --- a/scripts/functions/requirements/deepin +++ b/scripts/functions/requirements/deepin @@ -1,41 +1,46 @@ #!/usr/bin/env bash source "$rvm_scripts_path/functions/requirements/debian" requirements_deepin_define_libgmp() { requirements_check libgmp-dev } +requirements_debian_define_libncurses() +{ + requirements_check libncurses5-dev +} + requirements_deepin_define_libreadline() { requirements_check libreadline-dev } requirements_deepin_define_libssl() { case "$1" in (ruby-2.3*|ruby-2.2*|ruby-2.1*|ruby-2.0*|ruby-1.9*) # legacy libssl-dev required by older version of ruby has been renamed to libssl1.0-dev undesired_check libssl-dev requirements_check libssl1.0-dev ;; (*) undesired_check libssl1.0-dev requirements_check libssl-dev ;; esac } requirements_deepin_define_clang_llvm() { requirements_check clang-3.6 llvm-3.6 llvm-3.6-dev rvm_configure_flags+=( --cc=clang-3.6 --cxx=clang++-3.6 --llvm-config=llvm-config-3.6) } requirements_deepin_define() { __lib_type=debian requirements_debian_define "$@" } diff --git a/scripts/functions/requirements/devuan b/scripts/functions/requirements/devuan index f5782ce..1309ae4 100644 --- a/scripts/functions/requirements/devuan +++ b/scripts/functions/requirements/devuan @@ -1,30 +1,35 @@ #!/usr/bin/env bash source "$rvm_scripts_path/functions/requirements/debian" requirements_devuan_define_libgmp() { requirements_check libgmp-dev } +requirements_debian_define_libncurses() +{ + requirements_check libncurses5-dev +} + requirements_devuan_define_libreadline() { requirements_check libreadline-dev } requirements_devuan_define_libssl() { requirements_check libssl-dev } requirements_devuan_define_clang_llvm() { requirements_check clang-3.6 llvm-3.6 llvm-3.6-dev rvm_configure_flags+=( --cc=clang-3.6 --cxx=clang++-3.6 --llvm-config=llvm-config-3.6) } requirements_devuan_define() { __lib_type=debian requirements_debian_define "$@" } diff --git a/scripts/functions/requirements/elementary b/scripts/functions/requirements/elementary index 145c4a7..4554230 100644 --- a/scripts/functions/requirements/elementary +++ b/scripts/functions/requirements/elementary @@ -1,46 +1,51 @@ #!/usr/bin/env bash source "$rvm_scripts_path/functions/requirements/debian" requirements_elementary_define_libgmp() { requirements_check libgmp-dev } +requirements_debian_define_libncurses() +{ + requirements_check libncurses5-dev +} + requirements_elementary_define_libreadline() { requirements_check libreadline6-dev } requirements_elementary_define_libssl() { case "$1" in (ruby-2.3*|ruby-2.2*|ruby-2.1*|ruby-2.0*|ruby-1.9*) if __rvm_version_compare ${_system_version} -ge 5 then undesired_check libssl-dev requirements_check libssl1.0-dev else requirements_check libssl-dev fi ;; (*) requirements_check libssl-dev ;; esac } requirements_elementary_define_clang_llvm() { requirements_check clang-3.6 llvm-3.6 llvm-3.6-dev rvm_configure_flags+=( --cc=clang-3.6 --cxx=clang++-3.6 --llvm-config=llvm-config-3.6) } requirements_elementary_define() { __lib_type=debian requirements_debian_define "$@" } diff --git a/scripts/functions/requirements/kali b/scripts/functions/requirements/kali index 61769b0..7a835c6 100644 --- a/scripts/functions/requirements/kali +++ b/scripts/functions/requirements/kali @@ -1,40 +1,45 @@ #!/usr/bin/env bash source "$rvm_scripts_path/functions/requirements/debian" requirements_kali_define_libgmp() { requirements_check libgmp-dev } +requirements_debian_define_libncurses() +{ + requirements_check libncurses5-dev +} + requirements_kali_define_libreadline() { requirements_check libreadline6-dev } requirements_kali_define_libssl() { case "$1" in (ruby-2.3*|ruby-2.2*|ruby-2.1*|ruby-2.0*|ruby-1.9*) undesired_check libssl-dev libssl1.1 requirements_check libssl1.0-dev libssl1.0.2 ;; (*) undesired_check libssl1.0-dev libssl1.0.2 requirements_check libssl-dev libssl1.1 ;; esac } requirements_kali_define_clang_llvm() { requirements_check clang-3.6 llvm-3.6 llvm-3.6-dev rvm_configure_flags+=( --cc=clang-3.6 --cxx=clang++-3.6 --llvm-config=llvm-config-3.6) } requirements_kali_define() { __lib_type=debian requirements_debian_define "$@" } diff --git a/scripts/functions/requirements/mint b/scripts/functions/requirements/mint index a148f61..11c49f8 100644 --- a/scripts/functions/requirements/mint +++ b/scripts/functions/requirements/mint @@ -1,57 +1,62 @@ #!/usr/bin/env bash source "$rvm_scripts_path/functions/requirements/debian" requirements_mint_define_libgmp() { requirements_check libgmp-dev } +requirements_debian_define_libncurses() +{ + requirements_check libncurses5-dev +} + requirements_mint_define_libreadline() { requirements_check libreadline-dev } requirements_mint_define_libssl() { # Legacy libssl-dev required by older version of ruby has been renamed to libssl1.0-dev # starting from Mint 19 (Tara) case "$1" in (ruby-2.3*|ruby-2.2*|ruby-2.1*|ruby-2.0*|ruby-1.9*) if __rvm_version_compare ${_system_version} -ge 19 then undesired_check libssl-dev requirements_check libssl1.0-dev else requirements_check libssl-dev fi ;; (*) requirements_check libssl-dev ;; esac requirements_check libssl-dev } requirements_mint_define_clang_llvm() { if __rvm_version_compare ${_system_version} -ge 19.1 then requirements_check clang-3.9 llvm-3.9 llvm-3.9-dev rvm_configure_flags+=( --cc=clang-3.9 --cxx=clang++-3.9 --llvm-config=llvm-config-3.9) else requirements_check clang-3.6 llvm-3.6 llvm-3.6-dev rvm_configure_flags+=( --cc=clang-3.6 --cxx=clang++-3.6 --llvm-config=llvm-config-3.6) fi } requirements_mint_define() { __lib_type=debian requirements_debian_define "$@" } diff --git a/scripts/functions/requirements/trisquel b/scripts/functions/requirements/trisquel index 76a8ca9..98e647a 100644 --- a/scripts/functions/requirements/trisquel +++ b/scripts/functions/requirements/trisquel @@ -1,48 +1,53 @@ #!/usr/bin/env bash source "$rvm_scripts_path/functions/requirements/debian" requirements_ubuntu_define_libgmp() { requirements_check libgmp-dev } +requirements_debian_define_libncurses() +{ + requirements_check libncurses5-dev +} + requirements_ubuntu_define_libreadline() { if __rvm_version_compare ${_system_version} -ge 9 then requirements_check libreadline-dev else requirements_check libreadline6-dev fi } requirements_trisquel_define_libssl() { # Legacy libssl-dev required by older version of ruby has been renamed to libssl1.0-dev # starting from Trisquel 9 (based on Ubuntu 18.04 LTS "Bionic Beaver") case "$1" in (ruby-2.3*|ruby-2.2*|ruby-2.1*|ruby-2.0*|ruby-1.9*) if __rvm_version_compare ${_system_version} -ge 9 then undesired_check libssl-dev requirements_check libssl1.0-dev else requirements_check libssl-dev fi ;; (*) requirements_check libssl-dev ;; esac } requirements_trisquel_define() { __lib_type=debian requirements_debian_define "$@" } diff --git a/scripts/functions/requirements/ubuntu b/scripts/functions/requirements/ubuntu index ab8d21c..884bb1f 100644 --- a/scripts/functions/requirements/ubuntu +++ b/scripts/functions/requirements/ubuntu @@ -1,62 +1,73 @@ #!/usr/bin/env bash source "$rvm_scripts_path/functions/requirements/debian" requirements_ubuntu_define_libgmp() { requirements_check libgmp-dev } +requirements_debian_define_libncurses() +{ + if + __rvm_version_compare ${_system_version} -ge 24.04 + then + requirements_check libncurses-dev + else + requirements_check libncurses5-dev + fi +} + requirements_ubuntu_define_libreadline() { if __rvm_version_compare ${_system_version} -ge 16.10 then requirements_check libreadline-dev else requirements_check libreadline6-dev fi } requirements_ubuntu_define_libssl() { # Legacy libssl-dev required by older version of ruby has been renamed to libssl1.0-dev # starting from Ubuntu 17.10 (Artful Aardvark) case "$1" in (ruby-2.3*|ruby-2.2*|ruby-2.1*|ruby-2.0*|ruby-1.9*|ruby-1.8*|ree-1.8*) if __rvm_version_compare ${_system_version} -ge 17.10 then undesired_check libssl-dev requirements_check libssl1.0-dev else requirements_check libssl-dev fi ;; (*) requirements_check libssl-dev ;; esac } requirements_ubuntu_define_clang_llvm() { if __rvm_version_compare ${_system_version} -ge 17.04 then requirements_check clang-4.0 llvm-4.0 llvm-4.0-dev libc++-dev libc++abi-dev rvm_configure_flags+=( --cc=clang-4.0 --cxx=clang++-4.0 --llvm-config=llvm-config-4.0) __rvm_update_configure_env CXXFLAGS="-nostdinc++ -I/usr/include/c++/v1" LDFLAGS="-stdlib=libc++ -lc++" else requirements_check clang-3.6 llvm-3.6 llvm-3.6-dev rvm_configure_flags+=( --cc=clang-3.6 --cxx=clang++-3.6 --llvm-config=llvm-config-3.6) fi } requirements_ubuntu_define() { __lib_type=debian requirements_debian_define "$@" }
rvm/rvm
013a5811a5a6c41062e6c59becc06be0e0e796ea
Add support for Ruby 3.3.3 (#5474)
diff --git a/CHANGELOG.md b/CHANGELOG.md index 04d1f53..b8529c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,575 +1,576 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) * Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) * Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) +* 3.3.3 [\#5474](https://github.com/rvm/rvm/pull/5474) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) * 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) #### Upgraded Ruby interpreters: * Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159), 2.5.0-preview1 [\#4204](https://github.com/rvm/rvm/pull/4204), 2.2.9, 2.3.6, 2.4.3 and 2.5.0-rc1 [\#4261](https://github.com/rvm/rvm/pull/4261), 2.5.0 [\#4265](https://github.com/rvm/rvm/pull/4265), 2.6.0-preview1 [\#4317](https://github.com/rvm/rvm/pull/4317), 2.2.10, 2.3.7, 2.4.4, 2.5.1 [\#4340](https://github.com/rvm/rvm/pull/4340) and 2.6.0-preview2[\#4395](https://github.com/rvm/rvm/pull/4395) * Add support for Rubinius 3.85-3.100 * Add support for JRuby 9.1.14.0 [\#4224](https://github.com/rvm/rvm/pull/4224), 9.1.15.0 [\#4258](https://github.com/rvm/rvm/pull/4258), 9.1.16.0 [\#4316](https://github.com/rvm/rvm/pull/4316), 9.1.17.0 [\#4366](https://github.com/rvm/rvm/pull/4366), 9.2.0.0 [\#4390](https://github.com/rvm/rvm/pull/4390) * Add support for mruby 1.4.0 [\#4286](https://github.com/rvm/rvm/pull/4286) * Add support for MagLev 1.1* and 1.2Alpha-1.2Alpha4 [\#4289](https://github.com/rvm/rvm/pull/4289) * Add support for RubyGems 2.6.14 [\#4205](https://github.com/rvm/rvm/pull/4205), 2.7.0-2.7.4 [\#4276](https://github.com/rvm/rvm/issues/4276) and 2.7.5-6 #### Binaries: * Ubuntu 16.04 x64 binaries for Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4362](https://github.com/rvm/rvm/issues/4362), 2.2.9, 2.3.6 and 2.4.3 [\#4259](https://github.com/rvm/rvm/issues/4259), 2.2.8, 2.3.5 and 2.4.2 [\#4161](https://github.com/rvm/rvm/issues/4161), 2.5.0 [\#4272](https://github.com/rvm/rvm/pull/4272) * Ubuntu 17.04 for Ruby 2.1.\*, 2.2.\* [\#4233](https://github.com/rvm/rvm/pull/4233) ## [1.29.3](https://github.com/rvm/rvm/releases/tag/1.29.3) 10 September 2017 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.2...1.29.3) #### New features: * Add RVM commands missing in bash shell completion [\#4078](https://github.com/rvm/rvm/pull/4078) * Railsexpress patches for 2.3.4, 2.3-head [\#4084](https://github.com/rvm/rvm/pull/4084), 2.2.5 and 2.2.6 [\#4153](https://github.com/rvm/rvm/pull/4153) * Update `gem-wrappers` to 1.3.0: Show warnings when the target binary is missing or is not executable [gem-wrappers \#9](https://github.com/rvm/gem-wrappers/issues/9) * Detect Zorin OS as Ubuntu [\#4140](https://github.com/rvm/rvm/issues/4140) #### Bug fixes: * Infinite loop in `gemset_create` [\#4102](https://github.com/rvm/rvm/issues/4102) * Command not found `__rvm_remote_version` error [\#4085](https://github.com/rvm/rvm/pull/4085) * Fix path of version script in `environment` [\#4117](https://github.com/rvm/rvm/pull/4117) * Define `cd()`, `pushd()` and `popd()` properly when using zsh [\#4132](https://github.com/rvm/rvm/pull/4132) * Update gem-wrappers to 1.3.1: Avoid warnings for missing ruby binaries [\#4104](https://github.com/rvm/rvm/issues/4104) * Handles :engine=> and :engine_version=> in Gemfile * Makes $rvm_ruby_string is not installed searchable by adding a fixed keyword * Correctly quotes suggested install command * Fix path to version script in rvm-installer [\#4134](https://github.com/rvm/rvm/pull/4134) * Fix rvm autolibs status, fix [\#4123](https://github.com/rvm/rvm/issues/4123) * Ruby 2.3.x and older are not compatible with OpenSSL 1.1.x on Arch [\#4006](https://github.com/rvm/rvm/issues/4006) * Allow comments after ruby directive in Gemfile [\#4056](https://github.com/rvm/rvm/issues/4056) * Ruby 2.3/4 compilation fix for GCC 7 [\#4080](https://github.com/rvm/rvm/issues/4080) [\#4115](https://github.com/rvm/rvm/issues/4115) * Add warning for sudo users [\#4009](https://github.com/rvm/rvm/issues/4009) * Allows running RVM shell function in Bash with `set -o nounset` [\#4013](https://github.com/rvm/rvm/issues/4013) * Ensure `rvm_hooks_path` is set [\#3902](https://github.com/rvm/rvm/issues/3902) * Allow building static ruby with `--disbale-shared` [\#4091](https://github.com/rvm/rvm/issues/4091) * Restore detection of `gpg` command for veryfication of signatures [\#4059](https://github.com/rvm/rvm/issues/4059) * Update `gem-wrappers` to 1.3.2: Avoid nested chdir warnings [gem-wrappers \#11](https://github.com/rvm/gem-wrappers/pull/11) * Fix RVM folder cleanup during installation [\#4333](https://github.com/rvm/rvm/issues/4333) * Fix found project file reject reasons for bash -e [\#4314](https://github.com/rvm/rvm/pull/4314) #### Upgraded Ruby interpreters: * Add support for Rubinius 3.82, 3.83, 3.84 diff --git a/config/known b/config/known index 2186457..8ebcc82 100644 --- a/config/known +++ b/config/known @@ -1,81 +1,81 @@ # MRI Rubies [ruby-]1.8.6[-p420] [ruby-]1.8.7[-head] # security released on head [ruby-]1.9.1[-p431] [ruby-]1.9.2[-p330] [ruby-]1.9.3[-p551] [ruby-]2.0.0[-p648] [ruby-]2.1[.10] [ruby-]2.2[.10] [ruby-]2.3[.8] [ruby-]2.4[.10] [ruby-]2.5[.9] [ruby-]2.6[.10] [ruby-]2.7[.8] [ruby-]3.0[.7] [ruby-]3.1[.5] [ruby-]3.2[.4] -[ruby-]3[.3.2] +[ruby-]3[.3.3] [ruby-]3.4[.0-preview1] ruby-head # for forks use: rvm install ruby-head-<name> --url https://github.com/github/ruby.git --branch 2.2 # JRuby jruby-1.6[.8] jruby-1.7[.27] jruby-9.1[.17.0] jruby-9.2[.21.0] jruby-9.3[.14.0] jruby[-9.4.7.0] jruby-head # Rubinius rbx-1[.4.3] rbx-2.3[.0] rbx-2.4[.1] rbx-2[.5.8] rbx-3[.107] rbx-4[.20] rbx-5[.0] rbx-head # TruffleRuby truffleruby[-24.0.1] # Opal opal # Minimalistic ruby implementation - ISO 30170:2012 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1[.4.1] mruby-2.0.1 mruby-2[.1.1] mruby[-head] # Ruby Enterprise Edition ree-1.8.6 ree[-1.8.7][-2012.02] # Topaz topaz # MagLev maglev-1.0.0 maglev-1.1[RC1] maglev[-1.2Alpha4] maglev-head # Mac OS X Snow Leopard Or Newer macruby-0.10 macruby-0.11 macruby[-0.12] macruby-nightly macruby-head # IronRuby ironruby[-1.1.3] ironruby-head diff --git a/config/known_strings b/config/known_strings index b595fa8..52d45da 100644 --- a/config/known_strings +++ b/config/known_strings @@ -2,558 +2,559 @@ ironruby-1.0 ironruby-1.1.3 jruby-0.9.0 jruby-0.9.1 jruby-0.9.2 jruby-0.9.8 jruby-0.9.9 jruby-1.0.0RC1 jruby-1.0.0RC2 jruby-1.0.0RC3 jruby-1.0 jruby-1.0.1 jruby-1.0.2 jruby-1.0.3 jruby-1.1b1 jruby-1.1RC1 jruby-1.1RC2 jruby-1.1RC3 jruby-1.1 jruby-1.1.1 jruby-1.1.2 jruby-1.1.3 jruby-1.1.4 jruby-1.1.5 jruby-1.1.6RC1 jruby-1.1.6 jruby-1.2.0RC1 jruby-1.2.0RC2 jruby-1.2.0 jruby-1.3.0RC1 jruby-1.3.0RC2 jruby-1.3.0 jruby-1.3.1 jruby-1.4.0RC1 jruby-1.4.0RC2 jruby-1.4.0RC3 jruby-1.4.0 jruby-1.4.1 jruby-1.5.0.RC1 jruby-1.5.0.RC2 jruby-1.5.0.RC3 jruby-1.5.0 jruby-1.5.1 jruby-1.5.2 jruby-1.5.3 jruby-1.5.4 jruby-1.5.5 jruby-1.5.6 jruby-1.6.0.RC1 jruby-1.6.0.RC2 jruby-1.6.0.RC3 jruby-1.6.0 jruby-1.6.1 jruby-1.6.2 jruby-1.6.3 jruby-1.6.4 jruby-1.6.5 jruby-1.6.5.1 jruby-1.6.7 jruby-1.6.7.2 jruby-1.6.8 jruby-1.7.0.preview1 jruby-1.7.0.preview2 jruby-1.7.0.RC1 jruby-1.7.0.RC2 jruby-1.7.0 jruby-1.7.1 jruby-1.7.2 jruby-1.7.3 jruby-1.7.4 jruby-1.7.5 jruby-1.7.6 jruby-1.7.7 jruby-1.7.8 jruby-1.7.9 jruby-1.7.10 jruby-1.7.11 jruby-1.7.12 jruby-1.7.13 jruby-1.7.14 jruby-1.7.15 jruby-1.7.16 jruby-1.7.16.1 jruby-1.7.16.2 jruby-1.7.17 jruby-1.7.18 jruby-1.7.19 jruby-1.7.20 jruby-1.7.20.1 jruby-1.7.21 jruby-1.7.22 jruby-1.7.23 jruby-1.7.24 jruby-1.7.25 jruby-1.7.26 jruby-1.7.27 jruby-9.0.0.0.pre1 jruby-9.0.0.0.pre2 jruby-9.0.0.0.rc1 jruby-9.0.0.0.rc2 jruby-9.0.0.0 jruby-9.0.1.0 jruby-9.0.2.0 jruby-9.0.3.0 jruby-9.0.4.0 jruby-9.0.5.0 jruby-9.1.0.0 jruby-9.1.1.0 jruby-9.1.2.0 jruby-9.1.3.0 jruby-9.1.4.0 jruby-9.1.5.0 jruby-9.1.6.0 jruby-9.1.7.0 jruby-9.1.8.0 jruby-9.1.9.0 jruby-9.1.10.0 jruby-9.1.11.0 jruby-9.1.12.0 jruby-9.1.13.0 jruby-9.1.14.0 jruby-9.1.15.0 jruby-9.1.16.0 jruby-9.1.17.0 jruby-9.2.0.0 jruby-9.2.1.0 jruby-9.2.2.0 jruby-9.2.3.0 jruby-9.2.4.0 jruby-9.2.4.1 jruby-9.2.5.0 jruby-9.2.6.0 jruby-9.2.7.0 jruby-9.2.8.0 jruby-9.2.9.0 jruby-9.2.10.0 jruby-9.2.11.0 jruby-9.2.11.1 jruby-9.2.12.0 jruby-9.2.13.0 jruby-9.2.14.0 jruby-9.2.15.0 jruby-9.2.16.0 jruby-9.2.17.0 jruby-9.2.18.0 jruby-9.2.19.0 jruby-9.2.20.0 jruby-9.2.20.1 jruby-9.2.21.0 jruby-9.3.0.0 jruby-9.3.1.0 jruby-9.3.2.0 jruby-9.3.3.0 jruby-9.3.4.0 jruby-9.3.6.0 jruby-9.3.7.0 jruby-9.3.8.0 jruby-9.3.9.0 jruby-9.3.10.0 jruby-9.3.11.0 jruby-9.3.13.0 jruby-9.3.14.0 jruby-9.4.0.0 jruby-9.4.1.0 jruby-9.4.2.0 jruby-9.4.3.0 jruby-9.4.4.0 jruby-9.4.5.0 jruby-9.4.6.0 jruby-9.4.7.0 macruby-0.12 maglev-1.0.0 maglev-1.1beta maglev-1.1beta2 maglev-1.1RC1 maglev-1.2Alpha maglev-1.2Alpha2 maglev-1.2Alpha3 maglev-1.2Alpha4 mruby-1.0.0 mruby-1.1.0 mruby-1.2.0 mruby-1.3.0 mruby-1.4.0 mruby-1.4.1 mruby-2.0.0 mruby-2.0.1 mruby-2.1.0-rc mruby-2.1.0 mruby-2.1.1-rc mruby-2.1.1-rc2 mruby-2.1.1 rbx-1.0.0-20100514 rbx-1.0.1-20100603 rbx-1.1.0-20100923 rbx-1.1.1-20101116 rbx-1.2.0-20101221 rbx-1.2.1-20110215 rbx-1.2.2-20110222 rbx-1.2.3-20110315 rbx-1.2.4-20110705 rbx-1.3.2 rbx-1.3.3 rbx-1.4.1 rbx-1.4.3 rbx-2.0.0 rbx-2.1.0 rbx-2.1.1 rbx-2.2.0 rbx-2.2.2 rbx-2.2.3 rbx-2.2.4 rbx-2.2.5 rbx-2.2.6 rbx-2.2.7 rbx-2.2.8 rbx-2.2.9 rbx-2.2.10 rbx-2.3.0 rbx-2.4.0 rbx-2.4.1 rbx-2.5.0 rbx-2.5.1 rbx-2.5.2 rbx-2.5.3 rbx-2.5.4 rbx-2.5.5 rbx-2.5.6 rbx-2.5.7 rbx-2.5.8 rbx-3.70 rbx-3.71 rbx-3.72 rbx-3.73 rbx-3.74 rbx-3.75 rbx-3.76 rbx-3.77 rbx-3.78 rbx-3.79 rbx-3.80 rbx-3.81 rbx-3.82 rbx-3.83 rbx-3.84 rbx-3.85 rbx-3.86 rbx-3.87 rbx-3.88 rbx-3.89 rbx-3.90 rbx-3.91 rbx-3.92 rbx-3.93 rbx-3.94 rbx-3.95 rbx-3.96 rbx-3.97 rbx-3.98 rbx-3.99 rbx-3.100 rbx-3.101 rbx-3.102 rbx-3.103 rbx-3.104 rbx-3.105 rbx-3.106 rbx-3.107 rbx-4.0 rbx-4.1 rbx-4.2 rbx-4.3 rbx-4.4 rbx-4.5 rbx-4.6 rbx-4.7 rbx-4.8 rbx-4.9 rbx-4.10 rbx-4.11 rbx-4.12 rbx-4.13 rbx-4.14 rbx-4.15 rbx-4.16 rbx-4.17 rbx-4.18 rbx-4.19 rbx-4.20 rbx-5.0 ree-1.8.6-20080507 ree-1.8.6-20080621 ree-1.8.6-20080623 ree-1.8.6-20080624 ree-1.8.6-20080709 ree-1.8.6-20080810 ree-1.8.6-20081205 ree-1.8.6-20081215 ree-1.8.6-20090113 ree-1.8.6-20090201 ree-1.8.6-20090421 ree-1.8.6-20090520 ree-1.8.6-20090610 ree-1.8.6-20090928 ree-1.8.7-2009.10 ree-1.8.7-2010.01 ree-1.8.7-2010.02 ree-1.8.7-2011.01 ree-1.8.7-2011.02 ree-1.8.7-2011.03 ree-1.8.7-2011.12 ree-1.8.7-2012.02 ruby-1.8.5-p115 ruby-1.8.5-p231 ruby-1.8.6-p286 ruby-1.8.6-p287 ruby-1.8.6-p369 ruby-1.8.6-p383 ruby-1.8.6-p398 ruby-1.8.6-p399 ruby-1.8.6-p420 ruby-1.8.7-p160 ruby-1.8.7-p174 ruby-1.8.7-p248 ruby-1.8.7-p249 ruby-1.8.7-p299 ruby-1.8.7-p302 ruby-1.8.7-p330 ruby-1.8.7-p334 ruby-1.8.7-p352 ruby-1.8.7-p357 ruby-1.8.7-p358 ruby-1.8.7-p370 ruby-1.8.7-p371 ruby-1.8.7-p374 ruby-1.9.0 ruby-1.9.1-p129 ruby-1.9.1-p243 ruby-1.9.1-p376 ruby-1.9.1-p378 ruby-1.9.1-p429 ruby-1.9.1-p431 ruby-1.9.2-p0 ruby-1.9.2-p136 ruby-1.9.2-p180 ruby-1.9.2-p290 ruby-1.9.2-p318 ruby-1.9.2-p320 ruby-1.9.2-p330 ruby-1.9.3-preview1 ruby-1.9.3-rc1 ruby-1.9.3-p0 ruby-1.9.3-p125 ruby-1.9.3-p194 ruby-1.9.3-p286 ruby-1.9.3-p327 ruby-1.9.3-p362 ruby-1.9.3-p374 ruby-1.9.3-p385 ruby-1.9.3-p392 ruby-1.9.3-p429 ruby-1.9.3-p448 ruby-1.9.3-p484 ruby-1.9.3-p545 ruby-1.9.3-p547 ruby-1.9.3-p550 ruby-1.9.3-p551 ruby-2.0.0-preview1 ruby-2.0.0-preview2 ruby-2.0.0-rc1 ruby-2.0.0-rc2 ruby-2.0.0-p0 ruby-2.0.0-p195 ruby-2.0.0-p247 ruby-2.0.0-p353 ruby-2.0.0-p451 ruby-2.0.0-p481 ruby-2.0.0-p576 ruby-2.0.0-p594 ruby-2.0.0-p598 ruby-2.0.0-p643 ruby-2.0.0-p645 ruby-2.0.0-p647 ruby-2.0.0-p648 ruby-2.1.0-preview1 ruby-2.1.0-preview2 ruby-2.1.0-rc1 ruby-2.1.0 ruby-2.1.1 ruby-2.1.2 ruby-2.1.3 ruby-2.1.4 ruby-2.1.5 ruby-2.1.6 ruby-2.1.7 ruby-2.1.8 ruby-2.1.9 ruby-2.1.10 ruby-2.2.0-preview1 ruby-2.2.0-preview2 ruby-2.2.0-rc1 ruby-2.2.0 ruby-2.2.1 ruby-2.2.2 ruby-2.2.3 ruby-2.2.4 ruby-2.2.5 ruby-2.2.6 ruby-2.2.7 ruby-2.2.8 ruby-2.2.9 ruby-2.2.10 ruby-2.3.0-preview1 ruby-2.3.0-preview2 ruby-2.3.0 ruby-2.3.1 ruby-2.3.2 ruby-2.3.3 ruby-2.3.4 ruby-2.3.5 ruby-2.3.6 ruby-2.3.7 ruby-2.3.8 ruby-2.4.0-preview1 ruby-2.4.0-preview2 ruby-2.4.0-preview3 ruby-2.4.0-rc1 ruby-2.4.0 ruby-2.4.1 ruby-2.4.2 ruby-2.4.3 ruby-2.4.4 ruby-2.4.5 ruby-2.4.6 ruby-2.4.7 ruby-2.4.8 ruby-2.4.9 ruby-2.4.10 ruby-2.5.0-preview1 ruby-2.5.0-rc1 ruby-2.5.0 ruby-2.5.1 ruby-2.5.2 ruby-2.5.3 ruby-2.5.4 ruby-2.5.5 ruby-2.5.6 ruby-2.5.7 ruby-2.5.8 ruby-2.5.9 ruby-2.6.0-preview1 ruby-2.6.0-preview2 ruby-2.6.0-preview3 ruby-2.6.0-rc1 ruby-2.6.0-rc2 ruby-2.6.0 ruby-2.6.1 ruby-2.6.2 ruby-2.6.3 ruby-2.6.4 ruby-2.6.5 ruby-2.6.6 ruby-2.6.7 ruby-2.6.8 ruby-2.6.9 ruby-2.6.10 ruby-2.7.0-preview1 ruby-2.7.0-preview2 ruby-2.7.0-preview3 ruby-2.7.0-rc1 ruby-2.7.0-rc2 ruby-2.7.0 ruby-2.7.1 ruby-2.7.2 ruby-2.7.3 ruby-2.7.4 ruby-2.7.5 ruby-2.7.6 ruby-2.7.7 ruby-2.7.8 ruby-3.0.0-preview1 ruby-3.0.0-preview2 ruby-3.0.0-rc1 ruby-3.0.0 ruby-3.0.1 ruby-3.0.2 ruby-3.0.3 ruby-3.0.4 ruby-3.0.5 ruby-3.0.6 ruby-3.0.7 ruby-3.1.0-preview1 ruby-3.1.0 ruby-3.1.1 ruby-3.1.2 ruby-3.1.3 ruby-3.1.4 ruby-3.1.5 ruby-3.2.0-preview1 ruby-3.2.0-preview2 ruby-3.2.0-preview3 ruby-3.2.0-rc1 ruby-3.2.0 ruby-3.2.1 ruby-3.2.2 ruby-3.2.3 ruby-3.2.4 ruby-3.3.0-preview1 ruby-3.3.0-preview2 ruby-3.3.0-preview3 ruby-3.3.0 ruby-3.3.1 ruby-3.3.2 +ruby-3.3.3 ruby-3.4.0-preview1 truffleruby-1.0.0-rc2 truffleruby-1.0.0-rc3 truffleruby-1.0.0-rc5 truffleruby-1.0.0-rc6 truffleruby-1.0.0-rc7 truffleruby-1.0.0-rc8 truffleruby-1.0.0-rc9 truffleruby-1.0.0-rc10 truffleruby-1.0.0-rc11 truffleruby-1.0.0-rc12 truffleruby-1.0.0-rc13 truffleruby-1.0.0-rc14 truffleruby-1.0.0-rc15 truffleruby-1.0.0-rc16 truffleruby-19.0.0 truffleruby-19.0.2 truffleruby-19.1.0 truffleruby-19.1.1 truffleruby-19.2.0 truffleruby-19.2.0.1 truffleruby-19.2.1 truffleruby-19.3.0 truffleruby-19.3.0.2 truffleruby-19.3.1 truffleruby-20.0.0 truffleruby-20.1.0 truffleruby-20.2.0 truffleruby-20.3.0 truffleruby-21.0.0 truffleruby-21.1.0 truffleruby-21.2.0 truffleruby-21.2.0.1 truffleruby-21.3.0 truffleruby-22.0.0.2 truffleruby-22.1.0 truffleruby-22.2.0 truffleruby-22.3.0 truffleruby-22.3.1 truffleruby-23.0.0-preview1 truffleruby-23.0.0 truffleruby-23.1.0 truffleruby-23.1.1 truffleruby-23.1.2 truffleruby-24.0.0 truffleruby-24.0.1 diff --git a/config/md5 b/config/md5 index beabd37..52ac4d3 100644 --- a/config/md5 +++ b/config/md5 @@ -1275,756 +1275,757 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.3.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.4.tar.bz2=a27a413146d903d258fe9fc907e60c1a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.5.tar.bz2=77794ae2fb09dca79bfb636198ccaaed https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.6.tar.bz2=565f3c0dbc3211c6f86ebcb60cbd5de7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.7.tar.bz2=5cc60a18ac4cca5322994c6d19753846 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.8.tar.bz2=45b547a987088761a88143e5fabef13e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.9.tar.bz2=e993696c73e6be0017d90ccdddbcc644 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.0.tar.bz2=032a73d5182d84cbbf20b6e7e310c7c2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.1.tar.bz2=07c61bc0c9e09fc87808f62985cbff25 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.2.tar.bz2=62745ec761a45826841002e72cfca795 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.3.tar.bz2=538383cc35e5710a2175f36416ca3b7c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.4.tar.bz2=8a17255fa833fe3ff9c0275db79bfbff https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar.bz2=66dc3fdf49b1371fd6d362f3ea9d019b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=873b63cc2e4abbb6ec5126ab07ce429a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=84658482a83ee3a4c80d145d0bd7ccb8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=d3af42a4fd701e0710d5f6a16e6bb9a3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c5f56b0149ab787d89c69056eb45e483 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=13f1011cc048aef7199ae8f14bc2ac62 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=fba1bf0b819f52561deab198fd36743d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=3ec8f383026889e2f3c328d86839a7b2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=9c3775365cab8e1e82aa19e87b9711dd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=cce17e87cc9bfcb6b995e5f1996c423c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=b80a93441133b85258d97085aeead20a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=74c45b08a2dc28871ff158b608cc8685 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=469b22a4b12f23e86ac25b3d797ff559 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=ea7767cbfacd744813ccaedd1b4e0013 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=0d9f69db1bd665c9e5c9592b483b31a1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=068f5c90b5b381cd58d8804ca2b3be64 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=6181192273efab4aabaa8628fc83c7be https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=fa690cb7132706fb25dfc625e949e96a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=c443f32cd4c91fb37ff79bd86906e1bc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=6fa3edab1bbacf7328074a7fba22be50 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=a950bc4af16446fce2f9266e95629bdb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=d9bce275c2f36dbde8a6c25f9fa10c2e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=6486c5ce9ec697039b0bb36d2bf18a0d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=79f0927984b8e6e7934b34bdb2a3e5e5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=214ac1e49a75291a68c63134bc246a8a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=94a39d1b226350362666f6305866b20b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=4db7d99d775a7f24bb55c6053d4eb864 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=c0db831a97b8427e0777adeaebf7a9d8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=830b4845fbfd45df75758e311a013ffc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=3fc39c824b2060a3a2766ca01037dd15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=0b395f3884c78c6938896ff253c5251b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=2be294a056a45a50262d1796906f8860 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=0270733b808489a91e41f73d9fe971e9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=33db4a687e4943faf6c2853179b67935 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=dea6663b2c113190e9b99a6dcedb3aa0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=835e563bfbe3c8311326660a51f3394c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=66e3c1e1140300c8236c13e3178cb8ab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=07b12bd2a7d8242c34d824882e654c22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=fe12c0e211f90076b51c7916c830971f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=65ab3105b0c6d5e8a2e9977a3ab7ed94 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=08547ad8e760e0776c74401ae5bbd8e5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=631b4ea065d18df96c6ccbc141904bb3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=03a67e234d886f3c698c1571e42cc7a6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=0ded0cb8ce18a846d71d7e04d24c2e78 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=5251aed0ba4d8349413d6bf4c261bea3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=f09694c4f23d7625f72606bce0efb710 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=340db3acb58829b51e4a7ac1c77246d4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1bd86cb46a9e6c40c285258879a3d59 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=d86b2a1e9721b9459e1283006e03fa92 ironruby-1.0.zip=7a92888837b3507355ed391dbfc0ab83 ironruby-1.1.3.zip=4f2af6253a459cc054d6c55956e514a9 jruby-bin-1.3.1.tar.gz=4a95db8fc93ed7219663fbede98b6117 jruby-bin-1.4.tar.gz=54dba9a88b2b3f99ac86a79828d0178b jruby-bin-1.4.0.tar.gz=f37322c18e9134e91e064aebb4baa4c7 jruby-bin-1.4.0.zip=3a9c8a5115a679da7d7a49a56d57d4c0 jruby-bin-1.4.1.tar.gz=a4aa8c43d1b9ffd9dbc6cb738d55a034 jruby-bin-1.5.0.tar.gz=ee2b4e326e8b87858e5dd0c8e94102e6 jruby-bin-1.5.1.tar.gz=74251383e08e8c339cacc35a7900d3af jruby-bin-1.5.2.tar.gz=d239deb9a108a6abbfbd6cb79cf8255b jruby-bin-1.5.3.tar.gz=ccb0b2dbc300d8dd4ad1bd4da48b8320 jruby-bin-1.5.5.tar.gz=8e00f7d40cbf221f733d6f7a15784e9a jruby-bin-1.5.6.tar.gz=94033a36517645b7a7ec781a3507c654 jruby-bin-1.6.0.tar.gz=f4d7e339dfc0fbaef5b878d1c0a66fbe jruby-bin-1.6.2.tar.gz=a46f978c24a208717023bb4b8995c678 jruby-bin-1.6.3.tar.gz=694b80e4eea784cdc1eb39fb1e3132c9 jruby-bin-1.6.4.tar.gz=0e96b6f4d1c6f12b5ac480cd7ab7da78 jruby-bin-1.6.5.tar.gz=54354082673bd115f945890dc6864413 jruby-bin-1.6.5.1.tar.gz=246a7aa2b7d7e6e9e8a0c2e282cbcfd0 jruby-bin-1.6.7.tar.gz=fd1b8d7389aa92da69ea6efb4782e40a jruby-bin-1.6.7.2.tar.gz=1e520f1b5130114464e5f1950cb24774 jruby-bin-1.6.8.tar.gz=a76ac5845640e4a1ebdfa74421efc935 jruby-bin-1.7.0.preview1.tar.gz=7b9e5e1cd0d818d0199086d948f948b4 jruby-bin-1.7.0.preview2.tar.gz=e8f1623759590aadbf49e4cc53f1cb61 jruby-bin-1.7.0.RC1.tar.gz=bdddcee3d126cddd9a85b5a066a7e25e jruby-bin-1.7.0.RC2.tar.gz=ffe2dd61711f4574fed344af151e5de5 jruby-bin-1.7.0.tar.gz=21861e0ecdbf48cda713c8ade82fdddb jruby-bin-1.7.1.tar.gz=86e659863541d8b987cb7bfbe3b4cfb0 jruby-bin-1.7.2.tar.gz=6ec9293b6dffd1e8ee57e9b7c6d18cbe jruby-bin-1.7.3.tar.gz=f0adf8ccee6f6777f7ab8e5e1d7a1f47 jruby-bin-1.7.4.tar.gz=c6a56eae78db28dddba911ccd0848c32 jruby-bin-1.7.5.tar.gz=c2a28c43c8095127d4a4aee0cf9b1439 jruby-bin-1.7.6.tar.gz=5d10011516a3d3bde10209b60cfcc0ef jruby-bin-1.7.7.tar.gz=9d6df2188fa57f12bf6fde4e4b2e3f09 jruby-bin-1.7.8.tar.gz=1e68f39d6dba7b6d9db81e24bb6b7d0a jruby-bin-1.7.9.tar.gz=b2e44f1f44837c07068ee453a89f4b55 jruby-bin-1.7.10.tar.gz=c84fe9245a73f9cd29f56343b7d2e39a jruby-bin-1.7.11.tar.gz=d6e6ab72426fa7fdc9ae55950980d877 jruby-bin-1.7.12.tar.gz=2073aa6dfc7c701ef7c3d3143d181582 jruby-bin-1.7.14.tar.gz=bc33284f27a3508a70d2ade100a2f6bd jruby-bin-1.7.15.tar.gz=92e63cffcb86842511aeeed95bdf96ed jruby-bin-1.7.16.tar.gz=92cb058d1a896257b5ac1c26dc433506 jruby-bin-1.7.16.1.tar.gz=eec2f0e03560bacf02a09c0096a99cad jruby-bin-1.7.16.2.tar.gz=cd31909b67239c5c6a795521fca5c239 jruby-bin-1.7.17.tar.gz=8b78ba1acdb718431f71c38287c07967 jruby-bin-1.7.18.tar.gz=aa7286140be0f6f60534ebffededc708 jruby-bin-1.7.19.tar.gz=bc38596757d8000d6ca4c4c3f8eacea6 jruby-bin-1.7.20.tar.gz=0c2adc160cb85c888b269e8ac4f886fc jruby-bin-1.7.21.tar.gz=bc91594072032023d146f330764d3274 jruby-bin-1.7.22.tar.gz=1da904bf41d362d0d0b366d9e781168f jruby-bin-1.7.23.tar.gz=41e3f45c28c94a275f9eeb22721da35d jruby-bin-1.7.25.tar.gz=fc43ead73f657f5261428923974fd605 jruby-bin-1.7.26.tar.gz=4ca60264a9560f37fdba8108543e72c2 jruby-bin-1.7.27.tar.gz=b98b0a2c52e885a868a2b60092e1cd3d jruby-bin-9.0.0.0.pre1.tar.gz=d5c8b30648348aa883f893d464d46bf1 jruby-bin-9.0.0.0.pre2.tar.gz=86994a9d7ed2cf318c75392623a3e6da jruby-bin-9.0.0.0.tar.gz=fe9036ea69bf23dc3b69cfc94adb5404 jruby-bin-9.0.1.0.tar.gz=a82bc640e0080b1d9a21d1477c8400e3 jruby-bin-9.0.3.0.tar.gz=828dd6c6dd18e5b186ccfd65753077bd jruby-bin-9.0.4.0.tar.gz=645bf4a1dcde3f19dc0fff75c8b4b685 jruby-bin-9.0.5.0.tar.gz=1d2dc649cbacbe26418ef3ba421018b1 jruby-bin-9.1.0.0.tar.gz=fe26e6308d006d35eb613cdd47d1dc99 jruby-bin-9.1.1.0.tar.gz=8356334270df07a214590d00a986837b jruby-bin-9.1.2.0.tar.gz=749bb917dde9666e365e12bbe776a5c2 jruby-bin-9.1.3.0.tar.gz=91c246cd623702032e88283565da5480 jruby-bin-9.1.4.0.tar.gz=5b80b78c09bf0cd4dcbcb9e1fe3e8b73 jruby-bin-9.1.5.0.tar.gz=e9b2cc44757db4cfbe7da79601d0169a jruby-bin-9.1.6.0.tar.gz=4092a89b01b55d1fb5498113f97ab0ca jruby-bin-9.1.7.0.tar.gz=b120c3eaeef7ff2aed3a57701e414e78 jruby-bin-9.1.8.0.tar.gz=0fdee002c56ec91dff1efffce205265c jruby-bin-9.1.9.0.tar.gz=170efc34297d7ac2a56bb1163e96b363 jruby-bin-9.1.10.0.tar.gz=b75e0d1a200e8f790d8bbc84f91e3002 jruby-bin-9.1.11.0.tar.gz=0502a14141da25a460ce197720bab4c3 jruby-bin-9.1.12.0.tar.gz=74bd7ae08c159fc62cb6f64845a868cc jruby-bin-9.1.13.0.tar.gz=6c642c8a2653a585779f453d8c843fd7 jruby-bin-9.1.14.0.tar.gz=a7e0ecd529690025d327c45744f60fa4 jruby-bin-9.1.15.0.tar.gz=01c29690324d7eb414fba66e4c009c9e jruby-bin-9.1.16.0.tar.gz=e64c3aa1310c272194fd1750b0b79fac jruby-bin-9.1.17.0.tar.gz=f28d1fcbb60e550f3abd839102ad0069 jruby-bin-9.2.0.0.tar.gz=bd476da4bed39ffcfff7116f448a5365 jruby-bin-9.2.1.0.tar.gz=4b78b0a40ca541556f5ee75a815e0be0 jruby-bin-9.2.2.0.tar.gz=be678559801be029fe233c33396e34d2 jruby-bin-9.2.3.0.tar.gz=79328ab1ed37d612da35271183e46bbd jruby-bin-9.2.4.0.tar.gz=f538f2be459f0f0e517a53446e78a354 jruby-bin-9.2.4.1.tar.gz=d373bbc2bd6caabfcc9914c4067e9d24 jruby-bin-9.2.5.0.tar.gz=14582fd6eee19610f0a7433ce5dd5ce4 jruby-bin-9.2.6.0.tar.gz=dba182ac9943b726b609ca61747c1835 jruby-bin-9.2.7.0.tar.gz=c0111b2cafa920df76284044e1aeedc7 jruby-bin-9.2.8.0.tar.gz=7d652b586a18f1c665289fd7e6edf4f5 jruby-bin-9.2.9.0.tar.gz=74b3451f79c13c2fc66c6dee69d46699 jruby-bin-9.2.10.0.tar.gz=e6ce97eae6e35b622c1b572f9297705b jruby-bin-9.2.11.0.tar.gz=22b003adfb03b253721cc85db248698f jruby-bin-9.2.11.1.tar.gz=687586132f7b649b1bdd7b823577c9d8 jruby-bin-9.2.12.0.tar.gz=cc7599837fbd0839cce7293577a34f2c jruby-bin-9.2.13.0.tar.gz=99df4eb89f88c7582bfe7c313daec7b4 jruby-bin-9.2.14.0.tar.gz=421c5b8146701177a738a0a691190018 jruby-bin-9.2.15.0.tar.gz=ba593f1de2c4e592a8ca9b9e903af457 jruby-bin-9.2.16.0.tar.gz=d8d954ee0ab6f4868c3fc63339660af9 jruby-bin-9.2.17.0.tar.gz=382fb3d9d2982efd5396f1a42e3fa6a1 jruby-bin-9.2.18.0.tar.gz=002ac95859a2176cb0a58d81d6e0fb14 jruby-bin-9.2.19.0.tar.gz=0961867a77838853f32ee72dbde7c00e jruby-bin-9.2.20.0.tar.gz=840876dd0ca0098452dd2667fe9dd7f4 jruby-bin-9.2.20.1.tar.gz=5856ed030f0d9e75d2384cf42f62a4de jruby-bin-9.2.21.0.tar.gz=9957c1d2bd9265144fe55f9f7093272a jruby-bin-9.3.0.0.tar.gz=501a3c975b3c9478b72d4b0cd37170b9 jruby-bin-9.3.1.0.tar.gz=201d3e483bf847f5c59f4b1f3bf594d5 jruby-bin-9.3.2.0.tar.gz=259c276f68a01495dda24407394a382d jruby-bin-9.3.3.0.tar.gz=cd49b81753048cee9c8ffdd2ce1cb3e2 jruby-bin-9.3.4.0.tar.gz=7292dd9a56155aa015ec08c03855b3fc jruby-bin-9.3.6.0.tar.gz=bc5a7b02be69fdf3f5584e8880fc7dcc jruby-bin-9.3.7.0.tar.gz=49b17b5cd7cf8bfb09d8f64147d992ef jruby-bin-9.3.8.0.tar.gz=6ea209b699a06944d0653d8048d8bfec jruby-bin-9.3.9.0.tar.gz=9a0f0a931346bc6ea34196a5c88002ec jruby-bin-9.3.10.0.tar.gz=83c9d776dfc8cf33bfa60f7e78077160 jruby-bin-9.3.11.0.tar.gz=6ccc04e658c49db19fc0c452db0f2931 jruby-bin-9.3.13.0.tar.gz=3f20268b494da900504e921507248183 jruby-bin-9.3.14.0.tar.gz=87a96fd3af448ec8fd5ca45c6469ecc9 jruby-bin-9.4.0.0.tar.gz=d0136daa4910f6e6b21858260eb00fe2 jruby-bin-9.4.1.0.tar.gz=abe2669672ac973f1b41a4d3860eb7ae jruby-bin-9.4.2.0.tar.gz=486e50f3c74e7400e71631819fde91da jruby-bin-9.4.3.0.tar.gz=526006fefb3e5ffc5095ab5599cc38c6 jruby-bin-9.4.4.0.tar.gz=287b5c3a9b63ff93e49ae9dc0347263b jruby-bin-9.4.5.0.tar.gz=09c6fceb38d6c086af2e4d5f21f9fe65 jruby-bin-9.4.6.0.tar.gz=5e2fe4ed897d938332ee0d85d2aa60bc jruby-bin-9.4.7.0.tar.gz=a0633ca837efff62edca84ceae1f5515 libiconv-1.13.1.tar.gz=7ab33ebd26687c744a37264a330bbe9a MacRuby%200.5.zip=675454a8c7bc19d606d90a726e08427c MacRuby%200.6.zip=a80afd3700c88cf95c539fc63b272faf MacRuby%200.7.1.zip=e8245dcd03c0757dfae7e6fee913947a MacRuby%200.7.zip=0bb60588c9ec9b1517665743bb05132f MacRuby%200.8.zip=735ac0a70f539e00b5de6fbec09c2c5c MacRuby%200.9.zip=fa01345e8fbfee620bbac64743a45f69 MacRuby%200.10.zip=1662d13d2f73cfc26258598f6988dcbc MacRuby%200.11.zip=b0cc23d60484a07012bcad549cef6054 MacRuby%200.12.zip=e1c5fa1b007a1cdc38c527a47302bf5e MagLev-1.0.0.tar.gz=e02cb8ee04438451eb78df14f91a68a9 MagLev-1.1beta.tar.gz=d542c7af290ce3b588b57629906b19e9 MagLev-1.1beta2.tar.gz=0ef88d5d145611aef324cb51be0aaafd MagLev-1.1RC1.tar.gz=41f4a0994daf1e5271cbd0ebe57816f4 MagLev-1.2Alpha.tar.gz=5c7dd3acef9dbddc0829bb1daa087abb MagLev-1.2Alpha2.tar.gz=cbbeae109854a6bf107a747a93fd478b MagLev-1.2Alpha3.tar.gz=b7470518f2b697eb1a5a39eff9b6d749 MagLev-1.2Alpha4.tar.gz=d54f04a611ce838b9d7009627065b7ca mruby-1.0.0.tar.gz=d9aec6a20fc1add65ee07ff6cf0e1ef2 mruby-1.1.0.tar.gz=60d75ea704c9285f3c80b3ad1d2b68de mruby-1.2.0.tar.gz=b5a3b7962d9db8cb8fb8105aa914d16c mruby-1.3.0.tar.gz=9714dd2804064d0043e099b7211d72b9 mruby-1.4.0.tar.gz=25efc35511070454074b36863c4d5b5e mruby-1.4.1.tar.gz=b40bf09af3f4c6e2bc443b9ac803a3ad mruby-2.0.0.tar.gz=b86c6a1dd86cb4ebe51e3fe38964a830 mruby-2.0.1.tar.gz=15b426a8a94a610c45414578786d05e3 mruby-2.1.0-rc.tar.gz=58a85fcb102d72900a25190da670e01d mruby-2.1.0.tar.gz=c01a4bbf62e6f5765c70b8813e0ce7da mruby-2.1.1-rc.tar.gz=809edd80e680855e7c4cf3c569972f28 mruby-2.1.1-rc2.tar.gz=24879fa5eb587f9415f03f8f3701842e mruby-2.1.1.tar.gz=c0ee4a112695046b9e4f177e31096d6c ncurses.tar.gz=cce05daf61a64501ef6cd8da1f727ec6 openssl-0.9.8k.tar.gz=e555c6d58d276aec7fdc53363e338ab3 openssl-0.9.8n.tar.gz=076d8efc3ed93646bd01f04e23c07066 openssl-1.0.1c.tar.gz=ae412727c8c15b67880aef7bd2999b2e openssl-1.0.1i.tar.gz=c8dc151a671b9b92ff3e4c118b174972 pkg-config-0.23.tar.gz=d922a88782b64441d06547632fd85744 readline-5.2.tar.gz=e39331f32ad14009b9ff49cc10c5e751 readline-6.0.tar.gz=b7f65a48add447693be6e86f04a63019 readline-6.2.tar.gz=67948acb2ca081f23359d0256e9a271c release-2.0.0-rc1.zip=b05b5e3c2712a294e4b09ebf450c1bfe rubinius-1.0.0-20100514.tar.gz=b05f4e791d3712c5a50b3d210dac6eb0 rubinius-1.0.1-20100603.tar.gz=eb185703c7ae0c0210e8dcb7f783ee8e rubinius-1.1.0-20100923.tar.gz=e2ae16238b201de09975abe19da09ea9 rubinius-1.1.1-20101116.tar.gz=b39f618eeba37c3aff215da8bca55fd7 rubinius-1.2.0-20101221.tar.gz=4284c2660f1f648942de35d4fc871f70 rubinius-1.2.1-20110215.tar.gz=e4a5127480062fddddc7ce2860b3b813 rubinius-1.2.2-20110222.tar.gz=59124378fb7ee040e9ee4e4736d89fc0 rubinius-1.2.3-20110315.tar.gz=9782dab18c2dd440af6b76e8eb5bc0f0 rubinius-1.2.4-20110705.tar.gz=403c777d19b3553e9cb36701fe002c5e rubinius-1.3.2.tar.bz2=64801ad8dd4e5e4fcb74ff313fec0a69 rubinius-1.3.3.tar.bz2=79f1f860ed8242257bd7f3e88c81a197 rubinius-1.4.1.tar.bz2=76b840405d4b9303261c27cf15002386 rubinius-2.0.0.tar.bz2=62e379e044c822b81e7b20a27daf133e rubinius-2.1.0.tar.bz2=908053f38fd840c75a93aab7487c20a5 rubinius-2.1.1.tar.bz2=6b4df0caec5ea88373e113f97a3b4c72 rubinius-2.2.0.tar.bz2=f1fbc6f3baf1da5ad86b3858f30f3349 rubinius-2.2.2.tar.bz2=ac70d629ea43525d91e81f4ccf135299 rubinius-2.2.3.tar.bz2=d9978cf1a4e8f0310db63e49834f9837 rubinius-2.2.4.tar.bz2=c10699da85a8eb5861a37b29077213bd rubinius-2.2.5.tar.bz2=5996dc8529b2ffe5921c5e7020bee20e rubinius-2.2.6.tar.bz2=85339bb6dd525eee719edf0551868f56 rubinius-2.2.7.tar.bz2=de2e6f4c3bd9a90bcb89f2ea27ddee9e rubinius-2.2.8.tar.bz2=c4db1ffb8dbdf864240cabe8b7758b49 rubinius-2.2.9.tar.bz2=0bf87ba617fa989e47d20942410028af rubinius-2.2.10.tar.bz2=8680da7eb921e6f595a1d716915ca7e0 rubinius-2.3.0.tar.bz2=e003a30af6689c8198116b3405d09d8e rubinius-2.4.0.tar.bz2=62391a51f49820daa51463066c3ce007 rubinius-2.4.1.tar.bz2=7758721b6e848387c3943ddb9ebd9479 rubinius-2.5.0.tar.bz2=178baa1ad172df0801765ea93bc36d87 rubinius-2.5.1.tar.bz2=77e1b87dc357691ad44b561a5f45c188 rubinius-2.5.2.tar.bz2=e5973d6e0a16f0390dc2a7478db83ff5 rubinius-2.5.3.tar.bz2=b19709eb3fa9e05b3fa6a357b33e3b5b rubinius-2.5.4.tar.bz2=64587916e5d445ed9bc630017a04498e rubinius-2.5.5.tar.bz2=ef671bbab50cbe2f70f953c491311261 rubinius-2.5.6.tar.bz2=597e4b049f49966c646faf699856c1b9 rubinius-2.5.7.tar.bz2=9a7f404019bce9fc34a7af7feb7cbb74 rubinius-2.5.8.tar.bz2=a24520892cada1f660e719a25abf63e3 ruby-1.8.5-p115.tar.bz2=03955e3c367b9beb3efe144c9f00d689 ruby-1.8.5-p115.tar.gz=20ca6cc87eb077296806412feaac0356 ruby-1.8.5-p231.tar.bz2=327f5aa6573787432222e96195cffd1e ruby-1.8.5-p231.tar.gz=e900cf225d55414bffe878f00a85807c ruby-1.8.6-p286.tar.bz2=e6b6bf8f34370e433936adb7a7065e63 ruby-1.8.6-p286.tar.gz=797ea136fe43e4286c9362ee4516674e ruby-1.8.6-p287.tar.bz2=80b5f3db12531d36e6c81fac6d05dda9 ruby-1.8.6-p287.tar.gz=6ff3420094711266c3201a0c7c2faa38 ruby-1.8.6-p369.tar.bz2=c3c1f3dd0dfbd2e17a04e59c2f12cfc8 ruby-1.8.6-p369.tar.gz=8c140ae28b4c3947b92dfad69109d90b ruby-1.8.6-p383.tar.bz2=a48703cd982b9f0e3002700a50b0e88e ruby-1.8.6-p383.tar.gz=4f49544d4a4d0d34e9d86c41e853db2e ruby-1.8.6-p398.tar.bz2=fbd43dc44ee26be4d37e6bebbed6f8bd ruby-1.8.6-p398.tar.gz=736db5f56c2d9b0136e563d049249fa8 ruby-1.8.6-p399.tar.bz2=f77c307cb72fb8808b0e85af5d05cefc ruby-1.8.6-p399.tar.gz=c3d16cdd3c1ee8f3b7d1c399d4884e33 ruby-1.8.6-p420.tar.bz2=1c7a978e9ffd4f56dc2ad74bbd2c34f3 ruby-1.8.6-p420.tar.gz=ca1eee44f842e93b5098bc5a2bb9a40b ruby-1.8.7-p160.tar.bz2=f8ddb886b8a81cf005f53e9a9541091d ruby-1.8.7-p160.tar.gz=945398f97e2de6dd8ab6df68d10bb1a1 ruby-1.8.7-p174.tar.bz2=88c45aaf627b4404e5e4273cb03ba2ee ruby-1.8.7-p174.tar.gz=18dcdfef761a745ac7da45b61776afa5 ruby-1.8.7-p248.tar.bz2=37e19d46b7d4b845f57d3389084b94a6 ruby-1.8.7-p248.tar.gz=60a65374689ac8b90be54ca9c61c48e3 ruby-1.8.7-p249.tar.bz2=37200cc956a16996bbfd25bb4068f242 ruby-1.8.7-p249.tar.gz=d7db7763cffad279952eb7e9bbfc221c ruby-1.8.7-p299.tar.bz2=244439a87d75ab24170a9c2b451ce351 ruby-1.8.7-p299.tar.gz=43533980ee0ea57381040d4135cf9677 ruby-1.8.7-p302.tar.bz2=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p302.tar.gz=a6a9e37079ed8cf8726b455dad3de939 ruby-1.8.7-p330.tar.bz2=2689719fb42c8cf0aa336f8c8933f413 ruby-1.8.7-p330.tar.gz=50a49edb787211598d08e756e733e42e ruby-1.8.7-p334.tar.bz2=2f14f604bf981bb938ab5fc8b09eb1a6 ruby-1.8.7-p334.tar.gz=aacb6ee5dfe2367682bba56af7f415b8 ruby-1.8.7-p352.tar.bz2=0c61ea41d1b1183b219b9afe97f18f52 ruby-1.8.7-p352.tar.gz=0c33f663a10a540ea65677bb755e57a7 ruby-1.8.7-p357.tar.bz2=3abd9e2a29f756a0d30c7bfca578cdeb ruby-1.8.7-p357.tar.gz=b2b8248ff5097cfd629f5b9768d1df82 ruby-1.8.7-p358.tar.bz2=de35f00997f4ccee3e22dff0f2d01b8a ruby-1.8.7-p370.tar.bz2=1e4c3194537dd8ff92e756993e55a29d ruby-1.8.7-p371.tar.bz2=c27526b298659a186bdb5107fcec2341 ruby-1.8.7-p371.tar.gz=653f07bb45f03d0bf3910491288764df ruby-1.8.7-p374.tar.bz2=83c92e2b57ea08f31187060098b2200b ruby-1.8.7-p374.tar.gz=b72a0bc5b824398537762e5272bbb8dc ruby-1.9.0.tar.bz2=17eb66ac3721340d21db352d8f5dec76 ruby-1.9.1-p129.tar.bz2=6fa62b20f72da471195830dec4eb2013 ruby-1.9.1-p129.tar.gz=c71f413514ee6341c627be2957023a5c ruby-1.9.1-p243.tar.bz2=66d4f8403d13623051091347764881a0 ruby-1.9.1-p243.tar.gz=515bfd965814e718c0943abf3dde5494 ruby-1.9.1-p376.tar.bz2=e019ae9c643c5efe91be49e29781fb94 ruby-1.9.1-p376.tar.gz=ebb20550a11e7f1a2fbd6fdec2a3e0a3 ruby-1.9.1-p378.tar.bz2=5922459622a23612eb9b68a3586cb5f8 ruby-1.9.1-p378.tar.gz=9fc5941bda150ac0a33b299e1e53654c ruby-1.9.1-p429.tar.bz2=09df32ae51b6337f7a2e3b1909b26213 ruby-1.9.1-p429.tar.gz=0f6d7630f26042e00bc59875755cf879 ruby-1.9.1-p431.tar.bz2=03179138ae95dbfae872ef49e9cc6da7 ruby-1.9.1-p431.tar.gz=23f28cffc007ed5ac72c8e9bec6837ce ruby-1.9.2-p0.tar.bz2=d8a02cadf57d2571cd4250e248ea7e4b ruby-1.9.2-p0.tar.gz=755aba44607c580fddc25e7c89260460 ruby-1.9.2-p136.tar.bz2=52958d35d1b437f5d9d225690de94c13 ruby-1.9.2-p136.tar.gz=6e17b200b907244478582b7d06cd512e ruby-1.9.2-p180.tar.bz2=68510eeb7511c403b91fe5476f250538 ruby-1.9.2-p180.tar.gz=0d6953820c9918820dd916e79f4bfde8 ruby-1.9.2-p290.tar.bz2=096758c3e853b839dc980b183227b182 ruby-1.9.2-p290.tar.gz=604da71839a6ae02b5b5b5e1b792d5eb ruby-1.9.2-p318.tar.bz2=be431c6cbfa27e3836a06c6315717747 ruby-1.9.2-p318.tar.gz=cc7bf1025128e1985882ae243f348802 ruby-1.9.2-p320.tar.bz2=b226dfe95d92750ee7163e899b33af00 ruby-1.9.2-p320.tar.gz=5ef5d9c07af207710bd9c2ad1cef4b42 ruby-1.9.2-p330.tar.bz2=8ba4aaf707023e76f80fc8f455c99858 ruby-1.9.2-p330.tar.gz=4b9330730491f96b402adc4a561e859a ruby-1.9.3-p0.tar.bz2=65401fb3194cdccd6c1175ab29b8fdb8 ruby-1.9.3-p0.tar.gz=8e2fef56185cfbaf29d0c8329fc77c05 ruby-1.9.3-p125.tar.bz2=702529a7f8417ed79f628b77d8061aa5 ruby-1.9.3-p125.tar.gz=e3ea86b9d3fc2d3ec867f66969ae3b92 ruby-1.9.3-p194.tar.bz2=2278eff4cfed3cbc0653bc73085caa34 ruby-1.9.3-p194.tar.gz=bc0c715c69da4d1d8bd57069c19f6c0e ruby-1.9.3-p286.tar.bz2=e76848a86606a4fd5dcf14fc4b4e755e ruby-1.9.3-p327.tar.bz2=7d602aba93f31ceef32800999855fbca ruby-1.9.3-p327.tar.gz=96118e856b502b5d7b3a4398e6c6e98c ruby-1.9.3-p362.tar.bz2=13c26ea368d88a560f07cc8c5eb4fa05 ruby-1.9.3-p374.tar.bz2=944e73eba9ee9e1f2647ff32ec0b14b2 ruby-1.9.3-p385.tar.bz2=5ec9aff670f4912b0f6f0e11e855ef6c ruby-1.9.3-p392.tar.bz2=a810d64e2255179d2f334eb61fb8519c ruby-1.9.3-p392.tar.gz=f689a7b61379f83cbbed3c7077d83859 ruby-1.9.3-p429.tar.bz2=c2b2de5ef15ea9b1aaa3152f9112af1b ruby-1.9.3-p429.tar.gz=993c72f7f805a9eb453f90b0b7fe0d2b ruby-1.9.3-p448.tar.bz2=aa710d386e5903f78f0231868255e6af ruby-1.9.3-p448.tar.gz=a893cff26bcf351b8975ebf2a63b1023 ruby-1.9.3-p484.tar.bz2=03f5b08804927ceabe5122cb90f5d0a9 ruby-1.9.3-p484.tar.gz=8ac0dee72fe12d75c8b2d0ef5d0c2968 ruby-1.9.3-p545.tar.bz2=4743c1dc48491070bae8fc8b423bc1a7 ruby-1.9.3-p545.tar.gz=8e8f6e4d7d0bb54e0edf8d9c4120f40c ruby-1.9.3-p547.tar.bz2=5363d399be7f827c77bf8ae5d1a69b38 ruby-1.9.3-p547.tar.gz=7531f9b1b35b16f3eb3d7bea786babfd ruby-1.9.3-p550.tar.bz2=c2169c8b14ccefd036081aba5ffa96da ruby-1.9.3-p551.tar.bz2=0d8b272b05c3449dc848bb7570f65bfe ruby-1.9.3-preview1.tar.bz2=7d93dc773c5824f05c6e6630d8c4bf9b ruby-1.9.3-preview1.tar.gz=0f0220be4cc7c51a82c1bd8f6a0969f3 ruby-1.9.3-rc1.tar.bz2=26f0dc51ad981e12c58b48380112fa4d ruby-1.9.3-rc1.tar.gz=46a2a481536ca0ca0b80ad2b091df68e ruby-2.0.0-p0.tar.bz2=895c1c581f8d28e8b3bb02472b2ccf6a ruby-2.0.0-p195.tar.bz2=2f54faea6ee1ca500632ec3c0cb59cb6 ruby-2.0.0-p247.tar.bz2=60913f3eec0c4071f44df42600be2604 ruby-2.0.0-p353.tar.bz2=20eb8f067d20f6b76b7e16cce2a85a55 ruby-2.0.0-p451.tar.bz2=908e4d1dbfe7362b15892f16af05adf8 ruby-2.0.0-p481.tar.bz2=ea406a8d415a1a5d8365596d4288f3da ruby-2.0.0-p576.tar.bz2=eccd42d43620544a085c5e3834572f37 ruby-2.0.0-p594.tar.bz2=58469c0daf5f3a892a70cc674ea59c7f ruby-2.0.0-p598.tar.bz2=a3f3908103a7d209d1d1cf4712e3953c ruby-2.0.0-p643.tar.bz2=1390888cac6cd175e6f164eff378cdde ruby-2.0.0-p645.tar.bz2=d576240c97cfcc3ed9bdc457eb1e8280 ruby-2.0.0-p647.tar.bz2=27a3ea1a8b8bca1a6de43a7d08e88b69 ruby-2.0.0-p648.tar.bz2=3544031334f4665aa2eb1414babc9345 ruby-2.0.0-preview1.tar.bz2=47a0f662f0e258aa1c5e429c310861b3 ruby-2.0.0-preview2.tar.bz2=a645a783c3302cc094a9963a5e700a4d ruby-2.0.0-rc1.tar.bz2=24cebdda11e01ff4889ac983cd7dc02c ruby-2.0.0-rc2.tar.bz2=e92420131bd7994513e0bf09a3e2a19b ruby-2.1.0-preview1.tar.bz2=d32d1ea23988399afadbd21c5a7a37fc ruby-2.1.0-preview2.tar.bz2=9d566a9b2d2e7e35ad6125e2a14ce672 ruby-2.1.0-rc1.tar.bz2=cae095b90349b5b0f7026060cc3dd2c5 ruby-2.1.0.tar.bz2=1546eeb763ac7754365664be763a1e8f ruby-2.1.1.tar.bz2=53edc33b2f590ecdd9f6a344b9d92d0d ruby-2.1.1.tar.gz=e57fdbb8ed56e70c43f39c79da1654b2 ruby-2.1.2.tar.bz2=ed9b8565bdeccb401d628ec8d54a0774 ruby-2.1.2.tar.gz=a5b5c83565f8bd954ee522bd287d2ca1 ruby-2.1.3.tar.bz2=02b7da3bb06037c777ca52e1194efccb ruby-2.1.4.tar.bz2=f4136e781d261e3cc20748005e1740b7 ruby-2.1.5.tar.bz2=a7c3e5fec47eff23091b566e9e1dac1b ruby-2.1.6.tar.bz2=e1a8e6c6bfbb09bb7f8d6be8f508e4a1 ruby-2.1.7.tar.bz2=3a878e98311d543e5de3533b82ef4a5a ruby-2.1.8.tar.bz2=b17130b5f02a61640ae3b629af931610 ruby-2.1.9.tar.bz2=62bd1cbfcbc22e4d137462bce992f6d1 ruby-2.1.10.tar.bz2=5155c624807ff2418a9e9f15202954d0 ruby-2.2.0-preview1.tar.bz2=767b132eec3e70b14afe5884a7a767b1 ruby-2.2.0-preview2.tar.bz2=d7abace25a8ffe861cb2807bef1c58a6 ruby-2.2.0-rc1.tar.bz2=7144732d30dd4547c0a59862b3345d54 ruby-2.2.0.tar.bz2=d03cd4690fec1fff81d096d1c1255fde ruby-2.2.1.tar.bz2=06973777736d8e6bdad8dcaa469a9da3 ruby-2.2.2.tar.bz2=af6eb4fa7247f1f7b2e19c8e6f3e3145 ruby-2.2.3.tar.bz2=f49a734729a71774d4a94a9a603114b2 ruby-2.2.4.tar.bz2=c3d65f6d2ebe90dda81a37885ea244f5 ruby-2.2.5.tar.bz2=0c7edd1ff3650c3b74da2efaf641bf34 ruby-2.2.6.tar.bz2=3d13cf447142b8a11cd9beb7bc63fee0 ruby-2.2.7.tar.bz2=ca7224d80c08b015bc3b8c226d0914c3 ruby-2.2.8.tar.bz2=054d2e2904d5175662293e29c3bdb927 ruby-2.2.9.tar.bz2=575adf8ede6b1ca7236a5341e73536b0 ruby-2.2.10.tar.bz2=bef1909a4c885157870ef69548cdad3a ruby-2.3.0-preview1.tar.bz2=776000d74ec6dd34bf355ff6921c8311 ruby-2.3.0-preview2.tar.bz2=3ad442ccb337e77e4acaa4113f25b76a ruby-2.3.0.tar.bz2=f0d9f9bbdc87372ca98988a571875819 ruby-2.3.1.tar.bz2=c194281f63d7fcd816747fe78474be5e ruby-2.3.2.tar.bz2=9d00f3772f1c8fa5eecdfea089e3032f ruby-2.3.3.tar.bz2=04b9c461a2bc1eec0535ad1947cad4fb ruby-2.3.4.tar.bz2=99961e97566aee6d63635e2da4cf73ac ruby-2.3.5.tar.bz2=e1efc3d5a948ca1f552005efe5925513 ruby-2.3.6.tar.bz2=b2443b11ee80319a119f7ec0c9b8d79a ruby-2.3.7.tar.bz2=5eb580d5cd13ffb5aacfb96580c0043d ruby-2.3.8.tar.bz2=78045332e298dfd859ceef9fe946950f ruby-2.4.0-preview1.tar.bz2=64b8983b5f53d053906e394f734aa296 ruby-2.4.0-preview2.tar.bz2=1074e8dea5baa89af7f7c2d1d2b9ebaa ruby-2.4.0-preview3.tar.bz2=9f767e6bc61830735ea7dc9cd5a63653 ruby-2.4.0-rc1.tar.bz2=0f8b665acf4e883334adc121a42a206f ruby-2.4.0.tar.bz2=98f29161860fe1b6c65396717847a358 ruby-2.4.1.tar.bz2=07b2ae5d2f46321c95b37066c8415900 ruby-2.4.2.tar.bz2=5ff3ad6ec816bcce8806a55090936ab6 ruby-2.4.3.tar.bz2=ac8215ba561cc7c79b4f61daee11b706 ruby-2.4.4.tar.bz2=d994274eaa95b82aa5d31ec2188253c6 ruby-2.4.5.tar.bz2=45d70a8bb9397d818795ffe992163d27 ruby-2.4.6.tar.bz2=4abd13c50c1fc273a0a81a0ae74ed39f ruby-2.4.7.tar.bz2=1ce166ced489908993d78e8bb68325e0 ruby-2.4.8.tar.bz2=396d35f1a2d1deaf303f59cb5245d4ae ruby-2.4.9.tar.bz2=0b3447370651df55a2014a170c0cb1d5 ruby-2.4.10.tar.bz2=b10a7d2fcaf218c98edbaf57efc36e58 ruby-2.5.0-preview1.tar.bz2=889454189f41e271ae5ba15382911b6a ruby-2.5.0-rc1.tar.bz2=f5acdeacf56aced3c00ae6a8fa816bbc ruby-2.5.0.tar.bz2=63a6cd49546783d62de25a0ffc4aecc3 ruby-2.5.1.tar.bz2=5aaaf2fb4893214fa316516f3ac43519 ruby-2.5.2.tar.bz2=e90ab127e2ac3ee1d8840835e8ba1f13 ruby-2.5.3.tar.bz2=49aea0bf56d25351ccaf938c642400df ruby-2.5.4.tar.bz2=0c923215470f1debe593fe21e66fd37b ruby-2.5.5.tar.bz2=8f41b5cb683d48b5cb6cdfe03d135d6b ruby-2.5.6.tar.bz2=f2a74416ab3016434896194120796f04 ruby-2.5.7.tar.bz2=65597b69aa54bdca8745502c10349f96 ruby-2.5.8.tar.bz2=9ec96e7a590ef801ede294b6184c9c0f ruby-2.5.9.tar.bz2=9e905a545a729af1f1620ddfc2976fe5 ruby-2.6.0-preview1.tar.bz2=1ce507e27fa02aeb36100dabcf1da94f ruby-2.6.0-preview2.tar.bz2=e45011116334d21857b9e1712a01e6b3 ruby-2.6.0-preview3.tar.bz2=b326ceee3d3756f892515009e148f4b2 ruby-2.6.0-rc1.tar.bz2=40457a72e36cbecd0c51d9f895347302 ruby-2.6.0-rc2.tar.bz2=9665e6d886a9da2d4076fa75836798f1 ruby-2.6.0.tar.bz2=d3372daec93f83e7a91c669821053014 ruby-2.6.1.tar.bz2=73d19ac478db1a178be5ae2f2fb8c9ec ruby-2.6.2.tar.bz2=658fcc0da15578c2420ded807b11cce1 ruby-2.6.3.tar.bz2=52e609b756735115814b9c8463f185e2 ruby-2.6.4.tar.bz2=d9b35753c65f54c745ab6b0094511839 ruby-2.6.5.tar.bz2=d1b89c88effb71d75cd7ef77c35e1985 ruby-2.6.6.tar.bz2=abc030870bfbe18ae9c356abebd95cb6 ruby-2.6.7.tar.bz2=46f24740181f91247c72f19d52334379 ruby-2.6.8.tar.bz2=c53761123d17e929cfe248f50429bcab ruby-2.6.9.tar.bz2=ddc24495adaf215c8ee40630b4a55041 ruby-2.6.10.tar.bz2=6ad76db639ab308e3b6c19408729a0cf ruby-2.7.0-preview1.tar.bz2=82fab0496947acd847a6b2eb758acfc6 ruby-2.7.0-preview2.tar.bz2=966a544ab59114591898403c23d91397 ruby-2.7.0-preview3.tar.bz2=2fa6c213774744b287e7e0212b43f626 ruby-2.7.0-rc1.tar.bz2=48a8837cb352f5b95e97a1ae0d62a9d0 ruby-2.7.0-rc2.tar.bz2=cca58fdb8c5e8be8273842d54199c42d ruby-2.7.0.tar.bz2=89347748b7414f5bc7aeb8f4a87ebef4 ruby-2.7.1.tar.bz2=4bb2b2b2f0c6953859e30af140cf249a ruby-2.7.2.tar.bz2=a8acc9c24708fe29dfc287823ecaae65 ruby-2.7.3.tar.bz2=604acb258b1d8228f55799e846cfe6d3 ruby-2.7.4.tar.bz2=52705d799ed851dd3bfd5634265cde46 ruby-2.7.5.tar.bz2=d97d4377eee18b0e790510c3afed648c ruby-2.7.6.tar.bz2=1b6efacb9f129d0253d8a9faa9c21f99 ruby-2.7.7.tar.bz2=63c55e75150251d3ba092b662138e4af ruby-2.7.8.tar.bz2=f44dedf51fdb7441a7dba592d6a4a14d ruby-3.0.0-preview1.tar.gz=991df063b86a8f8412ca07f548579f39 ruby-3.0.0-preview2.tar.gz=ce14b24e923f2e269fea6441791a7248 ruby-3.0.0-rc1.tar.gz=848a8628c8abde270b66e2474049a4a3 ruby-3.0.0.tar.gz=d6af36269a1b0bc278236d371543ad97 ruby-3.0.1.tar.gz=8d1c460a9a9d48a353de3eb0f338bbfd ruby-3.0.2.tar.gz=b973af486291a1e17ad50d88472bfa86 ruby-3.0.3.tar.gz=9ecae293da9547c1438a970f04f64655 ruby-3.0.4.tar.gz=ec9de9a15acc4f205b08816d94267415 ruby-3.0.5.tar.gz=cdff2395625dc1d632fc5400c8fec103 ruby-3.0.6.tar.gz=6b5a7b14505697e6fc2b40b345679f40 ruby-3.0.7.tar.gz=147a3467facc704b5d479e809c131603 ruby-3.1.0-preview1.tar.gz=d131b9bca700ee87ea276f8233ea4c0b ruby-3.1.0.tar.gz=1ca89d713f2c18a20104befed51b3b9a ruby-3.1.1.tar.gz=702778a0ef8b7a01ef7530a541002e19 ruby-3.1.2.tar.gz=9daf064899cccc32fd564117c7a7e0dd ruby-3.1.3.tar.gz=cce38a2b2c589d59f440f67c7d8cc697 ruby-3.1.4.tar.gz=3e601ae6db76a487219a1084e5cb4c9c ruby-3.1.5.tar.gz=ce1e92ddb1230fa2d4f4367882542555 ruby-3.2.0-preview1.tar.gz=a83c91d53e130fe232e4c27ecc8738da ruby-3.2.0-preview2.tar.gz=56e7801b37612b82285c9a09cfeb28ce ruby-3.2.0-preview3.tar.gz=0ed16faae50403b4e2ba2e85ec2314a1 ruby-3.2.0-rc1.tar.gz=4657d7013702adce21ca21dfe71ea4a0 ruby-3.2.0.tar.gz=76ca7e7d71898ab1e85155d69403754e ruby-3.2.1.tar.gz=055101c924538467c63fcbf42abddc75 ruby-3.2.2.tar.gz=eb6f18605e1e1be5dfb5b45f31bf6a93 ruby-3.2.3.tar.gz=e0ba90554f7ea41c587ffa7fcfd064ca ruby-3.2.4.tar.gz=c48283a23c72d7aae19b7f510b89444a ruby-3.3.0-preview1.tar.gz=0833f555b1b8d5423953600fb4146639 ruby-3.3.0-preview2.tar.gz=4f82f4c9e512ec0a53baa1be8d35ebf7 ruby-3.3.0-preview3.tar.gz=a32ede198a9da50d4afc4421a4a993ad ruby-3.3.0.tar.gz=f57422a0f995cd5a93c726f6c42c310a ruby-3.3.1.tar.gz=368e331a35145ace4948390ed76cf1df ruby-3.3.2.tar.gz=9a7efebc6a0e4810c716ec6d401dc372 +ruby-3.3.3.tar.gz=beb9773cc4d9d8da29463ab175e4db28 ruby-3.4.0-preview1.tar.gz=93b9b1040a2dd7be7514a7870aa7da03 ruby-enterprise-1.8.6-20080507.tar.gz=17e3c52e73e42809f57ad0000a6cb4ab ruby-enterprise-1.8.6-20080621.tar.gz=626fc3811eee2dc92ac27ea63d37a8b2 ruby-enterprise-1.8.6-20080623.tar.gz=0bf8a3a93c6b37bb1260cc09b05e81fd ruby-enterprise-1.8.6-20080624.tar.gz=de58b97128aa65209f291c66eab7c4a7 ruby-enterprise-1.8.6-20080709.tar.gz=f0ded08cec64959fa388ec6a237b9c47 ruby-enterprise-1.8.6-20080810.tar.gz=bfdcf06f437af825cd9f2d321f9d1896 ruby-enterprise-1.8.6-20081205.tar.gz=50206bec9be2e08a862e5ec2e70fa693 ruby-enterprise-1.8.6-20081215.tar.gz=aab57b7d5061c1980bec5dbe311ec9b2 ruby-enterprise-1.8.6-20090113.tar.gz=e8d796a5bae0ec1029a88ba95c5d901d ruby-enterprise-1.8.6-20090201.tar.gz=a965e6789b553efaed72191825b13713 ruby-enterprise-1.8.6-20090421.tar.gz=c777b361aadccda7988be16ede7ab15f ruby-enterprise-1.8.6-20090520.tar.gz=156572a8296bd0440970a6bb95018a13 ruby-enterprise-1.8.6-20090610.tar.gz=0bf66ee626918464a6eccdd83c99d63a ruby-enterprise-1.8.7-2009.10.tar.gz=3727eef7b6b1b2f31db7d091328d966e ruby-enterprise-1.8.7-2010.01.tar.gz=587aaea02c86ddbb87394a340a25e554 ruby-enterprise-1.8.7-2010.02.tar.gz=4df7b09c01adfd711b0ab76837611542 ruby-enterprise-1.8.7-2011.01.tar.gz=4640634347cd8e5469cb718853e2112e ruby-enterprise-1.8.7-2011.02.tar.gz=8c5faa11c1ddaed3f44b7294711980cc ruby-enterprise-1.8.7-2011.03.tar.gz=038604ce25349e54363c5df9cd535ec8 ruby-enterprise-1.8.7-2011.12.tar.gz=1e5f3059d52a67ab5d91d472b756de08 ruby-enterprise-1.8.7-2012.02.tar.gz=8d086d2fe68a4c57ba76228e97fb3116 ruby-enterprise-1.8.7-20090928.tar.gz=ae00018ce89d95419dfde370fcd485ac rubygems-0.4.0.tgz=86a64616548a793e1a5f825f0dd385b9 rubygems-0.5.0.tgz=80d151edd94a06bcd2452a7e272b4d96 rubygems-0.6.0.tgz=5df803f5a04654833690dd32283de741 rubygems-0.6.1.tgz=c4a0faa9f876ad805ae80d1396a29d97 rubygems-0.7.0.tgz=ede9b55343219e8b3491793aa12c46f3 rubygems-0.8.0.tgz=9ef6e3c34dcb54e295c8e57321ddc079 rubygems-0.8.1.tgz=6276d268b420c0d61796cdbf6d28dae4 rubygems-0.8.3.tgz=6e6da80f61d6e77d0ad9e531767f6fd5 rubygems-0.8.4.tgz=a2ad2d03dae8a98002c2a7cd6c3ed352 rubygems-0.8.5.tgz=b917c084e1e6e99d8e102af8dd687ddb rubygems-0.8.6.tgz=9de98d2f62e3f91521b0207a4dcdeb5b rubygems-0.8.7.tgz=7fc04b9f9acc0c18cbbe6222be8d0bd3 rubygems-0.8.8.tgz=a8535e9c35a4c215d6ef9268d4bc69ed rubygems-0.8.10.tgz=d26592e280c0fb24c51f2837c3f48e67 rubygems-0.8.11.tgz=aa363b428c4c1fc2e076a4ff77b957d7 rubygems-0.9.0.tgz=5d496e1f415b8b4033ab867f01d1161f rubygems-0.9.1.tgz=a62314cdb174ccc88a27b8924fa79e4a rubygems-0.9.2.tgz=cc525053dd465ab6e33af382166fa808 rubygems-0.9.3.tgz=600940a22ecd79e28e0fd37ad1f1d871 rubygems-0.9.4.tgz=b5680acaa019c80ea44fe87cc2e227da rubygems-0.9.5.tgz=91f7036a724e34cc66dd8d09348733d9 rubygems-1.0.0.tgz=b0b74eac0cbfc5a13f895ab6f803edc1 rubygems-1.0.1.tgz=0d5851084955c327ee1dc9cbd631aa5f rubygems-1.1.0.tgz=85f994904c5b4045f0a859b29d0be717 rubygems-1.1.1.tgz=1a77c5b6b293a3ccd5261dc120641ccc rubygems-1.2.0.tgz=b77a4234360735174d1692e6fc598402 rubygems-1.3.0.tgz=63d3dfc038710eaf532b6a133225115a rubygems-1.3.1.tgz=a04ee6f6897077c5b75f5fd1e134c5a9 rubygems-1.3.2.tgz=6204d0a4c526a1d8fdbce746647b179a rubygems-1.3.3.tgz=0e9697db44d812712350baf28016b4a7 rubygems-1.3.4.tgz=b17b398503253bf36a101c58f02a226f rubygems-1.3.5.tgz=6e317335898e73beab15623cdd5f8cff rubygems-1.3.6.tgz=789ca8e9ad1d4d3fe5f0534fcc038a0d rubygems-1.3.7.tgz=e85cfadd025ff6ab689375adbf344bbe rubygems-1.4.1.tgz=e915dbf79e22249d10c0fcf503a5adda rubygems-1.4.2.tgz=b5badb7c5adda38d9866fa21ae46bbcc rubygems-1.5.0.tgz=49bef7186bf3c0ca6ee7adf4b585bccc rubygems-1.5.1.tgz=47577a5e33c9c6f1e3a56aff7f51d0ff rubygems-1.5.2.tgz=3951f94c09c16c774c8bcebc94fa5374 rubygems-1.5.3.tgz=38bbbdc17aef923fb41f054cf8421116 rubygems-1.6.0.tgz=abd27b5a9002100ff74ddb398a1c9689 rubygems-1.6.1.tgz=a77c64896aaa10d64aaf34f5c1488173 rubygems-1.6.2.tgz=0c95a9869914ba1a45bf71d3b8048420 rubygems-1.8.6.tgz=8e95d0c5b377a003f3d54a49461e81d9 rubygems-1.8.9.tgz=fc399445d693c29778779e5828ee5e90 rubygems-1.8.10.tgz=5b08ee31740c9b0bd36f6c04d537e7d4 rubygems-1.8.23.1.tgz=5259ce3eb7988950fa3aff9051a5de91 rubygems-1.8.23.2.tgz=fb377c7fd387df14a33e529153adc316 rubygems-1.8.23.tgz=178b0ebae78dbb46963c51ad29bb6bd9 rubygems-1.8.24.tgz=3a555b9d579f6a1a1e110628f5110c6b rubygems-1.8.25.tgz=1376a258d43c53750a8df30e67853e10 rubygems-1.8.26.tgz=0ea47f1efd010f4c82b8a51a934f48dc rubygems-1.8.27.tgz=6686ad26735c21d0d6e58b6192c7da5d rubygems-1.8.28.tgz=2df78039f391fb1f71c02c2fc5671c94 rubygems-1.8.29.tgz=a57fec0af33e2e2e1dbb3a68f6cc7269 rubygems-2.0.0.tgz=89ce467eb2d55657e9965a46559acbcf rubygems-2.0.1.tgz=2652ab6f001a873b8933e2ca09505974 rubygems-2.0.2.tgz=3471f140a70bcd32a7495b545cfce790 rubygems-2.0.3.tgz=854691f145cea98b4100e5b0831b73ed rubygems-2.0.4.tgz=3ec32dbe783bab37a87f50758f8efe13 rubygems-2.0.5.tgz=641d82672937d40d664dbc18f49cdcec rubygems-2.0.6.tgz=0633f50db16112bf6c3cf9bfb9ceb9bd rubygems-2.0.7.tgz=9046700f1222712fedfb836fafa08c50 rubygems-2.0.8.tgz=5432214a740c0d13482e43a5328a6518 rubygems-2.0.9.tgz=bc55898247297ffa190223276b1b1bd7 rubygems-2.0.10.tgz=5457ba403cd9a5f4f5fb2ef4a2a1c03e rubygems-2.0.11.tgz=0f28e3fde3348c0f23ceecba73a6cbef rubygems-2.0.12.tgz=99c416517e2de1146d2c6fbb4c4c1441 rubygems-2.0.13.tgz=3970e66a670ddb6d1aade9c7b18033d4 rubygems-2.0.14.tgz=4a7aa0b144e465230ab5d7b59dfd7e8f rubygems-2.1.0.tgz=9a9d242baef5e58fbfe79ec5206cd316 rubygems-2.1.1.tgz=b34d6f4028b69a84123a6b7cb0ac8028 rubygems-2.1.2.tgz=b5c5c4430be60f911014216d41886ef3 rubygems-2.1.3.tgz=ac7bbdfecd49f9304756aa5ebeb51400 rubygems-2.1.4.tgz=aa502b1ea90fbdd14ca9b32634795c2b rubygems-2.1.5.tgz=60564b762d4e186815997653b1c876ab rubygems-2.1.6.tgz=e11237a8f87dbd8c085770551d64a8f8 rubygems-2.1.7.tgz=b721ed7d5fd57ed05f77eb21a3a592ee rubygems-2.1.8.tgz=cc4c84c0482840389a457740e8083ed9 rubygems-2.1.9.tgz=2636bf26c0a9ec889c7bd938887bd9a3 rubygems-2.1.10.tgz=6fa671d7d6605de73d16f529cf7bffb8 rubygems-2.1.11.tgz=b561b7aaa70d387e230688066e46e448 rubygems-2.2.0.rc.1.tgz=f7d80b612339169569f2675155c202f1 rubygems-2.2.0.tgz=3c16e50673adb99d1ce76d5231f764bd rubygems-2.4.8.tgz=dc77b51449dffe5b31776bff826bf559 rubygems-2.6.10.tgz=ab5a0028d2a0653691b29d7463bd0892 rubygems-2.6.11.tgz=8d514b836fcf3ae2c20b4fe8d5cdc3c5 rubygems-2.6.12.tgz=7c454ef88b716c1a123f62b26bb9612b rubygems-2.6.13.tgz=e6f19b51614055d826e431549a12a80b rubygems-2.6.14.tgz=e0a6914ce03b91dfc6d448ebf292f145 rubygems-2.7.0.tgz=771c40015538c0f225c5249e4bc7d441 rubygems-2.7.1.tgz=65646f28f3c36ccaa7f991c17e15b8a9 rubygems-2.7.2.tgz=312a238ed98a61d2b3d165b790b6062b rubygems-2.7.3.tgz=fb3a1927a1842b75677a24f48dd63ddc rubygems-2.7.4.tgz=e9bbf5a4cc9a74293884b91f49603ea0 rubygems-2.7.5.tgz=516a4f219976003feb4b4f797cbc66b0 rubygems-2.7.6.tgz=366cea352c2b1243db726013c3d76fc4 rubygems-2.7.7.tgz=b6721f6ce4af08f68c6f513bbddfe484 rubygems-2.7.8.tgz=a3ed89a34e1ae8f9da0c620a8aa35f12 rubygems-2.7.9.tgz=173272ed55405caf7f858b6981fff526 rubygems-2.7.10.tgz=464754059d8ca01c1121a1233d866e8c rubygems-3.0.0.tgz=3908105894e531f7ad3aceb8b41dcbcd rubygems-3.0.1.tgz=1e8af9b87a67f15841ad2be7d5725a5f rubygems-3.0.2.tgz=d8db1b516ae1e35b8f6f56cb526f879a rubygems-3.0.3.tgz=b7a7dd5f85485334a6cb61b7dac20cff rubygems-3.0.4.tgz=7d0c49077a2d19f48d88567cfa3cf17a rubygems-3.0.5.tgz=4664467d621d719688e4778d147c306a rubygems-3.0.6.tgz=60d84e843b131fb87c8fd67e8fac6470 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=3e9afdf72f153e2f66259fc2b6fca594 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=c30459287aec83548cfcb17340fa73d5 truffleruby-1.0.0-rc3-linux-amd64.tar.gz=138f6814451ce634b0fae3aca5579248 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=94ed54ecb65bea2166a2159431b0362b truffleruby-1.0.0-rc5-linux-amd64.tar.gz=9e5428611e22b093d05afebbe0ccbc2b truffleruby-1.0.0-rc5-macos-amd64.tar.gz=b32a254fed71434c3431fb2effb35c5a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=7f394a8c7fe356b7bd36683c57f74ebd truffleruby-1.0.0-rc6-macos-amd64.tar.gz=f033329d03f1f846d25728c2af9d7524 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=184e98f2d6939f63db4b915943ff60c6 truffleruby-1.0.0-rc7-macos-amd64.tar.gz=d19213b33011f7a55e0f32d25e19184f truffleruby-1.0.0-rc8-linux-amd64.tar.gz=a394167c0331c6d8c1123e1f992e5411 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=dc1bf0fcfdd5837ae0ca56d6d6e5f7b0 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=f6ec25bd532bf0551d35327d1aa4caf9 truffleruby-1.0.0-rc9-macos-amd64.tar.gz=c80a345f9071521cf1961ab75ebc7dd1 truffleruby-1.0.0-rc10-linux-amd64.tar.gz=3a889726efcdf33feb7ef3df13fd5f39 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=bba618b4483b79eebf9f0e7af4078502 truffleruby-1.0.0-rc11-linux-amd64.tar.gz=a25e179ca0be96a1bc737a600729c195 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=bb8d8f5525e1ba86bb039e56291c6c7c truffleruby-1.0.0-rc12-linux-amd64.tar.gz=872774837057489250527bf863192115 truffleruby-1.0.0-rc12-macos-amd64.tar.gz=bb4a64e6c4882fd0c5e412bf9c57720b truffleruby-1.0.0-rc13-linux-amd64.tar.gz=0f36eed2eb36846785fdd4eae24adfa0 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=1bd3087a0f2df4c006b87c9488ada6d4 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=9eddd1aa98c9649e7c01bb10bf28c471 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c93643f1d00b370411310ee7a1dd5330 truffleruby-1.0.0-rc15-linux-amd64.tar.gz=bc7339a6218ea991f2c72ce8759cb6e3 truffleruby-1.0.0-rc15-macos-amd64.tar.gz=1671d08dd2f5026d58b326fd55c9b7de truffleruby-1.0.0-rc16-linux-amd64.tar.gz=5564d17f19b8ee0edb96ab5b1bfbda98 truffleruby-1.0.0-rc16-macos-amd64.tar.gz=61583b529b6a1337398b0966db952d24 truffleruby-19.0.0-linux-amd64.tar.gz=006220c7bde7d0b5c72481133624a83f truffleruby-19.0.0-macos-amd64.tar.gz=9ef7f5a311465d35e54ac6e00ec3d169 truffleruby-19.0.2-linux-amd64.tar.gz=2f7fe574e0695fb6001f4f5282aa2f79 truffleruby-19.0.2-macos-amd64.tar.gz=aa20f76b3eac1f4976a507364201d1ad truffleruby-19.1.0-linux-amd64.tar.gz=71368f8371069017d911528f052b0a55 truffleruby-19.1.0-macos-amd64.tar.gz=7f086adbc89fdfaed35273394ac3ac66 truffleruby-19.1.1-linux-amd64.tar.gz=c1ad4d17bb40e214b124222f3a7c6db6 truffleruby-19.1.1-macos-amd64.tar.gz=f4e76b0612319b4a82480cbd1fc90210 truffleruby-19.2.0-linux-amd64.tar.gz=458ed5fec1a849ef5b00e19b0e25d5e9 truffleruby-19.2.0-macos-amd64.tar.gz=dc324575ad20e3054980835c24ea7161 truffleruby-19.2.0.1-linux-amd64.tar.gz=ad7444145550d89931199159163077c1 truffleruby-19.2.0.1-macos-amd64.tar.gz=b5bcfb0aaded1e2d1763089ab6c9a14d truffleruby-19.2.1-linux-amd64.tar.gz=fc4879d2b0cc22c152a8bf893a72c346 truffleruby-19.2.1-macos-amd64.tar.gz=71448ff3f8f1da086f222751d3f853bc truffleruby-19.3.0-linux-amd64.tar.gz=dd44ac30b5a1ef3a7d61172cda9b30b6 truffleruby-19.3.0-macos-amd64.tar.gz=41daa52f0f308abb77a2b91c1b7e0f3d truffleruby-19.3.0.2-linux-amd64.tar.gz=2db2cb5c29523c9bdb6f59dfa0bd74ce truffleruby-19.3.0.2-macos-amd64.tar.gz=edf1603643938686dce57139aadf7d3c truffleruby-19.3.1-linux-amd64.tar.gz=a14c028351f7a3965bcb56e9b22364de truffleruby-19.3.1-macos-amd64.tar.gz=a8707d0af3eda694ec07a5387d3443fb truffleruby-20.0.0-linux-amd64.tar.gz=b30110ecbc50c4fce402fdf44c45dad5 truffleruby-20.0.0-macos-amd64.tar.gz=0671e5909cefb9a2c12c473fc0110821 truffleruby-20.1.0-linux-amd64.tar.gz=4592b5fc3636d82fc998ab6fe0a43584 truffleruby-20.1.0-macos-amd64.tar.gz=3c0be43db86817c7037d3ff5053d322d truffleruby-20.2.0-linux-amd64.tar.gz=e9859decb24829f9a189d88b3c2e9b79 truffleruby-20.2.0-macos-amd64.tar.gz=49e7ccf8f9e60d6c59b3b07b854466cf truffleruby-20.3.0-linux-amd64.tar.gz=93a20845f7d9d39100761424dfc0a734 truffleruby-20.3.0-macos-amd64.tar.gz=b178b7a94fac58400450417612fe3441 truffleruby-21.0.0-linux-amd64.tar.gz=c03304a505c8699e697acecf5030d95f truffleruby-21.0.0-macos-amd64.tar.gz=019796be37a58ef8e186a625f2ff5d07 truffleruby-21.1.0-linux-amd64.tar.gz=065bfcc48f6925410e0da21e16428b64 truffleruby-21.1.0-macos-amd64.tar.gz=325f6854c10d8a3a114c80da582c469f truffleruby-21.2.0-linux-amd64.tar.gz=0aec44721a040845347f18c1f72ceb75 truffleruby-21.2.0-macos-amd64.tar.gz=76d27715b20902df5779f7a0c00852b1 truffleruby-21.2.0.1-linux-amd64.tar.gz=f68e9b8a9f9cae5efc5ac45a7d9e760d truffleruby-21.2.0.1-macos-amd64.tar.gz=b021e50fc94cab590b49d27f2ea821b0 truffleruby-21.3.0-linux-amd64.tar.gz=359aca79cba4e08f9955d9c6543c2189 truffleruby-21.3.0-macos-amd64.tar.gz=d9e2e2c6fcd3ac16f0c37b0ccffb4f41 truffleruby-22.0.0.2-linux-amd64.tar.gz=324327026e9b2963a8e5fb4ee3f4e216 truffleruby-22.0.0.2-macos-amd64.tar.gz=7029d0e291d498a264d9b413729a3e17 truffleruby-22.1.0-linux-amd64.tar.gz=9329cf507ba8ac529e93156cacc1425d truffleruby-22.1.0-macos-amd64.tar.gz=353242978b46cafc34b05e2c81206096 truffleruby-22.2.0-linux-amd64.tar.gz=5d676377056ae94fe847be721c20405b truffleruby-22.2.0-linux-aarch64.tar.gz=b774f4b7d330842521f1e6e56cb41db5 truffleruby-22.2.0-macos-amd64.tar.gz=e45fdd9a05aec6220a76fb707b0a5ae8 truffleruby-22.2.0-macos-aarch64.tar.gz=ebcbfe056d90d06de4bd0a9d699bad8f truffleruby-22.3.0-linux-amd64.tar.gz=ada8bc5dc52aca8317eaeab04d91e877 truffleruby-22.3.0-linux-aarch64.tar.gz=11493301d5519aa73e8f0e140cefb581 truffleruby-22.3.0-macos-amd64.tar.gz=9e27c677637b69b0460fb0a4569a5cca truffleruby-22.3.0-macos-aarch64.tar.gz=eaa1c9020b521226f8bb48b8c7e5c596 truffleruby-22.3.1-linux-amd64.tar.gz=243d926f038fd2220c03dfbe40ef58c3 truffleruby-22.3.1-linux-aarch64.tar.gz=01487fe680863381489bf2a0a2ac162b truffleruby-22.3.1-macos-amd64.tar.gz=b3d5a777d94856e51034d81076e8ef72 truffleruby-22.3.1-macos-aarch64.tar.gz=320ce75730a5b9f16f111eb7ef5e4e09 truffleruby-23.0.0-preview1-linux-amd64.tar.gz=76c1cb23ee63ba4de93a0c23784bfca9 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=eec3fc74565f08e9468982692f7f9010 truffleruby-23.0.0-preview1-macos-amd64.tar.gz=50e38f3cd548dfe78f397f76ed577bf1 truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=b769bcf9b843d9b2980def1e2139284f truffleruby-23.0.0-linux-amd64.tar.gz=6e1a491406c5dbf42de10fcb3ed7dc1c truffleruby-23.0.0-linux-aarch64.tar.gz=5c3663f64bee707173b2684355a9a42e truffleruby-23.0.0-macos-amd64.tar.gz=515a9a8a0f39ba9399e869cd418ebff5 truffleruby-23.0.0-macos-aarch64.tar.gz=57e5fa52270e692b82c445107fe6b6a6 truffleruby-23.1.0-linux-amd64.tar.gz=f7511c19045e57e72f9b5415bc17c8e8 truffleruby-23.1.0-linux-aarch64.tar.gz=e8a20dd919a2ff77b7cc5457e853d15d truffleruby-23.1.0-macos-amd64.tar.gz=d3b6a3cbc0a230ebae6f3a462a32ddd3 truffleruby-23.1.0-macos-aarch64.tar.gz=ee74fc5d192c2fb8afd0458d2d429c02 truffleruby-23.1.1-linux-amd64.tar.gz=d7e1c040da170aaa36b5f5a1d106d237 truffleruby-23.1.1-linux-aarch64.tar.gz=cf508ba3787be20c03bac690f3bdbac5 truffleruby-23.1.1-macos-amd64.tar.gz=a662a8672871524808500dddef3808c1 truffleruby-23.1.1-macos-aarch64.tar.gz=de543312024993a533e3caa63b396127 truffleruby-23.1.2-linux-amd64.tar.gz=e3e5b01b291d7fea61be2be842c7e8dc truffleruby-23.1.2-linux-aarch64.tar.gz=8fe26f643fa81eec6de3bde7024c858a truffleruby-23.1.2-macos-amd64.tar.gz=83bc41bf699fa847df7e60412bee2823 truffleruby-23.1.2-macos-aarch64.tar.gz=7dbd2e182cfec0cf2d2e37784721903f truffleruby-24.0.0-linux-amd64.tar.gz=202f05706d28faca75d5e3cd0f9bef78 truffleruby-24.0.0-linux-aarch64.tar.gz=4faaf4edde4f6a516246b7c2f4ee80b3 truffleruby-24.0.0-macos-amd64.tar.gz=d07f27e0e29398c6de836b0049105c12 truffleruby-24.0.0-macos-aarch64.tar.gz=10cf176718968893468caba617c02141 truffleruby-24.0.1-linux-amd64.tar.gz=2914bfb81b136cd1fb5736c0a40068e3 truffleruby-24.0.1-linux-aarch64.tar.gz=429e6ada9a95ea23ebb95d01f90eb0f4 truffleruby-24.0.1-macos-amd64.tar.gz=e3aa5ab128f5d169d93f2d6df98c4e77 truffleruby-24.0.1-macos-aarch64.tar.gz=6f81a1afe1b89a40f00c9bd4216ec45d yaml-0.1.4.tar.gz=36c852831d02cf90508c29852361d01b zlib-1.2.3.tar.gz=debc62758716a169df9f62e6ab2bc634 zlib-1.2.5.tar.gz=c735eab2d659a96e5a594c9e8541ad63 diff --git a/config/sha512 b/config/sha512 index a5bf5d4..c5b4517 100644 --- a/config/sha512 +++ b/config/sha512 @@ -1086,645 +1086,646 @@ https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.1.7.tar https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.1.8.tar.bz2=8f8829fda202863105c0453ad40e1f8806833446d44fa01f97e742e83cb086da7eeaf3349899c9120879395ede20a192ef4546a00062585e47b6b2fe2253c89d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.1.9.tar.bz2=3c249490017b902b43e58a199dc420b9dc038ec139949d9bc620f58a70c7f8dd093d12313f695899ad53ee314c4bdcfeaa50cb72c196b889f38faa22936137c3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.1.10.tar.bz2=6bcfe2a2983f6b476adfb7863c9b483aa0c7cd84abd70c59f4de427ee6274bed71200cd91269bc0b3cd418645aee6371cfd3cd77e93b98a2c6c64efac6e817d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.0.tar.bz2=e610c0029dd68d15b582f09086ac39a6e5d039ffa9c18e5fefaffe4b0279445258050327bf7c02c8ef672a7ec58a32f5850c044d9083694d0b55424f2b75e945 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.1.tar.bz2=d841aff173f5a0af71384b56e1430395b287a771f80131279e22647e368acb20b5c22e5c0d4858510525b9783da499b6f6fade081e1d37fac3fe7a50cb34cee0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.2.tar.bz2=17be6eea903f162178edae84c67f263b9532405c0cb5bb320fa51b019869d114e0dc4ad7fafd6cb2597e45b73d4777d3c4e0d4f22141de30bd2ad02ccdd41ee3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.3.tar.bz2=8dd4bb1cafb2d82586b199bf032edaf23fd9bcf8a05b7e2087de172b8a8c6c4fb96584fb15372033b97bbe11a7f8aab25057c03d71e5ee21ec4a647f95687413 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.4.tar.bz2=54f9fceb0496f647b3c59dd7411a583c74e7886d8f127aba10379de739c85e45d62c2688280ba5d21a45c5054f42a2645ac2a9d990ec1a16cbb2c533edd9eff4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.5.tar.bz2=1aee7aa974a08c6bb5a29b0782efa2950c1e530bc2100e018d66450e8e89701673a034a45adcf70bdc37f52d4027ae263d7e4410d64fc637b594ad624f10a25c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.6.tar.bz2=693173e4e235300cf30ce1592bada6aba5bb29a123157aa419ba8403757682cff31c9b2b0a4e97daed557953f52c26ebe0e49605e1d12f5e4247e0096d736630 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.7.tar.bz2=8af3b57425f7cac45e7bc61029f872facc87e9ffeb3243f8fb43407cbc0a581491f38091b0fa45c8c148b730fd8cd493aa5286177b68092d7944dd73ba585299 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.2.8.tar.bz2=f1a7801bd0116914a055ff4013840faeac0e432b55aaae4c0bb61eda3d812eb5b3093c2c536fd9e2e28eca81137300f84418d8bc8dd9e48ffe245ad90dd3eab7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.0.tar.bz2=e1fea7c85410615f76b02df366ee49f929cd3bf3e52c3fef8b848a8a6d2b982de03c325aac664c6550b216a11cde64ae571bd5a5467ddd4a8b61039d874b2955 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.1.tar.bz2=e8b6b5dafc4b46e97fd905a5396d09ee1cfd1c0b4b74b9c3bd9e1056684f05345ac1599817cd9cb1dcd410e4e3ea23d5f2fc86da12e01fd076434c1b2917f117 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.3.tar.bz2=8172c35a381adfdbf0f90fddf526e3a5c5d4590e133e041aeb339137c1c31f16a47b904c61048c29906dfd2245572dd69caec507432628bbc98bb3eb94891575 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.4.tar.bz2=fe9370f2f45c557fd24574219e9597826f4614a8c59f092bce54338a2e927d16bfd4abbcaf0203a60a35a11169310d45e79c4a33fa4d45916bd6e4eefcc7b888 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.3.5.tar.bz2=e42fe5b628b6a6cfc87abaadbd9140cbc5c0000993c3272740ee6e20d07d2bacffe5148213f9628d6bc6f97211c0905e55d7bd304763ae095d86df8c2b2d15fa https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.0.tar.bz2=baadb5c405fab06da091e75af6497370757cb694d50c9f76fb06bc0a281df13f4ae893df49657c7dd7e86dfbd052d2cb7297961f9739cda4089ed71e52ae7bed https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.1.tar.bz2=71ad68ef1317ce5ba51353cc226fc7b11923d9022770b355cb1180be7c2ba4bdd87b079a8dec15c09ef3ad42056018a41a603bd0a10b8124433f36b0930153d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/17.04/x86_64/ruby-2.4.2.tar.bz2=440f27f682a7f9d2a99ff8c0687c1fecebd8bce494b9db48ab9d303250b8ea12dee51eed0f68d940f141d8e2699653fca7d2a6811eddc5c512a9fe39430fde3f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-1.9.3-p392.tar.bz2=3582744ce4a4ca8b497c918e129823167e80909367d65484c2a09a8e6fa185a38bfda8c1b6676742acb492472d0687fc5b6eb18965201e0f54268d835f618df4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-1.9.3-p551.tar.bz2=fc04b976fa02fc5c1cd4ccdd49948b5e289b3a5bba16ef99266b65fbb35f0c20a0ed02d5b147f2fc4469db6a7b6665d34e0373dba242ff04c95fa27642cfde1e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.0.0-p648.tar.bz2=7dd451549e9c1a43ef86be51eaa746344c424d1accbc9cfd360067c3aec20db8ffee277e1108d40c280f1b8ec0851c6e51bc448f25505508d9af153878d9b091 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.0.tar.bz2=cfe087a9daa6de2ef00a6501d568a25a3386da730304697e1bdb9fbb098617a143f073e58629876de4f09a1e8a60a48ec05864fcbccbd6733d9e1b3d309a1100 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.1.tar.bz2=b74cc64103a31b9b9545474fe202ab9f9b15569681262438056865e4dcad08419c44bb696c7dc8a18f72b3bd8e5e98201d0c3608ea652c907372c3c95cb7e16f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.2.tar.bz2=fafffbcd24eb3c55c89704e6e8ea48ad6be286bbb4e38f56c3b3d61f9bf4f6bec28882da2ff60f17f79516476ae50cc4cb8c6a8cf4a0f31b910d6153727caed2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.3.tar.bz2=4daaf8bba3a04d46e04720ff2af1469e1caa68168f5c27d1d3e0cab922055b1f9c0b26ee64c3cb46c17b6a9651ee7a11bad19e9414102455e96454f1a7929408 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.4.tar.bz2=988c13e900168b901a3a3deb4bb96e19b15205cf4c2793b56854b58924fff652946a083be6615b2053fb5285df0fd218d1f9f91562798f0386f0758973765dcd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.5.tar.bz2=c7396627e45d8df68b18c2491fa756085aeb4ec28c1cc707617cd903fcd47d4fdd3cd6ed225dccc14497afb14200b9bea5ba38f1e8dc621c4aea8b8f0f1ccc7d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.6.tar.bz2=389aa514d93d165fe299856a5348b1667f295aaeb49094bb5ff49e9c6861bac603e698c36bf81777797d05a1d3c405e37c1a00a4dbb85f262bf02c1b0e16ff04 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.7.tar.bz2=5a38bc1dd227658347114b935ad66e27fab67b8da9529a7f9083d6aac5743c40aea8c33ca95d4f10ed1d56f29bcc2c0747a3e88b87425a5786245792d8851301 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.8.tar.bz2=44e36e4918ab4c354cacdd20be30acf12f060aab808172184251186758f750ce688eef72f39ea110ab6429fbaaa5a792b1915a5c2d845b6e22a3cc4bc851c6b9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.9.tar.bz2=358f12ae2d4e177a080bbcde8b275691418884eae9a42c98161170c7b0f6029ffebf7ffad27961bfc8a50a393796934a2dd2c7f0ad2a35992c35dbd6c8c6349f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.1.10.tar.bz2=e7e98be6cf658eaab81486360f4d5d22f86805582feee4aa11a8e2fe6b461db69b850c7ea98840af0811910be7f534317ab5887bc48f47a9591b65fa7262feea https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.0.tar.bz2=307ee69b3051fcec2942fce075232a62f6adf6486239a89fab7bd63a9bf068e36371e67a5e42f86ed60e31b8219ff431c2d4bcf519b2c10393504942d2d90a9d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.1.tar.bz2=a0a30a805be9c43cfe52793d103e9f0dc6076d02b0c5af36d650564aa43958164a278958f7a7e1132ee5d3357cdcfaa8d59a4cc0bab027e288d935a44958b743 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.2.tar.bz2=d3218d01a18f5dbcdb65f216469a463215784170d32110f06372fda6325bc17e2c2aec1601a5bf3319ad753b123de056e6bee8aacdd7c64c4859570d40571ec6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.3.tar.bz2=4fb3bc10aa46a85cc37fb041d351b2a8f74d70c3de32fbceefebcd6e757cd8dffdfc86cd14fa6ae7d5273f875e1d4e13e6446b6dd1882c8fb015d1d34ab5ed2a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.4.tar.bz2=a008439e903b1e97eb5a66a88cf72c2e7438b12b78750411ba0ffa496c68beb8cacc2037763be1c8c8841fe9a248d4be0d0976420db0520b4b8456aed5480f3d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.5.tar.bz2=14573495aadfabb81b985aa485c0090a816f459a0db8e790a7d1bd948897cf650fef4e8aad7d2ab8232d2ebf56bf08363730dbbfbc2318625dcab04d3904b3dc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.6.tar.bz2=e915bc10ecd1129d7ed55a12fdefdd6b6fccc281cb3cc0790e5970978f17652068ccd7fdc160608cadc8556abb73a2c187d041899adfcfcb4a311285415145ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.7.tar.bz2=d80b934273b84d7ccc4e17fa07c9e0a0f95cb4a38224bd60ff73772ef7ecb3d1974e686bb10aa319642709e49789c0886f98f4fc1ccc5312a19ca19f03674e7e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.8.tar.bz2=9bf0cc35deab5f53900bc8e8264dc1b57f91a3477f241848df48109f4b5c97f3140470f523fa768a7543c61cdb7a93427866d871d09ebf8060a5cb75ac6d3790 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.9.tar.bz2=0cdefbcc88c5b9d34c08c8871c548772bd473dbaf54738f9855afddae8da5eecda607b36c546077efd0165114da385cd1f296433afe411f57a524fbff0a69291 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.2.10.tar.bz2=3aed1b12ca46e34fce66ac23bdd97ef815918275d91ca4723f9a6f2a2b93cb2b66f845747951593eaaf078bd0d982e06efa7641fc3e11d141b7605b086f93393 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.0.tar.bz2=ac6a699d5d08b33e7580a24c9357c0c8e8378208fc7385f5582f088a879f61e48a4654d72f03263a1dcf33fb0838b01c8c21fd39c5e2549d683466e0441381d5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.1.tar.bz2=77cb7698c66ccede33f558f6ab9ebe4be3b775a567d1d4dc12fd85d7b0f28d7bd446b18ef48ba1c879dadd76b50540b57f283e9f226e904e620afc3ba6585bae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.2.tar.bz2=9592c8e2fd9266f5d1cc780706f558e15d775cece995f5b6e933c54be7b7f2be2839b28ef1898b2072c5cdce36b830e72f967062ece4393765f8dbc88c6dff88 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.3.tar.bz2=8243575f30eb38409003b0450ddece621a589e29a4ffe219410820bc2afb97b7daec4c81d59d95dcfc83138414a2df707c925f0eb56907d565dac4bbd5a929d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.4.tar.bz2=ae16edab6e55d1b2506c4cb30d836639035a7fc153511125b578d6da8a8b40cd87650855fc6b4cf777c1fa0428c593325af88d9ad25d53acfbde0051a730eaa5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.5.tar.bz2=10f4aff595d12bdb425eb3268c868e0efb92059e6aed8683fefa5abedc1ef21d23a45e17802edd8e5e0924ba1c3277b653c0559ef4ad4c9dd2be2fee17226f8d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.6.tar.bz2=bc352df203155008da7a1099f7f7d26eb9f80e0d2e41c8adec5eb47f976529c6126bccc207563de87ccc2867d1e4c43797efbf295c9a7a4afce002ee19116074 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.7.tar.bz2=d71dc217011d154ef7b33780366bff07e4232ae77321ad6d16f19090f924ed3867c31f2af4aca4ffbc6a536b0320b676716ffb43e34b0323e81eafab13f17fa1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.3.8.tar.bz2=aae74010426e2a1288280f3611ba6aac842ff573f9b122fda9a4f1c514e09cb3d22281e6957b4acfcc753c94113852e083a9a80d0cae6b33682b83669c475eab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.0.tar.bz2=4a083c168d9facf3346b67dde02d9705109feef6fcd4e3c7c59c2bcb35c83597305e09ee143915fd993799a888d6d9ffffadb386bd57e9477312566dd6164deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.1.tar.bz2=58b30b00156691de2acc5d21d3255029fc3f9f2536e668298ab160d300fa0bf3eb0705aa524c9123ff09d770807cda0154bae012632b7e87120d7538f844560f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.2.tar.bz2=4c3c586765fd5afb55383d16eb9d0e7ffa5b1ff988a2b1d847e3f972a211b2401f035ff6c02d71de558cc161655438727079aafcc8ab80c97e07e16cd7fb1304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.3.tar.bz2=e66a4ca4b95496964ff4d77e36caf0894d913c1116f901c9b589da5a0e388302b64a79ad6acfe7eb1ca5917825bc0f866b482f074f1d5fed96d91e238f7ef454 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.4.tar.bz2=f95eee611be949327224b89942f4344e7d8e075b958ce3418b5874e9b23981113e4fd58254629fa9f6c2fdaf5840d44785ecf5f04433987f8fc4415df5c3e367 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.5.tar.bz2=447b28420be5b19f6b1381d232920e3c20bc894c2e0d1d2e394cc44e7859d02d177ec3ee09ce96e922f55b7fe2651918805f00fb783af3780e5f25c21f330195 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.6.tar.bz2=5f60bde5843fdc0b05bb852a2f1b30ce085dbcf7acaf105d5af951398b845c766113ff3740d44585ce3814b4953c004230eb4dc2ce8746b6236ea4b7a1d1cb10 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.7.tar.bz2=929a03725dba7de8d7eee3fe8987b858b9b9d6d377beee710af5c3e84b02501996444aa7b2c1db458aefc3e765da17cd17ac30fb0b4d77ab1e54239e72fa2a63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.8.tar.bz2=227849b5809072b3aee211125c2aad3e2e4984e9d9b4415dd8c01dbff70eb9c3758c3cf54f2b97fe282f7a42f205a2becf7b86e1e6ebb4a4d048ca32659603e1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.9.tar.bz2=c15a46ba1e89cc41523a21eec90d4e3af5b9739d27c2f2b51047f2c1db832e2773cbc04871a176f71e7124eb3f7b53262e40a1baab87262f8811a8d69d8e5358 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.4.10.tar.bz2=b83334e272e78995b699de28bff67accfc151cc7fb193d5c5746fcf06087643564b3a0b538cb64f50706642a620dba2cc54191357321852db42cc8c5648270df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.0.tar.bz2=82038a66827fbdaf60f404103b3956ead4e03c999893f0095109e7d853919992cab615f85cd96ba9158402b2de5a68fcbdb8b32e9d07c6f754e0591f72851b40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.1.tar.bz2=31e9f176ba61480b33b7761d2a19119a200ad61c8f85145f736eb196de50babaf278d023b274274c6a31f2173c5d022bb93e0f8d46a88223659d8ebcf6f5e278 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.2.tar.bz2=75d25fa6dc81ce8a62d02adc2e163e7c222c5946116c4880cec19460e2309457ee1a11a8eac94243ee8437514bfbba9ebee939218b6ccc7e5c1f15b673d432e7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.3.tar.bz2=84c93c85aa3733f2ac82e695c19e714ad4afd096edd6abda8a4915311d1f604453fc3fdc290c6ae1f9055d305ef400f8f8f152c5e15eb230baf7cfd5e192b7fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.4.tar.bz2=131b874ac376f42f3427dcbeb0adb0edd18ece834514ff5cc15f3b3e29b8f14697050051224d7ba2b509d428f780c653a4d7101149b8ded41ae373aab871e90a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.5.tar.bz2=f55d2ff7f2eae4d30fbc14226c928d1caff21db1f2cd559d3caeb0c07a7a3f034fa369d95f783e6f38cecb493d99aa1928def9d8574698e3edea3d33515749f4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.6.tar.bz2=06b12b2a1e85248311cf55620499806078b3b67110fb45dad9cb11cbaf1e230ce8a0da23c7de0a5abfccdeada8eb799f038b1a09980ee9572ec415e24fcf8c76 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.7.tar.bz2=49128b7845954f1f04502a484f17d5c0c6ecf8990047f5a383b2752ea9e09839e5994b210c2f60307d44ffa8b440472116fa1231ea899caf639e1b8a72f7f97c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.8.tar.bz2=24290aab4e0d48719659f8c1153d2b08020f17ae845e9ac6d6b6d3203e4a5b19061e907a214e8d4390277584ff4b46dd4a0113c6b201fa37e8a95c42fab5aea5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.5.9.tar.bz2=c2771d6b12f4240200926b2c40ec1bd3058c9ef213e2c6032e44799fa34b75b00f2564a0f7c0d9f972870d34c7742174310bfe3b15e2742a17ba2fa05e5a27cd https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.0.tar.bz2=1be48c38da41f462c23d516f465ed34e2fe90c6fd53ee06f1efc9107077d9937413bee589d5d3384aee5c09da7087fa84864a50089bd1cf3c385ba3399e9b0a2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.1.tar.bz2=b7e1204e0e501312828ca0e30b77434b2d8d94581627196f0195ba93fb10a11046d44942393bd8a261585c564bc721313152a9087aa56b57b433ed14cc7922be https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.2.tar.bz2=e91a187a9e726ed26ddfaf09cc49473c8379545e2265934fcd1a1fa78ba99f9a119fe2c3c8247eab583389c3af7ec40a0e71da19f6ecc17ffc086759cebaaa15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.3.tar.bz2=77d9be5bbcd115131ec7c842a4449729d1515bf2106a6a235472dc96b58a56873c2d0fe6a3b824dd15ad00194b30e72a75813d8b4e10ee11cc793973130e2401 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.4.tar.bz2=a2e5409a1a88557bef747ca9b1ea65ac90e430500a8f9370023b4314cb5d1e0679a1b03761980ab2e933ac3521188e2151e521408e33cb4dde5f0bf802d81a41 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.5.tar.bz2=ed6288a4d81a740d722b43925db8f22f794cc704bf834a1f9c844e2072baceb8938547abb8f4fb1a50f92c34a8616904fc2679a44bf4adec4e78ce00e8456b45 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.6.tar.bz2=08cda5ff00b9297b46d1fb620301066b21240951924337b8b87d27526e55024e61121e51d9b35feea2ac5eed4027658b39ff487195140e7abe9158181c3349af https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.7.tar.bz2=3cc5695814c4ca49b6a0d7790093e85f5a359c5411618a12e60f4bda75c3635b94736762983e287cd04ce3ee3155d824bd9bb202aa929f85387a741d1685dd06 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.8.tar.bz2=91e371298a6dc1083c8b6265cc8d3d388d17a21d59e0103bba7e68640f80bdd12b98547584b1cd0feb7f8dad6ad530ef5660a154075960e1a76061d534609296 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.9.tar.bz2=7e3d0f7f42d644cf4eecfd88801afe088260d5fc8f490895378d5e4ede76b2bd67959b9803db59f7b19287801df43eba920885aa1bcd29f60d225745d67093c0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.6.10.tar.bz2=64683129da9a476d268ffde06bd7aa1c67b3c7c97b539d856833ffb127f458a55176d8b4a101e60b18ee923485097f3bd98e8216c3092c3d0527f6111cf7a051 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.0.tar.bz2=cada908be34428bc2f302bad6ebd778a2c7a8e979476e00e45c9444b65d7f48f397b838549d56ceb91f0e5593ffd663e9facc4ea5f5c6a4aecda85a5a1136496 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.1.tar.bz2=06cb5f2f0c0941802119dbdf34995446d6d69ee59eed9a5e9d7f9e7f0e14de440a9e77eee330357fa305e81ee39a6868651c740ebc91bb9a2085a74b33685f4c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.2.tar.bz2=23654c65e6e62354857f86098852af0ba50a15643df5e7f6fc8b710e35a3872f6eb7dc1bf9266375361f696d8ded0bcdb9ee9acdc8d0c975955d299292da7e21 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.3.tar.bz2=ac02a93a62c55a2a10dc260cd52749bd8f4bcf1a2d43dad3cfd2e5c0bf7800c51a5b00779526d84f759f6d50ce673c7f3e526392c4ab68322649f4fe980f2ac3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.4.tar.bz2=88651ffa2f1623ca3b93b60a591e828ea0dcfc73daf1eead2629531beef291331f8ed1a4a33d682828ca60bacfdd7fea77bcd67f1a0bdbfa9d1e4f173da53208 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.5.tar.bz2=001486271268cd1d2252f46b32001b25d493bbbc8ce981ecb608eaf8d2c2e6d6361f6d9bf052b9b2d7694e228bc302a1082689f2038564439705fbecc00de1ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.6.tar.bz2=a48c974f341cd10143eacf46a9d0eef45cfca3ed91ebc9f7fcbba73d408408eebc60c55e15dab391bc4a9ada6777e2be3ec4b9e849927c5782f4443a813a6ea9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-2.7.7.tar.bz2=b9e99d1df4a772441edf7fa4e05dd5aaa62efcc5a8c89fee68aa80c4bf1d17ad0e5ecae5682a10d2eb0ff78ee79c583f0cec46f5ac11ae874126082b9f8d76e4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.0-preview1.tar.bz2=8fe71fdb37955b031769359dadc5062b6c15e0618fd8961c932212a6a2610829aba8b1dbdcf4bdcc2e133665e043b29088f714874e3ef3a41d688b7beba78928 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.0.tar.bz2=c51f55af33e09ed425715dae0dd59dfa253e909bbd44b4bf3dc34452656438c23a754f6b2ccf0a3e878463519043361dc7ad8a757c87a3ae0e747599547dc7cc https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.1.tar.bz2=fd09a4d721388c2b9f2fd09b68175dbd620e11df02ff7cea4e438d3205494a9883c25def06d6c1ae4207e7f82bc48fdd122fe12630bb9af9da451ce6be19d86a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.2.tar.bz2=2ade19f26f6e2eaf65a8ac3e9ca21cc8fe04252df58f9b14c6d0f92aba3c0eff27b1c68b1b05041496c367051e020dca7b0c64bf44fb07b4fbdee9e68b78fdf7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.3.tar.bz2=11d81f71ec3d293916bd6a00d28dfbcc93e721d12c6137fd58febb79e7399f8fd1ab5a66915863311db9539009dac06612a4b2daf0408fc1f1e84db8f8f4fdb8 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.4.tar.bz2=bff3db8c69e85d503bb0686644f2d60b97c599e0cacbdb7cd4b18d630c50d04ed0dd90ea97be01c3b3220589abefc1e4dbef39246860e3c70993f0f2de738053 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.0.5.tar.bz2=32f69f0e33f7f7d41f4c0e5c5a1cd859a4c6032b0978c317ec3d333da42047b7f8f8dee9c4d72afe890b47b9f17901139142cfbbf228018d8ab5d02f7a01f0a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.0.tar.bz2=f7fb515855de32badd6e5ebbb03980312144b69dd8b696fb56320981e4f0964065cd13853a34dd321fca1ab160510dee8fc3b6c99f2a5e007e6974d70a564db5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.1.tar.bz2=de183d962dd4a8c95bea54f8740cc34931c2d856783fe7506f0252c5c71bb7125db00c9c7eaf8e80f8fa1c97208ba4b2a4d6c1a76e38d2b6251a92166749fb37 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.2.tar.bz2=7589f0292f72a2217e5024b51791f9a719ff0862bf39480f1460b5106f1c11172c72ccc1fe2a00b166d80610d76fcbefe64b7c9df0ed3a72c58964c2402982c0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.1.3.tar.bz2=d79cbc4812ebe9b308a145e96f6e7f64c2692b04370ecba0bcbaae5427afcc7e57ee83b4537914b6b90494fd45a11bbf2b27999a7a74c7fd569687a93c43961f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.2.0.tar.bz2=2d11ad1c89c1ce9873dcdc87c41cf38105b00e265277a173d721fce4bd350af73caf01fa4a5797e926f1a0cb180f1c6e969149d1d524c4df797939cdbbe9657f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/18.04/x86_64/ruby-3.2.1.tar.bz2=cbfe8a92e732675ca1f7d51c04775dfdedec1b9f21b3b7f0760ef61b7c375cc4b0758a17302242087b55faac7c3f1217fab0f6a2e713a05dac082cd6a5d5df3c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.0.tar.bz2=172189c66b3c721e7413f0088f50e4eb8dd80d87779c3a4e74231f7036eeaacb8e373b7f5ff017f8aa274c1e1c872066f2f93485a2a369a7e9b442d157840bf2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.1.tar.bz2=829fcc1a3d878ee28e89a58a2f6d4221cec115d241a007b048953672d57548002c3a105ea4e65e344137091baaf5d5c54232a54c116afe03d0f3d61c07547c2c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.2.tar.bz2=ec2e7bd32e2d574773486e1c1d733611465765cf14895fa6b017b6ed6301ef40cd062496a3926788851e7ff3bdd62b488d03385aeacc66bed53aed18a6dec225 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.3.tar.bz2=79f822725d4e3bb7daf416e736d87f3b01c21d011423a2b3c65d9019a47ad4df256fd4a1f171961267ab8f20387019fec8f3f4ebfb6664f682bdf36914f6a329 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.4.tar.bz2=aba571bed773554b18863e6b942f2bca743729834657689a016938a34b7e4352e68d9fffc440b2fd4fcdd1bed4d1ba5dde689da535088d7ff8ae7dc364ac3b2a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.5.tar.bz2=0e46655028859f5abb64d71a5585db638d00edb9d20a487739d307bc1dfa2fca4ad196e04044dceab0e279286379e73110590c772a06786214c4eb23557324f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.6.tar.bz2=177e9f0a193f9dc45f8653306cf6a87bffba16780220fedbd8be67a3608a8f8d370011f3993590d58805a8ea4833d95196385fede4b513d908fd4263a82f113b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.7.tar.bz2=88bfad0d6258372d4e9739613a07352e954db3deb43c0e2d2a176f9cf55bc5e2df73e4cb04bda75e2dbb210799649f020a7284cd2acb5fb92d2b115a933a4f03 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.8.tar.bz2=3710f83ed7f3f30c9b5d3dd515c168534d01811cd33f20d3a54e654dfb5140afc8198f46dd823ac45072a83d844ad866af1e2b8265f54f9997356be88fa254a6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.9.tar.bz2=078ce0d7433e63d947fe4cb0cd5a14e6f5fca00b7309d7288359ed90989dbf618bd8c1f5f31b607f3ad6b0cf540d715dec2c38cfbf71cd170e572321598bde7e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.4.10.tar.bz2=f97f877f7afa604dfa7e8f1b399a4c034e79b616c95bd4e48927d88d1e8adf8e203901fa178f93c6af4511d26a38e2d8cced7225c2e75457bb02dc27b8feedad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.0.tar.bz2=ad619ccf77132166151e4982996e93135fb91d97701ef9aea12b6bd05e18e585dc4d5fc34883b3369ebba15474741db238fb90192eb273dd5428864429525d9b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.1.tar.bz2=9094c9bbda4c3d830382e89e4e1c24fe43cebd9d733b6878a43a34d679092bdb6c7b23cb3cc08d4efc6e15449c68862799713006703f95e2862bad1c0b0bb94a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.2.tar.bz2=54c8fc2f2a99f834292b83ef8e68e2b120f20fc4ff74856c13137065b95262f62188ed5c6ffea8fc4b0c1034d9f8a1b497878d6a581391d422994911f5fcb35d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.3.tar.bz2=b26daf1825cbc9cbe51e1abea84f3aae542beec7c26628201325026b4d4bdeeb46f8053a1c105973242ef532e66bd4eda5199dc1aa4faba1a6393f9cc126d856 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.4.tar.bz2=e5718fb13f2fe7f6b34fbc2b1a6db95576fcf9cbed481fea59fd4dd28d064104a912a1000533810221141ec09e9fd8d1e59850ae5a26ae441bb6d8878f42c418 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.5.tar.bz2=71ae2c5bac04a97694310daf76e896a1a02c245274e9c96ca96740f78a0e245302564bce757f1688d3e83b7c0c88989f702814c434101f8df786c1276a4f5a2d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.6.tar.bz2=1693ebd7cd3a452f51ce2ef32144aa36f6fa8121ec68cd0fff715db8981214ea9fc729099e4495e1e8bc346409551d4b93c6c3803fe187fc0c25360b80caab72 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.7.tar.bz2=53b05c51b970a239fab953dcf3bb433f59465fa0b4dfe58066132a1bf6247cbe4adcafe41b219ba453ea392f88a521349df14d58a91a855c53c9b9ba4cc16c4c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.5.8.tar.bz2=b9b0d99e590a48ceedbd1d6318c29b8fecc12b02ce5a6f1555593eb1b3e284c766f2f8800ee3070fb7a041593e4a3806d53590be760381268ef0f9588e127b08 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.0.tar.bz2=90491968190f4809fefb4068fcc37fb7e2ef179454f57c90bf2af308541f1ec175a72ded53202c1e86dbb63cb6b47678656f753574bf6ba525e982f3278a7602 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.1.tar.bz2=7f9ce1b6872352a6feb539948d26dbdfefb3d4225ba582ef8730be8fd85d5c350bd6f21346d43cfe26a8501c4ad145d733d94da5dbf25b15e7610ca037ad4227 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.2.tar.bz2=8544797f46d54cc4098227809561023bb7bd01eb2330724a94921c5a79ac64b44bd56069d7a77a3e6d2d3dbc504ec25157daf7fdf921c3acb3b4289ce1bbfb5c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.3.tar.bz2=fe086aad84ac7fe8009ea2bc16f0ccb7c60a5fc9034690af38fce1a05582a6226dc3d7b80d08d1952d03a9abcebd7b361f5fa2d506d71e1f5aae9b5f31ac22af https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.4.tar.bz2=ce06ce97ea1554972b00781332f126e767a3ab98f5023d3dc83195bb36b954b1b497961c74bf31340827d9a5de2e0bb34240accbadad550b2e692d26cb097d4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.5.tar.bz2=6fa248065a48cebd1e9950ae07f3e653b3e29e369fdd914908be0b215257fa2766b0182e392fb869af51cd498e258435f6d9b45a03452356dc08da0e96877ae4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.6.6.tar.bz2=ce912342033f395ba6298051b081c89832f656d61ecf2064e9568692552a938599c816d2cd1fd1f9bee721611f890b8329985c69f4d5b2bdbfa6635b48afe3b1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.0.tar.bz2=cbfc7a1cddff0385187a7bf2eb9dc71a8d14912cbbe4e9529b79414e49e681302ac9009b7c8e6fcf92a9f19a0ca5053a6ed25edfdb510e3e4e247474d471c58c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.1.tar.bz2=29b99b3e04325ceca89b64c7846aeadb412215270f6f7c390fb1e275ebe19b2faef811778c0615b2d4720ddd942a2cc209c72e623f559e6c04e78849cc1c1b1e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-2.7.2.tar.bz2=f67ab3ac13ae90622fb3664a869b0c584b97df0500384a28bda9c5c36cf2a27ac1f66afafea08bb29bbfbfc1e0ddc444427993ff4163987f5510c4158a90a96d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/19.10/x86_64/ruby-3.0.0-preview1.tar.bz2=aaeeafee545dd1ba1c4df5b7e46e82f7e89e0dcf4fb10677b7e177e66f86e6825e85fa5ae3e74062363883768b3485495a3378f97693d45f675a6e547e989cba https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.0.tar.bz2=3e78b2a73167c3680aebb1ed015c583d4f6c58804d3b272253bee2cef37fd2d1cb3852fd2b408f4af1abca17725d923a1f28d40d2a33896e5cc21c4c6711d7ca https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.1.tar.bz2=14e7962e180b9ae16607347ba5360b9ec086eb8055b88d2f60b1c9284fafd93fea905aceb441f07d594a34b53647520f9dec38e4e9f6ad3e5a6850750d981a27 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.2.tar.bz2=5b7d88d4405cd45a6a720295cb0b7d3152dd757aac996c8d1a576c6ab2a45cf9ed0b0ac006423791cb038a14153048e96308ecc8ba1e761d4b7671dd6f880d15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.3.tar.bz2=320734a124e26de068457237b5f973278286d7e529e92405c1b856b6e57441b5e76c59d0f519fe43fbdd2c8c48c9dd37dc5094831c0e6a81d804e88888ab6237 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.4.tar.bz2=ca34ccbfc24adc4b2c6c5c0e3b27bd2754c2c5be61e9dfa7b919b4902174e351f45128d887c179c37ccd5163a7f51c213fae96be4d0c356e2d7f96acdd4f164b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.5.tar.bz2=fabb151c29ad7ef7432efd4d51ea1e20180006601617ba896f8b1379555f4088d398e96f7bddd7c9815b266acf5ea94527ef4acfad2446950da6fabc3770f788 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.6.tar.bz2=2728c38987d41169b7110fce2b507b5d3e971d5b043b60c9a3b8d6d385ec2a40d24e464f6cf081844282d6b9fadd4abce670e79f02e4606bdd5aeacd1b57f773 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.7.tar.bz2=f98f4dacd9d8c6c9515ddc2597da8b868c66897577cc5a76819db742f3649881ef5a7f85a880f1e359772b1ab08750dda6fa74ee826938e06b93a9848699b929 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.8.tar.bz2=47fb4b41e60b1e536b3a54e18e9ee92aefee7eef92d49716b46884b2a3d73a02e88e4815df64baedebff80e9e17ac7b0af6e65b406a2c53a4f90421dbc948415 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.9.tar.bz2=c81ad5e16aa18beb7c34eeee68ffa96da243f99ff69cf00932ad5ebe427c1f80e3f7fee31b15ec0d96c1be5c2007dfa6e96c38114f61e958c6b7ecc40270db4e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.1.10.tar.bz2=856210b3eb2bf338c5da2668e830b95d48feb82c1c4407371b18c772df12878703a9eec948a2778acd098bcc8eb402ba6d57b2b935766847f3e652c3dadaf6f9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.0.tar.bz2=6ea5e6338319e5d6861d420b10f93b5e6634a9925380c61acfbb258b6609ada76bf2a6b474b53a30b0a81f0dd81cfdd1e610b68698df73f69091f479ad39bc63 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.1.tar.bz2=8e8e4ef137b9394ee34b760dbeaf4d23953bec083e5775a423ef6c16b75faf8bdfe99df975ab6b6d762509536b017f3510a9a5e9ab63060208edd4d2d96371eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.2.tar.bz2=756c9ecbe3c9801a0a364143478903318c524f7aba026239a1fb42d7390f74110805543a9ac2a9f8bbbeaee48bc867fd15d400d8bd46576bf4fd417d6136a3b2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.3.tar.bz2=594ff95e33d0f7af7be448a781ac68f895f8344ebb1c9a03898813baa5963024aa84b11baa405fa584070e4195fbfda9b908f1fe171f75f19e5e1d7879bdaaf9 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.4.tar.bz2=a9703c6edcfa2ddb87bb73c070d963fc4d59599919865be9b1d93989906698c6f3b9c4fd7f2d597e5d710276555de0b5865676b92aa3aba1f1f41be4052bedc1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.5.tar.bz2=dbd91cccc0a00a1ca7e901d56f9840e62e4f139ff4dbae530169f41897d06523c7e8977138ffc6212e1b60589f3091a4e2f6b6714c0fad22fa65e442b248f61e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.6.tar.bz2=ec967415b5bec95154cd9ff8338a602a6d005fa647afb1e1cff54a0fd4e9c0697b9e952c2dfd8e4b30068a697f5391b9cd165d5d33f3b146fe35f2a8fdf9823c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.7.tar.bz2=b8786ef31db7d950b1309646f81e6a99d56b76223bb8d2d20ae045f09917332a869b14cee1bf235675c7d8eebc6942b5ebd6cf0cbd290ea75d9f9be1475352f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.8.tar.bz2=4d949a715a04cd45f6817b1b26093f7bbf03ca630aaa015972e7d0ca72bae094add18664e1489ebf8ade27c160d2fbcebdb105701d719461af13c4d5fcf2cd22 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.9.tar.bz2=ec6cd8bd90ee99aa6470d9d524d89531f96f992efab8a9d6a709a3959ef4c314828276e67b84ed97d415cb3e0c837458d13732dc940c93d4d069d9b881d7f92c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.2.10.tar.bz2=1f60cae30581e3467c7ec07391de5045f238b61a49661ef0cf76d72ef78d220b7ae70b86b1e72625cf37085b6507fb1dfccfbe5554195f0c6eefaa996e199c16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.0.tar.bz2=343f5dd6703b6b58d61fabefc8a50ce5d02d98c32c8b4e52b8deacc9824369a9f0dc8faff69e90ca7585a194a4d742791765b16c3f5e2417b0f54e0e6f6220b4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.1.tar.bz2=aaf7f9e30b3998b8586764f61d09e434c32aba7479aa79fb6afa71ab11c067384ef3a4b9215a1a3639da807f4f642b9efc62b37b55e989b7ed7d75cedc7cab40 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.2.tar.bz2=b834ef95d52abc1f0c224193391bded9b4d2089c694378dd5aa45f8b2b1ea41b1c300445f766841cbb8cdb1114491ffe0095f518e1600746f5f583dd0cff9c1f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.3.tar.bz2=9df5ba9423e0a8af9d825e59f8c69889c70af0f6d67f96708a02d7d61260c83474e2f7b2f240af399911bdfc56850255b4f34554f7013d0417a13bb782403aa4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.4.tar.bz2=1d4b55a6a34249e82880fbacfc1d97a093600005deb982c6b42ccb14bbd7bf1db14e0f6d73bc25f1addd72378850f7edcd63738f2b3cbab569e34e89d563188d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.5.tar.bz2=29a76dbb28d5b63ee0ce64cc2e7d022118350a550d3693b8e38d559bbc4f42fdb6b63af4bcc4ebfffc5c0fbabbf2e18db7228e655de3bb416e344a61737870c7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.6.tar.bz2=122322fb462f8fdcb065e6f9d9968027c320ba9be9ad6fba9011760a7296cec1892a0780d7436903cb7763f5d18cce11860c5c7fce82890eaa139a94d5e89428 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.7.tar.bz2=0c17f52a74b73041c588ed76f73862d179d7b9abf9de61279dc74ba7b7f170179e0db5672a403dcc209b6dec9a865a88a382f5df01f5e6ba4cfe0f66232b4a15 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.3.8.tar.bz2=1a30bbda34fee311762a2f05ac7fbcfb4f373f8840f86b9762b0c07f1cd397e3eb3be83210221384333b625a243c7161ef4f368602a613760391265309e4f304 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.0.tar.bz2=edf31b2dd02208c96be25c2f4f7d35e2b122e5d327133545e16038836b848b90f81079be4df47c5493bf4ead1d464fa72a8d0d405bb2509ab0db6335c58ff793 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.1.tar.bz2=91cc7a9cf493c7361f3d507cdbb8e258b7dd710100cca8053b77569c07c04fbc2f72fdceb9fd9a3a5d01f4c423a206da97730c356d017157bc2454041e1f1fd4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.2.tar.bz2=8ea603a27560ddde5fc639b86381a303f886ce80384d8edd0e7bc806f10649760d75a76dd5f2ee445371254e727544ec12df49d7fc8876890b73237f4eecea1c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.3.tar.bz2=c42f24668695be5c291836ae6f39b4366e0357c9bb63cf8be2ad36cefe0c6d19cb921a43159d49d4d062dccc15902ec1698a1a6842d13ccaec45c6cb628da4b7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.4.tar.bz2=3ac89131407faefde80bf2e1bed4baa51c371ab4bffc18c8dcf2624f4d1068c9f933eb66486a2bc7c6c67f674c5bd06747bddfe1f1f9dcd939458a08e1bc6108 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.5.tar.bz2=8ca9a9387b8cb434828fa36e5886bc8a28d70fa46d3e20df60389880477fa2ee54fe63c0c14611a2cb0168ef1149d205640c6003e6a507400ad5fc34fa641bd2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.6.tar.bz2=52795cd7d112ff437adf603f58130ce539209628d2224a685d060d67a07325717981fc6f91736d4abfe014ccc8057bb40a097fcf85f5046aabde0019d08bef16 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.7.tar.bz2=bc179a31c746ac6e632ce08f57a8f403d4e463ad72285c0ce008d7fa39b88a22be3a43014c9eb019f6a39d022f9448ef151a8d03e89a4d2e767c4f77684e3750 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.8.tar.bz2=d693e3a800c2200c74b24c207425f41cef206a0b3f20625d18b1590e9891f409d6643ee0e7ab8fdb6e1e85de6fea52c6a307bf8f65324ee0f9ac33306ed1e876 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.9.tar.bz2=4b6cab99f6b7be7705efa5eb6f321b5eeb1d1c6e96d4113bf96b57378aaa4950b39f40ad555f630f17d216d235972f028617ea43c28b1970772ffd16be3d9a67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.4.10.tar.bz2=40bd90d231fcedbe34ec9963eb59645fdd1036b03056b9b8fa3b56900deb86d94e2a256f90e6aed297288d6797857a3ef9fc27bc6ed05c017b5c8e8ddc465df1 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.0.tar.bz2=c1df39ae526da7ebf87510017d7694e6f78c59871baac4e9c5f2d13c22cbecc30925e2783ad93f741110b7c3802e9f25a6c3ff85160b33a4080b0f1fb02f7740 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.1.tar.bz2=930f6f7f654fa14076c84365fbc771d5b09679588c4c478d8f6944770c53fdd37213bdad159fd231efbc079b85ab7ab648b0a97fafd666c38d0e280046c6e2ef https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.2.tar.bz2=cb62ca82d57dfc0e21e532d4b523f49c559c4ed5f3d73adbd9d650bbf23c694d382f3cc25eed6a8630f23e4780db127b4b8b6ecf6fc24b0f6febc820dbc6af3e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.3.tar.bz2=708209a89a18cd99c02392307d2bc63e46bd38c72c8ab0e982b28285f8e006d4ed77e04da3900c880eff01c3350033cd00ffc3be1d3a12c4ee5b263282f0dd05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.4.tar.bz2=c94f5b3129ff41da1b07da1cf742592e9822febf6bcfd0e9eb7145c00b732fc66625056bddc72fe9b631742c70d0e731cc6a9a16a089c7b559ae963b072578eb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.5.tar.bz2=b4d20f79eebc5496768fc6adb0735c6a23cffbb39ceaf9c2da42851ff7842dd2318c07877d89564176d206e22b8824d2a3c637b5ef02c5caed0b2b5276581032 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.6.tar.bz2=a09ab93c3d6936d30065236ff2abbd0295988a9359f5a76425cecab47af0ca5b6829530d1708e9ddc9e78d1fbb7c0359b9c7e90227870537d099ccc89c73844b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.7.tar.bz2=f6086c879f8737eaf6eef4461d23270e9e43811186a22f35ed69a8303eb933136e7a690bce2d9e18bcff730725292075e09db0f2384d0e26018b7f2a0df70b32 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.8.tar.bz2=62c631026560ee310a849483f1b48690075477942ce86e0564e92f5ca7834553c435a35a1d6d8dd957c3a7be24c63c32104518995eb3a96e61066a04887bb0d6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.5.9.tar.bz2=0f10741772d2498167c1eb2aa263292f99748518a4ec03dc19440eb5befa075fa69e68b08a09af6eb2e02e462ff20ab10e4121cfeea7bdc938c04762d81fbc4a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.0.tar.bz2=908132a47bd996f8c76bed54078e71abb154294f97dcba779b4cf0d3b82e31c4635dff89e97d5f6b4f1d797d854c6d020afdf9dc77b10c0e522755fa194a17c3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.1.tar.bz2=39c867ac0af48410c0bc6b01f1ecac00616a59cc07f3f5a3e7cfe8f786b70c7cacab65550dfee777d11b8b7a3ac173bb22c602df370eef6a04b40f8e539025ae https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.2.tar.bz2=2f04566f6d778121281bc6ba23ec57ad408049e649b351585bc9a3184848c71873910e159f7fd3909c7372378152f5ed264070aefd45933b97980e80f6df4deb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.3.tar.bz2=940375b11c525e3f0bf00e19013eeb886bf85b8d8b66d86d53740170b0ae16b14faa491dbcbec29238f875f84204cb0d52ade17c180d71e129cef5254f338f0c https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.4.tar.bz2=1c9d41d7ab7bd69d7e3baa3c4149b1938cc147beb2a63923dadf2fd959732c8cc824e2add0946bcd62f44b0e1d509b80b4796a5929841cda8d28f3a8207b17df https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.5.tar.bz2=f47443a53e3008cb7b7b7afcbbf1adf44887769e42b3defafceacc1e50e349c9000b98010f853c6b7cafdb54b85b640732a56a8e11ad8e58fedb5fa4724f68d0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.6.tar.bz2=fc1c9a08c48ad91edb4afcac5244f386d63940fa906dadaabe02a1eb025375443c8174a6ad1acd50f4583d6c57a88feae86e697ec15c8a25bb49f280b1357783 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.7.tar.bz2=aa611f7c350374d2c5c8652a694022e038cb5a65fde795c43e927067f155d0ccb368b281b1575e679b84cd7ba6042216dc28149e138256faf62dd3060ec0a6a7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.8.tar.bz2=ab04071b90ddb81b68f064fbc9f2bf726729220e4359113556d9b71f3549483f122b796b3b1e4dc8404e6f44a4bdd02e9db2c8066974acf190448c4d5a97dc6b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.9.tar.bz2=c769fd3814bf31728b83f2bcdaf0928e6423150609f3db903631f9db68ce0a0f9c87bfce5f93983cd962662148a66cc55f5f42bffc1a1b5a237e6938726629ac https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.6.10.tar.bz2=c231f8ecd46760db49796519645bcb5cc9fa1c0582abbc419a2ca81805c81fe8912dc32dcc2c5192ca9ef0d502da8f61ce1ce7ecc87b29edad3a144a8a0c200e https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.0.tar.bz2=b41557c83084c8e5bb263aa944499932ce7d84457e4e307f1cffecf62aa44f8543a06299e38fee17ba64f8952048612f9289e24c35acfe2ba02b913c15dc1405 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.1.tar.bz2=001d10af5833a03b42d9a254bde844731d3a796d98ce2efea90fc68e4638c7cc3be31a34fa163d4c5ac18c60e685e5cf2ccf88fac46ae6bc587a48ea35cfb09b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.2.tar.bz2=0a8681afc19372ccd9409bb017967f86c2e6642e083ca47ec904cccc34242040f710392d916a69a327ae6a0bb287d97bc05bbe116a1d93478ae282b32e5fcfab https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.3.tar.bz2=e505ff2f00334870d07f4ec9348648b7f3b91dbbad1fddb2f60f7a38572a66a7bf081fc7b386f800d86113aac1ce3cb739c86cf0d6da2bab916a4432ad557c54 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.5.tar.bz2=aee6000ac886cdd4e4044a7b43ab20d54d1e99f6b893af69d0d7e7a202f4ae861f939898580c60996b0bb7c6481eecad69a20acc83c75cc594dfbfde3a22c476 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.6.tar.bz2=86f4e6948eaf2586e018570f09232b94f907766590eb75f00992531ef74676070ac5a2308e121ecc1c23388ece4dbe1ee8a4b2a7ab99ca00a28d6583d6df3d0a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-2.7.7.tar.bz2=1bf867b0af84eae4e7996047727fbc7ef459afd3b2ca5885f658a74d62910d00eecddbf0c11b23265c625c26b420421ca5add40079438edca8eacd8b5c0149a4 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.0.tar.bz2=92a3b217079f9d960cc4fbb5908f7fc7ef71cc3ec8e5e404341e2b8875534c0542167d03b61577776e0b0f049f9ba2e3235842be381b4d484845768adaa6e3f7 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.1.tar.bz2=608f0f9eafd72226fd1b39f6c92d0f1c6d3aa7ede096cc390fc4f8bee4326b0937767bc6de84fff536dea48cbf9bdb8ef5598670235e013ccd630b06c5b8fb05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.2.tar.bz2=40cccacc66cc4b7891b01c35375ca913efe008157ae540308b649e14f5753f34f1827861c6e16b500c49ac95e1aa22e1c01444faca5dce71f981452a9e0f1b67 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.3.tar.bz2=5a33d600e55f7b8755725d7e2f2102cd76720d524d7b378d85fc21ea8d853166dd97e2e615ab18f9e44122e3404b439dd123f8e23d6ade5328982fe72db2af0b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.4.tar.bz2=37e3a4011b3603807c6e0fd48818b256caf272b3720ee654f38c0ae202cffa21600f9cc751b5335b57905ce67db185b37f548ac9c84d6acfc567f0ef4866635f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.0.5.tar.bz2=6648c1b6bd962e30e89eacdb6130b1788ccdf6ed05ea13eac32eefc222438a298de8121937262851cf5c4cdcc1a804d5d8bf19667819db6599bfcf79e57b0e17 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.0.tar.bz2=ac690170a6801fd741efb88e67961c0c3d717029b3bd9c6e243074799641c940416fc9cde7b4ba2c56e79551d6cb7fe5f7977649404da0d20d1819d7d3ce0bd3 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.1.tar.bz2=e6edfed2dd9d6649c47b1dc1b102f933f76a148e6dd8441add2316073dd255cac851e972366e4821fcd665e55b375fac757d189b7552baaa0b49e82349c71b77 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.2.tar.bz2=69c4895076690037199f2a9b98e622f6b5e3c23ea02de79bcade6193da2b1b88ed0c28006059f4ecc502298442275e7e7324232de04a2f0ce430665057410a05 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.1.3.tar.bz2=175777563303c6d6a04393938ffa7e36e0bc6db33f7d2cf1d42ec852b41ea26dd7d50569eee4cb00497e6bceae95592365ea6718a35451e5c929d8a085aa9649 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.0.tar.bz2=b668f0cd853615fec38253b264115ef0fedd21a7879a663ba844f4c3fa8b87e5ccd8adffbaa12ffa3aa16b108a2a439cecf827e7d8e19ec8041d46e758abc391 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/20.04/x86_64/ruby-3.2.1.tar.bz2=2039b1fcf55cca35ed3c8446eea45819368016ec1a05a5fd4c6a761b54f5cd56cb3301d5d2674af1ff75bda41eba41b7156e71ac48b88ca7a6474f0e944efd89 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.6.tar.bz2=b4bb324a53c316da488c5f60803933eade9ad5c59a6d58e76787d2dd89dc2d2f18016d2ac4ab0853a40976b4beab70864a9c2d23de194bcd63ad089b2159fa7a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-2.7.7.tar.bz2=3a9b5868d707d6a4580a44ab7504cb46a2713f78918142b185f0d62c5b7e0dfebc1ff551b2a52e9726befb70abbde867d2802345a01fd3e4568b9f58ac83c168 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.4.tar.bz2=39007e736b28ca599ea244bf4e54b52e86597c950c0ebd8f1696a02c8eef575a734d089b52c7013d00c02aeb261dd7e2facb45f24b34c75c4bbf14cb8bdc3ae2 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.5.tar.bz2=0fc4e39f7382c29fa2119119a78040c611fc8298bd4765025599d3018775cb2bb28f51d38efd4306e9f04eeea20e7c2365f2fbba1233e0494a8258c3c184278a https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.0.6.tar.bz2=5dfbcefa70f5b81887d34e776713bb9c6f7bcecbda8f1c9561daa3e235c725417ab0a930f594303723f226d36306e6a73f228abfa3533280659ab387708182da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.2.tar.bz2=00936db899bca33dfa8d0e6ffd4bd6b0453ad5823a450e50e3a055ea696dcf94b317357732e26208a6f34224c33a8b4a6130e5613262d62381179a52cc8f3a1d https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.3.tar.bz2=15b816d190fd58382a2f6f6e087f358b54003f186462abf59dbef545af9044a2b9c65576119185adc6bfd9ebcdb49f03a2a268eed4fb0f0d37aa35fa18adc1fb https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.1.4.tar.bz2=3a481c35668be459688a66e4e480e11b4e58c13aecc3751da9de8a3e3282bb4a152128528a804742aa0b4380eb537b666a2b29fd79be0d6968c4ff1fa428eb7b https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.0.tar.bz2=c604871b39f396c539c52dd4849d1d42f37530003601f60162860efc777c85e7e1a1ee88a77cfc9ca8ca20f0448a5dde4f39cbdae67470d8d2d283d6fbbf0239 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.1.tar.bz2=12042b5c30179da275fcb6155142ff2787e86cf577caef44b7c4d8175ac671cd461814e9a19f4c9b1e78bbdf041fdd06bd463aa972e194caa91e80778a56bce0 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.2.tar.bz2=2bf1c13616b2e255b8c269bcb2f979a45009c079ffdcb10a13e238e5d13b0978e8a974bdc1e7bf8519e15264ed5f577cc8f85a5861b3ea3a4589eb78138a3f2f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/x86_64/ruby-3.2.3.tar.bz2=2e7876c8c8a1f4e3cd1913023c564d9e74972ce427e85765bbe9ddf237285d7b96017c1ed17868eb912509881e05aaf96e4a6b353a69989e61c733b346511715 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.6.tar.bz2=06de4f6f2761bc58d94659f826c7c86be50192b7dfdb5c8b6710b384a50299ad161309e2a8c333fa5249d0e7112f74dd0c0b0faa2950a6e74bdba68833f68702 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-2.7.7.tar.bz2=597374487d196abdfb389c79d7d09b81026fe3e8043f8811497646eaf47bfa432cfb96e2af9be1a35ad2d05f2f5c800afa3f9e5adb0ea2b2d31812d219232a00 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.4.tar.bz2=ba56050ce3fdbb9117c6c9e767f818ce3d467030713b7693ebb039f6888bd5d7e5f7b1986ed117414037e56e550707c3625a88bfd5d00d7319d0c7ad642fc811 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.0.5.tar.bz2=395facf2f7a15eecc94e554a60d87c269ba70c5063b24b7bc504f579c0d12a7d858eb0b98c502016ff8bf02aaf11ef765e2291b542759fc96affa186206ffe4f https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.2.tar.bz2=d1d527b2e95e3a16f521214c5352bcb379b946e8be1a943da872aff0ab4b8edd93a507d693abd7a8ef1cd5ea1ee6e6bf1f838683f5a447a6cb7992de61f744ad https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.1.3.tar.bz2=e47a50392c4f3ee13a565103e0c5f9474ba0a8f5ff60fc9fe7d290b7f5f9a9ddec962fcbb103a8d3b9c7765a28ba59237975f90aa3637a06a128802ede28b3da https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.0.tar.bz2=77fdbe62d1694732a7307c29b4f45d0dcab7e8a729f04f45b216345336c5820715bf3f8f7cab52175c4ca1a431d867c7feef7d802dec61c2cffa4abfa8746e90 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.04/aarch64/ruby-3.2.1.tar.bz2=24da0cfc93ac536c505dfaf2dbddc7b312a3cc5c72a9f47e28b3bba760a53b584422b73da8546ca01cc44d3906a31eed7f27a3dfc0bb574f01f9c08f7c589d20 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.0.5.tar.bz2=aee8267c4855e95a55b7ab858ca6359d635049743b8e38d34ad1430522a0cd746cd572e77884f7e10af14a731ccd8ebb9cad6ea035b0fca4ae534913a38f43f5 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.1.3.tar.bz2=ba3e66bd3dde28e7193b90c44194cf7732d294e592321c482deb3b31ddd9655630f5b04aa89a43eb9d1bc222da10884e9da332bc9da78e9e1b655300db52a444 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.0.tar.bz2=a1df8a2ad9256985b4ffb3da5b545af4160ccebdd8265711d1b642cd2285a004a42cc2ea51ce3ee78854e599f5196c66448b8e0b043846ef6e6bf992828aefb6 https://rvm-io.global.ssl.fastly.net/binaries/ubuntu/22.10/x86_64/ruby-3.2.1.tar.bz2=cc460b3d17d460abec27d77f734e1c1e7a649769c3374f02d32a4ad00f989ff3150dab926a203b209c92475100667dd524774fc37633d71f98737ea2d8868968 jruby-bin-1.7.0.tar.gz=1e466a3f8d52b553c9def09827fda4b8433576b0262c40ee505602754521a00defd821d5ead5052be52baf281c6cb080fd03a8b15c628a0ee67b4e417633e5e2 jruby-bin-1.7.1.tar.gz=ef28381ca30664cf450f9d3df9927530db771d30e86ebcf535af38e1a7e26724ae2bcfe8487cd2eb349bf609a733a25528aae14beab4d13d298b5604ac7353cc jruby-bin-1.7.2.tar.gz=8155c81eea6743951db7383bd9f6b1750614927c9c0b25a6574f6d64898bb3ada2f626c6e0df6c5486561a03cc7d472fc12fe804ce66a3972d2fe02e3f407100 jruby-bin-1.7.3.tar.gz=1d19be25bf4a7dbb0edad71008704377893d3967aa4204a0d59d6883aa04462ef6798c64d0c0fdd3f5129c16ccb42e8507f3fef38ed56054bf6e689de745935a jruby-bin-1.7.4.tar.gz=d7c0ee0316c50ae5413757e956c18ca68e9d99a25cf85be978da0787c13b8978d4ff2712a3effa564cfdf07144be4a56a0cb8acc794a01f43264fe8baeb125e5 jruby-bin-1.7.5.tar.gz=a4984591a3809330b93f4ce79fd1b9c24360f89d88a03bbc76351be623893c4bfc6441375bbea452ba4f24ca8b9357e03ac938fd6c065b3e2348c0f896b22a1b jruby-bin-1.7.6.tar.gz=98600a2d46bfce14111c7eebc62716352a4b685043afdd696b8fe51c6b205eb9569fc2860423a653b842b173198c76c59767156aa48e0d23482dff3358d884f3 jruby-bin-1.7.7.tar.gz=71da2e72c65899216fa15ec568b51aa7004e2ed7dff99ca376b332d3692c83a674c688dc21ee04d177a3961a2bb3973714509d88cc14d0ba9f79c864c6258a06 jruby-bin-1.7.8.tar.gz=42d54243653ec260abdafecce1143161be63fcc38a80f71ab70fcece4bf91545a2b12ed2319f9fd6f6b41916c398a9a8e89e7f0389f59da56f2739665e74522d jruby-bin-1.7.9.tar.gz=f519f53b1d9f57cfe28982ad70b892dc6fc20fe6601d98d65a1dca9f617a0eb8fff74d0fd82ddb858fe105d05ca7c7bbf3a987677ae0363caa2981bea358c096 jruby-bin-1.7.10.tar.gz=160b701f2f500dfab64beb635e5c4dc57760dd422d0fffe8d3cf8d84ee6ea17a877ef77a0087b4888ea9db64ce7750de01a73a51530aa6666a2efdcdccdb89e0 jruby-bin-1.7.11.tar.gz=a53b0fa327b98344cb4a8aad1ba537ddacb709a0e173b1e32656de8a610cb9896e9a4554d54d0d01d2361f8ff1539a0e2ee01308f670df2004225231b704065c jruby-bin-1.7.12.tar.gz=bf2be8a37b53d38c75712a6331f96b999fa6b0e87f453fac7b9d11eeb1b66098ea0778172f1a6a84345e1881f05d63012e28d4068a0bd31122bf2473bbdae5bf jruby-bin-1.7.14.tar.gz=f14e658da7f2abd469edcfd657dbc2505d6a2c04ba1e5f65f2164256f54625da154b338bd3d286ea6a18da61d04d90a61ad6b012bd9461182753483efcd0f603 jruby-bin-1.7.16.tar.gz=47ca714c3211c95c84e9c80ae4fbc894bfd7ee03e1bcc494cb48d839f8538db4aaca7029a4913b8d323e7227450e4e41bb943dc670f43df8a654eb127012033f jruby-bin-1.7.16.1.tar.gz=9bacdf6e212d08e46ac2c49183c8611873f6ecebfcb0e928b5110bdebfeb8751ac087cf8aba09afb9a8ccb58e59f3c3e06a241c1db445835d7a875b0c3deb4b5 jruby-bin-1.7.16.2.tar.gz=349283bb5344a62f282021ce39648a0c8d0b41ecf8f800ab5099b5ce161ff771e688f205a918324cef6ba0ded6b3694b8dd83f46f56be584202b8fee496b37e7 jruby-bin-1.7.17.tar.gz=a3b171df08e789f91c260c5a57ec842a5d62cc8d6b462b772905ec5284e394ed7b78f5b327ca1ff20f5deba8371a86cb03fade75b5f34f233df47bc3f08d469e jruby-bin-1.7.18.tar.gz=b259da2967e246a387687117eb13e8986b57de6ca8e570d6f8f8f07b8097db6e01cea8b0ec3a860b091fde14de535260dc6dbfc638f9e9b49d348f726e969642 jruby-bin-1.7.19.tar.gz=da91efcd51cfc833666f8b7cf949d3b5c41cd8da99ae1559c88a7358fb48df1245c66702c7cf23e7ca012cbefae98787c200352976d4e8aa3e9120057a89dc8c jruby-bin-1.7.20.tar.gz=77131afe46e72c406ab4250e43cd1f98e59a8351c494044ac89f97a7c9a81492f8a8194541055fcf1fc59569e99a577fd6a36a9f6a3952a99f399d4970e80e69 jruby-bin-1.7.21.tar.gz=111883df12a60d06e9924d33057ba72094fcffd44f7e3954d6c6d2190f8e6442804e739cc525a9e75159251a8dc1cc487570792b1b4f5773f4d0082f0eb360d0 jruby-bin-1.7.22.tar.gz=6ed6cbe7b81a8aee60906fdf965bc217b3db794698e2cb37559f36ac119a0cd2a1ae1a7a766535ab491d647e8b4e6b2f63e62011714b757f8691455831ef365c jruby-bin-1.7.23.tar.gz=6f4b97c4e08274f96195deb176e3126e8d047c981cb655cded9665624033fb905d60d5586704a3f91b2ca06d7e78918d9d31131c93e4c90c75a38182e309ac9c jruby-bin-1.7.25.tar.gz=a89ab8d539bff346ad56d345b6a205f74890b9aafe82a2c82e7c19cfc30b77fefde1003e8bd7ed15f141151bc0fd21946203219691383a64f2234fa586e1905b jruby-bin-1.7.26.tar.gz=feee03a50900e459d9ed7d2096056bef126c4551c02c335c4132e2307411f3fc4fd435e8fe44411184773c80f0630a7812b3d798b7e9be2818e1b5a712bc6995 jruby-bin-1.7.27.tar.gz=656f4313fbfe5db8d2d4fc2087a012c91efef848394c48aeaa0041e9a19b87ab74686702955413d2c51d6b4b11c758ba0555b30fdc42e86d66094411324139b6 jruby-bin-9.0.0.0.pre1.tar.gz=988c6a058336ab9ac8b27c7501ceccf3940837f9b9d3ed32a466b891bda1bc13f76199f5bc3baaa1240dd0dfdaee40775f721294d667f3b8b5bb9ac8206e2e83 jruby-bin-9.0.0.0.pre2.tar.gz=f207f9477a12d7ffacd92b1bb5154ba8101dda8f7b2eeadd4fa83eadec9a75727bc1831733d27fde63ba63322ec491201dd23cc6e2c2b5a4b8381a8fbe49e8f2 jruby-bin-9.0.0.0.tar.gz=33308a983533c129cffbf521bdb8c1996a10a6159a4a436248e645bda682c5a5395ac1aa767e971ae679c935f3b61573cb22d5b8c64af026752db3411a6356e1 jruby-bin-9.0.1.0.tar.gz=277dca63f3faad01c98a793f06bb4d558a970a10a66a38482e8372b25f4cf4fea85f1d5624fce7fb5b4310c42ea8aa360f24f6b9b6ef4bb0ebcb036736009ccd jruby-bin-9.0.3.0.tar.gz=d82f83e20ef17a0675843e306ec5e90993e5952cf5a53957a91e369d2c90d92306aa515b1e135c04b45844a81a0f4ae34289b966821ae5f46ea51fe012627352 jruby-bin-9.0.4.0.tar.gz=b9cd4f4a00da8152740b468914046633d5341b10aa26b0ac56835d5896531030c8afbc4c965b30c36923555ed5b145de8ada69e05ca38b01d43621914a331335 jruby-bin-9.0.5.0.tar.gz=7c61cf010fbae571cd6ba334aefcfd917f6de8224d014026297b840d0b890523e94b2fea20f154c82c25c4f9d5992b9481fb569646a7023e5ddb42db1baf5f34 jruby-bin-9.1.0.0.tar.gz=1ffdd352823436086ebfd37c03401a1f3a9cb8a8c5f75476af1f704c4764396a20f49ddb7fb7f0911e1608f7c88a332944330b8849d13e6badb170efb736dbe2 jruby-bin-9.1.1.0.tar.gz=475acda79ab8c54467ae70094aa86842959200127c1e92709f0a731014c469d3e52e4c48770b64ab1bf31e1b710ac4570b421077c85c08071c1356bee55a2900 jruby-bin-9.1.2.0.tar.gz=cc6b1e1a2907c128dd04edf9da11933a54bbed5e861ab6f0208505bca5aa2aa9d9acdd04bfde65824346fbb435584081fc8ec2e2e9a3aeea1bef8047915e0c61 jruby-bin-9.1.3.0.tar.gz=88339f4cc05f7f0ded21f100755156ade33f19873f49c0c64110916da8c0b059df541a77bb36e54fda9cebf042591450d2d6312ffaa879df926870806985e774 jruby-bin-9.1.4.0.tar.gz=ebe0e9d67cb91721d589461e93e26338e3e3a1f0f98de53f25906684140b49d989ca6d3704cd3f6cbf650f30aed9a3989f117bb4732c83ed870364ce4c31fa36 jruby-bin-9.1.5.0.tar.gz=f2a11e6fc88d37fc1b640ea8c9feda4607bea6da5e6520f61ff85e8d6a51543612ae267b45c033214f8fd0e2283153da02001cbc9fd90be4761b7544e1413b9f jruby-bin-9.1.6.0.tar.gz=ca59d199a0fe791efc57f05801ae26c6cf6402bdc0f1a795250b1a2dda39b233ed24c8cb005016e79727f4bcdceb1bad726a60c16935e76fc87e5d1a078fb5bd jruby-bin-9.1.7.0.tar.gz=f2569d4858a33280e90d984aac53662c25ef057ef9903bace6a2214aa2e6a537c9bc8fc76b08f846b3093cc4a12c70c98d725576a4ac771e640b95cfe3697c7d jruby-bin-9.1.8.0.tar.gz=dba3b41b65ff27dbaa203a5cfc78ac7cb9d952c52b452bc774f593383e4ef9389c0bc37549b798f48b63497ce7007b1ac2d2fa252d9a7c3e52146b4ae192ee49 jruby-bin-9.1.9.0.tar.gz=f8f6419be34aeb7b7577e946a62a094f5921d7319b51876c5e07322d99249b3a9f29fea4ee5c2b8184dfccbd5da8f8262fa97f5e93874887f3355dabfccfa0df jruby-bin-9.1.10.0.tar.gz=857783bb45fc5d62148bd687b43af9ce776099dfea75ec4b5d947a46ed270568bceba2a630a3277746a3a9c1fd3111caa9a4cd13493ea8824c1ee190e6d2abf1 jruby-bin-9.1.11.0.tar.gz=718ed3f5a39cd9f9b45c4e11ba44cd32e035f8d9f26fe59230dbaecb71adfb2513ee1bb86ff72e075b02f20151f3f30e53bfa30b6c4b011a93a138d4f479fbf7 jruby-bin-9.1.12.0.tar.gz=8a9f88d517d8002be570aa95aebb0063eb62a47efee191155f9fa4f045854910f78431514f857c438167ec42f4241faf74d4a8d236ae36feae58732312e4bbed jruby-bin-9.1.13.0.tar.gz=ef88f613ada2665d4f63b2e2f15594739de8ba501406e76de417821f44847b0e258524687b0ae0cf5b737520aa4dd9bb59d80a4b89a81408cda638f28bebbead jruby-bin-9.1.14.0.tar.gz=d15ae0c60421951b830524acd21a0f2a56f480e983b148a2722cd36afed8e99a41f518eb8a679bfa2cf87f08637e81c24ea88be40c0a5390e081322f1fc6f8da jruby-bin-9.1.15.0.tar.gz=74a411f42149510180706b2c70610caeea357f6fc3d2a12ff0227586862e6a9dedf09e752596d6c486af7a310a07241f311a1dfc73ead229d7225c09d4508605 jruby-bin-9.1.16.0.tar.gz=94e88dbeb2545250ba5bef50bbe0baa6f3851e9817f67f879ffaab50048bb0d41cd7a0e87ac9ef547e37c2b82cf1d7aae6b8caa43d03c6a9931b8ce0ad4b2afe jruby-bin-9.1.17.0.tar.gz=4c06b9674e20f48d3815b4084bb38e6994670eac804fbc56d717cde7abdb74d57e0ac17b7fa0b500318de405c187c3eaa01441c22621139dfdbeef62a5467a63 jruby-bin-9.2.0.0.tar.gz=79f5e8674089d2f6b260e033e3ceb4571f54cb5cedbca74ba76b52dd7cb30085a8c6c2676e9be57a8ecd9e962fbcb3682a8de38e1cdde2dc6e05bd179556edc3 jruby-bin-9.2.1.0.tar.gz=185e67da4964c9cf1d9142446efa77605e77894444bdc96bbd10fee22637f197aea9fbb0f60d3a42540e5f383d5b06fcf095d572f432544a40c2145deec81926 jruby-bin-9.2.2.0.tar.gz=85e16e38748b6ec5f237eabc8a17eb225c484c20f7ab6728f2a0f650061bc50c8a9601c04b0128e73c410ffe84dacd2b8bb37167aae5595728aa25e88c4c9b92 jruby-bin-9.2.3.0.tar.gz=97ee210157c451567946b38d33380051f82e7e8cb5f7649fffe050542ff6cd627e2c42f4c46739d1f0995c87e7338865b18844741285bf3f72364aa3c841c54c jruby-bin-9.2.4.0.tar.gz=9fe1506e862a17e261cf726e1bb70a9f612a6d7beda919a01405899660d1f4b79ee690ddf9aeed1d2b2f3cbd698be8df4f98d3815352772cc680e9646d721761 jruby-bin-9.2.4.1.tar.gz=2c41e7884cc54819da17ea9b2b773d05d3240d53a2ecb57ba430ab61308066eeb1bfbe6627e6c261f5f27ab5df7f5972656366a04a191a81b0379f620b74512d jruby-bin-9.2.5.0.tar.gz=d548eba8de420c80062021f5b6e6b203f8b7b36e3f11409919eeab87a028a18f9346f27d2cd8b1f33419adcc83fc804a36dbc3cee169ef1d93383b8f5835ba2c jruby-bin-9.2.6.0.tar.gz=20c7897da0d2b585616ea5848998fe8770517e24e16955797db2e5bff4622c348082628d304240a71a97e9551ef7aa63271cfb728eb5fb7e7d19bb48aff20d4c jruby-bin-9.2.7.0.tar.gz=8e71e27fdb149cb7470fb736e7ce858719d13ce6ff8a1e9ab1c1dc71fcc068fb601946bb28ed2feee3670b5e6ebfa8a655a6618d1badfc3763897912c41b1c82 jruby-bin-9.2.8.0.tar.gz=7f71fb5bc8c6c31b31b4c0430ae091871b21aa345777662f264c728c60212365dadb63a7a4b2fff31adbbf8a2e7cfa678d47486e28840f57b86cd45fe9354013 jruby-bin-9.2.9.0.tar.gz=7df33150858ddff586b3bd86120d4bdd80546c7f8e62245f61facbaa5527400a1aebbb33e4a1a8af52066487e3d29760eb96c7ecb9875eb9bc954ccbcb37a4d2 jruby-bin-9.2.10.0.tar.gz=f4ca024602ddab37154f5547132accb26e7c0ac2e913ebe1b5c7806727eb148249e76031ed4623ab53814beb8fb3f472e386f44d57adb5d2b3b00fb2773c8a63 jruby-bin-9.2.11.0.tar.gz=f736a9e139694c84d0a5ea42f36b972adc82c9be13e0b80bd61045c026e4fe31ccdd4be3dd3e94781c846f356e026465e41716fd2744ded2ab0ca39cd33bb46b jruby-bin-9.2.11.1.tar.gz=2f758fabf5910ea01e9c04c7600d9c666f2df3db8622f3eeb3534578075ce65013c42fe9ea6f95d4499945f795e6d566eed2b1545e149af823eb1d29167a1223 jruby-bin-9.2.12.0.tar.gz=1dbc5bb3814a6590f5e8ecf4889152684b5625fe81794a2c4064d598614a85129256002dcd239e294f209b98e3abaf9bfe70467fff48ef66b1531162dc6c3be6 jruby-bin-9.2.13.0.tar.gz=2cba016ad6a376252083122d51335610209d860c41de1902f5cd49ffc2f6b49c350b68df8fc4113c221255af4db7ec07980267b9888369811faf66db369e757c jruby-bin-9.2.14.0.tar.gz=ee3d17e875dd197f92744c7cba62320bfd3f166bbb2ca117f2910780a7c571779c0940e024351e9d4685ee9781dd207e773ace57a4a8a7011869c8b6209513c5 jruby-bin-9.2.15.0.tar.gz=678abfa7654b53b049e4103ae3647775d970c5a7192539378957c1731a3037c852e03f00a496c022c1c438d159a93be6e6f04d7563c811aeb7d261ced643d9e5 jruby-bin-9.2.16.0.tar.gz=f77e314d578a980071bddc25c65659d62e0644927ebc4e7d7d4523935b6c893e611d47ae7478a26ce7acff38b1525eac11b4a329188cdf76aeb07fab667d99d4 jruby-bin-9.2.17.0.tar.gz=e90ac1890a54a892b13adbbeab3cc5242889ff2a4b6cae535c0a3172072bda6ab01b960705ba608d6d7ebe9de5984d8384dbbb6399ab3b2e53a9e347e7849e1b jruby-bin-9.2.18.0.tar.gz=c5816ee0f7b0f559dac70ffc5277f85ae9c41ad176e43d277f820c2727387baba93998b915cadf9708fa78b5cdf3911a9c39c2ebb61a77a38dcff359f7d88a73 jruby-bin-9.2.19.0.tar.gz=3740674035e27cf7961b3570ad65536c30faab1c9a71a42a696b173379e79647411d57e0d1d06b5f9c9a970eb02a595a559191af08a083773dc4601dcfd07491 jruby-bin-9.2.20.0.tar.gz=1961f52f41e7eb9f50b0f382c8166ad988a6b3c0311c342658edb34486b073ed45c1ca5731aa319196db02cec208a4dfc86aa6b436959b80243bfa4f62629735 jruby-bin-9.2.20.1.tar.gz=598e28cbad682fbb30a9a9a9f708e6e1f4b7903300de2477e88a646c42ae594df5b768ff5379ed447f1a7168e93dbe35cc2d5db7087cb2228233a05bc4687908 jruby-bin-9.2.21.0.tar.gz=8f6cfc43ce3ebbd69781da71c5a70746ada090162bf6cb709dca41a6d968e6072ae62f657cb0bd471c648ff294044bfec3079828bdc410bd64758f76a93c3214 jruby-bin-9.3.0.0.tar.gz=06331ce32ee88aaad5e5bc0668d164ec3263f8ef3ed34bb32981b76ca33f8c817e3632550775706481094159f4feb43916ad1f9ec0f0775ad756b16cb7bd9417 jruby-bin-9.3.1.0.tar.gz=bfcbe6dc5ba736fc944af15eb387b545f6c5b987a7db88045913a02a1d30726c5d1255c4dd609aa7c2d2823ddf9d8360223b0575c93302aeef4c54eb37af9abe jruby-bin-9.3.2.0.tar.gz=b1777bfdf1964d7e527bb3dfc47b4b9e8c589cdb301c38ee8ee988bd0c392ca978ee3c1c24e4b5a65bdecff67d1bd96e2d8645e58ff7e891e3622097ea29e925 jruby-bin-9.3.3.0.tar.gz=648e70de0bda710e2dc70fd03c3dc6b798dd4c7b92584c54306c426f59ebe1168a595c4cf94328f6b44674f5507bee354efdb1cd73060b73b0171a3605051c9c jruby-bin-9.3.4.0.tar.gz=6b09decf412a76578179cefaabf01cc8740f70ab5324954e6aa43b1d8b81c37db7a99b1f94d6ced2b459f1c44c3086892b9a2c06b3ea838baf75a8fd5e0447c8 jruby-bin-9.3.6.0.tar.gz=f730522eff27462192808773cbd071cdaefae11f20bc808a8f22515a33960a730f3c87ec727ddfd9dc9b6b35acffeb50c31d75a4794a3f8daa75e1963ebd246b jruby-bin-9.3.7.0.tar.gz=265051c68d3b9dcce708b75f8267303ae84008859c88d7fe4f282395366c3f52fcf1bb161210555c0fd0a2427ff5a728ea9e337feea3d9b69559cadb2f300aed jruby-bin-9.3.8.0.tar.gz=12e795b7e1f14141bde68f52a29b0aa9f1db20515240dce83cffec351cefd25959579e01059d42dc8c8e4280493a70819d9beb1e0523e9bc10a72af16d9abd60 jruby-bin-9.3.9.0.tar.gz=f0b31d98f39a2bd4436764db0b0139433d6868bce7c30c5d6e3552616ba879c93478c499f3e4c884fd3728502916aed5c9ca1be150ae3e80ff47b36710c3f6df jruby-bin-9.3.10.0.tar.gz=aa36fd4c5de7b17f5fdcca1d1314d309e7b4470d46822c45baefbc0ad5180e5530a7054502b97b414352af485e7936659390690dc6198512ba6733d8f8d503ed jruby-bin-9.3.11.0.tar.gz=d9fd90bc64028dcc45687d2be51414b1561add20d20d1392525f4434cc684d505427f5e56827afffbbb0ce2c9cd7c1ef846b0bffa737679afb95d4c160232da5 jruby-bin-9.3.13.0.tar.gz=eb24641fb7a6b9d2039ec953388053e7333b306056f9a5bf745331b04cfc05dc4211a9b7780ce88bcee9184b8cbb219b574574d308bc2720547c116f4d4721dc jruby-bin-9.3.14.0.tar.gz=d9b02fc35133f71140cc7d891061f8190b61b3d1065f00092a2aa9a4beaf7d67297dfb0529691bd24d29607d698f39c62af9018e8307c1e6624c3104a61bb74c jruby-bin-9.4.0.0.tar.gz=fb72f8e087ea08653fa4e4225fa26694c3ff97c41f3deb8731cdb6571c6c9b21e0d8f69e2096f82ee81e2b5c283f912e2a5228c15873dbbd56de96a2ba35d59b jruby-bin-9.4.1.0.tar.gz=46003ef6192718a6372b79ebc89bee37957686224a08fe2f9a6be3c9e479784409d0269f0885c4d1f1351585c5d2cd31fd2ad45014e425bcaf2d44d66b98d299 jruby-bin-9.4.2.0.tar.gz=77e484ab73ece93e7d7283f876f0d541607c6080eee696b702b485be9794cf7e6d464f250a6d75387ee69aef3ba40ccf4f6d9fcfe324c5bc7a14376177ea2bb8 jruby-bin-9.4.3.0.tar.gz=2361f4bb2989f5951b0d3e9d49bf31e6805ce39bdc987ad3c6934daa98ab7c8e69763d40d7412ccef8adbbc198e52f4b83d00998ee12ac43fbfc6b5d88930c15 jruby-bin-9.4.4.0.tar.gz=e89dff0cc5b4a948daa95196d4bd4fee0c6901bb4aa023ae35b3679d9739967c2a74e8a4388b1835465dd39f1332a1f321b450b40c54ad2b81802645b4a31ca4 jruby-bin-9.4.5.0.tar.gz=06db948e5fa6f8559abd3b6891c7b4867b9f54b7bddf0e36d6f20cc1bfb394cdba8ea920213e545c927d1cb865e083cb1089c8e925bc608e0f8784a79b5d330f jruby-bin-9.4.6.0.tar.gz=ebdc671622baf3c42a988d6ebe24af6bfefa1f717f050f602a1b35909a3220316329aad080ee2cd9cd330da9428f8d736502573efa64bd70f093ccc123ab32b0 jruby-bin-9.4.7.0.tar.gz=4fc8b12deba7b8a53a523a41a31c248895adc9bd54a62664a27107e7205369af39c0eaa508a9a70611c3bb845524d8c5f39451c09b8b9cd87059ae15139703b9 MagLev-1.0.0.tar.gz=8da29f16e08f657b0d2f147b64f2202ac027db26f85da8dec29f926898f178ac8d11260fd6c0a539a9b9b15eb92d8c7ced86a8cab1861ae7f8a33b6fa468e5cb MagLev-1.1beta.tar.gz=7122af70530e76b9a4cee93244d6872b49616e78086bc8a5db0f32d2b846560b352c4831addbbecc72e0e3158bd52f26c2da14f5d83a515ead30efe7c538b62e MagLev-1.1beta2.tar.gz=43b4b831791074f6e8c12f6fbe6ccec2bd0446dae029d3e6717cde1e7adca8462a2d7dc49c14112cb568b5b3adc8cd051767044b41d57ae51f38aca035ff8597 MagLev-1.1RC1.tar.gz=942c1cf43f1a911230aa43bbac1cea2e2e61b5e19af755e29a6a71139d66d304efcc519072dcc3487a2da7462847530564aff4a2159d675e3270cc938a297dd9 MagLev-1.2Alpha.tar.gz=2672e3e5425df2d2ecc49f85df5845fdb083f74a7b242cac75e33d0c1837079ced8ec8b273807326d08e7bf6f95cb4f1d8351f37af8bb38c4150e6292fc553dc MagLev-1.2Alpha2.tar.gz=4492ed58b6c2b852502a2195836f1db5a80f0619467e4d7b44981a993a5e9a9ea5c9fecf1198de1891583e334bbc3c3a86648ce8afea1137ae9c73a4d76b0f4a MagLev-1.2Alpha3.tar.gz=6290895b22efb986ffd7305b7d651f20a051ab6869d51310bf891fa3eed48526a8617b69f72793e8ac0b57f99bc5de75f34235ef94de967bbdcd51857efc2af6 MagLev-1.2Alpha4.tar.gz=a621e9c615ffec503910540db770754f29bab1646d8e67650d5b82413bd551adfb0bbbb8155407ccb6f80933bfe8ae1bf9b688eb0defbc88710308bde1325683 mruby-1.0.0.tar.gz=4a0f2927da3401df23d5c19ba566995f76775def3badbb14f16510a271e7b40a833fc61841f89d8adc6d57b5b12cb453708961c16a22133c092fab8ecfcd1e3c mruby-1.1.0.tar.gz=afa99a973e9c1b72a5a418d709c4aca08dc7449c427cedef5f12db4ccefb15e11a4fd1c23ceb7e31e49d4d2e602c0b1f9dcf2e0f6cf8ea3466f0b9bee23b53df mruby-1.2.0.tar.gz=bd5de32ba52b6642358752755329fa45a954082122a8983012930056c286ac328fb52fbdd11f34ff7c80af2c0e9a6348abcd5214602aca1150f2e7ae25cad1f2 mruby-1.3.0.tar.gz=13a57306706d2d60693151919ae15bb3621e6e7ed3b5e9c6d3b1c8d44e52b898c1ad394b39946d730ff82a19f5e3b7c2a374f9dcc3b6c6f990581e504f1cb9cb mruby-1.4.0.tar.gz=d2dd6e17c7f8e890ef5b6887538cccdea08a2376ba8f9a478d7d5c4377fd4c31a4af6323b1fc73952ef80e5a4778ca22eac3d724ce7d50b76770f7e614df7da0 mruby-1.4.1.tar.gz=2cbf155ba7819211b6410ea606c4d0db3adf4f47a4018ac45285ab3e32b94f280aa0af0936ead7233411957cfca62979d14bbaaf0d8f40521cba5c12272f2af4 mruby-2.0.0.tar.gz=8379f76b7a06d280e2a2552eec2975ffa3fe85b99028f6f7c009cd908f95faf3cd36a9975f502a5779559baf3c45a4297da0b6bcc038d213a0fdee851f9d01ea mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.0.1.tar.gz=74403f928c5af52c615ee2490b0aa685b4d62238f3da3778b3e44748e523e1916f110b42f2e73729be24d561b89a9ae498ff32f549ebe241e97a70d83cf39ded mruby-2.1.0-rc.tar.gz=f310b385cbf80c6b6ab67e2a41b931411149639c0bf778799e3358d6a9a59f508f42e3faf72fef9e8ef91088d6184c445af7933a47e4e2b2fe114362d579bac0 mruby-2.1.0.tar.gz=da28b5a078e121c75edf62fc68fad6d5810212bd53a3424d4f585ffe5bbd09f652393ffea0f4b3ddd802e5fe178554dc67040c39c9d5069bdfad4ef22ead7e8d mruby-2.1.1-rc.tar.gz=97c9cc2c79a5dbf2f634ea08532f0f512f8af6ffb99ab4eefd83fc336ca9d97b943e76643971047b4508aaddb5e40176d6cc8fa39a17022455aa15d774eb5b98 mruby-2.1.1-rc2.tar.gz=13aa32a35bd5d8f02a9bfd08d17818dbae78ce46c8b0224a029f9f191cb64ac330eddf3871f4396b9221b987a91e4cd6f8933f59814ac0018155ec8454abff18 mruby-2.1.1.tar.gz=66f9b4bebb5a7b19f5cb1be2bd8b9bc65e4dbb5d4350d238ad5f947c9195fd431f2069f7334036ea63a750e9257e59ae1aef16ac99c7e1f4e17724cd1cbe2e50 rubinius-1.3.3.tar.bz2=8b91baf429dac60663d0e4da3152a60ec6e007f5d6c17ffa430876ec88eb87ade44efae90f2e32e238fd74f1b3d54e27492315f08e7bb073220b402e1e2d3163 rubinius-1.4.1.tar.bz2=928d12aa01a1d0f6c80175d67d3b1f8b9840f69f045c8148786612316421223f4cea71e3c373ee18a3f686b1457557ae547645afe758a99d21c4818dff47b9d1 rubinius-2.0.0.tar.bz2=5c81a6b8cf7b59e08c3b9353b0eb37ce985aaf391f5064df65ffb10f6d12b668287e4d4e61e2c6b560d9234c10f0b64bba74259f2c06f1dac488928544d4131d rubinius-2.1.1.tar.bz2=154cfa93ed59835814b8b974f6d738b049942fcc2b75095d21c87647d002c879fd55aa3d1ec95414b5b66eb9926c25a5c6e3e19a7c0da7dec6edbf434acb9c68 rubinius-2.2.10.tar.bz2=c2168e676059c197123916dd948b83e39bb96e99786bdcaef2e690936b761fedb13740b9f19883f991f1b475f3249ea1696213e8448c41ae15dfc14b3d4e1fda rubinius-2.3.0.tar.bz2=d0f3dd5e3b891bff2eb79b7810c6041e15fbbf0606c379f89575cefd829ac7a394b0c12ed3c5a4d452730797bc0a2c6c82646a19a078b56dcac7acad015a4559 rubinius-2.4.1.tar.bz2=7bcea320006b8cd3d122c407d89c325973a74c32456ba0b649657ac848f4682f2eb7455c13e3007709c22932bc2e1b65e2dd43fda0d3c9f993ddf8a74d1e2cb1 rubinius-2.5.0.tar.bz2=ac94d5bc11524e715fc24c1de33f4d358c2cd65e92fbb64c850dc8151d2a712d268227733c99fcffe298c3bdd6ce080c5e9553e4e8f3238868323498a9d10cae rubinius-2.5.1.tar.bz2=9315f76126d0aa754ee63b190385c24cb084f36293a99aa30fc482fd880d5393aabce361e09ff5514bc2540dfede8e179b7e9212b2dd59bd14ca2aa69d209a83 rubinius-2.5.2.tar.bz2=b48bd8d54a450441a50904b07c75c8d31b59822830a74c952720d6f8d2d86e6a27a84775e975ff2bf55bf3346f34e69d742f308933a9d8476e5e78109cb525f6 rubinius-2.5.3.tar.bz2=b923446d325dc3ce5ad28af9ee527607fae3259b85e85aeff97c1bebbb4520daf70616957b1c0ded900ed19e59025826dee66977c19cd2a2d4e9a0296811eb20 rubinius-2.5.4.tar.bz2=75b7ddbe218e4c92210dbf5a06eb8b3c3aa028d16146982a4e813e3af10a90d33f3e239f4508469c6aba17f02cb8bd10e96a204839975e06519869cacd456c92 rubinius-2.5.5.tar.bz2=a862146ddbbdcd4439eb64e78bfe6d09ae4cca540d19869618426d3f451544658713fe8eb7d46493785eb0cc721077e624293cc44d68eea3ef584967b43a18d7 rubinius-2.5.6.tar.bz2=9a0bdb5d77f80f163925ce409d00be3cee34871baae8bcfdb34c3c7545b92fd14102fecb970e42b3012588d299e504b724025f397a5a00e181ab75f1448e426a rubinius-2.5.7.tar.bz2=8048110b3ba4e5ff8c3f35282896067e1b1b46dccaf9ef4f6c9b6098782f27591ff59ccae0234fd7e881e3aaf17a0b420286b1b52ecd2cb672249655795a6982 rubinius-2.5.8.tar.bz2=23fca2f9747d2b0e544af890c3baacfb7b3a009cc59cbe653762ccdd827a6c915dcc57902d317fa1f7a81f8c12682f6c3a93195331b6de0f705b118e2e8c13f1 ruby-1.9.3-p550.tar.bz2=38767e98df25484f7292437f3cb0f798b3a43e9a7414a5401677e96ad1cc367cb3fa23ac3abe568d5bf2b2ca553713469a8770d41b79bc63daf3fa59cb4e15c6 ruby-1.9.3-p551.tar.bz2=5ea40f8c40cf116030ffdedbe436c1fdbf9a50b7bb44bc890845c9c2a885c34da711bc1a9e9694788c2f4710f7e6e0adc4410aec1ab18a25a27168f25ac3d68c ruby-2.0.0-p576.tar.bz2=e089cca4867cd9c715f4f37e40a1db9af6ba0c74b47e79568121bb980476f8877a87ccb848b973381edb4667c0c73165f5e1761f60db839e67f6326302dbd864 ruby-2.0.0-p594.tar.bz2=8301a51c73fb63a8cfeb14af47d0c18b5bc3c45e3d62fc2ed56a673a1cd6b0015c41f275e70eb14a9e40036b1530977199321e05285e107a6adf58514bef1b3d ruby-2.0.0-p598.tar.bz2=10026a04e01a8ad14ea9c99bbdf4f7d04029b73ee0c01bbf6c2eb2817332d49adacf127b646693b67b5dd7010eaf3b696b23b6335cc0f7ee5a6b56dbba0f6f82 ruby-2.0.0-p643.tar.bz2=453117152e6facdcd5bedaa9c3b1e349382bc5bc1dd3d650ec58b398cb9d2519a2822d05da10bcc5dbbb4f513fc5fef310caa3529d176fa2d453befb28e4d83a ruby-2.0.0-p645.tar.bz2=e9ca186b1cf0877cdbecd43dcab2c5161a53103e926609d5e1b769a4980eab4571bfd0951788b4fc92dfd9d10175b0f5f36ea2c7289e575a9db9b62c02f93185 ruby-2.0.0-p647.tar.bz2=3416af771ebb0b27ceacf23d309bd2a1ede832c2edf48a5ca46f0b0b84b2ab94fb6362a0c7fe4f77b21253539db8161ae26d23a78d1ba729bf03812454d93d04 ruby-2.0.0-p648.tar.bz2=609acf6d6352c9746e21cd7f0e7d29f5eb522e6fff2d5fad0431d63c568cc084ed5b7141f84cd33512d8213200d2d1a22e8d7df71469a980a3a92886133fea38 ruby-2.1.3.tar.bz2=9b48adb161e5e4550a71f61252c8edf59944affb82250babcb64240749af4b672e4a54ccd0feac5b36ea447a358b350b5080125ef2d4acf6e9e8b1ab82612f48 ruby-2.1.4.tar.bz2=68db1567751166c5e7d24b6e5015124b8a15568c50556e1f429486395352fa56c4a195a74820ab135697924149d014b445b345a1b9755678aaf824fba79c606b ruby-2.1.5.tar.bz2=d4b1e3c2b6a0dc79846cce056043c48a2a2a97599c76e9a07af21a77fd10e04c8a34f3a60b6975181bff17b2c452af874fa073ad029549f3203e59095ab70196 ruby-2.1.6.tar.bz2=75d58120b5f387bcadbf6d19e85624f78c74f81b9018baef39207214673f7ebc0700ab31145acd88b4071c896ba8e1302a29c90955bcf5f8c863634125022aa6 ruby-2.1.7.tar.bz2=f610d2dd6a93f0a5e84e04ddedf847bbcea5dd3289b3164cdf60be64f67a80dfd5f9836ea5d169970cd0ce24a7e05ea6190699706567cb0d5cf450de6a70e445 ruby-2.1.8.tar.bz2=7129c012bca7f0e7cfa51c73ba0898697f7a9f31abd5ae57d38be5b6b646fd80ab33be9b262cd3e2486c66f65aaf4ec6e881ae6e5a82ec9df62f00fa072510fc ruby-2.1.9.tar.bz2=a86422132e4c64007a84a91696f4557bdcbc8716fbfe1962f1eef3754ee7f994f4de0b5b7e7231c25057515767040d5c4af33339750b6db15744662e9bd24f38 ruby-2.1.10.tar.bz2=4b7213695416876e4de3cbce912f61ac89db052c74f0daa8424477991cfc49b07300e960177ff576b634a97ee8afef3c5aded5d5806329dbd01d0ce7b42b9b63 ruby-2.2.0-preview1.tar.bz2=2f1190f5d8cd1fa9962d1ff416dae97759d032a96801d77bc6b10136eba59dde1a554ff8c0c2d9ce0d3c1361d4dd12ad573b1266fd53b90ab238d8ce39e6b862 ruby-2.2.0-preview2.tar.bz2=c654d4c047f9463a5fb81eaea0fa5ab7bf316962bc7fb0fb356861e6336ce8ce2162c7779d8b27f72d7bc0e9604b5e5af2910abcb0b0a1f197b3138eaddfd4a5 ruby-2.2.0-rc1.tar.bz2=181201168360bee37dceeef3481a69e8a333a5d329680031fd9d371d30ac64460bbdf4db07546133024f541774e51301f1630cfd988c5e5bf2464834f3abe6bf ruby-2.2.0.tar.bz2=04edc53e8cd1732c3ca61ebeb1d6133614beb10f77f9abb80d8d36352fe8aa205112068e460bf600b2c7e81e0ddcc3b311e7e027c320366f1bd992b3e378a6ad ruby-2.2.1.tar.bz2=af6a8e75a66b953ff33ecbca5111bcf1c6560b6b48b370b700820fcbe91363146c5ac8abd670a14e693b44343ae598bab472ed2902834304c03ffcd9550886d1 ruby-2.2.2.tar.bz2=d6693251296e9c6e8452786ce6b0447c8730aff7f92d0a92733444dbf298a1e7504b7bd29bb6ee4f2155ef94ccb63148311c3ed7ac3403b60120a3ab5c70a162 ruby-2.2.3.tar.bz2=795f1b66a6d4f0baef897068899c3a1a4370ce1268618e6a7d6d4720234444259f371d1ba2e174b2f7580265e9f18eda3f295fbb087447aa6e8fb7a0f07526ce ruby-2.2.4.tar.bz2=d27ca2f19c214ce87f906b57edd41f2f8af35b2871c191470facded9cfda15ba46e5c3bc7d5540225a38da6bd65050fcc8aaa4ffbadbb6bf7dc891c1821da0df ruby-2.2.5.tar.bz2=d3224814361c297bc36646c2e40f63c461ccf5a77fea5a3acdcb2c7ad1705bb229ac6abbd7ad1ae61cbe0fefd7a008c6102568d11366ad3107179302cd3e734e ruby-2.2.6.tar.bz2=7a93f72d236521ac28c8a0bc0c73cf805797a8813d22e02f42c5fc05dd39f6e422817272e0db6a24c245f6f97ad4b2b412a9a47ac50156ab186df596918a5f34 ruby-2.2.7.tar.bz2=83756cd1c91516962b83961e0de59d858618f7ed3e9795f930aab4f199d47a95ed8f867d8aa9b51d508be26d9babf2140117c88241168bac41e6ef702cfadf20 ruby-2.2.8.tar.bz2=aa1c65f76a51a57d9059a38a13a823112b53850a9e7d6f72c3f3e38d381412014521049f7065c1b00877501b3b554235135d0f308045c2a9da133c766f5b9e46 ruby-2.2.9.tar.bz2=2a8c8770fda20a22b79c9115b6f468f8e7ea1092c84a5089af7a3122163e5ad298b493e6637e4d93ba02d899d8a619c94064dda8ac98cf3b93f64f45d5401085 ruby-2.2.10.tar.bz2=f8ec96c2a5f4ecf22052ee0b1029989ded52d7bf5d41be24fef67e732e76f72119302240bca08f0547510a9cd29e941a32e263cad9c8a2bf80023d6bc97b2373 ruby-2.3.0-preview1.tar.bz2=ae6d46c87f59e1fd3703b76dfc45bfcf208625f95ab9f4559f0b9f7050e8681f1a6e419f5fa06b704c83e56879c3a9ff1337dba443bcfca76fadb49c97d97a93 ruby-2.3.0-preview2.tar.bz2=e397f321d4338edba8d005d871408775f03d975da90c8abcfdb457a1bc7e6c87efe58c53b2c3bc122e9f58f619767b271bcc8d5d9663ed4b4288c60556e8d288 ruby-2.3.0.tar.bz2=77b707359e754c3616699d21697752741497c719dc3d6fdfb55ed639e76d52560d293ae54cbe5c63be78dc73fbe60f1b8615d704d017bdfe1994aa9747d26a6c ruby-2.3.1.tar.bz2=a8659b96a3a481a3dbdbb6997eb18ff1f8cd926a9707a90d071e937315c21d372c89252f0d44732ae5007d2678fda8c8fbceafa4e4b4ff500d236fb796284d8d ruby-2.3.2.tar.bz2=78699bae5b0a2382a58f9d51f7d891341f00ad3a90d9ca06b68b1b245cf5acebc3a82133e39bf6a412ac999a5c0f778a0dab177c2569ffbee085ffff6f6ec38e ruby-2.3.3.tar.bz2=88f7782effd35bfe0b4c33140b5eb147d09b63fbb35b9c42d2200c010f387e2b70984ead1eca86569e8ec31f08b35289d440c0ca76b662dadb760f848e863d91 ruby-2.3.4.tar.bz2=ad1f16142615498232d0de85149585be1d2c5de2bc40ec160d272a09e098ef6f317d8b25026001735261fd1c5bc0d1f8513a8474e89f0d86eed5b2fe7338d64e ruby-2.3.5.tar.bz2=3ecc7c0ac10672166e1a58cfcd5ae45dfc637c22cec549a30975575cbe59ec39945d806e47661f45071962ef9404566007a982aedccb7d4241b4459cb88507df ruby-2.3.6.tar.bz2=bc3c7a115745a38e44bd91eb5637b1e412011c471d9749db7960185ef75737b944dd0e524f22432809649952ca7d93f46d458990e9cd2b0db5ca8abf4bc8ea99 ruby-2.3.7.tar.bz2=e72754f7703f0706c4b0bccd053035536053451fe069a55427984cc0bc5692b86bd51c243c5f62f78527c66b08300d2e4aa19b73e6ded13d6020aa2450e66a7d rubu-2.3.8.tar.bz2=6d79e0d25757fd37188a8db3e630a52539bce7927fcb779a2ce9a97b9e5f330753035c16843552f1a1fb6c9a1e5c0f916b3cc8b5c0bfe81e20f35f8442e40ae8 ruby-2.4.0-preview1.tar.bz2=c9873e8686eb54dbde61d6e23cd5197beebccd6cb31fd12c82763ebe1fde17095d7514d9d93c2c82b238032c98691df5479dc2d666a8a590e0fc54450ec29cb5 ruby-2.4.0-preview2.tar.bz2=0c9a59a2f57a99c4ee8539a30f41da1de7547566203f89d856e1be9dbb44365754e6c470145dc9336eb324e0feb2f53d9fef18a1564968ac21f9ee528905949f ruby-2.4.0-preview3.tar.bz2=6602c65a7b1e3bc680acc48217108f4335e84fdd74a9cf06f2e2f9ad00a2fccacf9fa035a912bc9d5cc3f0c7a5e21475971dfac37b0364311ef3645f25c7ddf9 ruby-2.4.0-rc1.tar.bz2=b43902ac7794487197df55a45256819d2e7540b77f1ed4eb68def3e0473ee98860a400862075bafadbde74f242e1dfe36a18cd6fe05ac42aae1ea6dddc9978ce ruby-2.4.0.tar.bz2=bef7bb53f63fb74073d071cc125fb67b273ed0779ef43c2d2969089b9ca21fff1bd012281c5b748f7a3c24dd26e71730d7248c05a01cb23ab2089eb4d02115fe ruby-2.4.1.tar.bz2=1c80d4c30ecb51758a193b26b76802a06d214de7f15570f1e85b5fae4cec81bda7237f086b81f6f2b5767f2e93d347ad1fa3f49d7b5c2e084d5f57c419503f74 ruby-2.4.2.tar.bz2=1a5302d2558089a6b91b815fff9b75a29e690f10861de5fdd48211f3f45025a70dad7495f216e6af9c62d72e69ed316f1a52fada704bdc7e6d8c094d141ea77c ruby-2.4.3.tar.bz2=fb4339e30c04d03b1422b6c32ede45902e072cd26325b36f3fc05c341d42eea6431d88718242dcc9ce24d9cad26f3d26772f2e806bd7d93f40be50268c318409 ruby-2.4.4.tar.bz2=ae632852a5f413561d8134e9ef3bb82adb37317696dd293ef92cb76709ecd45718f14116ecce35b12f1c2dd53ccae8dabc7a924a270072b697512d11f4922347 ruby-2.4.5.tar.bz2=7034fcaeaee41f14bc0ecce0d3d93bd1abe95310e1a0b95fac66eaba867adfb2bf7ba4d0d70d67a15ce8df16052dee405c38cdb18987602e64a2f701d37d3df0 ruby-2.4.6.tar.bz2=292802984e5cff6d526d817bde08216fe801d255c4cede0646e450f22d4a3a81ae612ec5d193dcc2a888e3e98b2531af845b6b863a2952bcf3fb863f95368bcf ruby-2.4.7.tar.bz2=2665bca5f55d4b37f100eec0e2e632d41158139b85fcb8d5806c6dc1699e64194f17b9fe757b5afd6aa2c6e7ccabba8710a9aa8182a2d697add11f2b76cf6958 ruby-2.4.8.tar.bz2=2d7e0f5ad766e2a12a1b53ff838e6bfe86244ffb7202196769c25e9df6f71f3ccdd8605e7ef35c53e54310bc82caf6b368ad5111dd0a3ad70a3aae1a7be93f08 ruby-2.4.9.tar.bz2=d485444dcd025a261a16bd740dae63c0aa23e4138a095584e7a83aec47af34415c7d9cbc1313e92da2ec416b11bfddf20bb1a7b60c80f12906d11ef27409b3e8 ruby-2.4.10.tar.bz2=4d730d2d7cb96b002167ee358258f2620862a5a6d8627cfa5b49bd43c6e59c50c0f437b959d4689b231d57706ec7d5910d9b144f4ca1c1ed56bc879ed92e8a59 ruby-2.5.0-preview1.tar.bz2=2d39ef64aaf7a52014905f4ad59b53e83b71433e50a9227f9f50cbb7a2c9a5db9cd69fa7dbe01234819f7edd2216b3d915f21676f07d12bb5f0f3276358bce7f ruby-2.5.0-rc1.tar.bz2=bf0eb114097f9e505ff846f25e7556a2fb393573b4e8b773f94cf5b47998e221f3962a291db15a3cdbdf4ced5a523812937f80d95f4ee3f7b13c4e37f178d7a7 ruby-2.5.0.tar.bz2=8f6fdf6708e7470f55bc009db2567cd8d4e633ad0678d83a015441ecf5b5d88bd7da8fb8533a42157ff83b74d00b6dc617d39bbb17fc2c6c12287a1d8eaa0f2c ruby-2.5.1.tar.bz2=82e799ecf7257a9f5fe8691c50a478b0f91bd4bdca50341c839634b0da5cd76c5556965cb9437264b66438434c94210c949fe9dab88cbc5b3b7fa34b5382659b ruby-2.5.2.tar.bz2=9f9388a162a3ae9c14ec8999fa3b12ff5397de14f55996cc8761d21c757113db37ace4d326b9606de7ad3a5875aa94fec900dd9b81b2fb0dff558c39422f4aa1 ruby-2.5.3.tar.bz2=6fe89fe9d406bb454457442f908774577369ab2501da4fd15725ccbab77675b88faad739a6c8ad1c7b6690b439a27de5e08035b7546406cdeca65c7b295e2c77 ruby-2.5.4.tar.bz2=3c4f54f38ee50914a44d07e4fd299e53dddd045f2d38da2140586b8a9c45d1172fec2ad5b0411c228a9b31f5e161214820903a65b98caf3b0dfeeaabf2cab6ad ruby-2.5.5.tar.bz2=1b56aa79569b818446440b9f2d13122bf7c2976ab9b2865f5fb62d247d7768dd4ac5b5e463709ffec0f757bff7088afd293c2a8c5349c3780763b6444bb354a8 ruby-2.5.6.tar.bz2=e4511d42d19a7bb39ea79f66bb4eca54b63c2a9d27addc035d6d670c1e59ee48a0c6e9c6bc7d082d1f1114b0668831dce3b7422034517f3c4a06ced0e47a7914 ruby-2.5.7.tar.bz2=7d6a7d41b4f3789f46be5f996099f3eb8321aa4778b2a8ff44142654e769ba4ba2df127dd0f267547e4c8cd6ff46364f18e79838df54fcd7e3fb714294ee0099 ruby-2.5.8.tar.bz2=037a5a0510d50b4da85f081d934b07bd6e1c9b5a1ab9b069b3d6eb131ee811351cf02b61988dda7d7aa248aec91612a58d00929d342f0b19ddd7302712caec58 ruby-2.5.9.tar.bz2=12f58e14cfa6337065b0e82941e39b167813920eb54cbdb4ac4a680dd0cb75d2684d341059e7b4d0da1292bfc4e53041443bd14891a66f50991858b440a835c8 ruby-2.6.0-preview1.tar.bz2=d9cb270529a97670d54f43a0236fab072714e715c39277dab70b7a1843ec818e6700e47e1384c7256f9e0ae41ab2c0b768a0de38a5ecf4f4fff5da6ef5ad4944 ruby-2.6.0-preview2.tar.bz2=3872227e9b1c97c206d19bf1e6ce15a38ee15a26c431b4436605dea67affcf16372358984df76b35e7abaa902c15c16f533ac7af47e3031dea9451bbe459b693 ruby-2.6.0-preview3.tar.bz2=d1693625723796e8902f3e4c4fae444f2912af9173489f7cf18c99db2a217afc971b082fce7089e39f8edd54d762d2b4e72843c8306ed29b05ccb15ac03dbb5b ruby-2.6.0-rc1.tar.bz2=cbd6281b2aab6fbce3f699c1ab57e5423304dca7a547a0b3cd4e8e980326dc7b85b2ca2bfaf3f3a648d40f4222fdf1740d81d422790ee7ae1ba1ed33eb11e3e8 ruby-2.6.0-rc2.tar.bz2=9bfbe83fd3699b71bae2350801d8c967eb128e79b62a9d36fc0f011b83c53cab28a280939f4cc9f0a28f9bf02dce8eea30866ca4d06480dc44289400abf580ba ruby-2.6.0.tar.bz2=ca3daf9acf11d3db2900af21b66231bd1f025427a9d2212b35f6137ca03f77f57171ddfdb99022c8c8bcd730ff92a7a4af54e8a2a770a67d8e16c5807aa391f1 ruby-2.6.1.tar.bz2=fc41429491935b89532733b95476ab9f8a4efc310aad8f4c2bd3b68fba08fd7b6e9ac84c6c88ca892022d1ba76435295f3299ea466f9b5453c07d41cb539af59 ruby-2.6.2.tar.bz2=cad678d2ced4085e99009e4fef83c067dd0e6ead27a8695bc212c0e5112a7fa09ceb27f82638faf91932ef8bdd090f844e0a878ffdf6845a891da4b858588aa0 ruby-2.6.3.tar.bz2=c63c3f527bef88922345f4abb4b9ad467117b63f2132e41722ea6b4234cec3446626c3338e673065a06d2894feee92472807c284cbe613a442c8fda234ea7f88 ruby-2.6.4.tar.bz2=a9fa2f51fb5f86cd8dcaa0925fe6f13d4f19f110b5d4c5fd251f199d16aaf920db39ad3bb50460eb94ab8d471ab2ac8bb54daea4a3bb080eaf45250aac3437fe ruby-2.6.5.tar.bz2=28e0b04ac8ca85203eb8939137b5e5de4850c933faf7f62fc69648fe1886faaabf6cdf48382f9d9585c1720876d10b41dafd33efaeb23341c309917fbd8a6e21 ruby-2.6.6.tar.bz2=001851cf55c4529287ca7cc132afc8c7af4293cdef71feb1922da4901ece255ec453d7697b102a9a90aef2a048fe3d09017ea9378ab4a4df998c21ec3890cdbb ruby-2.6.7.tar.bz2=311ec56d23d0de7a163f66c1ef4e5369b822f8409f8e1f3a25785c803f01c68dd13aa8ddcfb3a0fe6a97bf321950f8d6cd75b2babcb04158e791601914666f7a ruby-2.6.8.tar.bz2=51806d48187dfcce269ff904943dd008df800216ad4797f95481bdeecc2fbac40016bc02eabfff32414839ebb2087511d25eebfd6acead1a1d3813be6c10edf7 ruby-2.6.9.tar.bz2=ff067ebc059094c0a9a0debf54a37aad2c85f7ed47be59299041c9c03a7701529f5063ff32a1b8c56d48ee8585015acba63602ed0176b2797d263d43d67aa241 ruby-2.6.10.tar.bz2=275a0f329641e6c3d3d3c33ffabf585195187eb3baa4fb1dfd35999fa0a80bd5925943fa2711827ac00dffb6c9a1deeadabaf2e9ee401d56926fc167db5ae4a4 ruby-2.7.0-preview1.tar.bz2=a36b241fc1eccba121bb7c2cc5675b11609e0153e25a3a8961b67270c05414b1aa669ce5d4a5ebe4c6b2328ea2b8f8635fbba046b70de103320b3fdcb3d51248 ruby-2.7.0-preview2.tar.bz2=7066ececebbbba4b2933ba1a4f70cdef373169910802259a3e52b4fc144ba298f3cffda4be5fe8a7be8ef769ed43076fa046a9ac2c13bb733475b9852112c6f0 ruby-2.7.0-preview3.tar.bz2=5d8e99e3fd984c7d05c0bc483e1504e81ccdb920cbb2d78cad3c314e197b30316b692fd0199f836acac41246e3a713cb81dc6dd64c27cba56f807df4c193db1a ruby-2.7.0-rc1.tar.bz2=b5f96227775f8bdf19f944a555d0a83d7e84b37bd31fe4b8ac008a3272b1a28a4d94abbb1b5570ee32ec0690ba9d476b837a020a5194bee14bebf6f0e768bc79 ruby-2.7.0-rc2.tar.bz2=9010f72bb3f33b6cd3f515531e6e05198f295bb2a8a788e3a46cdfd776a9f6176b6ba8612f07f0236a11359302d2b77fdecca1dc6be33581edbb028069397a0a ruby-2.7.0.tar.bz2=8b8dd0ceba65bdde53b7c59e6a84bc6bf634c676bfeb2ff0b3604c362c663b465397f31ff6c936441b3daabb78fb7a619be5569480c95f113dd0453488761ce7 ruby-2.7.1.tar.bz2=4af568f5210379239531dbc54d35739f6ff7ab1d7ffcafc54fed2afeb2b30450d2df386504edf96a494465b3f5fd90cb030974668aa7a1fde5a6b042ea9ca858 ruby-2.7.2.tar.bz2=f07592cce4de3532c0fa1c84d53a134527d28ba95e310cd3487ac321c49ee680faeace285de544ee6db432a90aa7538a1d49ff10c72b235968ca362ef9be621d ruby-2.7.3.tar.bz2=e9236138be3e61380140f2e0d42f8fb82ad8f5219d454de2f6c2ec546bb208acc8b0f2020f23e6446660d2b3b9ae873cdd8298471f166a5f1efba8e80b05e746 ruby-2.7.4.tar.bz2=f144c32c9cb0006dfcfa7d297f83f88b881f68c94f0130346c74dfd8758583a68d22accfd0fc9f31db304ab5ff0bc135bfb2868145c0dec1ee6cec5ac6c3725d ruby-2.7.5.tar.bz2=0aa2ac44bc22859a39c43d08b7c7f457df05c2dc36b2574fd70ca399143ef1000dc5e496212db9eb055bc4258523d47d26db3c57a1a5a5d63cf1b3de9f81645a ruby-2.7.6.tar.bz2=4f7f3624afc43da25ebf0f01d5a2f92f72f94bab7423587cfd3920e089b479bf559b159adf2891b996f7e6a98c008a4f73a4a2170e2f8619417660ac1ab24bdc ruby-2.7.7.tar.bz2=24cc772ac1b56d3bb423f1b33716f221bf534f3717a506bf8235a698f8a454db7d79d94ae9a84067153c2f737b3f8f6085f34e36cc04be0d75ae2fdd57718870 ruby-2.7.8.tar.bz2=3a9db8d9e79318f869417f2ebf3365907febc0d1428116eabf3253c51d8420f255782b32fa30a54802b9f5f4187fad80dab0611cc80436feec84db87b0456ec6 ruby-3.0.0-preview1.tar.gz=b94892951f842a1538f4b99022606ac2c0b5031f1ede7eef3833a8caa9ed63e9b22868509173bfefb406f263c65211db75597b152b61f49e5ba2a875fce63a27 ruby-3.0.0-preview2.tar.gz=6fa4191425ae71e41894b60bd9c31d483a562ee8216886360ce18238ab48115b95be0367708612c45f634e7584fba8940a524ba0113ce0f36ce4df78a112d0b7 ruby-3.0.0-rc1.tar.gz=798926db82d27366b39be97556ac5cb322986b96df913c398449bd3ece533e484a3047fe35e7a6241dfbd0f7da803438f5b04b805b33f95c73e3e41d0bb51183 ruby-3.0.0.tar.gz=e62f4f63dc12cff424e8a09adc06477e1fa1ee2a9b2b6e28ca22fd52a211e8b8891c0045d47935014a83f2df2d6fc7c8a4fd87f01e63c585afc5ef753e1dd1c1 ruby-3.0.1.tar.gz=cb81db2c9b698cf8159b2ca6507f4c7f171e4eb387f5730c4b658ed632b7900a169808e6fbec0ee80598d937030ad5d9c56b63a2a339373ec5d9e1c06b7661d0 ruby-3.0.2.tar.gz=e1fba6f5429b5fca9c3f52a32535615fcf95fafa415efc71c46db4cce159f249112c01574c305026be5c50140335696042e47a74194caea045acbfaa4da738cd ruby-3.0.3.tar.gz=39dab51a0d784a38302372b99f96205817d466245202586d22123745761e9cb39db128ec2b984ebc3919b9faf2adf828d19c97d3fb1e56d44be0a81dc5d11b87 ruby-3.0.4.tar.gz=0dfded6826063c1b39bf625a6e13b46c109cb160c8648b78f0965f70e7c7a1a65f1c117fc8f2cf8bdb34d7cbf79fecf1f45d169d2323406d66ab27b18bde1d22 ruby-3.0.5.tar.gz=ea45fcd2ca53b87f18fd8696d00a1e340d2495443216aaf87d3f643cb5bd8bb614a1faacd82d07e7f2b72172397c728316a82d7c34a7b4566191268ea517ccf7 ruby-3.0.6.tar.gz=d596bfd374ae777717379b409afe8ee1655ade0c0539ada7a10af4780b818efe25a28aa50a2a7226741d1776d744e10ad916641f9d12fb31c7444b0a01d0e0cc ruby-3.0.7.tar.gz=66e5116ddd027ab1b27d466104a5b440889318b4f2f74b5fdf3099812bf5f7ef77be62fe1df37e0dc7cd5b2f5efe7fee5b9096910ce815ca4126577cb2abfaa7 ruby-3.1.0-preview1.tar.gz=63f528f20905827d03649ed9804e4a4e5c15078f9c6c8efcfb306baa7baafa17a406eb09a2c08b42e151e14af33b1aadbd9fb1cc84f9353d070b54bbf1ff950d ruby-3.1.0.tar.gz=76009d325e961e601d9a287e36490cbc1f3b5dbf4878fa6eab2c4daa5ff2fed78cbc7525cd87b09828f97cbe2beb30f528928bcc5647af745d03dffe7c5baaa9 ruby-3.1.1.tar.gz=a60d69d35d6d4ad8926b324a6092f962510183d9759b096ba4ce9db2e254e0f436030c2a62741352efe72aec5ca2329b45edd85cca8ad3254a9c57e3d8f66319 ruby-3.1.2.tar.gz=9155d1150398eaea7c9954af61ecf8dfdb885cfcf63a67bbcf6c92e282cd3ccac0ff9234d039286a9623297b65197441438c37f707e31d270ce2fe11e8f38a44 ruby-3.1.3.tar.gz=550cfda2ae492312009a58316e18fd77ea92852718b37443bcd76aac84ba6694fb841fe19bf23bee099f96f5aeed9d03e77c8c02fb194e414eca5f707adbbf90 ruby-3.1.4.tar.gz=41cf1561dd7eb249bb2c2f5ea958884880648cc1d11da9315f14158a2d0ff94b2c5c7d75291a67e57e1813d2ec7b618e5372a9f18ee93be6ed306f47b0d3199a ruby-3.1.5.tar.gz=23661cb1b61013d912b7433f8707bbcd723391694d91f413747c71428e74f8c7385c1304de7d08b70c9fa3bd649e4eb5e9acb472d89dc2ad5678cc54855a24ae ruby-3.2.0-preview1.tar.gz=d24e77161996c2085f613a86d1ed5ef5c5bf0e18eb459f6a93a0014a5d2ce41079283b4283d24cb96448a0986c8c6c52a04584abd4e73911ea59cefeb786836e ruby-3.2.0-preview2.tar.gz=5e9ddcb1a43cff449b0062cc716bfb80a9ebbb14a1b063f34005e2998c2c5033badb44e882232db9b2fceda9376f6615986e983511fda2575d60894752b605cc ruby-3.2.0-preview3.tar.gz=860634d95e4b9c48f18d38146dfbdc3c389666d45454248a4ccdfc3a5d3cd0c71c73533aabf359558117de9add1472af228d8eaec989c9336b1a3a6f03f1ae88 ruby-3.2.0-rc1.tar.gz=798157d785ebae94cb128d3c134fa35e0e90c654972e531cb6562823042f3fb68a270226f7b1cf0c42572ef2b1488a1a3e44f88389ad2a6f9ca4b280a2a8e759 ruby-3.2.0.tar.gz=94203051d20475b95a66660016721a0457d7ea57656a9f16cdd4264d8aa6c4cd8ea2fab659082611bfbd7b00ebbcf0391e883e2ebf384e4fab91869e0a877d35 ruby-3.2.1.tar.gz=f8bbff5e237b501f4042ddc70a19ac1ce74f72f147c90daf7f3007a940136abde37c12a0f7444f713ede09ba847c2cc2897a1742823832e3dc8cce80073164e1 ruby-3.2.2.tar.gz=bcc68f3f24c1c8987d9c80b57332e5791f25b935ba38daf5addf60dbfe3a05f9dcaf21909681b88e862c67c6ed103150f73259c6e35c564f13a00f432e3c1e46 ruby-3.2.3.tar.gz=75aecd9cf87f1fa66b24ecda8837a53162071b4f8801dcfd79119a24c6e81df3e3e2ba478e1cc48c60103dfaab12a00cfa2039a621f8651298eba8bd8d576360 ruby-3.2.4.tar.gz=b695b98dac7bb2c8755a106d949cb1b1b91551092fad263765171ddf8a4d86585259ffab5f7cc9bace70143d645dbe5932cfc61c6dba7817177de391d76bcd79 ruby-3.3.0-preview1.tar.gz=0f891f140ddc6372aa7c4459f8784126e0c341db7b80e72c51e441c5153c43c2d7b965f7807c076862ac84b9b8b0c6a66bbf66fc341746016151397bb21c782a ruby-3.3.0-preview2.tar.gz=1c5a13e519e8487fd40d932b96d14fa729521925c288e7841ab5eada628e506ceca2605bae36eea1aa505d9253383d53cd933b7a4bff96e6de5b1130c7c558e6 ruby-3.3.0-preview3.tar.gz=94db07a6958c09809b2e5b597fa55a121074e8bacb3bf588c83cf0d35b07a8b070172035a49d1abf0d8ee364a9ace824f34e677f7327ffe1acdbab0938ac49c4 ruby-3.3.0.tar.gz=26074009b501fc793d71a74e419f34a6033c9353433919ca74ba2d24a3de432dbb11fd92c2bc285f0e4d951a6d6c74bf5b69a2ab36200c8c26e871746d6e0fc6 ruby-3.3.1.tar.gz=0c8ea922a79152ac7adbfb2541320565bce6a631692fd39d499a06f53ad6339c16fad8374d171351ed63f7bda3312b26d4f8c058c5b6df3d7548fde372c718f1 ruby-3.3.2.tar.gz=a15ba8d6c2830fcd1f2b36f671acf9028c303ec78608fd268da0585db8e95ddd971666e8029bcfa2584da2184a6534e1f2f2da07fa7ca4494e8d842eed206f00 +ruby-3.3.3.tar.gz=0388a96127eb6e53b836f7954af51ff62b84cdb7abeab823cb1349993d805b151204e426b9ac04ca8333fbd5e01c386d58bc37d34c4e9286b219dcda7542a150 ruby-3.4.0-preview1.tar.gz=29c0e32179f7b823b6708f5328e495cd333fe8dd88f7df7d9051deab47add67b14d899bba565bba1a77e1b04c9693d9708541445c112925777bb6891cb7b2b62 rubygems-2.6.11.tgz=3b0dd38c0aaf313c59e299dcf54f7bfb6e6d84b8b739573ddaf599e584da45ed7b1465f6521131b32f237e31a4796d9ef455b8be685064b3fd77a0355dfff13e rubygems-2.6.12.tgz=ebb672488b50f5fc988eab66ab14ce8e887dcc635f71239a85e32fbf1e919ca70196eb4d3f2fee3486cace7064bab0b8b08339c754b723198e1b0b0a0984ab54 rubygems-2.6.13.tgz=c952b6061a9a0778db304c3aa5bea693e71ae2564abfb19f8b123eef66eb1e3877fc7c36f4f1527da97bb320870cbfd4574ac57ad88e850a44fadd67ebdac152 rubygems-2.6.14.tgz=7743845bc5265df3782f85a23896cbb250d8a2bbc9934a27f274b001afa7aa62f7f00f616296f74747ea612d2cb37dd7f533c931aa72550d84c64d2a73d60daf rubygems-2.7.0.tgz=0bd08fbabcc33687c98365ffe6794ca2a5e82160b0297479d4f19bd899d176b7f4efb95248898b26d873f9fc7d86c10cada6e40cdc48738b0bac261c3aad261f rubygems-2.7.1.tgz=fa4ea123760b03b8b8e8ececc55c9dc34249073fb267d310bd903aa7a613267e5d27990bbf28e32c9a746bf884af8a84a0dc202297272f9d477f7710c21bfb60 rubygems-2.7.2.tgz=0f48c6e46663780a571c7ee0e6e772f2e18a755031e7dd8ede7870f238c214b9e3e38153b1ae8f1f78a9aad63c1a079b86573b3a25c57a600d842bdf92b9c4d1 rubygems-2.7.3.tgz=2782331b31947a23f85b285a3d5e7b66e34fe5847bc84dca4f1e6bfe33ce187ab0cbc814229de8111aa19490b656ca78b7c821e4ea6b425449991c01371b7565 rubygems-2.7.4.tgz=90f72a46709ef847666a6a23eecf24521abd5c294b2da8a246bb4c7f85daf4af39a0634fc8093c7bb7ded2ac137ea27fac5ed94af3b70c49e78594285c7a40ce rubygems-2.7.5.tgz=86957f1c438070135df527a15102e40487fcee93a55251463095e4c8794a8616d16ed9bdead0e0ef83c44806bd5016ecd9e178bef608b66af2e68e2c9c49e941 rubygems-2.7.6.tgz=bc168afc40c974dbc7c37eb5678432ba2ed7469c3f007a159699467ff2cff5205c508237193ee8becaa6eb555b043969cc5f92b2aaa6bf7c958dd7c187e258a7 rubygems-2.7.7.tgz=f93b7eacf5ef8725c40d618daf9deabc7e9eed74b3b7f13ecd16f89205fe24958e782314c52f8a8fe3205b93e20b830b4fbf7ff8944ff1cf56feb7de2d773252 rubygems-2.7.8.tgz=3d1cf68377dfcf102028342258aaff5a7257d2d2b34a80508c85aa258d810add46e65a157f902c271b0b7b568c437372d17246e89cd88f8500e47c008d17f1a6 rubygems-2.7.9.tgz=5f699f47bc24d8ffd4f8f44a509a9df71fcd945ca2574dc9d5050bfe06a44830a368f45d204112d7a4f1877e1600a6fe4d1b6b68f9a55288664667b4220a7d72 rubygems-2.7.10.tgz=48a18c0f202f463c38cf5dafecfbc7cc39245e63c7a059ef2cefadda478483794a929ea6b7e0ef062dd4423230746f1f09d7bec06a97fe3ceccc3325397a3e71 rubygems-3.0.0.tgz=047f4d446aae414e4803517088ef47d5cc66319ff08a3795c6d69e83eee9f3e7c3b05419858f7e5b6a8ec224990ca01178a9259961ef2d7ab737bac352a0f18d rubygems-3.0.1.tgz=dc29ad51ec67b1dca82a23973ea92153482788964d0755bdcd3c650116915c461c6e5fb1c826be3ee04a497fec4ac2826904bd406f24611e77cd8c9eaf4d8729 rubygems-3.0.2.tgz=90b46c2cd4f8baee74eb488a40691cc00e754cefc42029d485163d6ad7782df78ba5cbeab08eec6a4f71febe0f6e635e12a9381393008c58eb5e16396df93fbe rubygems-3.0.3.tgz=1dd585243341901c7b4cc60a4902000c10ce57fe2cc9c28e27e274a2e6029f936cde1c99d7097c93c2c5b2c8bcee5d692c8fe5cc00c996a040e4954b674e330e rubygems-3.0.4.tgz=887c64226ec0b32d33f2ea331936683406d54dc74d19e658a23521e25ab50aa23534fe9eecaf696154247ad1df1d24c233d8900b9aabc79096eebd6afef3f775 rubygems-3.0.5.tgz=f5a97cf67d7d043afba7c1aed014f1b64ff6376ea74d3d6533496bc5ca9742e0ccce1a157e6f67d8fcbe59d8e34bbfbcf4ed8be97acf2970603de6381043cb78 rubygems-3.0.6.tgz=1ef1822a2b19790a36a6d242b7d4584222617baa27787ec58961a9cfeb2733f19f9085490ffc72ee375d3153c7114e050c42e68fc8039e727fe5961b09365ee5 truffleruby-1.0.0-rc2-linux-amd64.tar.gz=5dfb040b746e462c297ebcdf84e0f07cd74b86852055dcf0a7cf1814112099bc674bcccd94b03726aee76b253c9345a45d046cbfea230647644f0fd6b1c1ec96 truffleruby-1.0.0-rc2-macos-amd64.tar.gz=17983c442c54d19196be3626e25c64f5474139c0b973624832ba8730efb047bc747c02e59c82f38397bf012c63ab83f79a9c1b64311cab796f08fe96d7d12a1a truffleruby-1.0.0-rc3-linux-amd64.tar.gz=b0b57082d61317911f101da617333d81ee6bede6b6e18f9bed86544dc413339c830198d90cad7ac94c0c8fb690adcfc559dd9f530abb70507ff6a76eee552b61 truffleruby-1.0.0-rc3-macos-amd64.tar.gz=18f9782de56269389320ddad779ec69c168909198d4572e2ea4c18bc8082a539569a76760a6a6da58722fe08d77d83904aaba14baf4075a2833cbd2efc45dff3 truffleruby-1.0.0-rc5-linux-amd64.tar.gz=134d9ba5db7b8a1960d3a88390cd6f7503a0e8565094fb127333d122cd773bfbf9dc976c659029007e6fb68e93486293bac2ee29ab21dae9cb0c06ba57dd2c72 truffleruby-1.0.0-rc5-macos-amd64.tar.gz=5804f1f27916176f5a270de8aac85bc48c38ba37c4e719b09f5777e5c42429271819378cfe096c3cc33d406cd0726f2e37658020f97a438fd53751019831569a truffleruby-1.0.0-rc6-linux-amd64.tar.gz=2597b375f590755b851d3b8cbad3eeab4c965eb02d0c944044f57e39f6c3db1e2f513e2aa55db789e4a885c697f81ce5c8bdbe9a7e44ee30fc09d234e44fb512 truffleruby-1.0.0-rc6-macos-amd64.tar.gz=2eb177190de0408dfdaf30264132955d1db7783ddfb63880d97d5933f66c5662794c3bb6198edf230fbff348674203e61f7f5481e74ac875974467f2f128e939 truffleruby-1.0.0-rc7-linux-amd64.tar.gz=ab3a3dc19f903e68e36b135729693fa025a7c1950139277255e48c972387ef8399beceb3252ac37cc70c0df92838f8a0ba8c45f53665ac4286ef23f9b240806a truffleruby-1.0.0-rc7-macos-amd64.tar.gz=b8423f50a5292e211db7ebd7e2b987fd5c9eaaf34eba86b0644d2716a7f068f2e56deb4357c516b87b437e64fd5ce8515bc181165cc1042c6763f27d71baa59d truffleruby-1.0.0-rc8-linux-amd64.tar.gz=bcd05d304ee9b4da97193575fb1ad78041a0c7710bb444af6aef12ab4261b1873f472175ec51a187a5e99da481d66b81a132fb691643b793e87d655f31d54657 truffleruby-1.0.0-rc8-macos-amd64.tar.gz=2c758221793c38ca8af1831a5d9f3abd555c406569508ac3a86d3c1ea5baeeacf65abb6e904ed3b1e58f555f51bc85ab171135ff4c3d0e08cdae994a861cbda4 truffleruby-1.0.0-rc9-linux-amd64.tar.gz=42e60b69957f77a8623e0dccb7d215e800c27c622364fa76b9c574e8b1d3a4056a058b61ed91eac2375ecf4e51e482a6e17550aa2894a44d1db70687958033da truffleruby-1.0.0-rc9-macos-amd64.tar.gz=18556ee8d2fdec6907fbc8fc33d8b32ea0c58d40ee3df084ffb233e2fcd3a514a553f97c31dcc25dda3f86b1b805ca5fe3c9bf8cb078b92325515f09db6b88ba truffleruby-1.0.0-rc10-linux-amd64.tar.gz=10a7cb1be6214347469d5797091f73c3d7824bfb32a47c13566573a383380b1df9b79b7901ce0fa3af1c97285c90afac21e2de7a66ed88d9495846743b3b25e2 truffleruby-1.0.0-rc10-macos-amd64.tar.gz=53f0939d9d8c3470cb79316d865b765816032528d77a3cf497134f3aa667a6253ae037410801261a8e7d0628198ac5f6aea5ecf9b7313f06ccc1d5e9f94e74ea truffleruby-1.0.0-rc11-linux-amd64.tar.gz=f89bc9a3310634d39f68006307da0b0ddafae036089bdd663e8372777a9562d201a4e69b2e1a602cff5fba6c78a8d4861b6d1020679bd0c72c71b938a4f36a27 truffleruby-1.0.0-rc11-macos-amd64.tar.gz=3f461c12fa9fa57a55cc390eb9887df88f404661a77bffb44f82b4c7e9021513a6df9f6d5f332a36ce0c28ae7e3d5afbbe15cc4b814bc7f86dac2e5ec280f947 truffleruby-1.0.0-rc12-linux-amd64.tar.gz=85f042c308ccdfbeb318cec37056d8d970cab51cb0779425b85b8f76b0a1dd9cdec3191ae2b6b9b6be6e95767db814496450ed20076addd9bd495742f9de3c8c truffleruby-1.0.0-rc12-macos-amd64.tar.gz=067a0f63bbaaed4c8d4120f758c8ecf8c52afd1d30ea9d41489e26289d57a574d2d4ae29e29655378510adfb3f4a07b04b403d6ee98ee6b3d3aa8bff9c8d718f truffleruby-1.0.0-rc13-linux-amd64.tar.gz=1eb6b80cb05133d253f20629a11ed9ec3f37da002d5668cdc6577b2a20524e0cdd4d739d3f1aa2e8c518e2f7ebfd519ec1c647293714a1133ad4d569375c0e69 truffleruby-1.0.0-rc13-macos-amd64.tar.gz=e3cddb0d0ae48f7d5ee4dd094ddb5a13f6a7aff1521b1adf25710971664b235cf67144e3b81525fd710dc49b6f6f6ba06e10eee1df5dc08119e9494c6be86934 truffleruby-1.0.0-rc14-linux-amd64.tar.gz=c982194675b66a0433bd5517fc6f1564db669f595f8c7ba4819bf37e0599474d49a0c606577a898c27fa5ba40ab793c62d8211e7ea398d6b3e2bcc31eb5d55f4 truffleruby-1.0.0-rc14-macos-amd64.tar.gz=c14e396396385644333fb4c4aa1fb4b934a3f4e46312146821e5dcdaa097cb5b1efbf397c1dd6117d909803fd27ba8d835904672e98d43dc565e907fed752e1b truffleruby-1.0.0-rc15-linux-amd64.tar.gz=f27a75f929a6e945e49ceaad12f484fdaa918469a2f639b572fc4737b78e1cde0881697057e13a58b2fab7ac64c3a71bc9951561c3a8728e3dec814ef5e95fee truffleruby-1.0.0-rc15-macos-amd64.tar.gz=7aa029c4999d4608c9bcc491771b0434267032dbe9dbf504728079f87ce93e6a90e0fa839295b88c00e5a025186ed0fcc42361428b7874c05e222edb108d6c02 truffleruby-1.0.0-rc16-linux-amd64.tar.gz=e8c508dede11d4f54cf0b15cf92b50caad93076a6065bd2d6784c5ca739f5923ea2b894c6b2b52131f62187c8b305cd11a960fb5a670789802d59b6b2999f0af truffleruby-1.0.0-rc16-macos-amd64.tar.gz=841eff077c38bf594b101edb15942f601ba0dada2122b21b016f53251aa2a635b8d0b63b49bdfb50259b2545d1f498bca95d5f771a15a28edb0dd07216c9b709 truffleruby-19.0.0-linux-amd64.tar.gz=8ec6c7829351e0dc2cce57305947cd540734fe5a0b95b9501d4179993727ab2c331e9fb639b9865c0fed596df3906adf3dcf2efb22c4cfdd23a3dc2137025fd4 truffleruby-19.0.0-macos-amd64.tar.gz=912e0c15d32e40c884b2caaaf9a86a71450d441c960ef98a63dfce80353619073b146dcfe03d9af4273b2811d0899eebe922cc84a51d6f5e6826cc436d793f78 truffleruby-19.0.2-linux-amd64.tar.gz=eec92bfbd776acd61709a428b90b1029c5ea83e5ea839304d23cae3a541dd4fab3b387691fa76643f55d5939c9cac0cbe70dc0b5786e5e0e5d20f3fcd9a21356 truffleruby-19.0.2-macos-amd64.tar.gz=ce647b76c9931feac55baa5acd2c87d8335c606bc5cd7e462bd92ba1b09f4bab5db927f021e3119abfd85c33377003d060f36cf64eb121954fce8878112f01b5 truffleruby-19.1.0-linux-amd64.tar.gz=db01e6dc09fc5f39ca466aa94f725023d49a8f52343f129bf8c32b7f5f76ccf2d573ee3344fce3d5aff9983bc9af618cc5ca6e1dbba93b3f604e4f33f8a69b3f truffleruby-19.1.0-macos-amd64.tar.gz=f002bc0b6efca11eb97c4aa6df33d2e0fcc1de3443efd39d912b028df9dd8954cb76ef3ca7fbe140f4e922d6ae4c1a6a20853490ef1ea0749293e2fcd4ffe8fc truffleruby-19.1.1-linux-amd64.tar.gz=ec031e8c216e31f034d97aaccd6441869221d6946e18f375b44a866550b8e8eb4b2fb923f9ce1a62853bdcd5b9201e0f5d2732ca6525d80171d5732ef522bd25 truffleruby-19.1.1-macos-amd64.tar.gz=1c15918af939a8fe1779b71d9e53d2ce09ca7353173a3b357905d9fe1981ff013cf0f90c6b47e1ca66dd168c2f2d742f28a5fb134cc0231d36146da99f91c3cc truffleruby-19.2.0-linux-amd64.tar.gz=1248bdde9cd3651d7042fe4cecff4ad35534868d543fe2e6f3a5bfc3bc9d10d57b4139fc070f0a03861436a1aabc9a8ebdf3356f39b77a4b8f6a1dcf492f70a4 truffleruby-19.2.0-macos-amd64.tar.gz=92c3154ed229a115cf392826494745aae06dd9228dd0996c2c44c550552f13f9c254367d068452fa4a84eef79c19601c79b87e10f3121fd7b83b803514a41cfd truffleruby-19.2.0.1-linux-amd64.tar.gz=53c78cd1f255f2b7031a70a42b65c0bf80c510b9254f5d7ba82b4787f55f5b09cfa9544c424a90f4619a74179fed07c168bd501e34772ef836a773e89c467cc5 truffleruby-19.2.0.1-macos-amd64.tar.gz=ac11523cd49fac50de1e441039e429fb8cd6c7051d537e5083b64fa68eaa19c9f0a966b269da906c367985f229af82a4811282dbfd0a76ef6565162e1081a659 truffleruby-19.2.1-linux-amd64.tar.gz=c5ffc1b592a74e836a4f6ec75b0e103150a4a40d3183ae853ead38c951a85378163111cf0bd2b81e44548c0a7aeaded3ae8a7ae558d5a02dc9e2cce992b79b58 truffleruby-19.2.1-macos-amd64.tar.gz=bb467b91f66eb7d1e6f1a54a7bc0a3d9503bcbd935e8a02da9ea0b749a51e354b1140d4a4dad6fc05312b560bb9ccdcce4f6583bccd19bb5afee19bf494102fe truffleruby-19.3.0-linux-amd64.tar.gz=0e94777a3feabbf0107ed40847e20dd4e3696ff2b7c3f6ceddf3a53ccd812bd003c84c62a750e8fac9d2490374bf792d69174b48c3ed36b593485d86729136c1 truffleruby-19.3.0-macos-amd64.tar.gz=95470c389e24c865ecdc3d299005cd98f8221a128f3cd75f899b6b7ae5d6dc07962443ce0ff38dfd014589d5aaf08b718dc870a72eb7ea6ced18ec2b2db63095 truffleruby-19.3.0.2-linux-amd64.tar.gz=dc5309b71980657f750b4dd4f8b3bc4e191bc305b638b1e562ff5b0ad7fbba40079ba674caf46226a46b5ca58c10f812354786696264742f351b129fb088a672 truffleruby-19.3.0.2-macos-amd64.tar.gz=ff1c37485ebeff3edcc7081ce09bebe5541012dedff6997662c7f8a064e0ab10bef9a5cdf834263a06ae04ca0391743948bcdea6e6c9d7e1cfef9f21523c2bdb truffleruby-19.3.1-linux-amd64.tar.gz=c724547a9eacfdd135ce05eac9dcfe74e58a5e77c97f88103f83b8513c15c975a0ecf623f623a425ec81fad1b64d3b5e135660d6943608ad08048cda00eace79 truffleruby-19.3.1-macos-amd64.tar.gz=d746b2ad410c15d145d36c676a070ae454ba8e5ec6c594d5ebcf54b1fc719f98e8b8f71b6fd504c3d38df286bd11c5114f73b5ba39be312b11d42d4ca1a17d02 truffleruby-20.0.0-linux-amd64.tar.gz=4efea5ded5fcc6886befba3a3720fe1e5b2e376d46738565e8871a1ce0201a33ed52e78b8af2fb389618bdea99466d126d8537dd0919b0c13f8ff1940cb3e52e truffleruby-20.0.0-macos-amd64.tar.gz=b36488330514b77c7115689042cf2482a0beb9f72a0b05fb4c7a6ecb0835a3da47c3b15c41abd6ffced023e65ecf7eabcfbcc6e41901dcddd0fb3dfed46564c6 truffleruby-20.1.0-linux-amd64.tar.gz=116d57404540b85c15b321793a6f985624a2044af544e659b3607e50159703af5d445e22bff28ae2182dfa752f7500d420e250f6deccc98a2f01e89adba8ac3a truffleruby-20.1.0-macos-amd64.tar.gz=9b1267101dfe78b85c79f7528eb4de96b16933e66d5771efa6272372dac0fb35b199bb9d42773d61f4fa7a15d6cbd18b5753c148f7c3e477c7c4b21633f12b88 truffleruby-20.2.0-linux-amd64.tar.gz=a37eaf8475364b74d948979ac13dc6e6423bf11949ad1d0f2925f78a4495e80de9767001ccdb777c8cfd7f545839fad4d842522620c3acad179404bc4ce6752c truffleruby-20.2.0-macos-amd64.tar.gz=964c1e02cc53e1646060334a9911771e679a8344d811a0f77d5cae3529dfefff259c45505ac84b7debb958514cd5d2276ffd435802085494e0229dd140ce8f00 truffleruby-20.3.0-linux-amd64.tar.gz=ec2d8ff6a5d45fd7091e26430c67cbbdc0f8ffa41e9ac574d48802766fcd144e1f446db807700247ad6d8046b7ed070b5da70ef667e576d6fea60cc64ea5484f truffleruby-20.3.0-macos-amd64.tar.gz=1878f94e05a3c40484bf944a72412b179aa5415a16a7ebc1610cb512a1e1c4a2ce0e98685257ad6e5c14745245c35bb5b28205fb687292c4f17193cbfb3bb606 truffleruby-21.0.0-linux-amd64.tar.gz=b7d1b76cc015d136dbd74515431f4447730850475f81b00885b71b95819134db2656d941736048db42d519f03e1f2df066226513b77208adbdbbeda1f49cab11 truffleruby-21.0.0-macos-amd64.tar.gz=7677b827a9c1758d5f941c512cb0fe8daaa19c3db77b485d7dfa43940151d6b9094c4d9271e18ef5014630142dffb93d168c7ac631a3b5eef6fc61b2f9eecf88 truffleruby-21.1.0-linux-amd64.tar.gz=010e9fb78cab12486641780392be0f284da08dfd955f3a0d1ef72adb52e1c9024b54dc880173645aea2af680b3670a6bb01409198b757239edda4cd9bf2b1e90 truffleruby-21.1.0-macos-amd64.tar.gz=96ef8481faef1bfa7f01bb4d396818ef6f0943d19c6a23dedb68f8346740b72bf06efc707bdd29158cf991cc7073c97f429a07b02c2a48050512b46369850058 truffleruby-21.2.0-linux-amd64.tar.gz=c20af04909a852cb676c90403d852fb367d56eac0f9cf8ba42caa4cad1013ba393cc4611e434614ad132b7b0ed61160aadd887001b08de0767cf58f5e149efe7 truffleruby-21.2.0-macos-amd64.tar.gz=0b8d9633fde53aad78f0baf52858cd5a5716f53ff21698baab17da4a625b4369b88dbd664193e3f0d1b40e64c88699ab4f04bbe40f54189a588c93678962a7be truffleruby-21.2.0.1-linux-amd64.tar.gz=15ceeee383114f974aed5f16c99131d56947e13cfe248b97e55d61263ccd51aa56fc3e0df215196ef7f80ccba9e7f19e7f261d7a91d54bde2d9992caba682d82 truffleruby-21.2.0.1-macos-amd64.tar.gz=8a8762d90c19db4f48433ce0e3f3339e290685d79c6ee9bb7d4359c741edfa6a7360ff65124433d964730ac25b2cc6d8b581191b0a51479f11c2a80031a6c1c8 truffleruby-21.3.0-linux-amd64.tar.gz=b0c07b1ea797de92447a81b350d460c125a2efaff3c290637c4bcf1c216b5abd11148cfb143ad397062a96f36beade8234d0785c42f58fceac0011f629a5220b truffleruby-21.3.0-macos-amd64.tar.gz=42e607fa52a534123989ad232691ede65aa1c615f39320d93aa8ab9c21924eea7bc0aa49aef1a540ec972e2b3dc775d22a99eca3e0c9bc450c525f9020fbb975 truffleruby-22.0.0.2-linux-amd64.tar.gz=2231a0cfd27238c34ea0bbad27ba387453e48f39032607cbb829b347ea6ac804df15eb3f84d50b09248782d6202284498e7bc9aaa2060f0ce81bb83a84d700ad truffleruby-22.0.0.2-macos-amd64.tar.gz=1d7ac44f0862ad23cf17a7bba73d23dfd4727aadd9a3aa9633361e9bcd19655d163e160eae9c8db8ec9892f8fbf82d7a38b1cd689475bf41609a828208098623 truffleruby-22.1.0-linux-amd64.tar.gz=c4c2f9bf4236118c8ea62c08bad89e1034ecdfa0c4815693961c4d2b1b30ca043fe958abfec9cf36a8638aa2e005e71fcc244ebffd9ce11eb68cf48bd98c29d3 truffleruby-22.1.0-macos-amd64.tar.gz=507004ade838e614955e23331845839be656aaeae7869ed3d989c10e6491775a12313ac9ef03e14945f20f5e76d46ce6f7bb860af68a627c48065399cea3c567 truffleruby-22.2.0-linux-amd64.tar.gz=37c09249ef387df3e0614f646abb444cb5b7b2751538ab0432e703abe92a81b82e0d15f89d5ad7cd58afe5f30d9a92dc8471d19f1c1ce10b50478ac74f247739 truffleruby-22.2.0-linux-aarch64.tar.gz=49a7cfb4c81980d9c7a1588ef9f76a9bfb759d4b1925ab11f230d99c15a62e162a08249d23cf5646e2d38ecc2005e27103f2e5d92b83b0a182a4e64319b70c0d truffleruby-22.2.0-macos-amd64.tar.gz=d4c206fb0a5e63c5b7f61f2e62de854e4d0817075ef9ded237d98cd821c286e88d7b150d140d9907a957209f39be96c7025560e3908c89aa337925d2fba690af truffleruby-22.2.0-macos-aarch64.tar.gz=a01c18803777a74717ad699b6ee51eb759d881fb436d24338b557c52d4a693079d7b55f108394ccad0dd69c974cb895f4a36854355e84fecb67e41bf9eb18514 truffleruby-22.3.0-linux-amd64.tar.gz=d53472ae892dadc81c6fe63a597ccfb67e133958431b11716db4d920c78fc86f7496e4b10322d041c900bed77d27e02850da20aa95b297d63a9de2e72cdf3c76 truffleruby-22.3.0-linux-aarch64.tar.gz=dab63d49db4722f0c174ce8b882413102520ff649182946ba332ef5ba0fc6b58913595539a20b59e460faab2fba36f762dc8eb66aa729d4a6bb90feb2a95f053 truffleruby-22.3.0-macos-amd64.tar.gz=15c91d25fd6fb1d9f3f2a0b36676da5c8a76d62be86cff463ebe6c7e6aed2d9b6de9062021ab1b9b29cfb7a92b5682c860939acd71d12dba7e4a6bf3964fef3d truffleruby-22.3.0-macos-aarch64.tar.gz=7c44d0dd07e4ecd84a92f6dd574dc185906121b8eb75f6fe097b9d4738aa30751664d70e9027e072eeaa1dffa05fe7bcfc06be0c2dc950142f60664baf5eac69 truffleruby-22.3.1-linux-amd64.tar.gz=f41d3bd22500b7291121368169f8558df4563c840a01b70ff7feea3593f0152d8d77d4437af362bad62f25b79bce1ce8ddaa1bd8172a2a7ef8b61cdb6e478c9e truffleruby-22.3.1-linux-aarch64.tar.gz=1ca5221f0dc5ae3e0bd9545be474e115b2e62737701df95c6ee6cdaae5d82815acbe6af961ff23afee64dc26e655c7786d4347e3694c140773f065534322ee59 truffleruby-22.3.1-macos-amd64.tar.gz=bae16cc04c6018703833121f4258c3f18fa5062309d0600458be3c51c838bc63976a026db0f28d23005df9b640ccad0a9cafc56610a5ca9c24951c66b62097d9 truffleruby-22.3.1-macos-aarch64.tar.gz=b56e230d8fbc95d19364e695aaf1e552238b02ace7056f636808a7d7510777cddfde572ace5238ea1e314351bdd1a053ab3912d0889f51f55c722797c83eaaee truffleruby-23.0.0-preview1-linux-amd64.tar.gz=d538412f12d5ce743c351acbaa483b8b85dd2cf84fe06b3e90ca21f3c2fc0465df9c1773b3515fe4296d599f45e9cbb935dc5a69fe45668321e5639d58608ef4 truffleruby-23.0.0-preview1-linux-aarch64.tar.gz=f10b5ac749b11f93c2469f2c8a713ad090cb653761ae0a3e1ba4c19b0c96bd61c5e8da74d8944f9487c2d327d268a188f2cb56028d2beaca2a7816e63123600b truffleruby-23.0.0-preview1-macos-amd64.tar.gz=cd9db49c4253bd66cad6f9ae111c83d3befd0102a7ccb72a2407d22dc576ba7f3a26a90cd479f26dee3565d2f893a2b7c8b549e2351336f35d2632e57966657c truffleruby-23.0.0-preview1-macos-aarch64.tar.gz=28b77d9943cd1617e0445633a9fea8911cfa975f5c581192439cd0944d2a17c2b0558e3e4112588b5fc77b57c48d857ad68ac51fcb867250625ad85406d87acc truffleruby-23.0.0-linux-amd64.tar.gz=da702de2e8c994f2646a3de5b44824210dbd37129cd2f91c3bdd990a1b0d0b05dee4443ad0f6cf98fdb4e489c9f4cde64f3561baf486dc642d4981a1a1812925 truffleruby-23.0.0-linux-aarch64.tar.gz=808254a154adcfd1bbd6e22bcdafebb6169c6f8cfd1c55382d446bb66002384ee844dcd8b5f642703ef440f7566645d190081f45e04a7d8d59bf87571cb4430a truffleruby-23.0.0-macos-amd64.tar.gz=f775d57e63c606eef424a1115408ed8539ef47d6bea0125ad1de7ee4fd5971e96747cb7f5d22d91d2f004edbd6ed6b9b5bd014127dc1abe7821a3a987a72d9dc truffleruby-23.0.0-macos-aarch64.tar.gz=000069854458f81d97eefe14123fbb69937942825e77d35602d55fa279123808177a34f252aec9dcfa48b93feacbee81ae0f0e7043c2d8a9ace2a4bb61ab253f truffleruby-23.1.0-linux-amd64.tar.gz=1868799d989c51798cf07b5243457af7ae2436dd19805fd634c98b2f1885266b5c3ec81dde668c2e5a290e9028f6f9fd223d153489df6ffcc74d45240aa020ad truffleruby-23.1.0-linux-aarch64.tar.gz=2766621877996ad35fddb94f978feed531307e8abf601dcf863754c96782b8149c3ac512dfe6dd2bdef0fe0e8a968bdd77608c41020434aaef4e7250c09edd74 truffleruby-23.1.0-macos-amd64.tar.gz=06c5a1d6ad644fd81737f0a1fd24c1529f712abe2a4485ad597aca7c35ca2af898121bb5883552cf518e2afdcb4221c8ad013759b46a69e34249e7c5ebe2b170 truffleruby-23.1.0-macos-aarch64.tar.gz=496cacc5cf413a48b60184e097a962ab5d2236c539f07cc0a9a2d9ef57dfc911a26b125cc3ad9408f6170c6f93c7562f35729c8313be0301972be21c10097942 truffleruby-23.1.1-linux-amd64.tar.gz=dbca85e281bf2484371a0bbcc202ca700acc704304d966b9202cf3835e82f6eb502e43522355f4c9e5a743877d93f5609006fbba2c5e6343a89de130e5209f6a truffleruby-23.1.1-linux-aarch64.tar.gz=6a58842d79247d8a64c513d68db9d53ea5640c02f71a1bc45f103baaaca67bb224939ae5f21ef55daa9d9b9697404052d39a3c382768ca366ab7892b8bf1abbe truffleruby-23.1.1-macos-amd64.tar.gz=7cc6bc957b7ffa42e9fbfe2f6e3014bf1e7996f2754e9e74377078c2c7bc7ac8e10598f1e1452839fc5b9583c823a2a735731ca193a6af2814a02566cc4cd9e4 truffleruby-23.1.1-macos-aarch64.tar.gz=a85b8189ef8a280f6a27d4c1c93893f844266dbdc15b8c4988cdf581613a353508fae4872ac9380efcc47f36357e137861521712c00ce8548041762a8987a9b2 truffleruby-23.1.2-linux-amd64.tar.gz=6307fd71fb1431fb12346d1f13dee4b3afe53947e8a9c1f3e3aa0baae5f9fc9e1496ede0a7d86b169d912ffef9625af998b4e698dc57a2a649140150e3fae28a truffleruby-23.1.2-linux-aarch64.tar.gz=0f0c5e4aa4e9fbc9b9f91d2b3d3fbfe26e78c5bc5b369fc78dd54775a7582b8c084a64f02848058bec79387fd80b09a5a5594ecfb268635fe76e1f9d957c2e92 truffleruby-23.1.2-macos-amd64.tar.gz=648401a73b29c28862a1fa077c2e1bf8fff65015c8bc690ff883a00a3dfd99389ffdb71f39ad85a4f16c531470f4cc891ae51ec927a426b0fa05fa85c9c6a2f9 truffleruby-23.1.2-macos-aarch64.tar.gz=4ec88684c09aacfa1d8bfed9a17243579ededacecd869e98e12841710bae29ed6e5f080611e53fc217a853f730bb2a9cb3d47ef15443eb8a1ad76a120118c8a5 truffleruby-24.0.0-linux-amd64.tar.gz=3a59a4dc58ad03549d8e63db1485767757715fc9aec21b2b67b1440b13871a04541abeff9bc8201b3088e1865360b1667459e536d3cfb09687dbffca95deafeb truffleruby-24.0.0-linux-aarch64.tar.gz=50f3993b7362bb6e7da80f7327df3d079bb02f98b67012e2135005d77e61648e4f3268f767d8ca245ec5889ff934fbcccb94fd5ecbd55bb0cd9cca900fe10509 truffleruby-24.0.0-macos-amd64.tar.gz=9ec8bb340b15e29550448e123e3ab0f183edb9bbe7e052743cb2306cbd1956a5789c5a367c80c5e8d913dce2b804448dd6815e4d3421515166daf8db51d37c7d truffleruby-24.0.0-macos-aarch64.tar.gz=499f83bf65dcb6ecc92414a3550673e6a0baaddfe3ab13c0bd7aa1bdde1ae2a61d9d0ca8001c0d12688d9e09f98f9e2946a651220fe7d200bb0ec6f285394701 truffleruby-24.0.1-linux-amd64.tar.gz=62b4e8508eba8cdaac70e99ac9cb0b33a663b4195d79b2dad3d771ef538c6c41d1d91bb7bb07fbbafbcbbcaf17814ffaf6d6bdbafd474ba6a8ecdac30315a8c9 truffleruby-24.0.1-linux-aarch64.tar.gz=817d877848ea4bb55658ce34bbda52926be12426a8a5e1c4588bc0ec1896018b06dce176336b382f80a7c6d073d4331b20694a7797ee8fdf0177e973053bf929 truffleruby-24.0.1-macos-amd64.tar.gz=2ea65bea154aa38cce3f00f24fc9a4aab5e7478fafd070d0cc966878371c070d5a1776b7405e2c9e4cfa14e5c51219ed0fa988294eb4708690983b348886f439 truffleruby-24.0.1-macos-aarch64.tar.gz=bc1923e21768d34779c1bcd7850456a01ddc01acd1ccf20f4fb4a446fb847f8c51b1ff4a7c0cdc317ef8ce057ac24f18f25b778a02a6e2b185e0055d946ecaf2
rvm/rvm
4f3ca8d32860d3423029779d9df1de454a462da0
Use pkgconf instead of pkg-config in Solus (#5471)
diff --git a/CHANGELOG.md b/CHANGELOG.md index d725181..04d1f53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,615 +1,617 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) +* Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) -* Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) +* Use pkgconf instead of pkg-config in Solus [\#5471](https://github.com/rvm/rvm/pull/5471) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) * 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) ##### Railsexpress patches + * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) #### Upgraded Ruby interpreters: * Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159), 2.5.0-preview1 [\#4204](https://github.com/rvm/rvm/pull/4204), 2.2.9, 2.3.6, 2.4.3 and 2.5.0-rc1 [\#4261](https://github.com/rvm/rvm/pull/4261), 2.5.0 [\#4265](https://github.com/rvm/rvm/pull/4265), 2.6.0-preview1 [\#4317](https://github.com/rvm/rvm/pull/4317), 2.2.10, 2.3.7, 2.4.4, 2.5.1 [\#4340](https://github.com/rvm/rvm/pull/4340) and 2.6.0-preview2[\#4395](https://github.com/rvm/rvm/pull/4395) * Add support for Rubinius 3.85-3.100 * Add support for JRuby 9.1.14.0 [\#4224](https://github.com/rvm/rvm/pull/4224), 9.1.15.0 [\#4258](https://github.com/rvm/rvm/pull/4258), 9.1.16.0 [\#4316](https://github.com/rvm/rvm/pull/4316), 9.1.17.0 [\#4366](https://github.com/rvm/rvm/pull/4366), 9.2.0.0 [\#4390](https://github.com/rvm/rvm/pull/4390) * Add support for mruby 1.4.0 [\#4286](https://github.com/rvm/rvm/pull/4286) * Add support for MagLev 1.1* and 1.2Alpha-1.2Alpha4 [\#4289](https://github.com/rvm/rvm/pull/4289) * Add support for RubyGems 2.6.14 [\#4205](https://github.com/rvm/rvm/pull/4205), 2.7.0-2.7.4 [\#4276](https://github.com/rvm/rvm/issues/4276) and 2.7.5-6 #### Binaries: * Ubuntu 16.04 x64 binaries for Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4362](https://github.com/rvm/rvm/issues/4362), 2.2.9, 2.3.6 and 2.4.3 [\#4259](https://github.com/rvm/rvm/issues/4259), 2.2.8, 2.3.5 and 2.4.2 [\#4161](https://github.com/rvm/rvm/issues/4161), 2.5.0 [\#4272](https://github.com/rvm/rvm/pull/4272) * Ubuntu 17.04 for Ruby 2.1.\*, 2.2.\* [\#4233](https://github.com/rvm/rvm/pull/4233) ## [1.29.3](https://github.com/rvm/rvm/releases/tag/1.29.3) 10 September 2017 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.2...1.29.3) #### New features: * Add RVM commands missing in bash shell completion [\#4078](https://github.com/rvm/rvm/pull/4078) * Railsexpress patches for 2.3.4, 2.3-head [\#4084](https://github.com/rvm/rvm/pull/4084), 2.2.5 and 2.2.6 [\#4153](https://github.com/rvm/rvm/pull/4153) * Update `gem-wrappers` to 1.3.0: Show warnings when the target binary is missing or is not executable [gem-wrappers \#9](https://github.com/rvm/gem-wrappers/issues/9) * Detect Zorin OS as Ubuntu [\#4140](https://github.com/rvm/rvm/issues/4140) #### Bug fixes: * Infinite loop in `gemset_create` [\#4102](https://github.com/rvm/rvm/issues/4102) * Command not found `__rvm_remote_version` error [\#4085](https://github.com/rvm/rvm/pull/4085) * Fix path of version script in `environment` [\#4117](https://github.com/rvm/rvm/pull/4117) * Define `cd()`, `pushd()` and `popd()` properly when using zsh [\#4132](https://github.com/rvm/rvm/pull/4132) * Update gem-wrappers to 1.3.1: Avoid warnings for missing ruby binaries [\#4104](https://github.com/rvm/rvm/issues/4104) * Handles :engine=> and :engine_version=> in Gemfile * Makes $rvm_ruby_string is not installed searchable by adding a fixed keyword * Correctly quotes suggested install command * Fix path to version script in rvm-installer [\#4134](https://github.com/rvm/rvm/pull/4134) * Fix rvm autolibs status, fix [\#4123](https://github.com/rvm/rvm/issues/4123) * Ruby 2.3.x and older are not compatible with OpenSSL 1.1.x on Arch [\#4006](https://github.com/rvm/rvm/issues/4006) * Allow comments after ruby directive in Gemfile [\#4056](https://github.com/rvm/rvm/issues/4056) * Ruby 2.3/4 compilation fix for GCC 7 [\#4080](https://github.com/rvm/rvm/issues/4080) [\#4115](https://github.com/rvm/rvm/issues/4115) * Add warning for sudo users [\#4009](https://github.com/rvm/rvm/issues/4009) * Allows running RVM shell function in Bash with `set -o nounset` [\#4013](https://github.com/rvm/rvm/issues/4013) * Ensure `rvm_hooks_path` is set [\#3902](https://github.com/rvm/rvm/issues/3902) * Allow building static ruby with `--disbale-shared` [\#4091](https://github.com/rvm/rvm/issues/4091) * Restore detection of `gpg` command for veryfication of signatures [\#4059](https://github.com/rvm/rvm/issues/4059) * Update `gem-wrappers` to 1.3.2: Avoid nested chdir warnings [gem-wrappers \#11](https://github.com/rvm/gem-wrappers/pull/11) * Fix RVM folder cleanup during installation [\#4333](https://github.com/rvm/rvm/issues/4333) * Fix found project file reject reasons for bash -e [\#4314](https://github.com/rvm/rvm/pull/4314) #### Upgraded Ruby interpreters: * Add support for Rubinius 3.82, 3.83, 3.84 * Add support for mruby 1.3.0 * Upgrade RubyGems to 2.6.13 [\#4142](https://github.com/rvm/rvm/pull/4142) * Add support for JRuby 9.1.13.0 [\#4147](https://github.com/rvm/rvm/pull/4147) #### Documentation * Remove `wayneeseguin` reference from RVM repo names [\#4086](https://github.com/rvm/rvm/pull/4086) ## [1.29.2](https://github.com/rvm/rvm/releases/tag/1.29.2) #### New features: * Add support for elementary OS [\#3935](https://github.com/rvm/rvm/issues/3935) * Add support for Deepin (based on Debian) [\#3999](https://github.com/rvm/rvm/issues/3999) * Simplified OS detection mechanism [\#3938](https://github.com/rvm/rvm/pull/3938) * Use fuzzy version match for `rvm remove` [\#4028](https://github.com/rvm/rvm/pull/4028) * Simplify and cleanup of `rvm help` output [\#4029](https://github.com/rvm/rvm/pull/4029) * Add support for Kali Linux (based on Debian) [\#3958](https://github.com/rvm/rvm/issues/3958) * Railsexpress patches for 2.4.0, 2.4.1 and 2.4-head [\#4050](https://github.com/rvm/rvm/pull/4050) #### Bug fixes: * Use actual executable test instead of mount|grep noexec for robust noexec detection [\#3933](https://github.com/rvm/rvm/pull/3933) * "Unknown ruby string (do not know how to handle)" when specifying Ruby version w/a gemset [\#3292](https://github.com/rvm/rvm/issue/3292) * Fix the required openssl version for ruby 1.8 on OSX [\#3955](https://github.com/rvm/rvm/issue/3955) * Detect `.` as an alternative to `source` in bash profile warning [\#3960](https://github.com/rvm/rvm/issues/3960) * Allow users to specify irb history file using IRB.conf[:HISTORY_FILE] [\#3969](https://github.com/rvm/rvm/pull/3969) * Prefer github issues over IRC support [\#3939](https://github.com/rvm/rvm/issues/3939) * Architecture detection using uname instead of dpkg [\#3948](https://github.com/rvm/rvm/issues/3948) * Help section of the rvm.io page points to irc.freenode.net instead of github [\#3939](https://github.com/rvm/rvm/issues/3939) * Make sure stderr output is printed on console and not captured into log files [\#3990](https://github.com/rvm/rvm/issues/3990) * Clean up errors output, show only log file name [\#3990](https://github.com/rvm/rvm/issues/3990) * RVM install fail on macOS Yosemite due expired curl's SSL certificate [\#3886](https://github.com/rvm/rvm/issues/3886) * Fix failing openssl.patch for Ruby 2.2.4 and 2.2.5 [\#3988](https://github.com/rvm/rvm/issues/3988) * Do not unset rvm_pretty_print_flag [\#3946](https://github.com/rvm/rvm/issues/3946) * Patch Ruby 2.3.4 with missing rb_thread_fd_close [\#4008](https://github.com/rvm/rvm/issues/4008) * Unknown subcommand `rvm gemset clear` [\#4004](https://github.com/rvm/rvm/issues/4004) * Skip rubygems install for ruby-head [\#4022](https://github.com/rvm/rvm/pull/4022) * Fix match MacPorts in non standard location [\#4051](https://github.com/rvm/rvm/pull/4051) * Ruby 2.3.3 doesn't compile on Debian 8.3 [\#4000](https://github.com/rvm/rvm/issues/4000) * Ruby < 2.4 fail to build on Fedora 26 [\#4057](https://github.com/rvm/rvm/issues/4057) #### Upgraded Ruby interpreters: * Add support for Rubinius 3.72 [\#3934](https://github.com/rvm/rvm/pull/3934), 3.73 [\#3979](https://github.com/rvm/rvm/pull/3979), 3.74 [\#3994](https://github.com/rvm/rvm/pull/3994), 3.75 [\#4002](https://github.com/rvm/rvm/pull/4002), 3.76 and 3.77 [\#4016](https://github.com/rvm/rvm/pull/4016), 3.78, 3.79, 3.80, 3.81 * Add support for Ruby 2.2.7 [\#3970](https://github.com/rvm/rvm/pull/3970), 2.3.4 [\#3973](https://github.com/rvm/rvm/pull/3973) and 2.4.1 [\#3963](https://github.com/rvm/rvm/pull/3963) diff --git a/scripts/functions/requirements/solus b/scripts/functions/requirements/solus index 2526332..a663209 100644 --- a/scripts/functions/requirements/solus +++ b/scripts/functions/requirements/solus @@ -1,77 +1,77 @@ #!/usr/bin/env bash requirements_solus_lib_installed() { eopkg info --no-color -s $1 | __rvm_grep "^\[inst\][[:space:]]\+$1" > /dev/null 2>&1 || return $? } requirements_solus_lib_available() { eopkg la --no-color | __rvm_grep "^$1[[:space:]]\+" > /dev/null 2>&1 || return $? } requirements_solus_install_custom() { requirements_rvm_pkg_libs_install "$@" || return $? } requirements_solus_libs_install() { __rvm_try_sudo eopkg --no-color --yes-all it "$@" || return $? } requirements_solus_check_binary() { __rvm_which "$1" >/dev/null || return $? } requirements_solus_define() { case "$1" in (rvm) requirements_check bash curl patch ca-certs gawk bzip2 ;; (jruby*) requirements_check make if is_head_or_disable_binary "$1" then requirements_solus_check_binary javac || requirements_check_fallback openjdk-8-devel requirements_check git case $( jruby_installation_method "$1" ) in mvn) requirements_check_custom_after mvn=maven ;; esac else requirements_solus_check_binary java || requirements_check_fallback openjdk-8 fi ;; (ir*) true ;; (opal) true ;; (*-head) requirements_check git requirements_solus_define "${1%-head}" requirements_version_minimal autoconf 2.67 ;; (*) if [[ ${#rvm_patch_names[@]} -gt 0 ]] then requirements_version_minimal autoconf 2.67 fi requirements_check autoconf gcc g++ glibc-devel patch readline readline-devel \ zlib zlib-devel libffi-devel openssl-devel make bzip2 automake libtool \ - bison sqlite3-devel yaml-devel gmp-devel pkg-config ncurses-devel binutils + bison sqlite3-devel yaml-devel gmp-devel pkgconf ncurses-devel binutils ;; esac }
rvm/rvm
dcd9b9916d16be3a411c80496f03dfed34040d31
Speed up requirements check on Solus (#5472)
diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e66b9d..d725181 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,548 +1,549 @@ # Change Log ## [Next](https://github.com/rvm/rvm/tree/HEAD) [Full Changelog](https://github.com/rvm/rvm/compare/1.29.12...HEAD) #### New features * Add Support for OpenSSL 1.1/3.0 to older ruby versions [\#5248](https://github.com/rvm/rvm/pull/5248) * Update truffleruby-dev to use builds based on Ubuntu 20.04 [\#5322](https://github.com/rvm/rvm/issues/5322) * Install openssl gem for Ruby 3.0.6 [\#5340](https://github.com/rvm/rvm/pull/5340) #### Bug fixes * Remove unsupported libclang, libclang-dev, openssl-dev and zlib-dev from Termux requirements, and fix installation by not calling getent [\#5101](https://github.com/rvm/rvm/pull/5101) * Allow ruby-head to be installed using ruby 3, not truffleruby [\#5115](https://github.com/rvm/rvm/pull/5115) * Fix attempts to install/uninstall ruby picking jruby, mruby or truffleruby instead [\#5116](https://github.com/rvm/rvm/pull/5116) * Fix Termux requirements checking and installation, and the requirements specified [\#5110](https://github.com/rvm/rvm/pull/5110) * Fix invalid brew syntax on requirements check [\#5111](https://github.com/rvm/rvm/pull/5111) * Skip non-functional prepare/mount tests on macOS [\#5119](https://github.com/rvm/rvm/pull/5119) * Fix detection for SUSE 15 [\#5132](https://github.com/rvm/rvm/pull/5132) * Avoid duplicate package instances when querying pkg-config [\#5172](https://github.com/rvm/rvm/pull/5172) * Fix building Ruby on Devuan 2 and newer by using libreadline-dev instead of libreadline6-dev [\#5214](https://github.com/rvm/rvm/pull/5214) * Fix building Ruby on Void Linux by using openssl instead of libressl [\#5234](https://github.com/rvm/rvm/pull/5234) * Fix building ruby-head by running autogen when available [\#5238](https://github.com/rvm/rvm/pull/5238) * Fix building Ruby 2.7 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/rvm/pull/5247) * Don't warn about empty GEM_PATH [\#5292](https://github.com/rvm/rvm/pull/5292) * Detect existing Homebrew installs for MacOS arm64e in /opt/homebrew [\#5310](https://github.com/rvm/rvm/pull/5310) * Fix installing rubies when home directory includes the gemset separator [\#3790](https://github.com/rvm/rvm/issues/3790) * Replace keys.gnupg.net in favour of keyserver.ubuntu.com [\#5316](https://github.com/rvm/rvm/issues/5316) * Fix non-silent failure on dash versions of /bin/sh [\#5167](https://github.com/rvm/rvm/pull/5167) * Fix building Ruby 2.6, 2.5, 2.4 on Fedora 36+ by using openssl1.1 instead of openssl3 [\#5247](https://github.com/rvm/pull/5325) * Fix truffleruby-23.0.0 installation on macos [\#5385](https://github.com/rvm/rvm/pull/5385) * Update location of OpenSSL binary [\#5433](https://github.com/rvm/rvm/pull/5433) * Fix gentoo dependencies moved from sys-devel to dev-build [\#5432](https://github.com/rvm/rvm/pull/5432) * Fix truffleruby-head installation on macos-aarch64 [\#5446](https://github.com/rvm/rvm/pull/5446) * Fix bug with Bootsnap on Ruby 3.3.1 [\#5457](https://github.com/rvm/rvm/pull/5457) +* Speed up Solus requirements check by 25x [\#5472](https://github.com/rvm/rvm/pull/5472/) #### New interpreters ##### MRI * 2.5.9, 2.6.7, 2.7.3, 3.0.1 [\#5063](https://github.com/rvm/rvm/pull/5063) * 2.6.8, 2.7.4, 3.0.2 [\#5098](https://github.com/rvm/rvm/pull/5098) * 3.1.0-preview1 [\#5155](https://github.com/rvm/rvm/pull/5155) * 2.6.9, 2.7.5, 3.0.3 [\#5157](https://github.com/rvm/rvm/pull/5157) * 3.1.0 [\#5169](https://github.com/rvm/rvm/pull/5169) * 3.1.1 [\#5185](https://github.com/rvm/rvm/pull/5185) * 2.6.10, 2.7.6, 3.0.4, 3.1.2, 3.2.0 Preview 1 [\#5200](https://github.com/rvm/rvm/pull/5200) * 2.7.7, 3.0.5, 3.1.3, 3.2.0 Preview 2 and 3.2.0 Preview 3 [\#5271](https://github.com/rvm/rvm/pull/5271) * 3.2.0-rc1 [\#5280](https://github.com/rvm/rvm/pull/5280) * 3.2.0 [\#5283](https://github.com/rvm/rvm/pull/5283) * 3.2.1 [\#5306](https://github.com/rvm/rvm/pull/5306) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5336](https://github.com/rvm/rvm/pull/5336), [\#5346](https://github.com/rvm/rvm/pull/5346) * 3.3.0-preview1 [\#5348](https://github.com/rvm/rvm/pull/5348) * 3.3.0-preview2 [\#5391](https://github.com/rvm/rvm/pull/5391) * 3.3.0-preview3 [\#5407](https://github.com/rvm/rvm/pull/5407) * 3.3.0 [\#5421](https://github.com/rvm/rvm/pull/5421) * 3.2.3 [\#5439](https://github.com/rvm/rvm/pull/5439) * 3.0.7, 3.1.5, 3.2.4, 3.3.1 [\#5455](https://github.com/rvm/rvm/pull/5455) * 3.4.0-preview1 [\#5466](https://github.com/rvm/rvm/pull/5466) * 3.3.2 [\#5470](https://github.com/rvm/rvm/pull/5470) ##### TruffleRuby * 21.0.0 [\#5037](https://github.com/rvm/rvm/pull/5037) * 21.1.0 [\#5071](https://github.com/rvm/rvm/pull/5071) * 21.2.0, 21.2.0.1, 21.3.0 [\#5137](https://github.com/rvm/rvm/pull/5137) * 22.0.0.2 [\#5177](https://github.com/rvm/rvm/pull/5177) * 22.1.0 [\#5206](https://github.com/rvm/rvm/pull/5206) * 22.2.0, 22.3.0, 22.3.1, 23.0.0-preview1, 23.0.0, 23.1.0, 23.1.1, 23.1.2, 24.0.0, 24.0.1 ##### JRuby * 9.2.15.0 and 9.2.16.0 [\#5056](https://github.com/rvm/rvm/pull/5056) * 9.2.17.0 [\#5062](https://github.com/rvm/rvm/pull/5062) * 9.2.18.0 [\#5091](https://github.com/rvm/rvm/pull/5091) * 9.2.19.0 [\#5094](https://github.com/rvm/rvm/pull/5094) * 9.2.20.0 [\#5145](https://github.com/rvm/rvm/pull/5145) * 9.2.20.1 [\#5160](https://github.com/rvm/rvm/pull/5160) * 9.2.21.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.0.0 [\#5130](https://github.com/rvm/rvm/pull/5130) * 9.3.1.0 [\#5135](https://github.com/rvm/rvm/pull/5135) * 9.3.2.0 [\#5163](https://github.com/rvm/rvm/pull/5163) * 9.3.3.0 [\#5175](https://github.com/rvm/rvm/pull/5175) * 9.3.4.0 [\#5195](https://github.com/rvm/rvm/pull/5163) * 9.3.6.0 [\#5230](https://github.com/rvm/rvm/pull/5230) * 9.3.7.0 [\#5245](https://github.com/rvm/rvm/pull/5245) * 9.3.8.0 [\#5250](https://github.com/rvm/rvm/pull/5250) * 9.3.9.0 [\#5258](https://github.com/rvm/rvm/pull/5258) * 9.3.10.0 [\#5300](https://github.com/rvm/rvm/pull/5300) * 9.3.11.0 [\#5390](https://github.com/rvm/rvm/pull/5390) * 9.3.13.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.3.14.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.0.0 [\#5270](https://github.com/rvm/rvm/pull/5270) * 9.4.1.0 [\#5304](https://github.com/rvm/rvm/pull/5304) * 9.4.2.0 [\#5333](https://github.com/rvm/rvm/pull/5333) * 9.4.3.0 [\#5357](https://github.com/rvm/rvm/pull/5357) * 9.4.4.0 [\#5399](https://github.com/rvm/rvm/pull/5399) * 9.4.5.0 [\#5405](https://github.com/rvm/rvm/pull/5405) * 9.4.6.0 [\#5443](https://github.com/rvm/rvm/pull/5443) * 9.4.7.0 [\#5449](https://github.com/rvm/rvm/pull/5449) ##### Railsexpress patches * 2.6.7, 2.7.3, 3.0.1 [\#5066](https://github.com/rvm/rvm/pull/5066) * 2.6.8, 2.7.4, 3.0.2 [\#5117](https://github.com/rvm/rvm/pull/5117) * 2.6.9, 2.7.5, 3.0.3 [\#5167](https://github.com/rvm/rvm/pull/5167) * 3.1.0 [\#5170](https://github.com/rvm/rvm/pull/5170) * 3.1.1 [\#5190](https://github.com/rvm/rvm/pull/5190) * 2.7.6, 3.0.4 and 3.1.2 [\#5207](https://github.com/rvm/rvm/pull/5207) * 2.7.7, 3.0.5 and 3.1.3 [\#5273](https://github.com/rvm/rvm/pull/5273) * 3.2.0 [\#5284](https://github.com/rvm/rvm/pull/5284) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.1 [\#5311](https://github.com/rvm/rvm/pull/5311) and [\#5312](https://github.com/rvm/rvm/pull/5312) * 3.2.2, 3.1.4, 3.0.6 and 2.7.8 [\#5338](https://github.com/rvm/rvm/pull/5338) * 3.3.0 [\#5423](https://github.com/rvm/rvm/pull/5423) * 3.2.3 [\#5430](https://github.com/rvm/rvm/pull/5430) * 3.0.7, 3.1.5, 3.2.4 and 3.3.1 [\#5465](https://github.com/rvm/rvm/pull/5465) #### Binaries * Redhat decendants * CentOS 7 x86_64 binaries * 2.5.9 2.6.10 2.7.4 2.7.5 2.7.6 2.7.7 3.0.4 3.1.2 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 8 x86_64 binaries * 2.5.9 2.6.7 2.6.8 2.6.10 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * CentOS 9 x86_64 binaries * 2.7.5 2.7.6 2.7.7 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 [\#5314](https://github.com/rvm/rvm/pull/5314) * Amazon 2 x86_64 binaries * 2.5.8 2.5.9 2.6.10 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.3 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Debian Family * Debian 10 x86_64 binaries * 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.6 2.7.7 3.0.0 3.0.2 3.0.4 3.0.5 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 18.04 (Bionic) x86_64 binaries * 1.9.3-p392 1.9.3-p551 2.0.0-p648 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 20.04 (Focal) x64 binaries * Ruby 2.5.9 2.6.10 2.6.7 2.6.8 2.6.9 2.7.3 2.7.5 2.7.6 2.7.7 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1.0 3.1.1 3.1.2 3.1.3 3.2.0 3.2.1 [\#5314](https://github.com/rvm/rvm/pull/5314) * Ubuntu 22.04 (Jammy) x64 binaries * Ruby 3.2.2 and 3.2.3 [\#5441](https://github.com/rvm/rvm/issues/5441) * Ruby 3.2.1 [\#5307](https://github.com/rvm/rvm/issues/5307) * Ruby 3.1.3 and 3.2.0 [\#5298](https://github.com/rvm/rvm/issues/5298) * Ruby 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2 [\#5308](https://github.com/rvm/rvm/pull/5308) * Ubuntu 22.04 (Jammy) arm64 binaries * 2.7.6, 2.7.7, 3.0.4, 3.0.5, 3.1.2, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) * 3.0.6, 3.1.4 and 3.2.2 [\#5339](https://github.com/rvm/rvm/pull/5339) * Ubuntu 22.10 (Kinetic) x64 binaries * 3.0.5, 3.1.3, 3.2.0 and 3.2.1 [\#5308](https://github.com/rvm/rvm/pull/5308) #### Docs * Replace unkind language that trivializes mental health [\#5134](https://github.com/rvm/rvm/pull/5134) * Remove reference to Freenode [\#5317](https://github.com/rvm/rvm/pull/5317) * Remove reference to subtrees, as we don't use them anymore [\#5318](https://github.com/rvm/rvm/pull/5318) * Fix incorrect example for rvm_make_flags (string changed to array) [\#5425](https://github.com/rvm/rvm/pull/5425) #### Infrastructure * Migrate from rvm_io.global.ssl.fastly.net to rvm-io.global.ssl.fastly.net to fix domain fronting report from Fastly [\#5438](https://github.com/rvm/rvm/pull/5438) * Upgrade github actions and truffleruby version in CI [\#5456](https://github.com/rvm/rvm/pull/5456) * Parallelize GitHub Action jobs in CI [\#5458](https://github.com/rvm/rvm/pull/5458) ## [1.29.12](https://github.com/rvm/rvm/releases/tag/1.29.12) 15 January 2021 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.11...1.29.12) #### New features * Added railsexpress patches for Ruby 3.0.0 [\#5026](https://github.com/rvm/rvm/pull/5026) #### Bug fixes * Requirement `glibc-headers` obsolete on Fedora 33 [\#5023](https://github.com/rvm/rvm/pull/5023) * Fix unknown command wrappers with Rubygems >= 3.2 [\#5027](https://github.com/rvm/rvm/pull/5027) * Fix errors in compilation+installation of Ruby 3 with Rubygems >= 3.2 [\#5030](https://github.com/rvm/rvm/pull/5030) * Updated colours in the `ps1_functions` helper to support the `main` branch [\#5045](https://github.com/rvm/rvm/pull/5045) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 3.0.0 [\#5031](https://github.com/rvm/rvm/issues/5031) * Recompiled 2.4.10, 2.5.8, 2.6.6, 2.7.1, 2.7.2 binaries for Ubuntu 20.04.1 [\#5032](https://github.com/rvm/rvm/pull/5032) ## [1.29.11](https://github.com/rvm/rvm/releases/tag/1.29.11) 29 December 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.10...1.29.11) #### New features * Added railsexpress patches for Ruby 2.7.2 [\#4990](https://github.com/rvm/rvm/pull/4990) * Added railsexpress patches for Ruby 2.5.8, 2.6.6 and 2.7.1 [\#4900](https://github.com/rvm/rvm/pull/4900) * Add ruby-3 to the list of available binary builds [\#4984](https://github.com/rvm/rvm/pull/4984) * Recognize `3*` as CRuby version number [\#4987](https://github.com/rvm/rvm/pull/4987) * Alias `rvm gemset remove` as `rvm gemset delete` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm gemset move` as `rvm gemset rename` [\#4976](https://github.com/rvm/rvm/pull/4976) * Alias `rvm delete` as `rvm remove` [\#4976](https://github.com/rvm/rvm/pull/4976) #### Bug fixes * Use libssl-1.0 to install Ruby 1.8 on Debian 9 [\#4920](https://github.com/rvm/rvm/pull/4920) * Use libssl-1.0 to install Ree 1.8 on Ubuntu [\#4996](https://github.com/rvm/rvm/pull/4920) * Fix broken mergeable config [\#5001](https://github.com/rvm/rvm/pull/5001) * Update brew list command to remove deprecation warning [\#4995](https://github.com/rvm/rvm/pull/4995) [\#5022](https://github.com/rvm/rvm/pull/5022) #### New interpreters * Add support for TruffleRuby 20.1.0, 20.2.0, 20.3.0 * Add support for Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4899](https://github.com/rvm/rvm/pull/4899), 2.7.2 [\#4988](https://github.com/rvm/rvm/pull/4988), 3.0.0-preview1 [\#4983](https://github.com/rvm/rvm/pull/4983), 3.0.0-preview2[\#5009](https://github.com/rvm/rvm/pull/5009), 3.0.0-rc1[\#5015](https://github.com/rvm/rvm/pull/5015), and 3.0.0[\#5016](https://github.com/rvm/rvm/pull/5016) * Add support for mruby 2.1.1-rc [\#4909](https://github.com/rvm/rvm/pull/4909), 2.1.1-rc2 and 2.1.1 [\#4948](https://github.com/rvm/rvm/pull/4948) * Add support for TruffleRuby 19.0.2, 19.1.1, 19.2.1, 19.3.0.2 [\#4910](https://github.com/rvm/rvm/pull/4910) * Add support for Rubinius 4.13-4.20 and 5.0 [\#4947](https://github.com/rvm/rvm/pull/4947) * Add support for JRuby 9.2.12.0 [\#4960](https://github.com/rvm/rvm/pull/4960), 9.2.13.0 [\#4971](https://github.com/rvm/rvm/pull/4971) and 9.2.14.0 [\#5013](https://github.com/rvm/rvm/pull/5013) #### Binaries * Ubuntu * Ubuntu 20.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.9, 2.5.0-2.5.8, 2.6.0-2.6.5, 2.7.0 [\#4921](https://github.com/rvm/rvm/issues/4921) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 19.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 18.04 x64 binaries * Ruby 2.4.10, 2.5.8, 2.6.6, 2.7.1 [\#4904](https://github.com/rvm/rvm/issues/4904) * Ruby 2.4.8 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.1.0-2.1.10, 2.2.0-2.2.9, 2.3.0-2.3.6, 2.4.0-2.4.3 [\#4916](https://github.com/rvm/rvm/issues/4916) * Ruby 2.5.0 [\#4931](https://github.com/rvm/rvm/issues/4931) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 16.04 x64 binaries * Ruby 2.1.0-2.1.4, 2.1.6-2.1.8, 2.1.10, 2.2.0-2.2.4, 2.3.8, 2.4.5-2.4.10, 2.5.2-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4932](https://github.com/rvm/rvm/issues/4932) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 14.04 x64 binaries * Ruby 2.1.0-2.1.1, 2.1.4, 2.1.6-2.1.10, 2.2.2-2.2.10, 2.3.0-2.3.8, 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0-2.7.1 [\#4933](https://github.com/rvm/rvm/issues/4933) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Ubuntu 12.04 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Debian * Debian 10 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 9 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Debian 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS * CentOS 6 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * CentOS 8 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4936](https://github.com/rvm/rvm/issues/4936) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux * Amazon Linux 2018.03 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Amazon Linux 2 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) * Oracle Linux 7 x64 binaries * Ruby 2.4.0-2.4.10, 2.5.0-2.5.8, 2.6.0-2.6.6, 2.7.0, 2.7.1 [\#4935](https://github.com/rvm/rvm/issues/4935) * Ruby 3.0.0-preview1 [\#4985](https://github.com/rvm/rvm/pull/4985) * Ruby 2.7.2 [\#4989](https://github.com/rvm/rvm/pull/4989) ## [1.29.10](https://github.com/rvm/rvm/releases/tag/1.29.10) 25 March 2020 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.9...1.29.10) #### New features * Improve JRuby install time [\#4807](https://github.com/rvm/rvm/pull/4807) * Add Termux support [\#4749](https://github.com/rvm/rvm/pull/4749) * Add support for `truffleruby-head` [\#4871](https://github.com/rvm/rvm/pull/4871) #### New interpreters * Add support for TruffleRuby 20.0.0 * Add support for TruffleRuby 19.3.1 * Add support for TruffleRuby 19.3.0 * Add support for Rubinius 4.4 and 4.5 [\#4735](https://github.com/rvm/rvm/pull/4735), 4.6 [\#4779](https://github.com/rvm/rvm/pull/4779), 4.7 [\#4821](https://github.com/rvm/rvm/pull/4821), 4.8, 4.9 [\#4842](https://github.com/rvm/rvm/pull/4842), 4.10 [\#4843](https://github.com/rvm/rvm/pull/4843), 4.11 and 4.12 [\#4846](https://github.com/rvm/rvm/pull/4846) * Add support for JRuby 9.2.8.0 [\#4756](https://github.com/rvm/rvm/pull/4756), 9.2.9.0 [\#4812](https://github.com/rvm/rvm/pull/4812), 9.2.10.0 [\#4877](https://github.com/rvm/rvm/pull/4877), 9.2.11.0 [\#4881](https://github.com/rvm/rvm/pull/4881), 9.2.11.1 [\#4891](https://github.com/rvm/rvm/pull/4891) * Add support for TruffleRuby 19.2.0 [\#4761](https://github.com/rvm/rvm/pull/4761), 19.2.0.1 [\#4784](https://github.com/rvm/rvm/pull/4784) * Add support for Ruby 2.4.7, 2.5.6 [\#4767](https://github.com/rvm/rvm/pull/4767), 2.6.4 [\#4768](https://github.com/rvm/rvm/pull/4768), 2.4.8, 2.5.7, 2.6.5 [\#4793](https://github.com/rvm/rvm/pull/4793), 2.4.9 [\#4796](https://github.com/rvm/rvm/pull/4796), 2.7.0-preview2 [\#4805](https://github.com/rvm/rvm/pull/4805), 2.7.0-preview3 [\#4817](https://github.com/rvm/rvm/pull/4817), 2.7.0-rc1 [\#4831](https://github.com/rvm/rvm/pull/4831), 2.7.0-rc2 [\#4834](https://github.com/rvm/rvm/pull/4834), and 2.7.0 [\#4837](https://github.com/rvm/rvm/pull/4837) * Add support for mruby 2.1.0 [\#4816](https://github.com/rvm/rvm/pull/4816) * Add support for rubygems 3.0.5, 3.0.6 [\#4828](https://github.com/rvm/rvm/pull/4828) #### Bug fixes * Fix installer fetching RVM tags from Bitbucket [\#4730](https://github.com/rvm/rvm/pull/4730) * Prevent downloading of null RVM versions in installer [\#4731](https://github.com/rvm/rvm/pull/4731) * RVM package fails to configure on fresh Ubuntu 18.04 server install [\#4742](https://github.com/rvm/rvm/pull/4742) * Ignore aliases when using `ls` command [\#4743](https://github.com/rvm/rvm/pull/4743) [\#4744](https://github.com/rvm/rvm/pull/4744) * Export more shell functions which cause the subshell to choke [\#4745](https://github.com/rvm/rvm/pull/4745) * Adds a check and returns if \_\_rvm\_remove\_from\_path is called with "/\*" [\#4759](https://github.com/rvm/rvm/issues/4759) * Do not install `rubygems-bundler` by default on TruffleRuby to make `ruby -S bundle` work [\#4766](https://github.com/rvm/rvm/pull/4766) * Fixes checksums for Ruby 2.6.4 [\#4769](https://github.com/rvm/rvm/pull/4769), 2.4.7 and 2.5.6 [\#4771](https://github.com/rvm/rvm/pull/4771) * Update TruffleRuby dependencies [\#4815](https://github.com/rvm/rvm/pull/4815) * Use ruby.git master instead of trunk [\#4840](https://github.com/rvm/rvm/pull/4840) * Fix RVM version check when using a version newer than the latest release [#4872](https://github.com/rvm/rvm/pull/4872) #### Changes * Installer now reports which URL(s) have failed to fetch version information and when version fetching has completely failed [\#4731](https://github.com/rvm/rvm/pull/4731) * Added railsexpress patches for Ruby 2.6.3 [\#4747](https://github.com/rvm/rvm/pull/4747), 2.6.6, 2.5.6 and 2.4.6 [\#4772](https://github.com/rvm/rvm/pull/4772) * Fix string corruption bug on railsexpress ruby 2.6.4 [\#4778](https://github.com/rvm/rvm/pull/4778) * Fix string corruption bug by default for ruby 2.6.4 [\#4780](https://github.com/rvm/rvm/pull/4780) * Added railsexpress patches for Ruby 2.6.5, 2.5.7, 2.4.9 [\#4799](https://github.com/rvm/rvm/pull/4799) and 2.7.0, 2.7-head [\#4839](https://github.com/rvm/rvm/pull/4839) * Install Opal globally [\#4844](https://github.com/rvm/rvm/pull/4844) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.4.7, 2.5.6, 2.6.4 [\#4788](https://github.com/rvm/rvm/issues/4788) * Ruby 2.4.9, 2.5.7, 2.6.5 [\#4795](https://github.com/rvm/rvm/issues/4795) * Ruby 2.7.0 [\#4856](https://github.com/rvm/rvm/issues/4856) ## [1.29.9](https://github.com/rvm/rvm/releases/tag/1.29.9) 10 July 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.8...1.29.9) #### New features * Use remote .sha512 and .md5 if available (Rubinius) [\#4650](https://github.com/rvm/rvm/pull/4650) #### New interpreters * Add support for TruffleRuby 19.1.0 * Add support for TruffleRuby 19.0.0 [\#4689](https://github.com/rvm/rvm/pull/4689) * Add support for Rubinius 4.1 [\#4706](https://github.com/rvm/rvm/pull/4706), 4.2 [\#4714](https://github.com/rvm/rvm/pull/4714), 4.3 [\#4727](https://github.com/rvm/rvm/pull/4727) * Add support for Ruby 2.7.0 Preview 1 [\#4709](https://github.com/rvm/rvm/pull/4709) * Add support for Rubygems 2.7.9, 2.7.10, 3.0.3, 3.0.4 [\#4718](https://github.com/rvm/rvm/pull/4718) #### Bug fixes * Fix rvm version validation per project [\#4692](https://github.com/rvm/rvm/pull/4692) * Fix endless loop on macOS when listing remotes [\#4703](https://github.com/rvm/rvm/pull/4703) * Filter redundant/incompatible rvm\_gem\_options [\#4705](https://github.com/rvm/rvm/pull/4705) * Remove rvm_gems_path as part of __rvm_remove_rvm_from_path [\#4712](https://github.com/rvm/rvm/pull/4712) * Fix checksum check condition to not try url if already found in config files [\#4707](https://github.com/rvm/rvm/pull/4707) * Fix checksum check to only try url checksums for Rubinius [\#4717](https://github.com/rvm/rvm/pull/4717) * Fix `sed: illegal option -- r` error on macOS when changing to any ruby directory [\#4711](https://github.com/rvm/rvm/pull/4711) * Don't ignore `curl` error on repo tags fetch [\#4722](https://github.com/rvm/rvm/pull/4722) * Use newer llvm on Mint 19.1+ [\#4642](https://github.com/rvm/rvm/pull/4642) * Preserve the environment setting in rvmrc and .rvmrc in multi or mixed mode [\#4612](https://github.com/rvm/rvm/pull/4612) #### Changes * TruffleRuby is now always considered a "source Ruby" instead of both a source and binary Ruby to improve reliability and avoiding code duplication [\#4708](https://github.com/rvm/rvm/pull/4708) ## [1.29.8](https://github.com/rvm/rvm/releases/tag/1.29.8) 8 May 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.7...1.29.8) #### New features * Upgrade RubyGems to version 3.0.2 * RailsExpress patches for 2.6.1 [\#4603](https://github.com/rvm/rvm/pull/4603), 2.5.4 and 2.6.2 [\#4637](https://github.com/rvm/rvm/pull/4637), 2.5.5 [\#4646](https://github.com/rvm/rvm/pull/4646) * Add script to automatically register a new TruffleRuby release in RVM [\#4576](https://github.com/rvm/rvm/pull/4576) * Add .rvmrc equivalents to install help [\#4652](https://github.com/rvm/rvm/pull/4652) * Copy config.log for debugging if configure fails [\#4651](https://github.com/rvm/rvm/pull/4651) #### New interpreters * Add support for TruffleRuby * 1.0.0-rc(11,12,13,14,15,16) [\#4575](https://github.com/rvm/rvm/pull/4575) * Add support for Ruby * 2.6.1 [\#4597](https://github.com/rvm/rvm/pull/4597) * 2.6.2 and 2.5.4 [\#4636](https://github.com/rvm/rvm/pull/4636) * 2.6.3 [\#4668](https://github.com/rvm/rvm/pull/4668) * 2.5.5 [\#4640](https://github.com/rvm/rvm/pull/4640) * 2.4.6 [\#4657](https://github.com/rvm/rvm/pull/4657) * Add support for JRuby * 9.2.6.0 [\#4614](https://github.com/rvm/rvm/pull/4614) * 9.2.7.0 [\#4664](https://github.com/rvm/rvm/pull/4664) * Add support for Rubinius * 3.107 [\#4649](https://github.com/rvm/rvm/pull/4649) * 4.0 [\#4688](https://github.com/rvm/rvm/pull/4688) * Add support for mruby 2.0.1 [\#4667](https://github.com/rvm/rvm/pull/4667) #### Bug fixes * Add system ruby as dependency for CentOS [\#4567](https://github.com/rvm/rvm/pull/4567) * Improve detection of Amazon Linux 2 [\#4568](https://github.com/rvm/rvm/pull/4568) * Fix macOS openssl requirement gathering with Homebrew [\#4583](https://github.com/rvm/rvm/pull/4583) * Don't spoil environment with '_system_*' variables [\#4584](https://github.com/rvm/rvm/pull/4584) * Add missing zlib dependency for macOS [\#4587](https://github.com/rvm/rvm/pull/4587) * Install libssl1.0-dev for version 1.8 of Ruby on Ubuntu linux [\#4586](https://github.com/rvm/rvm/pull/4586) * Require os-specific functions during install only when they exist [\#4589](https://github.com/rvm/rvm/pull/4589) * Fix loading rvm script with set -e [\#4606](https://github.com/rvm/rvm/pull/4606) * Fix installing Homebrew in a custom location [\#4620](https://github.com/rvm/rvm/pull/4620) * Update rbx dependencies for macOS [\#4643](https://github.com/rvm/rvm/pull/4643) * Fix version selected for TruffleRuby binary install [\#4662](https://github.com/rvm/rvm/pull/4662) * Remove hardcoded number of jobs in installer [\#4674](https://github.com/rvm/rvm/pull/4674) * Updated obsoleted package openssl-devel to libssl-devel cygwin requirements [\#4685](https://github.com/rvm/rvm/pull/4685) #### Binaries: * Ubuntu 18.04 x64 binaries * Ruby 2.2.10, 2.3.8, 2.4.5, 2.5.2, 2.5.3, 2.6.0 [\#4595](https://github.com/rvm/rvm/issues/4595) * Ruby 2.6.1 [\#4601](https://github.com/rvm/rvm/issues/4601) * Ruby 2.5.4, 2.5.5, 2.6.2 [\#4647](https://github.com/rvm/rvm/issues/4647) * Ruby 2.4.6 and 2.6.3 [\#4686](https://github.com/rvm/rvm/issues/4686) ## [1.29.7](https://github.com/rvm/rvm/releases/tag/1.29.7) 3 January 2019 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.6...1.29.7) #### New features * Set Ruby 2.6.0 as the default Ruby version [\#4544](https://github.com/rvm/rvm/pull/4544) * RailsExpress patches for 2.6.0 [\#4547](https://github.com/rvm/rvm/pull/4547) * Add support for gcc@8 with Homebrew and drop gcc < 4.9 [\#4556](https://github.com/rvm/rvm/issues/4556) #### New interpreters * Add support for Ruby 2.6.0-rc2 [\#4526](https://github.com/rvm/rvm/pull/4526) and 2.6.0 [\#4542](https://github.com/rvm/rvm/pull/4542) #### Bug fixes * Install libssl1.0.2 for old versions of Ruby on Kali linux [\#4522](https://github.com/rvm/rvm/pull/4522) * Fix Linux Mint 19 dependencies [\#4524](https://github.com/rvm/rvm/pull/4524) * Fix Mojave Command Line Tools version detection [\#4404](https://github.com/rvm/rvm/pull/4404) * Fix return code in signature check function [\#4530](https://github.com/rvm/rvm/issues/4530) * Check `stable` branch only for latest version [\#4534](https://github.com/rvm/rvm/issues/4534) * Fix comparison of local and online stable versions [\#4539](https://github.com/rvm/rvm/issues/4539) * Remove reference to keys.gnupg.net in favour of pool.sks-keyservers.net [\#4550](https://github.com/rvm/rvm/issues/4550) * Fix Homebrew docs links [\#4551](https://github.com/rvm/rvm/issues/4551) * Drop invalid link for osx-gcc-installer [\#4552](https://github.com/rvm/rvm/issues/4552) * Use gcc from XCode for macOS Mojave (10.14) [\#4557](https://github.com/rvm/rvm/issues/4557) * Stop uninstalling gcc from Homebrew [\#4558](https://github.com/rvm/rvm/issues/4558) #### Changes * Drop usage of bit.ly for link shortening [\#4555](https://github.com/rvm/rvm/issues/4555) ## [1.29.6](https://github.com/rvm/rvm/releases/tag/1.29.6) 13 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.5...1.29.6) #### Bug fixes * Correct version listed in VERSION file * Mention pkuczynski gpg key in docs and cli [\#4519](https://github.com/rvm/rvm/pull/4519) * Remove gcc installed via Homebrew in favour of Command Line Tools on macOS Mojave [\#4501](https://github.com/rvm/rvm/pull/4501) * Fix Rubinius build on macOS with Homebrew [\#4328](https://github.com/rvm/rvm/pull/4328) #### Documentation * Improve gpg signature verification docs [\#4458](https://github.com/rvm/rvm/pull/4458) ## [1.29.5](https://github.com/rvm/rvm/releases/tag/1.29.5) 12 December 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.4...1.29.5) #### New features: * Switch to new maven-based JRuby download URLs * RailsExpress patches for 2.3.8, 2.4.5 and 2.5.3 [\#4476](https://github.com/rvm/rvm/pull/4476) * Add support for Void linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add support for MINGW in main rvm script [\#4493](https://github.com/rvm/rvm/pull/4493) * Add support for gcc@7 on macOS with Homebrew [\#4500](https://github.com/rvm/rvm/pull/4500) * Add support for Trisquel linux [\#4478](https://github.com/rvm/rvm/pull/4478) * Add fail warning when Avira antivirus running [\#4498](https://github.com/rvm/rvm/pull/4498) #### Bug fixes: * Allow HTTP 2.0 servers to be used for downloads * Remove too restrictive check for LLVM with TruffleRuby [\#4427](https://github.com/rvm/rvm/pull/4427) * Fix trap restoration on Amazon Linux [\#4428](https://github.com/rvm/rvm/pull/4428) * Fix Amazon Linux 2 detection [\#4435](https://github.com/rvm/rvm/pull/4435) * Fix libssl dependency for Elementary 5.0 Juno [\#4448](https://github.com/rvm/rvm/pull/4448) * Fix Ruby 2.5.0 and 2.5.1 build with LibreSSL 2.7.0 [\#4483](https://github.com/rvm/rvm/pull/4483) * Fix libssl dependency for Mint 19 [\#4482](https://github.com/rvm/rvm/pull/4482) * Use --no-ri or --no-document depending on ruby version [\#4492](https://github.com/rvm/rvm/pull/4492) #### Upgraded Ruby interpreters: * Add support for TruffleRuby 1.0.0-rc3 [\#4419](https://github.com/rvm/rvm/pull/4419), 1.0.0-rc5 [\#4440](https://github.com/rvm/rvm/pull/4440), 1.0.0-rc6 [\#4452](https://github.com/rvm/rvm/pull/4452), 1.0.0-rc7 [\#4466](https://github.com/rvm/rvm/pull/4466), 1.0.0-rc8 [\#4489](https://github.com/rvm/rvm/pull/4489), 1.0.0-rc9 [\#4489](https://github.com/rvm/rvm/pull/4489), and 1.0.0-rc10 [\#4512](https://github.com/rvm/rvm/pull/4512) * Add support for Ruby 2.3.8, 2.4.5, 2.5.2, 2.5.3 [\#4474](https://github.com/rvm/rvm/pull/4474), 2.6.0-preview3 [\#4490](https://github.com/rvm/rvm/pull/4490), and 2.6.0-rc1 [\#4513](https://github.com/rvm/rvm/pull/4513) * Add support for JRuby 9.2.1.0 [\#4491](https://github.com/rvm/rvm/pull/4491), 9.2.2.0 [\#4495](https://github.com/rvm/rvm/pull/4495), 9.2.3.0 [\#4496](https://github.com/rvm/rvm/pull/4496), 9.2.4.0 [\#4504](https://github.com/rvm/rvm/pull/4504), 9.2.4.1 [\#4509](https://github.com/rvm/rvm/pull/4509), and 9.2.5.0 [\#4514](https://github.com/rvm/rvm/pull/4514) * Add support for mruby 1.4.1 [\4517](https://github.com/rvm/rvm/pull/4517) and 2.0.0 [\4516](https://github.com/rvm/rvm/pull/4516) #### Binaries: * Ubuntu 18.04 x64 binaries for Ruby 2.3.7, 2.4.4 and 2.5.1 [\#4438](https://github.com/rvm/rvm/issues/4438) ## [1.29.4](https://github.com/rvm/rvm/releases/tag/1.29.4) 1 July 2018 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.3...1.29.4) #### New features: * Multi-colored log, warning and error messages [\#4044](https://github.com/rvm/rvm/pull/4044) * RailsExpress patches for 2.2.8, 2.3.5 and 2.4.2 [\#4167](https://github.com/rvm/rvm/pull/4167) * Improved CPU count detection [\#4171](https://github.com/rvm/rvm/pull/4171) * Simplified wrapper subcommand [\#4180](https://github.com/rvm/rvm/issues/4180) * Extend aliases to gems directories [\#4189](https://github.com/rvm/rvm/pull/4189) * Debian Buster (10) support [\#4199](https://github.com/rvm/rvm/pull/4199) * Implement DNF package manager for Fedora 22+ [\#4198](https://github.com/rvm/rvm/pull/4198) * `float_warnings` patches for Ruby 2.0.0p64[5 7 8], 2.1.[8 9 10], 2.2.[4 5 6 7 8], 2.3.[0 1 2 3 4 5] and 2.4.[0 1 2] [\#4201](https://github.com/rvm/rvm/pull/4201) * RailsExpress patches for ruby-head, 2.2.9, 2.3.6 and 2.4.3 [\#4264](https://github.com/rvm/rvm/pull/4264) * RailsExpress patches for 2.5.0 [\#4268](https://github.com/rvm/rvm/pull/4268) * Update README including Table of Contents to help improve documentation readability [\#4277](https://github.com/rvm/rvm/pull/4277) * Set default RubyGems to 2.7 [\#4276](https://github.com/rvm/rvm/issues/4276) * Add support for installing Ruby <2.4 on Ubuntu 17.10+ [\#4326](https://github.com/rvm/rvm/pull/4326) * Add support for installing Rubinius on Redhat/Fedora [\#4329](https://github.com/rvm/rvm/pull/4329) * Installing Rubinius on Ubuntu 17.x [\#4213](https://github.com/rvm/rvm/pull/4213) * RailsExpress patches for 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4344](https://github.com/rvm/rvm/pull/4344) * Add documentation in `rvm help install` for multiple undocumented flags [\#4350](https://github.com/rvm/rvm/pull/4350) * Add support for TruffleRuby [\#4406](https://github.com/rvm/rvm/pull/4406) * Add support for `--tag` in `rvm install` [\#4360](https://github.com/rvm/rvm/pull/4360) * Add bundler to list of default gems [\#4413](https://github.com/rvm/rvm/pull/4413) #### Bug fixes: * ZSH Bad pattern for Gemfile ruby declaration [\#4154](https://github.com/rvm/rvm/issues/4154) [\#4156](https://github.com/rvm/rvm/issues/4156) * Add missing `random.c` patch for Ruby 2.3.2 [\#4165](https://github.com/rvm/rvm/issues/4165) * Set back IRB history default to HOME [\#4158](https://github.com/rvm/rvm/issues/4158) * Do not require `libyaml-devel` on Redhat/Centos when it's not needed [\#2998](https://github.com/rvm/rvm/issues/2998) * Restore mvn installation for JRuby 1.7 [\#4166](https://github.com/rvm/rvm/issues/4166) * ree-1.8.7 requires old version of OpenSSL 1.0.2 [\#4110](https://github.com/rvm/rvm/issues/4110) * `libreadline6-dev` is not a valid Ubuntu 16.10 package [\#4172](https://github.com/rvm/rvm/issues/4172) * Require libdb-4.8 for OpenSuSE Tumbleweed [\#4178](https://github.com/rvm/rvm/issues/4178) * Require make for JRuby 9 [\#4058](https://github.com/rvm/rvm/issues/4058) * Fix support for zsh 5.4.1 [bash_zsh_support \#6](https://github.com/mpapis/bash_zsh_support/pull/6) * Installing rbx-3.70 fails on PCLinuxOS 64-bit [\#3895](https://github.com/rvm/rvm/issues/3895) * Can't install Ruby with MacPorts and LibreSSL [\#4208](https://github.com/rvm/rvm/issues/4208) * Fix invalid `libgmp3-dev` requirement for Debian [\#4238](https://github.com/rvm/rvm/pull/4238) * Ensure compat-openssl10-devel is not installed for Fedora 26+ and Ruby 2.4+ [\#4249](https://github.com/rvm/rvm/pull/4249) * Fix fd_mask detection on OS X for Ruby 2.5.0 [\#4270](https://github.com/rvm/rvm/pull/4270) * Suppress `ls` alias substitution in `gem_install_force` in `scripts/functions/gemset` [\#4282](https://github.com/rvm/rvm/issues/4282) * Fix installing rubygems 2.7 [\#4287](https://github.com/rvm/rvm/pull/4287) * Add prelude_gcc_diagnostic patch for Ruby 2.5.0 to correct compilation failures with GCC < 5 * Fix installing rubygems master [\#3734](https://github.com/rvm/rvm/issues/3734) * Correctly look for rvm group in /etc/group [\#4300](https://github.com/rvm/rvm/issues/4300) * Drop homebrew/versions and upgrade gcc to 6.0 [\#4304](https://github.com/rvm/rvm/pull/4304) * Avoid unnecessary install warning [\#4346](https://github.com/rvm/rvm/pull/4346) * Unified putput of installation notes [\#4330](https://github.com/rvm/rvm/pull/4330) * Skip gemset pristine on mruby reinstall [\#4348](https://github.com/rvm/rvm/pull/4348) * Ruby 2.2.5 to 2.2.10 patches for installing bundled gems [\#4358](https://github.com/rvm/rvm/issues/4358) * Update RBX dependencies for OpenSUSE [\#4382](https://github.com/rvm/rvm/pull/4382) * Fix nailgun detection on JRuby 9+ [\#4089](https://github.com/rvm/rvm/issues/4089) * RVM removes traps in bash [\#4416](https://github.com/rvm/rvm/issues/4416) #### Upgraded Ruby interpreters: * Add support for Ruby 2.2.8, 2.3.5 and 2.4.2 [\#4159](https://github.com/rvm/rvm/pull/4159), 2.5.0-preview1 [\#4204](https://github.com/rvm/rvm/pull/4204), 2.2.9, 2.3.6, 2.4.3 and 2.5.0-rc1 [\#4261](https://github.com/rvm/rvm/pull/4261), 2.5.0 [\#4265](https://github.com/rvm/rvm/pull/4265), 2.6.0-preview1 [\#4317](https://github.com/rvm/rvm/pull/4317), 2.2.10, 2.3.7, 2.4.4, 2.5.1 [\#4340](https://github.com/rvm/rvm/pull/4340) and 2.6.0-preview2[\#4395](https://github.com/rvm/rvm/pull/4395) * Add support for Rubinius 3.85-3.100 * Add support for JRuby 9.1.14.0 [\#4224](https://github.com/rvm/rvm/pull/4224), 9.1.15.0 [\#4258](https://github.com/rvm/rvm/pull/4258), 9.1.16.0 [\#4316](https://github.com/rvm/rvm/pull/4316), 9.1.17.0 [\#4366](https://github.com/rvm/rvm/pull/4366), 9.2.0.0 [\#4390](https://github.com/rvm/rvm/pull/4390) * Add support for mruby 1.4.0 [\#4286](https://github.com/rvm/rvm/pull/4286) * Add support for MagLev 1.1* and 1.2Alpha-1.2Alpha4 [\#4289](https://github.com/rvm/rvm/pull/4289) * Add support for RubyGems 2.6.14 [\#4205](https://github.com/rvm/rvm/pull/4205), 2.7.0-2.7.4 [\#4276](https://github.com/rvm/rvm/issues/4276) and 2.7.5-6 #### Binaries: * Ubuntu 16.04 x64 binaries for Ruby 2.2.10, 2.3.7, 2.4.4 and 2.5.1 [\#4362](https://github.com/rvm/rvm/issues/4362), 2.2.9, 2.3.6 and 2.4.3 [\#4259](https://github.com/rvm/rvm/issues/4259), 2.2.8, 2.3.5 and 2.4.2 [\#4161](https://github.com/rvm/rvm/issues/4161), 2.5.0 [\#4272](https://github.com/rvm/rvm/pull/4272) * Ubuntu 17.04 for Ruby 2.1.\*, 2.2.\* [\#4233](https://github.com/rvm/rvm/pull/4233) ## [1.29.3](https://github.com/rvm/rvm/releases/tag/1.29.3) 10 September 2017 - [Full Changelog](https://github.com/rvm/rvm/compare/1.29.2...1.29.3) #### New features: * Add RVM commands missing in bash shell completion [\#4078](https://github.com/rvm/rvm/pull/4078) * Railsexpress patches for 2.3.4, 2.3-head [\#4084](https://github.com/rvm/rvm/pull/4084), 2.2.5 and 2.2.6 [\#4153](https://github.com/rvm/rvm/pull/4153) * Update `gem-wrappers` to 1.3.0: Show warnings when the target binary is missing or is not executable [gem-wrappers \#9](https://github.com/rvm/gem-wrappers/issues/9) * Detect Zorin OS as Ubuntu [\#4140](https://github.com/rvm/rvm/issues/4140) #### Bug fixes: diff --git a/scripts/functions/requirements/solus b/scripts/functions/requirements/solus index 30d3449..2526332 100644 --- a/scripts/functions/requirements/solus +++ b/scripts/functions/requirements/solus @@ -1,77 +1,77 @@ #!/usr/bin/env bash requirements_solus_lib_installed() { - eopkg li --no-color | __rvm_grep "^$1[[:space:]]\+" > /dev/null 2>&1 || return $? + eopkg info --no-color -s $1 | __rvm_grep "^\[inst\][[:space:]]\+$1" > /dev/null 2>&1 || return $? } requirements_solus_lib_available() { eopkg la --no-color | __rvm_grep "^$1[[:space:]]\+" > /dev/null 2>&1 || return $? } requirements_solus_install_custom() { requirements_rvm_pkg_libs_install "$@" || return $? } requirements_solus_libs_install() { __rvm_try_sudo eopkg --no-color --yes-all it "$@" || return $? } requirements_solus_check_binary() { __rvm_which "$1" >/dev/null || return $? } requirements_solus_define() { case "$1" in (rvm) requirements_check bash curl patch ca-certs gawk bzip2 ;; (jruby*) requirements_check make if is_head_or_disable_binary "$1" then requirements_solus_check_binary javac || requirements_check_fallback openjdk-8-devel requirements_check git case $( jruby_installation_method "$1" ) in mvn) requirements_check_custom_after mvn=maven ;; esac else requirements_solus_check_binary java || requirements_check_fallback openjdk-8 fi ;; (ir*) true ;; (opal) true ;; (*-head) requirements_check git requirements_solus_define "${1%-head}" requirements_version_minimal autoconf 2.67 ;; (*) if [[ ${#rvm_patch_names[@]} -gt 0 ]] then requirements_version_minimal autoconf 2.67 fi requirements_check autoconf gcc g++ glibc-devel patch readline readline-devel \ zlib zlib-devel libffi-devel openssl-devel make bzip2 automake libtool \ bison sqlite3-devel yaml-devel gmp-devel pkg-config ncurses-devel binutils ;; esac }