update documentation for naming consistency

This commit is contained in:
Jason Buckner
2012-11-24 22:56:17 -08:00
committed by thilko
parent 0a022fddcc
commit 5e9d134021
2 changed files with 5 additions and 5 deletions

View File

@@ -65,7 +65,7 @@ class Homesick < Thor
end
end
desc "pull NAME", "Update the specified castle"
desc "pull CASTLE", "Update the specified castle"
method_option :all, :type => :boolean, :default => false, :required => false, :desc => "Update all cloned castles"
def pull(name="")
if options[:all]
@@ -79,13 +79,13 @@ class Homesick < Thor
end
desc "push NAME", "Push the specified castle"
desc "push CASTLE", "Push the specified castle"
def push(name)
push_castle name
end
desc "symlink NAME", "Symlinks all dotfiles from the specified castle"
desc "symlink CASTLE", "Symlinks all dotfiles from the specified castle"
method_option :force, :default => false, :desc => "Overwrite existing conflicting symlinks without prompting."
def symlink(name)
check_castle_existance(name, "symlink")