sqlpkg 0.2.2-arm64-linux → 0.2.3.1-arm64-linux
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/exe/arm64-linux/sqlpkg +0 -0
 - data/exe/sqlpkg +1 -1
 - data/lib/sqlpkg/generators/sqlpkg/install_generator.rb +2 -0
 - data/lib/sqlpkg/upstream.rb +1 -1
 - data/lib/sqlpkg/version.rb +1 -1
 - 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: 589808b16afc5d231e22371f9cb0f81468eb750adcc0687e091d5335648a9a59
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 3e7586ef47d2a011f0e37ca55571a9728932618b64f0504867e70d37acd99189
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: eef53cc638e4d8d5b206ca91b260570304079f836d9099e18a6e1ccf9dad7ba2040f17e943e587968d4410caa294b068f5c7aac49e387f422460c670ef27988e
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 391fd59ccd4efbea2a70b00a4b63324c327ef20fe83d1f83204174ed022e2fb2f5e0ed1a5fe692809bf2c39f93d44c1e391164eea6517c4431dc963e8405f275
         
     | 
    
        data/exe/arm64-linux/sqlpkg
    CHANGED
    
    | 
         Binary file 
     | 
    
        data/exe/sqlpkg
    CHANGED
    
    | 
         @@ -5,7 +5,7 @@ require "sqlpkg/commands" 
     | 
|
| 
       5 
5 
     | 
    
         | 
| 
       6 
6 
     | 
    
         
             
            begin
         
     | 
| 
       7 
7 
     | 
    
         
             
              command = [Sqlpkg::Commands.executable, *ARGV]
         
     | 
| 
       8 
     | 
    
         
            -
              puts command.inspect
         
     | 
| 
      
 8 
     | 
    
         
            +
              puts command.inspect if ENV["DEBUG"]
         
     | 
| 
       9 
9 
     | 
    
         
             
              exec(*command)
         
     | 
| 
       10 
10 
     | 
    
         
             
            rescue Sqlpkg::Commands::UnsupportedPlatformException, Sqlpkg::Commands::ExecutableNotFoundException => e
         
     | 
| 
       11 
11 
     | 
    
         
             
              warn("ERROR: " + e.message)
         
     | 
    
        data/lib/sqlpkg/upstream.rb
    CHANGED
    
    
    
        data/lib/sqlpkg/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: sqlpkg
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0.2. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.2.3.1
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: arm64-linux
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Stephen Margheim
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire:
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: exe
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date:  
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2024-05-05 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: rubyzip
         
     |