class MetaModel::Command::Clean

Public Class Methods

new(argv) click to toggle source
Calls superclass method MetaModel::Command::new
# File lib/metamodel/command/clean.rb, line 13
def initialize(argv)
  super
end

Public Instance Methods

run() click to toggle source
# File lib/metamodel/command/clean.rb, line 17
def run
  UI.section "Removing MetaModel project" do
    FileUtils.rm_rf 'MetaModel'
    FileUtils.rm_rf 'MetaModel.framework'
    UI.message "Already clean up the whole MetaModel project from current folder"
  end
end