Method: Snip::Command::Remove#execute
- Defined in:
- lib/snip/command/remove.rb
#execute ⇒ Object
11 12 13 14 15 16 17 |
# File 'lib/snip/command/remove.rb', line 11 def execute name = @args raise NotInitializedError unless Snip::initialized? raise SnippetNotFoundError unless Snip::snippet_exists?(name) FileUtils.rm(File.join(Snip::INSTALL_DIR, name)) if Snip::snippet_exists?(name) end |