-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
62 lines (46 loc) · 1.01 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '2.7.7'
gem 'rails', '~> 6.1'
gem 'pg'
gem 'puma'
gem 'rack-cors'
gem 'jwt'
gem 'graphiti', '1.2.19'
gem 'kaminari'
gem 'responders'
gem 'vandal_ui'
# Authentication
gem 'omniauth'
gem 'omniauth-github'
# Used to download content from the interwebs
gem 'down'
# Gems to be used with activestorage
gem 'image_processing'
gem 'mini_magick'
group :development, :test do
gem 'awesome_print'
gem 'rails-erd'
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
# Managing environment variables
gem 'dotenv-rails'
end
# For interacting with AWS
gem 'aws-sdk-s3'
# For interaction with Github
gem 'faraday-http-cache'
gem 'faraday-retry'
gem 'octokit'
# Slack
gem 'async-websocket', '~> 0.8.0'
gem 'data_uri', github: 'aredotna/data_uri'
gem 'slack-ruby-bot'
gem 'slack-ruby-client'
# Error reporting
gem 'sentry-raven'
gem 'counter_culture'
gem 'front_matter_parser'
gem 'http'
gem 'yt'