Rake Task for Setting up TextMate Project 1
desc "Creates a TextMate project."
task :mate do
puts "Creating TextMate project..."
system("cd #{RAILS_ROOT} && mate INSTALL README Rakefile app config db/migrate doc lib public script test vendor")
endrake mate
Trackbacks
Use the following link to trackback from your own site:
http://www.johnwulff.com/trackbacks?article_id=22
Comments
-
I accomplish the same thing through aliases... alias mt="mate ....files...." Same reason, project files are a pain!