fileutils 1.7.1 → 1.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/Rakefile +0 -7
 - data/lib/fileutils.rb +2 -2
 - metadata +2 -2
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: b1fc5cc4e9c43e86752aa8b1817f71e48bcfa3a3c9399146b3d6ae396653e13b
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 2711f1c7b5370a616e62f9804d3c451df178b70e7542b4f594dc3534bd8f57d3
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: a5e8e17e48ba7d200a36fe1cb66a1b1da7024a16ffb5c9ff7fafa9199a22ff93d3d13964453ac4e3533ac89598fdbd4ce53422dcf1e2037789d5cb0a39e51c7b
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: c6857a62beafa5d557e48cdc29d4815183c2a13a7a267ff4a53f5858c273a813761321788d904245dcb0579fa4a43db002b65f447f96d0e97588b1ca99758847
         
     | 
    
        data/Rakefile
    CHANGED
    
    | 
         @@ -7,11 +7,4 @@ Rake::TestTask.new(:test) do |t| 
     | 
|
| 
       7 
7 
     | 
    
         
             
              t.test_files = FileList["test/**/test_*.rb"]
         
     | 
| 
       8 
8 
     | 
    
         
             
            end
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
       10 
     | 
    
         
            -
            task :sync_tool do
         
     | 
| 
       11 
     | 
    
         
            -
              require 'fileutils'
         
     | 
| 
       12 
     | 
    
         
            -
              FileUtils.cp "../ruby/tool/lib/core_assertions.rb", "./test/lib"
         
     | 
| 
       13 
     | 
    
         
            -
              FileUtils.cp "../ruby/tool/lib/envutil.rb", "./test/lib"
         
     | 
| 
       14 
     | 
    
         
            -
              FileUtils.cp "../ruby/tool/lib/find_executable.rb", "./test/lib"
         
     | 
| 
       15 
     | 
    
         
            -
            end
         
     | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
       17 
10 
     | 
    
         
             
            task :default => :test
         
     | 
    
        data/lib/fileutils.rb
    CHANGED
    
    | 
         @@ -3,7 +3,7 @@ 
     | 
|
| 
       3 
3 
     | 
    
         
             
            begin
         
     | 
| 
       4 
4 
     | 
    
         
             
              require 'rbconfig'
         
     | 
| 
       5 
5 
     | 
    
         
             
            rescue LoadError
         
     | 
| 
       6 
     | 
    
         
            -
              # for make  
     | 
| 
      
 6 
     | 
    
         
            +
              # for make rjit-headers
         
     | 
| 
       7 
7 
     | 
    
         
             
            end
         
     | 
| 
       8 
8 
     | 
    
         | 
| 
       9 
9 
     | 
    
         
             
            # Namespace for file utility methods for copying, moving, removing, etc.
         
     | 
| 
         @@ -180,7 +180,7 @@ end 
     | 
|
| 
       180 
180 
     | 
    
         
             
            # - {CVE-2004-0452}[https://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2004-0452].
         
     | 
| 
       181 
181 
     | 
    
         
             
            #
         
     | 
| 
       182 
182 
     | 
    
         
             
            module FileUtils
         
     | 
| 
       183 
     | 
    
         
            -
              VERSION = "1.7. 
     | 
| 
      
 183 
     | 
    
         
            +
              VERSION = "1.7.2"
         
     | 
| 
       184 
184 
     | 
    
         | 
| 
       185 
185 
     | 
    
         
             
              def self.private_module_function(name)   #:nodoc:
         
     | 
| 
       186 
186 
     | 
    
         
             
                module_function name
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: fileutils
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 1.7. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.7.2
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Minero Aoki
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire:
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2023- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2023-11-07 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies: []
         
     | 
| 
       13 
13 
     | 
    
         
             
            description: Several file utility methods for copying, moving, removing, etc.
         
     | 
| 
       14 
14 
     | 
    
         
             
            email:
         
     |