-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
78 lines (61 loc) · 1.35 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
source 'https://rubygems.org'
gem 'mysql2'
gem 'rails', '~> 6.1.7.9'
gem 'sass-rails'
gem 'uglifier'
gem 'coffee-rails'
gem 'execjs', '= 2.7.0'
gem 'rails-html-sanitizer', '>= 1.4.4'
# Make sure that sb-admin-2 and jquery-nested-attributes still
# work before version-bumping jQuery
gem 'jquery-rails', '>= 4.4.0'
gem 'jquery-turbolinks'
# suppress annoying warnings
# https://github.com/ruby/net-imap/issues/16#issuecomment-1321228565
gem 'net-http'
gem 'net-smtp'
gem 'net-imap'
gem "uri", ">= 0.12.2"
gem 'faraday'
gem 'turbolinks'
gem 'bcrypt'
gem 'codemirror-rails'
gem 'auto_strip_attributes'
gem 'marginalia'
gem 'liquid'
gem "nokogiri", ">= 1.16.2"
gem "kt-paperclip", "~> 6.4", ">= 6.4.1"
gem 'dotenv-rails'
group :test do
gem 'mocha'
gem 'timecop'
gem 'webmock'
end
group :development do
gem 'letter_opener'
gem 'webrick', '~> 1.8.2'
end
group :development, :test do
gem 'immigrant'
gem 'forgery'
gem 'consistency_fail'
gem 'byebug'
gem 'brakeman'
gem 'spring'
gem 'rubocop'
gem 'bundler-audit'
end
group :deploy do
gem 'capistrano'
gem 'capistrano-rails'
gem 'capistrano-bundler'
gem 'capistrano-rbenv'
# https://github.com/net-ssh/net-ssh/issues/565
gem 'ed25519', '>= 1.2', '< 2.0'
gem 'bcrypt_pbkdf', '>= 1.0', '< 2.0'
end
group :production do
gem 'unicorn'
gem 'mini_racer'
gem 'exception_notification'
end