Я хотел бы подписаться на изменения в документе firestore в ruby, используя Firestore API для Ruby
Я могу получить ссылку на документ и данные, используя следующий код, но не уверенкак подписаться на изменения
# Firestore API
firestore = Google::Cloud::Firestore.new(project_id: 'project_id', credentials: './google-cloud-key.json')
# Get a reference to a document
ref = firestore.collection('collection_name').doc('id')
# Get the actual data in the document
snapshot = ref.get
data = snapshot.exists? ? snapshot.data : nil
# From this point on, how can I subscribe to changes in the document?