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

added Message#kind as alias for #type

+2
+1
lib/skyfall/firehose/message.rb
··· 45 45 attr_reader :seq 46 46 47 47 alias repo did 48 + alias kind type 48 49 49 50 # First of the two CBOR objects forming the message payload, which mostly just includes the type field. 50 51 # @api private
+1
lib/skyfall/jetstream/message.rb
··· 41 41 42 42 alias repo did 43 43 alias seq time_us 44 + alias kind type 44 45 45 46 # The raw JSON of the message as parsed from the websocket packet. 46 47 attr_reader :json