Method: Repositories#save

Defined in:
lib/commands/plugin.rb

#saveObject



342
343
344
345
346
347
348
349
# File 'lib/commands/plugin.rb', line 342

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