require File.dirname(__FILE__) + '/../lib/power_tools/rake' namespace :webb_power_tools do include PowerTools::Rake desc "Install default plugins" task :install_plugins do install_plugin 'attachment_fu' install_plugin 'http://svn.danwebb.net/external/rails/plugins/slugjitsu' install_plugin 'http://svn.danwebb.net/external/rails/plugins/enhanced_form_builder' install_plugin 'http://svn.danwebb.net/external/rails/plugins/minus_r' install_plugin 'annotate_models' install_plugin 'exception_notification' end desc "Install plugins for international time" task :install_time_plugins do install_plugin 'tzinfo_timezone' install_plugin 'local_time' end desc "Install plugins for money and pricing" task :install_money_plugins do install_plugin 'acts_as_money' install_plugin 'active_merchant' end desc "Get Low Pro" task :lowpro do export_from_svn 'http://svn.danwebb.net/external/lowpro/trunk/dist/lowpro.js', 'public/javascripts/' end desc "Clean up default rails files ready for SVN" task :ready_for_svn do end end