class YARD::Serializers::YardocSerializer

def lock_for_writing

Other tags:
    See: #locked_for_writing? -
def lock_for_writing
  File.open!(processing_path, 'w') {}
  yield
ensure
  File.unlink(processing_path) if File.exist?(processing_path)
end