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 b251c2e906572d279e166b22cfbb6fb4f0806a1a 14 lines 252 B view raw
1source "https://rubygems.org" 2 3gem 'blue_factory', '~> 0.1.2' 4gem 'skyfall', '~> 0.1.2' 5 6gem 'activerecord', '~> 6.0' 7gem 'sinatra-activerecord', '~> 2.0' 8gem 'sqlite3' 9gem 'rake' 10 11group :development do 12 gem 'webrick' 13 gem 'capistrano', '~> 2.0' 14end