Class: CarrierWave::Workers::ProcessAsset
- Inherits:
-
Struct
- Object
- Struct
- CarrierWave::Workers::ProcessAsset
- Includes:
- Sidekiq::Worker
- Defined in:
- lib/backgrounder/workers/process_asset.rb
Instance Attribute Summary collapse
-
#column ⇒ Object
Returns the value of attribute column.
-
#id ⇒ Object
Returns the value of attribute id.
-
#klass ⇒ Object
Returns the value of attribute klass.
Class Method Summary collapse
Instance Method Summary collapse
Instance Attribute Details
#column ⇒ Object
Returns the value of attribute column
5 6 7 |
# File 'lib/backgrounder/workers/process_asset.rb', line 5 def column @column end |
#id ⇒ Object
Returns the value of attribute id
5 6 7 |
# File 'lib/backgrounder/workers/process_asset.rb', line 5 def id @id end |
#klass ⇒ Object
Returns the value of attribute klass
5 6 7 |
# File 'lib/backgrounder/workers/process_asset.rb', line 5 def klass @klass end |
Class Method Details
.perform(*args) ⇒ Object
9 10 11 |
# File 'lib/backgrounder/workers/process_asset.rb', line 9 def self.perform(*args) new(*args).perform end |
Instance Method Details
#perform(*args) ⇒ Object
13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/backgrounder/workers/process_asset.rb', line 13 def perform(*args) set_args(*args) unless args.empty? resource = klass.is_a?(String) ? klass.constantize : klass record = resource.find id if record record.send(:"process_#{column}_upload=", true) if record.send(:"#{column}").recreate_versions! && record.respond_to?(:"#{column}_processing") record.send :"#{column}_processing=", nil record.save! end end end |
#set_args(klass, id, column) ⇒ Object
27 28 29 |
# File 'lib/backgrounder/workers/process_asset.rb', line 27 def set_args(klass, id, column) self.klass, self.id, self.column = klass, id, column end |