method

fallback_timeout=

ruby latest stable - Class: Bundler::Settings::Mirror

Method not available on this version

This method is only available on newer versions. The first available version (v2_6_3) is shown here.

fallback_timeout=(timeout)
public

No documentation available.

# File lib/bundler/mirror.rb, line 82
      def fallback_timeout=(timeout)
        case timeout
        when true, "true"
          @fallback_timeout = DEFAULT_FALLBACK_TIMEOUT
        when false, "false"
          @fallback_timeout = 0
        else
          @fallback_timeout = timeout.to_i
        end
        @valid = nil
      end