46 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # Add your own tasks in files placed in lib/tasks ending in .rake,
 | |
| # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
 | |
| 
 | |
| require File.expand_path('../config/application', __FILE__)
 | |
| 
 | |
| BikeBike::Application.load_tasks
 | |
| 
 | |
| task regenerate_images: :environment do
 | |
|   {
 | |
|     conference: [ :cover, :poster ],
 | |
|     organization: [ :logo, :avatar, :cover ]
 | |
|   }.each do | model_class, attributes |
 | |
|     Object.const_get(model_class.to_s.titlecase).all.each do | model |
 | |
|       attributes.each do | attribute |
 | |
|         uploader = model.send(attribute)
 | |
|         if uploader.present?
 | |
|           puts "Regenerating #{model_class}.#{attribute} = #{uploader.url}"
 | |
|           uploader.recreate_versions!
 | |
|         end
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| end
 | |
| 
 | |
| task update_cities: :environment do
 | |
|   Location.all.each do |l|
 | |
|     city = City.search(([l.city, l.territory, l.country] - [nil, '']).join(', '))
 | |
|     l.city_id = city.id
 | |
|     l.save!
 | |
|   end
 | |
| 
 | |
|   City.all.each do |c|
 | |
|     location = Geocoder.search(c.address, language: 'en').first
 | |
|     c.place_id = location.data['place_id']
 | |
|     c.save!
 | |
|   end
 | |
| end
 | |
| 
 | |
| task update_cities_es: :environment do
 | |
|   City.all.each do |c|
 | |
|     city = c.get_translation(:es)
 | |
|     c.set_column_for_locale(:city, :es, city, 0) unless city.blank? || city == c.get_column_for_locale(:city, :es)
 | |
|     c.save!
 | |
|   end
 | |
| end
 |