A Ruby gem for streaming data from the Bluesky/ATProto firehose

added note about deprecation of #tombstone and #handle

+10
+5
lib/skyfall/messages/handle_message.rb
··· 1 1 module Skyfall 2 + 3 + # 4 + # Note: this event type is deprecated and will stop being emitted at some point. 5 + # You should instead listen for 'identity' events (Skyfall::IdentityMessage). 6 + # 2 7 class HandleMessage < WebsocketMessage 3 8 def handle 4 9 @data_object['handle']
+5
lib/skyfall/messages/tombstone_message.rb
··· 1 1 module Skyfall 2 + 3 + # 4 + # Note: this event type is deprecated and will stop being emitted at some point. 5 + # You should instead listen for 'account' events (Skyfall::AccountMessage). 6 + # 2 7 class TombstoneMessage < WebsocketMessage 3 8 end 4 9 end