Skip to content

Instantly share code, notes, and snippets.

@tatey
Created July 21, 2013 02:30
Show Gist options
  • Save tatey/6047251 to your computer and use it in GitHub Desktop.
Save tatey/6047251 to your computer and use it in GitHub Desktop.
class RunOperationJob
def initialize branch
@branch = branch
end
def perform
unless branch.any_executing_operations?
branch.run_oldest_queued_operation
end
end
private
attr_reader :operation
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment