···3939 alias did repo
40404141 # @return [String] path part of the record URI (collection + rkey)
4242+ # @deprecated Use {#collection} + {#rkey}
4243 def path
4444+ @@path_warning_printed ||= false
4545+4646+ unless @@path_warning_printed
4747+ $stderr.puts "Warning: Skyfall::Firehose::Operation#path is deprecated - use #collection + #rkey"
4848+ @@path_warning_printed = true
4949+ end
5050+4351 @json['path']
4452 end
4553
+8
lib/skyfall/jetstream/operation.rb
···3939 alias did repo
40404141 # @return [String] path part of the record URI (collection + rkey)
4242+ # @deprecated Use {#collection} + {#rkey}
4243 def path
4444+ @@path_warning_printed ||= false
4545+4646+ unless @@path_warning_printed
4747+ $stderr.puts "Warning: Skyfall::Jetstream::Operation#path is deprecated - use #collection + #rkey"
4848+ @@path_warning_printed = true
4949+ end
5050+4351 @json['collection'] + '/' + @json['rkey']
4452 end
4553