A simple Ruby server using Sinatra that serves Bluesky custom feeds

set up YARD documentation

+8
+2
.gitignore
··· 1 1 .bundle 2 2 .rspec_status 3 + .yardoc 4 + doc 3 5 Gemfile.lock
+3
.yardopts
··· 1 + --protected 2 + --no-private 3 + --markup markdown
+3
Gemfile
··· 7 7 8 8 gem "rake", "~> 13.0" 9 9 gem "rspec", "~> 3.0" 10 + 11 + gem 'rdoc' 12 + gem 'yard'