forest_admin_rpc_agent 1.13.0 → 1.13.1
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/bin/forest_admin_rpc_agent +8 -20
 - data/lib/forest_admin_rpc_agent/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: 89fc9c7c92447f12f1d4396c5e28a5c9a29de0f77238a939571a01bf929f0015
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 13179e6d72eba67b24d216bda40674da184e64fba9e8323eb6a21e2041007267
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: ac40b4f680c2264a91613a01af958d43d27d1e0ada443f88a73e4de7a7ad7e03e17bf8af27d36a7b0dc00e570fda0151608618bb2cbe0df682a85f7808cfc58f
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: ffb59e929fb895829e6f1006280944911ab6872cf42f02015b62b5b1b493a02bdea8886e9fb7145ca070202e3681bfb4b13ba3d2558b446d9574721305ac964f
         
     | 
    
        data/bin/forest_admin_rpc_agent
    CHANGED
    
    | 
         @@ -1,27 +1,15 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            #!/usr/bin/env ruby
         
     | 
| 
       2 
2 
     | 
    
         
             
            # frozen_string_literal: true
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
             
     | 
| 
       5 
     | 
    
         
            -
            # This file was generated by Bundler.
         
     | 
| 
       6 
     | 
    
         
            -
            #
         
     | 
| 
       7 
     | 
    
         
            -
            # The application 'forest_admin_rpc_agent' is installed as part of a gem, and
         
     | 
| 
       8 
     | 
    
         
            -
            # this file is here to facilitate running it.
         
     | 
| 
       9 
     | 
    
         
            -
            #
         
     | 
| 
       10 
     | 
    
         
            -
             
     | 
| 
       11 
     | 
    
         
            -
            ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile-test", __dir__)
         
     | 
| 
       12 
     | 
    
         
            -
             
     | 
| 
       13 
     | 
    
         
            -
            bundle_binstub = File.expand_path("bundle", __dir__)
         
     | 
| 
      
 4 
     | 
    
         
            +
            require "rubygems"
         
     | 
| 
       14 
5 
     | 
    
         | 
| 
       15 
     | 
    
         
            -
            if  
     | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
       17 
     | 
    
         
            -
             
     | 
| 
       18 
     | 
    
         
            -
             
     | 
| 
       19 
     | 
    
         
            -
             
     | 
| 
       20 
     | 
    
         
            -
            Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
         
     | 
| 
       21 
     | 
    
         
            -
              end
         
     | 
| 
      
 6 
     | 
    
         
            +
            # Try to use bundler/setup if we're in a Bundler context (development or app with Gemfile)
         
     | 
| 
      
 7 
     | 
    
         
            +
            begin
         
     | 
| 
      
 8 
     | 
    
         
            +
              require "bundler/setup"
         
     | 
| 
      
 9 
     | 
    
         
            +
            rescue LoadError
         
     | 
| 
      
 10 
     | 
    
         
            +
              # No bundler available, continue with global gems
         
     | 
| 
       22 
11 
     | 
    
         
             
            end
         
     | 
| 
       23 
12 
     | 
    
         | 
| 
       24 
     | 
    
         
            -
             
     | 
| 
       25 
     | 
    
         
            -
            require "bundler/setup"
         
     | 
| 
      
 13 
     | 
    
         
            +
            require_relative '../lib/forest_admin_rpc_agent/thor/install'
         
     | 
| 
       26 
14 
     | 
    
         | 
| 
       27 
     | 
    
         
            -
             
     | 
| 
      
 15 
     | 
    
         
            +
            ForestAdminRpcAgent::Thor::Install.start(ARGV)
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: forest_admin_rpc_agent
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 1.13. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.13.1
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Matthieu
         
     | 
| 
         @@ -9,7 +9,7 @@ authors: 
     | 
|
| 
       9 
9 
     | 
    
         
             
            autorequire:
         
     | 
| 
       10 
10 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       11 
11 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       12 
     | 
    
         
            -
            date: 2025- 
     | 
| 
      
 12 
     | 
    
         
            +
            date: 2025-11-03 00:00:00.000000000 Z
         
     | 
| 
       13 
13 
     | 
    
         
             
            dependencies:
         
     | 
| 
       14 
14 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       15 
15 
     | 
    
         
             
              name: base64
         
     |