Renamed helpers to correspond to renamed Controller classes.
[merb_radiant.git] / lib / generators / extension / templates / .svn / text-base / tasks.rake.svn-base
blob8e9810cd95e402e2d047e33331e081e2c2a78f01
1 namespace :radiant do
2   namespace :extensions do
3     namespace :<%= file_name %> do
4       
5       desc "Runs the migration of the <%= extension_name %> extension"
6       task :migrate => :environment do
7         require 'radiant/extension_migrator'
8         if ENV["VERSION"]
9           <%= class_name %>.migrator.migrate(ENV["VERSION"].to_i)
10         else
11           <%= class_name %>.migrator.migrate
12         end
13       end
14       
15       desc "Copies public assets of the <%= extension_name %> to the instance public/ directory."
16       task :update => :environment do
17         is_svn_or_dir = proc {|path| path =~ /\.svn/ || File.directory?(path) }
18         Dir[<%= class_name %>.root + "/public/**/*"].reject(&is_svn_or_dir).each do |file|
19           path = file.sub(<%= class_name %>.root, '')
20           directory = File.dirname(path)
21           puts "Copying #{path}..."
22           mkdir_p RAILS_ROOT + directory
23           cp file, RAILS_ROOT + path
24         end
25       end  
26     end
27   end
28 end