-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
79 lines (63 loc) · 1.87 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
source 'https://rubygems.org'
ruby '2.7.3'
gem 'rails', '~> 6.1.4'
gem 'responders', '~> 3.0.1'
gem 'rack-cors', '~> 1.0.5'
# Use postgres as the database for Active Record
gem 'pg', '~> 1.2.3'
# Use slim for templates
gem 'slim-rails', '~> 3.1.3'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '~> 4.1.6'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.2.2'
# Use jquery as the JavaScript library
gem 'jquery-rails', '~> 4.3.1'
gem 'sass-rails', '~> 5.0.7'
gem 'decent_exposure', '~> 3.0.2'
gem 'rmagick'
# For #to_url method
gem 'stringex'
gem 'dotenv-rails', '~> 2.7.6'
gem 'aws-sdk', '~> 1.53.0'
gem 'sidekiq'
gem 'sinatra', '~> 2.0.3', require: false # for sidekiq
gem 'http', '~> 4.3.0'
gem 'oauth2', '~> 1.4.0'
gem 'exiftool', '~> 1.2.1'
gem 'exiftool_vendored', '~> 10.65.0'
gem 'image_optim'
gem 'image_optim_pack'
gem 'attr_encrypted', '~> 3.1.0'
gem 'active_interaction', '~> 4.0.5'
gem "sentry-raven"
group :development, :test do
gem 'rspec-rails', '~> 5.0.2'
gem 'webmock', '~> 3.5.1'
gem 'vcr', '~> 4.0.0'
gem 'pry'
gem 'pry-byebug'
gem 'better_errors'
gem 'binding_of_caller'
gem 'listen'
gem 'timecop', '~> 0.9'
end
group :production do
gem 'rails_12factor'
end
# Use ActiveModel has_secure_password
gem 'bcrypt', '~> 3.1.16'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.9.0', require: false
gem 'devise', '~> 4.7.1'
# Use Capistrano for deployment
gem 'capistrano', '~> 3.16.0'
gem 'capistrano3-puma', '~> 5.2.0'
gem 'capistrano-bundler', '~> 2.0.1'
gem 'capistrano-rails', '~> 1.6.1'
gem 'capistrano-sidekiq', git: 'https://github.com/RobinClowers/capistrano-sidekiq.git', branch: 'allow-different-queue-per-role-v1.0.2'
# Required for capistrano ed25519 ssh key support
gem "ed25519", "~> 1.3"
gem "bcrypt_pbkdf", "~> 1.1"
# Use Puma server
gem 'puma', '~> 5.6.4'