Ruby gem for ingesting ATProto repo data from a Tap service (extension of Skyfall gem)
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

let's do some premature optimization here

+1 -1
+1 -1
lib/tapfall/stream.rb
··· 31 31 end 32 32 33 33 def send_ack(msg) 34 - json = JSON.generate(type: 'ack', id: msg.id) 34 + json = %({"type":"ack","id":#{msg.id}}) 35 35 send_data(json) 36 36 end 37 37