Sha256: 9c74058af5db9a10e361b126a2776c5a15c92d2bfb7081b0ba52c83e75fb4cf1

Contents?: true

Size: 300 Bytes

Versions: 2

Compression:

Stored size: 300 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'
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
skippy-0.1.1.a app/commands/debug.rb
skippy-0.1.0.a app/commands/debug.rb