├── .github └── workflows │ └── draft-pdf.yml ├── .gitignore ├── CITATION.cff ├── Gemfile ├── Gemfile.lock ├── Procfile ├── README.md ├── Rakefile ├── config.ru ├── fidgit.rb ├── license.txt ├── paper ├── figshare_article.png ├── paper.bib ├── paper.md └── paper.pdf ├── screens ├── fidgit.png ├── figshare_applications.png ├── figshare_article.png ├── heroku.png └── webhook.png ├── setup.toml.example ├── tmp └── README └── views └── repository.erb /.github/workflows/draft-pdf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arfon/fidgit/HEAD/.github/workflows/draft-pdf.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | db 2 | dev 3 | .DS_Store 4 | files -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- 1 | Hi this probably doesn't need to be cited. But thanks anyway! 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arfon/fidgit/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arfon/fidgit/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arfon/fidgit/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arfon/fidgit/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arfon/fidgit/HEAD/Rakefile -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- 1 | $stdout.sync = true 2 | require './fidgit' 3 | run Sinatra::Application -------------------------------------------------------------------------------- /fidgit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arfon/fidgit/HEAD/fidgit.rb -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arfon/fidgit/HEAD/license.txt -------------------------------------------------------------------------------- /paper/figshare_article.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arfon/fidgit/HEAD/paper/figshare_article.png -------------------------------------------------------------------------------- /paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arfon/fidgit/HEAD/paper/paper.bib -------------------------------------------------------------------------------- /paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arfon/fidgit/HEAD/paper/paper.md -------------------------------------------------------------------------------- /paper/paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arfon/fidgit/HEAD/paper/paper.pdf -------------------------------------------------------------------------------- /screens/fidgit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arfon/fidgit/HEAD/screens/fidgit.png -------------------------------------------------------------------------------- /screens/figshare_applications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arfon/fidgit/HEAD/screens/figshare_applications.png -------------------------------------------------------------------------------- /screens/figshare_article.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arfon/fidgit/HEAD/screens/figshare_article.png -------------------------------------------------------------------------------- /screens/heroku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arfon/fidgit/HEAD/screens/heroku.png -------------------------------------------------------------------------------- /screens/webhook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arfon/fidgit/HEAD/screens/webhook.png -------------------------------------------------------------------------------- /setup.toml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arfon/fidgit/HEAD/setup.toml.example -------------------------------------------------------------------------------- /tmp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arfon/fidgit/HEAD/tmp/README -------------------------------------------------------------------------------- /views/repository.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arfon/fidgit/HEAD/views/repository.erb --------------------------------------------------------------------------------