Sha256: 842c25218cedf97278842bbd7872148436c36ea880c61deb20f6eb1a695a63d1
Contents?: true
Size: 825 Bytes
Versions: 4
Compression:
Stored size: 825 Bytes
Contents
require 'auto_html/task' # Rake task for rebuilding cached in DB auto_html columns values # Usage: rake auto_html:rebuild CLASS=[your model] # Where [your model] is the name of model which contains auto_html_for columns namespace :auto_html do desc "Rebuild auto_html columns" task :rebuild => :environment do klass = AutoHtml::Task.obtain_class.constantize i = 0 auto_html_fields = [] klass.find_each do |item| unless auto_html_fields.any? auto_html_methods = item.methods.select { |m| m=~/^auto_html_prepare_/ } auto_html_methods.each do |method| auto_html_fields << method end end auto_html_fields.each do |field| item.send(field) end item.save i += 1 end puts "Done! Processed #{i} items." end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
auto_html-1.5.1.1 | lib/auto_html/rake_tasks.rb |
auto_html-1.5.3 | lib/auto_html/rake_tasks.rb |
auto_html-1.5.2 | lib/auto_html/rake_tasks.rb |
auto_html-1.5.1 | lib/auto_html/rake_tasks.rb |