Method: Repositories#save

Defined in:
lib/commands/plugin.rb

#saveObject



320
321
322
323
324
325
326
327
# File 'lib/commands/plugin.rb', line 320

def save
  File.open(@cache_file, 'w') do |f|
    each do |repo|
      f.write(repo.uri)
      f.write("\n")
    end
  end
end