lib/hackpad/cli/runner.rb in hackpad-cli-0.0.6 vs lib/hackpad/cli/runner.rb in hackpad-cli-0.0.7

- old
+ new

@@ -45,9 +45,14 @@ desc "list", "Lists available pads." def list Hackpad::Cli::Client.new(options).list end + desc "check", "Checks differences between local cache and remote list." + def check + Hackpad::Cli::Client.new(options).check + end + desc "info [pad_id]", "gets info for the pad <pad_id>." def info(pad) Hackpad::Cli::Client.new(options).info pad end