-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
222 lines (194 loc) · 6.38 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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
source 'https://rubygems.org'
ruby '3.0.3'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.1.3.0'
# Use postgresql as the database for Active Record
gem 'pg', '>= 1.2.3', '< 2.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 4.2.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
gem 'slim-rails'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks', '~> 5.2.0'
# Fix issues with jquery caused by turbolinks
gem 'jquery-turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.11.0'
# Use puma web server
gem 'puma'
# Set timeout for long running processes
gem 'rack-timeout'
# Better Rails logging
gem 'lograge'
# The default JavaScript compiler for Rails 6
gem 'webpacker', '~> 5.2.1'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', require: false
# Lock sprockets version because new version of sprockets require manifest file
gem 'sprockets', '~>3.7.0'
#################################################
# #
# Login, authentication, roles, access-control, #
# and security #
# #
#################################################
# Authentication
gem 'devise'
# Stripe
gem 'stripe'
gem 'stripe_event'
# Roles
gem 'rolify'
# Authorization
gem 'pundit'
# LinkedIn API integration
gem 'omniauth'
gem 'omniauth-rails_csrf_protection'
gem 'omniauth-oauth2'
# Xero API integration for partner app
gem 'xeroizer', git: 'https://github.com/waynerobinson/xeroizer.git'
# Protect app from bad clients
gem 'rack-attack'
#################################################
# #
# App specific functions #
# #
#################################################
# State machine gem
gem 'aasm'
# Manage ordering for survey objects
gem 'acts_as_list'
# For tagging
gem 'acts-as-taggable-on', '~> 7.0.0'
# For tagging in administrate
gem 'administrate-field-acts_as_taggable'
# Use user friendly slugs
gem 'friendly_id', '5.4.2'
# Activity feed
gem 'public_activity'
# Handle money
gem 'money-rails', '~>1.14.0'
# Ruby asynchronous processing
gem 'sucker_punch', '~> 3.0.0'
gem 'popper_js'
# Themify icon set web fonts
gem 'themify-icons-rails', git: 'https://github.com/scratch-soft/themify-icons-rails.git'
# Font Awesome Rails
gem 'font_awesome5_rails'
# Default processer: MiniMagick. Enable variant for image using ActiveStorage
gem 'image_processing', '~> 1.12.2'
# Office previewer
gem "activestorage-office-previewer"
# Nested form helper
# cocoon have a problem, so need use git first, solved in https://stackoverflow.com/questions/13190683/no-new-object-passed-to-cocoon-callback
gem 'cocoon'
# WYSIWYG editor
gem 'trix'
# Render calendar
gem 'simple_calendar', '~> 2.4.0'
# Create tree structure
gem 'ancestry'
# Get mime type from filename
gem 'mini_mime'
# Shorten UUID to make it more user friendly
gem 'shortuuid'
# Calculate business days
gem 'business_time', git: 'https://github.com/beanieboi/business_time'
# Used for area code
gem 'countries', require: 'countries/global'
# CHecks phone number validity
gem 'phonelib'
# In-app notification feature
gem 'activity_notification'
# Import excel
gem "roo", "~> 2.8.0"
#################################################
# #
# Emailer Gems #
# #
#################################################
# Sendgrid web API
gem 'sendgrid-ruby'
gem 'sendgrid-actionmailer'
# Use inky for email templating
gem 'inky-rb', require: 'inky'
# Stylesheet inlining for email
gem 'premailer-rails'
#################################################
# #
# External Integrations #
# #
#################################################
# Integrate Slack API
gem 'slack-ruby-client'
# Algolia search
gem 'algoliasearch-rails'
# Amazon S3 SDK
gem 'aws-sdk-s3', '~> 1.93.0'
gem 'aws-sdk-textract', '~> 1.24.0'
# SMS integration with Twilio
gem 'twilio-ruby'
# Performance reporting
gem 'skylight'
gem 'scout_apm'
# Error monitoring
gem 'rollbar'
gem 'oj'
gem 'snitcher'
#################################################
# #
# Backend Admin #
# #
#################################################
gem 'administrate', '0.15.0'
gem 'administrate-field-image'
gem 'administrate-field-nested_has_many'
gem 'administrate-field-jsonb'
gem 'administrate-field-active_storage'
# Deep cloning for cloning of template with associated sections
gem 'deep_cloneable', '~> 3.1.0'
# Heroku requirement for static asset serving and logging
gem 'rails_12factor', group: :production
group :development do
gem 'rails_real_favicon'
gem 'rubocop', require: false
gem 'brakeman', require: false
gem 'pry-rails'
gem 'bullet'
gem 'derailed_benchmarks'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
gem 'pry-byebug'
# Run pry remotely
gem 'pry-remote'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console'
# Better error page in development
gem 'better_errors'
gem 'binding_of_caller'
gem 'rails-erd'
gem 'rack-mini-profiler'
# Add squasher to collate old migration file
gem 'squasher', '>= 0.6.2'
gem 'foreman'
end
group :development, :test do
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
# Manage env variables during development and testing
gem 'dotenv-rails'
# Testing framework
gem 'rspec-rails'
gem 'rspec_junit_formatter'
gem 'guard-rspec'
gem 'spring-commands-rspec'
gem 'shoulda'
gem 'factory_bot_rails'
gem 'rails-controller-testing'
gem 'webmock'
# A library for generating fake data such as names, addresses, and phone numbers.
gem 'faker', git: 'https://github.com/stympy/faker.git'
end