Skip to content

Commit 15731f0

Browse files
author
cainlevy
committedMar 8, 2007
added uninstall.rb ... don't know why anyone would uninstall activescaffold though
git-svn-id: http://activescaffold.googlecode.com/svn/trunk@91 561dde7e-7729-0410-be8e-ef83869d6c7d
1 parent 6563e38 commit 15731f0

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed
 

‎CHANGELOG

-7
This file was deleted.

‎uninstall.rb

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
##
2+
## Delete public asset files
3+
##
4+
5+
require 'fileutils'
6+
7+
directory = File.dirname(__FILE__)
8+
9+
[ :stylesheets, :javascripts, :images].each do |asset_type|
10+
path = File.join(directory, "../../../public/#{asset_type}/active_scaffold")
11+
FileUtils.rm_r(path)
12+
end

0 commit comments

Comments
 (0)
Please sign in to comment.