-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
144 lines (125 loc) · 3.36 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
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'rails', '6.0.2.2'
# Infrastructure
gem 'aws-sdk-s3', require: false
gem 'aws-sdk-sns', '>= 1.9.0', require: false
gem 'bootsnap', require: false
gem 'connection_pool'
gem 'dalli'
gem 'image_processing'
#gem 'mini_magick'
gem 'pg', '~> 0.18'
gem 'puma', '~> 3.12.2'
gem 'rack-canonical-host'
gem 'redis', '~> 3.0'
gem 'sidekiq'
# Models
gem 'active_storage_validations'
gem 'acts_as_list', git: 'https://github.com/swanandp/acts_as_list.git',
ref: '2811810'
gem 'clowne', '0.2.0'
gem 'clowne_active_storage'
gem 'draper'
gem 'friendly_id', git: 'https://github.com/norman/friendly_id.git',
ref: 'a29e7d'
gem 'kaminari'
gem 'memoist'
gem 'time_for_a_boolean', git: 'https://github.com/calebthompson/time_for_a_boolean'
gem 'virtus'
# Authentication and Authorization
gem 'devise', '~> 4.1'
gem 'devise-i18n'
gem 'ims-lti'
gem 'omniauth-facebook'
gem 'omniauth-google-oauth2'
gem 'omniauth-lti', git: 'https://github.com/cbothner/omniauth-lti'
gem 'pundit'
gem 'rolify'
# Events
gem 'ahoy_matey'
gem 'groupdate'
# Localization
gem 'http_accept_language'
gem 'i18n_generators'
gem 'i18n_yaml_sorter', group: :development
gem 'mobility'
# View Interpreters
gem 'active_model_serializers', '0.10.10'
gem 'haml', '>=5.1.2' #git: 'https://github.com/haml/haml' # until > 5.0.4
gem 'inline_svg'
gem 'jbuilder', git: 'https://github.com/rails/jbuilder', branch: :main
gem 'markerb', git: 'https://github.com/cbothner/markerb'
gem 'multi_json'
gem 'oj'
gem 'oj_mimic_json'
gem 'pdfkit'
gem 'redcarpet'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 6.0.0'
gem 'sassc', '~> 2.4.0'
gem 'webpacker', '~> 5.3.0'
# Logging and Monitoring
gem 'administrate'
gem 'administrate-field-active_storage'
gem 'awesome_print'
gem 'barnes'
gem 'lograge'
gem 'sentry-raven'
gem 'skylight', '>= 4.0.x'
gem 'table_print'
#
# # Services
#gem 'case_grid', git: 'https://github.com/cbothner/case_grid'
gem 'email_reply_parser'
gem 'opengraph_parser'
gem 'ruby-oembed'
group :development do
gem 'foreman'
gem 'listen'
# Spring speeds up development by keeping your application running in the
# background. Read more: https://github.com/rails/spring
gem 'bullet', git: 'https://github.com/flyerhzm/bullet'
gem 'letter_opener'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console'
gem 'doc_to_dash' #, git: 'https://github.com/pchaganti/doc_to_dash'
gem 'yard'
gem 'yard-activerecord'
gem 'yard-activesupport-concern'
gem 'flamegraph'
gem 'memory_profiler'
gem 'rack-mini-profiler'
gem 'stackprof'
end
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger
# console
gem 'pry-byebug', platform: :mri
gem 'pry-rails'
gem 'capybara'
gem 'guard-rspec'
gem 'rspec'
gem 'rspec-composable_json_matchers'
gem 'rspec-rails'
gem 'rspec_junit_formatter'
gem 'selenium-webdriver'
gem 'spring-commands-rspec'
gem 'dotenv-rails'
gem 'rubocop-faker'
end
# To seed the database for Heroku review apps, this is included in production
gem 'factory_bot_rails'
gem 'faker'
group :test do
gem 'capybara-screenshot'
gem 'database_cleaner'
gem 'ffi', '~> 1.15', '>= 1.15.5'
gem 'rspec-retry'
gem 'shoulda-matchers'
gem 'webdrivers', require: false
end
# gem to install wkhtmltopdf for pdfkit
gem 'wkhtmltopdf-binary'
ruby '2.7.6'