Sha256: 5c2ab933077e7e13dbde97e1c87933221948379c1f99b49ffdeb43a74acfca22

Contents?: true

Size: 326 Bytes

Versions: 6

Compression:

Stored size: 326 Bytes

Contents

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

6 entries across 6 versions & 1 rubygems

Version Path
skippy-0.4.3.a app/commands/debug.rb
skippy-0.4.2.a app/commands/debug.rb
skippy-0.4.1.a app/commands/debug.rb
skippy-0.4.0.a app/commands/debug.rb
skippy-0.3.0.a app/commands/debug.rb
skippy-0.2.0.a app/commands/debug.rb