-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
146 lines (122 loc) · 2.71 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
source 'https://rubygems.org'
ruby '~> 3.2.0'
gem 'matrix', '0.4.2'
gem 'rails', '6.1.7.8'
gem 'bundler'
gem 'puma', '5.6.9'
gem 'pg', '1.5.4'
gem 'sidekiq', '7.1.3'
gem 'sidekiq-cron', '1.9.1'
gem 'sidekiq-failures', '1.0.1'
gem 'redis', '5.2.0'
gem 'redis-namespace', '1.10.0'
gem 'faraday', '1.0.1'
gem 'figaro'
gem 'friendly_id'
gem 'immutable-struct'
gem 'nokogiri', '>= 1.16.7'
# Log formatting
gem "json_tagged_logger"
gem "lograge"
# Authentication & authorisation
gem 'devise'
gem 'devise-async'
gem 'hawk-auth'
gem 'omniauth', '2.0.3'
gem 'omniauth-oauth2', '1.7.1'
gem 'omniauth-rails_csrf_protection'
gem 'pundit', require: true
# Rendering
gem 'haml'
gem 'jbuilder'
gem 'sdoc'
# Search
gem 'pg_search'
gem 'kaminari', '>= 1.2.1'
gem 'elasticsearch', '7.9.0'
gem 'elasticsearch-rails', '7.1.1'
gem 'elasticsearch-model', '7.1.1'
gem 'devise-security', '0.14.3'
# Styling
gem 'bourbon'
gem 'neat'
gem 'autoprefixer-rails'
gem 'normalize-scss'
gem 'sass-rails'
# Javascript
gem 'jquery-rails'
# gem 'ckeditor'
# Ruby tools
gem 'stringex', require: false
gem 'addressable'
# ActiveRecord tools
gem 'hairtrigger', '1.0.0'
gem 'active_record_union'
# JSON
gem 'yajl-ruby', '>= 1.4.3'
gem 'jmespath', '1.6.1'
# Developer tools
gem 'pry-rails'
gem 'premailer-rails'
gem 'flipper', '0.26.0'
gem 'flipper-redis', '0.26.0'
gem 'flipper-ui', '0.26.0'
gem 'paper_trail', '12.3.0'
# aws sdk for s3 storage of post-user communications
gem 'aws-sdk'
# Monitoring
gem 'sentry-raven', '3.0.0'
# rest client for antivirus scanning
gem 'rest-client'
# zipping for email attachments over 10MB
gem 'rubyzip', '~> 1.3.0'
# JSON Web Tokens for Volume Opps
gem 'jwt'
# caching
gem 'actionpack-page_caching'
# Sentence splitting
gem 'pragmatic_segmenter'
# Govt Notify service API client
gem 'notifications-ruby-client'
group :development, :test do
gem 'byebug'
gem 'faker'
gem 'pry-rescue'
gem 'pry-stack_explorer'
gem 'bullet'
gem 'uglifier'
gem 'rubocop-rspec'
gem 'spring'
gem 'spring-commands-rspec'
end
group :development do
gem 'web-console'
gem 'rubocop', '~> 1.0.0', require: false
gem 'rubocop-faker'
gem 'listen'
end
group :test do
gem 'capybara', require: false
gem 'capybara-email', require: false
gem 'capybara-screenshot'
gem 'fuubar'
gem 'shoulda-matchers', require: false
gem 'rspec-sidekiq'
gem 'timecop'
gem 'webmock', '3.19.1'
gem 'rspec-rails'
gem 'rspec-mocks'
gem 'rspec-collection_matchers'
gem 'rspec_junit_formatter'
gem 'pundit-matchers'
gem 'database_cleaner'
gem 'factory_bot_rails'
gem 'launchy'
gem 'poltergeist'
gem 'simplecov'
gem 'vcr'
gem 'elasticsearch-extensions'
gem 'show_me_the_cookies', '6.0.0'
gem 'rails-controller-testing'
gem 'mock_redis'
end