This repository has been archived by the owner on Dec 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
125 lines (104 loc) · 2.73 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem "rails"
gem "bootsnap" # Speed up boot time by caching expensive operations
gem "pg" # Postgresql
gem "puma"
# Assets management
gem "autoprefixer-rails" # Use SCSS for stylesheets
gem "hamlit" # Template engine
gem "jquery-rails"
gem "loofah-activerecord" # Sanitize inputs
gem "mini_racer"
gem "react-rails"
gem "sass-rails"
gem "sprockets"
gem "turbolinks"
gem "uglifier" # JavaScript compressor
gem "webpacker"
# Helpers
gem "acts_as_tree" # Tree structure for Advice Issue Codes
gem "addressable" # URI handling
gem "damm" # Checksum
gem "graphql"
gem "kaminari" # Pagination
gem "rinku" # Autolink URLs
gem "simple_form"
gem "truncato" # Truncate html
# Authentication and authorisation
gem "jwt"
gem "pundit"
# AWS
gem "aws-sdk-s3"
gem "faraday_middleware-aws-sigv4"
# JSON formatter
gem "active_model_serializers"
gem "jbuilder"
# Redis
gem "hiredis" # C client library for Redis
gem "redis"
gem "redlock" # Distributed lock using Redis
gem "sidekiq"
# Attachments
gem "clamav-client"
gem "seven_zip_ruby"
gem "shrine"
gem "wicked_pdf" # Converts HTML to PDF
# Image processing
gem "fastimage"
gem "image_processing"
gem "mime-types"
gem "mini_magick"
gem "ruby-filemagic"
# Server
gem "awesome_print"
gem "newrelic_rpm"
gem "rack-timeout"
gem "rails_semantic_logger"
# Okta API
gem "faraday_middleware"
gem "link_header"
# Front-end assets
gem "bootstrap", "4.1.3"
gem "ckeditor", "4.3.0"
gem "font-awesome-rails"
gem "twitter-typeahead-rails"
gem "byebug"
gem "factory_bot_rails"
gem "faker"
gem "haml-lint"
gem "json_matchers"
gem "rails-controller-testing"
gem "rspec-rails"
gem "rubocop"
gem "ruby-jmeter"
gem "rubycritic"
gem "webmock"
gem "spring"
gem "spring-commands-cucumber"
gem "spring-commands-rspec"
gem "spring-watcher-listen"
gem "graphiql-rails"
gem "listen"
gem "web-console"
gem "brakeman" # Security vulnerability static analysis tool
gem "memory_profiler"
gem "rack-mini-profiler"
gem "database_cleaner"
gem "browserstack-local"
gem "capybara"
gem "capybara-screenshot"
gem "cucumber"
gem "cucumber-rails"
gem "cuke_sniffer"
gem "selenium-webdriver"
gem "shoulda-matchers"
gem "simplecov"
gem "simplecov-json"
gem "simplecov-rcov", github: "citizensadvice/simplecov-rcov", tag: "v0.2.3p1"
gem "site_prism"
gem "chronic"
gem "ci_reporter_rspec"
gem "sinatra"
gem "sinatra-contrib"