-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathGemfile
More file actions
161 lines (125 loc) · 3.8 KB
/
Copy pathGemfile
File metadata and controls
161 lines (125 loc) · 3.8 KB
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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '3.4.9'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 8.1.0'
gem 'propshaft'
gem 'delayed_job_mongoid', '~> 3.0.0'
gem 'mongoid', '~> 9.0.0'
# gem 'mongoid', '~> 4.0.2'
gem 'bson'
gem 'mustache'
## gem 'os'
gem 'cqm-models', '~> 4.2.0'
gem 'cqm-parsers', '~> 4.1.1.2'
gem 'cqm-reports', '~> 4.1.6'
gem 'cqm-validators', '~> 4.0.6'
# # Use faker to generate addresses
gem 'faker', '> 1.5.0'
gem 'csv', '~> 3.3', '>= 3.3.5'
# Dependencies for CMS Assets Framework
gem 'bootstrap', '~> 5.3.5'
gem 'font-awesome-propshaft'
gem 'font-awesome-sass', '~> 6.7', '>= 6.7.2'
gem 'jquery-rails'
# TODO: remove or use gem
gem 'jquery-ui-rails', '~> 8.0.0'
# Add pagination support
gem 'kaminari-mongoid'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Bake the best breadcrumbs
gem 'breadcrumbs_on_rails'
# Help our forms
gem 'bootstrap_form', '~> 5.4'
# gem 'jasny-bootstrap-rails'
# gem 'jquery-datatables-rails'
gem 'local_time'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
gem 'stimulus-rails'
gem 'turbo-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.14', '>= 2.14.1'
# A set of responders modules to dry up your Rails 4.2+ app.
gem 'responders'
# Roar is a framework for parsing and rendering REST documents
gem 'multi_json'
gem 'representable', '~> 3.0.0'
gem 'roar-rails'
gem 'carrierwave', '~> 2.2.5'
gem 'carrierwave-mongoid', require: 'carrierwave/mongoid'
# AJAX file uploads
gem 'remotipart', '~> 1.2'
# Server usage statistics
gem 'vmstat'
gem 'bootsnap', require: false
# bubble up errors from embedded documents in Mongoid.
# gem 'mongoid-embedded-errors'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Devise is the gem we use for user authentication
gem 'cancancan'
gem 'devise'
gem 'devise_invitable'
gem 'rolify'
# Use Puma as the app server
gem 'puma', '~> 7.2.1'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
gem 'rest-client', '~>2.0.2'
## gem 'typhoeus'
## gem 'daemons'
gem 'validate_url'
gem 'telephone_number'
group :development, :test do
# pin rubocop to version 1.69.1, to avoid new errors in overcommit from later verisons
gem 'rubocop', '1.69.1'
gem 'rubocop-rspec'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'axe-core-capybara'
gem 'axe-core-cucumber'
gem 'byebug'
gem 'capybara'
gem 'capybara-accessible'
gem 'cucumber-rails', require: false
gem 'database_cleaner-mongoid'
gem 'overcommit'
# gem 'phantomjs', require: 'phantomjs/poltergeist'
gem 'poltergeist'
gem 'pry'
gem 'pry-nav'
gem 'rails_best_practices'
gem 'rails-controller-testing'
gem 'rails-perftest'
# remove scss_lint, incompatible with sass dependency upgrades
# gem 'scss_lint', require: false
gem 'selenium-webdriver'
end
group :development do
gem 'listen'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 4.2.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
end
group :test do
# Brakeman is broken on ruby 2.5, re-enable when https://github.com/presidentbeef/brakeman/issues/1173 is closed
# gem 'brakeman', :require => false
gem 'bundler-audit'
gem 'codecov', require: false
gem 'factory_bot_rails'
gem 'launchy'
gem 'minitest'
gem 'minitest-rails'
gem 'minitest-reporters'
gem 'mocha', require: false
gem 'simplecov', require: false
gem 'simplecov-cobertura'
gem 'vcr'
gem 'webmock'
end
group :production do
gem 'newrelic_rpm'
end
gem 'importmap-rails', '~> 2.2'
gem 'dartsass-rails', '~> 0.5.1'