Project

General

Profile

Bug #21388

Updated by nobu (Nobuyoshi Nakada) 6 days ago

Two issues: 

 1. Currently, `make install` from the `MinGW (UCRT)` workflow shows two gems not being installed (`syslog` cannot be installed on Windows): 

     
   ``` 
     
   skipped bundled gems: 
         
       csv-3.3.5.gem                     not found in bundled_gems 
         
       power_assert-2.0.6dev.gem         not found in bundled_gems 
         
       syslog-0.3.0.gem                  not found in bundled_gems 
     
   ``` 

     
  
   A simple patch file will fix this: 
     
 ```patch 
	 
 diff --git a/gems/bundled_gems b/gems/bundled_gems 
	 
 index 8891f1c462..ca66b48ed6 100644 
	 
 --- a/gems/bundled_gems 
	 
 +++ b/gems/bundled_gems 
	 
 @@ -7,7 +7,7 @@ 
	  
  #     if `revision` is not given, "v"+`version` or `version` will be used. 
	 
	  
 
  minitest              5.25.5    https://github.com/minitest/minitest 
	 
 -power_assert          2.0.5     https://github.com/ruby/power_assert a7dab941153b233d3412e249d25da52a6c5691de 
	 
 +power_assert          2.0.6dev    https://github.com/ruby/power_assert a7dab941153b233d3412e249d25da52a6c5691de 
	  
  rake                  13.3.0    https://github.com/ruby/rake 
	  
  test-unit             3.6.8     https://github.com/test-unit/test-unit 
	  
  rexml                 3.4.1     https://github.com/ruby/rexml 
	 
 @@ -33,7 +33,7 @@ rinda                 0.2.0     https://github.com/ruby/rinda 
	  
  drb                   2.2.3     https://github.com/ruby/drb 
	  
  nkf                   0.2.0     https://github.com/ruby/nkf 
	  
  syslog                0.3.0     https://github.com/ruby/syslog 
	 
 -csv                   3.3.4     https://github.com/ruby/csv 69d9886238a504bfac60fa516cd08ad2a855a2a8 
	 
 +csv                   3.3.5     https://github.com/ruby/csv 69d9886238a504bfac60fa516cd08ad2a855a2a8 
	  
  repl_type_completor 0.1.11    https://github.com/ruby/repl_type_completor 25108aa8d69ddaba0b5da3feff1c0035371524b2 
	  
  ostruct               0.6.1     https://github.com/ruby/ostruct 50d51248bec5560a102a1024aff4174b31dca8cc 
	  
  pstore                0.2.0     https://github.com/ruby/pstore 
	 
 ``` 


 2. Sometime ago, one could cache the *.gem files, and they would not be downloaded.    Now, regardless of the cache, they are always downloaded.

Back