Skip to content

Commit

Permalink
rename, test autodeploy
Browse files Browse the repository at this point in the history
  • Loading branch information
afred committed Aug 29, 2024
1 parent 1b8b0ac commit f47e3b9
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
class ChangeSoundToMovingImage
class ChangeInstantiationMediaType
attr_reader :aapb_ids_filename, :aapb_ids, :errors
def initialize(aapb_ids_filename=DEFAULT_AAPB_IDS_FILENAME)
@aapb_ids_filename = "#{File.dirname(File.expand_path(__FILE__))}/asset_resource_ids.txt"
Expand All @@ -22,9 +22,13 @@ def asset_resources
[ aapb_id, asset_resource ]
end.to_h
end

def run!
puts "Running Hotfix #{self.class.name} ..."
end
end

if __FILE__ == $0
cstm = ChangeSoundToMovingImage.new
puts "cstm.asset_resources: #{cstm.asset_resources}"
change_instantiation_media_type = ChangeInstantiationMediaType.new
puts "change_instantiation_media_type.asset_resources: #{change_instantiation_media_type.asset_resources}"
end

0 comments on commit f47e3b9

Please sign in to comment.