Template of a custom feed generator service for the Bluesky network in Ruby

show post id in print_feed

Changed files
+2 -1
+2 -1
Rakefile
··· 36 36 Signal.trap("SIGPIPE", "SYSTEM_DEFAULT") 37 37 38 38 posts.each do |s| 39 - puts Rainbow(s.time).bold + ' * ' + Rainbow("https://bsky.app/profile/#{s.repo}/post/#{s.rkey}").darkgray 39 + print Rainbow(s.time).bold + ' * ' + Rainbow(s.id).bold + ' * ' 40 + puts Rainbow("https://bsky.app/profile/#{s.repo}/post/#{s.rkey}").darkgray 40 41 puts 41 42 puts feed.colored_text(s.text) 42 43 if s.record['embed']