Method: Codebot::Options::Integration#destroy
- Defined in:
- lib/codebot/options/integration.rb
#destroy(name) ⇒ Object
Destroys the integration with the specified name.
63 64 65 66 67 |
# File 'lib/codebot/options/integration.rb', line 63 def destroy(name) Options.with_core(, true) do |core| IntegrationManager.new(core.config).destroy(name, ) end end |