-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Size tweak, task (+ Capistrano) to reprocess all photos
[skip ci]
- Loading branch information
1 parent
cbca6d4
commit d0acea7
Showing
3 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# frozen_string_literal: true | ||
|
||
namespace :photos do | ||
task :reprocess do | ||
on roles(:app) do | ||
within current_path.to_s do | ||
with rails_env: fetch(:stage).to_s do | ||
execute :rake, 'photos:reprocess' | ||
end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# frozen_string_literal: true | ||
|
||
namespace :photos do | ||
desc 'Reprocess all photos' | ||
task reprocess: :environment do | ||
Photo.find_each do |photo| | ||
photo.update(image: photo.image[:original]) | ||
end | ||
end | ||
end |