Flowdock
method

write_cache

Importance_0
v1_9_1_378 - Show latest stable - 0 notes - Class: Driver
write_cache(cache, path) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rdoc/ri/driver.rb, line 659
  def write_cache(cache, path)
    if(@use_cache)
      File.open path, "wb" do |cache_file|
        Marshal.dump cache, cache_file
      end
    end

    cache
  end
Register or log in to add new notes.