Sha256: 3a54c5ae79a17d583f9fd90e2c9fd161bce69986e3aef20b2acdfc1a5c9702d0
Contents?: true
Size: 679 Bytes
Versions: 23
Compression:
Stored size: 679 Bytes
Contents
namespace :spree_api do desc "Copies all migrations and assets (NOTE: This will be obsolete with Rails 3.1)" task :install do Rake::Task['spree_api:install:migrations'].invoke Rake::Task['spree_api: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 # No assets end end end
Version data entries
23 entries across 23 versions & 5 rubygems