Sha256: 238c72cab5187d637c7486f93e2d2839019319fc2bf0b60a1b119736907eaecb

Contents?: true

Size: 954 Bytes

Versions: 2

Compression:

Stored size: 954 Bytes

Contents

namespace :spree_compare_products do
  desc 'Copies all migrations and assets (NOTE: This will be obsolete with Rails 3.1)'
  task :install do
    Rake::Task['spree_compare_products:install:migrations'].invoke
    Rake::Task['spree_compare_products:install:assets'].invoke
  end
  
  namespace :install do
    desc 'Copies all migrations (NOTE: This will be obsolete with Rails 3.1)'
    task :migrations do
      source = File.join(File.dirname(__FILE__), '..', '..', 'db')
      destination = File.join(Rails.root, 'db')
      Spree::FileUtilz.mirror_files(source, destination)
    end
    
    desc 'Copies all assets (NOTE: This will be obsolete with Rails 3.1)'
    task :assets do
      source = File.join(File.dirname(__FILE__), '..', '..', 'public')
      destination = File.join(Rails.root, 'public')
      puts "INFO: Mirroring assets from #{source} to #{destination}"
      Spree::FileUtilz.mirror_files(source, destination)
    end
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
spree_compare_products-0.50.0 lib/tasks/install.rake
spree_compare_products-0.40.90 lib/tasks/install.rake