Sha256: 3242a369caeb07e23f1e090bf6b1071132743af0d4a09facbc4145b5a2057ed2
Contents?: true
Size: 838 Bytes
Versions: 1
Compression:
Stored size: 838 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 #{pluralize(i, 'item')}." end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
auto_html-1.5.0 | lib/auto_html/rake_tasks.rb |