Class: Switchboard::Commands::PubSub::Delete

Inherits:
Switchboard::Command show all
Defined in:
lib/switchboard/commands/pubsub/delete.rb

Class Method Summary collapse

Methods inherited from Switchboard::Command

description, help, options, to_command, to_command_name

Class Method Details

.run!Object



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/switchboard/commands/pubsub/delete.rb', line 7

def self.run!
  switchboard = Switchboard::Client.new do
    defer :node_deleted do
      delete_node(OPTIONS["pubsub.node"])
    end

    def node_deleted(success)
      if success
        puts "Node '#{OPTIONS["pubsub.node"]}' was deleted."
      else
        puts "Node '#{OPTIONS["pubsub.node"]}' could not be deleted."
      end
    end
  end

  if defined?(OAuth) && OPTIONS["oauth"]
    switchboard.plug!(OAuthPubSubJack)
  else
    switchboard.plug!(PubSubJack)
  end
  switchboard.run!
end