Method: Rhohub::App.delete

Defined in:
lib/build/rhohub/app.rb

.delete(options) ⇒ Object

options = => app_id



11
12
13
14
15
16
# File 'lib/build/rhohub/app.rb', line 11

def self.delete(options)
  catch_all do
    raise Exception.new "app_id must be passed to show ex: {:app_id => app_id}" unless options[:app_id]
    super(options,"apps")
  end
end