class NotifyPush::CLI


CLASS->CLI (THOR) —————————-


Public Instance Methods

install(component) click to toggle source
# File lib/notify-push/cli.rb, line 92
def install(component)
  puts "installing..."
end
receive() click to toggle source
# File lib/notify-push/cli.rb, line 70
def receive()
  NotifyPush.main :receive
end
send(message, title="notify-push") click to toggle source
# File lib/notify-push/cli.rb, line 80
def send(message, title="notify-push")

  # FIX: Use these arguments instead of ARGV
  NotifyPush.main :send
end
uninstall(component) click to toggle source
# File lib/notify-push/cli.rb, line 100
def uninstall(component)
  puts "uninstalling..."
end
version() click to toggle source
# File lib/notify-push/cli.rb, line 58
def version()
  puts ::NotifyPush::VERSION
end