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

Configure Feed

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

at f7d55dfdeb5ee3923a00282a7162d3c47ebf56ac 15 lines 286 B view raw
1source "https://rubygems.org" 2 3gem 'blue_factory', '~> 0.1', '>= 0.1.4' 4gem 'skyfall', '~> 0.2', '>= 0.2.3' 5 6gem 'activerecord', '~> 6.0' 7gem 'sinatra-activerecord', '~> 2.0' 8gem 'sqlite3' 9gem 'rake' 10gem 'rainbow' 11 12group :development do 13 gem 'webrick' 14 gem 'capistrano', '~> 2.0' 15end