-
Notifications
You must be signed in to change notification settings - Fork 5
/
Gemfile
92 lines (75 loc) · 1.91 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
source 'https://rubygems.org'
ruby '3.3.6'
gem 'rails', '8.0.1'
gem 'pg', '~> 1.5'
gem 'puma'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', require: false
# Auth
gem 'omniauth-google-oauth2'
gem 'omniauth-rails_csrf_protection'
# AWS
gem 'aws-sdk-cloudfront', '~> 1'
gem 'aws-sdk-s3', '~> 1'
# Front-end things
gem 'sass-rails', '~> 6.0'
gem 'autoprefixer-rails'
gem 'uglifier', '>= 1.3.0'
gem 'webpacker'
gem 'turbolinks', '~> 5.2.1'
gem "sprockets-rails"
# Images
gem 'ruby-thumbor'
gem 'blurhash', git: 'https://github.com/gesteves/blurhash', branch: 'master'
# Misc
gem 'jbuilder', '~> 2.11'
gem 'sdoc', '~> 2.6', group: :doc
gem 'acts_as_list'
gem 'redcarpet'
gem 'sanitize'
gem 'exifr', require: nil
gem 'acts-as-taggable-on'
gem 'httparty'
gem 'kaminari'
gem 'figaro'
gem 'oauth'
gem 'rack-attack'
gem "image_processing", "~> 1.12"
gem 'rack-brotli'
gem 'htmlentities'
gem 'public_suffix'
gem 'web-push'
# Monitoring
gem 'bugsnag'
# Caching
gem 'dalli'
# Background Jobs
gem 'sidekiq'
gem 'sidekiq-scheduler'
# Social Networks
gem 'flickraw', git: 'https://github.com/gesteves/flickraw.git', branch: 'update-upload-url'
gem 'tumblr_client', git: 'https://github.com/gesteves/tumblr_client', branch: 'master'
# Search
gem 'elasticsearch-model', '~> 5.0'
gem 'elasticsearch-rails', '~> 5.0'
gem 'graphql'
group :production do
gem 'lograge'
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.10'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.1.0'
end
group :development, :test do
gem 'scss-lint'
gem 'byebug'
gem 'brakeman', require: nil
end
group :test do
gem 'mock_redis'
gem 'rails-controller-testing'
end