This repository has been archived by the owner on May 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
98 lines (75 loc) · 1.66 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
93
94
95
96
97
98
# frozen_string_literal: true
source 'https://rubygems.org'
# source 'https://gems.shefcompsci.org.uk' do
# gem 'airbrake'
# gem 'epi_deploy', group: :development
# end
# Rails core
gem 'rails'
gem 'webpacker'
gem 'bootsnap'
# Puma server
gem 'puma'
# Responders respond_to and respond_with
gem 'responders'
# PostgreSQL database
gem 'pg'
# Enum column support for Rails schema
gem 'activerecord-pg_enum'
# Active Storage
gem 'active_storage_validations'
# Avatar
gem 'gravatar_image_tag'
gem 'image_processing'
# Authentication libraries
gem 'devise'
gem 'omniauth-facebook'
gem 'omniauth-google-oauth2'
gem 'omniauth-twitter'
# Authorization, see https://github.com/palkan/action_policy
gem 'action_policy'
# HAML
gem 'hamlit'
# Pagination
gem 'pagy'
# Optimised JSON
gem 'blueprinter'
gem 'oj'
# Generate fake data
gem 'faker'
gem 'daemons'
# gem 'delayed-plugins-airbrake'
gem 'delayed_job'
gem 'delayed_job_active_record'
gem 'whenever'
# Metrics Charts
gem 'ahoy_matey'
gem 'chartkick'
gem 'geocoder'
gem 'groupdate'
group :development, :test do
gem 'byebug'
gem 'rspec-rails'
end
group :development do
gem 'capistrano'
gem 'capistrano-bundler', require: false
gem 'capistrano-passenger', require: false
gem 'capistrano-rails', require: false
gem 'capistrano-rvm', require: false
# Code Style
gem 'haml_lint', require: false
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
gem 'annotate'
gem 'letter_opener'
end
group :test do
gem 'capybara'
gem 'factory_bot_rails'
gem 'shoulda-matchers'
gem 'simplecov'
gem 'webdrivers'
end