forked from hattwj/reindeer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
194 lines (175 loc) · 4.27 KB
/
Gemfile
File metadata and controls
194 lines (175 loc) · 4.27 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
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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
##############################
# Main
##############################
gem "bundler" #, '~>2.0'
#gem 'rails' #, '~>6.1.3' #'~> 5.2.2.1'
gem 'rails', '~> 8.0.2.1'
gem "rdoc" # '~>6.3.1'
gem "psych", '< 4'
gem 'sprockets', '< 4'
gem 'bcrypt'
# Database
#gem 'pg', '~> 1.3', '>= 1.3.4'
gem 'pg'
#gem "composite_primary_keys"
# commented redis server out on 3/11/2022
# To disable ActionCable
gem "redis", "~>4.1.0"
#==============================
# Record Versioning
gem "paper_trail"
# lime survey db interaction
gem "php-serialize"
##############################
# Admin/Config/Security
##############################
#gem "rails_admin", "~> 3.1.3"
gem 'rails_admin', '~> 3.3'
# Config file loader
# see ./lib/settings.rb and ./config/settings.yml for details
gem "settingslogic"
gem "cancancan"
#gem "devise", "~> 4.6.2"
gem 'devise', '~> 4.7', '>= 4.7.3'
# LDAP
gem "devise_ldap_authenticatable"
# Prevent Excessive log file information
gem "lograge"
##############################
# JavaScript and CSS
##############################
gem 'bootstrap', '~> 5.3.2' # '~> 4.4.0'
gem 'flatpickr' # calendar picker
gem "jbuilder", '~> 2.5'
gem "popper_js", '>=2.11.8', '<3' #"~> 1.14.3"
gem "cssbundling-rails"
#gem "bootstrap-sass" #, '~> 3.4.1'
gem "sass-rails", '>= 3.2'
gem "coffee-rails"
gem "uglifier"
gem 'jquery-ui-rails', '~>8.0.0'
gem "jquery-rails"
gem "jquery_context_menu-rails"
gem "momentjs-rails"
gem "fullcalendar-rails"
gem "fullcalendar"
gem "prawn"
#gem 'webpacker', '~> 3.5'
# CSS / js
# Random bug:
# Error encountered while saving cache (".....") can't dump anonymous class
# http://stackoverflow.com/questions/22276991/heroku-error-encountered-while-saving-cache
gem "sass"#, "~> 3.2.13"
gem "select2-rails"
# pagination
gem 'kaminari'
##############################
# UI: Charts
##############################
gem 'json', '~> 2.5', '>= 2.5.1'
gem "gon"
##############################
# UI: Forms
##############################
# Dynamic Forms
gem "cocoon"
gem "simple_form"
##############################
# UI: Misc
##############################
# Static Pages
gem "high_voltage"
# Statistics
gem "descriptive-statistics"
##############################
# Analysis
##############################
gem "statistics2"
##############################
# Environments
##############################
group :test, :development do
gem "rspec-rails"
gem "capybara"
gem "rails-perftest"
gem "factory_bot_rails"
gem "faker"
gem 'rails-controller-testing'
gem 'letter_opener'
end
group :test, :development do
if RUBY_VERSION =~ /^1.9.3/
# Better error messages in development
gem "better_errors", "~> 1.1"
elsif RUBY_VERSION =~ /^3./
gem "byebug"
gem "better_errors"
# gem "stackprof"
# gem "ruby-prof"
# gem "pry"
end
end
group :production do
# Send emails to admin when an error occurs
gem "exception_notification"
end
# To use debugger
group :development do
gem "rack-mini-profiler", require: false
gem "rack", ">= 2.2.12"
gem "webrick", ">= 1.8.2"
gem "puma", "~> 6.4.2"
gem "rails_layout"
gem "awesome_print"
# Interactive debugging from the web
gem "binding_of_caller"
gem "redcarpet"
gem "twitter-bootstrap-rails"
# guard
gem "guard"
gem "guard-rspec"
end
gem 'mini_racer'
gem 'autoprefixer-rails'
gem 'rufus-scheduler' # gem "stackprof"
# gem "ruby-prof"
# gem "pry"
gem 'whenever', require: false
gem 'nested_form_fields'
#gem 'turbolinks' #, '~> 5.0', '>= 5.0.1'
gem 'rails-ujs', '~> 0.1.0'
# highchart
gem "highcharts-rails"
gem "lazy_high_charts"
#gem 'chartkick'
#gem 'groupdate'
#=======================
# dataTables
gem 'jquery-datatables'
#========================
gem "csv_hasher"
gem 'activestorage-validator', '~> 0.1.0'
gem 'bullet', group: 'development'
gem 'font-awesome-sass', '~> 4.4.0'
gem "font-awesome-rails"
gem 'will_paginate', '~> 3.1'
gem 'datejs-rails', "~> 2.0.1"
gem 'icalendar'
gem 'sassc-rails'
gem 'xsv'
gem 'fast_page'
gem 'aes'
gem 'active_storage_drag_and_drop'
gem 'image_processing'
gem 'csv'
gem "importmap-rails", "~> 2.0"
gem "subprocess"
gem "nokogiri"
gem "net-imap", ">= 0.4.20"
gem "rails-html-sanitizer", ">= 1.6.1"
gem "rails_admin_import", "~> 3.0"
gem "httparty"
gem "timeout"
gem 'pdf-reader', '~> 1.4'