├── .gitignore ├── Dockerfile ├── Dockerfile.puma ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── airtable.rb ├── browser.rb ├── config.ru ├── config ├── puma.rb └── schedule.rb ├── entrypoint.sh ├── slack.rb ├── views ├── index.erb ├── logo.erb └── logo_set.erb └── web.rb /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | *.png -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/shrimp-shuffler/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.puma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/shrimp-shuffler/HEAD/Dockerfile.puma -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/shrimp-shuffler/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/shrimp-shuffler/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/shrimp-shuffler/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/shrimp-shuffler/HEAD/Rakefile -------------------------------------------------------------------------------- /airtable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/shrimp-shuffler/HEAD/airtable.rb -------------------------------------------------------------------------------- /browser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/shrimp-shuffler/HEAD/browser.rb -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- 1 | require './web' 2 | 3 | run Sinatra::Application 4 | -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/shrimp-shuffler/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/schedule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/shrimp-shuffler/HEAD/config/schedule.rb -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/shrimp-shuffler/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /slack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/shrimp-shuffler/HEAD/slack.rb -------------------------------------------------------------------------------- /views/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/shrimp-shuffler/HEAD/views/index.erb -------------------------------------------------------------------------------- /views/logo.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/shrimp-shuffler/HEAD/views/logo.erb -------------------------------------------------------------------------------- /views/logo_set.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/shrimp-shuffler/HEAD/views/logo_set.erb -------------------------------------------------------------------------------- /web.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackclub/shrimp-shuffler/HEAD/web.rb --------------------------------------------------------------------------------