Skip to content

Instantly share code, notes, and snippets.

@Jesterovskiy
Last active April 14, 2017 12:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Jesterovskiy/f720ff4012153323a22321863aded0df to your computer and use it in GitHub Desktop.
Save Jesterovskiy/f720ff4012153323a22321863aded0df to your computer and use it in GitHub Desktop.
Uplynk Sync Job
class UplynkSynchronizeJob
def self.process_asset
puts 'Hello1'
create_video
puts 'Hello3'
end
end
module ComplexNetworks
class UplynkSynchronizeJob < ::UplynkSynchronizeJob
def self.create_video
puts 'Hello2'
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment