Sha256: 8d9e3f0330732f9fe913062540328972067ce6f533d5ef02586a4df5eb91f1bf
Contents?: true
Size: 1.88 KB
Versions: 8
Compression:
Stored size: 1.88 KB
Contents
require "colorize" namespace :card do namespace :seed do desc "regenerate seed fixtures quickly from current fixtures. " \ "create and update only (no delete)" task update: %i[replant polish dump] # desc "replant, polish, and dump seed. " \ # "Good when mods/assets have changed but pods haven't." # # note: this will not delete anything; it just eats new stuff. # task modify: %i[replant polish dump] desc "Truncates tables of each database for current environment and loads the seeds" \ "(alias for db:seed:replant)" task replant: ["db:seed:replant"] # desc "finalize seed data with migrations, installations, asset coding, and cleaning" task polish: :environment do ENV["STAMP_MIGRATIONS"] = "true" invoke_card_tasks %w[update assets:code] invoke_card_task "seed:clean" unless Rails.env.test? # It's important NOT to clean the test data and lose history, creator info, etc. end # desc "remove unneeded cards, acts, actions, changes, and references" task clean: :environment do Cardio::Seed.clean Cardio::Utils.empty_trash Card::Cache.reset_all end # desc "dump db to fixtures" task dump: :environment do Card::Cache.reset_all Cardio::Seed.dump end desc "completely regenerate seed fixtures starting with dependee seed fixtures" task build: %i[plow polish dump] # desc "reseed from the fixtures of the dependee seed mod" task plow: :environment do ENV["CARD_UPDATE_SEED"] = "true" # tells Cardio::Seed to use fixtures upon which the seeds being updated depend invoke_card_tasks %w[reset_tmp seed:replant] end def invoke_card_tasks tasks tasks.each { |task| invoke_card_task task } end def invoke_card_task task puts "invoking: #{task}".green Rake::Task["card:#{task}"].invoke end end end
Version data entries
8 entries across 8 versions & 1 rubygems