-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
81 lines (66 loc) · 2.02 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
source 'https://rubygems.org'
# Frameworks
gem 'rails', '4.2.6'
gem 'sinatra', :require => false
# The previous version of mimemagic was pulled on 20/03/21
# and licensing changed to GPL2.
# Can be removed if paperclip is removed.
gem 'mimemagic', '~> 0.3.6'
# DB
gem 'pg', '~> 0.18.4'
# Paperclip is the only reverse-dependency of mimemagic and is deprecated in
# favour of ActiveStorage. It can be refactored out when upgrading to Rails 5.2.
# If this is removed, also remove mimemagic.
gem 'paperclip', '~> 5.1.0'
# Frontend
gem 'kaminari', '~> 0.17.0'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'browserify-rails', '~> 3.1.0'
gem 'font-awesome-sass', '~> 4.6.2'
gem 'jquery-rails', '~> 4.1.1'
gem "select2-rails", git: 'https://github.com/argerim/select2-rails'
# Configuration
gem 'dotenv-rails', '~> 2.1.1'
# Logging'n'tracking
gem 'appsignal', '~> 1.1.9'
gem 'exception_notification', '~> 4.1.4'
gem 'slack-notifier', '~> 1.5.1'
# Authentication and Authorization
gem 'cancancan', '~> 1.10'
gem 'devise', '~> 4.2.0'
gem 'bcrypt', '~> 3.1.17' # Required on Ubuntu 20+
# Background jobs
gem 'redis', '~> 3.3.1'
gem 'sidekiq', '~> 4.1.4'
# Testing
gem 'factory_girl_rails', '~> 4.7.0'
gem 'faker', '~> 1.6.5'
group :development do
# Docs
gem 'yard', '~> 0.8.7.6'
gem 'redcarpet', '~> 3.3.4'
# Deployment
gem 'capistrano-rails'
gem 'capistrano', '~> 3.5', require: false
gem 'capistrano-bundler', '~> 1.1', require: false
gem 'capistrano-rvm', '~> 0.1', require: false
gem 'capistrano-passenger', '~> 0.2.0', require: false
gem 'capistrano-npm', '~> 1.0.2'
gem 'capistrano-sidekiq', require: false
# Emails
gem 'letter_opener'
# ERD
gem 'ruby-graphviz', '~> 1.2.2'
gem 'rails-erd', '~> 1.4.7'
end
group :test do
gem 'simplecov', require: false
gem 'mocha', '~> 1.1.0'
gem 'codeclimate-test-reporter', require: false
end
# Debugging
gem 'web-console', '~> 2.0', group: :development
gem 'byebug', group: [:development, :test]
gem 'annotate', '~> 2.7.1'
gem "activerecord-session_store", "~> 1.1"