Restforce v1.0.4 Release Notes

Release Date: 2013-01-08 // about 11 years ago
    • 🖨 Restforce::Client#inspect now only prints out the options and not the Faraday connection.

    • 🔧 The Faraday adapter is now configurabled:

      Example:

      Restforce.configure do |config|
        config.adapter = :excon
      end
      
    • 🔧 The http connection read/open timeout is now configurabled.

      Example:

      Restforce.configure do |config|
        config.timeout = 300
      end