class BetweenMeals::Repo::Svn::Cmd
Public Instance Methods
Source
# File lib/between_meals/repo/svn/cmd.rb, line 46 def cleanup(repo_path) cmd("cleanup #{repo_path}") end
Source
# File lib/between_meals/repo/svn/cmd.rb, line 34 def co(url, repo_path) cmd("co --ignore-externals #{url} #{repo_path}") end
Source
# File lib/between_meals/repo/svn/cmd.rb, line 22 def diff(start_ref, end_ref, repo_path) cmd("diff -r #{start_ref}:#{end_ref} --summarize #{repo_path}") end
Source
# File lib/between_meals/repo/svn/cmd.rb, line 26 def info(repo_path) cmd("info #{repo_path}") end
Source
# File lib/between_meals/repo/svn/cmd.rb, line 30 def info_r(ref, repo_path) cmd("info -r #{ref} #{repo_path}") end
Source
# File lib/between_meals/repo/svn/cmd.rb, line 50 def ls(repo_path) cmd("ls --depth infinity #{repo_path}") end
Source
# File lib/between_meals/repo/svn/cmd.rb, line 38 def revert(repo_path) cmd("revert -R #{repo_path}") end
Source
# File lib/between_meals/repo/svn/cmd.rb, line 42 def update(repo_path) cmd("update #{repo_path}") end