Sha256: 3f3665a67fa234003577a35d8bc52124e78c449b8fdafd8edf4151b82b8310c7
Contents?: true
Size: 359 Bytes
Versions: 3
Compression:
Stored size: 359 Bytes
Contents
# frozen_string_literal: true require 'skippy/namespace' class Debug < Skippy::Command include Thor::Actions desc 'clean', 'Cleans out project files' def clean say 'Cleaning out project files...' remove_file Skippy::Project::PROJECT_FILENAME remove_dir 'src' remove_dir 'skippy' remove_dir '.skippy' end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
skippy-0.5.2.a | app/commands/debug.rb |
skippy-0.5.1.a | app/commands/debug.rb |
skippy-0.5.0.a | app/commands/debug.rb |