Method: VimMate::Subversion#move

Defined in:
lib/vimmatelib/subversion.rb

#move(path, new_path) ⇒ Object

Move the specified file (full path) to a new file name



131
132
133
134
135
136
137
138
# File 'lib/vimmatelib/subversion.rb', line 131

def move(path, new_path)
  cleanup(path)
  new_client.move(path, new_path)
rescue
  false
else
  true
end