-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
131 lines (97 loc) · 3.56 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.2.2'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 7.1', '>= 7.1.3.4'
# State machine
gem 'aasm'
gem 'bootsnap', '~> 1.11', '>= 1.11.1', require: false
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
# gem 'jbuilder', '~> 2.7', '>= 2.7.0'
gem 'jbuilder', '~> 2.12', '>= 2.12.0'
# JSON API
gem 'jsonapi-rails'
gem 'jquery-rails', '>= 4.5.0'
gem 'jwt', '~> 2.2'
# Use postgresql as the database for Active Record
gem 'pg', '>= 0.18', '< 2.0'
# Use Puma as the app server
gem 'puma', '~> 6.4', '>= 6.4.2'
# Audit log
gem 'rails_event_store', '~> 2.13', '>= 2.13.0'
# Markdown parser
gem 'redcarpet', '~> 3.6'
# Auth0
gem 'auth0', '~> 5.1', '>= 5.1.2', require: false
# Google Login
gem 'omniauth-google-oauth2'
gem 'omniauth-rails_csrf_protection', '~> 1.0', '>= 1.0.2'
# Admin Frontend
gem 'haml-rails', '>= 2.1.0'
gem 'sass-rails', '~> 6.0', '>= 6.0.0'
gem 'uglifier', '~> 4.2'
gem 'kaminari', '>= 1.2.2'
gem 'simple_form', '>= 5.3.1'
gem 'aws-sdk-cloudwatch', require: false
gem 'aws-sdk-s3', require: false
gem 'azure-storage-blob', '>= 2.0.3', require: false
# Exception tracking
gem 'rollbar'
# Logging
gem 'lograge', '>= 0.14.0'
# gem 'skylight', '~> 6.0', '>= 6.0.0'
gem 'rubocop', '>= 1.62.0'
gem 'rubocop-rails', '~> 2.24', '>= 2.24.1'
gem 'progress_bar', require: false
gem 'sidekiq-pro', source: 'https://gems.contribsys.com/'
# gem 'sidekiq', '>=5.2.10' # Free version, use for local image building
gem 'sidekiq-cron', '>= 1.11.0'
# Alpine and Windows do not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby ruby]
gem 'activerecord-import', '>= 1.5.0'
gem 'parslet'
# To enable app maintenance mode
gem 'rack-maintenance', '~> 3.0'
# For parsing and manipulating excel docs
gem 'rubyXL', '~> 3.4', '>= 3.4.26'
# SOAP-related libraries for Workday integration
gem 'lolsoap', '>= 0.11.0', require: false
gem 'akami', '>= 1.3.2', require: false
gem 'http', '>= 4.0.0'
# Used for FDL testing (see FDL::Validations::Test)
gem 'hashdiff', require: false
# Manually set Nokgiri version, to update version.
gem 'nokogiri', '>= 1.16.5'
# Fix for already initialized constant warning, see: https://stackoverflow.com/questions/67773514/getting-warning-already-initialized-constant-on-assets-precompile-at-the-time
gem 'net-http', '>= 0.4.0'
gem 'sprockets-rails', '>= 3.5.0'
group :development, :test do
gem 'brakeman', require: false
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'dotenv-rails', '>= 3.1.1'
gem 'factory_bot_rails', '~> 6.4', '>= 6.4.2'
gem 'pry-rails'
gem 'rspec-rails', '~> 6.1', '>= 6.1.2'
end
group :development do
gem 'listen', '~> 3.5', '>= 3.5.1'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring', '~> 4.0'
gem 'spring-watcher-listen', '~> 2.1'
# Generate scaffold commands from schema.rb, instead of the other way around
# gem 'schema_to_scaffold'
# To spin up locally using postgis, (along with edits to database.yml)
# gem 'activerecord-postgis-adapter'
end
group :test do
gem 'database_cleaner', '~> 2.0', '>= 2.0.2'
gem 'jsonapi-rspec', require: false
gem 'ruby_event_store-rspec'
gem 'rspec-json_expectations'
gem 'shoulda-matchers', '~> 5.1', '>= 5.1.0'
gem 'capybara', '~> 3.40', '>= 3.40.0'
gem 'climate_control'
gem 'webmock', '>= 3.20.0'
gem 'launchy', '>= 2.4.3'
gem 'simplecov', '~> 0.21.2'
end